From 845b2e4b62cef2fa6ce29527ab1844fd5dd8ce17 Mon Sep 17 00:00:00 2001 From: Heinz-Alexander Fuetterer Date: Thu, 28 Sep 2023 10:19:29 +0200 Subject: [PATCH] style: apply pre-commit hooks Refs: #408 --- .github/dependabot.yml | 10 +- .github/workflows/publish-docker.yml | 48 +- docker-compose.yml | 16 +- docs/source/conf.py | 312 +- .../Create_FAIR_assessment_report.ipynb | 650 +- .../fuji_mass_eval_template.py | 27 +- fuji_server/__init__.py | 1 + fuji_server/__main__.py | 79 +- fuji_server/app/fuji_app.py | 16 +- fuji_server/config/logging.ini | 30 +- fuji_server/config/users.py | 4 +- .../controllers/authorization_controller.py | 14 +- fuji_server/controllers/fair_check.py | 458 +- .../controllers/fair_metric_controller.py | 1 + .../controllers/fair_object_controller.py | 94 +- fuji_server/controllers/harvest_controller.py | 43 +- fuji_server/data/access_rights.json | 204 +- fuji_server/data/file_formats.json | 4590 +- .../data/identifiers_org_resolver_data.json | 38088 ++++++------- fuji_server/data/jsonldcontext.json | 10614 +++- fuji_server/data/licenses.json | 5323 +- fuji_server/data/linked_vocab.json | 6282 +-- .../linked_vocabs/bioportal_ontologies.json | 9225 ++- .../data/linked_vocabs/bioregistry.json | 210 +- .../linked_vocabs/bioregistry_ontologies.json | 46202 +++++++++++++++- .../data/linked_vocabs/cessda_ontologies.json | 539 +- .../data/linked_vocabs/fuji_ontologies.json | 99 +- .../data/linked_vocabs/gesis_ontologies.json | 39 +- .../data/linked_vocabs/iso_ontologies.json | 1066 +- .../data/linked_vocabs/lov_ontologies.json | 9673 +++- .../data/linked_vocabs/mmisw_ontologies.json | 2 +- .../data/linked_vocabs/sdn_ontologies.json | 4161 +- .../data/linked_vocabs/sweet_ontologies.json | 2478 +- fuji_server/data/metadata_standards.json | 6721 ++- fuji_server/data/metadata_standards_uris.json | 11140 +++- fuji_server/data/open_formats.json | 34 +- fuji_server/data/repodois.json | 237 +- fuji_server/data/science_formats.json | 214 +- fuji_server/data/standard_uri_protocols.json | 52 +- fuji_server/evaluators/fair_evaluator.py | 93 +- .../fair_evaluator_community_metadata.py | 306 +- .../fair_evaluator_data_access_level.py | 223 +- .../fair_evaluator_data_content_metadata.py | 250 +- ...fair_evaluator_data_identifier_included.py | 102 +- .../fair_evaluator_data_provenance.py | 105 +- .../evaluators/fair_evaluator_file_format.py | 178 +- .../fair_evaluator_formal_metadata.py | 177 +- .../evaluators/fair_evaluator_license.py | 163 +- ..._evaluator_metadata_identifier_included.py | 50 +- .../fair_evaluator_metadata_preservation.py | 24 +- .../fair_evaluator_minimal_metadata.py | 154 +- ...ir_evaluator_persistent_identifier_data.py | 84 +- ...valuator_persistent_identifier_metadata.py | 107 +- .../fair_evaluator_related_resources.py | 47 +- .../evaluators/fair_evaluator_searchable.py | 193 +- .../fair_evaluator_semantic_vocabulary.py | 137 +- ...ir_evaluator_standardised_protocol_data.py | 41 +- ...valuator_standardised_protocol_metadata.py | 40 +- .../fair_evaluator_unique_identifier_data.py | 91 +- ...ir_evaluator_unique_identifier_metadata.py | 83 +- fuji_server/harvester/data_harvester.py | 202 +- fuji_server/harvester/metadata_harvester.py | 1302 +- fuji_server/harvester/repository_harvester.py | 3 +- fuji_server/helper/catalogue_helper.py | 9 +- .../helper/catalogue_helper_datacite.py | 16 +- .../catalogue_helper_google_datasearch.py | 79 +- .../helper/catalogue_helper_mendeley_data.py | 32 +- fuji_server/helper/create_google_cache_db.py | 8 +- fuji_server/helper/create_google_lists.py | 8 +- fuji_server/helper/identifier_helper.py | 238 +- fuji_server/helper/linked_vocab_helper.py | 147 +- fuji_server/helper/log_message_filter.py | 9 +- fuji_server/helper/metadata_collector.py | 197 +- .../helper/metadata_collector_datacite.py | 51 +- .../helper/metadata_collector_dublincore.py | 135 +- .../metadata_collector_highwire_eprints.py | 31 +- .../helper/metadata_collector_microdata.py | 29 +- .../helper/metadata_collector_opengraph.py | 15 +- .../helper/metadata_collector_ore_atom.py | 62 +- fuji_server/helper/metadata_collector_rdf.py | 925 +- fuji_server/helper/metadata_collector_xml.py | 277 +- fuji_server/helper/metadata_mapper.py | 988 +- fuji_server/helper/metadata_provider.py | 16 +- fuji_server/helper/metadata_provider_csw.py | 35 +- fuji_server/helper/metadata_provider_oai.py | 44 +- .../helper/metadata_provider_rss_atom.py | 26 +- .../helper/metadata_provider_sparql.py | 36 +- fuji_server/helper/metric_helper.py | 83 +- fuji_server/helper/preprocessor.py | 270 +- fuji_server/helper/repository_helper.py | 72 +- fuji_server/helper/request_helper.py | 442 +- .../models/any_of_fair_results_items.py | 12 +- fuji_server/models/base_model_.py | 14 +- fuji_server/models/body.py | 58 +- .../models/community_endorsed_standard.py | 81 +- .../community_endorsed_standard_output.py | 17 +- ...ommunity_endorsed_standard_output_inner.py | 38 +- fuji_server/models/core_metadata.py | 61 +- fuji_server/models/core_metadata_output.py | 33 +- fuji_server/models/data_access_level.py | 81 +- fuji_server/models/data_access_output.py | 19 +- fuji_server/models/data_content_metadata.py | 81 +- .../models/data_content_metadata_output.py | 18 +- .../data_content_metadata_output_inner.py | 23 +- fuji_server/models/data_file_format.py | 81 +- fuji_server/models/data_file_format_output.py | 12 +- .../models/data_file_format_output_inner.py | 42 +- fuji_server/models/data_provenance.py | 81 +- fuji_server/models/data_provenance_output.py | 24 +- .../models/data_provenance_output_inner.py | 12 +- fuji_server/models/debug.py | 12 +- fuji_server/models/fair_result_common.py | 69 +- .../models/fair_result_common_score.py | 23 +- .../fair_result_evaluation_criterium.py | 43 +- ...esult_evaluation_criterium_requirements.py | 36 +- fuji_server/models/fair_results.py | 75 +- fuji_server/models/formal_metadata.py | 81 +- fuji_server/models/formal_metadata_output.py | 12 +- .../models/formal_metadata_output_inner.py | 27 +- fuji_server/models/harvest.py | 31 +- fuji_server/models/harvest_results.py | 23 +- .../models/harvest_results_metadata.py | 43 +- fuji_server/models/identifier_included.py | 81 +- .../models/identifier_included_output.py | 17 +- .../identifier_included_output_inner.py | 19 +- fuji_server/models/license.py | 81 +- fuji_server/models/license_output.py | 12 +- fuji_server/models/license_output_inner.py | 12 +- fuji_server/models/metadata_preserved.py | 81 +- .../models/metadata_preserved_output.py | 24 +- fuji_server/models/metric.py | 72 +- fuji_server/models/metrics.py | 23 +- .../models/output_core_metadata_found.py | 19 +- .../models/output_search_mechanisms.py | 19 +- fuji_server/models/persistence.py | 81 +- fuji_server/models/persistence_output.py | 19 +- .../models/persistence_output_inner.py | 28 +- fuji_server/models/related_resource.py | 81 +- fuji_server/models/related_resource_output.py | 12 +- .../models/related_resource_output_inner.py | 12 +- fuji_server/models/searchable.py | 81 +- fuji_server/models/searchable_output.py | 12 +- fuji_server/models/semantic_vocabulary.py | 81 +- .../models/semantic_vocabulary_output.py | 12 +- .../semantic_vocabulary_output_inner.py | 12 +- .../models/standardised_protocol_data.py | 81 +- .../standardised_protocol_data_output.py | 12 +- .../models/standardised_protocol_metadata.py | 86 +- .../standardised_protocol_metadata_output.py | 12 +- fuji_server/models/uniqueness.py | 81 +- fuji_server/models/uniqueness_output.py | 12 +- fuji_server/util.py | 9 +- fuji_server/yaml/metrics_v0.3.yaml | 5 +- fuji_server/yaml/metrics_v0.4.yaml | 361 +- fuji_server/yaml/metrics_v0.5.yaml | 657 +- fuji_server/yaml/swagger.yaml | 129 +- 156 files changed, 134510 insertions(+), 36520 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d8e1841a..8f88051f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,7 @@ version: 2 updates: - - package-ecosystem: github-actions - directory: "/" - schedule: - interval: monthly - target-branch: master +- package-ecosystem: github-actions + directory: / + schedule: + interval: monthly + target-branch: master diff --git a/.github/workflows/publish-docker.yml b/.github/workflows/publish-docker.yml index 931dc9b6..c97c7294 100644 --- a/.github/workflows/publish-docker.yml +++ b/.github/workflows/publish-docker.yml @@ -5,13 +5,13 @@ on: push: # Publish `master` as Docker `latest` image. branches: - - master + - master # Publish `v1.2.3` tags as releases? # tags: # - v* release: types: - - created + - created env: DOCKER_BUILDKIT: 1 @@ -25,35 +25,35 @@ jobs: steps: - - run: docker --version - - run: docker buildx version + - run: docker --version + - run: docker buildx version - - uses: actions/checkout@v3 + - uses: actions/checkout@v3 - - name: Build image - run: docker build . --file Dockerfile --tag $IMAGE_NAME + - name: Build image + run: docker build . --file Dockerfile --tag $IMAGE_NAME - - name: Log into GitHub Container Registry - run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin + - name: Log into GitHub Container Registry + run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin - - name: Push image to GitHub Container Registry - run: | - IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME + - name: Push image to GitHub Container Registry + run: | + IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME - # Change all uppercase to lowercase - IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]') + # Change all uppercase to lowercase + IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]') - # Strip git ref prefix from version - VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') + # Strip git ref prefix from version + VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') - # Strip "v" prefix from tag name - [[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//') + # Strip "v" prefix from tag name + [[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//') - # Use Docker `latest` tag convention - [ "$VERSION" == "master" ] && VERSION=latest + # Use Docker `latest` tag convention + [ "$VERSION" == "master" ] && VERSION=latest - echo IMAGE_ID=$IMAGE_ID - echo VERSION=$VERSION + echo IMAGE_ID=$IMAGE_ID + echo VERSION=$VERSION - docker tag $IMAGE_NAME $IMAGE_ID:$VERSION - docker push $IMAGE_ID:$VERSION + docker tag $IMAGE_NAME $IMAGE_ID:$VERSION + docker push $IMAGE_ID:$VERSION diff --git a/docker-compose.yml b/docker-compose.yml index 97b436c4..2298b08b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,17 +1,17 @@ -version: "3.3" +version: '3.3' services: fujirest: - image: "ghcr.io/pangaea-data-publisher/fuji:latest" + image: ghcr.io/pangaea-data-publisher/fuji:latest ports: - - "1071:1071" + - 1071:1071 environment: - - ENABLE_CORS=true + - ENABLE_CORS=true notebook: - image: "jupyter/minimal-notebook:latest" + image: jupyter/minimal-notebook:latest environment: - - JUPYTER_ENABLE_LAB=yes + - JUPYTER_ENABLE_LAB=yes volumes: - - .:/home/jovyan/work + - .:/home/jovyan/work ports: - - "8888:8888" + - 8888:8888 diff --git a/docs/source/conf.py b/docs/source/conf.py index 9fe59bdd..69de082c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -12,258 +12,257 @@ # All configuration values have a default; values that are commented out # serve to show the default. -#import fuji_server -import sys +# import fuji_server import os +import sys + from fuji_server import __version__ -PROJECTNAME = u'Fuji' #u'F-uji Server' +PROJECTNAME = "Fuji" # u'F-uji Server' # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. -#sys.path.insert(0, os.path.abspath('../aiida_fleur')) +# sys.path.insert(0, os.path.abspath('../aiida_fleur')) # -- General configuration ------------------------------------------------ # If your documentation needs a minimal Sphinx version, state it here. -#needs_sphinx = '1.0' +# needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. -extensions = ['sphinx.ext.autodoc', - 'sphinx.ext.napoleon', - #'sphinx.ext.doctest', - #'sphinx.ext.todo', - #'sphinx.ext.coverage', - #'sphinx.ext.imgmath', - #'sphinx.ext.ifconfig', - 'sphinx.ext.viewcode', - 'myst_parser' - #'sphinx.ext.intersphinx' - ] - -intersphinx_mapping = {'numpy': ('https://numpy.org/doc/stable/', None)} +extensions = [ + "sphinx.ext.autodoc", + "sphinx.ext.napoleon", + #'sphinx.ext.doctest', + #'sphinx.ext.todo', + #'sphinx.ext.coverage', + #'sphinx.ext.imgmath', + #'sphinx.ext.ifconfig', + "sphinx.ext.viewcode", + "myst_parser" + #'sphinx.ext.intersphinx' +] + +intersphinx_mapping = {"numpy": ("https://numpy.org/doc/stable/", None)} todo_include_todos = True # Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] +templates_path = ["_templates"] # The suffix of source filenames. -source_suffix = '.rst' +source_suffix = ".rst" # The encoding of source files. -#source_encoding = 'utf-8-sig' +# source_encoding = 'utf-8-sig' # The master toctree document. -master_doc = 'index' +master_doc = "index" # General information about the project. project = PROJECTNAME -copyright = u'2020-today PANGAEA' +copyright = "2020-today PANGAEA" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. version = __version__ release = __version__ -author = 'The F-uji authors' +author = "The F-uji authors" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. -#language = None +# language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: -#today = '' +# today = '' # Else, today_fmt is used as the format for a strftime call. -#today_fmt = '%B %d, %Y' +# today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. -exclude_patterns = ['_build'] +exclude_patterns = ["_build"] # The reST default role (used for this markup: `text`) to use for all # documents. -#default_role = None +# default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. -#add_function_parentheses = True +# add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). -#add_module_names = True +# add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. -#show_authors = False +# show_authors = False # The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' +pygments_style = "sphinx" # A list of ignored prefixes for module index sorting. -#modindex_common_prefix = [] +# modindex_common_prefix = [] # If true, keep warnings as "system message" paragraphs in the built documents. -#keep_warnings = False +# keep_warnings = False # -- Options for HTML output ---------------------------------------------- # The theme to use for HTML and HTMfL Help pages. See the documentation for # a list of builtin themes. -html_theme = 'default' +html_theme = "default" # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. -#html_theme_options = {} +# html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. -#html_theme_path = [] +# html_theme_path = [] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". -#html_title = None +# html_title = None # A shorter title for the navigation bar. Default is the same as html_title. -#html_short_title = None +# html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. -#html_logo = None +# html_logo = None # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. -#html_favicon = None +# html_favicon = None # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -#html_static_path = ['_static'] +# html_static_path = ['_static'] # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied # directly to the root of the documentation. -#html_extra_path = [] +# html_extra_path = [] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. -#html_last_updated_fmt = '%b %d, %Y' +# html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. -#html_use_smartypants = True +# html_use_smartypants = True # Custom sidebar templates, maps document names to template names. -#html_sidebars = {} +# html_sidebars = {} # Additional templates that should be rendered to pages, maps page names to # template names. -#html_additional_pages = {} +# html_additional_pages = {} # If false, no module index is generated. -#html_domain_indices = True +# html_domain_indices = True # If false, no index is generated. -#html_use_index = True +# html_use_index = True # If true, the index is split into individual pages for each letter. -#html_split_index = False +# html_split_index = False # If true, links to the reST sources are added to the pages. -#html_show_sourcelink = True +# html_show_sourcelink = True # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. -#html_show_sphinx = True +# html_show_sphinx = True # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. -#html_show_copyright = True +# html_show_copyright = True # If true, an OpenSearch description file will be output, and all pages will # contain a tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. -#html_use_opensearch = '' +# html_use_opensearch = '' # This is the file name suffix for HTML files (e.g. ".xhtml"). -#html_file_suffix = None +# html_file_suffix = None # Output file base name for HTML help builder. -htmlhelp_basename = 'fuji-toolsdoc' +htmlhelp_basename = "fuji-toolsdoc" # -- Options for LaTeX output --------------------------------------------- latex_elements = { -# The paper size ('letterpaper' or 'a4paper'). -#'papersize': 'letterpaper', - -# The font size ('10pt', '11pt' or '12pt'). -#'pointsize': '10pt', - -# Additional stuff for the LaTeX preamble. -#'preamble': '', + # The paper size ('letterpaper' or 'a4paper'). + #'papersize': 'letterpaper', + # The font size ('10pt', '11pt' or '12pt'). + #'pointsize': '10pt', + # Additional stuff for the LaTeX preamble. + #'preamble': '', } # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ - ('index', 'fuji.tex', u'Fuji Documentation', - u'The F-uji authors', 'fuji_manual'), + ("index", "fuji.tex", "Fuji Documentation", "The F-uji authors", "fuji_manual"), ] # The name of an image file (relative to this directory) to place at the top of # the title page. -#latex_logo = None +# latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. -#latex_use_parts = False +# latex_use_parts = False # If true, show page references after internal links. -#latex_show_pagerefs = False +# latex_show_pagerefs = False # If true, show URL addresses after external links. -#latex_show_urls = False +# latex_show_urls = False # Documents to append as an appendix to all manuals. -#latex_appendices = [] +# latex_appendices = [] # If false, no module index is generated. -#latex_domain_indices = True +# latex_domain_indices = True # on_rtd is whether we are on readthedocs.org, this line of code grabbed # from docs.readthedocs.org -on_rtd = os.environ.get('READTHEDOCS', None) == 'True' # python 3 +on_rtd = os.environ.get("READTHEDOCS", None) == "True" # python 3 if not on_rtd: # only import and set the theme if we're building docs locally try: import sphinx_rtd_theme - html_theme = 'sphinx_rtd_theme' + + html_theme = "sphinx_rtd_theme" html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] except ImportError: # No sphinx_rtd_theme installed pass -autodoc_mock_imports = ['bokeh'] +autodoc_mock_imports = ["bokeh"] # -- Options for manual page output --------------------------------------- # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - ('index', 'fuji.tex', u'Fuji Documentation', - [u'The F-uji authors'], 1), + ("index", "fuji.tex", "Fuji Documentation", ["The F-uji authors"], 1), ] # If true, show URL addresses after external links. -#man_show_urls = False +# man_show_urls = False # -- Options for Texinfo output ------------------------------------------- @@ -272,22 +271,28 @@ # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - ('index', 'fuji', u'Fuji Documentation', - u'The Fuji authors', 'fuji', 'FUJI, a service to evaluate FAIR data objects based on FAIRsFAIR Metrics', - 'Miscellaneous'), + ( + "index", + "fuji", + "Fuji Documentation", + "The Fuji authors", + "fuji", + "FUJI, a service to evaluate FAIR data objects based on FAIRsFAIR Metrics", + "Miscellaneous", + ), ] # Documents to append as an appendix to all manuals. -#texinfo_appendices = [] +# texinfo_appendices = [] # If false, no module index is generated. -#texinfo_domain_indices = True +# texinfo_domain_indices = True # How to display URL addresses: 'footnote', 'no', or 'inline'. -#texinfo_show_urls = 'footnote' +# texinfo_show_urls = 'footnote' # If true, do not generate a @detailmenu in the "Top" node's menu. -#texinfo_no_detailmenu = False +# texinfo_no_detailmenu = False # -- Options for Epub output --------------------------------------------------- @@ -299,100 +304,99 @@ # The language of the text. It defaults to the language option # or en if the language is not set. -#epub_language = '' +# epub_language = '' # The scheme of the identifier. Typical schemes are ISBN or URL. -#epub_scheme = '' +# epub_scheme = '' # The unique identifier of the text. This can be a ISBN number # or the project homepage. -#epub_identifier = '' +# epub_identifier = '' # A unique identification for the text. -#epub_uid = '' +# epub_uid = '' # A tuple containing the cover image and cover page html template filenames. -#epub_cover = () +# epub_cover = () # HTML files that should be inserted before the pages created by sphinx. # The format is a list of tuples containing the path and title. -#epub_pre_files = [] +# epub_pre_files = [] # HTML files shat should be inserted after the pages created by sphinx. # The format is a list of tuples containing the path and title. -#epub_post_files = [] +# epub_post_files = [] # A list of files that should not be packed into the epub file. -#epub_exclude_files = [] +# epub_exclude_files = [] # The depth of the table of contents in toc.ncx. -#epub_tocdepth = 3 - +# epub_tocdepth = 3 # Warnings to ignore when using the -n (nitpicky) option # We should ignore any python built-in exception, for instance nitpick_ignore = [ - ('py:exc', 'ArithmeticError'), - ('py:exc', 'AssertionError'), - ('py:exc', 'AttributeError'), - ('py:exc', 'BaseException'), - ('py:exc', 'BufferError'), - ('py:exc', 'DeprecationWarning'), - ('py:exc', 'EOFError'), - ('py:exc', 'EnvironmentError'), - ('py:exc', 'Exception'), - ('py:exc', 'FloatingPointError'), - ('py:exc', 'FutureWarning'), - ('py:exc', 'GeneratorExit'), - ('py:exc', 'IOError'), - ('py:exc', 'ImportError'), - ('py:exc', 'ImportWarning'), - ('py:exc', 'IndentationError'), - ('py:exc', 'IndexError'), - ('py:exc', 'KeyError'), - ('py:exc', 'KeyboardInterrupt'), - ('py:exc', 'LookupError'), - ('py:exc', 'MemoryError'), - ('py:exc', 'NameError'), - ('py:exc', 'NotImplementedError'), - ('py:exc', 'OSError'), - ('py:exc', 'OverflowError'), - ('py:exc', 'PendingDeprecationWarning'), - ('py:exc', 'ReferenceError'), - ('py:exc', 'RuntimeError'), - ('py:exc', 'RuntimeWarning'), - ('py:exc', 'StandardError'), - ('py:exc', 'StopIteration'), - ('py:exc', 'SyntaxError'), - ('py:exc', 'SyntaxWarning'), - ('py:exc', 'SystemError'), - ('py:exc', 'SystemExit'), - ('py:exc', 'TabError'), - ('py:exc', 'TypeError'), - ('py:exc', 'UnboundLocalError'), - ('py:exc', 'UnicodeDecodeError'), - ('py:exc', 'UnicodeEncodeError'), - ('py:exc', 'UnicodeError'), - ('py:exc', 'UnicodeTranslateError'), - ('py:exc', 'UnicodeWarning'), - ('py:exc', 'UserWarning'), - ('py:exc', 'VMSError'), - ('py:exc', 'ValueError'), - ('py:exc', 'Warning'), - ('py:exc', 'WindowsError'), - ('py:exc', 'ZeroDivisionError'), - ('py:obj', 'str'), - ('py:obj', 'list'), - ('py:obj', 'tuple'), - ('py:obj', 'int'), - ('py:obj', 'float'), - ('py:obj', 'bool'), - ('py:obj', 'Mapping') + ("py:exc", "ArithmeticError"), + ("py:exc", "AssertionError"), + ("py:exc", "AttributeError"), + ("py:exc", "BaseException"), + ("py:exc", "BufferError"), + ("py:exc", "DeprecationWarning"), + ("py:exc", "EOFError"), + ("py:exc", "EnvironmentError"), + ("py:exc", "Exception"), + ("py:exc", "FloatingPointError"), + ("py:exc", "FutureWarning"), + ("py:exc", "GeneratorExit"), + ("py:exc", "IOError"), + ("py:exc", "ImportError"), + ("py:exc", "ImportWarning"), + ("py:exc", "IndentationError"), + ("py:exc", "IndexError"), + ("py:exc", "KeyError"), + ("py:exc", "KeyboardInterrupt"), + ("py:exc", "LookupError"), + ("py:exc", "MemoryError"), + ("py:exc", "NameError"), + ("py:exc", "NotImplementedError"), + ("py:exc", "OSError"), + ("py:exc", "OverflowError"), + ("py:exc", "PendingDeprecationWarning"), + ("py:exc", "ReferenceError"), + ("py:exc", "RuntimeError"), + ("py:exc", "RuntimeWarning"), + ("py:exc", "StandardError"), + ("py:exc", "StopIteration"), + ("py:exc", "SyntaxError"), + ("py:exc", "SyntaxWarning"), + ("py:exc", "SystemError"), + ("py:exc", "SystemExit"), + ("py:exc", "TabError"), + ("py:exc", "TypeError"), + ("py:exc", "UnboundLocalError"), + ("py:exc", "UnicodeDecodeError"), + ("py:exc", "UnicodeEncodeError"), + ("py:exc", "UnicodeError"), + ("py:exc", "UnicodeTranslateError"), + ("py:exc", "UnicodeWarning"), + ("py:exc", "UserWarning"), + ("py:exc", "VMSError"), + ("py:exc", "ValueError"), + ("py:exc", "Warning"), + ("py:exc", "WindowsError"), + ("py:exc", "ZeroDivisionError"), + ("py:obj", "str"), + ("py:obj", "list"), + ("py:obj", "tuple"), + ("py:obj", "int"), + ("py:obj", "float"), + ("py:obj", "bool"), + ("py:obj", "Mapping"), ] -#html_context = { +# html_context = { # 'css_files': [ # '_static/theme_overrides.css', # override wide tables in RTD theme # ], -#} +# } diff --git a/examples/mass_assessment/Create_FAIR_assessment_report.ipynb b/examples/mass_assessment/Create_FAIR_assessment_report.ipynb index cf7a50b4..a78c6984 100644 --- a/examples/mass_assessment/Create_FAIR_assessment_report.ipynb +++ b/examples/mass_assessment/Create_FAIR_assessment_report.ipynb @@ -1,328 +1,328 @@ { - "cells": [ - { - "cell_type": "markdown", - "source": [ - "# FAIR assessment report notbook from F-uji responses" - ], - "metadata": {} + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# FAIR assessment report notbook from F-uji responses" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This notebook provides a basic analysis and visualization of one or several F-uji json responses\n", + "\n", + "Authors: Jens Br\u00f6der (j.broeder@fz-juelich.de)\n", + "\n", + "Hint: Notebook can be exported as a pdf, latex or html, we recomment hiding the input cells.\n", + "For example by executing \n", + "```\n", + "$jupyter nbconvert --no-input --to html Create_FAIR_assessment_report.ipynb\n", + "```" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "results_path = './results/' # We assume that all (and only) json response files from a fuji server are under this path" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import json\n", + "import pandas as pd\n", + "from collections.abc import MutableMapping\n", + "import numpy as np\n", + "\n", + "from bokeh.layouts import gridplot\n", + "from bokeh.io import output_file, show, output_notebook\n", + "from bokeh.plotting import figure as bokeh_figure" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "output_notebook()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# helpers\n", + "def flatten_dict(d: MutableMapping, sep: str= '.') -> MutableMapping:\n", + " \"\"\"Flatten a given nested python dict and return a dict\"\"\"\n", + " [flat_dict] = pd.json_normalize(d, sep=sep).to_dict(orient='records')\n", + " return flat_dict" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def bokeh_histogram_plot(hist, edges, x=None, pdf=None, cdf=None, title=None, xlabel='x', ylabel='y', figure=None):\n", + " \"\"\"Plot an interactiv bokeh histogram\n", + " \n", + " \"\"\"\n", + " if figure is None:\n", + " tools='hover,pan,wheel_zoom,box_zoom,reset, save'\n", + " pl = bokeh_figure(title=title, tools=tools)#, background_fill_color=\"#fafafa\")\n", + " else:\n", + " pl = figure\n", + " pl.quad(top=hist, bottom=0, left=edges[:-1], right=edges[1:],\n", + " fill_color=\"navy\", line_color=\"white\", alpha=0.5)\n", + " if pdf is not None and x is not None:\n", + " pl.line(x, pdf, line_color=\"#ff8888\", line_width=4, alpha=0.7, legend_label=\"PDF\")\n", + " if cdf is not None and x is not None:\n", + " pl.line(x, cdf, line_color=\"orange\", line_width=2, alpha=0.7, legend_label=\"CDF\")\n", + "\n", + " pl.y_range.start = 0\n", + " #pl.legend.location = \"center_right\"\n", + " #pl.legend.background_fill_color = \"#fefefe\"\n", + " pl.xaxis.axis_label = xlabel\n", + " pl.yaxis.axis_label = ylabel\n", + " pl.grid.grid_line_color=\"white\"\n", + " return pl" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Read jsons responses" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "all_files = os.listdir(results_path)\n", + "print('Reading results from this path {}'.format(results_path))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "all_data = []\n", + "for i, filec in enumerate(all_files):\n", + " filepath = os.path.join(results_path, filec)\n", + " with open(filepath, 'r', encoding='utf-8') as fileo:\n", + " data = json.load(fileo)\n", + " all_data.append(data)#.get(results)\n", + " \n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "all_keys = []\n", + "all_data_dict = {}\n", + "to_remove = ['results']\n", + "for i, data in enumerate(all_data):\n", + " datat = flatten_dict(data)\n", + " for key in to_remove:\n", + " datat.pop('results')\n", + " for res in all_data[0]['results']:\n", + " results = flatten_dict(res)\n", + " id_t = results['id']\n", + " for key, val in results.items():\n", + " datat[key + '_id{}'.format(id_t)] = val\n", + " # request.normalized_object_identifier not always there\n", + " datat['request.normalized_object_identifier'] = datat.get('request.normalized_object_identifier', None)\n", + " for key, val in datat.items():\n", + " temp = all_data_dict.get(key, [])\n", + " temp.append(val)\n", + " all_data_dict[key] = temp\n", + " \n", + "\n", + "#print(list(all_data_dict.keys()))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame(data=all_data_dict)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "df.describe()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Visualize different FAIR metrics" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sumup_string = 'Sum up of evaluation:\\n'" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "key = 'summary.score_percent.FAIR'\n", + "measured = df[key]\n", + "sumup_string = sumup_string + 'Total FAIR score: {} +- {}\\n'.format(measured.mean(), measured.std()) \n", + "hist, edges = np.histogram(measured, density=False, range=(0,100),bins=50)\n", + "fig = bokeh_histogram_plot(hist, edges, title='Summary FAIR score percent', xlabel='Total score %', ylabel='# data sets')\n", + "print(measured.describe())\n", + "show(fig)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "keys = {'F':[], 'A': [], 'I': [], 'R':[]}\n", + "for key in df.keys():\n", + " if key == 'summary.score_percent.FAIR':\n", + " continue\n", + " if 'summary.score_percent.' in key:\n", + " end = key.split('.')[-1]\n", + " for k in keys.keys():\n", + " if k in end:\n", + " temp = keys.get(k, [])\n", + " temp.append(key)\n", + " keys[k] = temp\n", + " break\n", + " #keys.append(key)\n", + "#keys.remove('summary.score_percent.FAIR')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sumup_string = sumup_string + '\\n' + '\\n' + 'F scores:\\n'\n", + "for key in keys['F']:\n", + " measured = df[key]\n", + " sumup_string = sumup_string + 'Total{} score: {} +- {}\\n'.format(key.split('.')[-1], measured.mean(), measured.std())\n", + " hist, edges = np.histogram(measured, density=False, range=(0,100),bins=50)\n", + " fig = bokeh_histogram_plot(hist, edges, title=key, xlabel='Total score %', ylabel='# data sets')\n", + " print(measured.describe())\n", + " show(fig)\n", + "\n", + "sumup_string = sumup_string + '\\n' + '\\n' + 'A scores:\\n'\n", + "for key in keys['A']:\n", + " measured = df[key]\n", + " sumup_string = sumup_string + 'Total{} score: {} +- {}\\n'.format(key.split('.')[-1], measured.mean(), measured.std())\n", + " hist, edges = np.histogram(measured, density=False, range=(0,100),bins=50)\n", + " fig = bokeh_histogram_plot(hist, edges, title=key, xlabel='Total score %', ylabel='# data sets')\n", + " print(measured.describe())\n", + " show(fig)\n", + "\n", + "sumup_string = sumup_string + '\\n' + '\\n' + 'I scores:\\n'\n", + "for key in keys['I']:\n", + " measured = df[key]\n", + " sumup_string = sumup_string + 'Total{} score: {} +- {}\\n'.format(key.split('.')[-1], measured.mean(), measured.std())\n", + " hist, edges = np.histogram(measured, density=False, range=(0,100),bins=50)\n", + " fig = bokeh_histogram_plot(hist, edges, title=key, xlabel='Total score %', ylabel='# data sets')\n", + " print(measured.describe())\n", + " show(fig)\n", + " \n", + "sumup_string = sumup_string + '\\n' + '\\n' + 'R scores:\\n'\n", + "for key in keys['R']:\n", + " measured = df[key]\n", + " sumup_string = sumup_string + 'Total{} score: {} +- {}\\n'.format(key.split('.')[-1], measured.mean(), measured.std())\n", + " hist, edges = np.histogram(measured, density=False, range=(0,100),bins=50)\n", + " fig = bokeh_histogram_plot(hist, edges, title=key, xlabel='Total score %', ylabel='# data sets')\n", + " print(measured.describe())\n", + " show(fig)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# TODO nicer sum up, piecharts, plots as we see on the client side " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print(sumup_string)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.10" + } }, - { - "cell_type": "markdown", - "source": [ - "This notebook provides a basic analysis and visualization of one or several F-uji json responses\n", - "\n", - "Authors: Jens Bröder (j.broeder@fz-juelich.de)\n", - "\n", - "Hint: Notebook can be exported as a pdf, latex or html, we recomment hiding the input cells.\n", - "For example by executing \n", - "```\n", - "$jupyter nbconvert --no-input --to html Create_FAIR_assessment_report.ipynb\n", - "```" - ], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "results_path = './results/' # We assume that all (and only) json response files from a fuji server are under this path" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "import os\n", - "import json\n", - "import pandas as pd\n", - "from collections.abc import MutableMapping\n", - "import numpy as np\n", - "\n", - "from bokeh.layouts import gridplot\n", - "from bokeh.io import output_file, show, output_notebook\n", - "from bokeh.plotting import figure as bokeh_figure" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "output_notebook()" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "# helpers\n", - "def flatten_dict(d: MutableMapping, sep: str= '.') -> MutableMapping:\n", - " \"\"\"Flatten a given nested python dict and return a dict\"\"\"\n", - " [flat_dict] = pd.json_normalize(d, sep=sep).to_dict(orient='records')\n", - " return flat_dict" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "def bokeh_histogram_plot(hist, edges, x=None, pdf=None, cdf=None, title=None, xlabel='x', ylabel='y', figure=None):\n", - " \"\"\"Plot an interactiv bokeh histogram\n", - " \n", - " \"\"\"\n", - " if figure is None:\n", - " tools='hover,pan,wheel_zoom,box_zoom,reset, save'\n", - " pl = bokeh_figure(title=title, tools=tools)#, background_fill_color=\"#fafafa\")\n", - " else:\n", - " pl = figure\n", - " pl.quad(top=hist, bottom=0, left=edges[:-1], right=edges[1:],\n", - " fill_color=\"navy\", line_color=\"white\", alpha=0.5)\n", - " if pdf is not None and x is not None:\n", - " pl.line(x, pdf, line_color=\"#ff8888\", line_width=4, alpha=0.7, legend_label=\"PDF\")\n", - " if cdf is not None and x is not None:\n", - " pl.line(x, cdf, line_color=\"orange\", line_width=2, alpha=0.7, legend_label=\"CDF\")\n", - "\n", - " pl.y_range.start = 0\n", - " #pl.legend.location = \"center_right\"\n", - " #pl.legend.background_fill_color = \"#fefefe\"\n", - " pl.xaxis.axis_label = xlabel\n", - " pl.yaxis.axis_label = ylabel\n", - " pl.grid.grid_line_color=\"white\"\n", - " return pl" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "# Read jsons responses" - ], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "all_files = os.listdir(results_path)\n", - "print('Reading results from this path {}'.format(results_path))" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "all_data = []\n", - "for i, filec in enumerate(all_files):\n", - " filepath = os.path.join(results_path, filec)\n", - " with open(filepath, 'r', encoding='utf-8') as fileo:\n", - " data = json.load(fileo)\n", - " all_data.append(data)#.get(results)\n", - " \n" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "all_keys = []\n", - "all_data_dict = {}\n", - "to_remove = ['results']\n", - "for i, data in enumerate(all_data):\n", - " datat = flatten_dict(data)\n", - " for key in to_remove:\n", - " datat.pop('results')\n", - " for res in all_data[0]['results']:\n", - " results = flatten_dict(res)\n", - " id_t = results['id']\n", - " for key, val in results.items():\n", - " datat[key + '_id{}'.format(id_t)] = val\n", - " # request.normalized_object_identifier not always there\n", - " datat['request.normalized_object_identifier'] = datat.get('request.normalized_object_identifier', None)\n", - " for key, val in datat.items():\n", - " temp = all_data_dict.get(key, [])\n", - " temp.append(val)\n", - " all_data_dict[key] = temp\n", - " \n", - "\n", - "#print(list(all_data_dict.keys()))" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "df = pd.DataFrame(data=all_data_dict)" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "df.describe()" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "# Visualize different FAIR metrics" - ], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "sumup_string = 'Sum up of evaluation:\\n'" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "key = 'summary.score_percent.FAIR'\n", - "measured = df[key]\n", - "sumup_string = sumup_string + 'Total FAIR score: {} +- {}\\n'.format(measured.mean(), measured.std()) \n", - "hist, edges = np.histogram(measured, density=False, range=(0,100),bins=50)\n", - "fig = bokeh_histogram_plot(hist, edges, title='Summary FAIR score percent', xlabel='Total score %', ylabel='# data sets')\n", - "print(measured.describe())\n", - "show(fig)" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "keys = {'F':[], 'A': [], 'I': [], 'R':[]}\n", - "for key in df.keys():\n", - " if key == 'summary.score_percent.FAIR':\n", - " continue\n", - " if 'summary.score_percent.' in key:\n", - " end = key.split('.')[-1]\n", - " for k in keys.keys():\n", - " if k in end:\n", - " temp = keys.get(k, [])\n", - " temp.append(key)\n", - " keys[k] = temp\n", - " break\n", - " #keys.append(key)\n", - "#keys.remove('summary.score_percent.FAIR')" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "sumup_string = sumup_string + '\\n' + '\\n' + 'F scores:\\n'\n", - "for key in keys['F']:\n", - " measured = df[key]\n", - " sumup_string = sumup_string + 'Total{} score: {} +- {}\\n'.format(key.split('.')[-1], measured.mean(), measured.std())\n", - " hist, edges = np.histogram(measured, density=False, range=(0,100),bins=50)\n", - " fig = bokeh_histogram_plot(hist, edges, title=key, xlabel='Total score %', ylabel='# data sets')\n", - " print(measured.describe())\n", - " show(fig)\n", - "\n", - "sumup_string = sumup_string + '\\n' + '\\n' + 'A scores:\\n'\n", - "for key in keys['A']:\n", - " measured = df[key]\n", - " sumup_string = sumup_string + 'Total{} score: {} +- {}\\n'.format(key.split('.')[-1], measured.mean(), measured.std())\n", - " hist, edges = np.histogram(measured, density=False, range=(0,100),bins=50)\n", - " fig = bokeh_histogram_plot(hist, edges, title=key, xlabel='Total score %', ylabel='# data sets')\n", - " print(measured.describe())\n", - " show(fig)\n", - "\n", - "sumup_string = sumup_string + '\\n' + '\\n' + 'I scores:\\n'\n", - "for key in keys['I']:\n", - " measured = df[key]\n", - " sumup_string = sumup_string + 'Total{} score: {} +- {}\\n'.format(key.split('.')[-1], measured.mean(), measured.std())\n", - " hist, edges = np.histogram(measured, density=False, range=(0,100),bins=50)\n", - " fig = bokeh_histogram_plot(hist, edges, title=key, xlabel='Total score %', ylabel='# data sets')\n", - " print(measured.describe())\n", - " show(fig)\n", - " \n", - "sumup_string = sumup_string + '\\n' + '\\n' + 'R scores:\\n'\n", - "for key in keys['R']:\n", - " measured = df[key]\n", - " sumup_string = sumup_string + 'Total{} score: {} +- {}\\n'.format(key.split('.')[-1], measured.mean(), measured.std())\n", - " hist, edges = np.histogram(measured, density=False, range=(0,100),bins=50)\n", - " fig = bokeh_histogram_plot(hist, edges, title=key, xlabel='Total score %', ylabel='# data sets')\n", - " print(measured.describe())\n", - " show(fig)" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "# TODO nicer sum up, piecharts, plots as we see on the client side " - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "print(sumup_string)" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [], - "outputs": [], - "metadata": { - "tags": [] - } - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.10" - } - }, - "nbformat": 4, - "nbformat_minor": 5 + "nbformat": 4, + "nbformat_minor": 5 } diff --git a/examples/mass_assessment/fuji_mass_eval_template.py b/examples/mass_assessment/fuji_mass_eval_template.py index 78eb9fa4..1edd92f6 100644 --- a/examples/mass_assessment/fuji_mass_eval_template.py +++ b/examples/mass_assessment/fuji_mass_eval_template.py @@ -1,38 +1,39 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +import json import os + import requests -import json # That is how a request may look like (from the swagger API) -#curl -X POST "http://localhost:1071/fuji/api/v1/evaluate" -H "accept: application/json" -H "Authorization: Basic bWFydmVsOndvbmRlcndvbWFu" -H "Content-Type: application/json" -d "{\"object_identifier\":\"https://archive.materialscloud.org/record/2021.146\",\"test_debug\":true,\"use_datacite\":true}" +# curl -X POST "http://localhost:1071/fuji/api/v1/evaluate" -H "accept: application/json" -H "Authorization: Basic bWFydmVsOndvbmRlcndvbWFu" -H "Content-Type: application/json" -d "{\"object_identifier\":\"https://archive.materialscloud.org/record/2021.146\",\"test_debug\":true,\"use_datacite\":true}" -results_folder = './results/' -pids = ['https://archive.materialscloud.org/record/2021.146'] +results_folder = "./results/" +pids = ["https://archive.materialscloud.org/record/2021.146"] # or load pids from a file with one pid per line, which you have to generate beforehand -#with open('dois.txt', 'r') as fileo: +# with open('dois.txt', 'r') as fileo: # pids = fileo.readlines() -fuji_api_url = 'http://localhost:1071/fuji/api/v1/evaluate' +fuji_api_url = "http://localhost:1071/fuji/api/v1/evaluate" # the Authorization key you get from your running swagger API instance headers = { - 'accept': 'application/json', - 'Authorization': 'Basic bWFydmVsOndvbmRlcndvbWFu', - 'Content-Type': 'application/json' + "accept": "application/json", + "Authorization": "Basic bWFydmVsOndvbmRlcndvbWFu", + "Content-Type": "application/json", } -base_request_dict = {'object_identifier': None, 'test_debug': True, 'use_datacite': True} +base_request_dict = {"object_identifier": None, "test_debug": True, "use_datacite": True} # Store one file per pid for later report creation for pid in pids: req_dict = base_request_dict.copy() - req_dict['object_identifier'] = pid + req_dict["object_identifier"] = pid req = requests.post(fuji_api_url, json=req_dict, headers=headers) rs_json = req.json() - res_filename = '{}.json'.format(pid.split('/')[-1]) # depending on the pid you may want to change this + res_filename = "{}.json".format(pid.split("/")[-1]) # depending on the pid you may want to change this res_filename_path = os.path.join(results_folder, res_filename) - with open(res_filename_path, 'w', encoding='utf-8') as fileo: + with open(res_filename_path, "w", encoding="utf-8") as fileo: json.dump(rs_json, fileo, ensure_ascii=False) diff --git a/fuji_server/__init__.py b/fuji_server/__init__.py index 27f16c80..8e61a4f0 100644 --- a/fuji_server/__init__.py +++ b/fuji_server/__init__.py @@ -2,6 +2,7 @@ # flake8: noqa from __future__ import absolute_import + # import models into model package from fuji_server.models.any_of_fair_results_items import AnyOfFAIRResultsResultsItems from fuji_server.models.body import Body diff --git a/fuji_server/__main__.py b/fuji_server/__main__.py index 9da7371f..37ff626c 100644 --- a/fuji_server/__main__.py +++ b/fuji_server/__main__.py @@ -31,79 +31,76 @@ from flask_limiter import Limiter from flask_limiter.util import get_remote_address +from waitress import serve +import fuji_server.controllers.authorization_controller as authen from fuji_server.app.fuji_app import create_fuji_app from fuji_server.helper.preprocessor import Preprocessor -import fuji_server.controllers.authorization_controller as authen -from waitress import serve + def main(): - logging.getLogger('connexion.operation').setLevel('INFO') + logging.getLogger("connexion.operation").setLevel("INFO") ROOT_DIR = os.path.dirname(os.path.abspath(__file__)) - YAML_DIR = config['SERVICE']['yaml_directory'] - #METRIC_YAML = config['SERVICE']['metrics_yaml'] - #YAML_DIR = os.path.join(my_path, config['SERVICE']['yaml_directory']) + YAML_DIR = config["SERVICE"]["yaml_directory"] + # METRIC_YAML = config['SERVICE']['metrics_yaml'] + # YAML_DIR = os.path.join(my_path, config['SERVICE']['yaml_directory']) METRIC_YML_PATH = os.path.join(ROOT_DIR, YAML_DIR) - print('YAML PATH', METRIC_YML_PATH) - '''SPDX_URL = config['EXTERNAL']['spdx_license_github'] + print("YAML PATH", METRIC_YML_PATH) + """SPDX_URL = config['EXTERNAL']['spdx_license_github'] DATACITE_API_REPO = config['EXTERNAL']['datacite_api_repo'] RE3DATA_API = config['EXTERNAL']['re3data_api'] - METADATACATALOG_API = config['EXTERNAL']['metadata_catalog']''' - LOV_API = config['EXTERNAL']['lov_api'] - LOD_CLOUDNET = config['EXTERNAL']['lod_cloudnet'] - #BIOPORTAL_REST = config['EXTERNAL']['bioportal_rest'] - #BIOPORTAL_APIKEY = config['EXTERNAL']['bioportal_apikey'] - data_files_limit = int(config['SERVICE']['data_files_limit']) + METADATACATALOG_API = config['EXTERNAL']['metadata_catalog']""" + LOV_API = config["EXTERNAL"]["lov_api"] + LOD_CLOUDNET = config["EXTERNAL"]["lod_cloudnet"] + # BIOPORTAL_REST = config['EXTERNAL']['bioportal_rest'] + # BIOPORTAL_APIKEY = config['EXTERNAL']['bioportal_apikey'] + data_files_limit = int(config["SERVICE"]["data_files_limit"]) preproc = Preprocessor() - #preproc.retrieve_metrics_yaml(METRIC_YML_PATH, metric_specification) + # preproc.retrieve_metrics_yaml(METRIC_YML_PATH, metric_specification) preproc.set_data_files_limit(data_files_limit) preproc.set_metric_yaml_path(METRIC_YML_PATH) - #logger.info('Total metrics defined: {}'.format(preproc.get_total_metrics())) + # logger.info('Total metrics defined: {}'.format(preproc.get_total_metrics())) - isDebug = config.getboolean('SERVICE', 'debug_mode') + isDebug = config.getboolean("SERVICE", "debug_mode") preproc.retrieve_licenses(isDebug) preproc.retrieve_datacite_re3repos() preproc.retrieve_metadata_standards() - #preproc.retrieve_linkedvocabs(lov_api=LOV_API, lodcloud_api=LOD_CLOUDNET, bioportal_api=BIOPORTAL_REST, bioportal_key=BIOPORTAL_APIKEY, isDebugMode=False) + # preproc.retrieve_linkedvocabs(lov_api=LOV_API, lodcloud_api=LOD_CLOUDNET, bioportal_api=BIOPORTAL_REST, bioportal_key=BIOPORTAL_APIKEY, isDebugMode=False) preproc.retrieve_linkedvocabs(lov_api=LOV_API, lodcloud_api=LOD_CLOUDNET, isDebugMode=isDebug) - preproc.set_remote_log_info(config['SERVICE'].get('remote_log_host'), config['SERVICE'].get('remote_log_path')) - preproc.set_max_content_size(config['SERVICE']['max_content_size']) - - logger.info('Total SPDX licenses : {}'.format(preproc.get_total_licenses())) - logger.info('Total re3repositories found from datacite api : {}'.format(len(preproc.getRE3repositories()))) - logger.info('Total subjects area of imported metadata standards : {}'.format(len(preproc.metadata_standards))) - logger.info('Total LD vocabs imported : {}'.format(len(preproc.getLinkedVocabs()))) - logger.info('Total default namespaces specified : {}'.format(len(preproc.getDefaultNamespaces()))) + preproc.set_remote_log_info(config["SERVICE"].get("remote_log_host"), config["SERVICE"].get("remote_log_path")) + preproc.set_max_content_size(config["SERVICE"]["max_content_size"]) + logger.info("Total SPDX licenses : {}".format(preproc.get_total_licenses())) + logger.info("Total re3repositories found from datacite api : {}".format(len(preproc.getRE3repositories()))) + logger.info("Total subjects area of imported metadata standards : {}".format(len(preproc.metadata_standards))) + logger.info("Total LD vocabs imported : {}".format(len(preproc.getLinkedVocabs()))) + logger.info("Total default namespaces specified : {}".format(len(preproc.getDefaultNamespaces()))) app = create_fuji_app(config) - limiter = Limiter( - app.app, - key_func=get_remote_address, - default_limits=[str(config['SERVICE']['rate_limit'])] - ) - #comment in case waitress is wished - #app.run(host=config['SERVICE']['service_host'], port=int(config['SERVICE']['service_port']),debug=False) - #switch to waitress - serve(app, host=config['SERVICE']['service_host'], port=int(config['SERVICE']['service_port'])) + limiter = Limiter(app.app, key_func=get_remote_address, default_limits=[str(config["SERVICE"]["rate_limit"])]) + # comment in case waitress is wished + # app.run(host=config['SERVICE']['service_host'], port=int(config['SERVICE']['service_port']),debug=False) + # switch to waitress + serve(app, host=config["SERVICE"]["service_host"], port=int(config["SERVICE"]["service_port"])) + -if __name__ == '__main__': +if __name__ == "__main__": global config my_path = os.path.abspath(os.path.dirname(__file__)) parser = argparse.ArgumentParser() # add a new command line option, call it '-c' and set its destination to 'config_file' - parser.add_argument('-c', '--config', required=True, help='Path to server.ini config file') + parser.add_argument("-c", "--config", required=True, help="Path to server.ini config file") args = parser.parse_args() config = configparser.ConfigParser() config.read(args.config) - log_configfile = os.path.join(my_path, config['SERVICE']['log_config']) - log_dir = config['SERVICE']['logdir'] + log_configfile = os.path.join(my_path, config["SERVICE"]["log_config"]) + log_dir = config["SERVICE"]["logdir"] log_directory = os.path.join(my_path, log_dir) - log_file_path = os.path.join(log_directory, 'fuji.log') + log_file_path = os.path.join(log_directory, "fuji.log") if not os.path.exists(log_directory): os.makedirs(log_directory, exist_ok=True) - #fileConfig(log_configfile, defaults={'logfilename': log_file_path.replace("\\", "/")}) + # fileConfig(log_configfile, defaults={'logfilename': log_file_path.replace("\\", "/")}) logger = logging.getLogger() # use this form to initialize the root logger main() diff --git a/fuji_server/app/fuji_app.py b/fuji_server/app/fuji_app.py index fe898816..34bf63d9 100644 --- a/fuji_server/app/fuji_app.py +++ b/fuji_server/app/fuji_app.py @@ -23,28 +23,30 @@ # SOFTWARE. import os +from pathlib import Path + import connexion from flask_cors import CORS -from fuji_server import encoder -from pathlib import Path from werkzeug.middleware.proxy_fix import ProxyFix +from fuji_server import encoder + def create_fuji_app(config): """ Function which initializes the FUJI connexion flask app and returns it """ - #you can also use Tornado or gevent as the HTTP server, to do so set server to tornado or gevent + # you can also use Tornado or gevent as the HTTP server, to do so set server to tornado or gevent ROOT_DIR = main_dir = Path(__file__).parent.parent - YAML_DIR = config['SERVICE']['yaml_directory'] + YAML_DIR = config["SERVICE"]["yaml_directory"] app = connexion.FlaskApp(__name__, specification_dir=YAML_DIR) - API_YAML = os.path.join(ROOT_DIR, YAML_DIR, config['SERVICE']['swagger_yaml']) + API_YAML = os.path.join(ROOT_DIR, YAML_DIR, config["SERVICE"]["swagger_yaml"]) app.app.json_encoder = encoder.JSONEncoder - app.add_api(API_YAML, validate_responses=True) + app.add_api(API_YAML, validate_responses=True) app.app.wsgi_app = ProxyFix(app.app.wsgi_app, x_for=1, x_host=1) - if os.getenv('ENABLE_CORS', 'False').lower() == 'true': + if os.getenv("ENABLE_CORS", "False").lower() == "true": CORS(app.app) return app diff --git a/fuji_server/config/logging.ini b/fuji_server/config/logging.ini index eb1a9805..071c592f 100644 --- a/fuji_server/config/logging.ini +++ b/fuji_server/config/logging.ini @@ -1,29 +1,29 @@ [loggers] -keys=root +keys = root [logger_root] -handlers=screen +handlers = screen #handlers=file,screen -level=DEBUG +level = DEBUG [formatters] -keys=simple +keys = simple [formatter_simple] -format=%(asctime)s - %(name)s - %(levelname)s - %(message)s -datefmt= +format = %(asctime)s - %(name)s - %(levelname)s - %(message)s +datefmt = [handlers] -keys=file,screen +keys = file,screen [handler_file] -class=FileHandler -formatter=simple -level=DEBUG -args=('%(logfilename)s', 'a', 'utf-8') +class = FileHandler +formatter = simple +level = DEBUG +args = ('%(logfilename)s', 'a', 'utf-8') [handler_screen] -class=StreamHandler -formatter=simple -level=DEBUG -args=(sys.stdout,) +class = StreamHandler +formatter = simple +level = DEBUG +args = (sys.stdout,) diff --git a/fuji_server/config/users.py b/fuji_server/config/users.py index c9569ac9..3a1668b3 100644 --- a/fuji_server/config/users.py +++ b/fuji_server/config/users.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -#user dictionary: key = username value = password -fuji_users = {'marvel': 'wonderwoman'} +# user dictionary: key = username value = password +fuji_users = {"marvel": "wonderwoman"} diff --git a/fuji_server/controllers/authorization_controller.py b/fuji_server/controllers/authorization_controller.py index 054d5754..05961dea 100644 --- a/fuji_server/controllers/authorization_controller.py +++ b/fuji_server/controllers/authorization_controller.py @@ -27,22 +27,22 @@ https://connexion.readthedocs.io/en/latest/security.html """ from typing import Optional + import fuji_server.config.users as fuji_user -def checkUser(username: str, - password: str, - required_scopes=None, - user_dict: dict = fuji_user.fuji_users) -> Optional[dict]: +def checkUser( + username: str, password: str, required_scopes=None, user_dict: dict = fuji_user.fuji_users +) -> Optional[dict]: """Function to check if a given user name and password are in the allowed user dict of fuji This is not save. """ - #service_username = 'marvel' - #service_password = 'wonderwoman' + # service_username = 'marvel' + # service_password = 'wonderwoman' if username in user_dict: if password == user_dict.get(username): - return {'username': username, 'password': user_dict.get(username)} + return {"username": username, "password": user_dict.get(username)} else: return None else: diff --git a/fuji_server/controllers/fair_check.py b/fuji_server/controllers/fair_check.py index 63d925cc..36f63845 100644 --- a/fuji_server/controllers/fair_check.py +++ b/fuji_server/controllers/fair_check.py @@ -21,72 +21,77 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. +import hashlib import io import json -import logging, logging.handlers +import logging +import logging.handlers import mimetypes import os import re -#import urllib + +# import urllib import urllib.request as urllib -#from typing import List, Any -from urllib.parse import urlparse, urljoin + +# from typing import List, Any +from urllib.parse import urljoin, urlparse import extruct -#import idutils + +# import idutils import pandas as pd from bs4 import BeautifulSoup -from rapidfuzz import fuzz -from rapidfuzz import process -import hashlib - +from rapidfuzz import fuzz, process from tldextract import extract -from fuji_server.evaluators.fair_evaluator_license import FAIREvaluatorLicense +from fuji_server import __version__ +from fuji_server.evaluators.fair_evaluator_community_metadata import FAIREvaluatorCommunityMetadata from fuji_server.evaluators.fair_evaluator_data_access_level import FAIREvaluatorDataAccessLevel +from fuji_server.evaluators.fair_evaluator_data_content_metadata import FAIREvaluatorDataContentMetadata +from fuji_server.evaluators.fair_evaluator_data_identifier_included import FAIREvaluatorDataIdentifierIncluded +from fuji_server.evaluators.fair_evaluator_data_provenance import FAIREvaluatorDataProvenance +from fuji_server.evaluators.fair_evaluator_file_format import FAIREvaluatorFileFormat +from fuji_server.evaluators.fair_evaluator_formal_metadata import FAIREvaluatorFormalMetadata +from fuji_server.evaluators.fair_evaluator_license import FAIREvaluatorLicense from fuji_server.evaluators.fair_evaluator_metadata_identifier_included import FAIREvaluatorMetadataIdentifierIncluded -from fuji_server.evaluators.fair_evaluator_persistent_identifier_data import FAIREvaluatorPersistentIdentifierData -from fuji_server.evaluators.fair_evaluator_persistent_identifier_metadata import FAIREvaluatorPersistentIdentifierMetadata -from fuji_server.evaluators.fair_evaluator_unique_identifier_data import FAIREvaluatorUniqueIdentifierData -from fuji_server.evaluators.fair_evaluator_unique_identifier_metadata import FAIREvaluatorUniqueIdentifierMetadata +from fuji_server.evaluators.fair_evaluator_metadata_preservation import FAIREvaluatorMetadataPreserved from fuji_server.evaluators.fair_evaluator_minimal_metadata import FAIREvaluatorCoreMetadata -from fuji_server.evaluators.fair_evaluator_data_identifier_included import FAIREvaluatorDataIdentifierIncluded +from fuji_server.evaluators.fair_evaluator_persistent_identifier_data import FAIREvaluatorPersistentIdentifierData +from fuji_server.evaluators.fair_evaluator_persistent_identifier_metadata import ( + FAIREvaluatorPersistentIdentifierMetadata, +) from fuji_server.evaluators.fair_evaluator_related_resources import FAIREvaluatorRelatedResources from fuji_server.evaluators.fair_evaluator_searchable import FAIREvaluatorSearchable -from fuji_server.evaluators.fair_evaluator_file_format import FAIREvaluatorFileFormat -from fuji_server.evaluators.fair_evaluator_data_provenance import FAIREvaluatorDataProvenance -from fuji_server.evaluators.fair_evaluator_data_content_metadata import FAIREvaluatorDataContentMetadata -from fuji_server.evaluators.fair_evaluator_formal_metadata import FAIREvaluatorFormalMetadata from fuji_server.evaluators.fair_evaluator_semantic_vocabulary import FAIREvaluatorSemanticVocabulary -from fuji_server.evaluators.fair_evaluator_metadata_preservation import FAIREvaluatorMetadataPreserved -from fuji_server.evaluators.fair_evaluator_community_metadata import FAIREvaluatorCommunityMetadata from fuji_server.evaluators.fair_evaluator_standardised_protocol_data import FAIREvaluatorStandardisedProtocolData -from fuji_server.evaluators.fair_evaluator_standardised_protocol_metadata import FAIREvaluatorStandardisedProtocolMetadata +from fuji_server.evaluators.fair_evaluator_standardised_protocol_metadata import ( + FAIREvaluatorStandardisedProtocolMetadata, +) +from fuji_server.evaluators.fair_evaluator_unique_identifier_data import FAIREvaluatorUniqueIdentifierData +from fuji_server.evaluators.fair_evaluator_unique_identifier_metadata import FAIREvaluatorUniqueIdentifierMetadata from fuji_server.harvester.data_harvester import DataHarvester from fuji_server.harvester.metadata_harvester import MetadataHarvester +from fuji_server.helper.identifier_helper import IdentifierHelper +from fuji_server.helper.linked_vocab_helper import linked_vocab_helper from fuji_server.helper.metadata_collector import MetadataOfferingMethods - from fuji_server.helper.metadata_mapper import Mapper from fuji_server.helper.metadata_provider_csw import OGCCSWMetadataProvider from fuji_server.helper.metadata_provider_oai import OAIMetadataProvider -from fuji_server.helper.metadata_provider_sparql import SPARQLMetadataProvider from fuji_server.helper.metadata_provider_rss_atom import RSSAtomMetadataProvider +from fuji_server.helper.metadata_provider_sparql import SPARQLMetadataProvider from fuji_server.helper.metric_helper import MetricHelper from fuji_server.helper.preprocessor import Preprocessor from fuji_server.helper.repository_helper import RepositoryHelper -from fuji_server.helper.identifier_helper import IdentifierHelper -from fuji_server.helper.linked_vocab_helper import linked_vocab_helper -from fuji_server import __version__ class FAIRCheck: METRICS = None METRIC_VERSION = None SPDX_LICENSES = None SPDX_LICENSE_NAMES = None - '''COMMUNITY_METADATA_STANDARDS_NAMES = None + """COMMUNITY_METADATA_STANDARDS_NAMES = None COMMUNITY_METADATA_STANDARDS_URIS = None - COMMUNITY_METADATA_STANDARDS = None''' + COMMUNITY_METADATA_STANDARDS = None""" SCIENCE_FILE_FORMATS = None LONG_TERM_FILE_FORMATS = None OPEN_FILE_FORMATS = None @@ -106,18 +111,20 @@ class FAIRCheck: ACCESS_RIGHTS = {} FUJI_VERSION = __version__ - def __init__(self, - uid, - test_debug=False, - metadata_service_url=None, - metadata_service_type=None, - use_datacite=True, - verify_pids=True, - oaipmh_endpoint=None, - metric_version = None): # e.g. metrics_v0.5 regex: metrics_v([0-9]+\.[0-9]+)(_[a-z]+)? - uid_bytes = uid.encode('utf-8') + def __init__( + self, + uid, + test_debug=False, + metadata_service_url=None, + metadata_service_type=None, + use_datacite=True, + verify_pids=True, + oaipmh_endpoint=None, + metric_version=None, + ): # e.g. metrics_v0.5 regex: metrics_v([0-9]+\.[0-9]+)(_[a-z]+)? + uid_bytes = uid.encode("utf-8") self.test_id = hashlib.sha1(uid_bytes).hexdigest() - #str(base64.urlsafe_b64encode(uid_bytes), "utf-8") # an id we can use for caching etc + # str(base64.urlsafe_b64encode(uid_bytes), "utf-8") # an id we can use for caching etc if isinstance(uid, str): uid = uid.strip() self.id = self.input_id = uid @@ -129,16 +136,16 @@ def __init__(self, self.sparql_endpoint = None if self.oaipmh_endpoint: self.metadata_service_url = self.oaipmh_endpoint - self.metadata_service_type = 'oai_pmh' - if self.metadata_service_type == 'oai_pmh': + self.metadata_service_type = "oai_pmh" + if self.metadata_service_type == "oai_pmh": self.oaipmh_endpoint = self.metadata_service_url - elif str(self.metadata_service_type) == 'ogc_csw' or 'csw' in str(self.metadata_service_type): + elif str(self.metadata_service_type) == "ogc_csw" or "csw" in str(self.metadata_service_type): self.csw_endpoint = self.metadata_service_url - elif self.metadata_service_type == 'sparql': + elif self.metadata_service_type == "sparql": self.sparql_endpoint = self.metadata_service_url self.pid_url = None # full pid # e.g., "https://doi.org/10.1594/pangaea.906092 or url (non-pid) self.landing_url = None # url of the landing page of self.pid_url - self.origin_url = None #the url from where all starts - in case of redirection we'll need this later on + self.origin_url = None # the url from where all starts - in case of redirection we'll need this later on self.landing_html = None self.landing_content_type = None self.landing_origin = None # schema + authority of the landing page e.g. https://www.pangaea.de @@ -158,7 +165,8 @@ def __init__(self, self.community_standards_uri = {} self.namespace_uri = [] self.linked_namespace_uri = {} - self.reference_elements = Mapper.REFERENCE_METADATA_LIST.value.copy( + self.reference_elements = ( + Mapper.REFERENCE_METADATA_LIST.value.copy() ) # all metadata elements required for FUJI metrics self.related_resources = [] # self.test_data_content_text = None# a helper to check metadata against content @@ -168,8 +176,8 @@ def __init__(self, self.use_datacite = use_datacite self.repeat_pid_check = False self.logger_message_stream = io.StringIO() - logging.addLevelName(self.LOG_SUCCESS, 'SUCCESS') - logging.addLevelName(self.LOG_FAILURE, 'FAILURE') + logging.addLevelName(self.LOG_SUCCESS, "SUCCESS") + logging.addLevelName(self.LOG_FAILURE, "FAILURE") # in case log messages shall be sent to a remote server self.remoteLogPath = None @@ -177,46 +185,60 @@ def __init__(self, self.weblogger = None if self.isDebug: self.logStreamHandler = logging.StreamHandler(self.logger_message_stream) - formatter = logging.Formatter('%(message)s|%(levelname)s') + formatter = logging.Formatter("%(message)s|%(levelname)s") self.logStreamHandler.setFormatter(formatter) self.logger.propagate = False self.logger.setLevel(logging.INFO) # set to debug in testing environment self.logger.addHandler(self.logStreamHandler) if Preprocessor.remote_log_host: - self.weblogger = logging.handlers.HTTPHandler(Preprocessor.remote_log_host, Preprocessor.remote_log_path + '?testid=' + str(self.test_id), - method='POST') - self.webformatter = logging.Formatter('%(levelname)s - %(message)s \r\n') + self.weblogger = logging.handlers.HTTPHandler( + Preprocessor.remote_log_host, + Preprocessor.remote_log_path + "?testid=" + str(self.test_id), + method="POST", + ) + self.webformatter = logging.Formatter("%(levelname)s - %(message)s \r\n") self.verify_pids = verify_pids if not self.verify_pids: - self.logger.warning('FsF-F1-02 : Verification of PIDs is disabled in the config file, the evaluation result may be misleading') + self.logger.warning( + "FsF-F1-02 : Verification of PIDs is disabled in the config file, the evaluation result may be misleading" + ) self.count = 0 FAIRCheck.load_predata() - #self.extruct = None + # self.extruct = None self.extruct_result = {} self.lov_helper = linked_vocab_helper(self.LINKED_VOCAB_INDEX) self.auth_token = None - self.auth_token_type = 'Basic' + self.auth_token_type = "Basic" self.pid_collector = {} if not metric_version: - metric_version = 'metrics_v0.5' - self.logger.warning( - 'FsF-F1-02 : Metrics version not given, therefore loading default metrics v0.5') + metric_version = "metrics_v0.5" + self.logger.warning("FsF-F1-02 : Metrics version not given, therefore loading default metrics v0.5") self.metric_helper = MetricHelper(metric_version) self.METRICS = self.metric_helper.get_custom_metrics( - ['metric_name', 'total_score', 'metric_tests', 'metric_number']) + ["metric_name", "total_score", "metric_tests", "metric_number"] + ) self.METRIC_VERSION = metric_version self.metrics_config = self.metric_helper.get_metrics_config() - print('METRICS CONFIG: ', self.metrics_config) - allowed_harvesting_methods = self.metrics_config.get('metadata_offering_methods') + print("METRICS CONFIG: ", self.metrics_config) + allowed_harvesting_methods = self.metrics_config.get("metadata_offering_methods") if allowed_harvesting_methods: - print('ALLOWED METADATA OFFERING METHODS: ',allowed_harvesting_methods) + print("ALLOWED METADATA OFFERING METHODS: ", allowed_harvesting_methods) if not isinstance(allowed_harvesting_methods, list): allowed_harvesting_methods = None else: - allowed_harvesting_methods = [MetadataOfferingMethods[m] for m in allowed_harvesting_methods if m in MetadataOfferingMethods._member_names_ ] - self.metadata_harvester = MetadataHarvester(self.id,use_datacite = use_datacite, logger = self.logger, allowed_harvesting_methods = allowed_harvesting_methods) + allowed_harvesting_methods = [ + MetadataOfferingMethods[m] + for m in allowed_harvesting_methods + if m in MetadataOfferingMethods._member_names_ + ] + self.metadata_harvester = MetadataHarvester( + self.id, + use_datacite=use_datacite, + logger=self.logger, + allowed_harvesting_methods=allowed_harvesting_methods, + ) self.repo_helper = None @classmethod @@ -224,10 +246,10 @@ def load_predata(cls): cls.FILES_LIMIT = Preprocessor.data_files_limit if not cls.SPDX_LICENSES: cls.SPDX_LICENSES, cls.SPDX_LICENSE_NAMES = Preprocessor.get_licenses() - '''if not cls.COMMUNITY_METADATA_STANDARDS: + """if not cls.COMMUNITY_METADATA_STANDARDS: cls.COMMUNITY_METADATA_STANDARDS = Preprocessor.get_metadata_standards() cls.COMMUNITY_METADATA_STANDARDS_URIS = {u.strip().strip('#/') : k for k, v in cls.COMMUNITY_METADATA_STANDARDS.items() for u in v.get('urls')} - cls.COMMUNITY_METADATA_STANDARDS_NAMES = {k: v.get('title') for k,v in cls.COMMUNITY_METADATA_STANDARDS.items()}''' + cls.COMMUNITY_METADATA_STANDARDS_NAMES = {k: v.get('title') for k,v in cls.COMMUNITY_METADATA_STANDARDS.items()}""" if not cls.SCIENCE_FILE_FORMATS: cls.SCIENCE_FILE_FORMATS = Preprocessor.get_science_file_formats() if not cls.LONG_TERM_FILE_FORMATS: @@ -251,11 +273,9 @@ def load_predata(cls): if not cls.ACCESS_RIGHTS: cls.ACCESS_RIGHTS = Preprocessor.get_access_rights() Preprocessor.set_mime_types() - #not needed locally ... but init class variable - #Preprocessor.get_google_data_dois() - #Preprocessor.get_google_data_urls() - - + # not needed locally ... but init class variable + # Preprocessor.get_google_data_dois() + # Preprocessor.get_google_data_urls() @staticmethod def uri_validator(u): # TODO integrate into request_helper.py @@ -265,21 +285,18 @@ def uri_validator(u): # TODO integrate into request_helper.py except: return False - def set_auth_token(self, auth_token, auth_token_type='Basic'): + def set_auth_token(self, auth_token, auth_token_type="Basic"): if auth_token: self.auth_token = auth_token self.metadata_harvester.auth_token = self.auth_token if auth_token_type: - if auth_token_type in ['Basic','Bearer']: + if auth_token_type in ["Basic", "Bearer"]: self.auth_token_type = auth_token_type self.metadata_harvester.auth_token_type = self.auth_token_type else: - self.auth_token_type = 'Basic' + self.auth_token_type = "Basic" - - - - '''def merge_metadata(self, metadict, sourceurl, method_source, format, schema='', namespaces = []): + """def merge_metadata(self, metadict, sourceurl, method_source, format, schema='', namespaces = []): if not isinstance(namespaces, list): namespaces = [namespaces] if isinstance(metadict,dict): @@ -304,38 +321,49 @@ def set_auth_token(self, auth_token, auth_token_type='Basic'): 'schema' : schema, 'metadata' : metadict, 'namespaces' : namespaces} - )''' + )""" def clean_metadata(self): - data_objects = self.metadata_merged.get('object_content_identifier') - if data_objects == {'url': None} or data_objects == [None]: - data_objects = self.metadata_merged['object_content_identifier'] = None + data_objects = self.metadata_merged.get("object_content_identifier") + if data_objects == {"url": None} or data_objects == [None]: + data_objects = self.metadata_merged["object_content_identifier"] = None if data_objects is not None: if not isinstance(data_objects, list): - self.metadata_merged['object_content_identifier'] = [data_objects] + self.metadata_merged["object_content_identifier"] = [data_objects] # TODO quick-fix to merge size information - should do it at mapper - if 'object_content_identifier' in self.metadata_merged: - if self.metadata_merged.get('object_content_identifier'): + if "object_content_identifier" in self.metadata_merged: + if self.metadata_merged.get("object_content_identifier"): oi = 0 - for c in self.metadata_merged['object_content_identifier']: - if not c.get('size') and self.metadata_merged.get('object_size'): - c['size'] = self.metadata_merged.get('object_size') + for c in self.metadata_merged["object_content_identifier"]: + if not c.get("size") and self.metadata_merged.get("object_size"): + c["size"] = self.metadata_merged.get("object_size") # clean mime types in case these are in URI form: - if c.get('type'): - if isinstance(c['type'], list): - c['type'] = c['type'][0] - self.metadata_merged['object_content_identifier'][oi]['type'] = c['type'][0] - mime_parts = str(c.get('type')).split('/') + if c.get("type"): + if isinstance(c["type"], list): + c["type"] = c["type"][0] + self.metadata_merged["object_content_identifier"][oi]["type"] = c["type"][0] + mime_parts = str(c.get("type")).split("/") if len(mime_parts) > 2: - if mime_parts[-2] in ['application', 'audio', 'font', 'example', 'image', 'message', - 'model', 'multipart', 'text', 'video']: - self.metadata_merged['object_content_identifier'][oi]['type'] = str( - mime_parts[-2]) + '/' + str(mime_parts[-1]) + if mime_parts[-2] in [ + "application", + "audio", + "font", + "example", + "image", + "message", + "model", + "multipart", + "text", + "video", + ]: + self.metadata_merged["object_content_identifier"][oi]["type"] = ( + str(mime_parts[-2]) + "/" + str(mime_parts[-1]) + ) oi += 1 - #clean empty entries + # clean empty entries for mk, mv in list(self.metadata_merged.items()): - if mv == '' or mv is None: + if mv == "" or mv is None: del self.metadata_merged[mk] def harvest_all_metadata(self): @@ -343,65 +371,66 @@ def harvest_all_metadata(self): self.retrieve_metadata_embedded() self.retrieve_metadata_external() self.clean_metadata() - self.logger.info('FsF-F2-01M : Type of object described by the metadata -: {}'.format( - self.metadata_merged.get('object_type'))) + self.logger.info( + "FsF-F2-01M : Type of object described by the metadata -: {}".format( + self.metadata_merged.get("object_type") + ) + ) # detect api and standards - #self.retrieve_apis_standards() + # self.retrieve_apis_standards() # remove duplicates if self.namespace_uri: self.namespace_uri = list(set(self.namespace_uri)) def harvest_re3_data(self): if self.use_datacite: - client_id = self.metadata_merged.get('datacite_client') - self.logger.info('FsF-R1.3-01M : re3data/datacite client id -: {}'.format(client_id)) + client_id = self.metadata_merged.get("datacite_client") + self.logger.info("FsF-R1.3-01M : re3data/datacite client id -: {}".format(client_id)) self.repo_helper = RepositoryHelper(client_id=client_id, logger=self.logger, landingpage=self.landing_url) self.repo_helper.lookup_re3data() else: self.client_id = None self.logger.warning( - '{} : Datacite support disabled, therefore skipping standards identification using in re3data record' - .format( - 'FsF-R1.3-01M', - )) - - + "{} : Datacite support disabled, therefore skipping standards identification using in re3data record".format( + "FsF-R1.3-01M", + ) + ) def harvest_all_data(self): - if self.metadata_merged.get('object_content_identifier'): - data_links = self.metadata_merged.get('object_content_identifier')[:self.FILES_LIMIT] - data_harvester = DataHarvester(data_links, self.logger, self.landing_url, metrics = self.METRICS.keys()) + if self.metadata_merged.get("object_content_identifier"): + data_links = self.metadata_merged.get("object_content_identifier")[: self.FILES_LIMIT] + data_harvester = DataHarvester(data_links, self.logger, self.landing_url, metrics=self.METRICS.keys()) data_harvester.retrieve_all_data() self.content_identifier = data_harvester.data def retrieve_metadata_embedded(self): self.metadata_harvester.retrieve_metadata_embedded() - self.metadata_unmerged.extend( self.metadata_harvester.metadata_unmerged) - self.metadata_merged.update( self.metadata_harvester.metadata_merged) - self.repeat_pid_check = self.metadata_harvester.repeat_pid_check - self.namespace_uri.extend( self.metadata_harvester.namespace_uri) - self.metadata_sources.extend( self.metadata_harvester.metadata_sources) - self.linked_namespace_uri.update( self.metadata_harvester.linked_namespace_uri) - self.related_resources.extend( self.metadata_harvester.related_resources) - self.landing_url = self.metadata_harvester.landing_url - self.origin_url = self.metadata_harvester.origin_url - self.pid_url = self.metadata_harvester.pid_url + self.metadata_unmerged.extend(self.metadata_harvester.metadata_unmerged) + self.metadata_merged.update(self.metadata_harvester.metadata_merged) + self.repeat_pid_check = self.metadata_harvester.repeat_pid_check + self.namespace_uri.extend(self.metadata_harvester.namespace_uri) + self.metadata_sources.extend(self.metadata_harvester.metadata_sources) + self.linked_namespace_uri.update(self.metadata_harvester.linked_namespace_uri) + self.related_resources.extend(self.metadata_harvester.related_resources) + self.landing_url = self.metadata_harvester.landing_url + self.origin_url = self.metadata_harvester.origin_url + self.pid_url = self.metadata_harvester.pid_url self.pid_scheme = self.metadata_harvester.pid_scheme self.pid_collector.update(self.metadata_harvester.pid_collector) - def retrieve_metadata_external(self, target_url = None, repeat_mode = False): - self.metadata_harvester.retrieve_metadata_external(target_url, repeat_mode = repeat_mode) - self.metadata_unmerged.extend( self.metadata_harvester.metadata_unmerged) - self.metadata_merged.update( self.metadata_harvester.metadata_merged) - self.repeat_pid_check = self.metadata_harvester.repeat_pid_check - self.namespace_uri.extend( self.metadata_harvester.namespace_uri) - self.metadata_sources.extend( self.metadata_harvester.metadata_sources) - self.linked_namespace_uri.update( self.metadata_harvester.linked_namespace_uri) - self.related_resources.extend( self.metadata_harvester.related_resources) + def retrieve_metadata_external(self, target_url=None, repeat_mode=False): + self.metadata_harvester.retrieve_metadata_external(target_url, repeat_mode=repeat_mode) + self.metadata_unmerged.extend(self.metadata_harvester.metadata_unmerged) + self.metadata_merged.update(self.metadata_harvester.metadata_merged) + self.repeat_pid_check = self.metadata_harvester.repeat_pid_check + self.namespace_uri.extend(self.metadata_harvester.namespace_uri) + self.metadata_sources.extend(self.metadata_harvester.metadata_sources) + self.linked_namespace_uri.update(self.metadata_harvester.linked_namespace_uri) + self.related_resources.extend(self.metadata_harvester.related_resources) self.metadata_harvester.get_signposting_object_identifier() self.pid_collector.update(self.metadata_harvester.pid_collector) - '''def lookup_metadatastandard_by_name(self, value): + """def lookup_metadatastandard_by_name(self, value): found = None # get standard name with the highest matching percentage using fuzzywuzzy highest = process.extractOne(value, FAIRCheck.COMMUNITY_METADATA_STANDARDS_NAMES, scorer=fuzz.token_sort_ratio) @@ -429,7 +458,7 @@ def lookup_metadatastandard_by_uri(self, value): found = list(FAIRCheck.COMMUNITY_METADATA_STANDARDS_URIS.values())[match[2]] except Exception as e: pass - return found''' + return found""" def check_unique_metadata_identifier(self): unique_identifier_check = FAIREvaluatorUniqueIdentifierMetadata(self) @@ -448,7 +477,7 @@ def check_persistent_data_identifier(self): return persistent_identifier_check.getResult() def check_unique_persistent_metadata_identifier(self): - #self.metadata_harvester.get_signposting_object_identifier() + # self.metadata_harvester.get_signposting_object_identifier() return self.check_unique_metadata_identifier(), self.check_persistent_metadata_identifier() def check_minimal_metatadata(self, include_embedded=True): @@ -505,7 +534,7 @@ def check_semantic_vocabulary(self): def check_metadata_preservation(self): metadata_preserved_check = FAIREvaluatorMetadataPreserved(self) - metadata_preserved_check.set_metric('FsF-A2-01M') + metadata_preserved_check.set_metric("FsF-A2-01M") return metadata_preserved_check.getResult() def check_standardised_protocol_data(self): @@ -519,14 +548,16 @@ def check_standardised_protocol_metadata(self): def raise_warning_if_javascript_page(self, response_content): # check if javascript generated content only: try: - soup = BeautifulSoup(response_content, features='html.parser') - script_content = soup.findAll('script') - for script in soup(['script', 'style', 'title', 'noscript']): + soup = BeautifulSoup(response_content, features="html.parser") + script_content = soup.findAll("script") + for script in soup(["script", "style", "title", "noscript"]): script.extract() text_content = soup.get_text(strip=True) if (len(str(script_content)) > len(str(text_content))) and len(text_content) <= 150: - self.logger.warning('FsF-F1-02D : Landing page seems to be JavaScript generated, could not detect enough content') + self.logger.warning( + "FsF-F1-02D : Landing page seems to be JavaScript generated, could not detect enough content" + ) except Exception as e: pass @@ -534,90 +565,111 @@ def get_log_messages_dict(self): logger_messages = {} self.logger_message_stream.seek(0) for log_message in self.logger_message_stream.readlines(): - if log_message.startswith('FsF-'): - m = log_message.split(':', 1) + if log_message.startswith("FsF-"): + m = log_message.split(":", 1) metric = m[0].strip() - message_n_level = m[1].strip().split('|', 1) + message_n_level = m[1].strip().split("|", 1) if len(message_n_level) > 1: level = message_n_level[1] else: - level = 'INFO' + level = "INFO" message = message_n_level[0] if metric not in logger_messages: logger_messages[metric] = [] if message not in logger_messages[metric]: - logger_messages[metric].append(level.replace('\n', '') + ': ' + message.strip()) + logger_messages[metric].append(level.replace("\n", "") + ": " + message.strip()) self.logger_message_stream = io.StringIO return logger_messages def get_assessment_summary(self, results): - status_dict = {'pass': 1, 'fail': 0} + status_dict = {"pass": 1, "fail": 0} maturity_dict = Mapper.MATURITY_LEVELS.value summary_dict = { - 'fair_category': [], - 'fair_principle': [], - 'score_earned': [], - 'score_total': [], - 'maturity': [], - 'status': [] + "fair_category": [], + "fair_principle": [], + "score_earned": [], + "score_total": [], + "maturity": [], + "status": [], } for res_k, res_v in enumerate(results): - if res_v.get('metric_identifier'): - metric_match = re.search(r'^FsF-(([FAIR])[0-9](\.[0-9])?)-', str(res_v.get('metric_identifier'))) + if res_v.get("metric_identifier"): + metric_match = re.search(r"^FsF-(([FAIR])[0-9](\.[0-9])?)-", str(res_v.get("metric_identifier"))) if metric_match.group(2) is not None: fair_principle = metric_match[1] fair_category = metric_match[2] - earned_maturity = res_v['maturity'] - #earned_maturity = [k for k, v in maturity_dict.items() if v == res_v['maturity']][0] - summary_dict['fair_category'].append(fair_category) - summary_dict['fair_principle'].append(fair_principle) - #An easter egg for Mustapha - if self.input_id in ['https://www.rd-alliance.org/users/mustapha-mokrane','https://www.rd-alliance.org/users/ilona-von-stein']: - summary_dict['score_earned'].append(res_v['score']['total']) - summary_dict['maturity'].append(3) - summary_dict['status'].append(1) + earned_maturity = res_v["maturity"] + # earned_maturity = [k for k, v in maturity_dict.items() if v == res_v['maturity']][0] + summary_dict["fair_category"].append(fair_category) + summary_dict["fair_principle"].append(fair_principle) + # An easter egg for Mustapha + if self.input_id in [ + "https://www.rd-alliance.org/users/mustapha-mokrane", + "https://www.rd-alliance.org/users/ilona-von-stein", + ]: + summary_dict["score_earned"].append(res_v["score"]["total"]) + summary_dict["maturity"].append(3) + summary_dict["status"].append(1) else: - summary_dict['score_earned'].append(res_v['score']['earned']) - summary_dict['maturity'].append(earned_maturity) - summary_dict['status'].append(status_dict.get(res_v['test_status'])) - summary_dict['score_total'].append(res_v['score']['total']) + summary_dict["score_earned"].append(res_v["score"]["earned"]) + summary_dict["maturity"].append(earned_maturity) + summary_dict["status"].append(status_dict.get(res_v["test_status"])) + summary_dict["score_total"].append(res_v["score"]["total"]) sf = pd.DataFrame(summary_dict) - summary = {'score_earned': {}, 'score_total': {}, 'score_percent': {}, 'status_total': {}, 'status_passed': {}} - - summary['score_earned'] = sf.groupby(by='fair_category')['score_earned'].sum().to_dict() - summary['score_earned'].update(sf.groupby(by='fair_principle')['score_earned'].sum().to_dict()) - summary['score_earned']['FAIR'] = round(float(sf['score_earned'].sum()), 2) - - summary['score_total'] = sf.groupby(by='fair_category')['score_total'].sum().to_dict() - summary['score_total'].update(sf.groupby(by='fair_principle')['score_total'].sum().to_dict()) - summary['score_total']['FAIR'] = round(float(sf['score_total'].sum()), 2) - - summary['score_percent'] = (round( - sf.groupby(by='fair_category')['score_earned'].sum() / sf.groupby(by='fair_category')['score_total'].sum() * - 100, 2)).to_dict() - summary['score_percent'].update((round( - sf.groupby(by='fair_principle')['score_earned'].sum() / - sf.groupby(by='fair_principle')['score_total'].sum() * 100, 2)).to_dict()) - summary['score_percent']['FAIR'] = round(float(sf['score_earned'].sum() / sf['score_total'].sum() * 100), 2) - - summary['maturity'] = sf.groupby(by='fair_category')['maturity'].apply( - lambda x: 1 if x.mean() < 1 and x.mean() > 0 else round(x.mean())).to_dict() - summary['maturity'].update( - sf.groupby(by='fair_principle')['maturity'].apply( - lambda x: 1 if x.mean() < 1 and x.mean() > 0 else round(x.mean())).to_dict()) + summary = {"score_earned": {}, "score_total": {}, "score_percent": {}, "status_total": {}, "status_passed": {}} + + summary["score_earned"] = sf.groupby(by="fair_category")["score_earned"].sum().to_dict() + summary["score_earned"].update(sf.groupby(by="fair_principle")["score_earned"].sum().to_dict()) + summary["score_earned"]["FAIR"] = round(float(sf["score_earned"].sum()), 2) + + summary["score_total"] = sf.groupby(by="fair_category")["score_total"].sum().to_dict() + summary["score_total"].update(sf.groupby(by="fair_principle")["score_total"].sum().to_dict()) + summary["score_total"]["FAIR"] = round(float(sf["score_total"].sum()), 2) + + summary["score_percent"] = ( + round( + sf.groupby(by="fair_category")["score_earned"].sum() + / sf.groupby(by="fair_category")["score_total"].sum() + * 100, + 2, + ) + ).to_dict() + summary["score_percent"].update( + ( + round( + sf.groupby(by="fair_principle")["score_earned"].sum() + / sf.groupby(by="fair_principle")["score_total"].sum() + * 100, + 2, + ) + ).to_dict() + ) + summary["score_percent"]["FAIR"] = round(float(sf["score_earned"].sum() / sf["score_total"].sum() * 100), 2) + + summary["maturity"] = ( + sf.groupby(by="fair_category")["maturity"] + .apply(lambda x: 1 if x.mean() < 1 and x.mean() > 0 else round(x.mean())) + .to_dict() + ) + summary["maturity"].update( + sf.groupby(by="fair_principle")["maturity"] + .apply(lambda x: 1 if x.mean() < 1 and x.mean() > 0 else round(x.mean())) + .to_dict() + ) total_maturity = 0 - for fair_index in ['F', 'A', 'I', 'R']: - if summary['maturity'].get(fair_index): - total_maturity += summary['maturity'][fair_index] - summary['maturity']['FAIR'] = round( - float(1 if total_maturity / 4 < 1 and total_maturity / 4 > 0 else total_maturity / 4), 2) - - summary['status_total'] = sf.groupby(by='fair_principle')['status'].count().to_dict() - summary['status_total'].update(sf.groupby(by='fair_category')['status'].count().to_dict()) - summary['status_total']['FAIR'] = int(sf['status'].count()) - - summary['status_passed'] = sf.groupby(by='fair_principle')['status'].sum().to_dict() - summary['status_passed'].update(sf.groupby(by='fair_category')['status'].sum().to_dict()) - summary['status_passed']['FAIR'] = int(sf['status'].sum()) + for fair_index in ["F", "A", "I", "R"]: + if summary["maturity"].get(fair_index): + total_maturity += summary["maturity"][fair_index] + summary["maturity"]["FAIR"] = round( + float(1 if total_maturity / 4 < 1 and total_maturity / 4 > 0 else total_maturity / 4), 2 + ) + + summary["status_total"] = sf.groupby(by="fair_principle")["status"].count().to_dict() + summary["status_total"].update(sf.groupby(by="fair_category")["status"].count().to_dict()) + summary["status_total"]["FAIR"] = int(sf["status"].count()) + + summary["status_passed"] = sf.groupby(by="fair_principle")["status"].sum().to_dict() + summary["status_passed"].update(sf.groupby(by="fair_category")["status"].sum().to_dict()) + summary["status_passed"]["FAIR"] = int(sf["status"].sum()) return summary diff --git a/fuji_server/controllers/fair_metric_controller.py b/fuji_server/controllers/fair_metric_controller.py index 537afdf8..27cdbc84 100644 --- a/fuji_server/controllers/fair_metric_controller.py +++ b/fuji_server/controllers/fair_metric_controller.py @@ -41,6 +41,7 @@ def get_metrics(version): # noqa: E501 else: return response, 404 + def get_metric(version, metric): # noqa: E501 """Return all metrics and their definitions. :rtype: Metrics diff --git a/fuji_server/controllers/fair_object_controller.py b/fuji_server/controllers/fair_object_controller.py index 23955138..1f01aebd 100644 --- a/fuji_server/controllers/fair_object_controller.py +++ b/fuji_server/controllers/fair_object_controller.py @@ -25,13 +25,15 @@ import datetime import os + import connexion + from fuji_server.controllers.fair_check import FAIRCheck +from fuji_server.helper.identifier_helper import IdentifierHelper from fuji_server.helper.preprocessor import Preprocessor from fuji_server.helper.repository_helper import RepositoryHelper from fuji_server.models.body import Body # noqa: E501 from fuji_server.models.fair_results import FAIRResults # noqa: E501 -from fuji_server.helper.identifier_helper import IdentifierHelper def assess_by_id(body): # noqa: E501 @@ -45,16 +47,16 @@ def assess_by_id(body): # noqa: E501 :rtype: FAIRResults """ - allow_remote_logging=False + allow_remote_logging = False if connexion.request.is_json: # The client has to send this HTTP header (Allow-Remote-Logging:True) explicitely to enable remote logging # Useful for e.g. web clients.. - allow_remote_logging = connexion.request.headers.get('Allow-Remote-Logging') + allow_remote_logging = connexion.request.headers.get("Allow-Remote-Logging") debug = True results = [] client_ip = connexion.request.remote_addr body = Body.from_dict(connexion.request.get_json()) - #clienturi = Body.from_dict(connexion.request + # clienturi = Body.from_dict(connexion.request identifier = body.object_identifier debug = body.test_debug metadata_service_endpoint = body.metadata_service_endpoint @@ -62,40 +64,41 @@ def assess_by_id(body): # noqa: E501 metadata_service_type = body.metadata_service_type usedatacite = body.use_datacite metric_version = body.metric_version - print('BODY METRIC', metric_version) + print("BODY METRIC", metric_version) auth_token = body.auth_token auth_token_type = body.auth_token_type logger = Preprocessor.logger - #updating re3data + # updating re3data Preprocessor.retrieve_datacite_re3repos() - logger.info('Assessment target: ' + identifier) - print('Assessment target: ', identifier, flush=True) - starttimestmp = datetime.datetime.now().replace( - microsecond=0).isoformat() + 'Z' - ft = FAIRCheck(uid=identifier, - test_debug=debug, - metadata_service_url=metadata_service_endpoint, - metadata_service_type=metadata_service_type, - use_datacite=usedatacite, - oaipmh_endpoint=oaipmh_endpoint, - metric_version=metric_version) - #dataset level authentication + logger.info("Assessment target: " + identifier) + print("Assessment target: ", identifier, flush=True) + starttimestmp = datetime.datetime.now().replace(microsecond=0).isoformat() + "Z" + ft = FAIRCheck( + uid=identifier, + test_debug=debug, + metadata_service_url=metadata_service_endpoint, + metadata_service_type=metadata_service_type, + use_datacite=usedatacite, + oaipmh_endpoint=oaipmh_endpoint, + metric_version=metric_version, + ) + # dataset level authentication if auth_token: ft.set_auth_token(auth_token, auth_token_type) # set target for remote logging remote_log_host, remote_log_path = Preprocessor.remote_log_host, Preprocessor.remote_log_path - #print(remote_log_host, remote_log_path) + # print(remote_log_host, remote_log_path) if remote_log_host and remote_log_path and allow_remote_logging: - print('Remote logging enabled...') + print("Remote logging enabled...") if ft.weblogger: ft.logger.addHandler(ft.weblogger) else: - print('Remote logging disabled...') + print("Remote logging disabled...") if ft.weblogger: ft.logger.removeHandler(ft.weblogger) - print('starting harvesting ') + print("starting harvesting ") ft.harvest_all_metadata() uid_result, pid_result = ft.check_unique_persistent_metadata_identifier() if ft.repeat_pid_check: @@ -167,43 +170,46 @@ def assess_by_id(body): # noqa: E501 if standard_protocol_metadata_result: results.append(standard_protocol_metadata_result) debug_messages = ft.get_log_messages_dict() - #ft.logger_message_stream.flush() + # ft.logger_message_stream.flush() summary = ft.get_assessment_summary(results) for res_k, res_v in enumerate(results): if ft.isDebug: - debug_list = debug_messages.get(res_v['metric_identifier']) + debug_list = debug_messages.get(res_v["metric_identifier"]) # debug_list= ft.msg_filter.getMessage(res_v['metric_identifier']) if debug_list is not None: - results[res_k]['test_debug'] = debug_messages.get(res_v['metric_identifier']) + results[res_k]["test_debug"] = debug_messages.get(res_v["metric_identifier"]) else: - results[res_k]['test_debug'] = ['INFO: No debug messages received'] + results[res_k]["test_debug"] = ["INFO: No debug messages received"] else: - results[res_k]['test_debug'] = ['INFO: Debugging disabled'] + results[res_k]["test_debug"] = ["INFO: Debugging disabled"] debug_messages = {} if len(ft.logger.handlers) > 1: ft.logger.handlers = [ft.logger.handlers[-1]] - #endtimestmp = datetime.datetime.now().replace(microsecond=0).isoformat() - endtimestmp = datetime.datetime.now().replace( - microsecond=0).isoformat() + 'Z' # use timestamp format from RFC 3339 as specified in openapi3 + # endtimestmp = datetime.datetime.now().replace(microsecond=0).isoformat() + endtimestmp = ( + datetime.datetime.now().replace(microsecond=0).isoformat() + "Z" + ) # use timestamp format from RFC 3339 as specified in openapi3 metric_spec = ft.metric_helper.metric_specification resolved_url = ft.landing_url if not resolved_url: - resolved_url = 'not defined' - #metric_version = os.path.basename(Preprocessor.METRIC_YML_PATH) + resolved_url = "not defined" + # metric_version = os.path.basename(Preprocessor.METRIC_YML_PATH) totalmetrics = len(results) request = body.to_dict() if ft.pid_url: idhelper = IdentifierHelper(ft.pid_url) - request['normalized_object_identifier'] = idhelper.get_normalized_id() - final_response = FAIRResults(request=request, - start_timestamp= starttimestmp, - end_timestamp=endtimestmp, - software_version=ft.FUJI_VERSION, - test_id=ft.test_id, - metric_version=metric_version, - metric_specification=metric_spec, - total_metrics=totalmetrics, - results=results, - summary=summary, - resolved_url=resolved_url) + request["normalized_object_identifier"] = idhelper.get_normalized_id() + final_response = FAIRResults( + request=request, + start_timestamp=starttimestmp, + end_timestamp=endtimestmp, + software_version=ft.FUJI_VERSION, + test_id=ft.test_id, + metric_version=metric_version, + metric_specification=metric_spec, + total_metrics=totalmetrics, + results=results, + summary=summary, + resolved_url=resolved_url, + ) return final_response diff --git a/fuji_server/controllers/harvest_controller.py b/fuji_server/controllers/harvest_controller.py index f4995bda..2e677a30 100644 --- a/fuji_server/controllers/harvest_controller.py +++ b/fuji_server/controllers/harvest_controller.py @@ -25,14 +25,15 @@ import datetime import os + import connexion + +from fuji_server import util from fuji_server.controllers.fair_check import FAIRCheck from fuji_server.helper.preprocessor import Preprocessor - from fuji_server.models.harvest import Harvest # noqa: E501 from fuji_server.models.harvest_results import HarvestResults # noqa: E501 from fuji_server.models.harvest_results_metadata import HarvestResultsMetadata # noqa: E501 -from fuji_server import util def harvest_by_id(body=None): # noqa: E501 @@ -51,14 +52,16 @@ def harvest_by_id(body=None): # noqa: E501 auth_token = body.auth_token auth_token_type = body.auth_token_type logger = Preprocessor.logger - ft = FAIRCheck(uid=identifier, - test_debug=False, - metadata_service_url=None, - metadata_service_type=None, - use_datacite=False, - oaipmh_endpoint=None) + ft = FAIRCheck( + uid=identifier, + test_debug=False, + metadata_service_url=None, + metadata_service_type=None, + use_datacite=False, + oaipmh_endpoint=None, + ) - #dataset level authentication + # dataset level authentication if auth_token: ft.set_auth_token(auth_token, auth_token_type) ft.harvest_all_metadata() @@ -70,17 +73,19 @@ def harvest_by_id(body=None): # noqa: E501 ft.retrieve_metadata_external_rdf_negotiated([ft.pid_url]) ft.retrieve_metadata_external_datacite() - harvest_result =[] + harvest_result = [] for metadata in ft.metadata_unmerged: - harvest_result.append(HarvestResultsMetadata( - metadata.get('offering_method'), - metadata.get('url'), - metadata.get('format'), - metadata.get('schema'), - metadata.get('namespaces'), - metadata.get('metadata') - )) + harvest_result.append( + HarvestResultsMetadata( + metadata.get("offering_method"), + metadata.get("url"), + metadata.get("format"), + metadata.get("schema"), + metadata.get("namespaces"), + metadata.get("metadata"), + ) + ) response = HarvestResults(identifier, harvest_result) - #response + # response return response diff --git a/fuji_server/data/access_rights.json b/fuji_server/data/access_rights.json index 4d284905..9cd1aab8 100644 --- a/fuji_server/data/access_rights.json +++ b/fuji_server/data/access_rights.json @@ -1,171 +1,171 @@ { + "COAR_access_right": { + "id": "COAR_access_rights", + "identifier": { + "type": "namespace", + "value": "https://vocabularies.coar-repositories.org/access_rights" + }, + "label": "COAR access rights", + "members": [ + { + "access_condition": "embargoed", + "id": "c_f1cf", + "label": "embargoed access", + "source": "coar-repositories.org", + "uri": "http://purl.org/coar/access_right/c_f1cf" + }, + { + "access_condition": "metadataonly", + "id": "c_14cb", + "label": "metadata only access", + "source": "coar-repositories.org", + "uri": "http://purl.org/coar/access_right/c_14cb" + }, + { + "access_condition": "restricted", + "id": "c_16ec", + "label": "restricted access", + "source": "coar-repositories.org", + "uri": "http://purl.org/coar/access_right/c_16ec" + }, + { + "access_condition": "public", + "id": "c_abf2", + "label": "open access", + "source": "coar-repositories.org", + "uri": "http://purl.org/coar/access_right/c_abf2" + } + ], + "source": "coar-repositories.org" + }, + "EPRINTS_access_rights": { + "id": "EPRINTS_access_rights", + "identifier": { + "type": "namespace", + "value": "http://purl.org/eprint/accessRights/" + }, + "label": "ePrints access rights vocabulary", + "members": [ + { + "access_condition": "public", + "id": "OpenAccess", + "label": "Open Access", + "source": "ukoln.ac.uk", + "uri": "http://purl.org/eprint/accessRights/OpenAccess" + }, + { + "access_condition": "restricted", + "id": "RestrictedAccess", + "label": "Restricted Access", + "source": "ukoln.ac.uk", + "uri": "http://purl.org/eprint/accessRights/RestrictedAccess" + }, + { + "access_condition": "closed", + "id": "ClosedAccess", + "label": "Closed Access", + "source": "ukoln.ac.uk", + "uri": "http://purl.org/eprint/accessRights/ClosedAccess" + } + ], + "source": "ukoln.ac.uk" + }, "EU_access_rights": { + "id": "EU_access_rights", "identifier": { - "value": "http://publications.europa.eu/resource/authority/access-right/", - "type": "namespace" + "type": "namespace", + "value": "http://publications.europa.eu/resource/authority/access-right/" }, "label": "EU publications office access-right authority table", - "id": "EU_access_rights", - "source": "publications.europa.eu", "members": [ { + "access_condition": "restricted", "id": "NON_PUBLIC", - "uri": "http://publications.europa.eu/resource/authority/access-right/NON_PUBLIC", "label": "non-public", "source": "publications.europa.eu", - "access_condition": "restricted" + "uri": "http://publications.europa.eu/resource/authority/access-right/NON_PUBLIC" }, { + "access_condition": "embargoed", "id": "OP_DATPRO", - "uri": "http://publications.europa.eu/resource/authority/access-right/OP_DATPRO", "label": "Provisional data", "source": "publications.europa.eu", - "access_condition": "embargoed" + "uri": "http://publications.europa.eu/resource/authority/access-right/OP_DATPRO" }, { + "access_condition": "public", "id": "PUBLIC", - "uri": "http://publications.europa.eu/resource/authority/access-right/PUBLIC", "label": "public", "source": "publications.europa.eu", - "access_condition": "public" + "uri": "http://publications.europa.eu/resource/authority/access-right/PUBLIC" }, { + "access_condition": "restricted", "id": "RESTRICTED", - "uri": "http://publications.europa.eu/resource/authority/access-right/RESTRICTED", "label": "restricted", "source": "publications.europa.eu", - "access_condition": "restricted" + "uri": "http://publications.europa.eu/resource/authority/access-right/RESTRICTED" }, { + "access_condition": "restricted", "id": "SENSITIVE", - "uri": "http://publications.europa.eu/resource/authority/access-right/SENSITIVE", "label": "sensitive", "source": "publications.europa.eu", - "access_condition": "restricted" + "uri": "http://publications.europa.eu/resource/authority/access-right/SENSITIVE" }, { + "access_condition": "restricted", "id": "CONFIDENTIAL", - "uri": "http://publications.europa.eu/resource/authority/access-right/CONFIDENTIAL", "label": "confidential", "source": "publications.europa.eu", - "access_condition": "restricted" + "uri": "http://publications.europa.eu/resource/authority/access-right/CONFIDENTIAL" }, { + "access_condition": "public", "id": "NORMAL", - "uri": "http://publications.europa.eu/resource/authority/access-right/NORMAL", "label": "normal", "source": "publications.europa.eu", - "access_condition": "public" + "uri": "http://publications.europa.eu/resource/authority/access-right/NORMAL" } - ] - }, - "COAR_access_right": { - "identifier": { - "value": "https://vocabularies.coar-repositories.org/access_rights", - "type": "namespace" - }, - "label": "COAR access rights", - "id": "COAR_access_rights", - "source": "coar-repositories.org", - "members": [ - { - "id": "c_f1cf", - "uri": "http://purl.org/coar/access_right/c_f1cf", - "label": "embargoed access", - "source": "coar-repositories.org", - "access_condition": "embargoed" - }, - { - "id": "c_14cb", - "uri": "http://purl.org/coar/access_right/c_14cb", - "label": "metadata only access", - "source": "coar-repositories.org", - "access_condition": "metadataonly" - }, - { - "id": "c_16ec", - "uri": "http://purl.org/coar/access_right/c_16ec", - "label": "restricted access", - "source": "coar-repositories.org", - "access_condition": "restricted" - }, - { - "id": "c_abf2", - "uri": "http://purl.org/coar/access_right/c_abf2", - "label": "open access", - "source": "coar-repositories.org", - "access_condition": "public" - } - ] + ], + "source": "publications.europa.eu" }, "OPENAIRE_access_rights": { + "id": "OPENAIRE_access_rights", "identifier": { "value": "info:eu-repo/semantics/" }, "label": "OpenAire access rights list", - "id": "OPENAIRE_access_rights", - "source": "openaire.eu", "members": [ { + "access_condition": "closed", "id": "closedAccess", - "uri": "info:eu-repo/semantics/closedAccess", "label": "closed Access", "source": "openaire.eu", - "access_condition": "closed" + "uri": "info:eu-repo/semantics/closedAccess" }, { + "access_condition": "embargoed", "id": "embargoedAccess", - "uri": "info:eu-repo/semantics/embargoedAccess", "label": "embargoed Access", "source": "openaire.eu", - "access_condition": "embargoed" + "uri": "info:eu-repo/semantics/embargoedAccess" }, { + "access_condition": "restricted", "id": "restrictedAccess", - "uri": "info:eu-repo/semantics/restrictedAccess", "label": "restricted Access", "source": "openaire.eu", - "access_condition": "restricted" + "uri": "info:eu-repo/semantics/restrictedAccess" }, { + "access_condition": "public", "id": "openAccess", - "uri": "info:eu-repo/semantics/openAccess", "label": "open Access", "source": "openaire.eu", - "access_condition": "public" - } - ] - }, - "EPRINTS_access_rights": { - "identifier": { - "value": "http://purl.org/eprint/accessRights/", - "type": "namespace" - }, - "label": "ePrints access rights vocabulary", - "id": "EPRINTS_access_rights", - "source": "ukoln.ac.uk", - "members": [ - { - "id": "OpenAccess", - "uri": "http://purl.org/eprint/accessRights/OpenAccess", - "label": "Open Access", - "source": "ukoln.ac.uk", - "access_condition": "public" - }, - { - "id": "RestrictedAccess", - "uri": "http://purl.org/eprint/accessRights/RestrictedAccess", - "label": "Restricted Access", - "source": "ukoln.ac.uk", - "access_condition": "restricted" - }, - { - "id": "ClosedAccess", - "uri": "http://purl.org/eprint/accessRights/ClosedAccess", - "label": "Closed Access", - "source": "ukoln.ac.uk", - "access_condition": "closed" + "uri": "info:eu-repo/semantics/openAccess" } - ] + ], + "source": "openaire.eu" } -} \ No newline at end of file +} diff --git a/fuji_server/data/file_formats.json b/fuji_server/data/file_formats.json index cc410ae2..535c6b62 100644 --- a/fuji_server/data/file_formats.json +++ b/fuji_server/data/file_formats.json @@ -1,2296 +1,2296 @@ { - "3d_studio_format": { - "name": "3D Studio format", - "mime": [ - "image/x-3ds", - "application/x-3ds" - ], - "ext": [ - "*.3ds" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "aac_advanced_audio_coding_file_format": { - "name": "AAC (Advanced Audio Coding) File Format", - "mime": [ - "audio/x-aac", - "audio/aac" - ], - "ext": [ - "*.aac" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "aiff_audio_interchange_file_format_": { - "name": "AIFF (Audio Interchange File Format)", - "mime": [ - "audio/x-midi", - "sound/aiff", - "audio/aiff", - "audio/x-rmf", - "audio/x-pn-aiff", - "audio/x-gsm", - "audio/x-aiff", - "audio/rmf", - "audio/vnd.qcelp" - ], - "ext": [ - "*.aiff", - "*.aff", - "*.aifc", - "*.aif", - "*.ief" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "av1_image_file_format_avif_": { - "name": "AV1 Image File Format\u00a0(AVIF)", - "mime": [ - "image/avif-sequence", - "image/avif" - ], - "ext": [ - "*.avifs", - "*.avif" - ], - "reason": [ - "open format" - ], - "source": [ - "various" - ] - }, - "avi_audio_video_interleaved_file_format": { - "name": "AVI (Audio Video Interleaved) File Format", - "mime": [ - "application/x-troff-msvideo", - "audio/avi", - "video/x-msvideo", - "video/msvideo", - "video/vnd.avi", - "video/avi" - ], - "ext": [ - "*.avi" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "avi_audio_video_interleaved_video_file_format": { - "name": "AVI (Audio Video Interleaved) Video File Format", - "mime": [ - "video/avi" - ], - "ext": [ - "*.gvi" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "adobe_digital_negative_dng_": { - "name": "Adobe Digital Negative (DNG)", - "mime": [ - "image/x-adobe-dng" - ], - "ext": [ - "*.dng" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "apple_lossless_audio_codec_alac_": { - "name": "Apple Lossless Audio Codec (ALAC)", - "mime": [ - "audio/mp4" - ], - "ext": [ - "*.m4a" - ], - "reason": [ - "open format" - ], - "source": [ - "various" - ] - }, - "apple_numbers": { - "name": "Apple Numbers", - "mime": [ - "application/vnd.apple.numbers" - ], - "ext": [ - "*.numbers", - "*.numbers.zip" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "bed_browser_extensible_data_": { - "name": "BED (Browser Extensible Data)", - "mime": [ - "text/x-bed" - ], - "ext": [ - "*.bed" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "beilstein_crossfire_file": { - "name": "Beilstein Crossfire file", - "mime": [ - "chemical/x-crossfire" - ], - "ext": [ - "*.bsd" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "c_source_code_file": { - "name": "C Source Code File", - "mime": [ - "text/x-c" - ], - "ext": [ - "*.c" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "cactvs_format": { - "name": "CACTVS format", - "mime": [ - "chemical/x-cactus", - "chemical/x-cactus-ascii" - ], - "ext": [ - "*.cascii", - "*.ctx" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "ccdc_isostar_library": { - "name": "CCDC IsoStar Library", - "mime": [ - "chemical/x-isostar" - ], - "ext": [ - "*.istr" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "ccp4_file_format": { - "name": "CCP4 file format", - "mime": [ - "application/CCP4-mtz-phases", - "application/CCP4-mtz-freerflag", - "application/CCP4-mtz-observed", - "application/CCP4-unmerged-experimental", - "application/CCP4-mtz-map" - ], - "ext": [ - "*.ccp4" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "cd_audio_cd_audio_track_shortcut": { - "name": "CD Audio CD Audio track shortcut", - "mime": [ - "audio/audiocd" - ], - "ext": [ - "*.cda" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "cfd_general_notation_system": { - "name": "CFD General Notation System", - "mime": [ - "application/cgns" - ], - "ext": [ - "*.cgns" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "collada_digital_asset_exchange_format": { - "name": "COLLADA digital asset exchange format", - "mime": [ - "model/vnd.collada+xml" - ], - "ext": [ - "*.dae" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "chem3d_format": { - "name": "Chem3D Format", - "mime": [ - "chemical/x-chem3d" - ], - "ext": [ - "*.c3d" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "chemdraw_exchange_file": { - "name": "ChemDraw eXchange file", - "mime": [ - "chemical/x-cdxml", - "chemical/x-cdx" - ], - "ext": [ - "*.cdx" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "chemical_markup_language": { - "name": "Chemical Markup Language", - "mime": [ - "chemical/x-cml" - ], - "ext": [ - "*.cml" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "computer_graphics_metafile": { - "name": "Computer Graphics Metafile", - "mime": [ - "image/cgm" - ], - "ext": [ - "*.cgm" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "crystallographic_information_file": { - "name": "Crystallographic Information File", - "mime": [ - "chemical/x-cif" - ], - "ext": [ - "*.mif", - "*.cif" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "crystalmaker_file": { - "name": "Crystalmaker File", - "mime": [ - "chemical/x-cmdf" - ], - "ext": [ - "*.cmdf" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "dicom": { - "name": "DICOM", - "mime": [ - "application/dicom", - "image/dicom-rle" - ], - "ext": [ - "*.dic", - "*.dcm" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "daylight_smiles_string": { - "name": "Daylight SMILES string", - "mime": [ - "chemical/x-daylight-smiles" - ], - "ext": [ - "*.smi" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "device_independent_bitmap_dib_": { - "name": "Device-Independent bitmap (DIB)", - "mime": [ - "image/dib" - ], - "ext": [ - "*.dib" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "dolby_heaac": { - "name": "Dolby HEAAC", - "mime": [ - "audio/vnd.dolby.heaac.1" - ], - "ext": [ - "*.wav" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "embl_nucleotide_sequence_format": { - "name": "EMBL nucleotide sequence format", - "mime": [ - "chemical/x-embl-dl-nucleotide" - ], - "ext": [ - "*.emb" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "esri_shapefile": { - "name": "ESRI Shapefile", - "mime": [ - "application/prj", - "application/zipped-shapefile", - "application/x-esri-shape", - "application/shx", - "application/shp" - ], - "ext": [ - "*.prj", - "*.shx", - "*.shp" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "esri_spatial_index": { - "name": "ESRI Spatial Index", - "mime": [ - "application/sbx", - "application/sbn" - ], - "ext": [ - "*.sbn", - "*.sbx" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "extensible_3d_x3d_file_format_family": { - "name": "Extensible 3D (X3D) File Format Family", - "mime": [ - "model/x3d+xml", - "model/x3d+binary", - "model/x3d+fastinfoset", - "model/x3d+vrml", - "model/x3d-vrml" - ], - "ext": [ - "*.x3db", - "*.x3dbz", - "*.x3dz", - "*.x3dv", - "*.x3d", - "*.x3dvz" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "fasta": { - "name": "FASTA", - "mime": [ - "chemical/seq-aa-fasta", - "chemical/seq-na-fasta", - "text/x-fasta" - ], - "ext": [ - "*.fasta", - "*.frn", - "*.faa", - "*.fna" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "fastq": { - "name": "FASTQ", - "mime": [ - "chemical/seq-na-fastq" - ], - "ext": [ - "*.fq", - "*.fastq", - "*.fa" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "flexible_image_transport_system_fits_": { - "name": "Flexible Image Transport System (FITS)", - "mime": [ - "application/fits", - "image/fits" - ], - "ext": [ - "*.fits", - "*.fts", - "*.fit" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "free_lossless_image_format_flif_": { - "name": "Free Lossless Image Format (FLIF)", - "mime": [ - "image/flif" - ], - "ext": [ - "*.flif" - ], - "reason": [ - "open format" - ], - "source": [ - "various" - ] - }, - "gamess_us_ab_initio_input_file": { - "name": "GAMESS(US) Ab initio Input File", - "mime": [ - "chemical/x-gamess-input" - ], - "ext": [ - "*.inp" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "grib": { - "name": "GRIB", - "mime": [ - "application/x-grib", - "application/wmo-grib2" - ], - "ext": [ - "*.grb1", - "*.grb2", - "*.grb" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "gaussian_checkpoint_file": { - "name": "Gaussian Checkpoint file", - "mime": [ - "chemical/x-gaussian-checkpoint" - ], - "ext": [ - "*.fch", - "*.fchk" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "gaussian_cube_file": { - "name": "Gaussian Cube file", - "mime": [ - "chemical/x-cube", - "chemical/x-gaussian-cube" - ], - "ext": [ - "*.cub" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "gaussian_log_file": { - "name": "Gaussian log file", - "mime": [ - "chemical/x-gaussian-log" - ], - "ext": [ - "*.gal" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "genbank_molecular_biology_format": { - "name": "GenBank molecular biology format", - "mime": [ - "chemical/seq-na-genbank" - ], - "ext": [ - "*.gbk", - "*.gb" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "general_feature_format": { - "name": "General feature format", - "mime": [ - "text/x-gff3" - ], - "ext": [ - "*.gff" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "geojson_a_geographic_data_format_based_on_json": { - "name": "GeoJSON a geographic data format based on JSON", - "mime": [ - "application/geo+json" - ], - "ext": [ - "*.geojson" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "geographic_tagged_image_file_format_geotiff_": { - "name": "Geographic Tagged Image File Format (GeoTIFF)", - "mime": [ - "image/geotiff" - ], - "ext": [ - "*.tif" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "gerber_format": { - "name": "Gerber format", - "mime": [ - "application/vnd.gerber" - ], - "ext": [ - "*.gpt", - "*.gbo", - "*.gtl", - "*.gbp", - "*.gtp", - "*.gbs", - "*.gpb", - "*.gml", - "*.gbr", - "*.gto", - "*.gbl", - "*.gts", - "*.gko" - ], - "reason": [ - "open format" - ], - "source": [ - "various" - ] - }, - "gnumeric_spreadsheet": { - "name": "Gnumeric spreadsheet", - "mime": [ - "application/x-gnumeric" - ], - "ext": [ - "*.gnm", - "*.gnumeric" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "graphics_interchange_format": { - "name": "Graphics Interchange Format", - "mime": [ - "image/gif" - ], - "ext": [ - "*.gif" - ], - "reason": [ - "long term format", - "open format" - ], - "source": [ - "ISO/TR 22299", - "various" - ] - }, - "hdf": { - "name": "HDF", - "mime": [ - "application/x-hdf5", - "application/x-hdf" - ], - "ext": [ - "*.hdf", - "*.hdf5", - "*.h5" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "hyperchen_hin_data_format": { - "name": "HyperChen HIN data format", - "mime": [ - "chemical/x-hin" - ], - "ext": [ - "*.hin" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "iso14976_spectroscopic_format": { - "name": "ISO14976 Spectroscopic format", - "mime": [ - "chemical/x-vamas-iso14976" - ], - "ext": [ - "*.vms" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "jcamp_dx_a_chemical_spectroscopy_format": { - "name": "JCAMP-DX a chemical spectroscopy format", - "mime": [ - "chemical/x-jcamp-dx" - ], - "ext": [ - "*.jdx" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "jpeg_2000_file_format": { - "name": "JPEG 2000 File Format", - "mime": [ - "image/jpx", - "image/jpeg2000", - "image/x-jpeg2000-image", - "image/jp2", - "image/jpm", - "image/jpeg2000-image" - ], - "ext": [ - "*.jpf", - "*.jpx", - "*.jpg", - "*.jp2", - "*.mj2", - "*.jpm" - ], - "reason": [ - "long term format", - "open format" - ], - "source": [ - "ISO/TR 22299", - "various" - ] - }, - "jpg_joint_photographic_experts_group_file_format": { - "name": "JPG (Joint Photographic Experts Group) File Format", - "mime": [ - "image/jpeg", - "application/jpg", - "image/jpm", - "image/jpg" - ], - "ext": [ - "*.jpf", - "*.jfif", - "*.jls", - "*.jif", - "*.jmh", - "*.jpg", - "*.jp2", - "*.jpeg", - "*.jpe", - "*.j", - "*.jfi", - "*.spf" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "jt_3d_visualization_format": { - "name": "JT 3D visualization format", - "mime": [ - "model/jt" - ], - "ext": [ - "*.jt" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "jupyter_notebook_file": { - "name": "Jupyter Notebook File", - "mime": [ - "application/x-ipynb+json" - ], - "ext": [ - "*.ipynb" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "kinetic_protein_structure_images": { - "name": "Kinetic (Protein Structure) Images", - "mime": [ - "chemical/x-kinemage" - ], - "ext": [ - "*.kin" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "lotus_1_2_3_format": { - "name": "Lotus 1-2-3 Format", - "mime": [ - "application/vnd.lotus-1-2-3" - ], - "ext": [ - "*.wk3", - "*.wk4", - "*.wk1", - "*.wks", - "*.wk2", - "*.wk*" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "mdl_mol_molecular_models_and_drawings_format": { - "name": "MDL MOL molecular models and drawings format", - "mime": [ - "chemical/x-mdl-molfile" - ], - "ext": [ - "*.mol" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "mdl_reaction_format": { - "name": "MDL Reaction format", - "mime": [ - "chemical/x-mdl-rxnfile" - ], - "ext": [ - "*.rxn" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "mdl_reaction_data_file": { - "name": "MDL Reaction-data file", - "mime": [ - "chemical/x-mdl-rdfile" - ], - "ext": [ - "*.rd" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "mdl_structure_data_file": { - "name": "MDL Structure-data file", - "mime": [ - "chemical/x-mdl-sdfile" - ], - "ext": [ - "*.sd" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "mdl_transportable_graphics_file": { - "name": "MDL Transportable Graphics file", - "mime": [ - "chemical/x-mdl-tgf" - ], - "ext": [ - "*.rd" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "mmcif_3d_molecular_model_format": { - "name": "MMCIF 3D molecular model format", - "mime": [ - "chemical/x-mmcif" - ], - "ext": [ - "*.mmcif" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "mp3_file_format": { - "name": "MP3 File Format", - "mime": [ - "audio/x-mpegaudio", - "audio/x-mpg", - "audio/mp3", - "audio/mpeg", - "audio/mpg", - "audio/mpeg3", - "audio/x-mpeg3", - "audio/x-mp3" - ], - "ext": [ - "*.mp3" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "mpeg_file_format": { - "name": "MPEG File Format", - "mime": [ - "video/mpeg", - "video/x-mpeg", - "video/mpg", - "video/x-mpg", - "video/mpv", - "video/mp1s", - "audio/mpeg", - "application/x-pn-mpg" - ], - "ext": [ - "*.mp3", - "*.mpg", - "*.mpeg", - "*.mpa", - "*.m1v", - "*.m1a", - "*.mpv" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "mpeg_2_file_format": { - "name": "MPEG-2 File Format", - "mime": [ - "video/mpeg", - "video/mp2p", - "video/x-mpeg2a", - "video/mpeg2", - "video/mp2t", - "application/x-pn-mpg" - ], - "ext": [ - "*.m2v", - "*.mpeg", - "*.m2a", - "*.ts", - "*.mpg", - "*.m2ts" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "mpeg_4_file_format": { - "name": "MPEG-4 File Format", - "mime": [ - "application/mp4", - "video/mp4v-es", - "application/mpeg4-iod-xmt", - "video/mpeg4-generic", - "audio/mp4", - "application/mpeg4-iod", - "video/mp4", - "application/mpeg4-generic" - ], - "ext": [ - "*.m4a", - "*.mpg", - "*.m4v", - "*.mp4" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "mpeg_4_media_file": { - "name": "MPEG-4 Media File", - "mime": [ - "application/mp4", - "video/mp4" - ], - "ext": [ - "*.f4v" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "ms_works_file": { - "name": "MS Works File", - "mime": [ - "application/vnd.ms-works", - "application/x-tika-msworks-spreadsheet" - ], - "ext": [ - "*.wdb", - "*.wps", - "*.xlr", - "*.wks", - "*.wcm" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "msi_alchemy_format": { - "name": "MSI Alchemy format", - "mime": [ - "hemical/x-alchemy" - ], - "ext": [ - "*.alc" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "msi_cerius2_datafile": { - "name": "MSI Cerius2 Datafile", - "mime": [ - "chemical/x-cerius" - ], - "ext": [ - "*.c3d" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "macmolecule_file_format": { - "name": "MacMolecule File Format", - "mime": [ - "chemical/x-macmolecule" - ], - "ext": [ - "*.mcm" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "macromodel_molecular_mechanics": { - "name": "MacroModel Molecular Mechanics", - "mime": [ - "chemical/x-macromodel-input" - ], - "ext": [ - "*.mmod", - "*.mmd" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "material_exchange_format_mxf_": { - "name": "Material Exchange Format (MXF)", - "mime": [ - "application/mxf" - ], - "ext": [ - "*.mxf" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "mathml_math_content_format": { - "name": "MathML math content format", - "mime": [ - "text/mathml", - "application/mathml+xml" - ], - "ext": [ - "*.mml" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "mathematica_format": { - "name": "Mathematica Format", - "mime": [ - "application/vnd.wolfram.mathematica", - "application/mathematica", - "application/vnd.wolfram.mathematica.package", - "text/x-mathematica" - ], - "ext": [ - "*.wl", - "*.m", - "*.ma", - "*.nb" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "matlab_format": { - "name": "Matlab Format", - "mime": [ - "application/matlab-mat", - "text/x-matlab", - "application/x-matlab-figure", - "application/x-matlab-workspace", - "application/x-matlab-data" - ], - "ext": [ - "*.m", - "*.mat" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "microsoft_excel_file": { - "name": "Microsoft Excel File", - "mime": [ - "application/vnd.ms-excel.addin.macroenabled.12", - "application/vnd.ms-excel.template.macroenabled.12", - "application/vnd.ms-excel.sheet.binary.macroenabled.12", - "application/vnd.openxmlformats-officedocument.spreadsheetml.template", - "application/vnd.ms-excel.sheet.4", - "application/msexcel", - "application/vnd.ms-excel.workspace.3", - "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", - "application/x-tika-old-excel", - "application/vnd.ms-excel.sheet.3", - "application/vnd.ms-excel.sheet.2", - "application/vnd.ms-excel.workspace.4", - "application/vnd.ms-excel", - "application/vnd.ms-excel.sheet.macroenabled.12" - ], - "ext": [ - "*.xlc", - "*.xld", - "*.xlt", - "*.xlsm", - "*.xls", - "*.xlsb", - "*.xlw", - "*.xll", - "*.xlm", - "*.xla" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "molconn_z_format": { - "name": "Molconn-Z Format", - "mime": [ - "chemical/x-molconn-Z" - ], - "ext": [ - "*.b" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "motion_jpeg_2000_file_format": { - "name": "Motion JPEG 2000 File Format", - "mime": [ - "video/jpm", - "video/mj2", - "video/mpeg" - ], - "ext": [ - "*.jpf", - "*.jpgm", - "*.jpx", - "*.mjp2", - "*.mp1", - "*.jp2", - "*.mj2", - "*.mp2", - "*.jpm" - ], - "reason": [ - "long term format", - "open format" - ], - "source": [ - "ISO/TR 22299", - "various" - ] - }, - "multiple_image_network_graphics": { - "name": "Multiple-Image Network Graphics", - "mime": [ - "video/x-mng" - ], - "ext": [ - "*.mng" - ], - "reason": [ - "open format" - ], - "source": [ - "various" - ] - }, - "nasa_common_data_format_cdf_": { - "name": "NASA common data format (.cdf)", - "mime": [ - "application/x-cdf" - ], - "ext": [ - "*.cdf" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "nsdstat_format": { - "name": "NSDstat Format", - "mime": [ - "application/x-nsdstat" - ], - "ext": [ - "*.nsdstat" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "netcdf": { - "name": "NetCDF", - "mime": [ - "application/x-netcdf", - "application/netcdf" - ], - "ext": [ - "*.nc", - "*.cdf", - "*.cf" - ], - "reason": [ - "scientific format", - "open format" - ], - "source": [ - "various" - ] - }, - "newick_format": { - "name": "Newick format", - "mime": [ - "text/x-nh" - ], - "ext": [ - "*.tree" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "nucleotide_sequence_format": { - "name": "Nucleotide Sequence Format", - "mime": [ - "chemical/x-gcg8-sequence" - ], - "ext": [ - "*.gcg" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "ogg_multimedia_container_format": { - "name": "Ogg Multimedia Container Format", - "mime": [ - "video/daala", - "video/x-oggrgb", - "audio/x-ogg-flac", - "audio/ogg", - "audio/x-ogg-pcm", - "video/x-ogm", - "video/theora", - "application/x-ogg", - "video/x-theora", - "video/x-ogg-uvs", - "application/ogg", - "video/x-ogg-yuv", - "video/x-ogguvs", - "video/x-daala", - "video/ogg", - "audio/opus", - "audio/speex", - "video/x-oggyuv", - "video/x-ogg-rgb", - "audio/x-ogg" - ], - "ext": [ - "*.ogm", - "*.ogx", - "*.ogg", - "*.oga", - "*.opus", - "*.ogv" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "ogg_packaged_dirac_video": { - "name": "Ogg Packaged Dirac Video", - "mime": [ - "video/x-dirac" - ], - "ext": [ - "*.drc" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "ogg_speex_codec_multimedia_file": { - "name": "Ogg Speex Codec Multimedia File", - "mime": [ - "application/x-speex", - "audio/x-speex", - "audio/speex" - ], - "ext": [ - "*.spx" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "opendocument_spreadsheet": { - "name": "OpenDocument Spreadsheet", - "mime": [ - "application/vnd.oasis.opendocument.spreadsheet-template", - "application/vnd.oasis.opendocument.spreadsheet" - ], - "ext": [ - "*.fods", - "*.ots", - "*.ods" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "openexr_file_format": { - "name": "OpenEXR File Format", - "mime": [ - "image/x-exr" - ], - "ext": [ - "*.exr" - ], - "reason": [ - "open format" - ], - "source": [ - "various" - ] - }, - "openoffice_org_xml": { - "name": "OpenOffice.org XML", - "mime": [ - "application/vnd.sun.xml.calc", - "application/vnd.sun.xml.calc.template" - ], - "ext": [ - "*.sxg", - "*.sxc", - "*.sxd", - "*.stc", - "*.std", - "*.sxm" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "openraster_image_format": { - "name": "OpenRaster Image Format", - "mime": [ - "image/openraster" - ], - "ext": [ - "*.ora" - ], - "reason": [ - "open format" - ], - "source": [ - "various" - ] - }, - "pcma": { - "name": "PCMA", - "mime": [ - "audio/pcma-wb", - "audio/pcma" - ], - "ext": [ - "*.wav" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "pcmu": { - "name": "PCMU", - "mime": [ - "audio/pcmu-wb", - "audio/pcmu" - ], - "ext": [ - "*.wav" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "portable_document_format": { - "name": "Portable Document Format", - "mime": [ - "application/vnd.adobe.pdfxml", - "text/x-pdf", - "application/x-pdf", - "text/pdf", - "application/pdf", - "application/vnd.adobe.x-mars", - "application/vnd.pdf" - ], - "ext": [ - "*.pdfxml", - "*.pdf", - "*.mars" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "portable_network_graphics": { - "name": "Portable Network Graphics", - "mime": [ - "image/png", - "image/vnd.mozilla.apng" - ], - "ext": [ - "*.png", - "*.apng" - ], - "reason": [ - "long term format", - "open format" - ], - "source": [ - "ISO/TR 22299", - "various" - ] - }, - "protein_data_bank_format": { - "name": "Protein Data Bank format", - "mime": [ - "chemical/x-pdb" - ], - "ext": [ - "*.pdb" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "python_file": { - "name": "Python File", - "mime": [ - "text/x-python", - "text/x-python-script" - ], - "ext": [ - "*.py" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "quattro_pro_format": { - "name": "Quattro Pro Format", - "mime": [ - "application/x-quattro-pro" - ], - "ext": [ - "*.qpw", - "*.wq2", - "*.wq1", - "*.wb3", - "*.wb2", - "*.wb1" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "r_file_format": { - "name": "R File Format", - "mime": [ - "application/x-rlang-transport", - "text/x-r-source", - "type/x-r-syntax", - "application/x-R-2" - ], - "ext": [ - "*.r", - "*.R" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "root": { - "name": "ROOT", - "mime": [ - "application/x-root" - ], - "ext": [ - "*.root" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "sas_file_format": { - "name": "SAS File Format", - "mime": [ - "application/x-sas-log", - "application/x-sas-data", - "application/x-sas-catalog", - "application/x-sas-system", - "application/x-sas-output", - "text/x-sas-syntax", - "application/x-sas-transport", - "application/x-sas", - "application/x-sas-syntax" - ], - "ext": [ - "*.sas" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "sff_molecular_biology_format": { - "name": "SFF molecular biology format", - "mime": [ - "chemical/seq-na-sff" - ], - "ext": [ - "*.sff" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "smiles_chemical_format": { - "name": "SMILES chemical format", - "mime": [ - "chemical/x-daylight-smiles" - ], - "ext": [ - "*.smi" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "spc_format_for_spectral_and_chromatographic_data_b_": { - "name": "SPC format for spectral and chromatographic data (B)", - "mime": [ - "chemical/x-galactic-spc" - ], - "ext": [ - "*.spc" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "spss_file_format": { - "name": "SPSS File Format", - "mime": [ - "application/x-dvn-csvspss-zip", - "text/x-spss-syntax", - "application/x-spss-syntax", - "application/x-spss-portable", - "application/x-spss-sav", - "application/x-spss-por", - "application/x-spss-sps" - ], - "ext": [ - "*.zip", - "*.sav", - "*.sps", - "*.por" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "step_file_iso_10303_21": { - "name": "STEP-file, ISO 10303-21", - "mime": [ - "model/step", - "model/step+xml", - "model/step+zip", - "model/step-xml+zip" - ], - "ext": [ - "*.21", - "*.p21", - "*.step", - "*.stpnc", - "*.stp" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "stl_stereolithography_format": { - "name": "STL Stereolithography format", - "mime": [ - "application/sla" - ], - "ext": [ - "*.sla" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "scalable_vector_graphics": { - "name": "Scalable Vector Graphics", - "mime": [ - "image/svg+xml", - "image/svg-xml" - ], - "ext": [ - "*.svgz", - "*.svg" - ], - "reason": [ - "long term format", - "open format" - ], - "source": [ - "ISO/TR 22299", - "various" - ] - }, - "silo_3d_model": { - "name": "Silo 3D model", - "mime": [ - "model/mesh" - ], - "ext": [ - "*.sia", - "*.silo", - "*.sib" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "staroffice_calc_format": { - "name": "StarOffice Calc Format", - "mime": [ - "application/x-starcalc", - "application/vnd.stardivision.calc", - "application/vnd.sun.xml.calc.template" - ], - "ext": [ - "*stc", - "*.sdc" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "stata_data_file_format": { - "name": "Stata Data File Format", - "mime": [ - "application/x-stata", - "application/x-stata-6", - "application/x-stata-dta", - "application/x-stata-smcl", - "application/x-stata-syntax", - "application/x-stata-ado", - "application/x-stata-do", - "application/x-stata-14", - "application/x-stata-13", - "application/x-stata-15" - ], - "ext": [ - "*.do", - "*.dta" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "stockholm_format": { - "name": "Stockholm format", - "mime": [ - "text/x-stockholm-alignment" - ], - "ext": [ - "*.sto" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "swissprot_sequence_format": { - "name": "SwissProt sequence format", - "mime": [ - "chemical/x-swissprot" - ], - "ext": [ - "*.sw" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "systems_biology_markup_language_sbml_": { - "name": "Systems Biology Markup Language (SBML)", - "mime": [ - "application/sbml+xml" - ], - "ext": [ - "*.sbml" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "tab_ddi_format": { - "name": "TAB DDI Format", - "mime": [ - "application/x-dvn-tabddi-zip" - ], - "ext": [ - "*.zip" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "tagged_image_file_format": { - "name": "Tagged Image File Format", - "mime": [ - "image/tiff" - ], - "ext": [ - "*.tif", - "*.tfx", - "*.tfw", - "*.tiff" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "tripos_molecule_structure_format_": { - "name": "Tripos molecule structure format ", - "mime": [ - "chemical/x-mol2" - ], - "ext": [ - "*.mol2" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "video_object_file_vob_": { - "name": "Video Object File (VOB)", - "mime": [ - "video/x-ms-vob" - ], - "ext": [ - "*.vob" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "vorbis_encoded_audio": { - "name": "Vorbis encoded audio", - "mime": [ - "audio/vorbis-config", - "audio/vorbis" - ], - "ext": [ - "*.wav" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "wave_audio_file_format": { - "name": "WAVE Audio File Format", - "mime": [ - "audio/x-wav", - "audio/vnd.wave", - "audio/wave", - "audio/x-pn-wav", - "audio/wav" - ], - "ext": [ - "*.wave", - "*.wav" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "webp_format": { - "name": "WebP Format", - "mime": [ - "image/webp" - ], - "ext": [ - "*.webp" - ], - "reason": [ - "open format" - ], - "source": [ - "various" - ] - }, - "windows_bitmap_image_file_bmp_": { - "name": "Windows Bitmap Image File (BMP)", - "mime": [ - "image/x-ms-bmp", - "image/bmp" - ], - "ext": [ - "*.bmp" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "windows_media_video": { - "name": "Windows Media Video", - "mime": [ - "video/x-ms-asf", - "video/x-ms-wmv" - ], - "ext": [ - "*.asf", - "*.wmv" - ], - "reason": [ - "long term format" - ], - "source": [ - "ISO/TR 22299" - ] - }, - "wolfram_computable_document_format_cdf_": { - "name": "Wolfram Computable Document Format (CDF)", - "mime": [ - "application/vnd.wolfram.cdf.text", - "application/vnd.wolfram.cdf" - ], - "ext": [ - "*.cdf" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "x_pixmap_xpm_": { - "name": "X PixMap\u00a0(XPM)", - "mime": [ - "image/x-xpixmap" - ], - "ext": [ - "*.xpm", - "*.pm" - ], - "reason": [ - "open format" - ], - "source": [ - "various" - ] - }, - "xtelplot_file_format": { - "name": "Xtelplot file format", - "mime": [ - "chemical/x-xtel" - ], - "ext": [ - "*.xtel" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "dbase_table_for_esri_shapefile": { - "name": "dBASE Table for ESRI Shapefile", - "mime": [ - "application/dbase", - "application/dbf" - ], - "ext": [ - "*.dbf", - "*.dbase" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - }, - "miniseed_format": { - "name": "miniSEED Format", - "mime": [ - "application/vnd.fdsn.mseed" - ], - "ext": [ - "*.mseed" - ], - "reason": [ - "scientific format" - ], - "source": [ - "various" - ] - } -} \ No newline at end of file + "3d_studio_format": { + "ext": [ + "*.3ds" + ], + "mime": [ + "image/x-3ds", + "application/x-3ds" + ], + "name": "3D Studio format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "aac_advanced_audio_coding_file_format": { + "ext": [ + "*.aac" + ], + "mime": [ + "audio/x-aac", + "audio/aac" + ], + "name": "AAC (Advanced Audio Coding) File Format", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "adobe_digital_negative_dng_": { + "ext": [ + "*.dng" + ], + "mime": [ + "image/x-adobe-dng" + ], + "name": "Adobe Digital Negative (DNG)", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "aiff_audio_interchange_file_format_": { + "ext": [ + "*.aiff", + "*.aff", + "*.aifc", + "*.aif", + "*.ief" + ], + "mime": [ + "audio/x-midi", + "sound/aiff", + "audio/aiff", + "audio/x-rmf", + "audio/x-pn-aiff", + "audio/x-gsm", + "audio/x-aiff", + "audio/rmf", + "audio/vnd.qcelp" + ], + "name": "AIFF (Audio Interchange File Format)", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "apple_lossless_audio_codec_alac_": { + "ext": [ + "*.m4a" + ], + "mime": [ + "audio/mp4" + ], + "name": "Apple Lossless Audio Codec (ALAC)", + "reason": [ + "open format" + ], + "source": [ + "various" + ] + }, + "apple_numbers": { + "ext": [ + "*.numbers", + "*.numbers.zip" + ], + "mime": [ + "application/vnd.apple.numbers" + ], + "name": "Apple Numbers", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "av1_image_file_format_avif_": { + "ext": [ + "*.avifs", + "*.avif" + ], + "mime": [ + "image/avif-sequence", + "image/avif" + ], + "name": "AV1 Image File Format\u00a0(AVIF)", + "reason": [ + "open format" + ], + "source": [ + "various" + ] + }, + "avi_audio_video_interleaved_file_format": { + "ext": [ + "*.avi" + ], + "mime": [ + "application/x-troff-msvideo", + "audio/avi", + "video/x-msvideo", + "video/msvideo", + "video/vnd.avi", + "video/avi" + ], + "name": "AVI (Audio Video Interleaved) File Format", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "avi_audio_video_interleaved_video_file_format": { + "ext": [ + "*.gvi" + ], + "mime": [ + "video/avi" + ], + "name": "AVI (Audio Video Interleaved) Video File Format", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "bed_browser_extensible_data_": { + "ext": [ + "*.bed" + ], + "mime": [ + "text/x-bed" + ], + "name": "BED (Browser Extensible Data)", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "beilstein_crossfire_file": { + "ext": [ + "*.bsd" + ], + "mime": [ + "chemical/x-crossfire" + ], + "name": "Beilstein Crossfire file", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "c_source_code_file": { + "ext": [ + "*.c" + ], + "mime": [ + "text/x-c" + ], + "name": "C Source Code File", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "cactvs_format": { + "ext": [ + "*.cascii", + "*.ctx" + ], + "mime": [ + "chemical/x-cactus", + "chemical/x-cactus-ascii" + ], + "name": "CACTVS format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "ccdc_isostar_library": { + "ext": [ + "*.istr" + ], + "mime": [ + "chemical/x-isostar" + ], + "name": "CCDC IsoStar Library", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "ccp4_file_format": { + "ext": [ + "*.ccp4" + ], + "mime": [ + "application/CCP4-mtz-phases", + "application/CCP4-mtz-freerflag", + "application/CCP4-mtz-observed", + "application/CCP4-unmerged-experimental", + "application/CCP4-mtz-map" + ], + "name": "CCP4 file format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "cd_audio_cd_audio_track_shortcut": { + "ext": [ + "*.cda" + ], + "mime": [ + "audio/audiocd" + ], + "name": "CD Audio CD Audio track shortcut", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "cfd_general_notation_system": { + "ext": [ + "*.cgns" + ], + "mime": [ + "application/cgns" + ], + "name": "CFD General Notation System", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "chem3d_format": { + "ext": [ + "*.c3d" + ], + "mime": [ + "chemical/x-chem3d" + ], + "name": "Chem3D Format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "chemdraw_exchange_file": { + "ext": [ + "*.cdx" + ], + "mime": [ + "chemical/x-cdxml", + "chemical/x-cdx" + ], + "name": "ChemDraw eXchange file", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "chemical_markup_language": { + "ext": [ + "*.cml" + ], + "mime": [ + "chemical/x-cml" + ], + "name": "Chemical Markup Language", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "collada_digital_asset_exchange_format": { + "ext": [ + "*.dae" + ], + "mime": [ + "model/vnd.collada+xml" + ], + "name": "COLLADA digital asset exchange format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "computer_graphics_metafile": { + "ext": [ + "*.cgm" + ], + "mime": [ + "image/cgm" + ], + "name": "Computer Graphics Metafile", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "crystallographic_information_file": { + "ext": [ + "*.mif", + "*.cif" + ], + "mime": [ + "chemical/x-cif" + ], + "name": "Crystallographic Information File", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "crystalmaker_file": { + "ext": [ + "*.cmdf" + ], + "mime": [ + "chemical/x-cmdf" + ], + "name": "Crystalmaker File", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "daylight_smiles_string": { + "ext": [ + "*.smi" + ], + "mime": [ + "chemical/x-daylight-smiles" + ], + "name": "Daylight SMILES string", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "dbase_table_for_esri_shapefile": { + "ext": [ + "*.dbf", + "*.dbase" + ], + "mime": [ + "application/dbase", + "application/dbf" + ], + "name": "dBASE Table for ESRI Shapefile", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "device_independent_bitmap_dib_": { + "ext": [ + "*.dib" + ], + "mime": [ + "image/dib" + ], + "name": "Device-Independent bitmap (DIB)", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "dicom": { + "ext": [ + "*.dic", + "*.dcm" + ], + "mime": [ + "application/dicom", + "image/dicom-rle" + ], + "name": "DICOM", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "dolby_heaac": { + "ext": [ + "*.wav" + ], + "mime": [ + "audio/vnd.dolby.heaac.1" + ], + "name": "Dolby HEAAC", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "embl_nucleotide_sequence_format": { + "ext": [ + "*.emb" + ], + "mime": [ + "chemical/x-embl-dl-nucleotide" + ], + "name": "EMBL nucleotide sequence format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "esri_shapefile": { + "ext": [ + "*.prj", + "*.shx", + "*.shp" + ], + "mime": [ + "application/prj", + "application/zipped-shapefile", + "application/x-esri-shape", + "application/shx", + "application/shp" + ], + "name": "ESRI Shapefile", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "esri_spatial_index": { + "ext": [ + "*.sbn", + "*.sbx" + ], + "mime": [ + "application/sbx", + "application/sbn" + ], + "name": "ESRI Spatial Index", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "extensible_3d_x3d_file_format_family": { + "ext": [ + "*.x3db", + "*.x3dbz", + "*.x3dz", + "*.x3dv", + "*.x3d", + "*.x3dvz" + ], + "mime": [ + "model/x3d+xml", + "model/x3d+binary", + "model/x3d+fastinfoset", + "model/x3d+vrml", + "model/x3d-vrml" + ], + "name": "Extensible 3D (X3D) File Format Family", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "fasta": { + "ext": [ + "*.fasta", + "*.frn", + "*.faa", + "*.fna" + ], + "mime": [ + "chemical/seq-aa-fasta", + "chemical/seq-na-fasta", + "text/x-fasta" + ], + "name": "FASTA", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "fastq": { + "ext": [ + "*.fq", + "*.fastq", + "*.fa" + ], + "mime": [ + "chemical/seq-na-fastq" + ], + "name": "FASTQ", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "flexible_image_transport_system_fits_": { + "ext": [ + "*.fits", + "*.fts", + "*.fit" + ], + "mime": [ + "application/fits", + "image/fits" + ], + "name": "Flexible Image Transport System (FITS)", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "free_lossless_image_format_flif_": { + "ext": [ + "*.flif" + ], + "mime": [ + "image/flif" + ], + "name": "Free Lossless Image Format (FLIF)", + "reason": [ + "open format" + ], + "source": [ + "various" + ] + }, + "gamess_us_ab_initio_input_file": { + "ext": [ + "*.inp" + ], + "mime": [ + "chemical/x-gamess-input" + ], + "name": "GAMESS(US) Ab initio Input File", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "gaussian_checkpoint_file": { + "ext": [ + "*.fch", + "*.fchk" + ], + "mime": [ + "chemical/x-gaussian-checkpoint" + ], + "name": "Gaussian Checkpoint file", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "gaussian_cube_file": { + "ext": [ + "*.cub" + ], + "mime": [ + "chemical/x-cube", + "chemical/x-gaussian-cube" + ], + "name": "Gaussian Cube file", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "gaussian_log_file": { + "ext": [ + "*.gal" + ], + "mime": [ + "chemical/x-gaussian-log" + ], + "name": "Gaussian log file", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "genbank_molecular_biology_format": { + "ext": [ + "*.gbk", + "*.gb" + ], + "mime": [ + "chemical/seq-na-genbank" + ], + "name": "GenBank molecular biology format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "general_feature_format": { + "ext": [ + "*.gff" + ], + "mime": [ + "text/x-gff3" + ], + "name": "General feature format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "geographic_tagged_image_file_format_geotiff_": { + "ext": [ + "*.tif" + ], + "mime": [ + "image/geotiff" + ], + "name": "Geographic Tagged Image File Format (GeoTIFF)", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "geojson_a_geographic_data_format_based_on_json": { + "ext": [ + "*.geojson" + ], + "mime": [ + "application/geo+json" + ], + "name": "GeoJSON a geographic data format based on JSON", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "gerber_format": { + "ext": [ + "*.gpt", + "*.gbo", + "*.gtl", + "*.gbp", + "*.gtp", + "*.gbs", + "*.gpb", + "*.gml", + "*.gbr", + "*.gto", + "*.gbl", + "*.gts", + "*.gko" + ], + "mime": [ + "application/vnd.gerber" + ], + "name": "Gerber format", + "reason": [ + "open format" + ], + "source": [ + "various" + ] + }, + "gnumeric_spreadsheet": { + "ext": [ + "*.gnm", + "*.gnumeric" + ], + "mime": [ + "application/x-gnumeric" + ], + "name": "Gnumeric spreadsheet", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "graphics_interchange_format": { + "ext": [ + "*.gif" + ], + "mime": [ + "image/gif" + ], + "name": "Graphics Interchange Format", + "reason": [ + "long term format", + "open format" + ], + "source": [ + "ISO/TR 22299", + "various" + ] + }, + "grib": { + "ext": [ + "*.grb1", + "*.grb2", + "*.grb" + ], + "mime": [ + "application/x-grib", + "application/wmo-grib2" + ], + "name": "GRIB", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "hdf": { + "ext": [ + "*.hdf", + "*.hdf5", + "*.h5" + ], + "mime": [ + "application/x-hdf5", + "application/x-hdf" + ], + "name": "HDF", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "hyperchen_hin_data_format": { + "ext": [ + "*.hin" + ], + "mime": [ + "chemical/x-hin" + ], + "name": "HyperChen HIN data format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "iso14976_spectroscopic_format": { + "ext": [ + "*.vms" + ], + "mime": [ + "chemical/x-vamas-iso14976" + ], + "name": "ISO14976 Spectroscopic format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "jcamp_dx_a_chemical_spectroscopy_format": { + "ext": [ + "*.jdx" + ], + "mime": [ + "chemical/x-jcamp-dx" + ], + "name": "JCAMP-DX a chemical spectroscopy format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "jpeg_2000_file_format": { + "ext": [ + "*.jpf", + "*.jpx", + "*.jpg", + "*.jp2", + "*.mj2", + "*.jpm" + ], + "mime": [ + "image/jpx", + "image/jpeg2000", + "image/x-jpeg2000-image", + "image/jp2", + "image/jpm", + "image/jpeg2000-image" + ], + "name": "JPEG 2000 File Format", + "reason": [ + "long term format", + "open format" + ], + "source": [ + "ISO/TR 22299", + "various" + ] + }, + "jpg_joint_photographic_experts_group_file_format": { + "ext": [ + "*.jpf", + "*.jfif", + "*.jls", + "*.jif", + "*.jmh", + "*.jpg", + "*.jp2", + "*.jpeg", + "*.jpe", + "*.j", + "*.jfi", + "*.spf" + ], + "mime": [ + "image/jpeg", + "application/jpg", + "image/jpm", + "image/jpg" + ], + "name": "JPG (Joint Photographic Experts Group) File Format", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "jt_3d_visualization_format": { + "ext": [ + "*.jt" + ], + "mime": [ + "model/jt" + ], + "name": "JT 3D visualization format", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "jupyter_notebook_file": { + "ext": [ + "*.ipynb" + ], + "mime": [ + "application/x-ipynb+json" + ], + "name": "Jupyter Notebook File", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "kinetic_protein_structure_images": { + "ext": [ + "*.kin" + ], + "mime": [ + "chemical/x-kinemage" + ], + "name": "Kinetic (Protein Structure) Images", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "lotus_1_2_3_format": { + "ext": [ + "*.wk3", + "*.wk4", + "*.wk1", + "*.wks", + "*.wk2", + "*.wk*" + ], + "mime": [ + "application/vnd.lotus-1-2-3" + ], + "name": "Lotus 1-2-3 Format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "macmolecule_file_format": { + "ext": [ + "*.mcm" + ], + "mime": [ + "chemical/x-macmolecule" + ], + "name": "MacMolecule File Format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "macromodel_molecular_mechanics": { + "ext": [ + "*.mmod", + "*.mmd" + ], + "mime": [ + "chemical/x-macromodel-input" + ], + "name": "MacroModel Molecular Mechanics", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "material_exchange_format_mxf_": { + "ext": [ + "*.mxf" + ], + "mime": [ + "application/mxf" + ], + "name": "Material Exchange Format (MXF)", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "mathematica_format": { + "ext": [ + "*.wl", + "*.m", + "*.ma", + "*.nb" + ], + "mime": [ + "application/vnd.wolfram.mathematica", + "application/mathematica", + "application/vnd.wolfram.mathematica.package", + "text/x-mathematica" + ], + "name": "Mathematica Format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "mathml_math_content_format": { + "ext": [ + "*.mml" + ], + "mime": [ + "text/mathml", + "application/mathml+xml" + ], + "name": "MathML math content format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "matlab_format": { + "ext": [ + "*.m", + "*.mat" + ], + "mime": [ + "application/matlab-mat", + "text/x-matlab", + "application/x-matlab-figure", + "application/x-matlab-workspace", + "application/x-matlab-data" + ], + "name": "Matlab Format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "mdl_mol_molecular_models_and_drawings_format": { + "ext": [ + "*.mol" + ], + "mime": [ + "chemical/x-mdl-molfile" + ], + "name": "MDL MOL molecular models and drawings format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "mdl_reaction_data_file": { + "ext": [ + "*.rd" + ], + "mime": [ + "chemical/x-mdl-rdfile" + ], + "name": "MDL Reaction-data file", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "mdl_reaction_format": { + "ext": [ + "*.rxn" + ], + "mime": [ + "chemical/x-mdl-rxnfile" + ], + "name": "MDL Reaction format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "mdl_structure_data_file": { + "ext": [ + "*.sd" + ], + "mime": [ + "chemical/x-mdl-sdfile" + ], + "name": "MDL Structure-data file", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "mdl_transportable_graphics_file": { + "ext": [ + "*.rd" + ], + "mime": [ + "chemical/x-mdl-tgf" + ], + "name": "MDL Transportable Graphics file", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "microsoft_excel_file": { + "ext": [ + "*.xlc", + "*.xld", + "*.xlt", + "*.xlsm", + "*.xls", + "*.xlsb", + "*.xlw", + "*.xll", + "*.xlm", + "*.xla" + ], + "mime": [ + "application/vnd.ms-excel.addin.macroenabled.12", + "application/vnd.ms-excel.template.macroenabled.12", + "application/vnd.ms-excel.sheet.binary.macroenabled.12", + "application/vnd.openxmlformats-officedocument.spreadsheetml.template", + "application/vnd.ms-excel.sheet.4", + "application/msexcel", + "application/vnd.ms-excel.workspace.3", + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", + "application/x-tika-old-excel", + "application/vnd.ms-excel.sheet.3", + "application/vnd.ms-excel.sheet.2", + "application/vnd.ms-excel.workspace.4", + "application/vnd.ms-excel", + "application/vnd.ms-excel.sheet.macroenabled.12" + ], + "name": "Microsoft Excel File", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "miniseed_format": { + "ext": [ + "*.mseed" + ], + "mime": [ + "application/vnd.fdsn.mseed" + ], + "name": "miniSEED Format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "mmcif_3d_molecular_model_format": { + "ext": [ + "*.mmcif" + ], + "mime": [ + "chemical/x-mmcif" + ], + "name": "MMCIF 3D molecular model format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "molconn_z_format": { + "ext": [ + "*.b" + ], + "mime": [ + "chemical/x-molconn-Z" + ], + "name": "Molconn-Z Format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "motion_jpeg_2000_file_format": { + "ext": [ + "*.jpf", + "*.jpgm", + "*.jpx", + "*.mjp2", + "*.mp1", + "*.jp2", + "*.mj2", + "*.mp2", + "*.jpm" + ], + "mime": [ + "video/jpm", + "video/mj2", + "video/mpeg" + ], + "name": "Motion JPEG 2000 File Format", + "reason": [ + "long term format", + "open format" + ], + "source": [ + "ISO/TR 22299", + "various" + ] + }, + "mp3_file_format": { + "ext": [ + "*.mp3" + ], + "mime": [ + "audio/x-mpegaudio", + "audio/x-mpg", + "audio/mp3", + "audio/mpeg", + "audio/mpg", + "audio/mpeg3", + "audio/x-mpeg3", + "audio/x-mp3" + ], + "name": "MP3 File Format", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "mpeg_2_file_format": { + "ext": [ + "*.m2v", + "*.mpeg", + "*.m2a", + "*.ts", + "*.mpg", + "*.m2ts" + ], + "mime": [ + "video/mpeg", + "video/mp2p", + "video/x-mpeg2a", + "video/mpeg2", + "video/mp2t", + "application/x-pn-mpg" + ], + "name": "MPEG-2 File Format", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "mpeg_4_file_format": { + "ext": [ + "*.m4a", + "*.mpg", + "*.m4v", + "*.mp4" + ], + "mime": [ + "application/mp4", + "video/mp4v-es", + "application/mpeg4-iod-xmt", + "video/mpeg4-generic", + "audio/mp4", + "application/mpeg4-iod", + "video/mp4", + "application/mpeg4-generic" + ], + "name": "MPEG-4 File Format", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "mpeg_4_media_file": { + "ext": [ + "*.f4v" + ], + "mime": [ + "application/mp4", + "video/mp4" + ], + "name": "MPEG-4 Media File", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "mpeg_file_format": { + "ext": [ + "*.mp3", + "*.mpg", + "*.mpeg", + "*.mpa", + "*.m1v", + "*.m1a", + "*.mpv" + ], + "mime": [ + "video/mpeg", + "video/x-mpeg", + "video/mpg", + "video/x-mpg", + "video/mpv", + "video/mp1s", + "audio/mpeg", + "application/x-pn-mpg" + ], + "name": "MPEG File Format", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "ms_works_file": { + "ext": [ + "*.wdb", + "*.wps", + "*.xlr", + "*.wks", + "*.wcm" + ], + "mime": [ + "application/vnd.ms-works", + "application/x-tika-msworks-spreadsheet" + ], + "name": "MS Works File", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "msi_alchemy_format": { + "ext": [ + "*.alc" + ], + "mime": [ + "hemical/x-alchemy" + ], + "name": "MSI Alchemy format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "msi_cerius2_datafile": { + "ext": [ + "*.c3d" + ], + "mime": [ + "chemical/x-cerius" + ], + "name": "MSI Cerius2 Datafile", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "multiple_image_network_graphics": { + "ext": [ + "*.mng" + ], + "mime": [ + "video/x-mng" + ], + "name": "Multiple-Image Network Graphics", + "reason": [ + "open format" + ], + "source": [ + "various" + ] + }, + "nasa_common_data_format_cdf_": { + "ext": [ + "*.cdf" + ], + "mime": [ + "application/x-cdf" + ], + "name": "NASA common data format (.cdf)", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "netcdf": { + "ext": [ + "*.nc", + "*.cdf", + "*.cf" + ], + "mime": [ + "application/x-netcdf", + "application/netcdf" + ], + "name": "NetCDF", + "reason": [ + "scientific format", + "open format" + ], + "source": [ + "various" + ] + }, + "newick_format": { + "ext": [ + "*.tree" + ], + "mime": [ + "text/x-nh" + ], + "name": "Newick format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "nsdstat_format": { + "ext": [ + "*.nsdstat" + ], + "mime": [ + "application/x-nsdstat" + ], + "name": "NSDstat Format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "nucleotide_sequence_format": { + "ext": [ + "*.gcg" + ], + "mime": [ + "chemical/x-gcg8-sequence" + ], + "name": "Nucleotide Sequence Format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "ogg_multimedia_container_format": { + "ext": [ + "*.ogm", + "*.ogx", + "*.ogg", + "*.oga", + "*.opus", + "*.ogv" + ], + "mime": [ + "video/daala", + "video/x-oggrgb", + "audio/x-ogg-flac", + "audio/ogg", + "audio/x-ogg-pcm", + "video/x-ogm", + "video/theora", + "application/x-ogg", + "video/x-theora", + "video/x-ogg-uvs", + "application/ogg", + "video/x-ogg-yuv", + "video/x-ogguvs", + "video/x-daala", + "video/ogg", + "audio/opus", + "audio/speex", + "video/x-oggyuv", + "video/x-ogg-rgb", + "audio/x-ogg" + ], + "name": "Ogg Multimedia Container Format", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "ogg_packaged_dirac_video": { + "ext": [ + "*.drc" + ], + "mime": [ + "video/x-dirac" + ], + "name": "Ogg Packaged Dirac Video", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "ogg_speex_codec_multimedia_file": { + "ext": [ + "*.spx" + ], + "mime": [ + "application/x-speex", + "audio/x-speex", + "audio/speex" + ], + "name": "Ogg Speex Codec Multimedia File", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "opendocument_spreadsheet": { + "ext": [ + "*.fods", + "*.ots", + "*.ods" + ], + "mime": [ + "application/vnd.oasis.opendocument.spreadsheet-template", + "application/vnd.oasis.opendocument.spreadsheet" + ], + "name": "OpenDocument Spreadsheet", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "openexr_file_format": { + "ext": [ + "*.exr" + ], + "mime": [ + "image/x-exr" + ], + "name": "OpenEXR File Format", + "reason": [ + "open format" + ], + "source": [ + "various" + ] + }, + "openoffice_org_xml": { + "ext": [ + "*.sxg", + "*.sxc", + "*.sxd", + "*.stc", + "*.std", + "*.sxm" + ], + "mime": [ + "application/vnd.sun.xml.calc", + "application/vnd.sun.xml.calc.template" + ], + "name": "OpenOffice.org XML", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "openraster_image_format": { + "ext": [ + "*.ora" + ], + "mime": [ + "image/openraster" + ], + "name": "OpenRaster Image Format", + "reason": [ + "open format" + ], + "source": [ + "various" + ] + }, + "pcma": { + "ext": [ + "*.wav" + ], + "mime": [ + "audio/pcma-wb", + "audio/pcma" + ], + "name": "PCMA", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "pcmu": { + "ext": [ + "*.wav" + ], + "mime": [ + "audio/pcmu-wb", + "audio/pcmu" + ], + "name": "PCMU", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "portable_document_format": { + "ext": [ + "*.pdfxml", + "*.pdf", + "*.mars" + ], + "mime": [ + "application/vnd.adobe.pdfxml", + "text/x-pdf", + "application/x-pdf", + "text/pdf", + "application/pdf", + "application/vnd.adobe.x-mars", + "application/vnd.pdf" + ], + "name": "Portable Document Format", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "portable_network_graphics": { + "ext": [ + "*.png", + "*.apng" + ], + "mime": [ + "image/png", + "image/vnd.mozilla.apng" + ], + "name": "Portable Network Graphics", + "reason": [ + "long term format", + "open format" + ], + "source": [ + "ISO/TR 22299", + "various" + ] + }, + "protein_data_bank_format": { + "ext": [ + "*.pdb" + ], + "mime": [ + "chemical/x-pdb" + ], + "name": "Protein Data Bank format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "python_file": { + "ext": [ + "*.py" + ], + "mime": [ + "text/x-python", + "text/x-python-script" + ], + "name": "Python File", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "quattro_pro_format": { + "ext": [ + "*.qpw", + "*.wq2", + "*.wq1", + "*.wb3", + "*.wb2", + "*.wb1" + ], + "mime": [ + "application/x-quattro-pro" + ], + "name": "Quattro Pro Format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "r_file_format": { + "ext": [ + "*.r", + "*.R" + ], + "mime": [ + "application/x-rlang-transport", + "text/x-r-source", + "type/x-r-syntax", + "application/x-R-2" + ], + "name": "R File Format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "root": { + "ext": [ + "*.root" + ], + "mime": [ + "application/x-root" + ], + "name": "ROOT", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "sas_file_format": { + "ext": [ + "*.sas" + ], + "mime": [ + "application/x-sas-log", + "application/x-sas-data", + "application/x-sas-catalog", + "application/x-sas-system", + "application/x-sas-output", + "text/x-sas-syntax", + "application/x-sas-transport", + "application/x-sas", + "application/x-sas-syntax" + ], + "name": "SAS File Format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "scalable_vector_graphics": { + "ext": [ + "*.svgz", + "*.svg" + ], + "mime": [ + "image/svg+xml", + "image/svg-xml" + ], + "name": "Scalable Vector Graphics", + "reason": [ + "long term format", + "open format" + ], + "source": [ + "ISO/TR 22299", + "various" + ] + }, + "sff_molecular_biology_format": { + "ext": [ + "*.sff" + ], + "mime": [ + "chemical/seq-na-sff" + ], + "name": "SFF molecular biology format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "silo_3d_model": { + "ext": [ + "*.sia", + "*.silo", + "*.sib" + ], + "mime": [ + "model/mesh" + ], + "name": "Silo 3D model", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "smiles_chemical_format": { + "ext": [ + "*.smi" + ], + "mime": [ + "chemical/x-daylight-smiles" + ], + "name": "SMILES chemical format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "spc_format_for_spectral_and_chromatographic_data_b_": { + "ext": [ + "*.spc" + ], + "mime": [ + "chemical/x-galactic-spc" + ], + "name": "SPC format for spectral and chromatographic data (B)", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "spss_file_format": { + "ext": [ + "*.zip", + "*.sav", + "*.sps", + "*.por" + ], + "mime": [ + "application/x-dvn-csvspss-zip", + "text/x-spss-syntax", + "application/x-spss-syntax", + "application/x-spss-portable", + "application/x-spss-sav", + "application/x-spss-por", + "application/x-spss-sps" + ], + "name": "SPSS File Format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "staroffice_calc_format": { + "ext": [ + "*stc", + "*.sdc" + ], + "mime": [ + "application/x-starcalc", + "application/vnd.stardivision.calc", + "application/vnd.sun.xml.calc.template" + ], + "name": "StarOffice Calc Format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "stata_data_file_format": { + "ext": [ + "*.do", + "*.dta" + ], + "mime": [ + "application/x-stata", + "application/x-stata-6", + "application/x-stata-dta", + "application/x-stata-smcl", + "application/x-stata-syntax", + "application/x-stata-ado", + "application/x-stata-do", + "application/x-stata-14", + "application/x-stata-13", + "application/x-stata-15" + ], + "name": "Stata Data File Format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "step_file_iso_10303_21": { + "ext": [ + "*.21", + "*.p21", + "*.step", + "*.stpnc", + "*.stp" + ], + "mime": [ + "model/step", + "model/step+xml", + "model/step+zip", + "model/step-xml+zip" + ], + "name": "STEP-file, ISO 10303-21", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "stl_stereolithography_format": { + "ext": [ + "*.sla" + ], + "mime": [ + "application/sla" + ], + "name": "STL Stereolithography format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "stockholm_format": { + "ext": [ + "*.sto" + ], + "mime": [ + "text/x-stockholm-alignment" + ], + "name": "Stockholm format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "swissprot_sequence_format": { + "ext": [ + "*.sw" + ], + "mime": [ + "chemical/x-swissprot" + ], + "name": "SwissProt sequence format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "systems_biology_markup_language_sbml_": { + "ext": [ + "*.sbml" + ], + "mime": [ + "application/sbml+xml" + ], + "name": "Systems Biology Markup Language (SBML)", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "tab_ddi_format": { + "ext": [ + "*.zip" + ], + "mime": [ + "application/x-dvn-tabddi-zip" + ], + "name": "TAB DDI Format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "tagged_image_file_format": { + "ext": [ + "*.tif", + "*.tfx", + "*.tfw", + "*.tiff" + ], + "mime": [ + "image/tiff" + ], + "name": "Tagged Image File Format", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "tripos_molecule_structure_format_": { + "ext": [ + "*.mol2" + ], + "mime": [ + "chemical/x-mol2" + ], + "name": "Tripos molecule structure format ", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "video_object_file_vob_": { + "ext": [ + "*.vob" + ], + "mime": [ + "video/x-ms-vob" + ], + "name": "Video Object File (VOB)", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "vorbis_encoded_audio": { + "ext": [ + "*.wav" + ], + "mime": [ + "audio/vorbis-config", + "audio/vorbis" + ], + "name": "Vorbis encoded audio", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "wave_audio_file_format": { + "ext": [ + "*.wave", + "*.wav" + ], + "mime": [ + "audio/x-wav", + "audio/vnd.wave", + "audio/wave", + "audio/x-pn-wav", + "audio/wav" + ], + "name": "WAVE Audio File Format", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "webp_format": { + "ext": [ + "*.webp" + ], + "mime": [ + "image/webp" + ], + "name": "WebP Format", + "reason": [ + "open format" + ], + "source": [ + "various" + ] + }, + "windows_bitmap_image_file_bmp_": { + "ext": [ + "*.bmp" + ], + "mime": [ + "image/x-ms-bmp", + "image/bmp" + ], + "name": "Windows Bitmap Image File (BMP)", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "windows_media_video": { + "ext": [ + "*.asf", + "*.wmv" + ], + "mime": [ + "video/x-ms-asf", + "video/x-ms-wmv" + ], + "name": "Windows Media Video", + "reason": [ + "long term format" + ], + "source": [ + "ISO/TR 22299" + ] + }, + "wolfram_computable_document_format_cdf_": { + "ext": [ + "*.cdf" + ], + "mime": [ + "application/vnd.wolfram.cdf.text", + "application/vnd.wolfram.cdf" + ], + "name": "Wolfram Computable Document Format (CDF)", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + }, + "x_pixmap_xpm_": { + "ext": [ + "*.xpm", + "*.pm" + ], + "mime": [ + "image/x-xpixmap" + ], + "name": "X PixMap\u00a0(XPM)", + "reason": [ + "open format" + ], + "source": [ + "various" + ] + }, + "xtelplot_file_format": { + "ext": [ + "*.xtel" + ], + "mime": [ + "chemical/x-xtel" + ], + "name": "Xtelplot file format", + "reason": [ + "scientific format" + ], + "source": [ + "various" + ] + } +} diff --git a/fuji_server/data/identifiers_org_resolver_data.json b/fuji_server/data/identifiers_org_resolver_data.json index f0783f48..247b71a6 100644 --- a/fuji_server/data/identifiers_org_resolver_data.json +++ b/fuji_server/data/identifiers_org_resolver_data.json @@ -4,36268 +4,36268 @@ "payload": { "namespaces": [ { + "created": "2019-06-11T14:15:26.925+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Chemical Entities of Biological Interest (ChEBI) is a freely available dictionary of molecular entities focused on 'small' chemical compounds.", "id": 1, - "prefix": "chebi", "mirId": "MIR:00000002", + "modified": "2019-06-11T14:15:26.925+0000", "name": "ChEBI", + "namespaceEmbeddedInLui": true, "pattern": "^CHEBI:\\d+$", - "description": "Chemical Entities of Biological Interest (ChEBI) is a freely available dictionary of molecular entities focused on 'small' chemical compounds.", - "created": "2019-06-11T14:15:26.925+0000", - "modified": "2019-06-11T14:15:26.925+0000", + "prefix": "chebi", "resources": [ { - "id": 3, - "mirId": "MIR:00100009", - "urlPattern": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:{$id}", - "name": "ChEBI (Chemical Entities of Biological Interest)", + "deprecated": false, + "deprecationDate": null, "description": "ChEBI (Chemical Entities of Biological Interest)", - "official": true, - "providerCode": "ebi", - "sampleId": "36927", - "resourceHomeUrl": "https://www.ebi.ac.uk/chebi/", + "id": 3, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100009", + "name": "ChEBI (Chemical Entities of Biological Interest)", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/chebi/", + "sampleId": "36927", + "urlPattern": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:{$id}" }, { - "id": 4, - "mirId": "MIR:00100158", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/chebi/terms?obo_id=CHEBI:{$id}", - "name": "ChEBI through OLS", + "deprecated": false, + "deprecationDate": null, "description": "ChEBI through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "36927", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/chebi", + "id": 4, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100158", + "name": "ChEBI through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/chebi", + "sampleId": "36927", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/chebi/terms?obo_id=CHEBI:{$id}" }, { - "id": 6, - "mirId": "MIR:00100565", - "urlPattern": "http://purl.bioontology.org/ontology/CHEBI/CHEBI:{$id}", - "name": "ChEBI through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "ChEBI through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "36927", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/CHEBI", + "id": 6, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100565", + "name": "ChEBI through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/CHEBI", + "sampleId": "36927", + "urlPattern": "http://purl.bioontology.org/ontology/CHEBI/CHEBI:{$id}" } ], - "sampleId": "36927", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "36927" }, { + "created": "2019-06-11T14:15:27.869+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Ensembl is a joint project between EMBL - EBI and the Sanger Institute to develop a software system which produces and maintains automatic annotation on selected eukaryotic genomes. This collections also references outgroup organisms.", "id": 7, - "prefix": "ensembl", "mirId": "MIR:00000003", + "modified": "2019-06-11T14:15:27.869+0000", "name": "Ensembl", + "namespaceEmbeddedInLui": false, "pattern": "^((ENS[FPTG]\\\\d{11}(\\\\.\\\\d+)?)|(FB\\\\w{2}\\\\d{7})|(Y[A-Z]{2}\\\\d{3}[a-zA-Z](\\\\-[A-Z])?)|([A-Z_a-z0-9]+(\\\\.)?(t)?(\\\\d+)?([a-z])?))$", - "description": "Ensembl is a joint project between EMBL - EBI and the Sanger Institute to develop a software system which produces and maintains automatic annotation on selected eukaryotic genomes. This collections also references outgroup organisms.", - "created": "2019-06-11T14:15:27.869+0000", - "modified": "2019-06-11T14:15:27.869+0000", + "prefix": "ensembl", "resources": [ { - "id": 9, - "mirId": "MIR:00100011", - "urlPattern": "https://www.ensembl.org/id/{$id}", - "name": "Ensembl at Sanger/EMBL-EBI", + "deprecated": false, + "deprecationDate": null, "description": "Ensembl at Sanger/EMBL-EBI", - "official": true, - "providerCode": "ebi", - "sampleId": "ENSG00000139618", - "resourceHomeUrl": "https://www.ensembl.org/", + "id": 9, "institution": { - "id": 8, - "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 8, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100011", + "name": "Ensembl at Sanger/EMBL-EBI", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ensembl.org/", + "sampleId": "ENSG00000139618", + "urlPattern": "https://www.ensembl.org/id/{$id}" }, { - "id": 10, - "mirId": "MIR:00100561", - "urlPattern": "http://uswest.ensembl.org/id/{$id}", - "name": "Ensembl US West mirror", + "deprecated": false, + "deprecationDate": null, "description": "Ensembl US West mirror", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ENSG00000139618", - "resourceHomeUrl": "http://uswest.ensembl.org/", + "id": 10, "institution": { - "id": 8, - "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 8, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 11, - "mirId": "MIR:00100562", - "urlPattern": "http://useast.ensembl.org/id/{$id}", - "name": "Ensembl US East mirror", - "description": "Ensembl US East mirror", + "mirId": "MIR:00100561", + "name": "Ensembl US West mirror", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://uswest.ensembl.org/", "sampleId": "ENSG00000139618", - "resourceHomeUrl": "http://useast.ensembl.org/", + "urlPattern": "http://uswest.ensembl.org/id/{$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "Ensembl US East mirror", + "id": 11, "institution": { - "id": 8, - "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 8, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 12, - "mirId": "MIR:00100563", - "urlPattern": "http://asia.ensembl.org/id/{$id}", - "name": "Ensembl Asia mirror", - "description": "Ensembl Asia mirror", + "mirId": "MIR:00100562", + "name": "Ensembl US East mirror", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://useast.ensembl.org/", "sampleId": "ENSG00000139618", - "resourceHomeUrl": "http://asia.ensembl.org/", + "urlPattern": "http://useast.ensembl.org/id/{$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "Ensembl Asia mirror", + "id": 12, "institution": { - "id": 8, - "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 8, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", + "rorId": null }, "location": { "countryCode": "SG", "countryName": "Singapore" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100563", + "name": "Ensembl Asia mirror", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://asia.ensembl.org/", + "sampleId": "ENSG00000139618", + "urlPattern": "http://asia.ensembl.org/id/{$id}" } ], - "sampleId": "ENSG00000139618", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ENSG00000139618" }, { + "created": "2019-06-11T14:15:28.483+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Enzyme Classification contains the recommendations of the Nomenclature Committee of the International Union of Biochemistry and Molecular Biology on the nomenclature and classification of enzyme-catalysed reactions.", "id": 13, - "prefix": "ec-code", "mirId": "MIR:00000004", + "modified": "2019-06-11T14:15:28.483+0000", "name": "Enzyme Nomenclature", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+\\.-\\.-\\.-|\\d+\\.\\d+\\.-\\.-|\\d+\\.\\d+\\.\\d+\\.-|\\d+\\.\\d+\\.\\d+\\.(n)?\\d+$", - "description": "The Enzyme Classification contains the recommendations of the Nomenclature Committee of the International Union of Biochemistry and Molecular Biology on the nomenclature and classification of enzyme-catalysed reactions.", - "created": "2019-06-11T14:15:28.483+0000", - "modified": "2019-06-11T14:15:28.483+0000", + "prefix": "ec-code", "resources": [ { - "id": 14, - "mirId": "MIR:00100001", - "urlPattern": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec={$id}", - "name": "IntEnZ (Integrated relational Enzyme database)", + "deprecated": false, + "deprecationDate": null, "description": "IntEnZ (Integrated relational Enzyme database)", - "official": false, - "providerCode": "intenz", - "sampleId": "1.1.1.1", - "resourceHomeUrl": "https://www.ebi.ac.uk/intenz/", + "id": 14, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100001", + "name": "IntEnZ (Integrated relational Enzyme database)", + "official": false, + "providerCode": "intenz", + "resourceHomeUrl": "https://www.ebi.ac.uk/intenz/", + "sampleId": "1.1.1.1", + "urlPattern": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec={$id}" }, { - "id": 16, - "mirId": "MIR:00100002", - "urlPattern": "https://www.genome.jp/dbget-bin/www_bget?ec:{$id}", - "name": "KEGG Ligand Database for Enzyme Nomenclature", + "deprecated": false, + "deprecationDate": null, "description": "KEGG Ligand Database for Enzyme Nomenclature", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1.1.1.1", - "resourceHomeUrl": "https://www.genome.jp/dbget-bin/www_bfind?enzyme", + "id": 16, "institution": { - "id": 15, - "name": "Kyoto University Bioinformatics Center", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 15, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Kyoto University Bioinformatics Center", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100002", + "name": "KEGG Ligand Database for Enzyme Nomenclature", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.genome.jp/dbget-bin/www_bfind?enzyme", + "sampleId": "1.1.1.1", + "urlPattern": "https://www.genome.jp/dbget-bin/www_bget?ec:{$id}" }, { - "id": 20, - "mirId": "MIR:00100308", - "urlPattern": "http://www.enzyme-database.org/query.php?ec={$id}", - "name": "ExploreEnz at Trinity College", + "deprecated": false, + "deprecationDate": null, "description": "ExploreEnz at Trinity College", - "official": false, - "providerCode": "expenz", - "sampleId": "1.1.1.1", - "resourceHomeUrl": "http://www.enzyme-database.org/", + "id": 20, "institution": { - "id": 19, - "name": "Trinity College, Dublin", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 19, "location": { "countryCode": "IE", "countryName": "Ireland" - } + }, + "name": "Trinity College, Dublin", + "rorId": null }, "location": { "countryCode": "IE", "countryName": "Ireland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100308", + "name": "ExploreEnz at Trinity College", + "official": false, + "providerCode": "expenz", + "resourceHomeUrl": "http://www.enzyme-database.org/", + "sampleId": "1.1.1.1", + "urlPattern": "http://www.enzyme-database.org/query.php?ec={$id}" }, { - "id": 22, - "mirId": "MIR:00100835", - "urlPattern": "https://www.ebi.ac.uk/enzymeportal/ec/{$id}", - "name": "Enzyme Portal through EMBL-EBI", + "deprecated": false, + "deprecationDate": null, "description": "Enzyme Portal through EMBL-EBI", - "official": false, - "providerCode": "enzymeportal", - "sampleId": "1.1.1.1", - "resourceHomeUrl": "https://www.ebi.ac.uk/enzymeportal", + "id": 22, "institution": { - "id": 21, - "name": "Enzyme Portal at European Bioinformatics Institute, Hinxton, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 21, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Enzyme Portal at European Bioinformatics Institute, Hinxton, Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100835", + "name": "Enzyme Portal through EMBL-EBI", + "official": false, + "providerCode": "enzymeportal", + "resourceHomeUrl": "https://www.ebi.ac.uk/enzymeportal", + "sampleId": "1.1.1.1", + "urlPattern": "https://www.ebi.ac.uk/enzymeportal/ec/{$id}" }, { - "id": 18, - "mirId": "MIR:00100003", - "urlPattern": "https://enzyme.expasy.org/EC/{$id}", - "name": "Enzyme nomenclature database, ExPASy (Expert Protein Analysis System)", + "deprecated": false, + "deprecationDate": null, "description": "Enzyme nomenclature database, ExPASy (Expert Protein Analysis System)", - "official": false, - "providerCode": "expasy", - "sampleId": "1.1.1.1", - "resourceHomeUrl": "https://enzyme.expasy.org/", + "id": 18, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100003", + "name": "Enzyme nomenclature database, ExPASy (Expert Protein Analysis System)", + "official": false, + "providerCode": "expasy", + "resourceHomeUrl": "https://enzyme.expasy.org/", + "sampleId": "1.1.1.1", + "urlPattern": "https://enzyme.expasy.org/EC/{$id}" } ], - "sampleId": "1.1.1.1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1.1.1.1" }, { + "created": "2019-06-11T14:15:29.457+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The UniProt Knowledgebase (UniProtKB) is a comprehensive resource for protein sequence and functional information with extensive cross-references to more than 120 external databases. Besides amino acid sequence and a description, it also provides taxonomic data and citation information.", "id": 23, - "prefix": "uniprot", "mirId": "MIR:00000005", + "modified": "2019-06-11T14:15:29.457+0000", "name": "UniProt Knowledgebase", + "namespaceEmbeddedInLui": false, "pattern": "^([A-N,R-Z][0-9]([A-Z][A-Z, 0-9][A-Z, 0-9][0-9]){1,2})|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])(\\.\\d+)?$", - "description": "The UniProt Knowledgebase (UniProtKB) is a comprehensive resource for protein sequence and functional information with extensive cross-references to more than 120 external databases. Besides amino acid sequence and a description, it also provides taxonomic data and citation information.", - "created": "2019-06-11T14:15:29.457+0000", - "modified": "2019-06-11T14:15:29.457+0000", + "prefix": "uniprot", "resources": [ { - "id": 27, - "mirId": "MIR:00100330", - "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}", - "name": "UniProt through NCBI", + "deprecated": false, + "deprecationDate": null, "description": "UniProt through NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "P0DP23", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/protein/", + "id": 27, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100330", + "name": "UniProt through NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/protein/", + "sampleId": "P0DP23", + "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}" }, { - "id": 25, - "mirId": "MIR:00100164", - "urlPattern": "http://purl.uniprot.org/uniprot/{$id}", - "name": "Universal Protein Resource using Persistent URL system", + "deprecated": false, + "deprecationDate": null, "description": "Universal Protein Resource using Persistent URL system", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "P0DP23", - "resourceHomeUrl": "https://www.uniprot.org/", + "id": 25, "institution": { - "id": 24, - "name": "UniProt Consortium", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 24, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "UniProt Consortium", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100164", + "name": "Universal Protein Resource using Persistent URL system", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.uniprot.org/", + "sampleId": "P0DP23", + "urlPattern": "http://purl.uniprot.org/uniprot/{$id}" } ], - "sampleId": "P0DP23", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "P0DP23" }, { + "created": "2019-06-11T14:15:29.882+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The taxonomy contains the relationships between all living forms for which nucleic acid or protein sequence have been determined.", "id": 28, - "prefix": "taxonomy", "mirId": "MIR:00000006", + "modified": "2019-06-11T14:15:29.882+0000", "name": "Taxonomy", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The taxonomy contains the relationships between all living forms for which nucleic acid or protein sequence have been determined.", - "created": "2019-06-11T14:15:29.882+0000", - "modified": "2019-06-11T14:15:29.882+0000", + "prefix": "taxonomy", "resources": [ { - "id": 29, - "mirId": "MIR:00100007", - "urlPattern": "https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id={$id}", - "name": "NCBI Taxonomy", + "deprecated": false, + "deprecationDate": null, "description": "NCBI Taxonomy", - "official": true, - "providerCode": "ncbi", - "sampleId": "9606", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/Taxonomy/", + "id": 29, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100007", + "name": "NCBI Taxonomy", + "official": true, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/Taxonomy/", + "sampleId": "9606", + "urlPattern": "https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id={$id}" }, { - "id": 30, - "mirId": "MIR:00100019", - "urlPattern": "https://purl.uniprot.org/taxonomy/{$id}", - "name": "Taxonomy through UniProt PURL", + "deprecated": false, + "deprecationDate": null, "description": "Taxonomy through UniProt PURL", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "9606", - "resourceHomeUrl": "https://www.uniprot.org/taxonomy/", + "id": 30, "institution": { - "id": 24, - "name": "UniProt Consortium", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 24, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "UniProt Consortium", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100019", + "name": "Taxonomy through UniProt PURL", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.uniprot.org/taxonomy/", + "sampleId": "9606", + "urlPattern": "https://purl.uniprot.org/taxonomy/{$id}" }, { - "id": 31, - "mirId": "MIR:00100299", - "urlPattern": "https://www.ebi.ac.uk/ena/data/view/Taxon:{$id}", - "name": "European Nucleotide Archive (ENA)", + "deprecated": false, + "deprecationDate": null, "description": "European Nucleotide Archive (ENA)", - "official": false, - "providerCode": "ebi", - "sampleId": "9606", - "resourceHomeUrl": "https://www.ebi.ac.uk/ena/", + "id": 31, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100299", + "name": "European Nucleotide Archive (ENA)", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/ena/", + "sampleId": "9606", + "urlPattern": "https://www.ebi.ac.uk/ena/data/view/Taxon:{$id}" }, { - "id": 32, - "mirId": "MIR:00100507", - "urlPattern": "http://purl.bioontology.org/ontology/NCBITAXON/{$id}", - "name": "BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "9606", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/NCBITAXON", + "id": 32, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100507", + "name": "BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/NCBITAXON", + "sampleId": "9606", + "urlPattern": "http://purl.bioontology.org/ontology/NCBITAXON/{$id}" }, { - "id": 35, - "mirId": "MIR:00100770", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ncbitaxon/terms?short_form=NCBITaxon_{$id}", - "name": "NCBI Taxonomy through OLS", + "deprecated": false, + "deprecationDate": null, "description": "NCBI Taxonomy through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "9606", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ncbitaxon/", + "id": 35, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100770", + "name": "NCBI Taxonomy through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ncbitaxon/", + "sampleId": "9606", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ncbitaxon/terms?short_form=NCBITaxon_{$id}" }, { - "id": 34, - "mirId": "MIR:00100695", - "urlPattern": "https://bio2rdf.org/taxonomy:{$id}", - "name": "Bio2RDF", + "deprecated": false, + "deprecationDate": null, "description": "Bio2RDF", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "9606", - "resourceHomeUrl": "https://bio2rdf.org/", + "id": 34, "institution": { - "id": 33, - "name": "Bio2RDF.org", - "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", - "rorId": null, + "homeUrl": "https://bio2rdf.org", + "id": 33, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Bio2RDF.org", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100695", + "name": "Bio2RDF", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://bio2rdf.org/", + "sampleId": "9606", + "urlPattern": "https://bio2rdf.org/taxonomy:{$id}" } ], - "sampleId": "9606", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "9606" }, { + "created": "2019-06-11T14:15:30.877+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BioModels Database is a data resource that allows biologists to store, search and retrieve published mathematical models of biological interests.", "id": 36, - "prefix": "biomodels.db", "mirId": "MIR:00000007", + "modified": "2019-06-11T14:15:30.877+0000", "name": "BioModels Database", + "namespaceEmbeddedInLui": false, "pattern": "^((BIOMD|MODEL)\\d{10})|(BMID\\d{12})$", - "description": "BioModels Database is a data resource that allows biologists to store, search and retrieve published mathematical models of biological interests.", - "created": "2019-06-11T14:15:30.877+0000", - "modified": "2019-06-11T14:15:30.877+0000", + "prefix": "biomodels.db", "resources": [ { - "id": 37, - "mirId": "MIR:00100006", - "urlPattern": "https://www.ebi.ac.uk/biomodels/{$id}", - "name": "BioModels Database", + "deprecated": false, + "deprecationDate": null, "description": "BioModels Database", - "official": true, - "providerCode": "ebi", - "sampleId": "BIOMD0000000048", - "resourceHomeUrl": "https://www.ebi.ac.uk/biomodels/", + "id": 37, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100006", + "name": "BioModels Database", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/biomodels/", + "sampleId": "BIOMD0000000048", + "urlPattern": "https://www.ebi.ac.uk/biomodels/{$id}" }, { - "id": 39, - "mirId": "MIR:00100107", - "urlPattern": "http://biomodels.caltech.edu/{$id}", - "name": "Caltech mirror", + "deprecated": false, + "deprecationDate": null, "description": "Caltech mirror", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "BIOMD0000000048", - "resourceHomeUrl": "http://biomodels.caltech.edu/", + "id": 39, "institution": { - "id": 38, - "name": "California Institute of Technology", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 38, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "California Institute of Technology", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100107", + "name": "Caltech mirror", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://biomodels.caltech.edu/", + "sampleId": "BIOMD0000000048", + "urlPattern": "http://biomodels.caltech.edu/{$id}" }, { - "id": 40, - "mirId": "MIR:00100855", - "urlPattern": "https://www.omicsdi.org/dataset/biomodels/{$id}", - "name": "BioModels through OmicsDI", + "deprecated": false, + "deprecationDate": null, "description": "BioModels through OmicsDI", - "official": false, - "providerCode": "omicsdi", - "sampleId": "BIOMD0000000048", - "resourceHomeUrl": "https://www.omicsdi.org/", + "id": 40, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100855", + "name": "BioModels through OmicsDI", + "official": false, + "providerCode": "omicsdi", + "resourceHomeUrl": "https://www.omicsdi.org/", + "sampleId": "BIOMD0000000048", + "urlPattern": "https://www.omicsdi.org/dataset/biomodels/{$id}" } ], - "sampleId": "BIOMD0000000048", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "BIOMD0000000048" }, { + "created": "2019-06-11T14:15:31.658+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The International Classification of Diseases is the international standard diagnostic classification for all general epidemiological and many health management purposes.", "id": 43, - "prefix": "icd", "mirId": "MIR:00000009", + "modified": "2019-06-11T14:15:31.658+0000", "name": "ICD", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z]\\d+(\\.[-\\d+])?$", - "description": "The International Classification of Diseases is the international standard diagnostic classification for all general epidemiological and many health management purposes.", - "created": "2019-06-11T14:15:31.658+0000", - "modified": "2019-06-11T14:15:31.658+0000", + "prefix": "icd", "resources": [ { - "id": 45, - "mirId": "MIR:00100016", - "urlPattern": "http://apps.who.int/classifications/icd10/browse/2010/en#/{$id}", - "name": "International Statistical Classification of Diseases and Related Health Problems", + "deprecated": false, + "deprecationDate": null, "description": "International Statistical Classification of Diseases and Related Health Problems", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "C34", - "resourceHomeUrl": "http://www.who.int/classifications/icd/en/", + "id": 45, "institution": { - "id": 44, - "name": "German Institute of Medical Documentation and Information", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 44, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "German Institute of Medical Documentation and Information", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100016", + "name": "International Statistical Classification of Diseases and Related Health Problems", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.who.int/classifications/icd/en/", + "sampleId": "C34", + "urlPattern": "http://apps.who.int/classifications/icd10/browse/2010/en#/{$id}" } ], - "sampleId": "C34", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "C34" }, { + "created": "2019-06-11T14:15:31.920+0000", + "deprecated": false, + "deprecationDate": null, + "description": "IntAct provides a freely available, open source database system and analysis tools for protein interaction data.", "id": 46, - "prefix": "intact", "mirId": "MIR:00000010", + "modified": "2019-06-11T14:15:31.920+0000", "name": "IntAct", + "namespaceEmbeddedInLui": false, "pattern": "^EBI\\-[0-9]+$", - "description": "IntAct provides a freely available, open source database system and analysis tools for protein interaction data.", - "created": "2019-06-11T14:15:31.920+0000", - "modified": "2019-06-11T14:15:31.920+0000", + "prefix": "intact", "resources": [ { - "id": 47, - "mirId": "MIR:00100017", - "urlPattern": "https://www.ebi.ac.uk/intact/interaction/{$id}", - "name": "IntAct at EBI", + "deprecated": false, + "deprecationDate": null, "description": "IntAct at EBI", - "official": true, - "providerCode": "ebi", - "sampleId": "EBI-2307691", - "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", + "id": 47, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100017", + "name": "IntAct at EBI", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", + "sampleId": "EBI-2307691", + "urlPattern": "https://www.ebi.ac.uk/intact/interaction/{$id}" } ], - "sampleId": "EBI-2307691", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "EBI-2307691" }, { + "created": "2019-06-11T14:15:32.153+0000", + "deprecated": false, + "deprecationDate": null, + "description": "InterPro is a database of protein families, domains and functional sites in which identifiable features found in known proteins can be applied to unknown protein sequences.", "id": 48, - "prefix": "interpro", "mirId": "MIR:00000011", + "modified": "2019-06-11T14:15:32.153+0000", "name": "InterPro", + "namespaceEmbeddedInLui": false, "pattern": "^IPR\\d{6}$", - "description": "InterPro is a database of protein families, domains and functional sites in which identifiable features found in known proteins can be applied to unknown protein sequences.", - "created": "2019-06-11T14:15:32.153+0000", - "modified": "2019-06-11T14:15:32.153+0000", + "prefix": "interpro", "resources": [ { - "id": 49, - "mirId": "MIR:00100018", - "urlPattern": "https://www.ebi.ac.uk/interpro/entry/{$id}", - "name": "InterPro", + "deprecated": false, + "deprecationDate": null, "description": "InterPro", - "official": true, - "providerCode": "ebi", - "sampleId": "IPR000100", - "resourceHomeUrl": "https://www.ebi.ac.uk/interpro/", + "id": 49, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100018", + "name": "InterPro", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/interpro/", + "sampleId": "IPR000100", + "urlPattern": "https://www.ebi.ac.uk/interpro/entry/{$id}" }, { - "id": 50, - "mirId": "MIR:00100697", - "urlPattern": "http://interpro.bio2rdf.org/describe/?url=http://bio2rdf.org/interpro:{$id}", - "name": "Bio2RDF", + "deprecated": false, + "deprecationDate": null, "description": "Bio2RDF", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "IPR000100", - "resourceHomeUrl": "http://interpro.bio2rdf.org/fct/", + "id": 50, "institution": { - "id": 33, - "name": "Bio2RDF.org", - "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", - "rorId": null, + "homeUrl": "https://bio2rdf.org", + "id": 33, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Bio2RDF.org", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100697", + "name": "Bio2RDF", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://interpro.bio2rdf.org/fct/", + "sampleId": "IPR000100", + "urlPattern": "http://interpro.bio2rdf.org/describe/?url=http://bio2rdf.org/interpro:{$id}" } ], - "sampleId": "IPR000100", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "IPR000100" }, { + "created": "2019-06-11T14:15:32.480+0000", + "deprecated": false, + "deprecationDate": null, + "description": "KEGG PATHWAY is a collection of manually drawn pathway maps representing our knowledge on the molecular interaction and reaction networks.", "id": 51, - "prefix": "kegg.pathway", "mirId": "MIR:00000012", + "modified": "2019-06-11T14:15:32.480+0000", "name": "KEGG Pathway", + "namespaceEmbeddedInLui": false, "pattern": "^\\w{2,4}\\d{5}$", - "description": "KEGG PATHWAY is a collection of manually drawn pathway maps representing our knowledge on the molecular interaction and reaction networks.", - "created": "2019-06-11T14:15:32.480+0000", - "modified": "2019-06-11T14:15:32.480+0000", + "prefix": "kegg.pathway", "resources": [ { - "id": 52, - "mirId": "MIR:00100020", - "urlPattern": "https://www.kegg.jp/entry/{$id}", - "name": "KEGG PATHWAY Database", + "deprecated": false, + "deprecationDate": null, "description": "KEGG PATHWAY Database", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "hsa00620", - "resourceHomeUrl": "https://www.genome.jp/kegg/pathway.html", + "id": 52, "institution": { - "id": 15, - "name": "Kyoto University Bioinformatics Center", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 15, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Kyoto University Bioinformatics Center", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100020", + "name": "KEGG PATHWAY Database", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.genome.jp/kegg/pathway.html", + "sampleId": "hsa00620", + "urlPattern": "https://www.kegg.jp/entry/{$id}" } ], - "sampleId": "hsa00620", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "hsa00620" }, { + "created": "2019-06-11T14:15:32.730+0000", + "deprecated": false, + "deprecationDate": null, + "description": "KEGG compound contains our knowledge on the universe of chemical substances that are relevant to life.", "id": 53, - "prefix": "kegg.compound", "mirId": "MIR:00000013", + "modified": "2019-06-11T14:15:32.730+0000", "name": "KEGG Compound", + "namespaceEmbeddedInLui": false, "pattern": "^C\\d+$", - "description": "KEGG compound contains our knowledge on the universe of chemical substances that are relevant to life.", - "created": "2019-06-11T14:15:32.730+0000", - "modified": "2019-06-11T14:15:32.730+0000", + "prefix": "kegg.compound", "resources": [ { - "id": 54, - "mirId": "MIR:00100021", - "urlPattern": "https://www.kegg.jp/entry/{$id}", - "name": "KEGG LIGAND Database", + "deprecated": false, + "deprecationDate": null, "description": "KEGG LIGAND Database", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "C12345", - "resourceHomeUrl": "https://www.genome.jp/kegg/ligand.html", + "id": 54, "institution": { - "id": 15, - "name": "Kyoto University Bioinformatics Center", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 15, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Kyoto University Bioinformatics Center", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100021", + "name": "KEGG LIGAND Database", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.genome.jp/kegg/ligand.html", + "sampleId": "C12345", + "urlPattern": "https://www.kegg.jp/entry/{$id}" } ], - "sampleId": "C12345", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "C12345" }, { + "created": "2019-06-11T14:15:32.930+0000", + "deprecated": false, + "deprecationDate": null, + "description": "KEGG reaction contains our knowledge on the universe of reactions that are relevant to life.", "id": 55, - "prefix": "kegg.reaction", "mirId": "MIR:00000014", + "modified": "2019-06-11T14:15:32.930+0000", "name": "KEGG Reaction", + "namespaceEmbeddedInLui": false, "pattern": "^R\\d+$", - "description": "KEGG reaction contains our knowledge on the universe of reactions that are relevant to life.", - "created": "2019-06-11T14:15:32.930+0000", - "modified": "2019-06-11T14:15:32.930+0000", + "prefix": "kegg.reaction", "resources": [ { - "id": 56, - "mirId": "MIR:00100022", - "urlPattern": "https://www.kegg.jp/entry/{$id}", - "name": "KEGG Reaction Database", + "deprecated": false, + "deprecationDate": null, "description": "KEGG Reaction Database", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "R00100", - "resourceHomeUrl": "https://www.genome.jp/kegg/reaction/", + "id": 56, "institution": { - "id": 15, - "name": "Kyoto University Bioinformatics Center", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 15, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Kyoto University Bioinformatics Center", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100022", + "name": "KEGG Reaction Database", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.genome.jp/kegg/reaction/", + "sampleId": "R00100", + "urlPattern": "https://www.kegg.jp/entry/{$id}" } ], - "sampleId": "R00100", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "R00100" }, { + "created": "2019-06-11T14:15:33.142+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PubMed is a service of the U.S. National Library of Medicine that includes citations from MEDLINE and other life science journals for biomedical articles back to the 1950s.", "id": 57, - "prefix": "pubmed", "mirId": "MIR:00000015", + "modified": "2019-06-11T14:15:33.142+0000", "name": "PubMed", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "PubMed is a service of the U.S. National Library of Medicine that includes citations from MEDLINE and other life science journals for biomedical articles back to the 1950s.", - "created": "2019-06-11T14:15:33.142+0000", - "modified": "2019-06-11T14:15:33.142+0000", + "prefix": "pubmed", "resources": [ { - "id": 58, - "mirId": "MIR:00100023", - "urlPattern": "https://www.ncbi.nlm.nih.gov/pubmed/{$id}", - "name": "NCBI PubMed", + "deprecated": false, + "deprecationDate": null, "description": "NCBI PubMed", - "official": true, - "providerCode": "ncbi", - "sampleId": "16333295", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/PubMed/", + "id": 58, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100023", + "name": "NCBI PubMed", + "official": true, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/PubMed/", + "sampleId": "16333295", + "urlPattern": "https://www.ncbi.nlm.nih.gov/pubmed/{$id}" }, { - "id": 60, - "mirId": "MIR:00100064", - "urlPattern": "http://www.hubmed.org/display.cgi?uids={$id}", - "name": "HubMed", + "deprecated": false, + "deprecationDate": null, "description": "HubMed", - "official": false, - "providerCode": "hubmed", - "sampleId": "16333295", - "resourceHomeUrl": "http://www.hubmed.org/", + "id": 60, "institution": { - "id": 59, - "name": "University Health Network", - "homeUrl": "https://www.uhn.ca/", "description": "The University Health Network has grown out of a series of mergers between our current hospitals, as we have adjusted and change to accommodate our growing and changing patient community in and around the GTA.", - "rorId": "https://ror.org/042xt5161", + "homeUrl": "https://www.uhn.ca/", + "id": 59, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "University Health Network", + "rorId": "https://ror.org/042xt5161" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100064", + "name": "HubMed", + "official": false, + "providerCode": "hubmed", + "resourceHomeUrl": "http://www.hubmed.org/", + "sampleId": "16333295", + "urlPattern": "http://www.hubmed.org/display.cgi?uids={$id}" }, { - "id": 62, - "mirId": "MIR:00100497", - "urlPattern": "http://europepmc.org/abstract/MED/{$id}", - "name": "Europe PMC", + "deprecated": false, + "deprecationDate": null, "description": "Europe PMC", - "official": false, - "providerCode": "epmc", - "sampleId": "16333295", - "resourceHomeUrl": "http://europepmc.org/", + "id": 62, "institution": { - "id": 61, - "name": "Europe PubMed Central partners", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 61, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Europe PubMed Central partners", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100497", + "name": "Europe PMC", + "official": false, + "providerCode": "epmc", + "resourceHomeUrl": "http://europepmc.org/", + "sampleId": "16333295", + "urlPattern": "http://europepmc.org/abstract/MED/{$id}" }, { - "id": 64, - "mirId": "MIR:00100745", - "urlPattern": "http://linkedlifedata.com/resource/pubmed/id/{$id}", - "name": "PubMed through Linkedlife data", + "deprecated": false, + "deprecationDate": null, "description": "PubMed through Linkedlife data", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "23735196", - "resourceHomeUrl": "http://linkedlifedata.com/", + "id": 64, "institution": { - "id": 63, - "name": "Linkedlifedata, Ontotext, Sofia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 63, "location": { "countryCode": "BG", "countryName": "Bulgaria" - } + }, + "name": "Linkedlifedata, Ontotext, Sofia", + "rorId": null }, "location": { "countryCode": "BG", "countryName": "Bulgaria" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100745", + "name": "PubMed through Linkedlife data", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://linkedlifedata.com/", + "sampleId": "23735196", + "urlPattern": "http://linkedlifedata.com/resource/pubmed/id/{$id}" }, { - "id": 2466, - "mirId": "MIR:00000788", - "urlPattern": "https://scholia.toolforge.org/pubmed/{$id}", - "name": "Scholia", + "deprecated": false, + "deprecationDate": null, "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", - "official": false, - "providerCode": "scholia", - "sampleId": "29029422", - "resourceHomeUrl": "https://scholia.toolforge.org/", + "id": 2466, "institution": { - "id": 283, - "name": "Maastricht University", - "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", - "rorId": "https://ror.org/02jz4aj89", + "homeUrl": "https://www.maastrichtuniversity.nl", + "id": 283, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "Maastricht University", + "rorId": "https://ror.org/02jz4aj89" }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000788", + "name": "Scholia", + "official": false, + "providerCode": "scholia", + "resourceHomeUrl": "https://scholia.toolforge.org/", + "sampleId": "29029422", + "urlPattern": "https://scholia.toolforge.org/pubmed/{$id}" } ], - "sampleId": "16333295", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "16333295" }, { + "created": "2019-06-11T14:15:33.878+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Online Mendelian Inheritance in Man is a catalog of human genes and genetic disorders.", "id": 65, - "prefix": "mim", "mirId": "MIR:00000016", + "modified": "2019-06-11T14:15:33.878+0000", "name": "OMIM", + "namespaceEmbeddedInLui": false, "pattern": "^[*#+%^]?\\d{6}$", - "description": "Online Mendelian Inheritance in Man is a catalog of human genes and genetic disorders.", - "created": "2019-06-11T14:15:33.878+0000", - "modified": "2019-06-11T14:15:33.878+0000", + "prefix": "mim", "resources": [ { - "id": 67, - "mirId": "MIR:00100024", - "urlPattern": "https://omim.org/entry/{$id}", - "name": "OMIM at John Hopkins", + "deprecated": false, + "deprecationDate": null, "description": "OMIM at John Hopkins", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "603903", - "resourceHomeUrl": "https://omim.org/", + "id": 67, "institution": { - "id": 66, - "name": "Johns Hopkins University, Baltimore, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 66, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Johns Hopkins University, Baltimore, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100024", + "name": "OMIM at John Hopkins", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://omim.org/", + "sampleId": "603903", + "urlPattern": "https://omim.org/entry/{$id}" }, { - "id": 68, - "mirId": "MIR:00100777", - "urlPattern": "http://mirror.omim.org/entry/{$id}", - "name": "OMIM mirror at John Hopkins", + "deprecated": false, + "deprecationDate": null, "description": "OMIM mirror at John Hopkins", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "603903", - "resourceHomeUrl": "http://mirror.omim.org/", + "id": 68, "institution": { - "id": 66, - "name": "Johns Hopkins University, Baltimore, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 66, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Johns Hopkins University, Baltimore, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100777", + "name": "OMIM mirror at John Hopkins", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://mirror.omim.org/", + "sampleId": "603903", + "urlPattern": "http://mirror.omim.org/entry/{$id}" } ], - "sampleId": "603903", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "603903" }, { + "created": "2019-06-11T14:15:34.294+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PIR SuperFamily concept is being used as a guiding principle to provide comprehensive and non-overlapping clustering of UniProtKB sequences into a hierarchical order to reflect their evolutionary relationships.", "id": 69, - "prefix": "pirsf", "mirId": "MIR:00000017", + "modified": "2019-06-11T14:15:34.294+0000", "name": "PIRSF", + "namespaceEmbeddedInLui": false, "pattern": "^PIRSF\\d{6}$", - "description": "The PIR SuperFamily concept is being used as a guiding principle to provide comprehensive and non-overlapping clustering of UniProtKB sequences into a hierarchical order to reflect their evolutionary relationships.", - "created": "2019-06-11T14:15:34.294+0000", - "modified": "2019-06-11T14:15:34.294+0000", + "prefix": "pirsf", "resources": [ { - "id": 71, - "mirId": "MIR:00100025", - "urlPattern": "https://pir.georgetown.edu/cgi-bin/ipcSF?id={$id}", - "name": "PIRSF", + "deprecated": false, + "deprecationDate": null, "description": "PIRSF", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PIRSF000100", - "resourceHomeUrl": "https://pir.georgetown.edu/", + "id": 71, "institution": { - "id": 70, - "name": "Georgetown University Medical Center", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 70, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Georgetown University Medical Center", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100025", + "name": "PIRSF", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://pir.georgetown.edu/", + "sampleId": "PIRSF000100", + "urlPattern": "https://pir.georgetown.edu/cgi-bin/ipcSF?id={$id}" } ], - "sampleId": "PIRSF000100", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PIRSF000100" }, { + "created": "2019-06-11T14:15:34.555+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Reactome project is a collaboration to develop a curated resource of core pathways and reactions in human biology.", "id": 72, - "prefix": "reactome", "mirId": "MIR:00000018", + "modified": "2019-06-11T14:15:34.555+0000", "name": "Reactome", + "namespaceEmbeddedInLui": false, "pattern": "(^R-[A-Z]{3}-\\d+(-\\d+)?(\\.\\d+)?$)|(^REACT_\\d+(\\.\\d+)?$)", - "description": "The Reactome project is a collaboration to develop a curated resource of core pathways and reactions in human biology.", - "created": "2019-06-11T14:15:34.555+0000", - "modified": "2019-06-11T14:15:34.555+0000", + "prefix": "reactome", "resources": [ { - "id": 74, - "mirId": "MIR:00100026", - "urlPattern": "https://reactome.org/content/detail/{$id}", - "name": "Reactome, a curated knowledgebase of biological pathways", + "deprecated": false, + "deprecationDate": null, "description": "Reactome, a curated knowledgebase of biological pathways", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "R-HSA-201451", - "resourceHomeUrl": "https://www.reactome.org/", + "id": 74, "institution": { - "id": 73, - "name": "Ontario Institute for Cancer Research, NYU Medical School, Cold Spring Harbor Laboratory and European Bioinformatics Institute", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 73, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Ontario Institute for Cancer Research, NYU Medical School, Cold Spring Harbor Laboratory and European Bioinformatics Institute", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100026", + "name": "Reactome, a curated knowledgebase of biological pathways", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.reactome.org/", + "sampleId": "R-HSA-201451", + "urlPattern": "https://reactome.org/content/detail/{$id}" } ], - "sampleId": "R-HSA-201451", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "R-HSA-201451" }, { + "created": "2019-06-11T14:15:34.841+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Digital Object Identifier System is for identifying content objects in the digital environment.", "id": 75, - "prefix": "doi", "mirId": "MIR:00000019", + "modified": "2019-06-11T14:15:34.841+0000", "name": "DOI", + "namespaceEmbeddedInLui": false, "pattern": "^(doi\\:)?\\d{2}\\.\\d{4}.*$", - "description": "The Digital Object Identifier System is for identifying content objects in the digital environment.", - "created": "2019-06-11T14:15:34.841+0000", - "modified": "2019-06-11T14:15:34.841+0000", + "prefix": "doi", "resources": [ { - "id": 77, - "mirId": "MIR:00100010", - "urlPattern": "https://doi.org/{$id}", - "name": "Digital Object Identifier", + "deprecated": false, + "deprecationDate": null, "description": "Digital Object Identifier", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "10.1038/nbt1156", - "resourceHomeUrl": "https://www.doi.org/", + "id": 77, "institution": { - "id": 76, - "name": "International DOI Foundation", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 76, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "International DOI Foundation", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100010", + "name": "Digital Object Identifier", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.doi.org/", + "sampleId": "10.1038/nbt1156", + "urlPattern": "https://doi.org/{$id}" }, { - "id": 2462, - "mirId": "MIR:00000793", - "urlPattern": "https://scholia.toolforge.org/doi/{$id}", - "name": "Scholia", + "deprecated": false, + "deprecationDate": null, "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", - "official": false, - "providerCode": "scholia", - "sampleId": "10.1186/S13321-016-0161-3", - "resourceHomeUrl": "https://scholia.toolforge.org/", + "id": 2462, "institution": { - "id": 283, - "name": "Maastricht University", - "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", - "rorId": "https://ror.org/02jz4aj89", + "homeUrl": "https://www.maastrichtuniversity.nl", + "id": 283, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "Maastricht University", + "rorId": "https://ror.org/02jz4aj89" }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000793", + "name": "Scholia", + "official": false, + "providerCode": "scholia", + "resourceHomeUrl": "https://scholia.toolforge.org/", + "sampleId": "10.1186/S13321-016-0161-3", + "urlPattern": "https://scholia.toolforge.org/doi/{$id}" } ], - "sampleId": "10.1038/nbt1156", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "10.1038/nbt1156" }, { + "created": "2019-06-11T14:15:35.100+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Protein Data Bank is the single worldwide archive of structural data of biological macromolecules.", "id": 78, - "prefix": "pdb", "mirId": "MIR:00000020", + "modified": "2019-06-11T14:15:35.100+0000", "name": "Protein Data Bank", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9][A-Za-z0-9]{3}$", - "description": "The Protein Data Bank is the single worldwide archive of structural data of biological macromolecules.", - "created": "2019-06-11T14:15:35.100+0000", - "modified": "2019-06-11T14:15:35.100+0000", + "prefix": "pdb", "resources": [ { - "id": 83, - "mirId": "MIR:00100096", - "urlPattern": "http://proteopedia.org/wiki/index.php/{$id}", - "name": "Proteopedia", + "deprecated": false, + "deprecationDate": null, "description": "Proteopedia", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2gc4", - "resourceHomeUrl": "http://www.proteopedia.org/", + "id": 83, "institution": { - "id": 82, - "name": "Weizmann Institute of Science", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 82, "location": { "countryCode": "IL", "countryName": "Israel" - } + }, + "name": "Weizmann Institute of Science", + "rorId": null }, "location": { "countryCode": "IL", "countryName": "Israel" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100096", + "name": "Proteopedia", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.proteopedia.org/", + "sampleId": "2gc4", + "urlPattern": "http://proteopedia.org/wiki/index.php/{$id}" }, { - "id": 80, - "mirId": "MIR:00100029", - "urlPattern": "https://www.rcsb.org/structure/{$id}", - "name": "RCSB PDB", + "deprecated": false, + "deprecationDate": null, "description": "RCSB PDB", - "official": true, - "providerCode": "rcsb", - "sampleId": "2gc4", - "resourceHomeUrl": "https://www.pdb.org/", + "id": 80, "institution": { - "id": 79, - "name": "Rutgers, The State University of New Jersey", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 79, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Rutgers, The State University of New Jersey", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100029", + "name": "RCSB PDB", + "official": true, + "providerCode": "rcsb", + "resourceHomeUrl": "https://www.pdb.org/", + "sampleId": "2gc4", + "urlPattern": "https://www.rcsb.org/structure/{$id}" }, { - "id": 86, - "mirId": "MIR:00100166", - "urlPattern": "https://www.ebi.ac.uk/pdbsum/{$id}", - "name": "Protein Databank through PDBsum", + "deprecated": false, + "deprecationDate": null, "description": "Protein Databank through PDBsum", - "official": false, - "providerCode": "ebi", - "sampleId": "2gc4", - "resourceHomeUrl": "https://www.ebi.ac.uk/pdbsum/", + "id": 86, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100166", + "name": "Protein Databank through PDBsum", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/pdbsum/", + "sampleId": "2gc4", + "urlPattern": "https://www.ebi.ac.uk/pdbsum/{$id}" }, { - "id": 85, - "mirId": "MIR:00100165", - "urlPattern": "https://pdbj.org/mine/summary/{$id}", - "name": "Protein Data Bank Japan (PDBj)", + "deprecated": false, + "deprecationDate": null, "description": "Protein Data Bank Japan (PDBj)", - "official": true, - "providerCode": "pdbj", - "sampleId": "2gc4", - "resourceHomeUrl": "http://www.pdbj.org/", + "id": 85, "institution": { - "id": 84, - "name": "Institute for Protein Research, Osaka University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 84, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Institute for Protein Research, Osaka University", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100165", + "name": "Protein Data Bank Japan (PDBj)", + "official": true, + "providerCode": "pdbj", + "resourceHomeUrl": "http://www.pdbj.org/", + "sampleId": "2gc4", + "urlPattern": "https://pdbj.org/mine/summary/{$id}" }, { - "id": 81, - "mirId": "MIR:00100037", - "urlPattern": "https://www.ebi.ac.uk/pdbe/entry/pdb/{$id}", - "name": "Protein Databank in Europe (PDBe)", + "deprecated": false, + "deprecationDate": null, "description": "Protein Databank in Europe (PDBe)", - "official": true, - "providerCode": "pdbe", - "sampleId": "2gc4", - "resourceHomeUrl": "http://www.pdbe.org/", + "id": 81, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100037", + "name": "Protein Databank in Europe (PDBe)", + "official": true, + "providerCode": "pdbe", + "resourceHomeUrl": "http://www.pdbe.org/", + "sampleId": "2gc4", + "urlPattern": "https://www.ebi.ac.uk/pdbe/entry/pdb/{$id}" } ], - "sampleId": "2gc4", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2gc4" }, { + "created": "2019-06-11T14:15:35.970+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Gene Ontology project provides a controlled vocabulary to describe gene and gene product attributes in any organism.", "id": 87, - "prefix": "go", "mirId": "MIR:00000022", + "modified": "2019-06-11T14:15:35.970+0000", "name": "Gene Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^GO:\\d{7}$", - "description": "The Gene Ontology project provides a controlled vocabulary to describe gene and gene product attributes in any organism.", - "created": "2019-06-11T14:15:35.970+0000", - "modified": "2019-06-11T14:15:35.970+0000", + "prefix": "go", "resources": [ { - "id": 88, - "mirId": "MIR:00100012", - "urlPattern": "https://www.ebi.ac.uk/QuickGO/GTerm?id=GO:{$id}", - "name": "QuickGO (Gene Ontology browser)", + "deprecated": false, + "deprecationDate": null, "description": "QuickGO (Gene Ontology browser)", - "official": false, - "providerCode": "quickgo", - "sampleId": "0006915", - "resourceHomeUrl": "https://www.ebi.ac.uk/QuickGO/", + "id": 88, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100012", + "name": "QuickGO (Gene Ontology browser)", + "official": false, + "providerCode": "quickgo", + "resourceHomeUrl": "https://www.ebi.ac.uk/QuickGO/", + "sampleId": "0006915", + "urlPattern": "https://www.ebi.ac.uk/QuickGO/GTerm?id=GO:{$id}" }, { - "id": 90, - "mirId": "MIR:00100013", - "urlPattern": "http://amigo.geneontology.org/amigo/term/GO:{$id}", - "name": "AmiGO 2", + "deprecated": false, + "deprecationDate": null, "description": "AmiGO 2", - "official": true, - "providerCode": "amigo", - "sampleId": "0006915", - "resourceHomeUrl": "http://amigo.geneontology.org/", + "id": 90, "institution": { - "id": 89, - "name": "The Gene Ontology Consortium", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 89, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Gene Ontology Consortium", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100013", + "name": "AmiGO 2", + "official": true, + "providerCode": "amigo", + "resourceHomeUrl": "http://amigo.geneontology.org/", + "sampleId": "0006915", + "urlPattern": "http://amigo.geneontology.org/amigo/term/GO:{$id}" }, { - "id": 92, - "mirId": "MIR:00100015", - "urlPattern": "http://www.informatics.jax.org/searches/GO.cgi?id=GO:{$id}", - "name": "GO Browser", + "deprecated": false, + "deprecationDate": null, "description": "GO Browser", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0006915", - "resourceHomeUrl": "http://www.informatics.jax.org/searches/GO_form.shtml", + "id": 92, "institution": { - "id": 91, - "name": "The Jackson Laboratory", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 91, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Jackson Laboratory", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100015", + "name": "GO Browser", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.informatics.jax.org/searches/GO_form.shtml", + "sampleId": "0006915", + "urlPattern": "http://www.informatics.jax.org/searches/GO.cgi?id=GO:{$id}" }, { - "id": 93, - "mirId": "MIR:00100237", - "urlPattern": "http://purl.bioontology.org/ontology/GO/GO:{$id}", - "name": "GO through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "GO through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "0006915", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/GO", + "id": 93, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100237", + "name": "GO through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/GO", + "sampleId": "0006915", + "urlPattern": "http://purl.bioontology.org/ontology/GO/GO:{$id}" }, { - "id": 95, - "mirId": "MIR:00100585", - "urlPattern": "http://www.pantherdb.org/panther/category.do?categoryAcc=GO:{$id}", - "name": "GO through PANTHER", + "deprecated": false, + "deprecationDate": null, "description": "GO through PANTHER", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0000003", - "resourceHomeUrl": "http://www.pantherdb.org/", + "id": 95, "institution": { - "id": 94, - "name": "Keck School of Medicine, University of Southern California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 94, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Keck School of Medicine, University of Southern California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100585", + "name": "GO through PANTHER", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.pantherdb.org/", + "sampleId": "0000003", + "urlPattern": "http://www.pantherdb.org/panther/category.do?categoryAcc=GO:{$id}" }, { - "id": 96, - "mirId": "MIR:00100675", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/go/terms?obo_id=GO:{$id}", - "name": "GO through OLS", + "deprecated": false, + "deprecationDate": null, "description": "GO through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0006915", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/go", + "id": 96, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100675", + "name": "GO through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/go", + "sampleId": "0006915", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/go/terms?obo_id=GO:{$id}" } ], - "sampleId": "0006915", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0006915" }, { + "created": "2019-06-11T14:15:37.056+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Saccharomyces Genome Database (SGD) project collects information and maintains a database of the molecular biology of the yeast Saccharomyces cerevisiae.", "id": 97, - "prefix": "sgd", "mirId": "MIR:00000023", + "modified": "2019-06-11T14:15:37.056+0000", "name": "SGD", + "namespaceEmbeddedInLui": false, "pattern": "^((S\\d+$)|(Y[A-Z]{2}\\d{3}[a-zA-Z](\\-[A-Z])?))$", - "description": "The Saccharomyces Genome Database (SGD) project collects information and maintains a database of the molecular biology of the yeast Saccharomyces cerevisiae.", - "created": "2019-06-11T14:15:37.056+0000", - "modified": "2019-06-11T14:15:37.056+0000", + "prefix": "sgd", "resources": [ { - "id": 99, - "mirId": "MIR:00100033", - "urlPattern": "https://www.yeastgenome.org/locus/{$id}", - "name": "SGD", + "deprecated": false, + "deprecationDate": null, "description": "SGD", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "S000003909", - "resourceHomeUrl": "https://www.yeastgenome.org/", + "id": 99, "institution": { - "id": 98, - "name": "Stanford University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 98, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Stanford University", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100033", + "name": "SGD", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.yeastgenome.org/", + "sampleId": "S000003909", + "urlPattern": "https://www.yeastgenome.org/locus/{$id}" }, { - "id": 100, - "mirId": "MIR:00100703", - "urlPattern": "http://sgd.bio2rdf.org/describe/?url=http://bio2rdf.org/sgd:{$id}", - "name": "Bio2RDF", + "deprecated": false, + "deprecationDate": null, "description": "Bio2RDF", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "S000003909", - "resourceHomeUrl": "http://sgd.bio2rdf.org/fct", + "id": 100, "institution": { - "id": 33, - "name": "Bio2RDF.org", - "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", - "rorId": null, + "homeUrl": "https://bio2rdf.org", + "id": 33, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Bio2RDF.org", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100703", + "name": "Bio2RDF", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://sgd.bio2rdf.org/fct", + "sampleId": "S000003909", + "urlPattern": "http://sgd.bio2rdf.org/describe/?url=http://bio2rdf.org/sgd:{$id}" }, { - "id": 102, - "mirId": "MIR:00100892", - "urlPattern": "https://bioentity.link/#/lexicon/public/{$id}", - "name": "SGD through BioEntity Link", + "deprecated": false, + "deprecationDate": null, "description": "SGD through BioEntity Link", - "official": false, - "providerCode": "bioentitylink", - "sampleId": "S000003909", - "resourceHomeUrl": "https://bioentity.link/", + "id": 102, "institution": { - "id": 101, - "name": "InSilico Inc, in Eugene, Oregon", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 101, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "InSilico Inc, in Eugene, Oregon", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100892", + "name": "SGD through BioEntity Link", + "official": false, + "providerCode": "bioentitylink", + "resourceHomeUrl": "https://bioentity.link/", + "sampleId": "S000003909", + "urlPattern": "https://bioentity.link/#/lexicon/public/{$id}" }, { - "id": 104, - "mirId": "MIR:00100906", - "urlPattern": "https://www.alliancegenome.org/gene/SGD:{$id}", - "name": "SGD through the Alliance of Genome Resources", + "deprecated": false, + "deprecationDate": null, "description": "SGD through the Alliance of Genome Resources", - "official": false, - "providerCode": "agr", - "sampleId": "S000003909", - "resourceHomeUrl": "https://www.alliancegenome.org", + "id": 104, "institution": { - "id": 103, - "name": "Alliance of Genome Resources", - "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", - "rorId": null, + "homeUrl": "https://www.alliancegenome.org", + "id": 103, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Alliance of Genome Resources", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100906", + "name": "SGD through the Alliance of Genome Resources", + "official": false, + "providerCode": "agr", + "resourceHomeUrl": "https://www.alliancegenome.org", + "sampleId": "S000003909", + "urlPattern": "https://www.alliancegenome.org/gene/SGD:{$id}" } ], - "sampleId": "S000003909", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "S000003909" }, { + "created": "2019-06-11T14:15:37.756+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The goal of the Systems Biology Ontology is to develop controlled vocabularies and ontologies tailored specifically for the kinds of problems being faced in Systems Biology, especially in the context of computational modeling. SBO is a project of the BioModels.net effort.", "id": 105, - "prefix": "sbo", "mirId": "MIR:00000024", + "modified": "2019-06-11T14:15:37.756+0000", "name": "Systems Biology Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^SBO:\\d{7}$", - "description": "The goal of the Systems Biology Ontology is to develop controlled vocabularies and ontologies tailored specifically for the kinds of problems being faced in Systems Biology, especially in the context of computational modeling. SBO is a project of the BioModels.net effort.", - "created": "2019-06-11T14:15:37.756+0000", - "modified": "2019-06-11T14:15:37.756+0000", + "prefix": "sbo", "resources": [ { - "id": 107, - "mirId": "MIR:00100176", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/sbo/terms?obo_id=SBO:{$id}", - "name": "SBO through OLS", + "deprecated": false, + "deprecationDate": null, "description": "SBO through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0000262", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/sbo", + "id": 107, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100176", + "name": "SBO through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/sbo", + "sampleId": "0000262", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/sbo/terms?obo_id=SBO:{$id}" }, { - "id": 108, - "mirId": "MIR:00100242", - "urlPattern": "http://purl.bioontology.org/ontology/SBO/SBO:{$id}", - "name": "SBO through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "SBO through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "0000262", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/SBO", + "id": 108, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100242", + "name": "SBO through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/SBO", + "sampleId": "0000262", + "urlPattern": "http://purl.bioontology.org/ontology/SBO/SBO:{$id}" }, { - "id": 106, - "mirId": "MIR:00100034", - "urlPattern": "https://www.ebi.ac.uk/sbo/main/SBO:{$id}", - "name": "SBO", + "deprecated": false, + "deprecationDate": null, "description": "SBO", - "official": true, - "providerCode": "biomodels.sbo", - "sampleId": "0000262", - "resourceHomeUrl": "https://www.ebi.ac.uk/sbo/", + "id": 106, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100034", + "name": "SBO", + "official": true, + "providerCode": "biomodels.sbo", + "resourceHomeUrl": "https://www.ebi.ac.uk/sbo/", + "sampleId": "0000262", + "urlPattern": "https://www.ebi.ac.uk/sbo/main/SBO:{$id}" } ], - "sampleId": "0000262", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0000262" }, { + "created": "2019-06-11T14:15:38.268+0000", + "deprecated": false, + "deprecationDate": null, + "description": "KEGG DRUG contains chemical structures of drugs and additional information such as therapeutic categories and target molecules.", "id": 109, - "prefix": "kegg.drug", "mirId": "MIR:00000025", + "modified": "2019-06-11T14:15:38.268+0000", "name": "KEGG Drug", + "namespaceEmbeddedInLui": false, "pattern": "^D\\d+$", - "description": "KEGG DRUG contains chemical structures of drugs and additional information such as therapeutic categories and target molecules.", - "created": "2019-06-11T14:15:38.268+0000", - "modified": "2019-06-11T14:15:38.268+0000", + "prefix": "kegg.drug", "resources": [ { - "id": 110, - "mirId": "MIR:00100035", - "urlPattern": "https://www.kegg.jp/entry/{$id}", - "name": "KEGG DRUG Database", + "deprecated": false, + "deprecationDate": null, "description": "KEGG DRUG Database", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "D00123", - "resourceHomeUrl": "https://www.genome.jp/kegg/drug/", + "id": 110, "institution": { - "id": 15, - "name": "Kyoto University Bioinformatics Center", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 15, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Kyoto University Bioinformatics Center", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100035", + "name": "KEGG DRUG Database", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.genome.jp/kegg/drug/", + "sampleId": "D00123", + "urlPattern": "https://www.kegg.jp/entry/{$id}" } ], - "sampleId": "D00123", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "D00123" }, { + "created": "2019-06-11T14:15:38.579+0000", + "deprecated": false, + "deprecationDate": null, + "description": "KEGG GLYCAN, a part of the KEGG LIGAND database, is a collection of experimentally determined glycan structures. It contains all unique structures taken from CarbBank, structures entered from recent publications, and structures present in KEGG pathways.", "id": 111, - "prefix": "kegg.glycan", "mirId": "MIR:00000026", + "modified": "2019-06-11T14:15:38.579+0000", "name": "KEGG Glycan", + "namespaceEmbeddedInLui": false, "pattern": "^G\\d+$", - "description": "KEGG GLYCAN, a part of the KEGG LIGAND database, is a collection of experimentally determined glycan structures. It contains all unique structures taken from CarbBank, structures entered from recent publications, and structures present in KEGG pathways.", - "created": "2019-06-11T14:15:38.579+0000", - "modified": "2019-06-11T14:15:38.579+0000", + "prefix": "kegg.glycan", "resources": [ { - "id": 112, - "mirId": "MIR:00100036", - "urlPattern": "https://www.kegg.jp/entry/{$id}", - "name": "KEGG GLYCAN Database", + "deprecated": false, + "deprecationDate": null, "description": "KEGG GLYCAN Database", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "G00123", - "resourceHomeUrl": "https://www.genome.jp/kegg/glycan/", + "id": 112, "institution": { - "id": 15, - "name": "Kyoto University Bioinformatics Center", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 15, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Kyoto University Bioinformatics Center", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100036", + "name": "KEGG GLYCAN Database", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.genome.jp/kegg/glycan/", + "sampleId": "G00123", + "urlPattern": "https://www.kegg.jp/entry/{$id}" } ], - "sampleId": "G00123", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "G00123" }, { + "created": "2019-06-11T14:15:38.790+0000", + "deprecated": false, + "deprecationDate": null, + "description": "WormBase is an online bioinformatics database of the biology and genome of the model organism Caenorhabditis elegans and other nematodes. It is used by the C. elegans research community both as an information resource and as a mode to publish and distribute their results. This collection references WormBase-accessioned entities.", "id": 113, - "prefix": "wb", "mirId": "MIR:00000027", + "modified": "2019-06-11T14:15:38.790+0000", "name": "WormBase", + "namespaceEmbeddedInLui": false, "pattern": "^WB[A-Z][a-z]+\\d+$", - "description": "WormBase is an online bioinformatics database of the biology and genome of the model organism Caenorhabditis elegans and other nematodes. It is used by the C. elegans research community both as an information resource and as a mode to publish and distribute their results. This collection references WormBase-accessioned entities.", - "created": "2019-06-11T14:15:38.790+0000", - "modified": "2019-06-11T14:15:38.790+0000", + "prefix": "wb", "resources": [ { - "id": 114, - "mirId": "MIR:00100038", - "urlPattern": "https://www.wormbase.org/get?name={$id}", - "name": "WormBase", + "deprecated": false, + "deprecationDate": null, "description": "WormBase", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "WBGene00000001", - "resourceHomeUrl": "https://www.wormbase.org/", + "id": 114, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100038", + "name": "WormBase", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.wormbase.org/", + "sampleId": "WBGene00000001", + "urlPattern": "https://www.wormbase.org/get?name={$id}" }, { - "id": 115, - "mirId": "MIR:00100890", - "urlPattern": "https://bioentity.link/#/lexicon/public/{$id}", - "name": "WormBase through BioEntity Link", + "deprecated": false, + "deprecationDate": null, "description": "WormBase through BioEntity Link", - "official": false, - "providerCode": "bioentitylink", - "sampleId": "WBGene00021291", - "resourceHomeUrl": "https://bioentity.link/", + "id": 115, "institution": { - "id": 101, - "name": "InSilico Inc, in Eugene, Oregon", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 101, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "InSilico Inc, in Eugene, Oregon", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100890", + "name": "WormBase through BioEntity Link", + "official": false, + "providerCode": "bioentitylink", + "resourceHomeUrl": "https://bioentity.link/", + "sampleId": "WBGene00021291", + "urlPattern": "https://bioentity.link/#/lexicon/public/{$id}" }, { - "id": 116, - "mirId": "MIR:00100901", - "urlPattern": "https://www.alliancegenome.org/gene/WB:{$id}", - "name": "WormBase through the Alliance of Genome Resources", + "deprecated": false, + "deprecationDate": null, "description": "WormBase through the Alliance of Genome Resources", - "official": false, - "providerCode": "agr", - "sampleId": "WBGene00000001", - "resourceHomeUrl": "https://www.alliancegenome.org", + "id": 116, "institution": { - "id": 103, - "name": "Alliance of Genome Resources", - "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", - "rorId": null, + "homeUrl": "https://www.alliancegenome.org", + "id": 103, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Alliance of Genome Resources", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100901", + "name": "WormBase through the Alliance of Genome Resources", + "official": false, + "providerCode": "agr", + "resourceHomeUrl": "https://www.alliancegenome.org", + "sampleId": "WBGene00000001", + "urlPattern": "https://www.alliancegenome.org/gene/WB:{$id}" } ], - "sampleId": "WBGene00000001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "WBGene00000001" }, { + "created": "2019-06-11T14:15:39.270+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Pfam database contains information about protein domains and families. For each entry a protein sequence alignment and a Hidden Markov Model is stored.", "id": 117, - "prefix": "pfam", "mirId": "MIR:00000028", + "modified": "2019-06-11T14:15:39.270+0000", "name": "Pfam", + "namespaceEmbeddedInLui": false, "pattern": "^PF\\d{5}$", - "description": "The Pfam database contains information about protein domains and families. For each entry a protein sequence alignment and a Hidden Markov Model is stored.", - "created": "2019-06-11T14:15:39.270+0000", - "modified": "2019-06-11T14:15:39.270+0000", + "prefix": "pfam", "resources": [ { - "id": 118, - "mirId": "MIR:00100685", - "urlPattern": "https://pfam.xfam.org/family/{$id}", - "name": "Pfam at EMBL-EBI", + "deprecated": false, + "deprecationDate": null, "description": "Pfam at EMBL-EBI", - "official": true, - "providerCode": "ebi", - "sampleId": "PF01234", - "resourceHomeUrl": "https://pfam.xfam.org/", + "id": 118, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100685", + "name": "Pfam at EMBL-EBI", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://pfam.xfam.org/", + "sampleId": "PF01234", + "urlPattern": "https://pfam.xfam.org/family/{$id}" } ], - "sampleId": "PF01234", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PF01234" }, { + "created": "2019-06-11T14:15:39.496+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The International Nucleotide Sequence Database Collaboration (INSDC) consists of a joint effort to collect and disseminate databases containing DNA and RNA sequences.", "id": 119, - "prefix": "insdc", "mirId": "MIR:00000029", + "modified": "2019-06-11T14:15:39.496+0000", "name": "Nucleotide Sequence Database", + "namespaceEmbeddedInLui": false, "pattern": "^([A-Z]\\d{5}|[A-Z]{2}\\d{6}|[A-Z]{4}\\d{8}|[A-J][A-Z]{2}\\d{5})(\\.\\d+)?$", - "description": "The International Nucleotide Sequence Database Collaboration (INSDC) consists of a joint effort to collect and disseminate databases containing DNA and RNA sequences.", - "created": "2019-06-11T14:15:39.496+0000", - "modified": "2019-06-11T14:15:39.496+0000", + "prefix": "insdc", "resources": [ { - "id": 120, - "mirId": "MIR:00100049", - "urlPattern": "https://www.ncbi.nlm.nih.gov/nuccore/{$id}", - "name": "INSDC through GenBank", + "deprecated": false, + "deprecationDate": null, "description": "INSDC through GenBank", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "X58356", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/Genbank/", + "id": 120, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 122, - "mirId": "MIR:00100066", - "urlPattern": "http://getentry.ddbj.nig.ac.jp/getentry?database=ddbj&accession_number={$id}", - "name": "INSDC through DDBJ", - "description": "INSDC through DDBJ", + "mirId": "MIR:00100049", + "name": "INSDC through GenBank", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/Genbank/", "sampleId": "X58356", - "resourceHomeUrl": "http://www.ddbj.nig.ac.jp/", + "urlPattern": "https://www.ncbi.nlm.nih.gov/nuccore/{$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "INSDC through DDBJ", + "id": 122, "institution": { - "id": 121, - "name": "DNA Data Bank of Japan, Mishima, Shizuoka", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 121, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "DNA Data Bank of Japan, Mishima, Shizuoka", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100066", + "name": "INSDC through DDBJ", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.ddbj.nig.ac.jp/", + "sampleId": "X58356", + "urlPattern": "http://getentry.ddbj.nig.ac.jp/getentry?database=ddbj&accession_number={$id}" }, { - "id": 123, - "mirId": "MIR:00100487", - "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", - "name": "INSDC through European Nucleotide Archive (ENA)", + "deprecated": false, + "deprecationDate": null, "description": "INSDC through European Nucleotide Archive (ENA)", - "official": false, - "providerCode": "ebi", - "sampleId": "X58356", - "resourceHomeUrl": "https://www.ebi.ac.uk/ena/", + "id": 123, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100487", + "name": "INSDC through European Nucleotide Archive (ENA)", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/ena/", + "sampleId": "X58356", + "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}" }, { - "id": 124, - "mirId": "MIR:00100490", - "urlPattern": "https://www.ncbi.nlm.nih.gov/nuccore/{$id}", - "name": "INSDC through Nucleotide database at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "INSDC through Nucleotide database at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "X58356", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/nuccore/", + "id": 124, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100490", + "name": "INSDC through Nucleotide database at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/nuccore/", + "sampleId": "X58356", + "urlPattern": "https://www.ncbi.nlm.nih.gov/nuccore/{$id}" } ], - "sampleId": "X58356", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "X58356" }, { + "created": "2019-06-11T14:15:40.188+0000", + "deprecated": false, + "deprecationDate": null, + "description": "FlyBase is the database of the Drosophila Genome Projects and of associated literature.", "id": 125, - "prefix": "fb", "mirId": "MIR:00000030", + "modified": "2019-06-11T14:15:40.188+0000", "name": "FlyBase", + "namespaceEmbeddedInLui": false, "pattern": "^FB\\w{2}\\d{7}$", - "description": "FlyBase is the database of the Drosophila Genome Projects and of associated literature.", - "created": "2019-06-11T14:15:40.188+0000", - "modified": "2019-06-11T14:15:40.188+0000", + "prefix": "fb", "resources": [ { - "id": 127, - "mirId": "MIR:00100050", - "urlPattern": "http://flybase.org/reports/{$id}.html", - "name": "The FlyBase Database", + "deprecated": false, + "deprecationDate": null, "description": "The FlyBase Database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "FBgn0011293", - "resourceHomeUrl": "http://flybase.org/", + "id": 127, "institution": { - "id": 126, - "name": "The FlyBase Consortium", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 126, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The FlyBase Consortium", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100050", + "name": "The FlyBase Database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://flybase.org/", + "sampleId": "FBgn0011293", + "urlPattern": "http://flybase.org/reports/{$id}.html" }, { - "id": 128, - "mirId": "MIR:00100893", - "urlPattern": "https://bioentity.link/#/lexicon/public/{$id}", - "name": "FlyBase through BioEntity Link", + "deprecated": false, + "deprecationDate": null, "description": "FlyBase through BioEntity Link", - "official": false, - "providerCode": "bioentitylink", - "sampleId": "FBgn0011293", - "resourceHomeUrl": "https://bioentity.link/", + "id": 128, "institution": { - "id": 101, - "name": "InSilico Inc, in Eugene, Oregon", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 101, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "InSilico Inc, in Eugene, Oregon", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100893", + "name": "FlyBase through BioEntity Link", + "official": false, + "providerCode": "bioentitylink", + "resourceHomeUrl": "https://bioentity.link/", + "sampleId": "FBgn0011293", + "urlPattern": "https://bioentity.link/#/lexicon/public/{$id}" }, { - "id": 129, - "mirId": "MIR:00100904", - "urlPattern": "https://www.alliancegenome.org/gene/FB:{$id}", - "name": "FlyBase through the Alliance of Genome Resources", + "deprecated": false, + "deprecationDate": null, "description": "FlyBase through the Alliance of Genome Resources", - "official": false, - "providerCode": "agr", - "sampleId": "FBgn0011293", - "resourceHomeUrl": "https://www.alliancegenome.org", + "id": 129, "institution": { - "id": 103, - "name": "Alliance of Genome Resources", - "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", - "rorId": null, + "homeUrl": "https://www.alliancegenome.org", + "id": 103, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Alliance of Genome Resources", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100904", + "name": "FlyBase through the Alliance of Genome Resources", + "official": false, + "providerCode": "agr", + "resourceHomeUrl": "https://www.alliancegenome.org", + "sampleId": "FBgn0011293", + "urlPattern": "https://www.alliancegenome.org/gene/FB:{$id}" } ], - "sampleId": "FBgn0011293", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "FBgn0011293" }, { + "created": "2019-06-11T14:15:40.709+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Wormpep contains the predicted proteins from the Caenorhabditis elegans genome sequencing project.", "id": 130, - "prefix": "wormpep", "mirId": "MIR:00000031", + "modified": "2019-06-11T14:15:40.709+0000", "name": "Wormpep", + "namespaceEmbeddedInLui": false, "pattern": "^CE\\d{5}$", - "description": "Wormpep contains the predicted proteins from the Caenorhabditis elegans genome sequencing project.", - "created": "2019-06-11T14:15:40.709+0000", - "modified": "2019-06-11T14:15:40.709+0000", + "prefix": "wormpep", "resources": [ { - "id": 132, - "mirId": "MIR:00100051", - "urlPattern": "https://www.wormbase.org/db/seq/protein?name=WP:{$id}", - "name": "Wormpep (Master)", + "deprecated": false, + "deprecationDate": null, "description": "Wormpep (Master)", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "CE28239", - "resourceHomeUrl": "https://www.wormbase.org/db/seq/protein", + "id": 132, "institution": { - "id": 131, - "name": "Cold Spring Harbor Laboratory", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 131, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Cold Spring Harbor Laboratory", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100051", + "name": "Wormpep (Master)", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.wormbase.org/db/seq/protein", + "sampleId": "CE28239", + "urlPattern": "https://www.wormbase.org/db/seq/protein?name=WP:{$id}" } ], - "sampleId": "CE28239", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CE28239" }, { + "created": "2019-06-11T14:15:40.983+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PROSITE consists of documentation entries describing protein domains, families and functional sites as well as associated patterns and profiles to identify them.", "id": 133, - "prefix": "prosite", "mirId": "MIR:00000032", + "modified": "2019-06-11T14:15:40.983+0000", "name": "PROSITE", + "namespaceEmbeddedInLui": false, "pattern": "^PS\\d{5}$", - "description": "PROSITE consists of documentation entries describing protein domains, families and functional sites as well as associated patterns and profiles to identify them.", - "created": "2019-06-11T14:15:40.983+0000", - "modified": "2019-06-11T14:15:40.983+0000", + "prefix": "prosite", "resources": [ { - "id": 135, - "mirId": "MIR:00100056", - "urlPattern": "https://prosite.expasy.org/{$id}", - "name": "ExPASy PROSITE", + "deprecated": false, + "deprecationDate": null, "description": "ExPASy PROSITE", - "official": false, - "providerCode": "expasy", - "sampleId": "PS00001", - "resourceHomeUrl": "https://www.expasy.org/prosite/", + "id": 135, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100056", + "name": "ExPASy PROSITE", + "official": false, + "providerCode": "expasy", + "resourceHomeUrl": "https://www.expasy.org/prosite/", + "sampleId": "PS00001", + "urlPattern": "https://prosite.expasy.org/{$id}" } ], - "sampleId": "PS00001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PS00001" }, { + "created": "2019-06-11T14:15:41.269+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PubChem provides information on the biological activities of small molecules. It is a component of NIH's Molecular Libraries Roadmap Initiative. PubChem Substance archives chemical substance records.", "id": 136, - "prefix": "pubchem.substance", "mirId": "MIR:00000033", + "modified": "2019-06-11T14:15:41.269+0000", "name": "PubChem-substance", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "PubChem provides information on the biological activities of small molecules. It is a component of NIH's Molecular Libraries Roadmap Initiative. PubChem Substance archives chemical substance records.", - "created": "2019-06-11T14:15:41.269+0000", - "modified": "2019-06-11T14:15:41.269+0000", + "prefix": "pubchem.substance", "resources": [ { - "id": 137, - "mirId": "MIR:00100058", - "urlPattern": "https://pubchem.ncbi.nlm.nih.gov/substance/{$id}", - "name": "NCBI PubChem Substance", + "deprecated": false, + "deprecationDate": null, "description": "NCBI PubChem Substance", - "official": false, - "providerCode": "ncbi", - "sampleId": "100101", - "resourceHomeUrl": "https://pubchem.ncbi.nlm.nih.gov/", + "id": 137, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100058", + "name": "NCBI PubChem Substance", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://pubchem.ncbi.nlm.nih.gov/", + "sampleId": "100101", + "urlPattern": "https://pubchem.ncbi.nlm.nih.gov/substance/{$id}" } ], - "sampleId": "100101", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "100101" }, { + "created": "2019-06-11T14:15:41.493+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PubChem provides information on the biological activities of small molecules. It is a component of NIH's Molecular Libraries Roadmap Initiative. PubChem Compound archives chemical structures and records.", "id": 138, - "prefix": "pubchem.compound", "mirId": "MIR:00000034", + "modified": "2019-06-11T14:15:41.493+0000", "name": "PubChem-compound", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "PubChem provides information on the biological activities of small molecules. It is a component of NIH's Molecular Libraries Roadmap Initiative. PubChem Compound archives chemical structures and records.", - "created": "2019-06-11T14:15:41.493+0000", - "modified": "2019-06-11T14:15:41.493+0000", + "prefix": "pubchem.compound", "resources": [ { - "id": 139, - "mirId": "MIR:00100059", - "urlPattern": "https://pubchem.ncbi.nlm.nih.gov/compound/{$id}", - "name": "NCBI PubChem Compound", + "deprecated": false, + "deprecationDate": null, "description": "NCBI PubChem Compound", - "official": true, - "providerCode": "ncbi", - "sampleId": "100101", - "resourceHomeUrl": "https://pubchem.ncbi.nlm.nih.gov/", + "id": 139, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100059", + "name": "NCBI PubChem Compound", + "official": true, + "providerCode": "ncbi", + "resourceHomeUrl": "https://pubchem.ncbi.nlm.nih.gov/", + "sampleId": "100101", + "urlPattern": "https://pubchem.ncbi.nlm.nih.gov/compound/{$id}" }, { - "id": 2449, - "mirId": "MIR:00000698", - "urlPattern": "https://scholia.toolforge.org/pubchem/{$id}", - "name": "Scholia", + "deprecated": false, + "deprecationDate": null, "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", - "official": false, - "providerCode": "scholia", - "sampleId": "14123361", - "resourceHomeUrl": "https://scholia.toolforge.org/", + "id": 2449, "institution": { - "id": 283, - "name": "Maastricht University", - "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", - "rorId": "https://ror.org/02jz4aj89", + "homeUrl": "https://www.maastrichtuniversity.nl", + "id": 283, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "Maastricht University", + "rorId": "https://ror.org/02jz4aj89" }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000698", + "name": "Scholia", + "official": false, + "providerCode": "scholia", + "resourceHomeUrl": "https://scholia.toolforge.org/", + "sampleId": "14123361", + "urlPattern": "https://scholia.toolforge.org/pubchem/{$id}" } ], - "sampleId": "100101", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "100101" }, { + "created": "2019-06-11T14:15:41.707+0000", + "deprecated": false, + "deprecationDate": null, + "description": "arXiv is an e-print service in the fields of physics, mathematics, non-linear science, computer science, and quantitative biology.", "id": 140, - "prefix": "arxiv", "mirId": "MIR:00000035", + "modified": "2019-06-11T14:15:41.707+0000", "name": "arXiv", + "namespaceEmbeddedInLui": false, "pattern": "^(\\w+(\\-\\w+)?(\\.\\w+)?)?\\d{4,7}(\\.\\d+(v\\d+)?)?$", - "description": "arXiv is an e-print service in the fields of physics, mathematics, non-linear science, computer science, and quantitative biology.", - "created": "2019-06-11T14:15:41.707+0000", - "modified": "2019-06-11T14:15:41.707+0000", + "prefix": "arxiv", "resources": [ { - "id": 142, - "mirId": "MIR:00100060", - "urlPattern": "https://arxiv.org/abs/{$id}", - "name": "Cornell University arXiv", + "deprecated": false, + "deprecationDate": null, "description": "Cornell University arXiv", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0807.4956v1", - "resourceHomeUrl": "https://arxiv.org/", + "id": 142, "institution": { - "id": 141, - "name": "Cornell University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 141, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Cornell University", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100060", + "name": "Cornell University arXiv", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://arxiv.org/", + "sampleId": "0807.4956v1", + "urlPattern": "https://arxiv.org/abs/{$id}" } ], - "sampleId": "0807.4956v1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "0807.4956v1" }, { + "created": "2019-06-11T14:15:41.970+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ArrayExpress is a public repository for microarray data, which is aimed at storing MIAME-compliant data in accordance with Microarray Gene Expression Data (MGED) recommendations.", "id": 143, - "prefix": "arrayexpress", "mirId": "MIR:00000036", + "modified": "2019-06-11T14:15:41.970+0000", "name": "ArrayExpress", + "namespaceEmbeddedInLui": false, "pattern": "^[AEP]-\\w{4}-\\d+$", - "description": "ArrayExpress is a public repository for microarray data, which is aimed at storing MIAME-compliant data in accordance with Microarray Gene Expression Data (MGED) recommendations.", - "created": "2019-06-11T14:15:41.970+0000", - "modified": "2019-06-11T14:15:41.970+0000", + "prefix": "arrayexpress", "resources": [ { - "id": 144, - "mirId": "MIR:00100061", - "urlPattern": "https://www.ebi.ac.uk/arrayexpress/experiments/{$id}", - "name": "ArrayExpress", + "deprecated": false, + "deprecationDate": null, "description": "ArrayExpress", - "official": true, - "providerCode": "ebi", - "sampleId": "E-MEXP-1712", - "resourceHomeUrl": "https://www.ebi.ac.uk/arrayexpress/", + "id": 144, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100061", + "name": "ArrayExpress", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/arrayexpress/", + "sampleId": "E-MEXP-1712", + "urlPattern": "https://www.ebi.ac.uk/arrayexpress/experiments/{$id}" }, { - "id": 145, - "mirId": "MIR:00100854", - "urlPattern": "https://www.omicsdi.org/dataset/arrayexpress-repository/{$id}", - "name": "ArrayExpress through OmicsDI", + "deprecated": false, + "deprecationDate": null, "description": "ArrayExpress through OmicsDI", - "official": false, - "providerCode": "omicsdi", - "sampleId": "E-MEXP-1712", - "resourceHomeUrl": "https://www.omicsdi.org/", + "id": 145, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100854", + "name": "ArrayExpress through OmicsDI", + "official": false, + "providerCode": "omicsdi", + "resourceHomeUrl": "https://www.omicsdi.org/", + "sampleId": "E-MEXP-1712", + "urlPattern": "https://www.omicsdi.org/dataset/arrayexpress-repository/{$id}" } ], - "sampleId": "E-MEXP-1712", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "E-MEXP-1712" }, { + "created": "2019-06-11T14:15:42.331+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Mouse Genome Database (MGD) project includes data on gene characterization, nomenclature, mapping, gene homologies among mammals, sequence links, phenotypes, allelic variants and mutants, and strain data.", "id": 146, - "prefix": "mgi", "mirId": "MIR:00000037", + "modified": "2019-06-11T14:15:42.331+0000", "name": "Mouse Genome Database", + "namespaceEmbeddedInLui": true, "pattern": "^MGI:\\d+$", - "description": "The Mouse Genome Database (MGD) project includes data on gene characterization, nomenclature, mapping, gene homologies among mammals, sequence links, phenotypes, allelic variants and mutants, and strain data.", - "created": "2019-06-11T14:15:42.331+0000", - "modified": "2019-06-11T14:15:42.331+0000", + "prefix": "mgi", "resources": [ { - "id": 147, - "mirId": "MIR:00100062", - "urlPattern": "http://www.informatics.jax.org/accession/MGI:{$id}", - "name": "Mouse Genome Informatics Database", + "deprecated": false, + "deprecationDate": null, "description": "Mouse Genome Informatics Database", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2442292", - "resourceHomeUrl": "http://www.informatics.jax.org/", + "id": 147, "institution": { - "id": 91, - "name": "The Jackson Laboratory", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 91, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Jackson Laboratory", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100062", + "name": "Mouse Genome Informatics Database", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.informatics.jax.org/", + "sampleId": "2442292", + "urlPattern": "http://www.informatics.jax.org/accession/MGI:{$id}" }, { - "id": 148, - "mirId": "MIR:00100894", - "urlPattern": "https://bioentity.link/#/lexicon/public/MGI:{$id}", - "name": "MGD through BioEntity Link", + "deprecated": false, + "deprecationDate": null, "description": "MGD through BioEntity Link", - "official": false, - "providerCode": "bioentitylink", - "sampleId": "2442292", - "resourceHomeUrl": "https://bioentity.link/", + "id": 148, "institution": { - "id": 101, - "name": "InSilico Inc, in Eugene, Oregon", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 101, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "InSilico Inc, in Eugene, Oregon", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100894", + "name": "MGD through BioEntity Link", + "official": false, + "providerCode": "bioentitylink", + "resourceHomeUrl": "https://bioentity.link/", + "sampleId": "2442292", + "urlPattern": "https://bioentity.link/#/lexicon/public/MGI:{$id}" }, { - "id": 149, - "mirId": "MIR:00100903", - "urlPattern": "https://www.alliancegenome.org/gene/MGI:{$id}", - "name": "MGI through the Alliance of Genome Resources", + "deprecated": false, + "deprecationDate": null, "description": "MGI through the Alliance of Genome Resources", - "official": false, - "providerCode": "agr", - "sampleId": "2442292", - "resourceHomeUrl": "https://www.alliancegenome.org", + "id": 149, "institution": { - "id": 103, - "name": "Alliance of Genome Resources", - "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", - "rorId": null, + "homeUrl": "https://www.alliancegenome.org", + "id": 103, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Alliance of Genome Resources", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100903", + "name": "MGI through the Alliance of Genome Resources", + "official": false, + "providerCode": "agr", + "resourceHomeUrl": "https://www.alliancegenome.org", + "sampleId": "2442292", + "urlPattern": "https://www.alliancegenome.org/gene/MGI:{$id}" } ], - "sampleId": "2442292", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "2442292" }, { + "created": "2019-06-11T14:15:42.838+0000", + "deprecated": false, + "deprecationDate": null, + "description": "SABIO-RK is a relational database system that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. The reaction data set provides information regarding the organism in which a reaction is observed, pathways in which it participates, and links to further information.", "id": 150, - "prefix": "sabiork.reaction", "mirId": "MIR:00000038", + "modified": "2019-06-11T14:15:42.838+0000", "name": "SABIO-RK Reaction", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "SABIO-RK is a relational database system that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. The reaction data set provides information regarding the organism in which a reaction is observed, pathways in which it participates, and links to further information.", - "created": "2019-06-11T14:15:42.838+0000", - "modified": "2019-06-11T14:15:42.838+0000", + "prefix": "sabiork.reaction", "resources": [ { - "id": 152, - "mirId": "MIR:00100063", - "urlPattern": "http://sabiork.h-its.org/newSearch?q=sabioreactionid:{$id}", - "name": "SABIO-RK reaction", + "deprecated": false, + "deprecationDate": null, "description": "SABIO-RK reaction", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "75", - "resourceHomeUrl": "http://sabiork.h-its.org/", + "id": 152, "institution": { - "id": 151, - "name": "Heidelberg Institute for Theoretical Studies (HITS gGmbH)", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 151, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Heidelberg Institute for Theoretical Studies (HITS gGmbH)", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100063", + "name": "SABIO-RK reaction", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://sabiork.h-its.org/", + "sampleId": "75", + "urlPattern": "http://sabiork.h-its.org/newSearch?q=sabioreactionid:{$id}" } ], - "sampleId": "75", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "75" }, { + "created": "2019-06-11T14:15:43.342+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The database details a comprehensive IUBMB approved classification system for membrane transport proteins known as the Transporter Classification (TC) system. The TC system is analogous to the Enzyme Commission (EC) system for classification of enzymes, but incorporates phylogenetic information additionally.", "id": 156, - "prefix": "tcdb", "mirId": "MIR:00000040", + "modified": "2019-06-11T14:15:43.342+0000", "name": "Transport Classification Database", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+(\\.[A-Z])?(\\.\\d+)?(\\.\\d+)?(\\.\\d+)?$", - "description": "The database details a comprehensive IUBMB approved classification system for membrane transport proteins known as the Transporter Classification (TC) system. The TC system is analogous to the Enzyme Commission (EC) system for classification of enzymes, but incorporates phylogenetic information additionally.", - "created": "2019-06-11T14:15:43.342+0000", - "modified": "2019-06-11T14:15:43.342+0000", + "prefix": "tcdb", "resources": [ { - "id": 158, - "mirId": "MIR:00100068", - "urlPattern": "http://www.tcdb.org/search/result.php?tc={$id}", - "name": "TCDB", + "deprecated": false, + "deprecationDate": null, "description": "TCDB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "5.A.1.1.1", - "resourceHomeUrl": "http://www.tcdb.org/", + "id": 158, "institution": { - "id": 157, - "name": "Division of Biological Sciences, UCSD", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 157, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Division of Biological Sciences, UCSD", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100068", + "name": "TCDB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.tcdb.org/", + "sampleId": "5.A.1.1.1", + "urlPattern": "http://www.tcdb.org/search/result.php?tc={$id}" } ], - "sampleId": "5.A.1.1.1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "5.A.1.1.1" }, { + "created": "2019-06-11T14:15:43.590+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The UniProt Archive (UniParc) is a database containing non-redundant protein sequence information from many sources. Each unique sequence is given a stable and unique identifier (UPI) making it possible to identify the same protein from different source databases.", "id": 159, - "prefix": "uniparc", "mirId": "MIR:00000041", + "modified": "2019-06-11T14:15:43.590+0000", "name": "UniParc", + "namespaceEmbeddedInLui": false, "pattern": "^UPI[A-F0-9]{10}$", - "description": "The UniProt Archive (UniParc) is a database containing non-redundant protein sequence information from many sources. Each unique sequence is given a stable and unique identifier (UPI) making it possible to identify the same protein from different source databases.", - "created": "2019-06-11T14:15:43.590+0000", - "modified": "2019-06-11T14:15:43.590+0000", + "prefix": "uniparc", "resources": [ { - "id": 160, - "mirId": "MIR:00100069", - "urlPattern": "https://www.ebi.ac.uk/cgi-bin/dbfetch?db=uniparc&id={$id}", - "name": "UniProt Archive (UniParc)", + "deprecated": false, + "deprecationDate": null, "description": "UniProt Archive (UniParc)", - "official": false, - "providerCode": "ebi", - "sampleId": "UPI000000000A", - "resourceHomeUrl": "https://www.ebi.ac.uk/uniparc/", + "id": 160, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100069", + "name": "UniProt Archive (UniParc)", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/uniparc/", + "sampleId": "UPI000000000A", + "urlPattern": "https://www.ebi.ac.uk/cgi-bin/dbfetch?db=uniparc&id={$id}" }, { - "id": 161, - "mirId": "MIR:00100476", - "urlPattern": "https://www.uniprot.org/uniparc/{$id}", - "name": "UniParc through UniProt", + "deprecated": false, + "deprecationDate": null, "description": "UniParc through UniProt", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "UPI000000000A", - "resourceHomeUrl": "http://www.uniprot.org/uniparc/", + "id": 161, "institution": { - "id": 24, - "name": "UniProt Consortium", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 24, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "UniProt Consortium", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100476", + "name": "UniParc through UniProt", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.uniprot.org/uniparc/", + "sampleId": "UPI000000000A", + "urlPattern": "https://www.uniprot.org/uniparc/{$id}" } ], - "sampleId": "UPI000000000A", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "UPI000000000A" }, { + "created": "2019-06-11T14:15:43.925+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Molecular INTeraction database (MINT) stores, in a structured format, information about molecular interactions by extracting experimental details from work published in peer-reviewed journals.", "id": 162, - "prefix": "mint", "mirId": "MIR:00000042", + "modified": "2019-06-11T14:15:43.925+0000", "name": "MINT", + "namespaceEmbeddedInLui": false, "pattern": "^MINT\\-\\d{1,7}$", - "description": "The Molecular INTeraction database (MINT) stores, in a structured format, information about molecular interactions by extracting experimental details from work published in peer-reviewed journals.", - "created": "2019-06-11T14:15:43.925+0000", - "modified": "2019-06-11T14:15:43.925+0000", + "prefix": "mint", "resources": [ { - "id": 164, - "mirId": "MIR:00100070", - "urlPattern": "http://mint.bio.uniroma2.it/mint/search/inFrameInteraction.do?interactionAc={$id}", - "name": "The Molecular INTeraction database (MINT)", + "deprecated": false, + "deprecationDate": null, "description": "The Molecular INTeraction database (MINT)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MINT-10000", - "resourceHomeUrl": "http://mint.bio.uniroma2.it/mint/", + "id": 164, "institution": { - "id": 163, - "name": "University of Rome Tor Vergata, Rome", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 163, "location": { "countryCode": "IT", "countryName": "Italy" - } + }, + "name": "University of Rome Tor Vergata, Rome", + "rorId": null }, "location": { "countryCode": "IT", "countryName": "Italy" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100070", + "name": "The Molecular INTeraction database (MINT)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://mint.bio.uniroma2.it/mint/", + "sampleId": "MINT-10000", + "urlPattern": "http://mint.bio.uniroma2.it/mint/search/inFrameInteraction.do?interactionAc={$id}" }, { - "id": 165, - "mirId": "MIR:00100654", - "urlPattern": "https://www.ebi.ac.uk/intact/query/interaction_id:{$id}", - "name": "MINT subset through IntAct", + "deprecated": false, + "deprecationDate": null, "description": "MINT subset through IntAct", - "official": false, - "providerCode": "ebi", - "sampleId": "MINT-7905142", - "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", + "id": 165, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100654", + "name": "MINT subset through IntAct", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", + "sampleId": "MINT-7905142", + "urlPattern": "https://www.ebi.ac.uk/intact/query/interaction_id:{$id}" } ], - "sampleId": "MINT-10000", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MINT-10000" }, { + "created": "2019-06-11T14:15:44.329+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The database of interacting protein (DIP) database stores experimentally determined interactions between proteins. It combines information from a variety of sources to create a single, consistent set of protein-protein interactions", "id": 166, - "prefix": "dip", "mirId": "MIR:00000044", + "modified": "2019-06-11T14:15:44.329+0000", "name": "Database of Interacting Proteins", + "namespaceEmbeddedInLui": false, "pattern": "^DIP(\\:)?\\-\\d{1,}[ENXS]$", - "description": "The database of interacting protein (DIP) database stores experimentally determined interactions between proteins. It combines information from a variety of sources to create a single, consistent set of protein-protein interactions", - "created": "2019-06-11T14:15:44.329+0000", - "modified": "2019-06-11T14:15:44.329+0000", + "prefix": "dip", "resources": [ { - "id": 168, - "mirId": "MIR:00100072", - "urlPattern": "https://dip.doe-mbi.ucla.edu/dip/DIPview.cgi?ID={$id}", - "name": "Database of interacting proteins", + "deprecated": false, + "deprecationDate": null, "description": "Database of interacting proteins", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "DIP-743N", - "resourceHomeUrl": "https://dip.doe-mbi.ucla.edu/", + "id": 168, "institution": { - "id": 167, - "name": "UCLA", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 167, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "UCLA", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100072", + "name": "Database of interacting proteins", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://dip.doe-mbi.ucla.edu/", + "sampleId": "DIP-743N", + "urlPattern": "https://dip.doe-mbi.ucla.edu/dip/DIPview.cgi?ID={$id}" } ], - "sampleId": "DIP-743N", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "DIP-743N" }, { + "created": "2019-06-11T14:15:44.579+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Signaling Gateway provides information on mammalian proteins involved in cellular signaling.", "id": 169, - "prefix": "signaling-gateway", "mirId": "MIR:00000045", + "modified": "2019-06-11T14:15:44.579+0000", "name": "Signaling Gateway", + "namespaceEmbeddedInLui": false, "pattern": "A\\d{6}$", - "description": "The Signaling Gateway provides information on mammalian proteins involved in cellular signaling.", - "created": "2019-06-11T14:15:44.579+0000", - "modified": "2019-06-11T14:15:44.579+0000", + "prefix": "signaling-gateway", "resources": [ { - "id": 171, - "mirId": "MIR:00100073", - "urlPattern": "http://www.signaling-gateway.org/molecule/query?afcsid={$id}", - "name": "Signaling Gateway Molecule Pages", + "deprecated": false, + "deprecationDate": null, "description": "Signaling Gateway Molecule Pages", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "A001094", - "resourceHomeUrl": "http://www.signaling-gateway.org/molecule", + "id": 171, "institution": { - "id": 170, - "name": "UC San Diego", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 170, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "UC San Diego", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100073", + "name": "Signaling Gateway Molecule Pages", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.signaling-gateway.org/molecule", + "sampleId": "A001094", + "urlPattern": "http://www.signaling-gateway.org/molecule/query?afcsid={$id}" } ], - "sampleId": "A001094", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "A001094" }, { + "created": "2019-06-11T14:15:44.821+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The RESID Database of Protein Modifications is a comprehensive collection of annotations and structures for protein modifications including amino-terminal, carboxyl-terminal and peptide chain cross-link post-translational modifications.", "id": 172, - "prefix": "resid", "mirId": "MIR:00000046", + "modified": "2019-06-11T14:15:44.821+0000", "name": "RESID", + "namespaceEmbeddedInLui": false, "pattern": "^AA\\d{4}$", - "description": "The RESID Database of Protein Modifications is a comprehensive collection of annotations and structures for protein modifications including amino-terminal, carboxyl-terminal and peptide chain cross-link post-translational modifications.", - "created": "2019-06-11T14:15:44.821+0000", - "modified": "2019-06-11T14:15:44.821+0000", + "prefix": "resid", "resources": [ { - "id": 174, - "mirId": "MIR:00100653", - "urlPattern": "http://pir0.georgetown.edu/cgi-bin/resid?id={$id}", - "name": "RESID at Georgetown University", + "deprecated": false, + "deprecationDate": null, "description": "RESID at Georgetown University", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "AA0001", - "resourceHomeUrl": "http://pir0.georgetown.edu/resid/", + "id": 174, "institution": { - "id": 173, - "name": "Georgetown University Medical Center, Washington", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 173, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Georgetown University Medical Center, Washington", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100653", + "name": "RESID at Georgetown University", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://pir0.georgetown.edu/resid/", + "sampleId": "AA0001", + "urlPattern": "http://pir0.georgetown.edu/cgi-bin/resid?id={$id}" } ], - "sampleId": "AA0001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AA0001" }, { + "created": "2019-06-11T14:15:45.062+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Rat Genome Database seeks to collect, consolidate, and integrate rat genomic and genetic data with curated functional and physiological data and make these data widely available to the scientific community. This collection references genes.", "id": 175, - "prefix": "rgd", "mirId": "MIR:00000047", + "modified": "2019-06-11T14:15:45.062+0000", "name": "Rat Genome Database", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{4,}$", - "description": "Rat Genome Database seeks to collect, consolidate, and integrate rat genomic and genetic data with curated functional and physiological data and make these data widely available to the scientific community. This collection references genes.", - "created": "2019-06-11T14:15:45.062+0000", - "modified": "2019-06-11T14:15:45.062+0000", + "prefix": "rgd", "resources": [ { - "id": 177, - "mirId": "MIR:00100075", - "urlPattern": "http://rgd.mcw.edu/rgdweb/report/gene/main.html?id={$id}", - "name": "Rat Genome Database", + "deprecated": false, + "deprecationDate": null, "description": "Rat Genome Database", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2018", - "resourceHomeUrl": "http://rgd.mcw.edu/", + "id": 177, "institution": { - "id": 176, - "name": "Medical College of Wisconsin", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 176, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Medical College of Wisconsin", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100075", + "name": "Rat Genome Database", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://rgd.mcw.edu/", + "sampleId": "2018", + "urlPattern": "http://rgd.mcw.edu/rgdweb/report/gene/main.html?id={$id}" }, { - "id": 178, - "mirId": "MIR:00100905", - "urlPattern": "https://www.alliancegenome.org/gene/RGD:{$id}", - "name": "RGD through the Alliance of Genome Resources", + "deprecated": false, + "deprecationDate": null, "description": "RGD through the Alliance of Genome Resources", - "official": false, - "providerCode": "agr", - "sampleId": "2018", - "resourceHomeUrl": "https://www.alliancegenome.org", + "id": 178, "institution": { - "id": 103, - "name": "Alliance of Genome Resources", - "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", - "rorId": null, + "homeUrl": "https://www.alliancegenome.org", + "id": 103, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Alliance of Genome Resources", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100905", + "name": "RGD through the Alliance of Genome Resources", + "official": false, + "providerCode": "agr", + "resourceHomeUrl": "https://www.alliancegenome.org", + "sampleId": "2018", + "urlPattern": "https://www.alliancegenome.org/gene/RGD:{$id}" } ], - "sampleId": "2018", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2018" }, { + "created": "2019-06-11T14:15:45.813+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Arabidopsis Information Resource (TAIR) maintains a database of genetic and molecular biology data for the model higher plant Arabidopsis thaliana. This provides protein information for a given gene model and provides links to other sources such as UniProtKB and GenPept", "id": 179, - "prefix": "tair.protein", "mirId": "MIR:00000048", + "modified": "2019-06-11T14:15:45.813+0000", "name": "TAIR Protein", + "namespaceEmbeddedInLui": false, "pattern": "^AASequence:\\d{10}$", - "description": "The Arabidopsis Information Resource (TAIR) maintains a database of genetic and molecular biology data for the model higher plant Arabidopsis thaliana. This provides protein information for a given gene model and provides links to other sources such as UniProtKB and GenPept", - "created": "2019-06-11T14:15:45.813+0000", - "modified": "2019-06-11T14:15:45.813+0000", + "prefix": "tair.protein", "resources": [ { - "id": 181, - "mirId": "MIR:00100076", - "urlPattern": "http://arabidopsis.org/servlets/TairObject?accession={$id}", - "name": "The Arabidopsis Information Resource (TAIR) Protein", + "deprecated": false, + "deprecationDate": null, "description": "The Arabidopsis Information Resource (TAIR) Protein", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "AASequence:1009107926", - "resourceHomeUrl": "http://arabidopsis.org/index.jsp", + "id": 181, "institution": { - "id": 180, - "name": "Carnegie Institution of Washington Department of Plant Biology and National Center for Genome Resources (NCGR)", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 180, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Carnegie Institution of Washington Department of Plant Biology and National Center for Genome Resources (NCGR)", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100076", + "name": "The Arabidopsis Information Resource (TAIR) Protein", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://arabidopsis.org/index.jsp", + "sampleId": "AASequence:1009107926", + "urlPattern": "http://arabidopsis.org/servlets/TairObject?accession={$id}" } ], - "sampleId": "AASequence:1009107926", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AASequence:1009107926" }, { + "created": "2019-06-11T14:15:46.061+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Arabidopsis Information Resource (TAIR) maintains a database of genetic and molecular biology data for the model higher plant Arabidopsis thaliana. This is the reference gene model for a given locus.", "id": 182, - "prefix": "tair.gene", "mirId": "MIR:00000049", + "modified": "2019-06-11T14:15:46.061+0000", "name": "TAIR Gene", + "namespaceEmbeddedInLui": false, "pattern": "^Gene:\\d{7}$", - "description": "The Arabidopsis Information Resource (TAIR) maintains a database of genetic and molecular biology data for the model higher plant Arabidopsis thaliana. This is the reference gene model for a given locus.", - "created": "2019-06-11T14:15:46.061+0000", - "modified": "2019-06-11T14:15:46.061+0000", + "prefix": "tair.gene", "resources": [ { - "id": 183, - "mirId": "MIR:00100077", - "urlPattern": "http://arabidopsis.org/servlets/TairObject?accession={$id}", - "name": "The Arabidopsis Information Resource (TAIR) Gene", + "deprecated": false, + "deprecationDate": null, "description": "The Arabidopsis Information Resource (TAIR) Gene", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Gene:2200934", - "resourceHomeUrl": "http://arabidopsis.org/index.jsp", + "id": 183, "institution": { - "id": 180, - "name": "Carnegie Institution of Washington Department of Plant Biology and National Center for Genome Resources (NCGR)", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 180, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Carnegie Institution of Washington Department of Plant Biology and National Center for Genome Resources (NCGR)", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100077", + "name": "The Arabidopsis Information Resource (TAIR) Gene", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://arabidopsis.org/index.jsp", + "sampleId": "Gene:2200934", + "urlPattern": "http://arabidopsis.org/servlets/TairObject?accession={$id}" } ], - "sampleId": "Gene:2200934", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Gene:2200934" }, { + "created": "2019-06-11T14:15:46.274+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Arabidopsis Information Resource (TAIR) maintains a database of genetic and molecular biology data for the model higher plant Arabidopsis thaliana. The name of a Locus is unique and used by TAIR, TIGR, and MIPS.", "id": 184, - "prefix": "tair.locus", "mirId": "MIR:00000050", + "modified": "2019-06-11T14:15:46.274+0000", "name": "TAIR Locus", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{7}$", - "description": "The Arabidopsis Information Resource (TAIR) maintains a database of genetic and molecular biology data for the model higher plant Arabidopsis thaliana. The name of a Locus is unique and used by TAIR, TIGR, and MIPS.", - "created": "2019-06-11T14:15:46.274+0000", - "modified": "2019-06-11T14:15:46.274+0000", + "prefix": "tair.locus", "resources": [ { - "id": 185, - "mirId": "MIR:00100078", - "urlPattern": "http://www.arabidopsis.org/servlets/TairObject?accession=Locus:{$id}", - "name": "The Arabidopsis Information Resource (TAIR) Locus", + "deprecated": false, + "deprecationDate": null, "description": "The Arabidopsis Information Resource (TAIR) Locus", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2200950", - "resourceHomeUrl": "http://arabidopsis.org/index.jsp", + "id": 185, "institution": { - "id": 180, - "name": "Carnegie Institution of Washington Department of Plant Biology and National Center for Genome Resources (NCGR)", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 180, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Carnegie Institution of Washington Department of Plant Biology and National Center for Genome Resources (NCGR)", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100078", + "name": "The Arabidopsis Information Resource (TAIR) Locus", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://arabidopsis.org/index.jsp", + "sampleId": "2200950", + "urlPattern": "http://www.arabidopsis.org/servlets/TairObject?accession=Locus:{$id}" } ], - "sampleId": "2200950", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2200950" }, { + "created": "2019-06-11T14:15:46.469+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Human Metabolome Database (HMDB) is a database containing detailed information about small molecule metabolites found in the human body.It contains or links 1) chemical 2) clinical and 3) molecular biology/biochemistry data.", "id": 186, - "prefix": "hmdb", "mirId": "MIR:00000051", + "modified": "2019-06-11T14:15:46.469+0000", "name": "HMDB", + "namespaceEmbeddedInLui": false, "pattern": "^HMDB\\d+$", - "description": "The Human Metabolome Database (HMDB) is a database containing detailed information about small molecule metabolites found in the human body.It contains or links 1) chemical 2) clinical and 3) molecular biology/biochemistry data.", - "created": "2019-06-11T14:15:46.469+0000", - "modified": "2019-06-11T14:15:46.469+0000", + "prefix": "hmdb", "resources": [ { - "id": 188, - "mirId": "MIR:00100079", - "urlPattern": "http://www.hmdb.ca/metabolites/{$id}", - "name": "The Human Metabolome Database", + "deprecated": false, + "deprecationDate": null, "description": "The Human Metabolome Database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "HMDB00001", - "resourceHomeUrl": "http://www.hmdb.ca/", + "id": 188, "institution": { - "id": 334, - "name": "University of Alberta", - "homeUrl": "https://www.ualberta.ca", "description": "The University of Alberta in Edmonton is one of Canada's top teaching and research universities, with an international reputation for excellence across the humanities, sciences, creative arts, business, engineering and health sciences.", - "rorId": "https://ror.org/0160cpw27", + "homeUrl": "https://www.ualberta.ca", + "id": 334, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "University of Alberta", + "rorId": "https://ror.org/0160cpw27" }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100079", + "name": "The Human Metabolome Database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.hmdb.ca/", + "sampleId": "HMDB00001", + "urlPattern": "http://www.hmdb.ca/metabolites/{$id}" } ], - "sampleId": "HMDB00001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "HMDB00001" }, { + "created": "2019-06-11T14:15:46.708+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The LIPID MAPS Lipid Classification System is comprised of eight lipid categories, each with its own subclassification hierarchy. All lipids in the LIPID MAPS Structure Database (LMSD) have been classified using this system and have been assigned LIPID MAPS ID's which reflects their position in the classification hierarchy.", "id": 189, - "prefix": "lipidmaps", "mirId": "MIR:00000052", + "modified": "2019-06-11T14:15:46.708+0000", "name": "LIPID MAPS", + "namespaceEmbeddedInLui": false, "pattern": "^LM(FA|GL|GP|SP|ST|PR|SL|PK)[0-9]{4}([0-9a-zA-Z]{4,6})?$", - "description": "The LIPID MAPS Lipid Classification System is comprised of eight lipid categories, each with its own subclassification hierarchy. All lipids in the LIPID MAPS Structure Database (LMSD) have been classified using this system and have been assigned LIPID MAPS ID's which reflects their position in the classification hierarchy.", - "created": "2019-06-11T14:15:46.708+0000", - "modified": "2019-06-11T14:15:46.708+0000", + "prefix": "lipidmaps", "resources": [ { - "id": 191, - "mirId": "MIR:00100080", - "urlPattern": "http://www.lipidmaps.org/data/LMSDRecord.php?LMID={$id}", - "name": "Department of Bioengineering and the San Diego Supercomputer Center", + "deprecated": false, + "deprecationDate": null, "description": "Department of Bioengineering and the San Diego Supercomputer Center", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "LMPR0102010012", - "resourceHomeUrl": "http://www.lipidmaps.org", + "id": 191, "institution": { - "id": 190, - "name": "University of California, San Diego", - "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", - "rorId": "https://ror.org/0168r3w48", + "homeUrl": "https://ucsd.edu/", + "id": 190, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of California, San Diego", + "rorId": "https://ror.org/0168r3w48" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100080", + "name": "Department of Bioengineering and the San Diego Supercomputer Center", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.lipidmaps.org", + "sampleId": "LMPR0102010012", + "urlPattern": "http://www.lipidmaps.org/data/LMSDRecord.php?LMID={$id}" }, { - "id": 2458, - "mirId": "MIR:00000781", - "urlPattern": "https://scholia.toolforge.org/lipidmaps/{$id}", - "name": "Scholia", + "deprecated": false, + "deprecationDate": null, "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", - "official": false, - "providerCode": "scholia", - "sampleId": "LMFA00000007", - "resourceHomeUrl": "https://scholia.toolforge.org/", + "id": 2458, "institution": { - "id": 283, - "name": "Maastricht University", - "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", - "rorId": "https://ror.org/02jz4aj89", + "homeUrl": "https://www.maastrichtuniversity.nl", + "id": 283, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "Maastricht University", + "rorId": "https://ror.org/02jz4aj89" }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000781", + "name": "Scholia", + "official": false, + "providerCode": "scholia", + "resourceHomeUrl": "https://scholia.toolforge.org/", + "sampleId": "LMFA00000007", + "urlPattern": "https://scholia.toolforge.org/lipidmaps/{$id}" } ], - "sampleId": "LMPR0102010012", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "LMPR0102010012" }, { + "created": "2019-06-11T14:15:46.969+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PeptideAtlas Project provides a publicly accessible database of peptides identified in tandem mass spectrometry proteomics studies and software tools.", "id": 192, - "prefix": "peptideatlas", "mirId": "MIR:00000053", + "modified": "2019-06-11T14:15:46.969+0000", "name": "PeptideAtlas", + "namespaceEmbeddedInLui": false, "pattern": "^PAp[0-9]{8}$", - "description": "The PeptideAtlas Project provides a publicly accessible database of peptides identified in tandem mass spectrometry proteomics studies and software tools.", - "created": "2019-06-11T14:15:46.969+0000", - "modified": "2019-06-11T14:15:46.969+0000", + "prefix": "peptideatlas", "resources": [ { - "id": 194, - "mirId": "MIR:00100081", - "urlPattern": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/Summarize_Peptide?query=QUERY&searchForThis={$id}", - "name": "PeptideAtlas at ISB", + "deprecated": false, + "deprecationDate": null, "description": "PeptideAtlas at ISB", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PAp00000009", - "resourceHomeUrl": "http://www.peptideatlas.org/", + "id": 194, "institution": { - "id": 193, - "name": "Institute for Systems Biology", - "homeUrl": "https://isbscience.org/", "description": "ISB was created in 2000 as the first-ever institute dedicated to systems biology.", - "rorId": "https://ror.org/02tpgw303", + "homeUrl": "https://isbscience.org/", + "id": 193, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Institute for Systems Biology", + "rorId": "https://ror.org/02tpgw303" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100081", + "name": "PeptideAtlas at ISB", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.peptideatlas.org/", + "sampleId": "PAp00000009", + "urlPattern": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/Summarize_Peptide?query=QUERY&searchForThis={$id}" } ], - "sampleId": "PAp00000009", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PAp00000009" }, { + "created": "2019-06-11T14:15:47.245+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Gene Expression Omnibus (GEO) is a gene expression repository providing a curated, online resource for gene expression data browsing, query and retrieval.", "id": 195, - "prefix": "geo", "mirId": "MIR:00000054", + "modified": "2019-06-11T14:15:47.245+0000", "name": "GEO", + "namespaceEmbeddedInLui": false, "pattern": "^G(PL|SM|SE|DS)\\d+$", - "description": "The Gene Expression Omnibus (GEO) is a gene expression repository providing a curated, online resource for gene expression data browsing, query and retrieval.", - "created": "2019-06-11T14:15:47.245+0000", - "modified": "2019-06-11T14:15:47.245+0000", + "prefix": "geo", "resources": [ { - "id": 196, - "mirId": "MIR:00100082", - "urlPattern": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc={$id}", - "name": "Gene Expression Omnibus at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "Gene Expression Omnibus at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "GDS1234", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/geo/", + "id": 196, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100082", + "name": "Gene Expression Omnibus at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/geo/", + "sampleId": "GDS1234", + "urlPattern": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc={$id}" } ], - "sampleId": "GDS1234", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "GDS1234" }, { + "created": "2019-06-11T14:15:47.447+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Evidence codes can be used to specify the type of supporting evidence for a piece of knowledge. This allows inference of a 'level of support' between an entity and an annotation made to an entity.", "id": 197, - "prefix": "eco", "mirId": "MIR:00000055", + "modified": "2019-06-11T14:15:47.447+0000", "name": "Evidence Code Ontology", + "namespaceEmbeddedInLui": true, "pattern": "ECO:\\d{7}$", - "description": "Evidence codes can be used to specify the type of supporting evidence for a piece of knowledge. This allows inference of a 'level of support' between an entity and an annotation made to an entity.", - "created": "2019-06-11T14:15:47.447+0000", - "modified": "2019-06-11T14:15:47.447+0000", + "prefix": "eco", "resources": [ { - "id": 198, - "mirId": "MIR:00100083", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/eco/terms?obo_id=ECO:{$id}", - "name": "Evidence Codes via the Ontology Lookup Service (OLS)", + "deprecated": false, + "deprecationDate": null, "description": "Evidence Codes via the Ontology Lookup Service (OLS)", - "official": false, - "providerCode": "ols", - "sampleId": "0000006", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/eco", + "id": 198, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 199, - "mirId": "MIR:00100235", - "urlPattern": "http://purl.bioontology.org/ontology/ECO/ECO:{$id}", - "name": "Evidence Code Ontology through BioPortal", - "description": "Evidence Code Ontology through BioPortal", + "mirId": "MIR:00100083", + "name": "Evidence Codes via the Ontology Lookup Service (OLS)", "official": false, - "providerCode": "bptl", + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/eco", "sampleId": "0000006", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/ECO", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/eco/terms?obo_id=ECO:{$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "Evidence Code Ontology through BioPortal", + "id": 199, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100235", + "name": "Evidence Code Ontology through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/ECO", + "sampleId": "0000006", + "urlPattern": "http://purl.bioontology.org/ontology/ECO/ECO:{$id}" } ], - "sampleId": "0000006", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0000006" }, { + "created": "2019-06-11T14:15:47.775+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Proteomics Standards Initiative modification ontology (PSI-MOD) aims to define a concensus nomenclature and ontology reconciling, in a hierarchical representation, the complementary descriptions of residue modifications.", "id": 200, - "prefix": "mod", "mirId": "MIR:00000056", + "modified": "2019-06-11T14:15:47.775+0000", "name": "Protein Modification Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^MOD:\\d{5}", - "description": "The Proteomics Standards Initiative modification ontology (PSI-MOD) aims to define a concensus nomenclature and ontology reconciling, in a hierarchical representation, the complementary descriptions of residue modifications.", - "created": "2019-06-11T14:15:47.775+0000", - "modified": "2019-06-11T14:15:47.775+0000", + "prefix": "mod", "resources": [ { - "id": 201, - "mirId": "MIR:00100084", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/mod/terms?obo_id=MOD:{$id}", - "name": "Protein modifications ontology via the Ontology Lookup Service (OLS)", + "deprecated": false, + "deprecationDate": null, "description": "Protein modifications ontology via the Ontology Lookup Service (OLS)", - "official": false, - "providerCode": "ols", - "sampleId": "00001", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/mod", + "id": 201, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100084", + "name": "Protein modifications ontology via the Ontology Lookup Service (OLS)", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/mod", + "sampleId": "00001", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/mod/terms?obo_id=MOD:{$id}" }, { - "id": 202, - "mirId": "MIR:00100239", - "urlPattern": "http://bioportal.bioontology.org/ontologies/1041?p=terms&conceptid=MOD:{$id}", - "name": "Protein modifications ontology through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "Protein modifications ontology through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "00001", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PSIMOD", + "id": 202, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100239", + "name": "Protein modifications ontology through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PSIMOD", + "sampleId": "00001", + "urlPattern": "http://bioportal.bioontology.org/ontologies/1041?p=terms&conceptid=MOD:{$id}" } ], - "sampleId": "00001", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "00001" }, { + "created": "2019-06-11T14:15:48.132+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Curated biochemical pathways for Saccharomyces cerevisiae at Saccharomyces genome database (SGD).", "id": 203, - "prefix": "sgd.pathways", "mirId": "MIR:00000057", + "modified": "2019-06-11T14:15:48.132+0000", "name": "Saccharomyces genome database pathways", + "namespaceEmbeddedInLui": false, "pattern": "^PWY\\w{2}\\-\\d{3}$", - "description": "Curated biochemical pathways for Saccharomyces cerevisiae at Saccharomyces genome database (SGD).", - "created": "2019-06-11T14:15:48.132+0000", - "modified": "2019-06-11T14:15:48.132+0000", + "prefix": "sgd.pathways", "resources": [ { - "id": 205, - "mirId": "MIR:00100085", - "urlPattern": "http://pathway.yeastgenome.org/YEAST/new-image?type=PATHWAY&object={$id}", - "name": "Saccharomyces cerevisiae pathways at SGD.", + "deprecated": false, + "deprecationDate": null, "description": "Saccharomyces cerevisiae pathways at SGD.", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PWY3O-214", - "resourceHomeUrl": "http://pathway.yeastgenome.org/", + "id": 205, "institution": { - "id": 204, - "name": "SGD, Stanford University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 204, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "SGD, Stanford University", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100085", + "name": "Saccharomyces cerevisiae pathways at SGD.", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://pathway.yeastgenome.org/", + "sampleId": "PWY3O-214", + "urlPattern": "http://pathway.yeastgenome.org/YEAST/new-image?type=PATHWAY&object={$id}" } ], - "sampleId": "PWY3O-214", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PWY3O-214" }, { + "created": "2019-06-11T14:15:48.429+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BioGRID is a database of physical and genetic interactions in Saccharomyces cerevisiae, Caenorhabditis elegans, Drosophila melanogaster, Homo sapiens, and Schizosaccharomyces pombe.", "id": 206, - "prefix": "biogrid", "mirId": "MIR:00000058", + "modified": "2019-06-11T14:15:48.429+0000", "name": "BioGRID", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "BioGRID is a database of physical and genetic interactions in Saccharomyces cerevisiae, Caenorhabditis elegans, Drosophila melanogaster, Homo sapiens, and Schizosaccharomyces pombe.", - "created": "2019-06-11T14:15:48.429+0000", - "modified": "2019-06-11T14:15:48.429+0000", + "prefix": "biogrid", "resources": [ { - "id": 208, - "mirId": "MIR:00100086", - "urlPattern": "http://thebiogrid.org/{$id}", - "name": "BioGRID database of physical and genetic interactions", + "deprecated": false, + "deprecationDate": null, "description": "BioGRID database of physical and genetic interactions", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "31623", - "resourceHomeUrl": "http://thebiogrid.org/", + "id": 208, "institution": { - "id": 207, - "name": "Ontario Cancer Institute", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 207, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "Ontario Cancer Institute", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100086", + "name": "BioGRID database of physical and genetic interactions", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://thebiogrid.org/", + "sampleId": "31623", + "urlPattern": "http://thebiogrid.org/{$id}" } ], - "sampleId": "31623", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "31623" }, { + "created": "2019-06-11T14:15:48.677+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The MEROPS database is an information resource for peptidases (also termed proteases, proteinases and proteolytic enzymes) and the proteins that inhibit them.", "id": 209, - "prefix": "merops", "mirId": "MIR:00000059", + "modified": "2019-06-11T14:15:48.677+0000", "name": "MEROPS", + "namespaceEmbeddedInLui": false, "pattern": "^[SCTAGMNU]\\d{2}\\.([AB]\\d{2}|\\d{3})$", - "description": "The MEROPS database is an information resource for peptidases (also termed proteases, proteinases and proteolytic enzymes) and the proteins that inhibit them.", - "created": "2019-06-11T14:15:48.677+0000", - "modified": "2019-06-11T14:15:48.677+0000", + "prefix": "merops", "resources": [ { - "id": 211, - "mirId": "MIR:00100087", - "urlPattern": "http://merops.sanger.ac.uk/cgi-bin/pepsum?mid={$id}", - "name": "MEROPS database at Sanger Institute", + "deprecated": false, + "deprecationDate": null, "description": "MEROPS database at Sanger Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "S01.001", - "resourceHomeUrl": "http://merops.sanger.ac.uk/index.htm", + "id": 211, "institution": { - "id": 210, - "name": "Wellcome Trust Sanger Institute", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 210, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Wellcome Trust Sanger Institute", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100087", + "name": "MEROPS database at Sanger Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://merops.sanger.ac.uk/index.htm", + "sampleId": "S01.001", + "urlPattern": "http://merops.sanger.ac.uk/cgi-bin/pepsum?mid={$id}" } ], - "sampleId": "S01.001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "S01.001" }, { + "created": "2019-06-11T14:15:48.923+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. This collection references groups of genes that have been organised as families.", "id": 212, - "prefix": "panther.family", "mirId": "MIR:00000060", + "modified": "2019-06-11T14:15:48.923+0000", "name": "PANTHER Family", + "namespaceEmbeddedInLui": false, "pattern": "^PTHR\\d{5}(\\:SF\\d{1,3})?$", - "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. This collection references groups of genes that have been organised as families.", - "created": "2019-06-11T14:15:48.923+0000", - "modified": "2019-06-11T14:15:48.923+0000", + "prefix": "panther.family", "resources": [ { - "id": 213, - "mirId": "MIR:00100088", - "urlPattern": "http://www.pantherdb.org/panther/family.do?clsAccession={$id}", - "name": "PANTHER Family at USC (Los Angeles)", + "deprecated": false, + "deprecationDate": null, "description": "PANTHER Family at USC (Los Angeles)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PTHR12345", - "resourceHomeUrl": "http://www.pantherdb.org/", + "id": 213, "institution": { - "id": 94, - "name": "Keck School of Medicine, University of Southern California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 94, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Keck School of Medicine, University of Southern California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100088", + "name": "PANTHER Family at USC (Los Angeles)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.pantherdb.org/", + "sampleId": "PTHR12345", + "urlPattern": "http://www.pantherdb.org/panther/family.do?clsAccession={$id}" } ], - "sampleId": "PTHR12345", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PTHR12345" }, { + "created": "2019-06-11T14:15:49.123+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PRINTS is a compendium of protein fingerprints. A fingerprint is a group of conserved motifs used to characterise a protein family; its diagnostic power is refined by iterative scanning of a SWISS-PROT/TrEMBL composite. Usually the motifs do not overlap, but are separated along a sequence, though they may be contiguous in 3D-space. Fingerprints can encode protein folds and functionalities more flexibly and powerfully than can single motifs, full diagnostic potency deriving from the mutual context provided by motif neighbours.", "id": 214, - "prefix": "prints", "mirId": "MIR:00000061", + "modified": "2019-06-11T14:15:49.123+0000", "name": "PRINTS", + "namespaceEmbeddedInLui": false, "pattern": "^PR\\d{5}$", - "description": "PRINTS is a compendium of protein fingerprints. A fingerprint is a group of conserved motifs used to characterise a protein family; its diagnostic power is refined by iterative scanning of a SWISS-PROT/TrEMBL composite. Usually the motifs do not overlap, but are separated along a sequence, though they may be contiguous in 3D-space. Fingerprints can encode protein folds and functionalities more flexibly and powerfully than can single motifs, full diagnostic potency deriving from the mutual context provided by motif neighbours.", - "created": "2019-06-11T14:15:49.123+0000", - "modified": "2019-06-11T14:15:49.123+0000", + "prefix": "prints", "resources": [ { - "id": 216, - "mirId": "MIR:00100089", - "urlPattern": "http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?prints_accn={$id}&display_opts=Prints&category=None&queryform=false®expr=off", - "name": "PRINTS through SPRINT", + "deprecated": false, + "deprecationDate": null, "description": "PRINTS through SPRINT", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PR00001", - "resourceHomeUrl": "http://www.bioinf.manchester.ac.uk/dbbrowser/sprint/", + "id": 216, "institution": { - "id": 215, - "name": "University of Manchester", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 215, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "University of Manchester", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100089", + "name": "PRINTS through SPRINT", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.bioinf.manchester.ac.uk/dbbrowser/sprint/", + "sampleId": "PR00001", + "urlPattern": "http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?prints_accn={$id}&display_opts=Prints&category=None&queryform=false®expr=off" } ], - "sampleId": "PR00001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PR00001" }, { + "created": "2019-06-11T14:15:49.385+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Ligand Expo is a data resource for finding information about small molecules bound to proteins and nucleic acids.", "id": 217, - "prefix": "ligandexpo", "mirId": "MIR:00000062", + "modified": "2019-06-11T14:15:49.385+0000", "name": "Ligand Expo", + "namespaceEmbeddedInLui": false, "pattern": "^(\\w){3}$", - "description": "Ligand Expo is a data resource for finding information about small molecules bound to proteins and nucleic acids.", - "created": "2019-06-11T14:15:49.385+0000", - "modified": "2019-06-11T14:15:49.385+0000", + "prefix": "ligandexpo", "resources": [ { - "id": 218, - "mirId": "MIR:00100090", - "urlPattern": "http://ligand-depot.rutgers.edu/pyapps/ldHandler.py?formid=cc-index-search&target={$id}&operation=ccid", - "name": "Ligand Expo at RutgersRCSB PDB", + "deprecated": false, + "deprecationDate": null, "description": "Ligand Expo at RutgersRCSB PDB", - "official": false, - "providerCode": "rcsb", - "sampleId": "ABC", - "resourceHomeUrl": "http://ligand-depot.rutgers.edu/index.html", + "id": 218, "institution": { - "id": 79, - "name": "Rutgers, The State University of New Jersey", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 79, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Rutgers, The State University of New Jersey", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100090", + "name": "Ligand Expo at RutgersRCSB PDB", + "official": false, + "providerCode": "rcsb", + "resourceHomeUrl": "http://ligand-depot.rutgers.edu/index.html", + "sampleId": "ABC", + "urlPattern": "http://ligand-depot.rutgers.edu/pyapps/ldHandler.py?formid=cc-index-search&target={$id}&operation=ccid" }, { - "id": 219, - "mirId": "MIR:00100615", - "urlPattern": "http://ligand-expo.rcsb.org/pyapps/ldHandler.py?formid=cc-index-search&target={$id}&operation=ccid", - "name": "Ligand Expo at Rutgers", + "deprecated": false, + "deprecationDate": null, "description": "Ligand Expo at Rutgers", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ABC", - "resourceHomeUrl": "http://ligand-expo.rcsb.org/", + "id": 219, "institution": { - "id": 79, - "name": "Rutgers, The State University of New Jersey", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 79, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Rutgers, The State University of New Jersey", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100615", + "name": "Ligand Expo at Rutgers", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://ligand-expo.rcsb.org/", + "sampleId": "ABC", + "urlPattern": "http://ligand-expo.rcsb.org/pyapps/ldHandler.py?formid=cc-index-search&target={$id}&operation=ccid" } ], - "sampleId": "ABC", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ABC" }, { + "created": "2019-06-11T14:15:49.786+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ACLAME is a database dedicated to the collection and classification of mobile genetic elements (MGEs) from various sources, comprising all known phage genomes, plasmids and transposons.", "id": 220, - "prefix": "mge", "mirId": "MIR:00000063", + "modified": "2019-06-11T14:15:49.786+0000", "name": "Aclame", + "namespaceEmbeddedInLui": true, "pattern": "^mge:\\d+$", - "description": "ACLAME is a database dedicated to the collection and classification of mobile genetic elements (MGEs) from various sources, comprising all known phage genomes, plasmids and transposons.", - "created": "2019-06-11T14:15:49.786+0000", - "modified": "2019-06-11T14:15:49.786+0000", + "prefix": "mge", "resources": [ { - "id": 222, - "mirId": "MIR:00100091", - "urlPattern": "http://aclame.ulb.ac.be/perl/Aclame/Genomes/mge_view.cgi?view=info&id=mge:{$id}", - "name": "Aclame database of mobile genetic elements", + "deprecated": false, + "deprecationDate": null, "description": "Aclame database of mobile genetic elements", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2", - "resourceHomeUrl": "http://aclame.ulb.ac.be/", + "id": 222, "institution": { - "id": 221, - "name": "Service de Conformation de Macromolécules Biologiques et de Bioinformatique, Université Libre de Bruxelles", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 221, "location": { "countryCode": "BE", "countryName": "Belgium" - } + }, + "name": "Service de Conformation de Macromol\u00e9cules Biologiques et de Bioinformatique, Universit\u00e9 Libre de Bruxelles", + "rorId": null }, "location": { "countryCode": "BE", "countryName": "Belgium" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100091", + "name": "Aclame database of mobile genetic elements", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://aclame.ulb.ac.be/", + "sampleId": "2", + "urlPattern": "http://aclame.ulb.ac.be/perl/Aclame/Genomes/mge_view.cgi?view=info&id=mge:{$id}" } ], - "sampleId": "2", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "2" }, { + "created": "2019-06-11T14:15:50.037+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The International Standard Book Number (ISBN) is for identifying printed books.", "id": 223, - "prefix": "isbn", "mirId": "MIR:00000064", + "modified": "2019-06-11T14:15:50.037+0000", "name": "ISBN", + "namespaceEmbeddedInLui": false, "pattern": "^(ISBN)?(-13|-10)?[:]?[ ]?(\\d{2,3}[ -]?)?\\d{1,5}[ -]?\\d{1,7}[ -]?\\d{1,6}[ -]?(\\d|X)$", - "description": "The International Standard Book Number (ISBN) is for identifying printed books.", - "created": "2019-06-11T14:15:50.037+0000", - "modified": "2019-06-11T14:15:50.037+0000", + "prefix": "isbn", "resources": [ { - "id": 225, - "mirId": "MIR:00100092", - "urlPattern": "http://isbndb.com/search-all.html?kw={$id}", - "name": "ISBNDB - ISBN Database", + "deprecated": false, + "deprecationDate": null, "description": "ISBNDB - ISBN Database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "9781584885658", - "resourceHomeUrl": "http://isbndb.com/", + "id": 225, "institution": { - "id": 224, - "name": "ISNBdb project, San Gabriel, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 224, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "ISNBdb project, San Gabriel, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 227, - "mirId": "MIR:00100093", - "urlPattern": "http://www.worldcat.org/isbn/{$id}", - "name": "ISBN database at WorldCat", - "description": "ISBN database at WorldCat", + "mirId": "MIR:00100092", + "name": "ISBNDB - ISBN Database", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://isbndb.com/", "sampleId": "9781584885658", - "resourceHomeUrl": "http://www.worldcat.org/", + "urlPattern": "http://isbndb.com/search-all.html?kw={$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "ISBN database at WorldCat", + "id": 227, "institution": { - "id": 226, - "name": "OCLC Online Computer Library Center, Inc. Ohio", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 226, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "OCLC Online Computer Library Center, Inc. Ohio", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100093", + "name": "ISBN database at WorldCat", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.worldcat.org/", + "sampleId": "9781584885658", + "urlPattern": "http://www.worldcat.org/isbn/{$id}" } ], - "sampleId": "9781584885658", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "9781584885658" }, { + "created": "2019-06-11T14:15:50.454+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PRIDE PRoteomics IDEntifications database is a centralized, standards compliant, public data repository that provides protein and peptide identifications together with supporting evidence. This collection references experiments and assays.", "id": 228, - "prefix": "pride", "mirId": "MIR:00000065", + "modified": "2019-06-11T14:15:50.454+0000", "name": "PRIDE", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The PRIDE PRoteomics IDEntifications database is a centralized, standards compliant, public data repository that provides protein and peptide identifications together with supporting evidence. This collection references experiments and assays.", - "created": "2019-06-11T14:15:50.454+0000", - "modified": "2019-06-11T14:15:50.454+0000", + "prefix": "pride", "resources": [ { - "id": 229, - "mirId": "MIR:00100094", - "urlPattern": "https://www.ebi.ac.uk/pride/archive/assays/{$id}", - "name": "PRIDE at EBI", + "deprecated": false, + "deprecationDate": null, "description": "PRIDE at EBI", - "official": true, - "providerCode": "ebi", - "sampleId": "1", - "resourceHomeUrl": "https://www.ebi.ac.uk/pride/", + "id": 229, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100094", + "name": "PRIDE at EBI", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/pride/", + "sampleId": "1", + "urlPattern": "https://www.ebi.ac.uk/pride/archive/assays/{$id}" } ], - "sampleId": "1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1" }, { + "created": "2019-06-11T14:15:50.652+0000", + "deprecated": false, + "deprecationDate": null, + "description": "3DMET is a database collecting three-dimensional structures of natural metabolites.", "id": 230, - "prefix": "3dmet", "mirId": "MIR:00000066", + "modified": "2019-06-11T14:15:50.652+0000", "name": "3DMET", + "namespaceEmbeddedInLui": false, "pattern": "^B\\d{5}$", - "description": "3DMET is a database collecting three-dimensional structures of natural metabolites.", - "created": "2019-06-11T14:15:50.652+0000", - "modified": "2019-06-11T14:15:50.652+0000", + "prefix": "3dmet", "resources": [ { - "id": 232, - "mirId": "MIR:00100095", - "urlPattern": "http://www.3dmet.dna.affrc.go.jp/cgi/show_data.php?acc={$id}", - "name": "3DMET database", + "deprecated": false, + "deprecationDate": null, "description": "3DMET database", - "official": false, - "providerCode": "nias", - "sampleId": "B00162", - "resourceHomeUrl": "http://www.3dmet.dna.affrc.go.jp/", + "id": 232, "institution": { - "id": 231, - "name": "National Institute of Agrobiological Sciences", - "homeUrl": "http://www.naro.affrc.go.jp/archive/nias/index_e.html", "description": "The National Institute of Agrobiological Sciences (NIAS) is the largest agricultural research institute in Japan for basic life sciences. As a major research institute of the Ministry of Agriculture, Forestry and Fisheries (MAFF), it was formerly known as the National Institute of Agrobiological Resources (NIAR) until it was re-established as an independent administrative institution in April 1, 2001. The institute focuses on understanding the biological phenomena of agriculturally important plants, insects, microbes and animals to create innovative technologies, and eventually contribute to the solution of global issues such as food shortage due to rapid population growth and environmental problems due to climate change", - "rorId": "https://ror.org/01786mp71", + "homeUrl": "http://www.naro.affrc.go.jp/archive/nias/index_e.html", + "id": 231, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "National Institute of Agrobiological Sciences", + "rorId": "https://ror.org/01786mp71" }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100095", + "name": "3DMET database", + "official": false, + "providerCode": "nias", + "resourceHomeUrl": "http://www.3dmet.dna.affrc.go.jp/", + "sampleId": "B00162", + "urlPattern": "http://www.3dmet.dna.affrc.go.jp/cgi/show_data.php?acc={$id}" } ], - "sampleId": "B00162", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "B00162" }, { + "created": "2019-06-11T14:15:50.895+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Foundational Model of Anatomy Ontology (FMA) is a biomedical informatics ontology. It is concerned with the representation of classes or types and relationships necessary for the symbolic representation of the phenotypic structure of the human body. Specifically, the FMA is a domain ontology that represents a coherent body of explicit declarative knowledge about human anatomy.", "id": 233, - "prefix": "fma", "mirId": "MIR:00000067", + "modified": "2019-06-11T14:15:50.895+0000", "name": "FMA", + "namespaceEmbeddedInLui": true, "pattern": "^FMA:\\d+$", - "description": "The Foundational Model of Anatomy Ontology (FMA) is a biomedical informatics ontology. It is concerned with the representation of classes or types and relationships necessary for the symbolic representation of the phenotypic structure of the human body. Specifically, the FMA is a domain ontology that represents a coherent body of explicit declarative knowledge about human anatomy.", - "created": "2019-06-11T14:15:50.895+0000", - "modified": "2019-06-11T14:15:50.895+0000", + "prefix": "fma", "resources": [ { - "id": 234, - "mirId": "MIR:00100097", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/fma/terms?obo_id=FMA:{$id}", - "name": "Foundational Model of Anatomy via Ontology Lookup Service (OLS)", + "deprecated": false, + "deprecationDate": null, "description": "Foundational Model of Anatomy via Ontology Lookup Service (OLS)", - "official": false, - "providerCode": "ols", - "sampleId": "67112", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/fma/", + "id": 234, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100097", + "name": "Foundational Model of Anatomy via Ontology Lookup Service (OLS)", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/fma/", + "sampleId": "67112", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/fma/terms?obo_id=FMA:{$id}" }, { - "id": 235, - "mirId": "MIR:00100236", - "urlPattern": "http://purl.bioontology.org/ontology/FMA_subset/FMA:{$id}", - "name": "Foundational Model of Anatomy through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "Foundational Model of Anatomy through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "67112", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/FMA", + "id": 235, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null - } - ], - "sampleId": "67112", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100236", + "name": "Foundational Model of Anatomy through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/FMA", + "sampleId": "67112", + "urlPattern": "http://purl.bioontology.org/ontology/FMA_subset/FMA:{$id}" + } + ], + "sampleId": "67112" }, { + "created": "2019-06-11T14:15:51.252+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MatrixDB stores experimentally determined interactions involving at least one extracellular biomolecule. It includes mostly protein-protein and protein-glycosaminoglycan interactions, as well as interactions with lipids and cations.", "id": 236, - "prefix": "matrixdb.association", "mirId": "MIR:00000068", + "modified": "2019-06-11T14:15:51.252+0000", "name": "MatrixDB", + "namespaceEmbeddedInLui": false, "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])_.*|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9]_.*)|(GAG_.*)|(MULT_.*)|(PFRAG_.*)|(LIP_.*)|(CAT_.*)$", - "description": "MatrixDB stores experimentally determined interactions involving at least one extracellular biomolecule. It includes mostly protein-protein and protein-glycosaminoglycan interactions, as well as interactions with lipids and cations.", - "created": "2019-06-11T14:15:51.252+0000", - "modified": "2019-06-11T14:15:51.252+0000", + "prefix": "matrixdb.association", "resources": [ { - "id": 238, - "mirId": "MIR:00100098", - "urlPattern": "http://matrixdb.univ-lyon1.fr//cgi-bin/current/newPort?type=association&value={$id}&class=Association", - "name": "MatrixDB Association", + "deprecated": false, + "deprecationDate": null, "description": "MatrixDB Association", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "P00747__P07355", - "resourceHomeUrl": "http://matrixdb.univ-lyon1.fr/", + "id": 238, "institution": { - "id": 237, - "name": "Institut de Biologie et Chimie des Protéines, Lyon University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 237, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Institut de Biologie et Chimie des Prot\u00e9ines, Lyon University", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100098", + "name": "MatrixDB Association", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://matrixdb.univ-lyon1.fr/", + "sampleId": "P00747__P07355", + "urlPattern": "http://matrixdb.univ-lyon1.fr//cgi-bin/current/newPort?type=association&value={$id}&class=Association" } ], - "sampleId": "P00747__P07355", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "P00747__P07355" }, { + "created": "2019-06-11T14:15:51.483+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Entrez Gene is the NCBI's database for gene-specific information, focusing on completely sequenced genomes, those with an active research community to contribute gene-specific information, or those that are scheduled for intense sequence analysis.", "id": 239, - "prefix": "ncbigene", "mirId": "MIR:00000069", + "modified": "2019-06-11T14:15:51.483+0000", "name": "NCBI Gene", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Entrez Gene is the NCBI's database for gene-specific information, focusing on completely sequenced genomes, those with an active research community to contribute gene-specific information, or those that are scheduled for intense sequence analysis.", - "created": "2019-06-11T14:15:51.483+0000", - "modified": "2019-06-11T14:15:51.483+0000", + "prefix": "ncbigene", "resources": [ { - "id": 240, - "mirId": "MIR:00100099", - "urlPattern": "https://www.ncbi.nlm.nih.gov/gene/{$id}", - "name": "Entrez Gene (NCBI)", + "deprecated": false, + "deprecationDate": null, "description": "Entrez Gene (NCBI)", - "official": true, - "providerCode": "ncbi", - "sampleId": "100010", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/gene", + "id": 240, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100099", + "name": "Entrez Gene (NCBI)", + "official": true, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/gene", + "sampleId": "100010", + "urlPattern": "https://www.ncbi.nlm.nih.gov/gene/{$id}" }, { - "id": 241, - "mirId": "MIR:00100693", - "urlPattern": "http://ncbigene.bio2rdf.org/describe/?url=http://bio2rdf.org/ncbigene:{$id}", - "name": "Bio2RDF", + "deprecated": false, + "deprecationDate": null, "description": "Bio2RDF", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "100010", - "resourceHomeUrl": "http://ncbigene.bio2rdf.org/fct", + "id": 241, "institution": { - "id": 33, - "name": "Bio2RDF.org", - "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", - "rorId": null, + "homeUrl": "https://bio2rdf.org", + "id": 33, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Bio2RDF.org", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100693", + "name": "Bio2RDF", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://ncbigene.bio2rdf.org/fct", + "sampleId": "100010", + "urlPattern": "http://ncbigene.bio2rdf.org/describe/?url=http://bio2rdf.org/ncbigene:{$id}" } ], - "sampleId": "100010", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "100010" }, { + "created": "2019-06-11T14:15:51.781+0000", + "deprecated": false, + "deprecationDate": null, + "description": "KEGG GENES is a collection of gene catalogs for all complete genomes and some partial genomes, generated from publicly available resources.", "id": 242, - "prefix": "kegg.genes", "mirId": "MIR:00000070", + "modified": "2019-06-11T14:15:51.781+0000", "name": "KEGG Genes", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+:[\\w\\d\\.-]*$", - "description": "KEGG GENES is a collection of gene catalogs for all complete genomes and some partial genomes, generated from publicly available resources.", - "created": "2019-06-11T14:15:51.781+0000", - "modified": "2019-06-11T14:15:51.781+0000", + "prefix": "kegg.genes", "resources": [ { - "id": 243, - "mirId": "MIR:00100100", - "urlPattern": "http://www.kegg.jp/entry/{$id}", - "name": "KEGG GENES Database", + "deprecated": false, + "deprecationDate": null, "description": "KEGG GENES Database", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "syn:ssr3451", - "resourceHomeUrl": "http://www.genome.jp/kegg/genes.html", + "id": 243, "institution": { - "id": 15, - "name": "Kyoto University Bioinformatics Center", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 15, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Kyoto University Bioinformatics Center", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100100", + "name": "KEGG GENES Database", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.genome.jp/kegg/genes.html", + "sampleId": "syn:ssr3451", + "urlPattern": "http://www.kegg.jp/entry/{$id}" } ], - "sampleId": "syn:ssr3451", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "syn:ssr3451" }, { + "created": "2019-06-11T14:15:51.985+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BRENDA is a collection of enzyme functional data available to the scientific community. Data on enzyme function are extracted directly from the primary literature The database covers information on classification and nomenclature, reaction and specificity, functional parameters, occurrence, enzyme structure and stability, mutants and enzyme engineering, preparation and isolation, the application of enzymes, and ligand-related data.", "id": 244, - "prefix": "brenda", "mirId": "MIR:00000071", + "modified": "2019-06-11T14:15:51.985+0000", "name": "BRENDA", + "namespaceEmbeddedInLui": false, "pattern": "^((\\d+\\.-\\.-\\.-)|(\\d+\\.\\d+\\.-\\.-)|(\\d+\\.\\d+\\.\\d+\\.-)|(\\d+\\.\\d+\\.\\d+\\.\\d+))$", - "description": "BRENDA is a collection of enzyme functional data available to the scientific community. Data on enzyme function are extracted directly from the primary literature The database covers information on classification and nomenclature, reaction and specificity, functional parameters, occurrence, enzyme structure and stability, mutants and enzyme engineering, preparation and isolation, the application of enzymes, and ligand-related data.", - "created": "2019-06-11T14:15:51.985+0000", - "modified": "2019-06-11T14:15:51.985+0000", + "prefix": "brenda", "resources": [ { - "id": 246, - "mirId": "MIR:00100101", - "urlPattern": "https://www.brenda-enzymes.org/php/result_flat.php4?ecno={$id}", - "name": "Brenda enzyme database", + "deprecated": false, + "deprecationDate": null, "description": "Brenda enzyme database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1.1.1.1", - "resourceHomeUrl": "https://www.brenda-enzymes.org/", + "id": 246, "institution": { - "id": 245, - "name": "Technical University Braunschweig, Institute for Bioinformatics and Biochemistry", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 245, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Technical University Braunschweig, Institute for Bioinformatics and Biochemistry", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100101", + "name": "Brenda enzyme database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.brenda-enzymes.org/", + "sampleId": "1.1.1.1", + "urlPattern": "https://www.brenda-enzymes.org/php/result_flat.php4?ecno={$id}" } ], - "sampleId": "1.1.1.1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1.1.1.1" }, { + "created": "2019-06-11T14:15:52.227+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PubChem provides information on the biological activities of small molecules. It is a component of NIH's Molecular Libraries Roadmap Initiative. PubChem bioassay archives active compounds and bioassay results.", "id": 247, - "prefix": "pubchem.bioassay", "mirId": "MIR:00000072", + "modified": "2019-06-11T14:15:52.227+0000", "name": "PubChem-bioassay", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "PubChem provides information on the biological activities of small molecules. It is a component of NIH's Molecular Libraries Roadmap Initiative. PubChem bioassay archives active compounds and bioassay results.", - "created": "2019-06-11T14:15:52.227+0000", - "modified": "2019-06-11T14:15:52.227+0000", + "prefix": "pubchem.bioassay", "resources": [ { - "id": 248, - "mirId": "MIR:00100102", - "urlPattern": "https://pubchem.ncbi.nlm.nih.gov/bioassay/{$id}", - "name": "PubChem Bioassay at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "PubChem Bioassay at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "1018", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=pcassay", + "id": 248, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100102", + "name": "PubChem Bioassay at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=pcassay", + "sampleId": "1018", + "urlPattern": "https://pubchem.ncbi.nlm.nih.gov/bioassay/{$id}" } ], - "sampleId": "1018", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1018" }, { + "created": "2019-06-11T14:17:58.671+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The BioAssay Ontology (BAO) describes chemical biology screening assays and their results including high-throughput screening (HTS) data for the purpose of categorizing assays and data analysis.", "id": 1659, - "prefix": "bao", "mirId": "MIR:00000597", + "modified": "2019-06-11T14:17:58.671+0000", "name": "BioAssay Ontology", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{7}$", - "description": "The BioAssay Ontology (BAO) describes chemical biology screening assays and their results including high-throughput screening (HTS) data for the purpose of categorizing assays and data analysis.", - "created": "2019-06-11T14:17:58.671+0000", - "modified": "2019-06-11T14:17:58.671+0000", + "prefix": "bao", "resources": [ { - "id": 1660, - "mirId": "MIR:00100797", - "urlPattern": "http://bioportal.bioontology.org/ontologies/BAO/bao:BAO_{$id}", - "name": "BioAssay Ontology through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "BioAssay Ontology through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "0002989", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/BAO/", + "id": 1660, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100797", + "name": "BioAssay Ontology through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/BAO/", + "sampleId": "0002989", + "urlPattern": "http://bioportal.bioontology.org/ontologies/BAO/bao:BAO_{$id}" }, { - "id": 1661, - "mirId": "MIR:00100798", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/bao/terms?obo_id=BAO:{$id}", - "name": "BioAssay Ontology through OLS", + "deprecated": false, + "deprecationDate": null, "description": "BioAssay Ontology through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0002989", - "resourceHomeUrl": "https://bioportal.bioontology.org/ontologies/BAO/", + "id": 1661, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100798", + "name": "BioAssay Ontology through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://bioportal.bioontology.org/ontologies/BAO/", + "sampleId": "0002989", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/bao/terms?obo_id=BAO:{$id}" } ], - "sampleId": "0002989", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "0002989" }, { + "created": "2019-06-11T14:15:52.436+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Pathway Commons is a convenient point of access to biological pathway information collected from public pathway databases, which you can browse or search. It is a collection of publicly available pathways from multiple organisms that provides researchers with convenient access to a comprehensive collection of pathways from multiple sources represented in a common language.", "id": 249, - "prefix": "pathwaycommons", "mirId": "MIR:00000073", + "modified": "2019-06-11T14:15:52.436+0000", "name": "Pathway Commons", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Pathway Commons is a convenient point of access to biological pathway information collected from public pathway databases, which you can browse or search. It is a collection of publicly available pathways from multiple organisms that provides researchers with convenient access to a comprehensive collection of pathways from multiple sources represented in a common language.", - "created": "2019-06-11T14:15:52.436+0000", - "modified": "2019-06-11T14:15:52.436+0000", + "prefix": "pathwaycommons", "resources": [ { - "id": 251, - "mirId": "MIR:00100103", - "urlPattern": "http://www.pathwaycommons.org/pc/record2.do?id={$id}", - "name": "Pathway Commons", + "deprecated": false, + "deprecationDate": null, "description": "Pathway Commons", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "485991", - "resourceHomeUrl": "http://www.pathwaycommons.org/pc/", + "id": 251, "institution": { - "id": 250, - "name": "Memorial Sloan-Kettering Cancer Center", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 250, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Memorial Sloan-Kettering Cancer Center", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100103", + "name": "Pathway Commons", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.pathwaycommons.org/pc/", + "sampleId": "485991", + "urlPattern": "http://www.pathwaycommons.org/pc/record2.do?id={$id}" } ], - "sampleId": "485991", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "485991" }, { + "created": "2019-06-11T14:15:52.667+0000", + "deprecated": false, + "deprecationDate": null, + "description": "HOVERGEN is a database of homologous vertebrate genes that allows one to select sets of homologous genes among vertebrate species, and to visualize multiple alignments and phylogenetic trees.", "id": 252, - "prefix": "hovergen", "mirId": "MIR:00000074", + "modified": "2019-06-11T14:15:52.667+0000", "name": "HOVERGEN", + "namespaceEmbeddedInLui": false, "pattern": "^HBG\\d+$", - "description": "HOVERGEN is a database of homologous vertebrate genes that allows one to select sets of homologous genes among vertebrate species, and to visualize multiple alignments and phylogenetic trees.", - "created": "2019-06-11T14:15:52.667+0000", - "modified": "2019-06-11T14:15:52.667+0000", + "prefix": "hovergen", "resources": [ { - "id": 254, - "mirId": "MIR:00100104", - "urlPattern": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?query={$id}&db=HOVERGEN", - "name": "Hovergen", + "deprecated": false, + "deprecationDate": null, "description": "Hovergen", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "HBG004341", - "resourceHomeUrl": "http://pbil.univ-lyon1.fr/databases/hovergen.php", + "id": 254, "institution": { - "id": 253, - "name": "Laboratoire de Biométrie, Génétique et Biologie des Populations", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 253, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Laboratoire de Biom\u00e9trie, G\u00e9n\u00e9tique et Biologie des Populations", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100104", + "name": "Hovergen", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://pbil.univ-lyon1.fr/databases/hovergen.php", + "sampleId": "HBG004341", + "urlPattern": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?query={$id}&db=HOVERGEN" } ], - "sampleId": "HBG004341", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "HBG004341" }, { + "created": "2019-06-11T14:15:52.916+0000", + "deprecated": false, + "deprecationDate": null, + "description": "A collection of molecular interaction maps and pathways involved in cancer development and progression with a focus on melanoma.", "id": 255, - "prefix": "mmmp:biomaps", "mirId": "MIR:00000075", + "modified": "2019-06-11T14:15:52.916+0000", "name": "Melanoma Molecular Map Project Biomaps", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "A collection of molecular interaction maps and pathways involved in cancer development and progression with a focus on melanoma.", - "created": "2019-06-11T14:15:52.916+0000", - "modified": "2019-06-11T14:15:52.916+0000", + "prefix": "mmmp:biomaps", "resources": [ { - "id": 257, - "mirId": "MIR:00100105", - "urlPattern": "http://www.mmmp.org/MMMP/public/biomap/viewBiomap.mmmp?id={$id}", - "name": "main webpage", + "deprecated": false, + "deprecationDate": null, "description": "main webpage", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "37", - "resourceHomeUrl": "http://www.mmmp.org/MMMP/public/biomap/listBiomap.mmmp", + "id": 257, "institution": { - "id": 256, - "name": "Melanoma Molecular Map Project", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 256, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Melanoma Molecular Map Project", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100105", + "name": "main webpage", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.mmmp.org/MMMP/public/biomap/listBiomap.mmmp", + "sampleId": "37", + "urlPattern": "http://www.mmmp.org/MMMP/public/biomap/viewBiomap.mmmp?id={$id}" } ], - "sampleId": "37", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "37" }, { + "created": "2019-06-11T14:15:53.125+0000", + "deprecated": false, + "deprecationDate": null, + "description": "WikiPathways is a resource providing an open and public collection of pathway maps created and curated by the community in a Wiki like style.\r\nAll content is under the Creative Commons Attribution 3.0 Unported license.", "id": 258, - "prefix": "wikipathways", "mirId": "MIR:00000076", + "modified": "2019-06-11T14:15:53.125+0000", "name": "WikiPathways", + "namespaceEmbeddedInLui": false, "pattern": "WP\\d{1,5}(\\_r\\d+)?$", - "description": "WikiPathways is a resource providing an open and public collection of pathway maps created and curated by the community in a Wiki like style.\r\nAll content is under the Creative Commons Attribution 3.0 Unported license.", - "created": "2019-06-11T14:15:53.125+0000", - "modified": "2019-06-11T14:15:53.125+0000", + "prefix": "wikipathways", "resources": [ { - "id": 260, - "mirId": "MIR:00100106", - "urlPattern": "http://www.wikipathways.org/instance/{$id}", - "name": "WikiPathways", + "deprecated": false, + "deprecationDate": null, "description": "WikiPathways", - "official": true, - "providerCode": "um", - "sampleId": "WP100", - "resourceHomeUrl": "http://www.wikipathways.org/", + "id": 260, "institution": { - "id": 283, - "name": "Maastricht University", - "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", - "rorId": "https://ror.org/02jz4aj89", + "homeUrl": "https://www.maastrichtuniversity.nl", + "id": 283, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "Maastricht University", + "rorId": "https://ror.org/02jz4aj89" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100106", + "name": "WikiPathways", + "official": true, + "providerCode": "um", + "resourceHomeUrl": "http://www.wikipathways.org/", + "sampleId": "WP100", + "urlPattern": "http://www.wikipathways.org/instance/{$id}" }, { - "id": 2316, - "mirId": "MIR:00000696", - "urlPattern": "https://scholia.toolforge.org/wikipathways/{$id}", - "name": "Scholia", + "deprecated": false, + "deprecationDate": null, "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.\n", - "official": false, - "providerCode": "scholia", - "sampleId": "WP111", - "resourceHomeUrl": "https://scholia.toolforge.org/", + "id": 2316, "institution": { - "id": 283, - "name": "Maastricht University", - "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", - "rorId": "https://ror.org/02jz4aj89", + "homeUrl": "https://www.maastrichtuniversity.nl", + "id": 283, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "Maastricht University", + "rorId": "https://ror.org/02jz4aj89" }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000696", + "name": "Scholia", + "official": false, + "providerCode": "scholia", + "resourceHomeUrl": "https://scholia.toolforge.org/", + "sampleId": "WP111", + "urlPattern": "https://scholia.toolforge.org/wikipathways/{$id}" } ], - "sampleId": "WP100", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "WP100" }, { + "created": "2019-06-11T14:15:53.388+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MACiE (Mechanism, Annotation and Classification in Enzymes) is a database of enzyme reaction mechanisms. Each entry in MACiE consists of an overall reaction describing the chemical compounds involved, as well as the species name in which the reaction occurs. The individual reaction stages for each overall reaction are listed with mechanisms, alternative mechanisms, and amino acids involved.", "id": 261, - "prefix": "macie", "mirId": "MIR:00000077", + "modified": "2019-06-11T14:15:53.388+0000", "name": "MACiE", + "namespaceEmbeddedInLui": false, "pattern": "^M\\d{4}$", - "description": "MACiE (Mechanism, Annotation and Classification in Enzymes) is a database of enzyme reaction mechanisms. Each entry in MACiE consists of an overall reaction describing the chemical compounds involved, as well as the species name in which the reaction occurs. The individual reaction stages for each overall reaction are listed with mechanisms, alternative mechanisms, and amino acids involved.", - "created": "2019-06-11T14:15:53.388+0000", - "modified": "2019-06-11T14:15:53.388+0000", + "prefix": "macie", "resources": [ { - "id": 262, - "mirId": "MIR:00100108", - "urlPattern": "https://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/MACiE/entry/getPage.pl?id={$id}", - "name": "MACiE database of mechanisms, annotation and classification in enzymes", + "deprecated": false, + "deprecationDate": null, "description": "MACiE database of mechanisms, annotation and classification in enzymes", - "official": true, - "providerCode": "ebi", - "sampleId": "M0001", - "resourceHomeUrl": "https://www.ebi.ac.uk/thornton-srv/databases/MACiE/index.html", + "id": 262, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100108", + "name": "MACiE database of mechanisms, annotation and classification in enzymes", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/thornton-srv/databases/MACiE/index.html", + "sampleId": "M0001", + "urlPattern": "https://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/MACiE/entry/getPage.pl?id={$id}" } ], - "sampleId": "M0001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "M0001" }, { + "created": "2019-06-11T14:15:53.607+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The miRBase Sequence Database is a searchable database of published miRNA sequences and annotation. The data were previously provided by the miRNA Registry. Each entry in the miRBase Sequence database represents a predicted hairpin portion of a miRNA transcript (termed mir in the database), with information on the location and sequence of the mature miRNA sequence (termed miR).", "id": 263, - "prefix": "mirbase", "mirId": "MIR:00000078", + "modified": "2019-06-11T14:15:53.607+0000", "name": "miRBase Sequence", + "namespaceEmbeddedInLui": false, "pattern": "MI\\d{7}", - "description": "The miRBase Sequence Database is a searchable database of published miRNA sequences and annotation. The data were previously provided by the miRNA Registry. Each entry in the miRBase Sequence database represents a predicted hairpin portion of a miRNA transcript (termed mir in the database), with information on the location and sequence of the mature miRNA sequence (termed miR).", - "created": "2019-06-11T14:15:53.607+0000", - "modified": "2019-06-11T14:15:53.607+0000", + "prefix": "mirbase", "resources": [ { - "id": 265, - "mirId": "MIR:00100135", - "urlPattern": "http://www.mirbase.org/cgi-bin/mirna_entry.pl?acc={$id}", - "name": "miRBase Sequence Database", + "deprecated": false, + "deprecationDate": null, "description": "miRBase Sequence Database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MI0000001", - "resourceHomeUrl": "http://www.mirbase.org/", + "id": 265, "institution": { - "id": 264, - "name": "Faculty of Life Sciences, University of Manchester", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 264, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Faculty of Life Sciences, University of Manchester", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100135", + "name": "miRBase Sequence Database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.mirbase.org/", + "sampleId": "MI0000001", + "urlPattern": "http://www.mirbase.org/cgi-bin/mirna_entry.pl?acc={$id}" } ], - "sampleId": "MI0000001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MI0000001" }, { + "created": "2019-06-11T14:15:53.859+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ZFIN serves as the zebrafish model organism database. This collection references all zebrafish biological entities in ZFIN.", "id": 266, - "prefix": "zfin", "mirId": "MIR:00000079", + "modified": "2019-06-11T14:15:53.859+0000", "name": "ZFIN Bioentity", + "namespaceEmbeddedInLui": false, "pattern": "^ZDB\\-\\w+\\-\\d+\\-\\d+$", - "description": "ZFIN serves as the zebrafish model organism database. This collection references all zebrafish biological entities in ZFIN.", - "created": "2019-06-11T14:15:53.859+0000", - "modified": "2019-06-11T14:15:53.859+0000", + "prefix": "zfin", "resources": [ { - "id": 268, - "mirId": "MIR:00100110", - "urlPattern": "http://zfin.org/{$id}", - "name": "ZFIN at University of Oregon", + "deprecated": false, + "deprecationDate": null, "description": "ZFIN at University of Oregon", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ZDB-GENE-041118-11", - "resourceHomeUrl": "http://zfin.org", + "id": 268, "institution": { - "id": 267, - "name": "Zebrafish Information Network, University of Oregon", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 267, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Zebrafish Information Network, University of Oregon", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100110", + "name": "ZFIN at University of Oregon", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://zfin.org", + "sampleId": "ZDB-GENE-041118-11", + "urlPattern": "http://zfin.org/{$id}" }, { - "id": 269, - "mirId": "MIR:00100891", - "urlPattern": "https://bioentity.link/#/lexicon/public/{$id}", - "name": "ZFIN through BioEntity Link", + "deprecated": false, + "deprecationDate": null, "description": "ZFIN through BioEntity Link", - "official": false, - "providerCode": "bioentitylink", - "sampleId": "ZDB-GENE-041118-11", - "resourceHomeUrl": "https://bioentity.link/", + "id": 269, "institution": { - "id": 101, - "name": "InSilico Inc, in Eugene, Oregon", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 101, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "InSilico Inc, in Eugene, Oregon", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100891", + "name": "ZFIN through BioEntity Link", + "official": false, + "providerCode": "bioentitylink", + "resourceHomeUrl": "https://bioentity.link/", + "sampleId": "ZDB-GENE-041118-11", + "urlPattern": "https://bioentity.link/#/lexicon/public/{$id}" }, { - "id": 270, - "mirId": "MIR:00100902", - "urlPattern": "https://test.alliancegenome.org/gene/ZFIN:{$id}", - "name": "ZFIN through the Alliance of Genome Resources", + "deprecated": false, + "deprecationDate": null, "description": "ZFIN through the Alliance of Genome Resources", - "official": false, - "providerCode": "agr", - "sampleId": "ZDB-GENE-041118-11", - "resourceHomeUrl": "https://www.alliancegenome.org", + "id": 270, "institution": { - "id": 103, - "name": "Alliance of Genome Resources", - "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", - "rorId": null, + "homeUrl": "https://www.alliancegenome.org", + "id": 103, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Alliance of Genome Resources", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100902", + "name": "ZFIN through the Alliance of Genome Resources", + "official": false, + "providerCode": "agr", + "resourceHomeUrl": "https://www.alliancegenome.org", + "sampleId": "ZDB-GENE-041118-11", + "urlPattern": "https://test.alliancegenome.org/gene/ZFIN:{$id}" } ], - "sampleId": "ZDB-GENE-041118-11", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ZDB-GENE-041118-11" }, { + "created": "2019-06-11T14:15:54.375+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. HGNC identifiers refer to records in the HGNC symbol database.", "id": 271, - "prefix": "hgnc", "mirId": "MIR:00000080", + "modified": "2019-06-11T14:15:54.375+0000", "name": "HGNC", + "namespaceEmbeddedInLui": false, "pattern": "^((HGNC|hgnc):)?\\d{1,5}$", - "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. HGNC identifiers refer to records in the HGNC symbol database.", - "created": "2019-06-11T14:15:54.375+0000", - "modified": "2019-06-11T14:15:54.375+0000", + "prefix": "hgnc", "resources": [ { - "id": 272, - "mirId": "MIR:00100111", - "urlPattern": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/{$id}", - "name": "HUGO Genome Nomenclature Committee", + "deprecated": false, + "deprecationDate": null, "description": "HUGO Genome Nomenclature Committee", - "official": true, - "providerCode": "ebi", - "sampleId": "2674", - "resourceHomeUrl": "https://www.genenames.org", + "id": 272, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100111", + "name": "HUGO Genome Nomenclature Committee", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.genenames.org", + "sampleId": "2674", + "urlPattern": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/{$id}" } ], - "sampleId": "2674", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2674" }, { + "created": "2019-06-11T14:15:54.604+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Sequence Ontology (SO) is a structured controlled vocabulary for the parts of a genomic annotation. It provides a common set of terms and definitions to facilitate the exchange, analysis and management of genomic data.", "id": 273, - "prefix": "so", "mirId": "MIR:00000081", + "modified": "2019-06-11T14:15:54.604+0000", "name": "Sequence Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^SO:\\d{7}$", - "description": "The Sequence Ontology (SO) is a structured controlled vocabulary for the parts of a genomic annotation. It provides a common set of terms and definitions to facilitate the exchange, analysis and management of genomic data.", - "created": "2019-06-11T14:15:54.604+0000", - "modified": "2019-06-11T14:15:54.604+0000", + "prefix": "so", "resources": [ { - "id": 275, - "mirId": "MIR:00100112", - "urlPattern": "http://www.sequenceontology.org/miso/current_release/term/SO:{$id}", - "name": "Sequence Ontology", + "deprecated": false, + "deprecationDate": null, "description": "Sequence Ontology", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0000704", - "resourceHomeUrl": "http://www.sequenceontology.org/", + "id": 275, "institution": { - "id": 274, - "name": "Department of Molecular and Cellular Biology, University of California, Berkeley", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 274, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Molecular and Cellular Biology, University of California, Berkeley", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100112", + "name": "Sequence Ontology", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.sequenceontology.org/", + "sampleId": "0000704", + "urlPattern": "http://www.sequenceontology.org/miso/current_release/term/SO:{$id}" }, { - "id": 276, - "mirId": "MIR:00100241", - "urlPattern": "http://purl.bioontology.org/ontology/SO/SO:{$id}", - "name": "Sequence Ontology through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "Sequence Ontology through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "0000704", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/SO", + "id": 276, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100241", + "name": "Sequence Ontology through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/SO", + "sampleId": "0000704", + "urlPattern": "http://purl.bioontology.org/ontology/SO/SO:{$id}" }, { - "id": 277, - "mirId": "MIR:00100628", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/so/terms?obo_id=SO:{$id}", - "name": "Sequence Ontology through Ontology Lookup Service (OLS)", + "deprecated": false, + "deprecationDate": null, "description": "Sequence Ontology through Ontology Lookup Service (OLS)", - "official": false, - "providerCode": "ols", - "sampleId": "0000704", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/so", + "id": 277, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100628", + "name": "Sequence Ontology through Ontology Lookup Service (OLS)", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/so", + "sampleId": "0000704", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/so/terms?obo_id=SO:{$id}" } ], - "sampleId": "0000704", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0000704" }, { + "created": "2019-06-11T14:15:55.126+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Rhea is a manually annotated reaction database, where all reaction participants (reactants and products) are linked to the ChEBI database (Chemical Entities of Biological Interest), providing detailed information about structure, formulae and charge. It is populated with the reactions found in the EC list, IntEnz and ENZYME databases), as well as other biochemical reactions, including those that are often termed \"spontaneous\".", "id": 278, - "prefix": "rhea", "mirId": "MIR:00000082", + "modified": "2019-06-11T14:15:55.126+0000", "name": "Rhea", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{5}$", - "description": "Rhea is a manually annotated reaction database, where all reaction participants (reactants and products) are linked to the ChEBI database (Chemical Entities of Biological Interest), providing detailed information about structure, formulae and charge. It is populated with the reactions found in the EC list, IntEnz and ENZYME databases), as well as other biochemical reactions, including those that are often termed \"spontaneous\".", - "created": "2019-06-11T14:15:55.126+0000", - "modified": "2019-06-11T14:15:55.126+0000", + "prefix": "rhea", "resources": [ { - "id": 280, - "mirId": "MIR:00100113", - "urlPattern": "https://www.rhea-db.org/reaction?id={$id}", - "name": "Rhea", + "deprecated": false, + "deprecationDate": null, "description": "Rhea", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "12345", - "resourceHomeUrl": "https://www.rhea-db.org/", + "id": 280, "institution": { - "id": 279, - "name": "European Bioinformatics Institute and Swiss Institute of Bioinformatics", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 279, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute and Swiss Institute of Bioinformatics", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100113", + "name": "Rhea", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.rhea-db.org/", + "sampleId": "12345", + "urlPattern": "https://www.rhea-db.org/reaction?id={$id}" } ], - "sampleId": "12345", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "12345" }, { + "created": "2019-06-11T14:15:55.368+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ChEMBL is a database of bioactive compounds, their quantitative properties and bioactivities (binding constants, pharmacology and ADMET, etc). The data is abstracted and curated from the primary scientific literature.", "id": 281, - "prefix": "chembl.compound", "mirId": "MIR:00000084", + "modified": "2019-06-11T14:15:55.368+0000", "name": "ChEMBL compound", + "namespaceEmbeddedInLui": false, "pattern": "^CHEMBL\\d+$", - "description": "ChEMBL is a database of bioactive compounds, their quantitative properties and bioactivities (binding constants, pharmacology and ADMET, etc). The data is abstracted and curated from the primary scientific literature.", - "created": "2019-06-11T14:15:55.368+0000", - "modified": "2019-06-11T14:15:55.368+0000", + "prefix": "chembl.compound", "resources": [ { - "id": 282, - "mirId": "MIR:00100115", - "urlPattern": "https://www.ebi.ac.uk/chembl/compound/inspect/{$id}", - "name": "ChEMBL compound database at EBI", + "deprecated": false, + "deprecationDate": null, "description": "ChEMBL compound database at EBI", - "official": true, - "providerCode": "ebi", - "sampleId": "CHEMBL308052", - "resourceHomeUrl": "https://www.ebi.ac.uk/chembldb/", + "id": 282, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100115", + "name": "ChEMBL compound database at EBI", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/chembldb/", + "sampleId": "CHEMBL308052", + "urlPattern": "https://www.ebi.ac.uk/chembl/compound/inspect/{$id}" }, { - "id": 284, - "mirId": "MIR:00100484", - "urlPattern": "http://linkedchemistry.info/chembl/chemblid/{$id}", - "name": "ChEMBL compound RDF", + "deprecated": false, + "deprecationDate": null, "description": "ChEMBL compound RDF", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "CHEMBL308052", - "resourceHomeUrl": "https://github.com/egonw/chembl.rdf", + "id": 284, "institution": { - "id": 283, - "name": "Maastricht University", - "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", - "rorId": "https://ror.org/02jz4aj89", + "homeUrl": "https://www.maastrichtuniversity.nl", + "id": 283, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "Maastricht University", + "rorId": "https://ror.org/02jz4aj89" }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 285, - "mirId": "MIR:00100744", - "urlPattern": "https://rdf.ebi.ac.uk/resource/chembl/molecule/{$id}", - "name": "ChEMBL compound RDF through EBI RDF Platform", - "description": "ChEMBL compound RDF through EBI RDF Platform", + "mirId": "MIR:00100484", + "name": "ChEMBL compound RDF", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://github.com/egonw/chembl.rdf", "sampleId": "CHEMBL308052", - "resourceHomeUrl": "https://www.ebi.ac.uk/rdf/services/chembl/", + "urlPattern": "http://linkedchemistry.info/chembl/chemblid/{$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "ChEMBL compound RDF through EBI RDF Platform", + "id": 285, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100744", + "name": "ChEMBL compound RDF through EBI RDF Platform", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.ebi.ac.uk/rdf/services/chembl/", + "sampleId": "CHEMBL308052", + "urlPattern": "https://rdf.ebi.ac.uk/resource/chembl/molecule/{$id}" } ], - "sampleId": "CHEMBL308052", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CHEMBL308052" }, { + "created": "2019-06-11T14:15:55.880+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ChEMBL is a database of bioactive compounds, their quantitative properties and bioactivities (binding constants, pharmacology and ADMET, etc). The data is abstracted and curated from the primary scientific literature.", "id": 286, - "prefix": "chembl.target", "mirId": "MIR:00000085", + "modified": "2019-06-11T14:15:55.880+0000", "name": "ChEMBL target", + "namespaceEmbeddedInLui": false, "pattern": "^CHEMBL\\d+$", - "description": "ChEMBL is a database of bioactive compounds, their quantitative properties and bioactivities (binding constants, pharmacology and ADMET, etc). The data is abstracted and curated from the primary scientific literature.", - "created": "2019-06-11T14:15:55.880+0000", - "modified": "2019-06-11T14:15:55.880+0000", + "prefix": "chembl.target", "resources": [ { - "id": 287, - "mirId": "MIR:00100116", - "urlPattern": "https://www.ebi.ac.uk/chembl/target/inspect/{$id}", - "name": "ChEMBL targets database at EBI", + "deprecated": false, + "deprecationDate": null, "description": "ChEMBL targets database at EBI", - "official": true, - "providerCode": "ebi", - "sampleId": "CHEMBL3467", - "resourceHomeUrl": "https://www.ebi.ac.uk/chembldb/", + "id": 287, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100116", + "name": "ChEMBL targets database at EBI", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/chembldb/", + "sampleId": "CHEMBL3467", + "urlPattern": "https://www.ebi.ac.uk/chembl/target/inspect/{$id}" }, { - "id": 288, - "mirId": "MIR:00100485", - "urlPattern": "http://linkedchemistry.info/chembl/chemblid/{$id}", - "name": "ChEMBL target RDF", + "deprecated": false, + "deprecationDate": null, "description": "ChEMBL target RDF", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "CHEMBL3467", - "resourceHomeUrl": "https://github.com/egonw/chembl.rdf", + "id": 288, "institution": { - "id": 283, - "name": "Maastricht University", - "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", - "rorId": "https://ror.org/02jz4aj89", + "homeUrl": "https://www.maastrichtuniversity.nl", + "id": 283, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "Maastricht University", + "rorId": "https://ror.org/02jz4aj89" }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 289, - "mirId": "MIR:00100743", - "urlPattern": "https://rdf.ebi.ac.uk/resource/chembl/target/{$id}", - "name": "ChEMBL target RDF through EBI RDF Platform", - "description": "ChEMBL target RDF through EBI RDF Platform", + "mirId": "MIR:00100485", + "name": "ChEMBL target RDF", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://github.com/egonw/chembl.rdf", "sampleId": "CHEMBL3467", - "resourceHomeUrl": "https://rdf.ebi.ac.uk/resource/chembl/", + "urlPattern": "http://linkedchemistry.info/chembl/chemblid/{$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "ChEMBL target RDF through EBI RDF Platform", + "id": 289, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100743", + "name": "ChEMBL target RDF through EBI RDF Platform", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://rdf.ebi.ac.uk/resource/chembl/", + "sampleId": "CHEMBL3467", + "urlPattern": "https://rdf.ebi.ac.uk/resource/chembl/target/{$id}" } ], - "sampleId": "CHEMBL3467", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CHEMBL3467" }, { + "created": "2019-06-11T14:15:56.334+0000", + "deprecated": false, + "deprecationDate": null, + "description": "SABIO-RK is a relational database system that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. The kinetic record data set provides information regarding the kinetic law, measurement conditions, parameter details and other reference information.", "id": 290, - "prefix": "sabiork.kineticrecord", "mirId": "MIR:00000086", + "modified": "2019-06-11T14:15:56.334+0000", "name": "SABIO-RK Kinetic Record", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "SABIO-RK is a relational database system that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. The kinetic record data set provides information regarding the kinetic law, measurement conditions, parameter details and other reference information.", - "created": "2019-06-11T14:15:56.334+0000", - "modified": "2019-06-11T14:15:56.334+0000", + "prefix": "sabiork.kineticrecord", "resources": [ { - "id": 291, - "mirId": "MIR:00100117", - "urlPattern": "http://sabiork.h-its.org/kineticLawEntry.jsp?viewData=true&kinlawid={$id}", - "name": "SABIO-RK Reaction Kinetics Database - Kinetic Dataset", + "deprecated": false, + "deprecationDate": null, "description": "SABIO-RK Reaction Kinetics Database - Kinetic Dataset", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "5046", - "resourceHomeUrl": "http://sabiork.h-its.org/", + "id": 291, "institution": { - "id": 151, - "name": "Heidelberg Institute for Theoretical Studies (HITS gGmbH)", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 151, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Heidelberg Institute for Theoretical Studies (HITS gGmbH)", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100117", + "name": "SABIO-RK Reaction Kinetics Database - Kinetic Dataset", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://sabiork.h-its.org/", + "sampleId": "5046", + "urlPattern": "http://sabiork.h-its.org/kineticLawEntry.jsp?viewData=true&kinlawid={$id}" } ], - "sampleId": "5046", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "5046" }, { + "created": "2019-06-11T14:15:56.548+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Ligand-Gated Ion Channel database provides nucleic and proteic sequences of the subunits of ligand-gated ion channels. These transmembrane proteins can exist under different conformations, at least one of which forms a pore through the membrane connecting two neighbouring compartments. The database can be used to generate multiple sequence alignments from selected subunits, and gives the atomic coordinates of subunits, or portion of subunits, where available.", "id": 292, - "prefix": "lgic", "mirId": "MIR:00000087", + "modified": "2019-06-11T14:15:56.548+0000", "name": "Ligand-Gated Ion Channel database", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "The Ligand-Gated Ion Channel database provides nucleic and proteic sequences of the subunits of ligand-gated ion channels. These transmembrane proteins can exist under different conformations, at least one of which forms a pore through the membrane connecting two neighbouring compartments. The database can be used to generate multiple sequence alignments from selected subunits, and gives the atomic coordinates of subunits, or portion of subunits, where available.", - "created": "2019-06-11T14:15:56.548+0000", - "modified": "2019-06-11T14:15:56.548+0000", + "prefix": "lgic", "resources": [ { - "id": 293, - "mirId": "MIR:00100118", - "urlPattern": "https://www.ebi.ac.uk/compneur-srv/LGICdb/HTML/{$id}.php", - "name": "Ligand-Gated Ion Channel database at EBI", + "deprecated": false, + "deprecationDate": null, "description": "Ligand-Gated Ion Channel database at EBI", - "official": false, - "providerCode": "ebi", - "sampleId": "5HT3Arano", - "resourceHomeUrl": "https://www.ebi.ac.uk/compneur-srv/LGICdb/LGICdb.php", + "id": 293, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100118", + "name": "Ligand-Gated Ion Channel database at EBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/compneur-srv/LGICdb/LGICdb.php", + "sampleId": "5HT3Arano", + "urlPattern": "https://www.ebi.ac.uk/compneur-srv/LGICdb/HTML/{$id}.php" } ], - "sampleId": "5HT3Arano", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "5HT3Arano" }, { + "created": "2019-06-11T14:15:56.747+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Anatomical Therapeutic Chemical (ATC) classification system, divides active substances into different groups according to the organ or system on which they act and their therapeutic, pharmacological and chemical properties. Drugs are classified in groups at five different levels; Drugs are divided into fourteen main groups (1st level), with pharmacological/therapeutic subgroups (2nd level). The 3rd and 4th levels are chemical/pharmacological/therapeutic subgroups and the 5th level is the chemical substance. The Anatomical Therapeutic Chemical (ATC) classification system and the Defined Daily Dose (DDD) is a tool for exchanging and comparing data on drug use at international, national or local levels.", "id": 294, - "prefix": "atc", "mirId": "MIR:00000088", + "modified": "2019-06-11T14:15:56.747+0000", "name": "Anatomical Therapeutic Chemical", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z](\\d+([A-Z]{1,2}(\\d+)?)?)?$", - "description": "The Anatomical Therapeutic Chemical (ATC) classification system, divides active substances into different groups according to the organ or system on which they act and their therapeutic, pharmacological and chemical properties. Drugs are classified in groups at five different levels; Drugs are divided into fourteen main groups (1st level), with pharmacological/therapeutic subgroups (2nd level). The 3rd and 4th levels are chemical/pharmacological/therapeutic subgroups and the 5th level is the chemical substance. The Anatomical Therapeutic Chemical (ATC) classification system and the Defined Daily Dose (DDD) is a tool for exchanging and comparing data on drug use at international, national or local levels.", - "created": "2019-06-11T14:15:56.747+0000", - "modified": "2019-06-11T14:15:56.747+0000", + "prefix": "atc", "resources": [ { - "id": 296, - "mirId": "MIR:00100119", - "urlPattern": "http://www.whocc.no/atc_ddd_index/?code={$id}", - "name": "Anatomical Therapeutic Chemical Index at WHO", + "deprecated": false, + "deprecationDate": null, "description": "Anatomical Therapeutic Chemical Index at WHO", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "A10BA02", - "resourceHomeUrl": "http://www.whocc.no/atc_ddd_index/", + "id": 296, "institution": { - "id": 295, - "name": "World Health Organisation", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 295, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "World Health Organisation", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100119", + "name": "Anatomical Therapeutic Chemical Index at WHO", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.whocc.no/atc_ddd_index/", + "sampleId": "A10BA02", + "urlPattern": "http://www.whocc.no/atc_ddd_index/?code={$id}" } ], - "sampleId": "A10BA02", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "A10BA02" }, { + "created": "2019-06-11T14:15:57.006+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PharmGKB database is a central repository for genetic, genomic, molecular and cellular phenotype data and clinical information about people who have participated in pharmacogenomics research studies. The data includes, but is not limited to, clinical and basic pharmacokinetic and pharmacogenomic research in the cardiovascular, pulmonary, cancer, pathways, metabolic and transporter domains. \r\nPharmGKB Pathways are drug centric, gene based, interactive pathways which focus on candidate genes and gene groups and associated genotype and phenotype data of relevance for pharmacogenetic and pharmacogenomic studies.", "id": 297, - "prefix": "pharmgkb.pathways", "mirId": "MIR:00000089", + "modified": "2019-06-11T14:15:57.006+0000", "name": "PharmGKB Pathways", + "namespaceEmbeddedInLui": false, "pattern": "^PA\\d+$", - "description": "The PharmGKB database is a central repository for genetic, genomic, molecular and cellular phenotype data and clinical information about people who have participated in pharmacogenomics research studies. The data includes, but is not limited to, clinical and basic pharmacokinetic and pharmacogenomic research in the cardiovascular, pulmonary, cancer, pathways, metabolic and transporter domains. \r\nPharmGKB Pathways are drug centric, gene based, interactive pathways which focus on candidate genes and gene groups and associated genotype and phenotype data of relevance for pharmacogenetic and pharmacogenomic studies.", - "created": "2019-06-11T14:15:57.006+0000", - "modified": "2019-06-11T14:15:57.006+0000", + "prefix": "pharmgkb.pathways", "resources": [ { - "id": 299, - "mirId": "MIR:00100120", - "urlPattern": "http://www.pharmgkb.org/pathway/{$id}", - "name": "PharmGKB at Stanford", + "deprecated": false, + "deprecationDate": null, "description": "PharmGKB at Stanford", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PA146123006", - "resourceHomeUrl": "http://www.pharmgkb.org/", + "id": 299, "institution": { - "id": 298, - "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 298, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100120", + "name": "PharmGKB at Stanford", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.pharmgkb.org/", + "sampleId": "PA146123006", + "urlPattern": "http://www.pharmgkb.org/pathway/{$id}" } ], - "sampleId": "PA146123006", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PA146123006" }, { + "created": "2019-06-11T14:15:57.258+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PharmGKB database is a central repository for genetic, genomic, molecular and cellular phenotype data and clinical information about people who have participated in pharmacogenomics research studies. The data includes, but is not limited to, clinical and basic pharmacokinetic and pharmacogenomic research in the cardiovascular, pulmonary, cancer, pathways, metabolic and transporter domains.", "id": 300, - "prefix": "pharmgkb.disease", "mirId": "MIR:00000090", + "modified": "2019-06-11T14:15:57.258+0000", "name": "PharmGKB Disease", + "namespaceEmbeddedInLui": false, "pattern": "^PA\\d+$", - "description": "The PharmGKB database is a central repository for genetic, genomic, molecular and cellular phenotype data and clinical information about people who have participated in pharmacogenomics research studies. The data includes, but is not limited to, clinical and basic pharmacokinetic and pharmacogenomic research in the cardiovascular, pulmonary, cancer, pathways, metabolic and transporter domains.", - "created": "2019-06-11T14:15:57.258+0000", - "modified": "2019-06-11T14:15:57.258+0000", + "prefix": "pharmgkb.disease", "resources": [ { - "id": 301, - "mirId": "MIR:00100121", - "urlPattern": "http://www.pharmgkb.org/disease/{$id}", - "name": "PharmGKB Disease at Stanford", + "deprecated": false, + "deprecationDate": null, "description": "PharmGKB Disease at Stanford", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PA447218", - "resourceHomeUrl": "http://www.pharmgkb.org/", + "id": 301, "institution": { - "id": 298, - "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 298, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100121", + "name": "PharmGKB Disease at Stanford", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.pharmgkb.org/", + "sampleId": "PA447218", + "urlPattern": "http://www.pharmgkb.org/disease/{$id}" } ], - "sampleId": "PA447218", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PA447218" }, { + "created": "2019-06-11T14:15:57.451+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PharmGKB database is a central repository for genetic, genomic, molecular and cellular phenotype data and clinical information about people who have participated in pharmacogenomics research studies. The data includes, but is not limited to, clinical and basic pharmacokinetic and pharmacogenomic research in the cardiovascular, pulmonary, cancer, pathways, metabolic and transporter domains.", "id": 302, - "prefix": "pharmgkb.drug", "mirId": "MIR:00000091", + "modified": "2019-06-11T14:15:57.451+0000", "name": "PharmGKB Drug", + "namespaceEmbeddedInLui": false, "pattern": "^PA\\d+$", - "description": "The PharmGKB database is a central repository for genetic, genomic, molecular and cellular phenotype data and clinical information about people who have participated in pharmacogenomics research studies. The data includes, but is not limited to, clinical and basic pharmacokinetic and pharmacogenomic research in the cardiovascular, pulmonary, cancer, pathways, metabolic and transporter domains.", - "created": "2019-06-11T14:15:57.451+0000", - "modified": "2019-06-11T14:15:57.451+0000", + "prefix": "pharmgkb.drug", "resources": [ { - "id": 303, - "mirId": "MIR:00100122", - "urlPattern": "http://www.pharmgkb.org/drug/{$id}", - "name": "PharmGKB Drug at Stanford", + "deprecated": false, + "deprecationDate": null, "description": "PharmGKB Drug at Stanford", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PA448710", - "resourceHomeUrl": "http://www.pharmgkb.org/", + "id": 303, "institution": { - "id": 298, - "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 298, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100122", + "name": "PharmGKB Drug at Stanford", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.pharmgkb.org/", + "sampleId": "PA448710", + "urlPattern": "http://www.pharmgkb.org/drug/{$id}" } ], - "sampleId": "PA448710", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PA448710" }, { + "created": "2019-06-11T14:15:57.654+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Therapeutic Target Database (TTD) is designed to provide information about the known therapeutic protein and nucleic acid targets described in the literature, the targeted disease conditions, the pathway information and the corresponding drugs/ligands directed at each of these targets. Cross-links to other databases allow the access to information about the sequence, 3D structure, function, nomenclature, drug/ligand binding properties, drug usage and effects, and related literature for each target.", "id": 304, - "prefix": "ttd.drug", "mirId": "MIR:00000092", + "modified": "2019-06-11T14:15:57.654+0000", "name": "TTD Drug", + "namespaceEmbeddedInLui": false, "pattern": "^DAP\\d+$", - "description": "The Therapeutic Target Database (TTD) is designed to provide information about the known therapeutic protein and nucleic acid targets described in the literature, the targeted disease conditions, the pathway information and the corresponding drugs/ligands directed at each of these targets. Cross-links to other databases allow the access to information about the sequence, 3D structure, function, nomenclature, drug/ligand binding properties, drug usage and effects, and related literature for each target.", - "created": "2019-06-11T14:15:57.654+0000", - "modified": "2019-06-11T14:15:57.654+0000", + "prefix": "ttd.drug", "resources": [ { - "id": 306, - "mirId": "MIR:00100123", - "urlPattern": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDRUG.asp?ID={$id}", - "name": "Therapeutic Target Database Drug", + "deprecated": false, + "deprecationDate": null, "description": "Therapeutic Target Database Drug", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "DAP000773", - "resourceHomeUrl": "http://bidd.nus.edu.sg/group/ttd/ttd.asp", + "id": 306, "institution": { - "id": 305, - "name": "Computational Science Department, National University of Singapore", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 305, "location": { "countryCode": "SG", "countryName": "Singapore" - } + }, + "name": "Computational Science Department, National University of Singapore", + "rorId": null }, "location": { "countryCode": "SG", "countryName": "Singapore" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100123", + "name": "Therapeutic Target Database Drug", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bidd.nus.edu.sg/group/ttd/ttd.asp", + "sampleId": "DAP000773", + "urlPattern": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDRUG.asp?ID={$id}" } ], - "sampleId": "DAP000773", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "DAP000773" }, { + "created": "2019-06-11T14:15:57.896+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Therapeutic Target Database (TTD) is designed to provide information about the known therapeutic protein and nucleic acid targets described in the literature, the targeted disease conditions, the pathway information and the corresponding drugs/ligands directed at each of these targets. Cross-links to other databases are also introduced to facilitate the access of information about the sequence, 3D structure, function, nomenclature, drug/ligand binding properties, drug usage and effects, and related literature for each target.", "id": 307, - "prefix": "ttd.target", "mirId": "MIR:00000093", + "modified": "2019-06-11T14:15:57.896+0000", "name": "TTD Target", + "namespaceEmbeddedInLui": false, "pattern": "^TTDS\\d+$", - "description": "The Therapeutic Target Database (TTD) is designed to provide information about the known therapeutic protein and nucleic acid targets described in the literature, the targeted disease conditions, the pathway information and the corresponding drugs/ligands directed at each of these targets. Cross-links to other databases are also introduced to facilitate the access of information about the sequence, 3D structure, function, nomenclature, drug/ligand binding properties, drug usage and effects, and related literature for each target.", - "created": "2019-06-11T14:15:57.896+0000", - "modified": "2019-06-11T14:15:57.896+0000", + "prefix": "ttd.target", "resources": [ { - "id": 308, - "mirId": "MIR:00100124", - "urlPattern": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDetail.asp?ID={$id}", - "name": "Therapeutic Target Database Target", + "deprecated": false, + "deprecationDate": null, "description": "Therapeutic Target Database Target", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "TTDS00056", - "resourceHomeUrl": "http://bidd.nus.edu.sg/group/ttd/ttd.asp", + "id": 308, "institution": { - "id": 305, - "name": "Computational Science Department, National University of Singapore", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 305, "location": { "countryCode": "SG", "countryName": "Singapore" - } + }, + "name": "Computational Science Department, National University of Singapore", + "rorId": null }, "location": { "countryCode": "SG", "countryName": "Singapore" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100124", + "name": "Therapeutic Target Database Target", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bidd.nus.edu.sg/group/ttd/ttd.asp", + "sampleId": "TTDS00056", + "urlPattern": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDetail.asp?ID={$id}" } ], - "sampleId": "TTDS00056", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "TTDS00056" }, { + "created": "2019-06-11T14:15:58.106+0000", + "deprecated": false, + "deprecationDate": null, + "description": "NeuronDB provides a dynamically searchable database of three types of neuronal properties: voltage gated conductances, neurotransmitter receptors, and neurotransmitter substances. It contains tools that provide for integration of these properties in a given type of neuron and compartment, and for comparison of properties across different types of neurons and compartments.", "id": 309, - "prefix": "neurondb", "mirId": "MIR:00000094", + "modified": "2019-06-11T14:15:58.106+0000", "name": "NeuronDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "NeuronDB provides a dynamically searchable database of three types of neuronal properties: voltage gated conductances, neurotransmitter receptors, and neurotransmitter substances. It contains tools that provide for integration of these properties in a given type of neuron and compartment, and for comparison of properties across different types of neurons and compartments.", - "created": "2019-06-11T14:15:58.106+0000", - "modified": "2019-06-11T14:15:58.106+0000", + "prefix": "neurondb", "resources": [ { - "id": 311, - "mirId": "MIR:00100125", - "urlPattern": "http://senselab.med.yale.edu/NeuronDB/NeuronProp.aspx?id={$id}", - "name": "NeuronDB at SenseLab", + "deprecated": false, + "deprecationDate": null, "description": "NeuronDB at SenseLab", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "265", - "resourceHomeUrl": "http://senselab.med.yale.edu/NeuronDB/", + "id": 311, "institution": { - "id": 310, - "name": "Yale University School of Medicine", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 310, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Yale University School of Medicine", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100125", + "name": "NeuronDB at SenseLab", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://senselab.med.yale.edu/NeuronDB/", + "sampleId": "265", + "urlPattern": "http://senselab.med.yale.edu/NeuronDB/NeuronProp.aspx?id={$id}" } ], - "sampleId": "265", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "265" }, { + "created": "2019-06-11T14:15:58.342+0000", + "deprecated": false, + "deprecationDate": null, + "description": "NeuroMorpho.Org is a centrally curated inventory of digitally reconstructed neurons.", "id": 312, - "prefix": "neuromorpho", "mirId": "MIR:00000095", + "modified": "2019-06-11T14:15:58.342+0000", "name": "NeuroMorpho", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "NeuroMorpho.Org is a centrally curated inventory of digitally reconstructed neurons.", - "created": "2019-06-11T14:15:58.342+0000", - "modified": "2019-06-11T14:15:58.342+0000", + "prefix": "neuromorpho", "resources": [ { - "id": 314, - "mirId": "MIR:00100126", - "urlPattern": "http://neuromorpho.org/neuron_info.jsp?neuron_name={$id}", - "name": "NeuroMorpho", + "deprecated": false, + "deprecationDate": null, "description": "NeuroMorpho", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Rosa2", - "resourceHomeUrl": "http://neuromorpho.org/index.jsp", + "id": 314, "institution": { - "id": 313, - "name": "Krasnow Institute, Virginia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 313, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Krasnow Institute, Virginia", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100126", + "name": "NeuroMorpho", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://neuromorpho.org/index.jsp", + "sampleId": "Rosa2", + "urlPattern": "http://neuromorpho.org/neuron_info.jsp?neuron_name={$id}" } ], - "sampleId": "Rosa2", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Rosa2" }, { + "created": "2019-06-11T14:15:58.577+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ChemIDplus is a web-based search system that provides access to structure and nomenclature authority files used for the identification of chemical substances cited in National Library of Medicine (NLM) databases. It also provides structure searching and direct links to many biomedical resources at NLM and on the Internet for chemicals of interest.", "id": 315, - "prefix": "chemidplus", "mirId": "MIR:00000096", + "modified": "2019-06-11T14:15:58.577+0000", "name": "ChemIDplus", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+\\-\\d+\\-\\d+$", - "description": "ChemIDplus is a web-based search system that provides access to structure and nomenclature authority files used for the identification of chemical substances cited in National Library of Medicine (NLM) databases. It also provides structure searching and direct links to many biomedical resources at NLM and on the Internet for chemicals of interest.", - "created": "2019-06-11T14:15:58.577+0000", - "modified": "2019-06-11T14:15:58.577+0000", + "prefix": "chemidplus", "resources": [ { - "id": 317, - "mirId": "MIR:00100127", - "urlPattern": "https://chem.nlm.nih.gov/chemidplus/rn/{$id}", - "name": "ChemIDplus at National Library of Medicine", + "deprecated": false, + "deprecationDate": null, "description": "ChemIDplus at National Library of Medicine", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "57-27-2", - "resourceHomeUrl": "https://chem.nlm.nih.gov/chemidplus/chemidheavy.jsp", + "id": 317, "institution": { - "id": 316, - "name": "National Library of Medicine, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 316, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Library of Medicine, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100127", + "name": "ChemIDplus at National Library of Medicine", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://chem.nlm.nih.gov/chemidplus/chemidheavy.jsp", + "sampleId": "57-27-2", + "urlPattern": "https://chem.nlm.nih.gov/chemidplus/rn/{$id}" } ], - "sampleId": "57-27-2", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "57-27-2" }, { + "created": "2019-06-11T14:15:58.906+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The NCBI BioSystems database centralizes and cross-links existing biological systems databases, increasing their utility and target audience by integrating their pathways and systems into NCBI resources.", "id": 318, - "prefix": "biosystems", "mirId": "MIR:00000097", + "modified": "2019-06-11T14:15:58.906+0000", "name": "BioSystems", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The NCBI BioSystems database centralizes and cross-links existing biological systems databases, increasing their utility and target audience by integrating their pathways and systems into NCBI resources.", - "created": "2019-06-11T14:15:58.906+0000", - "modified": "2019-06-11T14:15:58.906+0000", + "prefix": "biosystems", "resources": [ { - "id": 319, - "mirId": "MIR:00100128", - "urlPattern": "https://www.ncbi.nlm.nih.gov/biosystems/{$id}", - "name": "BioSystems database at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "BioSystems database at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "001", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/biosystems/", + "id": 319, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100128", + "name": "BioSystems database at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/biosystems/", + "sampleId": "001", + "urlPattern": "https://www.ncbi.nlm.nih.gov/biosystems/{$id}" } ], - "sampleId": "001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "001" }, { + "created": "2019-06-11T14:15:59.108+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Comparative Toxicogenomics Database (CTD) presents scientifically reviewed and curated information on chemicals, relevant genes and proteins, and their interactions in vertebrates and invertebrates. It integrates sequence, reference, species, microarray, and general toxicology information to provide a unique centralized resource for toxicogenomic research. The database also provides visualization capabilities that enable cross-species comparisons of gene and protein sequences.", "id": 320, - "prefix": "ctd.chemical", "mirId": "MIR:00000098", + "modified": "2019-06-11T14:15:59.108+0000", "name": "CTD Chemical", + "namespaceEmbeddedInLui": false, "pattern": "^[CD]\\d+$", - "description": "The Comparative Toxicogenomics Database (CTD) presents scientifically reviewed and curated information on chemicals, relevant genes and proteins, and their interactions in vertebrates and invertebrates. It integrates sequence, reference, species, microarray, and general toxicology information to provide a unique centralized resource for toxicogenomic research. The database also provides visualization capabilities that enable cross-species comparisons of gene and protein sequences.", - "created": "2019-06-11T14:15:59.108+0000", - "modified": "2019-06-11T14:15:59.108+0000", + "prefix": "ctd.chemical", "resources": [ { - "id": 322, - "mirId": "MIR:00100129", - "urlPattern": "http://ctdbase.org/detail.go?type=chem&acc={$id}", - "name": "Comparative Toxicogenomics Database (Chemical)", + "deprecated": false, + "deprecationDate": null, "description": "Comparative Toxicogenomics Database (Chemical)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "D001151", - "resourceHomeUrl": "http://ctdbase.org/", + "id": 322, "institution": { - "id": 321, - "name": "The Mount Desert Island Biological Laboratory", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 321, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Mount Desert Island Biological Laboratory", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100129", + "name": "Comparative Toxicogenomics Database (Chemical)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://ctdbase.org/", + "sampleId": "D001151", + "urlPattern": "http://ctdbase.org/detail.go?type=chem&acc={$id}" } ], - "sampleId": "D001151", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "D001151" }, { + "created": "2019-06-11T14:15:59.348+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Comparative Toxicogenomics Database (CTD) presents scientifically reviewed and curated information on chemicals, relevant genes and proteins, and their interactions in vertebrates and invertebrates. It integrates sequence, reference, species, microarray, and general toxicology information to provide a unique centralized resource for toxicogenomic research. The database also provides visualization capabilities that enable cross-species comparisons of gene and protein sequences.", "id": 323, - "prefix": "ctd.disease", "mirId": "MIR:00000099", + "modified": "2019-06-11T14:15:59.348+0000", "name": "CTD Disease", + "namespaceEmbeddedInLui": false, "pattern": "^D\\d+$", - "description": "The Comparative Toxicogenomics Database (CTD) presents scientifically reviewed and curated information on chemicals, relevant genes and proteins, and their interactions in vertebrates and invertebrates. It integrates sequence, reference, species, microarray, and general toxicology information to provide a unique centralized resource for toxicogenomic research. The database also provides visualization capabilities that enable cross-species comparisons of gene and protein sequences.", - "created": "2019-06-11T14:15:59.348+0000", - "modified": "2019-06-11T14:15:59.348+0000", + "prefix": "ctd.disease", "resources": [ { - "id": 324, - "mirId": "MIR:00100130", - "urlPattern": "http://ctdbase.org/detail.go?type=disease&db=MESH&acc={$id}", - "name": "Comparative Toxicogenomics Database (Disease)", + "deprecated": false, + "deprecationDate": null, "description": "Comparative Toxicogenomics Database (Disease)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "D053716", - "resourceHomeUrl": "http://ctdbase.org/", + "id": 324, "institution": { - "id": 321, - "name": "The Mount Desert Island Biological Laboratory", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 321, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Mount Desert Island Biological Laboratory", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100130", + "name": "Comparative Toxicogenomics Database (Disease)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://ctdbase.org/", + "sampleId": "D053716", + "urlPattern": "http://ctdbase.org/detail.go?type=disease&db=MESH&acc={$id}" } ], - "sampleId": "D053716", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "D053716" }, { + "created": "2019-06-11T14:15:59.547+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Comparative Toxicogenomics Database (CTD) presents scientifically reviewed and curated information on chemicals, relevant genes and proteins, and their interactions in vertebrates and invertebrates. It integrates sequence, reference, species, microarray, and general toxicology information to provide a unique centralized resource for toxicogenomic research. The database also provides visualization capabilities that enable cross-species comparisons of gene and protein sequences.", "id": 325, - "prefix": "ctd.gene", "mirId": "MIR:00000100", + "modified": "2019-06-11T14:15:59.547+0000", "name": "CTD Gene", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Comparative Toxicogenomics Database (CTD) presents scientifically reviewed and curated information on chemicals, relevant genes and proteins, and their interactions in vertebrates and invertebrates. It integrates sequence, reference, species, microarray, and general toxicology information to provide a unique centralized resource for toxicogenomic research. The database also provides visualization capabilities that enable cross-species comparisons of gene and protein sequences.", - "created": "2019-06-11T14:15:59.547+0000", - "modified": "2019-06-11T14:15:59.547+0000", + "prefix": "ctd.gene", "resources": [ { - "id": 326, - "mirId": "MIR:00100131", - "urlPattern": "http://ctdbase.org/detail.go?type=gene&acc={$id}", - "name": "Comparative Toxicogenomics Database (Gene)", + "deprecated": false, + "deprecationDate": null, "description": "Comparative Toxicogenomics Database (Gene)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "101", - "resourceHomeUrl": "http://ctdbase.org/", + "id": 326, "institution": { - "id": 321, - "name": "The Mount Desert Island Biological Laboratory", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 321, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Mount Desert Island Biological Laboratory", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100131", + "name": "Comparative Toxicogenomics Database (Gene)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://ctdbase.org/", + "sampleId": "101", + "urlPattern": "http://ctdbase.org/detail.go?type=gene&acc={$id}" } ], - "sampleId": "101", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "101" }, { + "created": "2019-06-11T14:15:59.756+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BioNumbers is a database of key numberical information that may be used in molecular biology. Along with the numbers, it contains references to the original literature, useful comments, and related numeric data.", "id": 327, - "prefix": "bionumbers", "mirId": "MIR:00000101", + "modified": "2019-06-11T14:15:59.756+0000", "name": "BioNumbers", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "BioNumbers is a database of key numberical information that may be used in molecular biology. Along with the numbers, it contains references to the original literature, useful comments, and related numeric data.", - "created": "2019-06-11T14:15:59.756+0000", - "modified": "2019-06-11T14:15:59.756+0000", + "prefix": "bionumbers", "resources": [ { - "id": 329, - "mirId": "MIR:00100132", - "urlPattern": "https://bionumbers.hms.harvard.edu/bionumber.aspx?id={$id}", - "name": "BioNumbers database", + "deprecated": false, + "deprecationDate": null, "description": "BioNumbers database", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "104674", - "resourceHomeUrl": "https://bionumbers.hms.harvard.edu", + "id": 329, "institution": { - "id": 328, - "name": "Weizmann Institute", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 328, "location": { "countryCode": "IL", "countryName": "Israel" - } + }, + "name": "Weizmann Institute", + "rorId": null }, "location": { "countryCode": "IL", "countryName": "Israel" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100132", + "name": "BioNumbers database", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://bionumbers.hms.harvard.edu", + "sampleId": "104674", + "urlPattern": "https://bionumbers.hms.harvard.edu/bionumber.aspx?id={$id}" } ], - "sampleId": "104674", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "104674" }, { + "created": "2019-06-11T14:16:00.005+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The DrugBank database is a bioinformatics and chemoinformatics resource that combines detailed drug (i.e. chemical, pharmacological and pharmaceutical) data with comprehensive drug target (i.e. sequence, structure, and pathway) information. This collection references drug information.", "id": 330, - "prefix": "drugbank", "mirId": "MIR:00000102", + "modified": "2019-06-11T14:16:00.005+0000", "name": "DrugBank", + "namespaceEmbeddedInLui": false, "pattern": "^DB\\d{5}$", - "description": "The DrugBank database is a bioinformatics and chemoinformatics resource that combines detailed drug (i.e. chemical, pharmacological and pharmaceutical) data with comprehensive drug target (i.e. sequence, structure, and pathway) information. This collection references drug information.", - "created": "2019-06-11T14:16:00.005+0000", - "modified": "2019-06-11T14:16:00.005+0000", + "prefix": "drugbank", "resources": [ { - "id": 332, - "mirId": "MIR:00100133", - "urlPattern": "http://www.drugbank.ca/drugs/{$id}", - "name": "DrugBank drug information", + "deprecated": false, + "deprecationDate": null, "description": "DrugBank drug information", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "DB00001", - "resourceHomeUrl": "http://www.drugbank.ca/", + "id": 332, "institution": { - "id": 331, - "name": "Departments of Computing Science & Biological Sciences, University of Alberta", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 331, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "Departments of Computing Science & Biological Sciences, University of Alberta", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100133", + "name": "DrugBank drug information", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.drugbank.ca/", + "sampleId": "DB00001", + "urlPattern": "http://www.drugbank.ca/drugs/{$id}" } ], - "sampleId": "DB00001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "DB00001" }, { + "created": "2019-06-11T14:16:00.251+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Toxin and Toxin Target Database (T3DB) is a bioinformatics resource that combines detailed toxin data with comprehensive toxin target information.", "id": 333, - "prefix": "t3db", "mirId": "MIR:00000103", + "modified": "2019-06-11T14:16:00.251+0000", "name": "T3DB", + "namespaceEmbeddedInLui": false, "pattern": "^T3D\\d+$", - "description": "Toxin and Toxin Target Database (T3DB) is a bioinformatics resource that combines detailed toxin data with comprehensive toxin target information.", - "created": "2019-06-11T14:16:00.251+0000", - "modified": "2019-06-11T14:16:00.251+0000", + "prefix": "t3db", "resources": [ { - "id": 335, - "mirId": "MIR:00100136", - "urlPattern": "http://www.t3db.org/toxins/{$id}", - "name": "Toxin and Toxin Target Database", + "deprecated": false, + "deprecationDate": null, "description": "Toxin and Toxin Target Database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "T3D0001", - "resourceHomeUrl": "http://www.t3db.org/", + "id": 335, "institution": { - "id": 334, - "name": "University of Alberta", - "homeUrl": "https://www.ualberta.ca", "description": "The University of Alberta in Edmonton is one of Canada's top teaching and research universities, with an international reputation for excellence across the humanities, sciences, creative arts, business, engineering and health sciences.", - "rorId": "https://ror.org/0160cpw27", + "homeUrl": "https://www.ualberta.ca", + "id": 334, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "University of Alberta", + "rorId": "https://ror.org/0160cpw27" }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100136", + "name": "Toxin and Toxin Target Database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.t3db.org/", + "sampleId": "T3D0001", + "urlPattern": "http://www.t3db.org/toxins/{$id}" } ], - "sampleId": "T3D0001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "T3D0001" }, { + "created": "2019-06-11T14:16:00.499+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Small Molecule Pathway Database (SMPDB) contains small molecule pathways found in humans, which are presented visually. All SMPDB pathways include information on the relevant organs, subcellular compartments, protein cofactors, protein locations, metabolite locations, chemical structures and protein quaternary structures. Accompanying data includes detailed descriptions and references, providing an overview of the pathway, condition or processes depicted in each diagram.", "id": 336, - "prefix": "smpdb", "mirId": "MIR:00000104", + "modified": "2019-06-11T14:16:00.499+0000", "name": "Small Molecule Pathway Database", + "namespaceEmbeddedInLui": false, "pattern": "^SMP\\d+$", - "description": "The Small Molecule Pathway Database (SMPDB) contains small molecule pathways found in humans, which are presented visually. All SMPDB pathways include information on the relevant organs, subcellular compartments, protein cofactors, protein locations, metabolite locations, chemical structures and protein quaternary structures. Accompanying data includes detailed descriptions and references, providing an overview of the pathway, condition or processes depicted in each diagram.", - "created": "2019-06-11T14:16:00.499+0000", - "modified": "2019-06-11T14:16:00.499+0000", + "prefix": "smpdb", "resources": [ { - "id": 337, - "mirId": "MIR:00100137", - "urlPattern": "http://smpdb.ca/view/{$id}", - "name": "Small Molecule Pathway Database", + "deprecated": false, + "deprecationDate": null, "description": "Small Molecule Pathway Database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "SMP00001", - "resourceHomeUrl": "https://smpdb.ca/", + "id": 337, "institution": { - "id": 334, - "name": "University of Alberta", - "homeUrl": "https://www.ualberta.ca", "description": "The University of Alberta in Edmonton is one of Canada's top teaching and research universities, with an international reputation for excellence across the humanities, sciences, creative arts, business, engineering and health sciences.", - "rorId": "https://ror.org/0160cpw27", + "homeUrl": "https://www.ualberta.ca", + "id": 334, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "University of Alberta", + "rorId": "https://ror.org/0160cpw27" }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100137", + "name": "Small Molecule Pathway Database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://smpdb.ca/", + "sampleId": "SMP00001", + "urlPattern": "http://smpdb.ca/view/{$id}" } ], - "sampleId": "SMP00001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "SMP00001" }, { + "created": "2019-06-11T14:16:00.712+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PhosphoSite is a mammalian protein database that provides information about in vivo phosphorylation sites. This datatype refers to protein-level information, providing a list of phosphorylation sites for each protein in the database.", "id": 338, - "prefix": "phosphosite.protein", "mirId": "MIR:00000105", + "modified": "2019-06-11T14:16:00.712+0000", "name": "PhosphoSite Protein", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{5}$", - "description": "PhosphoSite is a mammalian protein database that provides information about in vivo phosphorylation sites. This datatype refers to protein-level information, providing a list of phosphorylation sites for each protein in the database.", - "created": "2019-06-11T14:16:00.712+0000", - "modified": "2019-06-11T14:16:00.712+0000", + "prefix": "phosphosite.protein", "resources": [ { - "id": 340, - "mirId": "MIR:00100138", - "urlPattern": "http://www.phosphosite.org/proteinAction.do?id={$id}", - "name": "PhosphoSite", + "deprecated": false, + "deprecationDate": null, "description": "PhosphoSite", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "12300", - "resourceHomeUrl": "http://www.phosphosite.org/homeAction.do", + "id": 340, "institution": { - "id": 339, - "name": "Cell Signaling Technology, Inc.", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 339, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Cell Signaling Technology, Inc.", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100138", + "name": "PhosphoSite", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.phosphosite.org/homeAction.do", + "sampleId": "12300", + "urlPattern": "http://www.phosphosite.org/proteinAction.do?id={$id}" } ], - "sampleId": "12300", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "12300" }, { + "created": "2019-06-11T14:16:00.951+0000", + "deprecated": false, + "deprecationDate": null, + "description": "GeneDB is a genome database for prokaryotic and eukaryotic organisms and provides a portal through which data generated by the \"Pathogen Genomics\" group at the Wellcome Trust Sanger Institute and other collaborating sequencing centres can be accessed.", "id": 341, - "prefix": "genedb", "mirId": "MIR:00000106", + "modified": "2019-06-11T14:16:00.951+0000", "name": "GeneDB", + "namespaceEmbeddedInLui": false, "pattern": "^[\\w\\d\\.-]*$", - "description": "GeneDB is a genome database for prokaryotic and eukaryotic organisms and provides a portal through which data generated by the \"Pathogen Genomics\" group at the Wellcome Trust Sanger Institute and other collaborating sequencing centres can be accessed.", - "created": "2019-06-11T14:16:00.951+0000", - "modified": "2019-06-11T14:16:00.951+0000", + "prefix": "genedb", "resources": [ { - "id": 343, - "mirId": "MIR:00100139", - "urlPattern": "https://www.genedb.org/gene/{$id}", - "name": "GeneDB at Sanger Institute", + "deprecated": false, + "deprecationDate": null, "description": "GeneDB at Sanger Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "LinJ.20.0070", - "resourceHomeUrl": "https://www.genedb.org/", + "id": 343, "institution": { - "id": 342, - "name": "Pathogen Genomics, Sanger Institute and European Bioinformatics Institute", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 342, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Pathogen Genomics, Sanger Institute and European Bioinformatics Institute", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100139", + "name": "GeneDB at Sanger Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.genedb.org/", + "sampleId": "LinJ.20.0070", + "urlPattern": "https://www.genedb.org/gene/{$id}" } ], - "sampleId": "LinJ.20.0070", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "LinJ.20.0070" }, { + "created": "2019-06-11T14:16:01.178+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Terminology for Description of Dynamics (TEDDY) is an ontology for dynamical behaviours, observable dynamical phenomena, and control elements of bio-models and biological systems in Systems Biology and Synthetic Biology.", "id": 344, - "prefix": "biomodels.teddy", "mirId": "MIR:00000107", + "modified": "2019-06-11T14:16:01.178+0000", "name": "TEDDY", + "namespaceEmbeddedInLui": false, "pattern": "^TEDDY_\\d{7}$", - "description": "The Terminology for Description of Dynamics (TEDDY) is an ontology for dynamical behaviours, observable dynamical phenomena, and control elements of bio-models and biological systems in Systems Biology and Synthetic Biology.", - "created": "2019-06-11T14:16:01.178+0000", - "modified": "2019-06-11T14:16:01.178+0000", + "prefix": "biomodels.teddy", "resources": [ { - "id": 345, - "mirId": "MIR:00100140", - "urlPattern": "http://purl.bioontology.org/ontology/TEDDY/{$id}", - "name": "TEDDY through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "TEDDY through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "TEDDY_0000066", - "resourceHomeUrl": "http://teddyontology.sourceforge.net/", + "id": 345, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100140", + "name": "TEDDY through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://teddyontology.sourceforge.net/", + "sampleId": "TEDDY_0000066", + "urlPattern": "http://purl.bioontology.org/ontology/TEDDY/{$id}" }, { - "id": 346, - "mirId": "MIR:00100761", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/teddy/terms?short_form={$id}", - "name": "TEDDY though OLS", + "deprecated": false, + "deprecationDate": null, "description": "TEDDY though OLS", - "official": false, - "providerCode": "ols", - "sampleId": "TEDDY_0000066", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/teddy", + "id": 346, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100761", + "name": "TEDDY though OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/teddy", + "sampleId": "TEDDY_0000066", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/teddy/terms?short_form={$id}" } ], - "sampleId": "TEDDY_0000066", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "TEDDY_0000066" }, { + "created": "2019-06-11T14:16:01.508+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Kinetic Simulation Algorithm Ontology (KiSAO) is an ontology that describes simulation algorithms and methods used for biological kinetic models, and the relationships between them. This provides a means to unambiguously refer to simulation algorithms when describing a simulation experiment.", "id": 347, - "prefix": "biomodels.kisao", "mirId": "MIR:00000108", + "modified": "2019-06-11T14:16:01.508+0000", "name": "KiSAO", + "namespaceEmbeddedInLui": false, "pattern": "^KISAO_\\d+$", - "description": "The Kinetic Simulation Algorithm Ontology (KiSAO) is an ontology that describes simulation algorithms and methods used for biological kinetic models, and the relationships between them. This provides a means to unambiguously refer to simulation algorithms when describing a simulation experiment.", - "created": "2019-06-11T14:16:01.508+0000", - "modified": "2019-06-11T14:16:01.508+0000", + "prefix": "biomodels.kisao", "resources": [ { - "id": 348, - "mirId": "MIR:00100141", - "urlPattern": "http://purl.bioontology.org/ontology/KISAO/kisao:{$id}", - "name": "KiSAO via NCBO's Bioportal", + "deprecated": false, + "deprecationDate": null, "description": "KiSAO via NCBO's Bioportal", - "official": false, - "providerCode": "bptl", - "sampleId": "KISAO_0000057", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/KISAO", + "id": 348, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100141", + "name": "KiSAO via NCBO's Bioportal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/KISAO", + "sampleId": "KISAO_0000057", + "urlPattern": "http://purl.bioontology.org/ontology/KISAO/kisao:{$id}" }, { - "id": 349, - "mirId": "MIR:00100757", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/kisao/terms?short_form={$id}", - "name": "KiSAO through OLS", + "deprecated": false, + "deprecationDate": null, "description": "KiSAO through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "KISAO_0000057", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/kisao", + "id": 349, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100757", + "name": "KiSAO through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/kisao", + "sampleId": "KISAO_0000057", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/kisao/terms?short_form={$id}" } ], - "sampleId": "KISAO_0000057", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "KISAO_0000057" }, { + "created": "2019-06-11T14:16:02.066+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Cell Ontology is designed as a structured controlled vocabulary for cell types. The ontology was constructed for use by the model organism and other bioinformatics databases, incorporating cell types from prokaryotes to mammals, and includes plants and fungi.", "id": 352, - "prefix": "cl", "mirId": "MIR:00000110", + "modified": "2019-06-11T14:16:02.066+0000", "name": "Cell Type Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^CL:\\d{7}$", - "description": "The Cell Ontology is designed as a structured controlled vocabulary for cell types. The ontology was constructed for use by the model organism and other bioinformatics databases, incorporating cell types from prokaryotes to mammals, and includes plants and fungi.", - "created": "2019-06-11T14:16:02.066+0000", - "modified": "2019-06-11T14:16:02.066+0000", + "prefix": "cl", "resources": [ { - "id": 353, - "mirId": "MIR:00100143", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/cl/terms?obo_id=CL:{$id}", - "name": "Cell Type Ontology through OLS", + "deprecated": false, + "deprecationDate": null, "description": "Cell Type Ontology through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0000232", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/cl", + "id": 353, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100143", + "name": "Cell Type Ontology through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/cl", + "sampleId": "0000232", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/cl/terms?obo_id=CL:{$id}" }, { - "id": 354, - "mirId": "MIR:00100234", - "urlPattern": "http://purl.bioontology.org/ontology/CL/CL:{$id}", - "name": "Cell Type Ontology through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "Cell Type Ontology through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "0000232", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/CL", + "id": 354, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100234", + "name": "Cell Type Ontology through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/CL", + "sampleId": "0000232", + "urlPattern": "http://purl.bioontology.org/ontology/CL/CL:{$id}" } ], - "sampleId": "0000232", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0000232" }, { + "created": "2019-06-11T14:16:02.399+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Brenda tissue ontology is a structured controlled vocabulary eastablished to identify the source of an enzyme cited in the Brenda enzyme database. It comprises terms of tissues, cell lines, cell types and cell cultures from uni- and multicellular organisms.", "id": 355, - "prefix": "bto", "mirId": "MIR:00000111", + "modified": "2019-06-11T14:16:02.399+0000", "name": "Brenda Tissue Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^BTO:\\d{7}$", - "description": "The Brenda tissue ontology is a structured controlled vocabulary eastablished to identify the source of an enzyme cited in the Brenda enzyme database. It comprises terms of tissues, cell lines, cell types and cell cultures from uni- and multicellular organisms.", - "created": "2019-06-11T14:16:02.399+0000", - "modified": "2019-06-11T14:16:02.399+0000", + "prefix": "bto", "resources": [ { - "id": 356, - "mirId": "MIR:00100144", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/bto/terms?obo_id=BTO:{$id}", - "name": "Brenda Tissue Ontology through OLS", + "deprecated": false, + "deprecationDate": null, "description": "Brenda Tissue Ontology through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0000146", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/bto", + "id": 356, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100144", + "name": "Brenda Tissue Ontology through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/bto", + "sampleId": "0000146", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/bto/terms?obo_id=BTO:{$id}" }, { - "id": 357, - "mirId": "MIR:00100233", - "urlPattern": "http://purl.bioontology.org/ontology/BTO/BTO:{$id}", - "name": "Brenda Tissue Ontology through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "Brenda Tissue Ontology through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "0000146", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/BTO", + "id": 357, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100233", + "name": "Brenda Tissue Ontology through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/BTO", + "sampleId": "0000146", + "urlPattern": "http://purl.bioontology.org/ontology/BTO/BTO:{$id}" } ], - "sampleId": "0000146", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0000146" }, { + "created": "2019-06-11T14:16:02.730+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PATO is an ontology of phenotypic qualities, intended for use in a number of applications, primarily defining composite phenotypes and phenotype annotation.", "id": 358, - "prefix": "pato", "mirId": "MIR:00000112", + "modified": "2019-06-11T14:16:02.730+0000", "name": "PATO", + "namespaceEmbeddedInLui": true, "pattern": "^PATO:\\d{7}$", - "description": "PATO is an ontology of phenotypic qualities, intended for use in a number of applications, primarily defining composite phenotypes and phenotype annotation.", - "created": "2019-06-11T14:16:02.730+0000", - "modified": "2019-06-11T14:16:02.730+0000", + "prefix": "pato", "resources": [ { - "id": 359, - "mirId": "MIR:00100145", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/pato/terms?obo_id=PATO:{$id}", - "name": "PATO through OLS", + "deprecated": false, + "deprecationDate": null, "description": "PATO through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0001998", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/pato", + "id": 359, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100145", + "name": "PATO through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/pato", + "sampleId": "0001998", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/pato/terms?obo_id=PATO:{$id}" }, { - "id": 360, - "mirId": "MIR:00100238", - "urlPattern": "http://purl.bioontology.org/ontology/PATO/PATO:{$id}", - "name": "PATO through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "PATO through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "0001998", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PATO", + "id": 360, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100238", + "name": "PATO through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PATO", + "sampleId": "0001998", + "urlPattern": "http://purl.bioontology.org/ontology/PATO/PATO:{$id}" } ], - "sampleId": "0001998", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0001998" }, { + "created": "2019-06-11T14:16:03.054+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Chemical Component Dictionary is as an external reference file describing all residue and small molecule components found in Protein Data Bank entries. It contains detailed chemical descriptions for standard and modified amino acids/nucleotides, small molecule ligands, and solvent molecules. Each chemical definition includes descriptions of chemical properties such as stereochemical assignments, aromatic bond assignments, idealized coordinates, chemical descriptors (SMILES & InChI), and systematic chemical names.", "id": 361, - "prefix": "pdb-ccd", "mirId": "MIR:00000113", + "modified": "2019-06-11T14:16:03.054+0000", "name": "Chemical Component Dictionary", + "namespaceEmbeddedInLui": false, "pattern": "^\\w{3}$", - "description": "The Chemical Component Dictionary is as an external reference file describing all residue and small molecule components found in Protein Data Bank entries. It contains detailed chemical descriptions for standard and modified amino acids/nucleotides, small molecule ligands, and solvent molecules. Each chemical definition includes descriptions of chemical properties such as stereochemical assignments, aromatic bond assignments, idealized coordinates, chemical descriptors (SMILES & InChI), and systematic chemical names.", - "created": "2019-06-11T14:16:03.054+0000", - "modified": "2019-06-11T14:16:03.054+0000", + "prefix": "pdb-ccd", "resources": [ { - "id": 362, - "mirId": "MIR:00100146", - "urlPattern": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/chemicalCompound/show/{$id}", - "name": "Protein Data Bank Chemical Component Dictionary at EBI", + "deprecated": false, + "deprecationDate": null, "description": "Protein Data Bank Chemical Component Dictionary at EBI", - "official": false, - "providerCode": "ebi", - "sampleId": "AB0", - "resourceHomeUrl": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/", + "id": 362, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100146", + "name": "Protein Data Bank Chemical Component Dictionary at EBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/", + "sampleId": "AB0", + "urlPattern": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/chemicalCompound/show/{$id}" } ], - "sampleId": "AB0", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AB0" }, { + "created": "2019-06-11T14:16:03.253+0000", + "deprecated": false, + "deprecationDate": null, + "description": "GlycomeDB is the result of a systematic data integration effort, and provides an overview of all carbohydrate structures available in public databases, as well as cross-links.", "id": 363, - "prefix": "glycomedb", "mirId": "MIR:00000114", + "modified": "2019-06-11T14:16:03.253+0000", "name": "GlycomeDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "GlycomeDB is the result of a systematic data integration effort, and provides an overview of all carbohydrate structures available in public databases, as well as cross-links.", - "created": "2019-06-11T14:16:03.253+0000", - "modified": "2019-06-11T14:16:03.253+0000", + "prefix": "glycomedb", "resources": [ { - "id": 365, - "mirId": "MIR:00100147", - "urlPattern": "https://glytoucan.org/Structures/Glycans/{$id}", - "name": "GlycomeDB carbohydrate structure database", + "deprecated": false, + "deprecationDate": null, "description": "GlycomeDB carbohydrate structure database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "G77500AY", - "resourceHomeUrl": "https://glytoucan.org/", + "id": 365, "institution": { - "id": 364, - "name": "German Cancer Research Center, Heidelberg", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 364, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "German Cancer Research Center, Heidelberg", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100147", + "name": "GlycomeDB carbohydrate structure database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://glytoucan.org/", + "sampleId": "G77500AY", + "urlPattern": "https://glytoucan.org/Structures/Glycans/{$id}" } ], - "sampleId": "G77500AY", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "G77500AY" }, { + "created": "2019-06-11T14:16:03.490+0000", + "deprecated": false, + "deprecationDate": null, + "description": "LipidBank is an open, publicly free database of natural lipids including fatty acids, glycerolipids, sphingolipids, steroids, and various vitamins.", "id": 366, - "prefix": "lipidbank", "mirId": "MIR:00000115", + "modified": "2019-06-11T14:16:03.490+0000", "name": "LipidBank", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+\\d+$", - "description": "LipidBank is an open, publicly free database of natural lipids including fatty acids, glycerolipids, sphingolipids, steroids, and various vitamins.", - "created": "2019-06-11T14:16:03.490+0000", - "modified": "2019-06-11T14:16:03.490+0000", + "prefix": "lipidbank", "resources": [ { - "id": 368, - "mirId": "MIR:00100148", - "urlPattern": "http://lipidbank.jp/cgi-bin/detail.cgi?id={$id}", - "name": "LipidBank the Lipid database", + "deprecated": false, + "deprecationDate": null, "description": "LipidBank the Lipid database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "BBA0001", - "resourceHomeUrl": "http://lipidbank.jp/index.html", + "id": 368, "institution": { - "id": 367, - "name": "Department of Computational Biology, University of Tokyo, Tokyo", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 367, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Department of Computational Biology, University of Tokyo, Tokyo", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100148", + "name": "LipidBank the Lipid database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://lipidbank.jp/index.html", + "sampleId": "BBA0001", + "urlPattern": "http://lipidbank.jp/cgi-bin/detail.cgi?id={$id}" } ], - "sampleId": "BBA0001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "BBA0001" }, { + "created": "2019-06-11T14:16:03.735+0000", + "deprecated": false, + "deprecationDate": null, + "description": "KEGG Orthology (KO) consists of manually defined, generalised ortholog groups that correspond to KEGG pathway nodes and BRITE hierarchy nodes in all organisms.", "id": 369, - "prefix": "kegg.orthology", "mirId": "MIR:00000116", + "modified": "2019-06-11T14:16:03.735+0000", "name": "KEGG Orthology", + "namespaceEmbeddedInLui": false, "pattern": "^K\\d+$", - "description": "KEGG Orthology (KO) consists of manually defined, generalised ortholog groups that correspond to KEGG pathway nodes and BRITE hierarchy nodes in all organisms.", - "created": "2019-06-11T14:16:03.735+0000", - "modified": "2019-06-11T14:16:03.735+0000", + "prefix": "kegg.orthology", "resources": [ { - "id": 370, - "mirId": "MIR:00100149", - "urlPattern": "http://www.kegg.jp/entry/{$id}", - "name": "KEGG Orthology Database", + "deprecated": false, + "deprecationDate": null, "description": "KEGG Orthology Database", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "K00001", - "resourceHomeUrl": "http://www.genome.jp/kegg/ko.html", + "id": 370, "institution": { - "id": 367, - "name": "Department of Computational Biology, University of Tokyo, Tokyo", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 367, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Department of Computational Biology, University of Tokyo, Tokyo", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100149", + "name": "KEGG Orthology Database", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.genome.jp/kegg/ko.html", + "sampleId": "K00001", + "urlPattern": "http://www.kegg.jp/entry/{$id}" } ], - "sampleId": "K00001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "K00001" }, { + "created": "2019-06-11T14:16:03.923+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ProDom is a database of protein domain families generated from the global comparison of all available protein sequences.", "id": 371, - "prefix": "prodom", "mirId": "MIR:00000117", + "modified": "2019-06-11T14:16:03.923+0000", "name": "ProDom", + "namespaceEmbeddedInLui": false, "pattern": "^PD\\d+$", - "description": "ProDom is a database of protein domain families generated from the global comparison of all available protein sequences.", - "created": "2019-06-11T14:16:03.923+0000", - "modified": "2019-06-11T14:16:03.923+0000", + "prefix": "prodom", "resources": [ { - "id": 373, - "mirId": "MIR:00100150", - "urlPattern": "http://prodom.prabi.fr/prodom/current/cgi-bin/request.pl?question=DBEN&query={$id}", - "name": "ProDom Protein Domain Database", + "deprecated": false, + "deprecationDate": null, "description": "ProDom Protein Domain Database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PD10000", - "resourceHomeUrl": "http://prodom.prabi.fr/prodom/current/html/home.php", + "id": 373, "institution": { - "id": 372, - "name": "Laboratoire des Interactions Plantes-Microorganismes, INRA/CNRS", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 372, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Laboratoire des Interactions Plantes-Microorganismes, INRA/CNRS", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100150", + "name": "ProDom Protein Domain Database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://prodom.prabi.fr/prodom/current/html/home.php", + "sampleId": "PD10000", + "urlPattern": "http://prodom.prabi.fr/prodom/current/cgi-bin/request.pl?question=DBEN&query={$id}" } ], - "sampleId": "PD10000", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PD10000" }, { + "created": "2019-06-11T14:16:04.151+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Simple Modular Architecture Research Tool (SMART) is an online tool for the identification and annotation of protein domains, and the analysis of domain architectures.", "id": 374, - "prefix": "smart", "mirId": "MIR:00000118", + "modified": "2019-06-11T14:16:04.151+0000", "name": "SMART", + "namespaceEmbeddedInLui": false, "pattern": "^SM\\d{5}$", - "description": "The Simple Modular Architecture Research Tool (SMART) is an online tool for the identification and annotation of protein domains, and the analysis of domain architectures.", - "created": "2019-06-11T14:16:04.151+0000", - "modified": "2019-06-11T14:16:04.151+0000", + "prefix": "smart", "resources": [ { - "id": 376, - "mirId": "MIR:00100151", - "urlPattern": "http://smart.embl-heidelberg.de/smart/do_annotation.pl?DOMAIN={$id}", - "name": "SMART (Simple Modular Architecture Research Tool)", + "deprecated": false, + "deprecationDate": null, "description": "SMART (Simple Modular Architecture Research Tool)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "SM00015", - "resourceHomeUrl": "http://smart.embl-heidelberg.de/", + "id": 376, "institution": { - "id": 375, - "name": "EMBL, Heidelberg", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 375, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "EMBL, Heidelberg", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100151", + "name": "SMART (Simple Modular Architecture Research Tool)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://smart.embl-heidelberg.de/", + "sampleId": "SM00015", + "urlPattern": "http://smart.embl-heidelberg.de/smart/do_annotation.pl?DOMAIN={$id}" } ], - "sampleId": "SM00015", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "SM00015" }, { + "created": "2019-06-11T14:16:04.400+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Conserved Domain Database (CDD) is a collection of multiple sequence alignments and derived database search models, which represent protein domains conserved in molecular evolution.", "id": 377, - "prefix": "cdd", "mirId": "MIR:00000119", + "modified": "2019-06-11T14:16:04.400+0000", "name": "Conserved Domain Database", + "namespaceEmbeddedInLui": false, "pattern": "^(cd)?\\d{5}$", - "description": "The Conserved Domain Database (CDD) is a collection of multiple sequence alignments and derived database search models, which represent protein domains conserved in molecular evolution.", - "created": "2019-06-11T14:16:04.400+0000", - "modified": "2019-06-11T14:16:04.400+0000", + "prefix": "cdd", "resources": [ { - "id": 379, - "mirId": "MIR:00100152", - "urlPattern": "https://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid={$id}", - "name": "Conserved Domain Database at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "Conserved Domain Database at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "cd00400", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=cdd", + "id": 379, "institution": { - "id": 378, - "name": "National Library of Medicine, National Institutes of Health, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 378, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Library of Medicine, National Institutes of Health, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100152", + "name": "Conserved Domain Database at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=cdd", + "sampleId": "cd00400", + "urlPattern": "https://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid={$id}" } ], - "sampleId": "cd00400", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "cd00400" }, { + "created": "2019-06-11T14:16:04.654+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The OBO Relation Ontology provides consistent and unambiguous formal definitions of the relational expressions used in biomedical ontologies.", "id": 380, - "prefix": "ro", "mirId": "MIR:00000120", + "modified": "2019-06-11T14:16:04.654+0000", "name": "Relation Ontology", + "namespaceEmbeddedInLui": false, "pattern": "^RO_\\d{7}$", - "description": "The OBO Relation Ontology provides consistent and unambiguous formal definitions of the relational expressions used in biomedical ontologies.", - "created": "2019-06-11T14:16:04.654+0000", - "modified": "2019-06-11T14:16:04.654+0000", + "prefix": "ro", "resources": [ { - "id": 382, - "mirId": "MIR:00100764", - "urlPattern": "http://purl.obolibrary.org/obo/{$id}", - "name": "OBO Relation Ontology through OntoBee", + "deprecated": false, + "deprecationDate": null, "description": "OBO Relation Ontology through OntoBee", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "RO_0002533", - "resourceHomeUrl": "http://obofoundry.org/ontology/ro.html", + "id": 382, "institution": { - "id": 381, - "name": "University of Michigan Medical School (MI), Lawrence Berkeley National Laboratory (CA) and Science Commons (MA)", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 381, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Michigan Medical School (MI), Lawrence Berkeley National Laboratory (CA) and Science Commons (MA)", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100764", + "name": "OBO Relation Ontology through OntoBee", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://obofoundry.org/ontology/ro.html", + "sampleId": "RO_0002533", + "urlPattern": "http://purl.obolibrary.org/obo/{$id}" }, { - "id": 383, - "mirId": "MIR:00100767", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ro/terms?short_form={$id}", - "name": "OBO Relation Ontology through OLS", + "deprecated": false, + "deprecationDate": null, "description": "OBO Relation Ontology through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "RO_0002533", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ro", + "id": 383, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100767", + "name": "OBO Relation Ontology through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ro", + "sampleId": "RO_0002533", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ro/terms?short_form={$id}" } ], - "sampleId": "RO_0002533", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "RO_0002533" }, { + "created": "2019-06-11T14:16:05.062+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Molecular Modeling Database (MMDB) is a database of experimentally determined structures obtained from the Protein Data Bank (PDB). Since structures are known for a large fraction of all protein families, structure homologs may facilitate inference of biological function, or the identification of binding or catalytic sites.", "id": 384, - "prefix": "mmdb", "mirId": "MIR:00000121", + "modified": "2019-06-11T14:16:05.062+0000", "name": "Molecular Modeling Database", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{1,5}$", - "description": "The Molecular Modeling Database (MMDB) is a database of experimentally determined structures obtained from the Protein Data Bank (PDB). Since structures are known for a large fraction of all protein families, structure homologs may facilitate inference of biological function, or the identification of binding or catalytic sites.", - "created": "2019-06-11T14:16:05.062+0000", - "modified": "2019-06-11T14:16:05.062+0000", + "prefix": "mmdb", "resources": [ { - "id": 385, - "mirId": "MIR:00100154", - "urlPattern": "http://www.ncbi.nlm.nih.gov/Structure/mmdb/mmdbsrv.cgi?uid={$id}", - "name": "MMDB at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "MMDB at NCBI", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "50885", - "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/sites/entrez?db=structure", + "id": 385, "institution": { - "id": 378, - "name": "National Library of Medicine, National Institutes of Health, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 378, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Library of Medicine, National Institutes of Health, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100154", + "name": "MMDB at NCBI", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/sites/entrez?db=structure", + "sampleId": "50885", + "urlPattern": "http://www.ncbi.nlm.nih.gov/Structure/mmdb/mmdbsrv.cgi?uid={$id}" } ], - "sampleId": "50885", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "50885" }, { + "created": "2019-06-11T14:16:05.272+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The International Molecular Exchange (IMEx) is a consortium of molecular interaction databases which collaborate to share manual curation efforts and provide accessibility to multiple information sources.", "id": 386, - "prefix": "imex", "mirId": "MIR:00000122", + "modified": "2019-06-11T14:16:05.272+0000", "name": "IMEx", + "namespaceEmbeddedInLui": false, "pattern": "^IM-\\d+(-?)(\\d+?)$", - "description": "The International Molecular Exchange (IMEx) is a consortium of molecular interaction databases which collaborate to share manual curation efforts and provide accessibility to multiple information sources.", - "created": "2019-06-11T14:16:05.272+0000", - "modified": "2019-06-11T14:16:05.272+0000", + "prefix": "imex", "resources": [ { - "id": 387, - "mirId": "MIR:00100155", - "urlPattern": "https://www.ebi.ac.uk/intact/imex/main.xhtml?query={$id}", - "name": "IMEx Consortium running at EBI", + "deprecated": false, + "deprecationDate": null, "description": "IMEx Consortium running at EBI", - "official": false, - "providerCode": "ebi", - "sampleId": "IM-19210-3", - "resourceHomeUrl": "https://www.imexconsortium.org/", + "id": 387, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100155", + "name": "IMEx Consortium running at EBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.imexconsortium.org/", + "sampleId": "IM-19210-3", + "urlPattern": "https://www.ebi.ac.uk/intact/imex/main.xhtml?query={$id}" }, { - "id": 388, - "mirId": "MIR:00100663", - "urlPattern": "https://imexcentral.org/icentral/imex/rec/{$id}", - "name": "IMEx Consortium though Intact", + "deprecated": false, + "deprecationDate": null, "description": "IMEx Consortium though Intact", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "IM-19210-3", - "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", + "id": 388, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100663", + "name": "IMEx Consortium though Intact", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", + "sampleId": "IM-19210-3", + "urlPattern": "https://imexcentral.org/icentral/imex/rec/{$id}" } ], - "sampleId": "IM-19210-3", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "IM-19210-3" }, { + "created": "2019-06-11T14:16:05.614+0000", + "deprecated": false, + "deprecationDate": null, + "description": "iRefWeb is an interface to a relational database containing the latest build of the interaction Reference Index (iRefIndex) which integrates protein interaction data from ten different interaction databases: BioGRID, BIND, CORUM, DIP, HPRD, INTACT, MINT, MPPI, MPACT and OPHID. In addition, iRefWeb associates interactions with the PubMed record from which they are derived.", "id": 389, - "prefix": "irefweb", "mirId": "MIR:00000123", + "modified": "2019-06-11T14:16:05.614+0000", "name": "iRefWeb", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "iRefWeb is an interface to a relational database containing the latest build of the interaction Reference Index (iRefIndex) which integrates protein interaction data from ten different interaction databases: BioGRID, BIND, CORUM, DIP, HPRD, INTACT, MINT, MPPI, MPACT and OPHID. In addition, iRefWeb associates interactions with the PubMed record from which they are derived.", - "created": "2019-06-11T14:16:05.614+0000", - "modified": "2019-06-11T14:16:05.614+0000", + "prefix": "irefweb", "resources": [ { - "id": 391, - "mirId": "MIR:00100156", - "urlPattern": "http://wodaklab.org/iRefWeb/interaction/show/{$id}", - "name": "iRefWeb Protein Interaction Reference Index", + "deprecated": false, + "deprecationDate": null, "description": "iRefWeb Protein Interaction Reference Index", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "617102", - "resourceHomeUrl": "http://wodaklab.org/iRefWeb/", + "id": 391, "institution": { - "id": 390, - "name": "Wodak Lab, Hospital for Sick Children, Toronto", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 390, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "Wodak Lab, Hospital for Sick Children, Toronto", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100156", + "name": "iRefWeb Protein Interaction Reference Index", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://wodaklab.org/iRefWeb/", + "sampleId": "617102", + "urlPattern": "http://wodaklab.org/iRefWeb/interaction/show/{$id}" } ], - "sampleId": "617102", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "617102" }, { + "created": "2019-06-11T14:16:05.849+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The microbial protein interaction database (MPIDB) provides physical microbial interaction data. The interactions are manually curated from the literature or imported from other databases, and are linked to supporting experimental evidence, as well as evidences based on interaction conservation, protein complex membership, and 3D domain contacts.", "id": 392, - "prefix": "mpid", "mirId": "MIR:00000124", + "modified": "2019-06-11T14:16:05.849+0000", "name": "Microbial Protein Interaction Database", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The microbial protein interaction database (MPIDB) provides physical microbial interaction data. The interactions are manually curated from the literature or imported from other databases, and are linked to supporting experimental evidence, as well as evidences based on interaction conservation, protein complex membership, and 3D domain contacts.", - "created": "2019-06-11T14:16:05.849+0000", - "modified": "2019-06-11T14:16:05.849+0000", + "prefix": "mpid", "resources": [ { - "id": 394, - "mirId": "MIR:00100157", - "urlPattern": "http://www.jcvi.org/mpidb/experiment.php?interaction_id={$id}", - "name": "Microbial Protein Interaction Database", + "deprecated": false, + "deprecationDate": null, "description": "Microbial Protein Interaction Database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "172", - "resourceHomeUrl": "http://www.jcvi.org/mpidb/about.php", + "id": 394, "institution": { - "id": 393, - "name": "J. Craig Venter Institute, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 393, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "J. Craig Venter Institute, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100157", + "name": "Microbial Protein Interaction Database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.jcvi.org/mpidb/about.php", + "sampleId": "172", + "urlPattern": "http://www.jcvi.org/mpidb/experiment.php?interaction_id={$id}" }, { - "id": 395, - "mirId": "MIR:00100655", - "urlPattern": "https://www.ebi.ac.uk/intact/query/interaction_id:MPIDB-INT-{$id}", - "name": "Microbial Protein Interaction Database subset through IntAct", + "deprecated": false, + "deprecationDate": null, "description": "Microbial Protein Interaction Database subset through IntAct", - "official": false, - "providerCode": "ebi", - "sampleId": "1776", - "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", + "id": 395, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100655", + "name": "Microbial Protein Interaction Database subset through IntAct", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", + "sampleId": "1776", + "urlPattern": "https://www.ebi.ac.uk/intact/query/interaction_id:MPIDB-INT-{$id}" } ], - "sampleId": "172", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "172" }, { + "created": "2019-06-11T14:16:06.208+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PhosphoSite is a mammalian protein database that provides information about in vivo phosphorylation sites. This datatype refers to residue-level information, providing a information about a single modification position in a specific protein sequence.", "id": 396, - "prefix": "phosphosite.residue", "mirId": "MIR:00000125", + "modified": "2019-06-11T14:16:06.208+0000", "name": "PhosphoSite Residue", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "PhosphoSite is a mammalian protein database that provides information about in vivo phosphorylation sites. This datatype refers to residue-level information, providing a information about a single modification position in a specific protein sequence.", - "created": "2019-06-11T14:16:06.208+0000", - "modified": "2019-06-11T14:16:06.208+0000", + "prefix": "phosphosite.residue", "resources": [ { - "id": 397, - "mirId": "MIR:00100159", - "urlPattern": "http://www.phosphosite.org/siteAction.do?id={$id}", - "name": "PhosphoSite Residue", + "deprecated": false, + "deprecationDate": null, "description": "PhosphoSite Residue", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2842", - "resourceHomeUrl": "http://www.phosphosite.org/homeAction.do", + "id": 397, "institution": { - "id": 339, - "name": "Cell Signaling Technology, Inc.", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 339, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Cell Signaling Technology, Inc.", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100159", + "name": "PhosphoSite Residue", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.phosphosite.org/homeAction.do", + "sampleId": "2842", + "urlPattern": "http://www.phosphosite.org/siteAction.do?id={$id}" } ], - "sampleId": "2842", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2842" }, { + "created": "2019-06-11T14:16:06.417+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The NeuroLex project is a dynamic lexicon of terms used in neuroscience. It is supported by the Neuroscience Information Framework project and incorporates information from the NIF standardised ontology (NIFSTD), and its predecessor, the Biomedical Informatics Research Network Lexicon (BIRNLex).", "id": 398, - "prefix": "neurolex", "mirId": "MIR:00000126", + "modified": "2019-06-11T14:16:06.417+0000", "name": "NeuroLex", + "namespaceEmbeddedInLui": false, "pattern": "^([Bb]irnlex_|Sao|nlx_|GO_|CogPO|HDO|nifext_)\\d+$", - "description": "The NeuroLex project is a dynamic lexicon of terms used in neuroscience. It is supported by the Neuroscience Information Framework project and incorporates information from the NIF standardised ontology (NIFSTD), and its predecessor, the Biomedical Informatics Research Network Lexicon (BIRNLex).", - "created": "2019-06-11T14:16:06.417+0000", - "modified": "2019-06-11T14:16:06.417+0000", + "prefix": "neurolex", "resources": [ { - "id": 400, - "mirId": "MIR:00100160", - "urlPattern": "http://www.neurolex.org/wiki/{$id}", - "name": "NeuroLex Neuroscience Lexicon", + "deprecated": false, + "deprecationDate": null, "description": "NeuroLex Neuroscience Lexicon", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Birnlex_721", - "resourceHomeUrl": "http://www.neurolex.org/wiki/Main_Page", + "id": 400, "institution": { - "id": 399, - "name": "Department of Neuroscience, University of California, San Diego", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 399, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Neuroscience, University of California, San Diego", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100160", + "name": "NeuroLex Neuroscience Lexicon", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.neurolex.org/wiki/Main_Page", + "sampleId": "Birnlex_721", + "urlPattern": "http://www.neurolex.org/wiki/{$id}" }, { - "id": 401, - "mirId": "MIR:00100183", - "urlPattern": "http://purl.bioontology.org/ontology/BIRNLEX/{$id}", - "name": "NeuroLex through NCBO's BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "NeuroLex through NCBO's BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "birnlex_1672", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/BIRNLEX", + "id": 401, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100183", + "name": "NeuroLex through NCBO's BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/BIRNLEX", + "sampleId": "birnlex_1672", + "urlPattern": "http://purl.bioontology.org/ontology/BIRNLEX/{$id}" } ], - "sampleId": "Birnlex_721", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Birnlex_721" }, { + "created": "2019-06-11T14:16:06.780+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Ontology for Biomedical Investigations (OBI) project is developing an integrated ontology for the description of biological and clinical investigations. The ontology will represent the design of an investigation, the protocols and instrumentation used, the material used, the data generated and the type analysis performed on it. Currently OBI is being built under the Basic Formal Ontology (BFO).", "id": 402, - "prefix": "obi", "mirId": "MIR:00000127", + "modified": "2019-06-11T14:16:06.780+0000", "name": "Ontology for Biomedical Investigations", + "namespaceEmbeddedInLui": false, "pattern": "(^OBI:\\d{7}$)|(^OBI_\\d{7}$)", - "description": "The Ontology for Biomedical Investigations (OBI) project is developing an integrated ontology for the description of biological and clinical investigations. The ontology will represent the design of an investigation, the protocols and instrumentation used, the material used, the data generated and the type analysis performed on it. Currently OBI is being built under the Basic Formal Ontology (BFO).", - "created": "2019-06-11T14:16:06.780+0000", - "modified": "2019-06-11T14:16:06.780+0000", + "prefix": "obi", "resources": [ { - "id": 404, - "mirId": "MIR:00100162", - "urlPattern": "http://purl.obolibrary.org/obo/{$id}", - "name": "OBI through Ontobee", + "deprecated": false, + "deprecationDate": null, "description": "OBI through Ontobee", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "OBI_0000070", - "resourceHomeUrl": "http://www.ontobee.org/", + "id": 404, "institution": { - "id": 403, - "name": "University of Michigan Medical School (MI), awrence Berkeley National Laboratory (CA) and Science Commons (MA)", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 403, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Michigan Medical School (MI), awrence Berkeley National Laboratory (CA) and Science Commons (MA)", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100162", + "name": "OBI through Ontobee", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.ontobee.org/", + "sampleId": "OBI_0000070", + "urlPattern": "http://purl.obolibrary.org/obo/{$id}" }, { - "id": 405, - "mirId": "MIR:00100177", - "urlPattern": "http://purl.bioontology.org/ontology/OBI/{$id}", - "name": "Ontology for Biomedical Investigations through Bioportal", + "deprecated": false, + "deprecationDate": null, "description": "Ontology for Biomedical Investigations through Bioportal", - "official": false, - "providerCode": "bptl", - "sampleId": "OBI:0000070", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/OBI", + "id": 405, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100177", + "name": "Ontology for Biomedical Investigations through Bioportal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/OBI", + "sampleId": "OBI:0000070", + "urlPattern": "http://purl.bioontology.org/ontology/OBI/{$id}" }, { - "id": 406, - "mirId": "MIR:00100760", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/obi/terms?obo_id={$id}", - "name": "OBI through OLS", + "deprecated": false, + "deprecationDate": null, "description": "OBI through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "OBI:0000070", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/obi", + "id": 406, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100760", + "name": "OBI through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/obi", + "sampleId": "OBI:0000070", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/obi/terms?obo_id={$id}" } ], - "sampleId": "OBI_0000070", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "OBI_0000070" }, { + "created": "2019-06-11T14:16:44.568+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ASAP (a systematic annotation package for community analysis of genomes) stores bacterial genome sequence and functional characterization data. It includes multiple genome sequences at various stages of analysis, corresponding experimental data and access to collections of related genome resources.", "id": 831, - "prefix": "asap", "mirId": "MIR:00000283", + "modified": "2019-06-11T14:16:44.568+0000", "name": "ASAP", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9-]+$", - "description": "ASAP (a systematic annotation package for community analysis of genomes) stores bacterial genome sequence and functional characterization data. It includes multiple genome sequences at various stages of analysis, corresponding experimental data and access to collections of related genome resources.", - "created": "2019-06-11T14:16:44.568+0000", - "modified": "2019-06-11T14:16:44.568+0000", + "prefix": "asap", "resources": [ { - "id": 833, - "mirId": "MIR:00100364", - "urlPattern": "http://asap.ahabs.wisc.edu/asap/feature_info.php?LocationID=WIS&FeatureID={$id}", - "name": "ASAP at University of Wisconsin", + "deprecated": false, + "deprecationDate": null, "description": "ASAP at University of Wisconsin", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ABE-0009634", - "resourceHomeUrl": "http://asap.ahabs.wisc.edu/asap/home.php", + "id": 833, "institution": { - "id": 2054, - "name": "University of Wisconsin-Madison", + "description": "The University of Wisconsin\u2013Madison is a public research university in Madison, Wisconsin. Founded when Wisconsin achieved statehood in 1848, UW\u2013Madison is the official state university of Wisconsin, and the flagship campus of the University of Wisconsin System.\nIt was the first public university established in Wisconsin and remains the oldest and largest public university in the state. It became a land-grant institution in 1866.\nThe 933-acre (378 ha) main campus, located on the shores of Lake Mendota, includes four National Historic Landmarks.\nThe University also owns and operates a historic 1,200-acre (486 ha) arboretum established in 1932, located 4 miles (6.4 km) south of the main campus.", "homeUrl": "https://www.wisc.edu/", - "description": "The University of Wisconsin–Madison is a public research university in Madison, Wisconsin. Founded when Wisconsin achieved statehood in 1848, UW–Madison is the official state university of Wisconsin, and the flagship campus of the University of Wisconsin System.\nIt was the first public university established in Wisconsin and remains the oldest and largest public university in the state. It became a land-grant institution in 1866.\nThe 933-acre (378 ha) main campus, located on the shores of Lake Mendota, includes four National Historic Landmarks.\nThe University also owns and operates a historic 1,200-acre (486 ha) arboretum established in 1932, located 4 miles (6.4 km) south of the main campus.", - "rorId": "https://ror.org/01y2jtd41", + "id": 2054, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Wisconsin-Madison", + "rorId": "https://ror.org/01y2jtd41" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100364", + "name": "ASAP at University of Wisconsin", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://asap.ahabs.wisc.edu/asap/home.php", + "sampleId": "ABE-0009634", + "urlPattern": "http://asap.ahabs.wisc.edu/asap/feature_info.php?LocationID=WIS&FeatureID={$id}" } ], - "sampleId": "ABE-0009634", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ABE-0009634" }, { + "created": "2019-06-11T14:16:07.366+0000", + "deprecated": false, + "deprecationDate": null, + "description": "SABIO-RK is a relational database system that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. The EC record provides for a given enzyme classification (EC) the associated list of enzyme-catalysed reactions and their corresponding kinetic data.", "id": 407, - "prefix": "sabiork.ec", "mirId": "MIR:00000128", + "modified": "2019-06-11T14:16:07.366+0000", "name": "SABIO-RK EC Record", + "namespaceEmbeddedInLui": false, "pattern": "^((\\d+)|(\\d+\\.\\d+)|(\\d+\\.\\d+\\.\\d+)|(\\d+\\.\\d+\\.\\d+\\.\\d+))$", - "description": "SABIO-RK is a relational database system that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. The EC record provides for a given enzyme classification (EC) the associated list of enzyme-catalysed reactions and their corresponding kinetic data.", - "created": "2019-06-11T14:16:07.366+0000", - "modified": "2019-06-11T14:16:07.366+0000", + "prefix": "sabiork.ec", "resources": [ { - "id": 409, - "mirId": "MIR:00100163", - "urlPattern": "http://sabiork.h-its.org/newSearch?q=ecnumber:{$id}", - "name": "SABIO-RK Reaction Kinetics Database - Enzyme Classification (EC)", + "deprecated": false, + "deprecationDate": null, "description": "SABIO-RK Reaction Kinetics Database - Enzyme Classification (EC)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2.7.1.1", - "resourceHomeUrl": "http://sabiork.h-its.org/", + "id": 409, "institution": { - "id": 408, - "name": "Heidelberg Institute for Theoretical Studies (HITS gGmbH)", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 408, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Heidelberg Institute for Theoretical Studies (HITS gGmbH)", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100163", + "name": "SABIO-RK Reaction Kinetics Database - Enzyme Classification (EC)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://sabiork.h-its.org/", + "sampleId": "2.7.1.1", + "urlPattern": "http://sabiork.h-its.org/newSearch?q=ecnumber:{$id}" } ], - "sampleId": "2.7.1.1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2.7.1.1" }, { + "created": "2019-06-11T14:16:07.624+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The OPB is a reference ontology of classical physics as applied to the dynamics of biological systems. It is designed to encompass the multiple structural scales (multiscale atoms to organisms) and multiple physical domains (multidomain fluid dynamics, chemical kinetics, particle diffusion, etc.) that are encountered in the study and analysis of biological organisms.", "id": 410, - "prefix": "opb", "mirId": "MIR:00000129", + "modified": "2019-06-11T14:16:07.624+0000", "name": "Ontology of Physics for Biology", + "namespaceEmbeddedInLui": false, "pattern": "^OPB_\\d+$", - "description": "The OPB is a reference ontology of classical physics as applied to the dynamics of biological systems. It is designed to encompass the multiple structural scales (multiscale atoms to organisms) and multiple physical domains (multidomain fluid dynamics, chemical kinetics, particle diffusion, etc.) that are encountered in the study and analysis of biological organisms.", - "created": "2019-06-11T14:16:07.624+0000", - "modified": "2019-06-11T14:16:07.624+0000", + "prefix": "opb", "resources": [ { - "id": 411, - "mirId": "MIR:00100167", - "urlPattern": "http://purl.bioontology.org/ontology/OPB?conceptid=http%3A%2F%2Fbhi.washington.edu%2FOPB%23{$id}", - "name": "Ontology of Physics for Biology through Bioportal", + "deprecated": false, + "deprecationDate": null, "description": "Ontology of Physics for Biology through Bioportal", - "official": false, - "providerCode": "bptl", - "sampleId": "OPB_00573", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/OPB", + "id": 411, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100167", + "name": "Ontology of Physics for Biology through Bioportal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/OPB", + "sampleId": "OPB_00573", + "urlPattern": "http://purl.bioontology.org/ontology/OPB?conceptid=http%3A%2F%2Fbhi.washington.edu%2FOPB%23{$id}" } ], - "sampleId": "OPB_00573", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "OPB_00573" }, { + "created": "2019-06-11T14:16:07.820+0000", + "deprecated": false, + "deprecationDate": null, + "description": "JWS Online is a repository of curated biochemical pathway models, and additionally provides the ability to run simulations of these models in a web browser.", "id": 412, - "prefix": "jws", "mirId": "MIR:00000130", + "modified": "2019-06-11T14:16:07.820+0000", "name": "JWS Online", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "JWS Online is a repository of curated biochemical pathway models, and additionally provides the ability to run simulations of these models in a web browser.", - "created": "2019-06-11T14:16:07.820+0000", - "modified": "2019-06-11T14:16:07.820+0000", + "prefix": "jws", "resources": [ { - "id": 414, - "mirId": "MIR:00100168", - "urlPattern": "http://jjj.biochem.sun.ac.za/models/{$id}/", - "name": "JWS Online Model Repository at Stellenbosch", + "deprecated": false, + "deprecationDate": null, "description": "JWS Online Model Repository at Stellenbosch", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "curien", - "resourceHomeUrl": "http://jjj.biochem.sun.ac.za/models/", + "id": 414, "institution": { - "id": 413, - "name": "Department of Biochemistry, Stellenbosch University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 413, "location": { "countryCode": "ZA", "countryName": "South Africa" - } + }, + "name": "Department of Biochemistry, Stellenbosch University", + "rorId": null }, "location": { "countryCode": "ZA", "countryName": "South Africa" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 418, - "mirId": "MIR:00100170", - "urlPattern": "http://jjj.mib.ac.uk/models/{$id}", - "name": "JWS Online Model Repository at Manchester", - "description": "JWS Online Model Repository at Manchester", + "mirId": "MIR:00100168", + "name": "JWS Online Model Repository at Stellenbosch", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://jjj.biochem.sun.ac.za/models/", "sampleId": "curien", - "resourceHomeUrl": "http://jjj.mib.ac.uk/index.html", + "urlPattern": "http://jjj.biochem.sun.ac.za/models/{$id}/" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "JWS Online Model Repository at Manchester", + "id": 418, "institution": { - "id": 417, - "name": "Manchester Interdisciplinary Biocentre, University of Manchester", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 417, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Manchester Interdisciplinary Biocentre, University of Manchester", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 416, - "mirId": "MIR:00100169", - "urlPattern": "http://jjj.bio.vu.nl/models/{$id}/", - "name": "JWS Online Model Repository at Amsterdam", - "description": "JWS Online Model Repository at Amsterdam", + "mirId": "MIR:00100170", + "name": "JWS Online Model Repository at Manchester", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://jjj.mib.ac.uk/index.html", "sampleId": "curien", - "resourceHomeUrl": "http://jjj.bio.vu.nl/models/", + "urlPattern": "http://jjj.mib.ac.uk/models/{$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "JWS Online Model Repository at Amsterdam", + "id": 416, "institution": { - "id": 415, - "name": "University of Amsterdam", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 415, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "University of Amsterdam", + "rorId": null }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100169", + "name": "JWS Online Model Repository at Amsterdam", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://jjj.bio.vu.nl/models/", + "sampleId": "curien", + "urlPattern": "http://jjj.bio.vu.nl/models/{$id}/" } ], - "sampleId": "curien", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "curien" }, { + "created": "2019-06-11T14:16:08.429+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ModelDB is a curated, searchable database of published models in the computational neuroscience domain. It accommodates models expressed in textual form, including procedural or declarative languages (e.g. C++, XML dialects) and source code written for any simulation environment.", "id": 419, - "prefix": "modeldb", "mirId": "MIR:00000131", + "modified": "2019-06-11T14:16:08.429+0000", "name": "ModelDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "ModelDB is a curated, searchable database of published models in the computational neuroscience domain. It accommodates models expressed in textual form, including procedural or declarative languages (e.g. C++, XML dialects) and source code written for any simulation environment.", - "created": "2019-06-11T14:16:08.429+0000", - "modified": "2019-06-11T14:16:08.429+0000", + "prefix": "modeldb", "resources": [ { - "id": 420, - "mirId": "MIR:00100171", - "urlPattern": "http://senselab.med.yale.edu/ModelDB/ShowModel.asp?model={$id}", - "name": "ModelDB at SenseLab", + "deprecated": false, + "deprecationDate": null, "description": "ModelDB at SenseLab", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "45539", - "resourceHomeUrl": "http://senselab.med.yale.edu/ModelDB/", + "id": 420, "institution": { - "id": 310, - "name": "Yale University School of Medicine", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 310, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Yale University School of Medicine", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100171", + "name": "ModelDB at SenseLab", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://senselab.med.yale.edu/ModelDB/", + "sampleId": "45539", + "urlPattern": "http://senselab.med.yale.edu/ModelDB/ShowModel.asp?model={$id}" } ], - "sampleId": "45539", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "45539" }, { + "created": "2019-06-11T14:16:08.635+0000", + "deprecated": false, + "deprecationDate": null, + "description": "SubtiWiki is a scientific wiki for the model bacterium Bacillus subtilis. It provides comprehensive information on all genes and their proteins and RNA products, as well as information related to the current investigation of the gene/protein. \r\nNote: Currently, direct access to RNA products is restricted. This is expected to be rectified soon.", "id": 421, - "prefix": "subtiwiki", "mirId": "MIR:00000132", + "modified": "2019-06-11T14:16:08.635+0000", "name": "SubtiWiki", + "namespaceEmbeddedInLui": false, "pattern": "^BSU\\d{5}$", - "description": "SubtiWiki is a scientific wiki for the model bacterium Bacillus subtilis. It provides comprehensive information on all genes and their proteins and RNA products, as well as information related to the current investigation of the gene/protein. \r\nNote: Currently, direct access to RNA products is restricted. This is expected to be rectified soon.", - "created": "2019-06-11T14:16:08.635+0000", - "modified": "2019-06-11T14:16:08.635+0000", + "prefix": "subtiwiki", "resources": [ { - "id": 423, - "mirId": "MIR:00100172", - "urlPattern": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/{$id}", - "name": "SubtiWiki website", + "deprecated": false, + "deprecationDate": null, "description": "SubtiWiki website", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "BSU29180", - "resourceHomeUrl": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/Main_Page", + "id": 423, "institution": { - "id": 422, - "name": "University of Göttingen, Department for General Microbiology", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 422, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "University of G\u00f6ttingen, Department for General Microbiology", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100172", + "name": "SubtiWiki website", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/Main_Page", + "sampleId": "BSU29180", + "urlPattern": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/{$id}" } ], - "sampleId": "BSU29180", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "BSU29180" }, { + "created": "2019-06-11T14:16:08.872+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Pathway Interaction Database is a highly-structured, curated collection of information about known human biomolecular interactions and key cellular processes assembled into signaling pathways. This datatype provides access to pathway information.", "id": 424, - "prefix": "pid.pathway", "mirId": "MIR:00000133", + "modified": "2019-06-11T14:16:08.872+0000", "name": "NCI Pathway Interaction Database: Pathway", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "The Pathway Interaction Database is a highly-structured, curated collection of information about known human biomolecular interactions and key cellular processes assembled into signaling pathways. This datatype provides access to pathway information.", - "created": "2019-06-11T14:16:08.872+0000", - "modified": "2019-06-11T14:16:08.872+0000", + "prefix": "pid.pathway", "resources": [ { - "id": 426, - "mirId": "MIR:00100173", - "urlPattern": "http://pid.nci.nih.gov/search/pathway_landing.shtml?what=graphic&jpg=on&pathway_id={$id}", - "name": "NCI Pathway Interaction Database (Pathway)", + "deprecated": false, + "deprecationDate": null, "description": "NCI Pathway Interaction Database (Pathway)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "pi3kcipathway", - "resourceHomeUrl": "http://pid.nci.nih.gov/", + "id": 426, "institution": { - "id": 425, - "name": "National Cancer Institute, Rockville, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 425, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Cancer Institute, Rockville, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100173", + "name": "NCI Pathway Interaction Database (Pathway)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://pid.nci.nih.gov/", + "sampleId": "pi3kcipathway", + "urlPattern": "http://pid.nci.nih.gov/search/pathway_landing.shtml?what=graphic&jpg=on&pathway_id={$id}" } ], - "sampleId": "pi3kcipathway", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "pi3kcipathway" }, { + "created": "2019-06-11T14:16:09.111+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Database of Quantitative Cellular Signaling is a repository of models of signaling pathways. It includes reaction schemes, concentrations, rate constants, as well as annotations on the models. The database provides a range of search, navigation, and comparison functions. This datatype provides access to specific models.", "id": 427, - "prefix": "doqcs.model", "mirId": "MIR:00000134", + "modified": "2019-06-11T14:16:09.111+0000", "name": "Database of Quantitative Cellular Signaling: Model", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Database of Quantitative Cellular Signaling is a repository of models of signaling pathways. It includes reaction schemes, concentrations, rate constants, as well as annotations on the models. The database provides a range of search, navigation, and comparison functions. This datatype provides access to specific models.", - "created": "2019-06-11T14:16:09.111+0000", - "modified": "2019-06-11T14:16:09.111+0000", + "prefix": "doqcs.model", "resources": [ { - "id": 429, - "mirId": "MIR:00100174", - "urlPattern": "http://doqcs.ncbs.res.in/template.php?&y=accessiondetails&an={$id}", - "name": "Database of Quantitative Cellular Signaling (DOQCS) - Model Access", + "deprecated": false, + "deprecationDate": null, "description": "Database of Quantitative Cellular Signaling (DOQCS) - Model Access", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "57", - "resourceHomeUrl": "http://doqcs.ncbs.res.in/", + "id": 429, "institution": { - "id": 428, - "name": "National Centre for Biological Sciences, Bangalore", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 428, "location": { "countryCode": "IN", "countryName": "India" - } + }, + "name": "National Centre for Biological Sciences, Bangalore", + "rorId": null }, "location": { "countryCode": "IN", "countryName": "India" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100174", + "name": "Database of Quantitative Cellular Signaling (DOQCS) - Model Access", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://doqcs.ncbs.res.in/", + "sampleId": "57", + "urlPattern": "http://doqcs.ncbs.res.in/template.php?&y=accessiondetails&an={$id}" } ], - "sampleId": "57", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "57" }, { + "created": "2019-06-11T14:16:09.372+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Database of Quantitative Cellular Signaling is a repository of models of signaling pathways. It includes reaction schemes, concentrations, rate constants, as well as annotations on the models. The database provides a range of search, navigation, and comparison functions. This datatype provides access to pathways.", "id": 430, - "prefix": "doqcs.pathway", "mirId": "MIR:00000135", + "modified": "2019-06-11T14:16:09.372+0000", "name": "Database of Quantitative Cellular Signaling: Pathway", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Database of Quantitative Cellular Signaling is a repository of models of signaling pathways. It includes reaction schemes, concentrations, rate constants, as well as annotations on the models. The database provides a range of search, navigation, and comparison functions. This datatype provides access to pathways.", - "created": "2019-06-11T14:16:09.372+0000", - "modified": "2019-06-11T14:16:09.372+0000", + "prefix": "doqcs.pathway", "resources": [ { - "id": 431, - "mirId": "MIR:00100175", - "urlPattern": "http://doqcs.ncbs.res.in/template.php?&y=pathwaydetails&pn={$id}", - "name": "Database of Quantitative Cellular Signaling (DOQCS) - Pathway Access", + "deprecated": false, + "deprecationDate": null, "description": "Database of Quantitative Cellular Signaling (DOQCS) - Pathway Access", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "131", - "resourceHomeUrl": "http://doqcs.ncbs.res.in/", + "id": 431, "institution": { - "id": 428, - "name": "National Centre for Biological Sciences, Bangalore", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 428, "location": { "countryCode": "IN", "countryName": "India" - } + }, + "name": "National Centre for Biological Sciences, Bangalore", + "rorId": null }, "location": { "countryCode": "IN", "countryName": "India" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100175", + "name": "Database of Quantitative Cellular Signaling (DOQCS) - Pathway Access", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://doqcs.ncbs.res.in/", + "sampleId": "131", + "urlPattern": "http://doqcs.ncbs.res.in/template.php?&y=pathwaydetails&pn={$id}" } ], - "sampleId": "131", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "131" }, { + "created": "2019-06-11T14:16:09.596+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Ontology of standardized units", "id": 432, - "prefix": "uo", "mirId": "MIR:00000136", + "modified": "2019-06-11T14:16:09.596+0000", "name": "Unit Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^UO:\\d{7}?", - "description": "Ontology of standardized units", - "created": "2019-06-11T14:16:09.596+0000", - "modified": "2019-06-11T14:16:09.596+0000", + "prefix": "uo", "resources": [ { - "id": 433, - "mirId": "MIR:00100178", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/uo/terms?obo_id=UO:{$id}", - "name": "Unit Ontology via Ontology Lookup Service", + "deprecated": false, + "deprecationDate": null, "description": "Unit Ontology via Ontology Lookup Service", - "official": false, - "providerCode": "ols", - "sampleId": "0000080", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/uo", + "id": 433, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100178", + "name": "Unit Ontology via Ontology Lookup Service", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/uo", + "sampleId": "0000080", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/uo/terms?obo_id=UO:{$id}" }, { - "id": 434, - "mirId": "MIR:00100243", - "urlPattern": "http://purl.bioontology.org/ontology/UO/UO:{$id}", - "name": "Unit Ontology through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "Unit Ontology through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "0000080", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/UO", + "id": 434, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100243", + "name": "Unit Ontology through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/UO", + "sampleId": "0000080", + "urlPattern": "http://purl.bioontology.org/ontology/UO/UO:{$id}" } ], - "sampleId": "0000080", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0000080" }, { + "created": "2019-06-11T14:16:09.937+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ClinicalTrials.gov provides free access to information on clinical studies for a wide range of diseases and conditions. Studies listed in the database are conducted in 175 countries", "id": 435, - "prefix": "clinicaltrials", "mirId": "MIR:00000137", + "modified": "2019-06-11T14:16:09.937+0000", "name": "ClinicalTrials.gov", + "namespaceEmbeddedInLui": false, "pattern": "^NCT\\d{8}$", - "description": "ClinicalTrials.gov provides free access to information on clinical studies for a wide range of diseases and conditions. Studies listed in the database are conducted in 175 countries", - "created": "2019-06-11T14:16:09.937+0000", - "modified": "2019-06-11T14:16:09.937+0000", + "prefix": "clinicaltrials", "resources": [ { - "id": 437, - "mirId": "MIR:00100179", - "urlPattern": "https://clinicaltrials.gov/ct2/show/{$id}", - "name": "ClinicalTrials.gov at NIH", + "deprecated": false, + "deprecationDate": null, "description": "ClinicalTrials.gov at NIH", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "NCT00222573", - "resourceHomeUrl": "https://clinicaltrials.gov/", + "id": 437, "institution": { - "id": 436, - "name": "National Library of Medicine and ClinicalTrials.gov, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 436, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Library of Medicine and ClinicalTrials.gov, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100179", + "name": "ClinicalTrials.gov at NIH", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://clinicaltrials.gov/", + "sampleId": "NCT00222573", + "urlPattern": "https://clinicaltrials.gov/ct2/show/{$id}" } ], - "sampleId": "NCT00222573", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "NCT00222573" }, { + "created": "2019-06-11T14:16:10.254+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ChemSpider is a collection of compound data from across the web, which aggregates chemical structures and their associated information into a single searchable repository entry. These entries are supplemented with additional properties, related information and links back to original data sources.", "id": 438, - "prefix": "chemspider", "mirId": "MIR:00000138", + "modified": "2019-06-11T14:16:10.254+0000", "name": "ChemSpider", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "ChemSpider is a collection of compound data from across the web, which aggregates chemical structures and their associated information into a single searchable repository entry. These entries are supplemented with additional properties, related information and links back to original data sources.", - "created": "2019-06-11T14:16:10.254+0000", - "modified": "2019-06-11T14:16:10.254+0000", + "prefix": "chemspider", "resources": [ { - "id": 440, - "mirId": "MIR:00100180", - "urlPattern": "http://www.chemspider.com/Chemical-Structure.{$id}.html", - "name": "ChemSpider at RSC", + "deprecated": false, + "deprecationDate": null, "description": "ChemSpider at RSC", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "56586", - "resourceHomeUrl": "http://www.chemspider.com/", + "id": 440, "institution": { - "id": 439, - "name": "Royal Society of Chemistry, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 439, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Royal Society of Chemistry, Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100180", + "name": "ChemSpider at RSC", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.chemspider.com/", + "sampleId": "56586", + "urlPattern": "http://www.chemspider.com/Chemical-Structure.{$id}.html" } ], - "sampleId": "56586", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "56586" }, { + "created": "2019-06-11T14:16:10.500+0000", + "deprecated": false, + "deprecationDate": null, + "description": "NCI Thesaurus (NCIt) provides reference terminology covering vocabulary for clinical care, translational and basic research, and public information and administrative activities, providing a stable and unique identification code.", "id": 441, - "prefix": "ncit", "mirId": "MIR:00000139", + "modified": "2019-06-11T14:16:10.500+0000", "name": "NCIt", + "namespaceEmbeddedInLui": false, "pattern": "^C\\d+$", - "description": "NCI Thesaurus (NCIt) provides reference terminology covering vocabulary for clinical care, translational and basic research, and public information and administrative activities, providing a stable and unique identification code.", - "created": "2019-06-11T14:16:10.500+0000", - "modified": "2019-06-11T14:16:10.500+0000", + "prefix": "ncit", "resources": [ { - "id": 443, - "mirId": "MIR:00100181", - "urlPattern": "http://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI%20Thesaurus&code={$id}", - "name": "NCIt at National Cancer Institute", + "deprecated": false, + "deprecationDate": null, "description": "NCIt at National Cancer Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "C80519", - "resourceHomeUrl": "http://ncit.nci.nih.gov/", + "id": 443, "institution": { - "id": 442, - "name": "National Cancer Institute, Center for Bioinformatics, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 442, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Cancer Institute, Center for Bioinformatics, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100181", + "name": "NCIt at National Cancer Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://ncit.nci.nih.gov/", + "sampleId": "C80519", + "urlPattern": "http://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI%20Thesaurus&code={$id}" }, { - "id": 444, - "mirId": "MIR:00100868", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ncit/terms?short_form=NCIT_{$id}", - "name": "NCIt through OLS", + "deprecated": false, + "deprecationDate": null, "description": "NCIt through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "C16353", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ncit", + "id": 444, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100868", + "name": "NCIt through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ncit", + "sampleId": "C16353", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ncit/terms?short_form=NCIT_{$id}" } ], - "sampleId": "C80519", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "C80519" }, { + "created": "2019-06-11T14:16:10.872+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The BioCatalogue provides a common interface for registering, browsing and annotating Web Services to the Life Science community. Registered services are monitored, allowing the identification of service problems and changes and the filtering-out of unavailable or unreliable resources. BioCatalogue is free to use, for all.", "id": 445, - "prefix": "biocatalogue.service", "mirId": "MIR:00000140", + "modified": "2019-06-11T14:16:10.872+0000", "name": "BioCatalogue", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The BioCatalogue provides a common interface for registering, browsing and annotating Web Services to the Life Science community. Registered services are monitored, allowing the identification of service problems and changes and the filtering-out of unavailable or unreliable resources. BioCatalogue is free to use, for all.", - "created": "2019-06-11T14:16:10.872+0000", - "modified": "2019-06-11T14:16:10.872+0000", + "prefix": "biocatalogue.service", "resources": [ { - "id": 446, - "mirId": "MIR:00100182", - "urlPattern": "https://www.biocatalogue.org/services/{$id}", - "name": "BioCatalogue at EMBL-EBI", + "deprecated": false, + "deprecationDate": null, "description": "BioCatalogue at EMBL-EBI", - "official": false, - "providerCode": "ebi", - "sampleId": "614", - "resourceHomeUrl": "https://www.biocatalogue.org/", + "id": 446, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100182", + "name": "BioCatalogue at EMBL-EBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.biocatalogue.org/", + "sampleId": "614", + "urlPattern": "https://www.biocatalogue.org/services/{$id}" } ], - "sampleId": "614", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "614" }, { + "created": "2019-06-11T14:16:11.523+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Online Mendelian Inheritance in Animals is a a database of genes, inherited disorders and traits in animal species (other than human and mouse).", "id": 451, - "prefix": "omia", "mirId": "MIR:00000142", + "modified": "2019-06-11T14:16:11.523+0000", "name": "OMIA", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Online Mendelian Inheritance in Animals is a a database of genes, inherited disorders and traits in animal species (other than human and mouse).", - "created": "2019-06-11T14:16:11.523+0000", - "modified": "2019-06-11T14:16:11.523+0000", + "prefix": "omia", "resources": [ { - "id": 453, - "mirId": "MIR:00100185", - "urlPattern": "http://omia.angis.org.au/{$id}/", - "name": "OMIA at University of Sydney", + "deprecated": false, + "deprecationDate": null, "description": "OMIA at University of Sydney", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1000", - "resourceHomeUrl": "http://omia.angis.org.au/", + "id": 453, "institution": { - "id": 452, - "name": "Reprogen, Faculty of Veterinary Science, University of Sydney", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 452, "location": { "countryCode": "AU", "countryName": "Australia" - } + }, + "name": "Reprogen, Faculty of Veterinary Science, University of Sydney", + "rorId": null }, "location": { "countryCode": "AU", "countryName": "Australia" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100185", + "name": "OMIA at University of Sydney", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://omia.angis.org.au/", + "sampleId": "1000", + "urlPattern": "http://omia.angis.org.au/{$id}/" } ], - "sampleId": "1000", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1000" }, { + "created": "2019-06-11T14:16:11.769+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Catalytic Site Atlas (CSA) is a database documenting enzyme active sites and catalytic residues in enzymes of 3D structure. It uses a defined classification for catalytic residues which includes only those residues thought to be directly involved in some aspect of the reaction catalysed by an enzyme.", "id": 454, - "prefix": "csa", "mirId": "MIR:00000144", + "modified": "2019-06-11T14:16:11.769+0000", "name": "CSA", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9][A-Za-z0-9]{3}$", - "description": "The Catalytic Site Atlas (CSA) is a database documenting enzyme active sites and catalytic residues in enzymes of 3D structure. It uses a defined classification for catalytic residues which includes only those residues thought to be directly involved in some aspect of the reaction catalysed by an enzyme.", - "created": "2019-06-11T14:16:11.769+0000", - "modified": "2019-06-11T14:16:11.769+0000", + "prefix": "csa", "resources": [ { - "id": 455, - "mirId": "MIR:00100188", - "urlPattern": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/SearchResults.php?PDBID={$id}", - "name": "CSA at EBI", + "deprecated": false, + "deprecationDate": null, "description": "CSA at EBI", - "official": false, - "providerCode": "ebi", - "sampleId": "1a05", - "resourceHomeUrl": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/", + "id": 455, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100188", + "name": "CSA at EBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/", + "sampleId": "1a05", + "urlPattern": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/SearchResults.php?PDBID={$id}" } ], - "sampleId": "1a05", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1a05" }, { + "created": "2019-06-11T14:16:11.955+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Candida Genome Database (CGD) provides access to genomic sequence data and manually curated functional information about genes and proteins of the human pathogen Candida albicans. It collects gene names and aliases, and assigns gene ontology terms to describe the molecular function, biological process, and subcellular localization of gene products.", "id": 456, - "prefix": "cgd", "mirId": "MIR:00000145", + "modified": "2019-06-11T14:16:11.955+0000", "name": "Candida Genome Database", + "namespaceEmbeddedInLui": false, "pattern": "^CAL\\d{7}$", - "description": "The Candida Genome Database (CGD) provides access to genomic sequence data and manually curated functional information about genes and proteins of the human pathogen Candida albicans. It collects gene names and aliases, and assigns gene ontology terms to describe the molecular function, biological process, and subcellular localization of gene products.", - "created": "2019-06-11T14:16:11.955+0000", - "modified": "2019-06-11T14:16:11.955+0000", + "prefix": "cgd", "resources": [ { - "id": 458, - "mirId": "MIR:00100189", - "urlPattern": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid={$id}", - "name": "Candida Genome Database at Stanford University", + "deprecated": false, + "deprecationDate": null, "description": "Candida Genome Database at Stanford University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "CAL0003079", - "resourceHomeUrl": "http://www.candidagenome.org/", + "id": 458, "institution": { - "id": 457, - "name": "Stanford University,", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 457, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Stanford University,", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100189", + "name": "Candida Genome Database at Stanford University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.candidagenome.org/", + "sampleId": "CAL0003079", + "urlPattern": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid={$id}" } ], - "sampleId": "CAL0003079", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CAL0003079" }, { + "created": "2019-06-11T14:16:12.204+0000", + "deprecated": false, + "deprecationDate": null, + "description": "AntWeb is a website documenting the known species of ants, with records for each species linked to their geographical distribution, life history, and includes pictures.", "id": 459, - "prefix": "antweb", "mirId": "MIR:00000146", + "modified": "2019-06-11T14:16:12.204+0000", "name": "AntWeb", + "namespaceEmbeddedInLui": false, "pattern": "^casent\\d+(\\-D\\d+)?$", - "description": "AntWeb is a website documenting the known species of ants, with records for each species linked to their geographical distribution, life history, and includes pictures.", - "created": "2019-06-11T14:16:12.204+0000", - "modified": "2019-06-11T14:16:12.204+0000", + "prefix": "antweb", "resources": [ { - "id": 461, - "mirId": "MIR:00100190", - "urlPattern": "http://www.antweb.org/specimen.do?name={$id}", - "name": "AntWeb at California Academy of Sciences", + "deprecated": false, + "deprecationDate": null, "description": "AntWeb at California Academy of Sciences", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "casent0106247", - "resourceHomeUrl": "http://www.antweb.org/", + "id": 461, "institution": { - "id": 460, - "name": "California Academy of Sciences, Goldengate Park, San Francisco", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 460, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "California Academy of Sciences, Goldengate Park, San Francisco", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100190", + "name": "AntWeb at California Academy of Sciences", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.antweb.org/", + "sampleId": "casent0106247", + "urlPattern": "http://www.antweb.org/specimen.do?name={$id}" } ], - "sampleId": "casent0106247", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "casent0106247" }, { + "created": "2019-06-11T14:16:12.446+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PMC International (PMCI) is a free full-text archive of biomedical and life sciences journal literature. PMCI is a collaborative effort between the U.S. National Institutes of Health and the National Library of Medicine, the publishers whose journal content makes up the PMC archive, and organizations in other countries that share NIH's and NLM's interest in archiving life sciences literature.", "id": 462, - "prefix": "pmc", "mirId": "MIR:00000147", + "modified": "2019-06-11T14:16:12.446+0000", "name": "PMC International", + "namespaceEmbeddedInLui": false, "pattern": "PMC\\d+", - "description": "PMC International (PMCI) is a free full-text archive of biomedical and life sciences journal literature. PMCI is a collaborative effort between the U.S. National Institutes of Health and the National Library of Medicine, the publishers whose journal content makes up the PMC archive, and organizations in other countries that share NIH's and NLM's interest in archiving life sciences literature.", - "created": "2019-06-11T14:16:12.446+0000", - "modified": "2019-06-11T14:16:12.446+0000", + "prefix": "pmc", "resources": [ { - "id": 465, - "mirId": "MIR:00100498", - "urlPattern": "http://europepmc.org/articles/{$id}", - "name": "Europe PMC", + "deprecated": false, + "deprecationDate": null, "description": "Europe PMC", - "official": true, - "providerCode": "epmc", - "sampleId": "PMC3084216", - "resourceHomeUrl": "http://europepmc.org/", + "id": 465, "institution": { - "id": 61, - "name": "Europe PubMed Central partners", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 61, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Europe PubMed Central partners", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100498", + "name": "Europe PMC", + "official": true, + "providerCode": "epmc", + "resourceHomeUrl": "http://europepmc.org/", + "sampleId": "PMC3084216", + "urlPattern": "http://europepmc.org/articles/{$id}" }, { - "id": 464, - "mirId": "MIR:00100191", - "urlPattern": "https://www.ncbi.nlm.nih.gov/pmc/articles/{$id}/?tool=pubmed", - "name": "PubMed Central", + "deprecated": false, + "deprecationDate": null, "description": "PubMed Central", - "official": false, - "providerCode": "ncbi", - "sampleId": "PMC3084216", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/pmc/", + "id": 464, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100191", + "name": "PubMed Central", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/pmc/", + "sampleId": "PMC3084216", + "urlPattern": "https://www.ncbi.nlm.nih.gov/pmc/articles/{$id}/?tool=pubmed" } ], - "sampleId": "PMC3084216", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PMC3084216" }, { + "created": "2019-06-11T14:16:44.811+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The American Type Culture Collection (ATCC) is a private, nonprofit biological resource center whose mission focuses on the acquisition, authentication, production, preservation, development and distribution of standard reference microorganisms, cell lines and other materials for research in the life sciences.", "id": 834, - "prefix": "atcc", "mirId": "MIR:00000284", + "modified": "2019-06-11T14:16:44.811+0000", "name": "ATCC", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The American Type Culture Collection (ATCC) is a private, nonprofit biological resource center whose mission focuses on the acquisition, authentication, production, preservation, development and distribution of standard reference microorganisms, cell lines and other materials for research in the life sciences.", - "created": "2019-06-11T14:16:44.811+0000", - "modified": "2019-06-11T14:16:44.811+0000", + "prefix": "atcc", "resources": [ { - "id": 836, - "mirId": "MIR:00100365", - "urlPattern": "http://www.lgcstandards-atcc.org/Products/All/{$id}.aspx", - "name": "ATCC in Virginia", + "deprecated": false, + "deprecationDate": null, "description": "ATCC in Virginia", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "11303", - "resourceHomeUrl": "http://www.atcc.org/", + "id": 836, "institution": { - "id": 835, - "name": "American Type Culture Collection", - "homeUrl": "https://atcc.org", "description": "ATCC is the premier global biological materials resource and standards organization whose mission focuses on the acquisition, authentication, production, preservation, development, and distribution of standard reference microorganisms, cell lines, and other materials. While maintaining traditional collection materials, ATCC develops high quality products, standards, and services to support scientific research and breakthroughs that improve the health of global populations.", - "rorId": "https://ror.org/03thhhv76", + "homeUrl": "https://atcc.org", + "id": 835, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "American Type Culture Collection", + "rorId": "https://ror.org/03thhhv76" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100365", + "name": "ATCC in Virginia", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.atcc.org/", + "sampleId": "11303", + "urlPattern": "http://www.lgcstandards-atcc.org/Products/All/{$id}.aspx" } ], - "sampleId": "11303", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "11303" }, { + "created": "2019-06-11T14:16:12.793+0000", + "deprecated": false, + "deprecationDate": null, + "description": "AmoebaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "id": 466, - "prefix": "amoebadb", "mirId": "MIR:00000148", + "modified": "2019-06-11T14:16:12.793+0000", "name": "AmoebaDB", + "namespaceEmbeddedInLui": false, "pattern": "^EDI_\\d+$", - "description": "AmoebaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", - "created": "2019-06-11T14:16:12.793+0000", - "modified": "2019-06-11T14:16:12.793+0000", + "prefix": "amoebadb", "resources": [ { - "id": 468, - "mirId": "MIR:00100193", - "urlPattern": "https://amoebadb.org/amoeba/app/record/gene/{$id}", - "name": "AmoebaDB at EuPathDB", + "deprecated": false, + "deprecationDate": null, "description": "AmoebaDB at EuPathDB", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "EDI_244000", - "resourceHomeUrl": "http://amoebadb.org/amoeba/", + "id": 468, "institution": { - "id": 467, - "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 467, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100193", + "name": "AmoebaDB at EuPathDB", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://amoebadb.org/amoeba/", + "sampleId": "EDI_244000", + "urlPattern": "https://amoebadb.org/amoeba/app/record/gene/{$id}" } ], - "sampleId": "EDI_244000", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "EDI_244000" }, { + "created": "2019-06-11T14:16:13.024+0000", + "deprecated": false, + "deprecationDate": null, + "description": "CryptoDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "id": 469, - "prefix": "cryptodb", "mirId": "MIR:00000149", + "modified": "2019-06-11T14:16:13.024+0000", "name": "CryptoDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+", - "description": "CryptoDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", - "created": "2019-06-11T14:16:13.024+0000", - "modified": "2019-06-11T14:16:13.024+0000", + "prefix": "cryptodb", "resources": [ { - "id": 470, - "mirId": "MIR:00100194", - "urlPattern": "https://cryptodb.org/cryptodb/app/record/gene/{$id}", - "name": "CryptoDB at EuPathDB", + "deprecated": false, + "deprecationDate": null, "description": "CryptoDB at EuPathDB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "cgd7_230", - "resourceHomeUrl": "https://cryptodb.org/cryptodb/", + "id": 470, "institution": { - "id": 467, - "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 467, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100194", + "name": "CryptoDB at EuPathDB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://cryptodb.org/cryptodb/", + "sampleId": "cgd7_230", + "urlPattern": "https://cryptodb.org/cryptodb/app/record/gene/{$id}" } ], - "sampleId": "cgd7_230", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "cgd7_230" }, { + "created": "2019-06-11T14:16:13.221+0000", + "deprecated": false, + "deprecationDate": null, + "description": "AmoebaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "id": 471, - "prefix": "plasmodb", "mirId": "MIR:00000150", + "modified": "2019-06-11T14:16:13.221+0000", "name": "PlasmoDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "AmoebaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", - "created": "2019-06-11T14:16:13.221+0000", - "modified": "2019-06-11T14:16:13.221+0000", + "prefix": "plasmodb", "resources": [ { - "id": 472, - "mirId": "MIR:00100195", - "urlPattern": "http://plasmodb.org/plasmo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", - "name": "PlasmoDB at EuPathDB", + "deprecated": false, + "deprecationDate": null, "description": "PlasmoDB at EuPathDB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PF11_0344", - "resourceHomeUrl": "http://plasmodb.org/plasmo/", + "id": 472, "institution": { - "id": 467, - "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 467, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null - } - ], - "sampleId": "PF11_0344", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100195", + "name": "PlasmoDB at EuPathDB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://plasmodb.org/plasmo/", + "sampleId": "PF11_0344", + "urlPattern": "http://plasmodb.org/plasmo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}" + } + ], + "sampleId": "PF11_0344" }, { + "created": "2019-06-11T14:16:13.424+0000", + "deprecated": false, + "deprecationDate": null, + "description": "GiardiaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "id": 473, - "prefix": "giardiadb", "mirId": "MIR:00000151", + "modified": "2019-06-11T14:16:13.424+0000", "name": "GiardiaDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "GiardiaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", - "created": "2019-06-11T14:16:13.424+0000", - "modified": "2019-06-11T14:16:13.424+0000", + "prefix": "giardiadb", "resources": [ { - "id": 474, - "mirId": "MIR:00100196", - "urlPattern": "https://giardiadb.org/giardiadb/app/record/gene/{$id}", - "name": "GiardiaDB at EuPathDB", + "deprecated": false, + "deprecationDate": null, "description": "GiardiaDB at EuPathDB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "GL50803_102438", - "resourceHomeUrl": "https://giardiadb.org/giardiadb/", + "id": 474, "institution": { - "id": 467, - "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 467, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100196", + "name": "GiardiaDB at EuPathDB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://giardiadb.org/giardiadb/", + "sampleId": "GL50803_102438", + "urlPattern": "https://giardiadb.org/giardiadb/app/record/gene/{$id}" } ], - "sampleId": "GL50803_102438", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "GL50803_102438" }, { + "created": "2019-06-11T14:16:13.630+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MicrosporidiaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "id": 475, - "prefix": "microsporidia", "mirId": "MIR:00000152", + "modified": "2019-06-11T14:16:13.630+0000", "name": "MicrosporidiaDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "MicrosporidiaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", - "created": "2019-06-11T14:16:13.630+0000", - "modified": "2019-06-11T14:16:13.630+0000", + "prefix": "microsporidia", "resources": [ { - "id": 476, - "mirId": "MIR:00100197", - "urlPattern": "http://microsporidiadb.org/micro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", - "name": "MicrosporidiaDB at EuPathDB", + "deprecated": false, + "deprecationDate": null, "description": "MicrosporidiaDB at EuPathDB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ECU03_0820i", - "resourceHomeUrl": "http://microsporidiadb.org/micro/", + "id": 476, "institution": { - "id": 467, - "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 467, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100197", + "name": "MicrosporidiaDB at EuPathDB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://microsporidiadb.org/micro/", + "sampleId": "ECU03_0820i", + "urlPattern": "http://microsporidiadb.org/micro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}" } ], - "sampleId": "ECU03_0820i", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ECU03_0820i" }, { + "created": "2019-06-11T14:16:13.817+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ToxoDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "id": 477, - "prefix": "toxoplasma", "mirId": "MIR:00000153", + "modified": "2019-06-11T14:16:13.817+0000", "name": "ToxoDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "ToxoDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", - "created": "2019-06-11T14:16:13.817+0000", - "modified": "2019-06-11T14:16:13.817+0000", + "prefix": "toxoplasma", "resources": [ { - "id": 478, - "mirId": "MIR:00100198", - "urlPattern": "http://toxodb.org/toxo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", - "name": "ToxoDB at EuPathDB", + "deprecated": false, + "deprecationDate": null, "description": "ToxoDB at EuPathDB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "TGME49_053730", - "resourceHomeUrl": "http://toxodb.org/toxo/", + "id": 478, "institution": { - "id": 467, - "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 467, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100198", + "name": "ToxoDB at EuPathDB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://toxodb.org/toxo/", + "sampleId": "TGME49_053730", + "urlPattern": "http://toxodb.org/toxo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}" } ], - "sampleId": "TGME49_053730", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "TGME49_053730" }, { + "created": "2019-06-11T14:16:14.019+0000", + "deprecated": false, + "deprecationDate": null, + "description": "TrichDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "id": 479, - "prefix": "trichdb", "mirId": "MIR:00000154", + "modified": "2019-06-11T14:16:14.019+0000", "name": "TrichDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "TrichDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", - "created": "2019-06-11T14:16:14.019+0000", - "modified": "2019-06-11T14:16:14.019+0000", + "prefix": "trichdb", "resources": [ { - "id": 480, - "mirId": "MIR:00100199", - "urlPattern": "http://trichdb.org/trichdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", - "name": "TrichDB at EuPathDB", + "deprecated": false, + "deprecationDate": null, "description": "TrichDB at EuPathDB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "TVAG_386080", - "resourceHomeUrl": "http://trichdb.org/trichdb/", + "id": 480, "institution": { - "id": 467, - "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 467, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100199", + "name": "TrichDB at EuPathDB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://trichdb.org/trichdb/", + "sampleId": "TVAG_386080", + "urlPattern": "http://trichdb.org/trichdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}" } ], - "sampleId": "TVAG_386080", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "TVAG_386080" }, { + "created": "2019-06-11T14:16:14.213+0000", + "deprecated": false, + "deprecationDate": null, + "description": "TriTrypDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "id": 481, - "prefix": "tritrypdb", "mirId": "MIR:00000155", + "modified": "2019-06-11T14:16:14.213+0000", "name": "TriTrypDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+(\\.)?\\w+(\\.)?\\w+", - "description": "TriTrypDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", - "created": "2019-06-11T14:16:14.213+0000", - "modified": "2019-06-11T14:16:14.213+0000", + "prefix": "tritrypdb", "resources": [ { - "id": 483, - "mirId": "MIR:00100200", - "urlPattern": "http://tritrypdb.org/tritrypdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", - "name": "TriTrypDB at EuPathDB", + "deprecated": false, + "deprecationDate": null, "description": "TriTrypDB at EuPathDB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Tb927.8.620", - "resourceHomeUrl": "http://tritrypdb.org/tritrypdb/", + "id": 483, "institution": { - "id": 482, - "name": "Wellcome Trust Sanger Institute, Hinxton", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 482, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Wellcome Trust Sanger Institute, Hinxton", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100200", + "name": "TriTrypDB at EuPathDB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://tritrypdb.org/tritrypdb/", + "sampleId": "Tb927.8.620", + "urlPattern": "http://tritrypdb.org/tritrypdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}" } ], - "sampleId": "Tb927.8.620", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Tb927.8.620" }, { + "created": "2019-06-11T14:16:14.437+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BDGP gene disruption collection provides a public resource of gene disruptions of Drosophila genes using a single transposable element.", "id": 484, - "prefix": "bdgp.insertion", "mirId": "MIR:00000156", + "modified": "2019-06-11T14:16:14.437+0000", "name": "BDGP insertion DB", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "BDGP gene disruption collection provides a public resource of gene disruptions of Drosophila genes using a single transposable element.", - "created": "2019-06-11T14:16:14.437+0000", - "modified": "2019-06-11T14:16:14.437+0000", + "prefix": "bdgp.insertion", "resources": [ { - "id": 486, - "mirId": "MIR:00100201", - "urlPattern": "http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line={$id}", - "name": "BDGP Gene Disruption Project", + "deprecated": false, + "deprecationDate": null, "description": "BDGP Gene Disruption Project", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "KG09531", - "resourceHomeUrl": "http://flypush.imgen.bcm.tmc.edu/pscreen/", + "id": 486, "institution": { - "id": 485, - "name": "Baylor College of Medicine", - "homeUrl": "https://www.bcm.edu", "description": "Baylor College of Medicine is a health sciences university that creates knowledge and applies science and discoveries to further education, healthcare and community service locally and globally.", - "rorId": "https://ror.org/02pttbw34", + "homeUrl": "https://www.bcm.edu", + "id": 485, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Baylor College of Medicine", + "rorId": "https://ror.org/02pttbw34" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100201", + "name": "BDGP Gene Disruption Project", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://flypush.imgen.bcm.tmc.edu/pscreen/", + "sampleId": "KG09531", + "urlPattern": "http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line={$id}" } ], - "sampleId": "KG09531", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "KG09531" }, { + "created": "2019-06-11T14:16:14.695+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BeetleBase is a comprehensive sequence database and community resource for Tribolium genetics, genomics and developmental biology. It incorporates information about genes, mutants, genetic markers, expressed sequence tags and publications.", "id": 487, - "prefix": "beetlebase", "mirId": "MIR:00000157", + "modified": "2019-06-11T14:16:14.695+0000", "name": "BeetleBase", + "namespaceEmbeddedInLui": false, "pattern": "^TC\\d+$", - "description": "BeetleBase is a comprehensive sequence database and community resource for Tribolium genetics, genomics and developmental biology. It incorporates information about genes, mutants, genetic markers, expressed sequence tags and publications.", - "created": "2019-06-11T14:16:14.695+0000", - "modified": "2019-06-11T14:16:14.695+0000", + "prefix": "beetlebase", "resources": [ { - "id": 489, - "mirId": "MIR:00100202", - "urlPattern": "http://beetlebase.org/cgi-bin/gbrowse/BeetleBase3.gff3/?name={$id}", - "name": "BeetleBase at Kansas State University", + "deprecated": false, + "deprecationDate": null, "description": "BeetleBase at Kansas State University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "TC010103", - "resourceHomeUrl": "http://beetlebase.org/", + "id": 489, "institution": { - "id": 488, - "name": "Kansas State University", - "homeUrl": "https://www.k-state.edu/", "description": "Kansas State University is a comprehensive, research, land-grant institution serving students and the people of Kansas, the nation, and the world.", - "rorId": "https://ror.org/05p1j8758", + "homeUrl": "https://www.k-state.edu/", + "id": 488, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Kansas State University", + "rorId": "https://ror.org/05p1j8758" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100202", + "name": "BeetleBase at Kansas State University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://beetlebase.org/", + "sampleId": "TC010103", + "urlPattern": "http://beetlebase.org/cgi-bin/gbrowse/BeetleBase3.gff3/?name={$id}" } ], - "sampleId": "TC010103", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "TC010103" }, { + "created": "2019-06-11T14:16:14.938+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Barcode of Life Data System (BOLD) is an informatics workbench aiding the acquisition, storage, analysis and publication of DNA barcode records. The associated taxonomy browser shows the progress of DNA barcoding and provides sample collection site distribution, and taxon occurence information.", "id": 490, - "prefix": "bold.taxonomy", "mirId": "MIR:00000158", + "modified": "2019-06-11T14:16:14.938+0000", "name": "BOLD Taxonomy", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Barcode of Life Data System (BOLD) is an informatics workbench aiding the acquisition, storage, analysis and publication of DNA barcode records. The associated taxonomy browser shows the progress of DNA barcoding and provides sample collection site distribution, and taxon occurence information.", - "created": "2019-06-11T14:16:14.938+0000", - "modified": "2019-06-11T14:16:14.938+0000", + "prefix": "bold.taxonomy", "resources": [ { - "id": 492, - "mirId": "MIR:00100203", - "urlPattern": "http://www.boldsystems.org/index.php/Taxbrowser_Taxonpage?taxid={$id}", - "name": "BOLD taxonomy browser", + "deprecated": false, + "deprecationDate": null, "description": "BOLD taxonomy browser", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "27267", - "resourceHomeUrl": "http://www.boldsystems.org/", + "id": 492, "institution": { - "id": 491, - "name": "Canadian Centre for DNA Barcoding, Biodiversity Institute of Ontario", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 491, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "Canadian Centre for DNA Barcoding, Biodiversity Institute of Ontario", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100203", + "name": "BOLD taxonomy browser", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.boldsystems.org/", + "sampleId": "27267", + "urlPattern": "http://www.boldsystems.org/index.php/Taxbrowser_Taxonpage?taxid={$id}" } ], - "sampleId": "27267", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "27267" }, { + "created": "2019-06-11T14:16:15.166+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The dbEST contains sequence data and other information on \"single-pass\" cDNA sequences, or \"Expressed Sequence Tags\", from a number of organisms.", "id": 493, - "prefix": "dbest", "mirId": "MIR:00000159", + "modified": "2019-06-11T14:16:15.166+0000", "name": "dbEST", + "namespaceEmbeddedInLui": false, "pattern": "^([A-Z]+)?\\d+(\\.\\d+)?$", - "description": "The dbEST contains sequence data and other information on \"single-pass\" cDNA sequences, or \"Expressed Sequence Tags\", from a number of organisms.", - "created": "2019-06-11T14:16:15.166+0000", - "modified": "2019-06-11T14:16:15.166+0000", + "prefix": "dbest", "resources": [ { - "id": 494, - "mirId": "MIR:00100204", - "urlPattern": "https://www.ncbi.nlm.nih.gov/nucest/{$id}", - "name": "dbEST at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "dbEST at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "BP100000", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/nucest", + "id": 494, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100204", + "name": "dbEST at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/nucest", + "sampleId": "BP100000", + "urlPattern": "https://www.ncbi.nlm.nih.gov/nucest/{$id}" }, { - "id": 495, - "mirId": "MIR:00100331", - "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", - "name": "dbEST through European Nucleotide Archive (ENA)", + "deprecated": false, + "deprecationDate": null, "description": "dbEST through European Nucleotide Archive (ENA)", - "official": false, - "providerCode": "ebi", - "sampleId": "BP100000.1", - "resourceHomeUrl": "https://www.ebi.ac.uk/ena", + "id": 495, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100331", + "name": "dbEST through European Nucleotide Archive (ENA)", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/ena", + "sampleId": "BP100000.1", + "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}" }, { - "id": 496, - "mirId": "MIR:00100651", - "urlPattern": "http://getentry.ddbj.nig.ac.jp/getentry/na/{$id}", - "name": "dbEST through DNA Data Bank of Japan (DDBJ)", + "deprecated": false, + "deprecationDate": null, "description": "dbEST through DNA Data Bank of Japan (DDBJ)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "BP100000", - "resourceHomeUrl": "http://www.ddbj.nig.ac.jp/", + "id": 496, "institution": { - "id": 121, - "name": "DNA Data Bank of Japan, Mishima, Shizuoka", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 121, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "DNA Data Bank of Japan, Mishima, Shizuoka", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100651", + "name": "dbEST through DNA Data Bank of Japan (DDBJ)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.ddbj.nig.ac.jp/", + "sampleId": "BP100000", + "urlPattern": "http://getentry.ddbj.nig.ac.jp/getentry/na/{$id}" } ], - "sampleId": "BP100000", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "BP100000" }, { + "created": "2019-06-11T14:16:15.607+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The NCBI Probe Database is a public registry of nucleic acid reagents designed for use in a wide variety of biomedical research applications, together with information on reagent distributors, probe effectiveness, and computed sequence similarities.", "id": 497, - "prefix": "dbprobe", "mirId": "MIR:00000160", + "modified": "2019-06-11T14:16:15.607+0000", "name": "dbProbe", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The NCBI Probe Database is a public registry of nucleic acid reagents designed for use in a wide variety of biomedical research applications, together with information on reagent distributors, probe effectiveness, and computed sequence similarities.", - "created": "2019-06-11T14:16:15.607+0000", - "modified": "2019-06-11T14:16:15.607+0000", + "prefix": "dbprobe", "resources": [ { - "id": 498, - "mirId": "MIR:00100205", - "urlPattern": "https://www.ncbi.nlm.nih.gov/probe/?term={$id}", - "name": "dbProbe at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "dbProbe at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "1000000", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=probe", + "id": 498, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100205", + "name": "dbProbe at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=probe", + "sampleId": "1000000", + "urlPattern": "https://www.ncbi.nlm.nih.gov/probe/?term={$id}" } ], - "sampleId": "1000000", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1000000" }, { + "created": "2019-06-11T14:16:15.831+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The dbSNP database is a repository for both single base nucleotide subsitutions and short deletion and insertion polymorphisms.", "id": 499, - "prefix": "dbsnp", "mirId": "MIR:00000161", + "modified": "2019-06-11T14:16:15.831+0000", "name": "dbSNP", + "namespaceEmbeddedInLui": false, "pattern": "^rs\\d+$", - "description": "The dbSNP database is a repository for both single base nucleotide subsitutions and short deletion and insertion polymorphisms.", - "created": "2019-06-11T14:16:15.831+0000", - "modified": "2019-06-11T14:16:15.831+0000", + "prefix": "dbsnp", "resources": [ { - "id": 500, - "mirId": "MIR:00100206", - "urlPattern": "https://www.ncbi.nlm.nih.gov/snp/{$id}", - "name": "dbSNP at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "dbSNP at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "rs121909098", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/snp/", + "id": 500, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100206", + "name": "dbSNP at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/snp/", + "sampleId": "rs121909098", + "urlPattern": "https://www.ncbi.nlm.nih.gov/snp/{$id}" }, { - "id": 502, - "mirId": "MIR:00100927", - "urlPattern": "https://ccg.epfl.ch/cgi-bin/snp2tfbs/snpviewer_form_parser.cgi?snpid={$id}", - "name": "SNP2TFBS", + "deprecated": false, + "deprecationDate": null, "description": "SNP2TFBS", - "official": false, - "providerCode": "sib", - "sampleId": "rs11603840", - "resourceHomeUrl": "https://ccg.epfl.ch/snp2tfbs/", + "id": 502, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100927", + "name": "SNP2TFBS", + "official": false, + "providerCode": "sib", + "resourceHomeUrl": "https://ccg.epfl.ch/snp2tfbs/", + "sampleId": "rs11603840", + "urlPattern": "https://ccg.epfl.ch/cgi-bin/snp2tfbs/snpviewer_form_parser.cgi?snpid={$id}" } ], - "sampleId": "rs121909098", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "rs121909098" }, { + "created": "2019-06-11T14:16:16.225+0000", + "deprecated": false, + "deprecationDate": null, + "description": "UniSTS is a comprehensive database of sequence tagged sites (STSs) derived from STS-based maps and other experiments. STSs are defined by PCR primer pairs and are associated with additional information such as genomic position, genes, and sequences.", "id": 503, - "prefix": "unists", "mirId": "MIR:00000162", + "modified": "2019-06-11T14:16:16.225+0000", "name": "UniSTS", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "UniSTS is a comprehensive database of sequence tagged sites (STSs) derived from STS-based maps and other experiments. STSs are defined by PCR primer pairs and are associated with additional information such as genomic position, genes, and sequences.", - "created": "2019-06-11T14:16:16.225+0000", - "modified": "2019-06-11T14:16:16.225+0000", + "prefix": "unists", "resources": [ { - "id": 504, - "mirId": "MIR:00100207", - "urlPattern": "https://www.ncbi.nlm.nih.gov/genome/sts/sts.cgi?uid={$id}", - "name": "UniSTS at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "UniSTS at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "456789", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=unists", + "id": 504, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100207", + "name": "UniSTS at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=unists", + "sampleId": "456789", + "urlPattern": "https://www.ncbi.nlm.nih.gov/genome/sts/sts.cgi?uid={$id}" } ], - "sampleId": "456789", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "456789" }, { + "created": "2019-06-11T14:16:16.429+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The EcoGene database contains updated information about the E. coli K-12 genome and proteome sequences, including extensive gene bibliographies. A major EcoGene focus has been the re-evaluation of translation start sites.", "id": 505, - "prefix": "ecogene", "mirId": "MIR:00000163", + "modified": "2019-06-11T14:16:16.429+0000", "name": "EcoGene", + "namespaceEmbeddedInLui": false, "pattern": "^EG\\d+$", - "description": "The EcoGene database contains updated information about the E. coli K-12 genome and proteome sequences, including extensive gene bibliographies. A major EcoGene focus has been the re-evaluation of translation start sites.", - "created": "2019-06-11T14:16:16.429+0000", - "modified": "2019-06-11T14:16:16.429+0000", + "prefix": "ecogene", "resources": [ { - "id": 507, - "mirId": "MIR:00100208", - "urlPattern": "http://www.ecogene.org/gene/{$id}", - "name": "EcoGene at University of Miami", + "deprecated": false, + "deprecationDate": null, "description": "EcoGene at University of Miami", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "EG10173", - "resourceHomeUrl": "http://ecogene.org/", + "id": 507, "institution": { - "id": 506, - "name": "Miller School of Medicine, University of Miami", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 506, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Miller School of Medicine, University of Miami", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null - } - ], - "sampleId": "EG10173", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100208", + "name": "EcoGene at University of Miami", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://ecogene.org/", + "sampleId": "EG10173", + "urlPattern": "http://www.ecogene.org/gene/{$id}" + } + ], + "sampleId": "EG10173" }, { + "created": "2019-06-11T14:16:45.049+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The BDGP EST database collects the expressed sequence tags (ESTs) derived from a variety of tissues and developmental stages for Drosophila melanogaster. All BDGP ESTs are available at dbEST (NCBI).", "id": 837, - "prefix": "bdgp.est", "mirId": "MIR:00000285", + "modified": "2019-06-11T14:16:45.049+0000", "name": "BDGP EST", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+(\\.)?(\\d+)?$", - "description": "The BDGP EST database collects the expressed sequence tags (ESTs) derived from a variety of tissues and developmental stages for Drosophila melanogaster. All BDGP ESTs are available at dbEST (NCBI).", - "created": "2019-06-11T14:16:45.049+0000", - "modified": "2019-06-11T14:16:45.049+0000", + "prefix": "bdgp.est", "resources": [ { - "id": 838, - "mirId": "MIR:00100366", - "urlPattern": "https://www.ncbi.nlm.nih.gov/nucest/{$id}", - "name": "BDGP EST at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "BDGP EST at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "EY223054.1", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/dbEST/index.html", + "id": 838, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100366", + "name": "BDGP EST at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/dbEST/index.html", + "sampleId": "EY223054.1", + "urlPattern": "https://www.ncbi.nlm.nih.gov/nucest/{$id}" } ], - "sampleId": "EY223054.1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "EY223054.1" }, { + "created": "2019-06-11T14:16:16.652+0000", + "deprecated": false, + "deprecationDate": null, + "description": "GabiPD (Genome Analysis of Plant Biological Systems Primary Database) constitutes a repository for a wide array of heterogeneous data from high-throughput experiments in several plant species. These data (i.e. genomics, transcriptomics, proteomics and metabolomics), originating from different model or crop species, can be accessed through a central gene 'Green Card'.", "id": 508, - "prefix": "gabi", "mirId": "MIR:00000164", + "modified": "2019-06-11T14:16:16.652+0000", "name": "GABI", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "GabiPD (Genome Analysis of Plant Biological Systems Primary Database) constitutes a repository for a wide array of heterogeneous data from high-throughput experiments in several plant species. These data (i.e. genomics, transcriptomics, proteomics and metabolomics), originating from different model or crop species, can be accessed through a central gene 'Green Card'.", - "created": "2019-06-11T14:16:16.652+0000", - "modified": "2019-06-11T14:16:16.652+0000", + "prefix": "gabi", "resources": [ { - "id": 510, - "mirId": "MIR:00100210", - "urlPattern": "http://www.gabipd.org/database/cgi-bin/GreenCards.pl.cgi?BioObjectId={$id}&Mode=ShowBioObject", - "name": "GABI at Max Planck", + "deprecated": false, + "deprecationDate": null, "description": "GABI at Max Planck", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2679240", - "resourceHomeUrl": "http://www.gabipd.org/", + "id": 510, "institution": { - "id": 509, - "name": "Max Planck Institute of Molecular Plant Physiology, Berlin", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 509, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Max Planck Institute of Molecular Plant Physiology, Berlin", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100210", + "name": "GABI at Max Planck", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.gabipd.org/", + "sampleId": "2679240", + "urlPattern": "http://www.gabipd.org/database/cgi-bin/GreenCards.pl.cgi?BioObjectId={$id}&Mode=ShowBioObject" } ], - "sampleId": "2679240", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2679240" }, { + "created": "2019-06-11T14:16:16.885+0000", + "deprecated": false, + "deprecationDate": null, + "description": "A 16S rRNA gene database which provides chimera screening, standard alignment, and taxonomic classification using multiple published taxonomies.", "id": 511, - "prefix": "greengenes", "mirId": "MIR:00000165", + "modified": "2019-06-11T14:16:16.885+0000", "name": "GreenGenes", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "A 16S rRNA gene database which provides chimera screening, standard alignment, and taxonomic classification using multiple published taxonomies.", - "created": "2019-06-11T14:16:16.885+0000", - "modified": "2019-06-11T14:16:16.885+0000", + "prefix": "greengenes", "resources": [ { - "id": 513, - "mirId": "MIR:00100211", - "urlPattern": "http://greengenes.lbl.gov/cgi-bin/show_one_record_v2.pl?prokMSA_id={$id}", - "name": "GreenGenes at Lawrence Berkeley", + "deprecated": false, + "deprecationDate": null, "description": "GreenGenes at Lawrence Berkeley", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "100000", - "resourceHomeUrl": "http://greengenes.lbl.gov/", + "id": 513, "institution": { - "id": 512, - "name": "Center for Environmental Biotechnology, Lawrence Berkeley National Laboratory, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 512, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Center for Environmental Biotechnology, Lawrence Berkeley National Laboratory, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100211", + "name": "GreenGenes at Lawrence Berkeley", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://greengenes.lbl.gov/", + "sampleId": "100000", + "urlPattern": "http://greengenes.lbl.gov/cgi-bin/show_one_record_v2.pl?prokMSA_id={$id}" } ], - "sampleId": "100000", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "100000" }, { + "created": "2019-06-11T14:16:17.150+0000", + "deprecated": false, + "deprecationDate": null, + "description": "GRIN (Germplasm Resources Information Network) Taxonomy for Plants provides information on scientific and common names, classification, distribution, references, and economic impact.", "id": 514, - "prefix": "grin.taxonomy", "mirId": "MIR:00000166", + "modified": "2019-06-11T14:16:17.150+0000", "name": "GRIN Plant Taxonomy", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "GRIN (Germplasm Resources Information Network) Taxonomy for Plants provides information on scientific and common names, classification, distribution, references, and economic impact.", - "created": "2019-06-11T14:16:17.150+0000", - "modified": "2019-06-11T14:16:17.150+0000", + "prefix": "grin.taxonomy", "resources": [ { - "id": 516, - "mirId": "MIR:00100212", - "urlPattern": "http://www.ars-grin.gov/cgi-bin/npgs/html/taxon.pl?{$id}", - "name": "GRIN at Maryland", + "deprecated": false, + "deprecationDate": null, "description": "GRIN at Maryland", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "19333", - "resourceHomeUrl": "http://www.ars-grin.gov/cgi-bin/npgs/html/index.pl?language=en", + "id": 516, "institution": { - "id": 515, - "name": "National Germplasm Resources Laboratory, Beltsville, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 515, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Germplasm Resources Laboratory, Beltsville, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100212", + "name": "GRIN at Maryland", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.ars-grin.gov/cgi-bin/npgs/html/index.pl?language=en", + "sampleId": "19333", + "urlPattern": "http://www.ars-grin.gov/cgi-bin/npgs/html/taxon.pl?{$id}" } ], - "sampleId": "19333", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "19333" }, { + "created": "2019-06-11T14:16:17.382+0000", + "deprecated": false, + "deprecationDate": null, + "description": "H-Invitational Database (H-InvDB) is an integrated database of human genes and transcripts. It provides curated annotations of human genes and transcripts including gene structures, alternative splicing isoforms, non-coding functional RNAs, protein functions, functional domains, sub-cellular localizations, metabolic pathways, protein 3D structure, genetic polymorphisms (SNPs, indels and microsatellite repeats), relation with diseases, gene expression profiling, molecular evolutionary features, protein-protein interactions (PPIs) and gene families/groups. This datatype provides access to the 'Locus' view.", "id": 517, - "prefix": "hinv.locus", "mirId": "MIR:00000167", + "modified": "2019-06-11T14:16:17.382+0000", "name": "H-InvDb Locus", + "namespaceEmbeddedInLui": false, "pattern": "^HIX\\d{7}(\\.\\d+)?$", - "description": "H-Invitational Database (H-InvDB) is an integrated database of human genes and transcripts. It provides curated annotations of human genes and transcripts including gene structures, alternative splicing isoforms, non-coding functional RNAs, protein functions, functional domains, sub-cellular localizations, metabolic pathways, protein 3D structure, genetic polymorphisms (SNPs, indels and microsatellite repeats), relation with diseases, gene expression profiling, molecular evolutionary features, protein-protein interactions (PPIs) and gene families/groups. This datatype provides access to the 'Locus' view.", - "created": "2019-06-11T14:16:17.382+0000", - "modified": "2019-06-11T14:16:17.382+0000", + "prefix": "hinv.locus", "resources": [ { - "id": 519, - "mirId": "MIR:00100213", - "urlPattern": "http://h-invitational.jp/hinv/spsoup/locus_view?hix_id={$id}", - "name": "H-Invitational Locus View at BIRC", + "deprecated": false, + "deprecationDate": null, "description": "H-Invitational Locus View at BIRC", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "HIX0004394", - "resourceHomeUrl": "http://h-invitational.jp/hinv/ahg-db/index.jsp", + "id": 519, "institution": { - "id": 518, - "name": "BIRC, Tokyo", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 518, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "BIRC, Tokyo", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100213", + "name": "H-Invitational Locus View at BIRC", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://h-invitational.jp/hinv/ahg-db/index.jsp", + "sampleId": "HIX0004394", + "urlPattern": "http://h-invitational.jp/hinv/spsoup/locus_view?hix_id={$id}" } ], - "sampleId": "HIX0004394", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "HIX0004394" }, { + "created": "2019-06-11T14:16:17.622+0000", + "deprecated": false, + "deprecationDate": null, + "description": "H-Invitational Database (H-InvDB) is an integrated database of human genes and transcripts. It provides curated annotations of human genes and transcripts including gene structures, alternative splicing isoforms, non-coding functional RNAs, protein functions, functional domains, sub-cellular localizations, metabolic pathways, protein 3D structure, genetic polymorphisms (SNPs, indels and microsatellite repeats), relation with diseases, gene expression profiling, molecular evolutionary features, protein-protein interactions (PPIs) and gene families/groups. This datatype provides access to the 'Transcript' view.", "id": 520, - "prefix": "hinv.transcript", "mirId": "MIR:00000168", + "modified": "2019-06-11T14:16:17.622+0000", "name": "H-InvDb Transcript", + "namespaceEmbeddedInLui": false, "pattern": "^HIT\\d{9}(\\.\\d+)?$", - "description": "H-Invitational Database (H-InvDB) is an integrated database of human genes and transcripts. It provides curated annotations of human genes and transcripts including gene structures, alternative splicing isoforms, non-coding functional RNAs, protein functions, functional domains, sub-cellular localizations, metabolic pathways, protein 3D structure, genetic polymorphisms (SNPs, indels and microsatellite repeats), relation with diseases, gene expression profiling, molecular evolutionary features, protein-protein interactions (PPIs) and gene families/groups. This datatype provides access to the 'Transcript' view.", - "created": "2019-06-11T14:16:17.622+0000", - "modified": "2019-06-11T14:16:17.622+0000", + "prefix": "hinv.transcript", "resources": [ { - "id": 521, - "mirId": "MIR:00100214", - "urlPattern": "http://h-invitational.jp/hinv/spsoup/transcript_view?hit_id={$id}", - "name": "H-Invitational Transcript View at BIRC", + "deprecated": false, + "deprecationDate": null, "description": "H-Invitational Transcript View at BIRC", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "HIT000195363", - "resourceHomeUrl": "http://h-invitational.jp/hinv/ahg-db/index.jsp", + "id": 521, "institution": { - "id": 518, - "name": "BIRC, Tokyo", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 518, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "BIRC, Tokyo", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100214", + "name": "H-Invitational Transcript View at BIRC", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://h-invitational.jp/hinv/ahg-db/index.jsp", + "sampleId": "HIT000195363", + "urlPattern": "http://h-invitational.jp/hinv/spsoup/transcript_view?hit_id={$id}" } ], - "sampleId": "HIT000195363", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "HIT000195363" }, { + "created": "2019-06-11T14:16:17.817+0000", + "deprecated": false, + "deprecationDate": null, + "description": "H-Invitational Database (H-InvDB) is an integrated database of human genes and transcripts. It provides curated annotations of human genes and transcripts including gene structures, alternative splicing isoforms, non-coding functional RNAs, protein functions, functional domains, sub-cellular localizations, metabolic pathways, protein 3D structure, genetic polymorphisms (SNPs, indels and microsatellite repeats), relation with diseases, gene expression profiling, molecular evolutionary features, protein-protein interactions (PPIs) and gene families/groups. This datatype provides access to the 'Protein' view.", "id": 522, - "prefix": "hinv.protein", "mirId": "MIR:00000169", + "modified": "2019-06-11T14:16:17.817+0000", "name": "H-InvDb Protein", + "namespaceEmbeddedInLui": false, "pattern": "^HIP\\d{9}(\\.\\d+)?$", - "description": "H-Invitational Database (H-InvDB) is an integrated database of human genes and transcripts. It provides curated annotations of human genes and transcripts including gene structures, alternative splicing isoforms, non-coding functional RNAs, protein functions, functional domains, sub-cellular localizations, metabolic pathways, protein 3D structure, genetic polymorphisms (SNPs, indels and microsatellite repeats), relation with diseases, gene expression profiling, molecular evolutionary features, protein-protein interactions (PPIs) and gene families/groups. This datatype provides access to the 'Protein' view.", - "created": "2019-06-11T14:16:17.817+0000", - "modified": "2019-06-11T14:16:17.817+0000", + "prefix": "hinv.protein", "resources": [ { - "id": 523, - "mirId": "MIR:00100215", - "urlPattern": "http://h-invitational.jp/hinv/protein/protein_view.cgi?hip_id={$id}", - "name": "H-Invitational Protein View at BIRC", + "deprecated": false, + "deprecationDate": null, "description": "H-Invitational Protein View at BIRC", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "HIP000030660", - "resourceHomeUrl": "http://h-invitational.jp/hinv/ahg-db/index.jsp", + "id": 523, "institution": { - "id": 518, - "name": "BIRC, Tokyo", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 518, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "BIRC, Tokyo", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100215", + "name": "H-Invitational Protein View at BIRC", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://h-invitational.jp/hinv/ahg-db/index.jsp", + "sampleId": "HIP000030660", + "urlPattern": "http://h-invitational.jp/hinv/protein/protein_view.cgi?hip_id={$id}" } ], - "sampleId": "HIP000030660", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "HIP000030660" }, { + "created": "2019-06-11T14:16:18.019+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Human Oral Microbiome Database (HOMD) provides a site-specific comprehensive database for the more than 600 prokaryote species that are present in the human oral cavity. It contains genomic information based on a curated 16S rRNA gene-based provisional naming scheme, and taxonomic information. This datatype contains genomic sequence information.", "id": 524, - "prefix": "homd.seq", "mirId": "MIR:00000170", + "modified": "2019-06-11T14:16:18.019+0000", "name": "HOMD Sequence Metainformation", + "namespaceEmbeddedInLui": false, "pattern": "^SEQF\\d+$", - "description": "The Human Oral Microbiome Database (HOMD) provides a site-specific comprehensive database for the more than 600 prokaryote species that are present in the human oral cavity. It contains genomic information based on a curated 16S rRNA gene-based provisional naming scheme, and taxonomic information. This datatype contains genomic sequence information.", - "created": "2019-06-11T14:16:18.019+0000", - "modified": "2019-06-11T14:16:18.019+0000", + "prefix": "homd.seq", "resources": [ { - "id": 526, - "mirId": "MIR:00100216", - "urlPattern": "http://www.homd.org/modules.php?op=modload&name=GenomeList&file=index&link=detailinfo&seqid={$id}", - "name": "HOMD sequence metainformation at The Forsyth Institute", + "deprecated": false, + "deprecationDate": null, "description": "HOMD sequence metainformation at The Forsyth Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "SEQF1003", - "resourceHomeUrl": "http://www.homd.org/index.php", + "id": 526, "institution": { - "id": 525, - "name": "The Forsyth Institute, Boston", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 525, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Forsyth Institute, Boston", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100216", + "name": "HOMD sequence metainformation at The Forsyth Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.homd.org/index.php", + "sampleId": "SEQF1003", + "urlPattern": "http://www.homd.org/modules.php?op=modload&name=GenomeList&file=index&link=detailinfo&seqid={$id}" } ], - "sampleId": "SEQF1003", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "SEQF1003" }, { + "created": "2019-06-11T14:16:18.268+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Human Oral Microbiome Database (HOMD) provides a site-specific comprehensive database for the more than 600 prokaryote species that are present in the human oral cavity. It contains genomic information based on a curated 16S rRNA gene-based provisional naming scheme, and taxonomic information. This datatype contains taxonomic information.", "id": 527, - "prefix": "homd.taxon", "mirId": "MIR:00000171", + "modified": "2019-06-11T14:16:18.268+0000", "name": "HOMD Taxonomy", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Human Oral Microbiome Database (HOMD) provides a site-specific comprehensive database for the more than 600 prokaryote species that are present in the human oral cavity. It contains genomic information based on a curated 16S rRNA gene-based provisional naming scheme, and taxonomic information. This datatype contains taxonomic information.", - "created": "2019-06-11T14:16:18.268+0000", - "modified": "2019-06-11T14:16:18.268+0000", + "prefix": "homd.taxon", "resources": [ { - "id": 528, - "mirId": "MIR:00100217", - "urlPattern": "http://www.homd.org/modules.php?op=modload&name=HOMD&file=index&oraltaxonid={$id}&view=dynamic", - "name": "HOMD taxon information at The Forsyth Institute", + "deprecated": false, + "deprecationDate": null, "description": "HOMD taxon information at The Forsyth Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "811", - "resourceHomeUrl": "http://www.homd.org/index.php", + "id": 528, "institution": { - "id": 525, - "name": "The Forsyth Institute, Boston", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 525, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Forsyth Institute, Boston", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100217", + "name": "HOMD taxon information at The Forsyth Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.homd.org/index.php", + "sampleId": "811", + "urlPattern": "http://www.homd.org/modules.php?op=modload&name=HOMD&file=index&oraltaxonid={$id}&view=dynamic" } ], - "sampleId": "811", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "811" }, { + "created": "2019-06-11T14:16:18.461+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Influenza Research Database (IRD) contains information related to influenza virus, including genomic sequence, strain, protein, epitope and bibliographic information. The Segment Details page contains descriptive information and annotation data about a particular genomic segment and its encoded product(s).", "id": 529, - "prefix": "ird.segment", "mirId": "MIR:00000172", + "modified": "2019-06-11T14:16:18.461+0000", "name": "IRD Segment Sequence", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+(\\_)?\\d+(\\.\\d+)?$", - "description": "Influenza Research Database (IRD) contains information related to influenza virus, including genomic sequence, strain, protein, epitope and bibliographic information. The Segment Details page contains descriptive information and annotation data about a particular genomic segment and its encoded product(s).", - "created": "2019-06-11T14:16:18.461+0000", - "modified": "2019-06-11T14:16:18.461+0000", + "prefix": "ird.segment", "resources": [ { - "id": 531, - "mirId": "MIR:00100218", - "urlPattern": "http://www.fludb.org/brc/fluSegmentDetails.do?ncbiGenomicAccession={$id}", - "name": "IRD at BioHealthBase", + "deprecated": false, + "deprecationDate": null, "description": "IRD at BioHealthBase", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "CY077097", - "resourceHomeUrl": "http://www.fludb.org/", + "id": 531, "institution": { - "id": 530, - "name": "Southwestern Medical Center, University of Texas, Dallas", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 530, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Southwestern Medical Center, University of Texas, Dallas", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100218", + "name": "IRD at BioHealthBase", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.fludb.org/", + "sampleId": "CY077097", + "urlPattern": "http://www.fludb.org/brc/fluSegmentDetails.do?ncbiGenomicAccession={$id}" } ], - "sampleId": "CY077097", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CY077097" }, { + "created": "2019-06-11T14:16:18.690+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ISfinder is a database of bacterial insertion sequences (IS). It assigns IS nomenclature and acts as a repository for ISs. Each IS is annotated with information such as the open reading frame DNA sequence, the sequence of the ends of the element and target sites, its origin and distribution together with a bibliography, where available.", "id": 532, - "prefix": "isfinder", "mirId": "MIR:00000173", + "modified": "2019-06-11T14:16:18.690+0000", "name": "ISFinder", + "namespaceEmbeddedInLui": false, "pattern": "^IS\\w+(\\-\\d)?$", - "description": "ISfinder is a database of bacterial insertion sequences (IS). It assigns IS nomenclature and acts as a repository for ISs. Each IS is annotated with information such as the open reading frame DNA sequence, the sequence of the ends of the element and target sites, its origin and distribution together with a bibliography, where available.", - "created": "2019-06-11T14:16:18.690+0000", - "modified": "2019-06-11T14:16:18.690+0000", + "prefix": "isfinder", "resources": [ { - "id": 534, - "mirId": "MIR:00100219", - "urlPattern": "https://www-is.biotoul.fr/scripts/ficheIS.php?name={$id}", - "name": "IS Finder at CNRS", + "deprecated": false, + "deprecationDate": null, "description": "IS Finder at CNRS", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ISA1083-2", - "resourceHomeUrl": "http://www-is.biotoul.fr/i", + "id": 534, "institution": { - "id": 533, - "name": "Laboratoire de Microbiologie et Génétique Moléculaires, CNRS, Toulouse", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 533, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Laboratoire de Microbiologie et G\u00e9n\u00e9tique Mol\u00e9culaires, CNRS, Toulouse", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100219", + "name": "IS Finder at CNRS", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www-is.biotoul.fr/i", + "sampleId": "ISA1083-2", + "urlPattern": "https://www-is.biotoul.fr/scripts/ficheIS.php?name={$id}" } ], - "sampleId": "ISA1083-2", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ISA1083-2" }, { + "created": "2019-06-11T14:16:18.921+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Japan Collection of Microorganisms (JCM) collects, catalogues, and distributes cultured microbial strains, restricted to those classified in Risk Group 1 or 2.", "id": 535, - "prefix": "jcm", "mirId": "MIR:00000174", + "modified": "2019-06-11T14:16:18.921+0000", "name": "Japan Collection of Microorganisms", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Japan Collection of Microorganisms (JCM) collects, catalogues, and distributes cultured microbial strains, restricted to those classified in Risk Group 1 or 2.", - "created": "2019-06-11T14:16:18.921+0000", - "modified": "2019-06-11T14:16:18.921+0000", + "prefix": "jcm", "resources": [ { - "id": 537, - "mirId": "MIR:00100220", - "urlPattern": "http://www.jcm.riken.go.jp/cgi-bin/jcm/jcm_number?JCM={$id}", - "name": "JCM at RIKEN BioResource Center", + "deprecated": false, + "deprecationDate": null, "description": "JCM at RIKEN BioResource Center", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "17254", - "resourceHomeUrl": "http://www.jcm.riken.go.jp/", + "id": 537, "institution": { - "id": 536, - "name": "RIKEN BioResource Center, Ibaraki", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 536, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "RIKEN BioResource Center, Ibaraki", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100220", + "name": "JCM at RIKEN BioResource Center", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.jcm.riken.go.jp/", + "sampleId": "17254", + "urlPattern": "http://www.jcm.riken.go.jp/cgi-bin/jcm/jcm_number?JCM={$id}" } ], - "sampleId": "17254", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "17254" }, { + "created": "2019-06-11T14:16:19.173+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The integrated microbial genomes (IMG) system is a data management, analysis and annotation platform for all publicly available genomes. IMG contains both draft and complete JGI (DoE Joint Genome Institute) microbial genomes integrated with all other publicly available genomes from all three domains of life, together with a large number of plasmids and viruses. This datatype refers to taxon information.", "id": 538, - "prefix": "img.taxon", "mirId": "MIR:00000175", + "modified": "2019-06-11T14:16:19.173+0000", "name": "Integrated Microbial Genomes Taxon", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The integrated microbial genomes (IMG) system is a data management, analysis and annotation platform for all publicly available genomes. IMG contains both draft and complete JGI (DoE Joint Genome Institute) microbial genomes integrated with all other publicly available genomes from all three domains of life, together with a large number of plasmids and viruses. This datatype refers to taxon information.", - "created": "2019-06-11T14:16:19.173+0000", - "modified": "2019-06-11T14:16:19.173+0000", + "prefix": "img.taxon", "resources": [ { - "id": 540, - "mirId": "MIR:00100221", - "urlPattern": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=TaxonDetail&taxon_oid={$id}", - "name": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", + "deprecated": false, + "deprecationDate": null, "description": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "648028003", - "resourceHomeUrl": "http://img.jgi.doe.gov/", + "id": 540, "institution": { - "id": 539, - "name": "Lawrence Berkeley National Laboratory, Berkeley", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 539, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Lawrence Berkeley National Laboratory, Berkeley", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100221", + "name": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://img.jgi.doe.gov/", + "sampleId": "648028003", + "urlPattern": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=TaxonDetail&taxon_oid={$id}" } ], - "sampleId": "648028003", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "648028003" }, { + "created": "2019-06-11T14:16:19.420+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The integrated microbial genomes (IMG) system is a data management, analysis and annotation platform for all publicly available genomes. IMG contains both draft and complete JGI (DoE Joint Genome Institute) microbial genomes integrated with all other publicly available genomes from all three domains of life, together with a large number of plasmids and viruses. This datatype refers to gene information.", "id": 541, - "prefix": "img.gene", "mirId": "MIR:00000176", + "modified": "2019-06-11T14:16:19.420+0000", "name": "Integrated Microbial Genomes Gene", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The integrated microbial genomes (IMG) system is a data management, analysis and annotation platform for all publicly available genomes. IMG contains both draft and complete JGI (DoE Joint Genome Institute) microbial genomes integrated with all other publicly available genomes from all three domains of life, together with a large number of plasmids and viruses. This datatype refers to gene information.", - "created": "2019-06-11T14:16:19.420+0000", - "modified": "2019-06-11T14:16:19.420+0000", + "prefix": "img.gene", "resources": [ { - "id": 542, - "mirId": "MIR:00100222", - "urlPattern": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=GeneDetail&gene_oid={$id}", - "name": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", + "deprecated": false, + "deprecationDate": null, "description": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "638309541", - "resourceHomeUrl": "http://img.jgi.doe.gov/", + "id": 542, "institution": { - "id": 539, - "name": "Lawrence Berkeley National Laboratory, Berkeley", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 539, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Lawrence Berkeley National Laboratory, Berkeley", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100222", + "name": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://img.jgi.doe.gov/", + "sampleId": "638309541", + "urlPattern": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=GeneDetail&gene_oid={$id}" } ], - "sampleId": "638309541", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "638309541" }, { + "created": "2019-06-11T14:16:19.610+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MaizeGDB is the maize research community's central repository for genetics and genomics information.", "id": 543, - "prefix": "maizegdb.locus", "mirId": "MIR:00000177", + "modified": "2019-06-11T14:16:19.610+0000", "name": "MaizeGDB Locus", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "MaizeGDB is the maize research community's central repository for genetics and genomics information.", - "created": "2019-06-11T14:16:19.610+0000", - "modified": "2019-06-11T14:16:19.610+0000", + "prefix": "maizegdb.locus", "resources": [ { - "id": 545, - "mirId": "MIR:00100223", - "urlPattern": "http://www.maizegdb.org/cgi-bin/displaylocusrecord.cgi?id={$id}", - "name": "MaizeGDB at Missouri", + "deprecated": false, + "deprecationDate": null, "description": "MaizeGDB at Missouri", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "25011", - "resourceHomeUrl": "http://www.maizegdb.org/", + "id": 545, "institution": { - "id": 544, - "name": "Division of Plant Sciences, Missouri", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 544, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Division of Plant Sciences, Missouri", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null - } - ], - "sampleId": "25011", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100223", + "name": "MaizeGDB at Missouri", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.maizegdb.org/", + "sampleId": "25011", + "urlPattern": "http://www.maizegdb.org/cgi-bin/displaylocusrecord.cgi?id={$id}" + } + ], + "sampleId": "25011" }, { + "created": "2019-06-11T14:16:19.843+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MycoBank is an online database, documenting new mycological names and combinations, eventually combined with descriptions and illustrations.", "id": 546, - "prefix": "mycobank", "mirId": "MIR:00000178", + "modified": "2019-06-11T14:16:19.843+0000", "name": "MycoBank", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "MycoBank is an online database, documenting new mycological names and combinations, eventually combined with descriptions and illustrations.", - "created": "2019-06-11T14:16:19.843+0000", - "modified": "2019-06-11T14:16:19.843+0000", + "prefix": "mycobank", "resources": [ { - "id": 548, - "mirId": "MIR:00100224", - "urlPattern": "http://www.mycobank.org/Biolomics.aspx?Table=Mycobank&MycoBankNr_={$id}", - "name": "MycoBank at Fungal Biodiversity Centre", + "deprecated": false, + "deprecationDate": null, "description": "MycoBank at Fungal Biodiversity Centre", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "349124", - "resourceHomeUrl": "http://www.mycobank.org/", + "id": 548, "institution": { - "id": 547, - "name": "CBS-KNAW Fungal Biodiversity Centre, Utrecht", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 547, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "CBS-KNAW Fungal Biodiversity Centre, Utrecht", + "rorId": null }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100224", + "name": "MycoBank at Fungal Biodiversity Centre", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.mycobank.org/", + "sampleId": "349124", + "urlPattern": "http://www.mycobank.org/Biolomics.aspx?Table=Mycobank&MycoBankNr_={$id}" } ], - "sampleId": "349124", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "349124" }, { + "created": "2019-06-11T14:16:20.103+0000", + "deprecated": false, + "deprecationDate": null, + "description": "NITE Biological Research Center (NBRC) provides a collection of microbial resources, performing taxonomic characterization of individual microorganisms such as bacteria including actinomycetes and archaea, yeasts, fungi, algaes, bacteriophages and DNA resources for academic research and industrial applications. A catalogue is maintained which states strain nomenclature, synonyms, and culture and sequence information.", "id": 549, - "prefix": "nbrc", "mirId": "MIR:00000179", + "modified": "2019-06-11T14:16:20.103+0000", "name": "NITE Biological Research Center Catalogue", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "NITE Biological Research Center (NBRC) provides a collection of microbial resources, performing taxonomic characterization of individual microorganisms such as bacteria including actinomycetes and archaea, yeasts, fungi, algaes, bacteriophages and DNA resources for academic research and industrial applications. A catalogue is maintained which states strain nomenclature, synonyms, and culture and sequence information.", - "created": "2019-06-11T14:16:20.103+0000", - "modified": "2019-06-11T14:16:20.103+0000", + "prefix": "nbrc", "resources": [ { - "id": 551, - "mirId": "MIR:00100225", - "urlPattern": "http://www.nbrc.nite.go.jp/NBRC2/NBRCCatalogueDetailServlet?ID=NBRC&CAT={$id}", - "name": "NBRC Catalogue at National Institute of Technology Evaluation", + "deprecated": false, + "deprecationDate": null, "description": "NBRC Catalogue at National Institute of Technology Evaluation", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "00001234", - "resourceHomeUrl": "http://www.nbrc.nite.go.jp/e/index.html", + "id": 551, "institution": { - "id": 550, - "name": "National Institute of Technology Evaluation, Tokyo", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 550, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "National Institute of Technology Evaluation, Tokyo", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100225", + "name": "NBRC Catalogue at National Institute of Technology Evaluation", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.nbrc.nite.go.jp/e/index.html", + "sampleId": "00001234", + "urlPattern": "http://www.nbrc.nite.go.jp/NBRC2/NBRCCatalogueDetailServlet?ID=NBRC&CAT={$id}" } ], - "sampleId": "00001234", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "00001234" }, { + "created": "2019-06-11T14:16:20.362+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Pseudomonas Genome Database is a resource for peer-reviewed, continually updated annotation for all Pseudomonas species. It includes gene and protein sequence information, as well as regulation and predicted function and annotation.", "id": 552, - "prefix": "pseudomonas", "mirId": "MIR:00000180", + "modified": "2019-06-11T14:16:20.362+0000", "name": "Pseudomonas Genome Database", + "namespaceEmbeddedInLui": false, "pattern": "^P\\w+$", - "description": "The Pseudomonas Genome Database is a resource for peer-reviewed, continually updated annotation for all Pseudomonas species. It includes gene and protein sequence information, as well as regulation and predicted function and annotation.", - "created": "2019-06-11T14:16:20.362+0000", - "modified": "2019-06-11T14:16:20.362+0000", + "prefix": "pseudomonas", "resources": [ { - "id": 554, - "mirId": "MIR:00100226", - "urlPattern": "http://www.pseudomonas.com/feature/show/?locus_tag={$id}", - "name": "Pseudomonas Genome Database at Simon Fraser University", + "deprecated": false, + "deprecationDate": null, "description": "Pseudomonas Genome Database at Simon Fraser University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PSEEN0001", - "resourceHomeUrl": "http://www.pseudomonas.com/", + "id": 554, "institution": { - "id": 553, - "name": "Simon Fraser University, British Columbia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 553, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "Simon Fraser University, British Columbia", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100226", + "name": "Pseudomonas Genome Database at Simon Fraser University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.pseudomonas.com/", + "sampleId": "PSEEN0001", + "urlPattern": "http://www.pseudomonas.com/feature/show/?locus_tag={$id}" } ], - "sampleId": "PSEEN0001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PSEEN0001" }, { + "created": "2019-06-11T14:16:20.589+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This datatype refers to proteins in Gramene.", "id": 555, - "prefix": "gramene.protein", "mirId": "MIR:00000181", + "modified": "2019-06-11T14:16:20.589+0000", "name": "Gramene protein", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This datatype refers to proteins in Gramene.", - "created": "2019-06-11T14:16:20.589+0000", - "modified": "2019-06-11T14:16:20.589+0000", + "prefix": "gramene.protein", "resources": [ { - "id": 557, - "mirId": "MIR:00100227", - "urlPattern": "http://www.gramene.org/db/protein/protein_search?protein_id={$id}", - "name": "Gramene Protein at Cold Spring Harbor", + "deprecated": false, + "deprecationDate": null, "description": "Gramene Protein at Cold Spring Harbor", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "78073", - "resourceHomeUrl": "http://www.gramene.org/", + "id": 557, "institution": { - "id": 556, - "name": "Cold Spring Harbor Laboratory, New York", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 556, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Cold Spring Harbor Laboratory, New York", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100227", + "name": "Gramene Protein at Cold Spring Harbor", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.gramene.org/", + "sampleId": "78073", + "urlPattern": "http://www.gramene.org/db/protein/protein_search?protein_id={$id}" } ], - "sampleId": "78073", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "78073" }, { + "created": "2019-06-11T14:16:20.812+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This datatype refers to genes in Gramene.", "id": 558, - "prefix": "gramene.gene", "mirId": "MIR:00000182", + "modified": "2019-06-11T14:16:20.812+0000", "name": "Gramene genes", + "namespaceEmbeddedInLui": false, "pattern": "^GR\\:\\d+$", - "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This datatype refers to genes in Gramene.", - "created": "2019-06-11T14:16:20.812+0000", - "modified": "2019-06-11T14:16:20.812+0000", + "prefix": "gramene.gene", "resources": [ { - "id": 559, - "mirId": "MIR:00100228", - "urlPattern": "http://www.gramene.org/db/genes/search_gene?acc={$id}", - "name": "Gramene Genes at Cold Spring Harbor", + "deprecated": false, + "deprecationDate": null, "description": "Gramene Genes at Cold Spring Harbor", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "GR:0080039", - "resourceHomeUrl": "http://www.gramene.org/", + "id": 559, "institution": { - "id": 556, - "name": "Cold Spring Harbor Laboratory, New York", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 556, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Cold Spring Harbor Laboratory, New York", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100228", + "name": "Gramene Genes at Cold Spring Harbor", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.gramene.org/", + "sampleId": "GR:0080039", + "urlPattern": "http://www.gramene.org/db/genes/search_gene?acc={$id}" } ], - "sampleId": "GR:0080039", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "GR:0080039" }, { + "created": "2019-06-11T14:16:21.008+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This datatype refers to taxonomic information in Gramene.", "id": 560, - "prefix": "gramene.taxonomy", "mirId": "MIR:00000183", + "modified": "2019-06-11T14:16:21.008+0000", "name": "Gramene Taxonomy", + "namespaceEmbeddedInLui": false, "pattern": "^GR\\_tax\\:\\d+$", - "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This datatype refers to taxonomic information in Gramene.", - "created": "2019-06-11T14:16:21.008+0000", - "modified": "2019-06-11T14:16:21.008+0000", + "prefix": "gramene.taxonomy", "resources": [ { - "id": 561, - "mirId": "MIR:00100229", - "urlPattern": "http://www.gramene.org/db/ontology/search?id={$id}", - "name": "Gramene Taxonomy at Cold Spring Harbor", + "deprecated": false, + "deprecationDate": null, "description": "Gramene Taxonomy at Cold Spring Harbor", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "GR_tax:013681", - "resourceHomeUrl": "http://www.gramene.org/", + "id": 561, "institution": { - "id": 556, - "name": "Cold Spring Harbor Laboratory, New York", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 556, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Cold Spring Harbor Laboratory, New York", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100229", + "name": "Gramene Taxonomy at Cold Spring Harbor", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.gramene.org/", + "sampleId": "GR_tax:013681", + "urlPattern": "http://www.gramene.org/db/ontology/search?id={$id}" } ], - "sampleId": "GR_tax:013681", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "GR_tax:013681" }, { + "created": "2019-06-11T14:16:21.219+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This datatype refers to quantitative trait loci identified in Gramene.", "id": 562, - "prefix": "gramene.qtl", "mirId": "MIR:00000184", + "modified": "2019-06-11T14:16:21.219+0000", "name": "Gramene QTL", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This datatype refers to quantitative trait loci identified in Gramene.", - "created": "2019-06-11T14:16:21.219+0000", - "modified": "2019-06-11T14:16:21.219+0000", + "prefix": "gramene.qtl", "resources": [ { - "id": 563, - "mirId": "MIR:00100230", - "urlPattern": "http://www.gramene.org/db/qtl/qtl_display?qtl_accession_id={$id}", - "name": "Gramene Quantitative Trait Loci at Cold Spring Harbor", + "deprecated": false, + "deprecationDate": null, "description": "Gramene Quantitative Trait Loci at Cold Spring Harbor", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "CQG5", - "resourceHomeUrl": "http://www.gramene.org/", + "id": 563, "institution": { - "id": 556, - "name": "Cold Spring Harbor Laboratory, New York", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 556, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Cold Spring Harbor Laboratory, New York", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100230", + "name": "Gramene Quantitative Trait Loci at Cold Spring Harbor", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.gramene.org/", + "sampleId": "CQG5", + "urlPattern": "http://www.gramene.org/db/qtl/qtl_display?qtl_accession_id={$id}" } ], - "sampleId": "CQG5", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CQG5" }, { + "created": "2019-06-11T14:16:21.425+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Sol Genomics Network (SGN) is a database and website dedicated to the genomic information of the nightshade family, which includes species such as tomato, potato, pepper, petunia and eggplant.", "id": 564, - "prefix": "sgn", "mirId": "MIR:00000185", + "modified": "2019-06-11T14:16:21.425+0000", "name": "Sol Genomics Network", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Sol Genomics Network (SGN) is a database and website dedicated to the genomic information of the nightshade family, which includes species such as tomato, potato, pepper, petunia and eggplant.", - "created": "2019-06-11T14:16:21.425+0000", - "modified": "2019-06-11T14:16:21.425+0000", + "prefix": "sgn", "resources": [ { - "id": 566, - "mirId": "MIR:00100231", - "urlPattern": "http://solgenomics.net/phenome/locus_display.pl?locus_id={$id}", - "name": "Sol Genomics Network at Boyce Thompson Institute for Plant Research", + "deprecated": false, + "deprecationDate": null, "description": "Sol Genomics Network at Boyce Thompson Institute for Plant Research", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0001", - "resourceHomeUrl": "http://solgenomics.net/", + "id": 566, "institution": { - "id": 565, - "name": "Boyce Thompson Institute for Plant Research, New York", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 565, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Boyce Thompson Institute for Plant Research, New York", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100231", + "name": "Sol Genomics Network at Boyce Thompson Institute for Plant Research", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://solgenomics.net/", + "sampleId": "0001", + "urlPattern": "http://solgenomics.net/phenome/locus_display.pl?locus_id={$id}" } ], - "sampleId": "0001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "0001" }, { + "created": "2019-06-11T14:16:21.882+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BioPortal is an open repository of biomedical ontologies that provides access via Web services and Web browsers to ontologies developed in OWL, RDF, OBO format and Prot\u00e9g\u00e9 frames. BioPortal functionality includes the ability to browse, search and visualize ontologies.", "id": 570, - "prefix": "bioportal", "mirId": "MIR:00000187", + "modified": "2019-06-11T14:16:21.882+0000", "name": "BioPortal", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "BioPortal is an open repository of biomedical ontologies that provides access via Web services and Web browsers to ontologies developed in OWL, RDF, OBO format and Protégé frames. BioPortal functionality includes the ability to browse, search and visualize ontologies.", - "created": "2019-06-11T14:16:21.882+0000", - "modified": "2019-06-11T14:16:21.882+0000", + "prefix": "bioportal", "resources": [ { - "id": 572, - "mirId": "MIR:00100244", - "urlPattern": "http://bioportal.bioontology.org/ontologies/{$id}", - "name": "BioPortal at National Center for Biomedical Ontology", + "deprecated": false, + "deprecationDate": null, "description": "BioPortal at National Center for Biomedical Ontology", - "official": false, - "providerCode": "bptl", - "sampleId": "1046", - "resourceHomeUrl": "http://bioportal.bioontology.org/", + "id": 572, "institution": { - "id": 571, - "name": "National Center for Biomedical Ontology, Stanford University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 571, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford University", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100244", + "name": "BioPortal at National Center for Biomedical Ontology", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/", + "sampleId": "1046", + "urlPattern": "http://bioportal.bioontology.org/ontologies/{$id}" } ], - "sampleId": "1046", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1046" }, { + "created": "2019-06-11T14:16:22.127+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MIRIAM Registry is an online resource created to catalogue data types (Gene Ontology, Taxonomy or PubMed are some examples), their URIs and the corresponding resources (or physical locations), whether these are controlled vocabularies or databases.", "id": 573, - "prefix": "miriam.resource", "mirId": "MIR:00000188", + "modified": "2019-06-11T14:16:22.127+0000", "name": "MIRIAM Registry resource", + "namespaceEmbeddedInLui": false, "pattern": "^MIR:001\\d{5}$", - "description": "MIRIAM Registry is an online resource created to catalogue data types (Gene Ontology, Taxonomy or PubMed are some examples), their URIs and the corresponding resources (or physical locations), whether these are controlled vocabularies or databases.", - "created": "2019-06-11T14:16:22.127+0000", - "modified": "2019-06-11T14:16:22.127+0000", + "prefix": "miriam.resource", "resources": [ { - "id": 574, - "mirId": "MIR:00100245", - "urlPattern": "https://www.ebi.ac.uk/miriam/main/resources/{$id}", - "name": "MIRIAM Registry (resources)", + "deprecated": false, + "deprecationDate": null, "description": "MIRIAM Registry (resources)", - "official": false, - "providerCode": "ebi", - "sampleId": "MIR:00100005", - "resourceHomeUrl": "https://www.ebi.ac.uk/miriam/", + "id": 574, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100245", + "name": "MIRIAM Registry (resources)", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/miriam/", + "sampleId": "MIR:00100005", + "urlPattern": "https://www.ebi.ac.uk/miriam/main/resources/{$id}" } ], - "sampleId": "MIR:00100005", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MIR:00100005" }, { + "created": "2019-06-11T14:16:22.318+0000", + "deprecated": false, + "deprecationDate": null, + "description": "EDAM is an ontology of general bioinformatics concepts, including topics, data types, formats, identifiers and operations. EDAM provides a controlled vocabulary for the description, in semantic terms, of things such as: web services (e.g. WSDL files), applications, tool collections and packages, work-benches and workflow software, databases and ontologies, XSD data schema and data objects, data syntax and file formats, web portals and pages, resource catalogues and documents (such as scientific publications).", "id": 575, - "prefix": "edam", "mirId": "MIR:00000189", + "modified": "2019-06-11T14:16:22.318+0000", "name": "EDAM Ontology", + "namespaceEmbeddedInLui": false, "pattern": "^(data|topic|operation|format)\\_\\d{4}$", - "description": "EDAM is an ontology of general bioinformatics concepts, including topics, data types, formats, identifiers and operations. EDAM provides a controlled vocabulary for the description, in semantic terms, of things such as: web services (e.g. WSDL files), applications, tool collections and packages, work-benches and workflow software, databases and ontologies, XSD data schema and data objects, data syntax and file formats, web portals and pages, resource catalogues and documents (such as scientific publications).", - "created": "2019-06-11T14:16:22.318+0000", - "modified": "2019-06-11T14:16:22.318+0000", + "prefix": "edam", "resources": [ { - "id": 576, - "mirId": "MIR:00100536", - "urlPattern": "http://purl.bioontology.org/ontology/EDAM/{$id}", - "name": "EDAM through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "EDAM through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "data_1664", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/EDAM", + "id": 576, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100536", + "name": "EDAM through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/EDAM", + "sampleId": "data_1664", + "urlPattern": "http://purl.bioontology.org/ontology/EDAM/{$id}" }, { - "id": 577, - "mirId": "MIR:00100762", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/edam/terms?short_form={$id}", - "name": "EDAM through OLS", + "deprecated": false, + "deprecationDate": null, "description": "EDAM through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "data_1664", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/edam", + "id": 577, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100762", + "name": "EDAM through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/edam", + "sampleId": "data_1664", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/edam/terms?short_form={$id}" } ], - "sampleId": "data_1664", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "data_1664" }, { + "created": "2019-06-11T14:16:22.644+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Protein Model DataBase (PMDB), is a database that collects manually built three dimensional protein models, obtained by different structure prediction techniques.", "id": 578, - "prefix": "pmdb", "mirId": "MIR:00000190", + "modified": "2019-06-11T14:16:22.644+0000", "name": "Protein Model Database", + "namespaceEmbeddedInLui": false, "pattern": "^PM\\d{7}", - "description": "The Protein Model DataBase (PMDB), is a database that collects manually built three dimensional protein models, obtained by different structure prediction techniques.", - "created": "2019-06-11T14:16:22.644+0000", - "modified": "2019-06-11T14:16:22.644+0000", + "prefix": "pmdb", "resources": [ { - "id": 580, - "mirId": "MIR:00100247", - "urlPattern": "https://bioinformatics.cineca.it/PMDB/user//search.php?idsearch={$id}", - "name": "Protein Model Database at University of Rome", + "deprecated": false, + "deprecationDate": null, "description": "Protein Model Database at University of Rome", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PM0012345", - "resourceHomeUrl": "https://bioinformatics.cineca.it/PMDB/", + "id": 580, "institution": { - "id": 579, - "name": "CASPUR and Biocomputing group, Department of Biochemical Sciences, University of Rome, Rome", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 579, "location": { "countryCode": "IT", "countryName": "Italy" - } + }, + "name": "CASPUR and Biocomputing group, Department of Biochemical Sciences, University of Rome, Rome", + "rorId": null }, "location": { "countryCode": "IT", "countryName": "Italy" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100247", + "name": "Protein Model Database at University of Rome", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://bioinformatics.cineca.it/PMDB/", + "sampleId": "PM0012345", + "urlPattern": "https://bioinformatics.cineca.it/PMDB/user//search.php?idsearch={$id}" } ], - "sampleId": "PM0012345", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PM0012345" }, { + "created": "2019-06-11T14:16:22.902+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ArachnoServer (www.arachnoserver.org) is a manually curated database providing information on the sequence, structure and biological activity of protein toxins from spider venoms. It include a molecular target ontology designed specifically for venom toxins, as well as current and historic taxonomic information.", "id": 581, - "prefix": "arachnoserver", "mirId": "MIR:00000193", + "modified": "2019-06-11T14:16:22.902+0000", "name": "ArachnoServer", + "namespaceEmbeddedInLui": false, "pattern": "^AS\\d{6}$", - "description": "ArachnoServer (www.arachnoserver.org) is a manually curated database providing information on the sequence, structure and biological activity of protein toxins from spider venoms. It include a molecular target ontology designed specifically for venom toxins, as well as current and historic taxonomic information.", - "created": "2019-06-11T14:16:22.902+0000", - "modified": "2019-06-11T14:16:22.902+0000", + "prefix": "arachnoserver", "resources": [ { - "id": 583, - "mirId": "MIR:00100250", - "urlPattern": "http://www.arachnoserver.org/toxincard.html?id={$id}", - "name": "ArachnoServer at Brisbane", + "deprecated": false, + "deprecationDate": null, "description": "ArachnoServer at Brisbane", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "AS000060", - "resourceHomeUrl": "http://www.arachnoserver.org/", + "id": 583, "institution": { - "id": 582, - "name": "Institute for Molecular Bioscience, The University of Queensland, Brisbane", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 582, "location": { "countryCode": "AU", "countryName": "Australia" - } + }, + "name": "Institute for Molecular Bioscience, The University of Queensland, Brisbane", + "rorId": null }, "location": { "countryCode": "AU", "countryName": "Australia" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100250", + "name": "ArachnoServer at Brisbane", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.arachnoserver.org/", + "sampleId": "AS000060", + "urlPattern": "http://www.arachnoserver.org/toxincard.html?id={$id}" } ], - "sampleId": "AS000060", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AS000060" }, { + "created": "2019-06-11T14:16:23.132+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BioCyc is a collection of Pathway/Genome Databases (PGDBs) which provides an electronic reference source on the genomes and metabolic pathways of sequenced organisms.", "id": 584, - "prefix": "biocyc", "mirId": "MIR:00000194", + "modified": "2019-06-11T14:16:23.132+0000", "name": "BioCyc", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z-0-9]+(\\:)?[A-Za-z0-9+_.%-:]+$", - "description": "BioCyc is a collection of Pathway/Genome Databases (PGDBs) which provides an electronic reference source on the genomes and metabolic pathways of sequenced organisms.", - "created": "2019-06-11T14:16:23.132+0000", - "modified": "2019-06-11T14:16:23.132+0000", + "prefix": "biocyc", "resources": [ { - "id": 586, - "mirId": "MIR:00100251", - "urlPattern": "http://biocyc.org/getid?id={$id}", - "name": "BioCyc at SRI International", + "deprecated": false, + "deprecationDate": null, "description": "BioCyc at SRI International", - "official": false, - "providerCode": "sri", - "sampleId": "ECOLI:CYT-D-UBIOX-CPLX", - "resourceHomeUrl": "http://biocyc.org", + "id": 586, "institution": { - "id": 1692, - "name": "SRI International", - "homeUrl": "https://www.sri.com/", "description": "SRI is an independent, nonprofit research center that works with clients to take the most advanced R&D from the laboratory to the marketplace.", - "rorId": "https://ror.org/05s570m15", + "homeUrl": "https://www.sri.com/", + "id": 1692, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "SRI International", + "rorId": "https://ror.org/05s570m15" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100251", + "name": "BioCyc at SRI International", + "official": false, + "providerCode": "sri", + "resourceHomeUrl": "http://biocyc.org", + "sampleId": "ECOLI:CYT-D-UBIOX-CPLX", + "urlPattern": "http://biocyc.org/getid?id={$id}" } ], - "sampleId": "ECOLI:CYT-D-UBIOX-CPLX", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ECOLI:CYT-D-UBIOX-CPLX" }, { + "created": "2019-06-11T14:16:23.358+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Carbohydrate-Active Enzyme (CAZy) database is a resource specialized in enzymes that build and breakdown complex carbohydrates and glycoconjugates. These enzymes are classified into families based on structural features.", "id": 587, - "prefix": "cazy", "mirId": "MIR:00000195", + "modified": "2019-06-11T14:16:23.358+0000", "name": "CAZy", + "namespaceEmbeddedInLui": false, "pattern": "^(GT|GH|PL|CE|CBM)\\d+(\\_\\d+)?$", - "description": "The Carbohydrate-Active Enzyme (CAZy) database is a resource specialized in enzymes that build and breakdown complex carbohydrates and glycoconjugates. These enzymes are classified into families based on structural features.", - "created": "2019-06-11T14:16:23.358+0000", - "modified": "2019-06-11T14:16:23.358+0000", + "prefix": "cazy", "resources": [ { + "deprecated": false, + "deprecationDate": null, + "description": "CAZy at CNRS", "id": 589, - "mirId": "MIR:00100252", - "urlPattern": "http://www.cazy.org/{$id}.html", - "name": "CAZy at CNRS", - "description": "CAZy at CNRS", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "GT10", - "resourceHomeUrl": "http://www.cazy.org/", "institution": { - "id": 588, - "name": "Architecture et Fonction des Macromolécules Biologiques", + "description": "The Architecture et Fonction des Macromol\u00e9cules Biologiques (AFMB) laboratory, overseen by the CNRS and AMU, is a center of structural biology localized on the Luminy campus in the South of Marseilles, France, and in partnership with INRA under contract.", "homeUrl": "http://www.afmb.univ-mrs.fr", - "description": "The Architecture et Fonction des Macromolécules Biologiques (AFMB) laboratory, overseen by the CNRS and AMU, is a center of structural biology localized on the Luminy campus in the South of Marseilles, France, and in partnership with INRA under contract.", - "rorId": "https://ror.org/04jm8zw14", + "id": 588, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Architecture et Fonction des Macromol\u00e9cules Biologiques", + "rorId": "https://ror.org/04jm8zw14" }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100252", + "name": "CAZy at CNRS", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.cazy.org/", + "sampleId": "GT10", + "urlPattern": "http://www.cazy.org/{$id}.html" } ], - "sampleId": "GT10", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "GT10" }, { + "created": "2019-06-11T14:16:23.594+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The GOA (Gene Ontology Annotation) project provides high-quality Gene Ontology (GO) annotations to proteins in the UniProt Knowledgebase (UniProtKB) and International Protein Index (IPI). This involves electronic annotation and the integration of high-quality manual GO annotation from all GO Consortium model organism groups and specialist groups.", "id": 590, - "prefix": "goa", "mirId": "MIR:00000196", + "modified": "2019-06-11T14:16:23.594+0000", "name": "GOA", + "namespaceEmbeddedInLui": false, "pattern": "^(([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9]))|(URS[0-9A-F]{10}(_[0-9]+){0,1})|(EBI-[0-9]+)$", - "description": "The GOA (Gene Ontology Annotation) project provides high-quality Gene Ontology (GO) annotations to proteins in the UniProt Knowledgebase (UniProtKB) and International Protein Index (IPI). This involves electronic annotation and the integration of high-quality manual GO annotation from all GO Consortium model organism groups and specialist groups.", - "created": "2019-06-11T14:16:23.594+0000", - "modified": "2019-06-11T14:16:23.594+0000", + "prefix": "goa", "resources": [ { - "id": 591, - "mirId": "MIR:00100253", - "urlPattern": "https://www.ebi.ac.uk/QuickGO/GProtein?ac={$id}", - "name": "GOA through QuickGO", + "deprecated": false, + "deprecationDate": null, "description": "GOA through QuickGO", - "official": false, - "providerCode": "quickgo", - "sampleId": "P12345", - "resourceHomeUrl": "https://www.ebi.ac.uk/GOA/", + "id": 591, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100253", + "name": "GOA through QuickGO", + "official": false, + "providerCode": "quickgo", + "resourceHomeUrl": "https://www.ebi.ac.uk/GOA/", + "sampleId": "P12345", + "urlPattern": "https://www.ebi.ac.uk/QuickGO/GProtein?ac={$id}" } ], - "sampleId": "P12345", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "P12345" }, { + "created": "2019-06-11T14:16:23.782+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Paleobiology Database seeks to provide researchers and the public with information about the entire fossil record. It stores global, collection-based occurrence and taxonomic data for marine and terrestrial animals and plants of any geological age, as well as web-based software for statistical analysis of the data.", "id": 592, - "prefix": "paleodb", "mirId": "MIR:00000197", + "modified": "2019-06-11T14:16:23.782+0000", "name": "PaleoDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Paleobiology Database seeks to provide researchers and the public with information about the entire fossil record. It stores global, collection-based occurrence and taxonomic data for marine and terrestrial animals and plants of any geological age, as well as web-based software for statistical analysis of the data.", - "created": "2019-06-11T14:16:23.782+0000", - "modified": "2019-06-11T14:16:23.782+0000", + "prefix": "paleodb", "resources": [ { - "id": 594, - "mirId": "MIR:00100254", - "urlPattern": "http://fossilworks.org/?a=taxonInfo&taxon_no={$id}", - "name": "PaleoDB at Macquarie University", + "deprecated": false, + "deprecationDate": null, "description": "PaleoDB at Macquarie University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "83088", - "resourceHomeUrl": "http://paleodb.org/", + "id": 594, "institution": { - "id": 593, - "name": "Macquarie University, Sydney", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 593, "location": { "countryCode": "AU", "countryName": "Australia" - } + }, + "name": "Macquarie University, Sydney", + "rorId": null }, "location": { "countryCode": "AU", "countryName": "Australia" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100254", + "name": "PaleoDB at Macquarie University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://paleodb.org/", + "sampleId": "83088", + "urlPattern": "http://fossilworks.org/?a=taxonInfo&taxon_no={$id}" } ], - "sampleId": "83088", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "83088" }, { + "created": "2019-06-11T14:16:24.045+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Compluyeast-2D-DB is a two-dimensional polyacrylamide gel electrophoresis federated database. This collection references a subset of Uniprot, and contains general information about the protein record.", "id": 595, - "prefix": "compulyeast", "mirId": "MIR:00000198", + "modified": "2019-06-11T14:16:24.045+0000", "name": "Compulyeast", + "namespaceEmbeddedInLui": false, "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])$", - "description": "Compluyeast-2D-DB is a two-dimensional polyacrylamide gel electrophoresis federated database. This collection references a subset of Uniprot, and contains general information about the protein record.", - "created": "2019-06-11T14:16:24.045+0000", - "modified": "2019-06-11T14:16:24.045+0000", + "prefix": "compulyeast", "resources": [ { - "id": 597, - "mirId": "MIR:00100257", - "urlPattern": "http://compluyeast2dpage.dacya.ucm.es/cgi-bin/2d/2d.cgi?ac={$id}", - "name": "Compluyeast database at Universidad Complutense Madrid", + "deprecated": false, + "deprecationDate": null, "description": "Compluyeast database at Universidad Complutense Madrid", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "O08709", - "resourceHomeUrl": "http://compluyeast2dpage.dacya.ucm.es/", + "id": 597, "institution": { - "id": 596, - "name": "Department Microbiology II, Universidad Complutense Madrid, Madrid", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 596, "location": { "countryCode": "ES", "countryName": "Spain" - } + }, + "name": "Department Microbiology II, Universidad Complutense Madrid, Madrid", + "rorId": null }, "location": { "countryCode": "ES", "countryName": "Spain" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100257", + "name": "Compluyeast database at Universidad Complutense Madrid", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://compluyeast2dpage.dacya.ucm.es/", + "sampleId": "O08709", + "urlPattern": "http://compluyeast2dpage.dacya.ucm.es/cgi-bin/2d/2d.cgi?ac={$id}" } ], - "sampleId": "O08709", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "O08709" }, { + "created": "2019-06-11T14:16:24.496+0000", + "deprecated": false, + "deprecationDate": null, + "description": "EchoBASE is a database designed to contain and manipulate information from post-genomic experiments using the model bacterium Escherichia coli K-12. The database is built on an enhanced annotation of the updated genome sequence of strain MG1655 and the association of experimental data with the E.coli genes and their products.", "id": 601, - "prefix": "echobase", "mirId": "MIR:00000200", + "modified": "2019-06-11T14:16:24.496+0000", "name": "EchoBASE", + "namespaceEmbeddedInLui": false, "pattern": "^EB\\d+$", - "description": "EchoBASE is a database designed to contain and manipulate information from post-genomic experiments using the model bacterium Escherichia coli K-12. The database is built on an enhanced annotation of the updated genome sequence of strain MG1655 and the association of experimental data with the E.coli genes and their products.", - "created": "2019-06-11T14:16:24.496+0000", - "modified": "2019-06-11T14:16:24.496+0000", + "prefix": "echobase", "resources": [ { - "id": 603, - "mirId": "MIR:00100259", - "urlPattern": "http://www.york.ac.uk/res/thomas/Gene.cfm?recordID={$id}", - "name": "EchoBASE at the University of York", + "deprecated": false, + "deprecationDate": null, "description": "EchoBASE at the University of York", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "EB0170", - "resourceHomeUrl": "http://www.york.ac.uk/", + "id": 603, "institution": { - "id": 602, - "name": "Department of Biology (Area 10), University of York, York", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 602, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Department of Biology (Area 10), University of York, York", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100259", + "name": "EchoBASE at the University of York", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.york.ac.uk/", + "sampleId": "EB0170", + "urlPattern": "http://www.york.ac.uk/res/thomas/Gene.cfm?recordID={$id}" } ], - "sampleId": "EB0170", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "EB0170" }, { + "created": "2019-06-11T14:16:24.278+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DisProt is a database of intrinsically disordered proteins and protein disordered regions, manually curated from literature.", "id": 598, - "prefix": "disprot", "mirId": "MIR:00000199", + "modified": "2021-02-17T17:15:29.025+0000", "name": "DisProt", + "namespaceEmbeddedInLui": false, "pattern": "^DP\\d{5}$", - "description": "DisProt is a database of intrinsically disordered proteins and protein disordered regions, manually curated from literature.", - "created": "2019-06-11T14:16:24.278+0000", - "modified": "2021-02-17T17:15:29.025+0000", + "prefix": "disprot", "resources": [ { - "id": 600, - "mirId": "MIR:00100258", - "urlPattern": "https://disprot.org/{$id}", - "name": "DisProt at University of Padua", + "deprecated": false, + "deprecationDate": null, "description": "DisProt at University of Padua", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "DP00003", - "resourceHomeUrl": "https://disprot.org/", + "id": 600, "institution": { - "id": 1769, - "name": "University of Padua", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1769, "location": { "countryCode": "IT", "countryName": "Italy" - } + }, + "name": "University of Padua", + "rorId": null }, "location": { "countryCode": "IT", "countryName": "Italy" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100258", + "name": "DisProt at University of Padua", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://disprot.org/", + "sampleId": "DP00003", + "urlPattern": "https://disprot.org/{$id}" } ], - "sampleId": "DP00003", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "DP00003" }, { + "created": "2019-06-11T14:16:24.719+0000", + "deprecated": false, + "deprecationDate": null, + "description": "eggNOG (evolutionary genealogy of genes: Non-supervised Orthologous Groups) is a database of orthologous groups of genes. The orthologous groups are annotated with functional description lines (derived by identifying a common denominator for the genes based on their various annotations), with functional categories (i.e derived from the original COG/KOG categories).", "id": 604, - "prefix": "eggnog", "mirId": "MIR:00000201", + "modified": "2019-06-11T14:16:24.719+0000", "name": "eggNOG", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "eggNOG (evolutionary genealogy of genes: Non-supervised Orthologous Groups) is a database of orthologous groups of genes. The orthologous groups are annotated with functional description lines (derived by identifying a common denominator for the genes based on their various annotations), with functional categories (i.e derived from the original COG/KOG categories).", - "created": "2019-06-11T14:16:24.719+0000", - "modified": "2019-06-11T14:16:24.719+0000", + "prefix": "eggnog", "resources": [ { - "id": 606, - "mirId": "MIR:00100260", - "urlPattern": "http://eggnog.embl.de/version_3.0/cgi/search.py?search_term_0={$id}", - "name": "eggNOG Version 3 at European Molecular Biology Laboratory", + "deprecated": false, + "deprecationDate": null, "description": "eggNOG Version 3 at European Molecular Biology Laboratory", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "veNOG12876", - "resourceHomeUrl": "http://eggnog.embl.de/version_3.0/", + "id": 606, "institution": { - "id": 605, - "name": "European Molecular Biology Laboratory, Heidelberg", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 605, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "European Molecular Biology Laboratory, Heidelberg", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100260", + "name": "eggNOG Version 3 at European Molecular Biology Laboratory", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://eggnog.embl.de/version_3.0/", + "sampleId": "veNOG12876", + "urlPattern": "http://eggnog.embl.de/version_3.0/cgi/search.py?search_term_0={$id}" } ], - "sampleId": "veNOG12876", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "veNOG12876" }, { + "created": "2019-06-11T14:16:24.944+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with bacterial genomes.", "id": 607, - "prefix": "ensembl.bacteria", "mirId": "MIR:00000202", + "modified": "2019-06-11T14:16:24.944+0000", "name": "Ensembl Bacteria", + "namespaceEmbeddedInLui": false, "pattern": "^((EB\\w+)|([A-Z0-9]+\\_[A-Z0-9]+))$", - "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with bacterial genomes.", - "created": "2019-06-11T14:16:24.944+0000", - "modified": "2019-06-11T14:16:24.944+0000", + "prefix": "ensembl.bacteria", "resources": [ { - "id": 608, - "mirId": "MIR:00100261", - "urlPattern": "https://bacteria.ensembl.org/id/{$id}", - "name": "Ensembl Bacteria at EBI", + "deprecated": false, + "deprecationDate": null, "description": "Ensembl Bacteria at EBI", - "official": false, - "providerCode": "ebi", - "sampleId": "MU9_3181", - "resourceHomeUrl": "https://bacteria.ensembl.org/", + "id": 608, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100261", + "name": "Ensembl Bacteria at EBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://bacteria.ensembl.org/", + "sampleId": "MU9_3181", + "urlPattern": "https://bacteria.ensembl.org/id/{$id}" } ], - "sampleId": "MU9_3181", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MU9_3181" }, { + "created": "2019-06-11T14:16:25.183+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with protist genomes.", "id": 609, - "prefix": "ensembl.protist", "mirId": "MIR:00000203", + "modified": "2019-06-11T14:16:25.183+0000", "name": "Ensembl Protists", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with protist genomes.", - "created": "2019-06-11T14:16:25.183+0000", - "modified": "2019-06-11T14:16:25.183+0000", + "prefix": "ensembl.protist", "resources": [ { - "id": 610, - "mirId": "MIR:00100262", - "urlPattern": "https://protists.ensembl.org/id/{$id}", - "name": "Ensembl Protists at EBI", + "deprecated": false, + "deprecationDate": null, "description": "Ensembl Protists at EBI", - "official": false, - "providerCode": "ebi", - "sampleId": "PF3D7_1328700", - "resourceHomeUrl": "https://protists.ensembl.org", + "id": 610, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100262", + "name": "Ensembl Protists at EBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://protists.ensembl.org", + "sampleId": "PF3D7_1328700", + "urlPattern": "https://protists.ensembl.org/id/{$id}" } ], - "sampleId": "PF3D7_1328700", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PF3D7_1328700" }, { + "created": "2019-06-11T14:16:25.396+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with metazoa genomes.", "id": 611, - "prefix": "ensembl.metazoa", "mirId": "MIR:00000204", + "modified": "2019-06-11T14:16:25.396+0000", "name": "Ensembl Metazoa", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+(\\.)?\\d+$", - "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with metazoa genomes.", - "created": "2019-06-11T14:16:25.396+0000", - "modified": "2019-06-11T14:16:25.396+0000", + "prefix": "ensembl.metazoa", "resources": [ { - "id": 612, - "mirId": "MIR:00100263", - "urlPattern": "https://metazoa.ensembl.org/id/{$id}", - "name": "Enzembl Metazoa at EBI", + "deprecated": false, + "deprecationDate": null, "description": "Enzembl Metazoa at EBI", - "official": false, - "providerCode": "ebi", - "sampleId": "FBtr0084214", - "resourceHomeUrl": "https://metazoa.ensembl.org/", + "id": 612, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100263", + "name": "Enzembl Metazoa at EBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://metazoa.ensembl.org/", + "sampleId": "FBtr0084214", + "urlPattern": "https://metazoa.ensembl.org/id/{$id}" } ], - "sampleId": "FBtr0084214", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "FBtr0084214" }, { + "created": "2019-06-11T14:16:25.597+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with plant genomes.", "id": 613, - "prefix": "ensembl.plant", "mirId": "MIR:00000205", + "modified": "2019-06-11T14:16:25.597+0000", "name": "Ensembl Plants", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+(\\.\\d+)?(\\.\\d+)?$", - "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with plant genomes.", - "created": "2019-06-11T14:16:25.597+0000", - "modified": "2019-06-11T14:16:25.597+0000", + "prefix": "ensembl.plant", "resources": [ { - "id": 614, - "mirId": "MIR:00100264", - "urlPattern": "https://plants.ensembl.org/id/{$id}", - "name": "Enzembl Plants at EBI", + "deprecated": false, + "deprecationDate": null, "description": "Enzembl Plants at EBI", - "official": false, - "providerCode": "ebi", - "sampleId": "AT1G73965", - "resourceHomeUrl": "https://plants.ensembl.org/", + "id": 614, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100264", + "name": "Enzembl Plants at EBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://plants.ensembl.org/", + "sampleId": "AT1G73965", + "urlPattern": "https://plants.ensembl.org/id/{$id}" } ], - "sampleId": "AT1G73965", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AT1G73965" }, { + "created": "2019-06-11T14:16:25.804+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with fungal genomes.", "id": 615, - "prefix": "ensembl.fungi", "mirId": "MIR:00000206", + "modified": "2019-06-11T14:16:25.804+0000", "name": "Ensembl Fungi", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z-a-z0-9]+$", - "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with fungal genomes.", - "created": "2019-06-11T14:16:25.804+0000", - "modified": "2019-06-11T14:16:25.804+0000", + "prefix": "ensembl.fungi", "resources": [ { - "id": 616, - "mirId": "MIR:00100265", - "urlPattern": "https://fungi.ensembl.org/id/{$id}", - "name": "Enzembl Fungi at EBI", + "deprecated": false, + "deprecationDate": null, "description": "Enzembl Fungi at EBI", - "official": false, - "providerCode": "ebi", - "sampleId": "CADAFLAT00006211", - "resourceHomeUrl": "https://fungi.ensembl.org/", + "id": 616, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100265", + "name": "Enzembl Fungi at EBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://fungi.ensembl.org/", + "sampleId": "CADAFLAT00006211", + "urlPattern": "https://fungi.ensembl.org/id/{$id}" } ], - "sampleId": "CADAFLAT00006211", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CADAFLAT00006211" }, { + "created": "2019-06-11T14:16:26.018+0000", + "deprecated": false, + "deprecationDate": null, + "description": "the European Hepatitis C Virus Database (euHCVdb, http://euhcvdb.ibcp.fr), a collection of computer-annotated sequences based on reference genomes.mainly dedicated to HCV protein sequences, 3D structures and functional analyses.", "id": 617, - "prefix": "hcvdb", "mirId": "MIR:00000207", + "modified": "2019-06-11T14:16:26.018+0000", "name": "HCVDB", + "namespaceEmbeddedInLui": false, "pattern": "^M\\d{5}$", - "description": "the European Hepatitis C Virus Database (euHCVdb, http://euhcvdb.ibcp.fr), a collection of computer-annotated sequences based on reference genomes.mainly dedicated to HCV protein sequences, 3D structures and functional analyses.", - "created": "2019-06-11T14:16:26.018+0000", - "modified": "2019-06-11T14:16:26.018+0000", + "prefix": "hcvdb", "resources": [ { - "id": 619, - "mirId": "MIR:00100266", - "urlPattern": "https://euhcvdb.ibcp.fr/euHCVdb/do/displayHCVEntry?primaryAC={$id}", - "name": "HCVDB at CNRS", + "deprecated": false, + "deprecationDate": null, "description": "HCVDB at CNRS", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "M58335", - "resourceHomeUrl": "http://euhcvdb.ibcp.fr/euHCVdb/", + "id": 619, "institution": { - "id": 618, - "name": "Institut de Biologie et Chimie des Protéines, CNRS, University of Lyon , Lyon-Gerland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 618, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Institut de Biologie et Chimie des Prot\u00e9ines, CNRS, University of Lyon , Lyon-Gerland", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100266", + "name": "HCVDB at CNRS", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://euhcvdb.ibcp.fr/euHCVdb/", + "sampleId": "M58335", + "urlPattern": "https://euhcvdb.ibcp.fr/euHCVdb/do/displayHCVEntry?primaryAC={$id}" } ], - "sampleId": "M58335", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "M58335" }, { + "created": "2019-06-11T14:16:26.301+0000", + "deprecated": false, + "deprecationDate": null, + "description": "GenAtlas is a database containing information on human genes, markers and phenotypes.", "id": 620, - "prefix": "genatlas", "mirId": "MIR:00000208", + "modified": "2019-06-11T14:16:26.301+0000", "name": "Genatlas", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "GenAtlas is a database containing information on human genes, markers and phenotypes.", - "created": "2019-06-11T14:16:26.301+0000", - "modified": "2019-06-11T14:16:26.301+0000", + "prefix": "genatlas", "resources": [ { - "id": 622, - "mirId": "MIR:00100267", - "urlPattern": "http://genatlas.medecine.univ-paris5.fr/fiche.php?symbol={$id}", - "name": "Genatlas at Paris Descartes University", + "deprecated": false, + "deprecationDate": null, "description": "Genatlas at Paris Descartes University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "HBB", - "resourceHomeUrl": "http://genatlas.medecine.univ-paris5.fr/", + "id": 622, "institution": { - "id": 621, - "name": "Paris Descartes University, Paris", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 621, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Paris Descartes University, Paris", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100267", + "name": "Genatlas at Paris Descartes University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://genatlas.medecine.univ-paris5.fr/", + "sampleId": "HBB", + "urlPattern": "http://genatlas.medecine.univ-paris5.fr/fiche.php?symbol={$id}" } ], - "sampleId": "HBB", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "HBB" }, { + "created": "2019-06-11T14:16:26.635+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The CATH database is a hierarchical domain classification of protein structures in the Protein Data Bank. Protein structures are classified using a combination of automated and manual procedures. There are four major levels in this hierarchy; Class (secondary structure classification, e.g. mostly alpha), Architecture (classification based on overall shape), Topology (fold family) and Homologous superfamily (protein domains which are thought to share a common ancestor). This colelction is concerned with superfamily classification.", "id": 623, - "prefix": "cath.superfamily", "mirId": "MIR:00000209", + "modified": "2019-06-11T14:16:26.635+0000", "name": "CATH superfamily", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+(\\.\\d+(\\.\\d+(\\.\\d+)?)?)?$", - "description": "The CATH database is a hierarchical domain classification of protein structures in the Protein Data Bank. Protein structures are classified using a combination of automated and manual procedures. There are four major levels in this hierarchy; Class (secondary structure classification, e.g. mostly alpha), Architecture (classification based on overall shape), Topology (fold family) and Homologous superfamily (protein domains which are thought to share a common ancestor). This colelction is concerned with superfamily classification.", - "created": "2019-06-11T14:16:26.635+0000", - "modified": "2019-06-11T14:16:26.635+0000", + "prefix": "cath.superfamily", "resources": [ { - "id": 625, - "mirId": "MIR:00100268", - "urlPattern": "http://www.cathdb.info/cathnode/{$id}", - "name": "CATH superfamily at UCL", + "deprecated": false, + "deprecationDate": null, "description": "CATH superfamily at UCL", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1.10.10.200", - "resourceHomeUrl": "http://www.cathdb.info/", + "id": 625, "institution": { - "id": 624, - "name": "Institute of Structural and Molecular Biology, University College London", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 624, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Institute of Structural and Molecular Biology, University College London", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100268", + "name": "CATH superfamily at UCL", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.cathdb.info/", + "sampleId": "1.10.10.200", + "urlPattern": "http://www.cathdb.info/cathnode/{$id}" } ], - "sampleId": "1.10.10.200", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1.10.10.200" }, { + "created": "2019-06-11T14:16:26.899+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The CATH database is a hierarchical domain classification of protein structures in the Protein Data Bank. Protein structures are classified using a combination of automated and manual procedures. There are four major levels in this hierarchy; Class (secondary structure classification, e.g. mostly alpha), Architecture (classification based on overall shape), Topology (fold family) and Homologous superfamily (protein domains which are thought to share a common ancestor). This colelction is concerned with CATH domains.", "id": 626, - "prefix": "cath.domain", "mirId": "MIR:00000210", + "modified": "2019-06-11T14:16:26.899+0000", "name": "CATH domain", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "The CATH database is a hierarchical domain classification of protein structures in the Protein Data Bank. Protein structures are classified using a combination of automated and manual procedures. There are four major levels in this hierarchy; Class (secondary structure classification, e.g. mostly alpha), Architecture (classification based on overall shape), Topology (fold family) and Homologous superfamily (protein domains which are thought to share a common ancestor). This colelction is concerned with CATH domains.", - "created": "2019-06-11T14:16:26.899+0000", - "modified": "2019-06-11T14:16:26.899+0000", + "prefix": "cath.domain", "resources": [ { - "id": 627, - "mirId": "MIR:00100269", - "urlPattern": "http://www.cathdb.info/domain/{$id}", - "name": "CATH domain at UCL", + "deprecated": false, + "deprecationDate": null, "description": "CATH domain at UCL", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1cukA01", - "resourceHomeUrl": "http://www.cathdb.info/", + "id": 627, "institution": { - "id": 624, - "name": "Institute of Structural and Molecular Biology, University College London", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 624, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Institute of Structural and Molecular Biology, University College London", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100269", + "name": "CATH domain at UCL", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.cathdb.info/", + "sampleId": "1cukA01", + "urlPattern": "http://www.cathdb.info/domain/{$id}" } ], - "sampleId": "1cukA01", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1cukA01" }, { + "created": "2019-06-11T14:16:27.145+0000", + "deprecated": false, + "deprecationDate": null, + "description": "GeneFarm is a database whose purpose is to store traceable annotations for Arabidopsis nuclear genes and gene products.", "id": 628, - "prefix": "genefarm", "mirId": "MIR:00000211", + "modified": "2019-06-11T14:16:27.145+0000", "name": "GeneFarm", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "GeneFarm is a database whose purpose is to store traceable annotations for Arabidopsis nuclear genes and gene products.", - "created": "2019-06-11T14:16:27.145+0000", - "modified": "2019-06-11T14:16:27.145+0000", + "prefix": "genefarm", "resources": [ { + "deprecated": false, + "deprecationDate": null, + "description": "GeneFarm at Unit\u00e9 de Recherche en G\u00e9nomique V\u00e9g\u00e9tale", "id": 630, - "mirId": "MIR:00100270", - "urlPattern": "https://urgi.versailles.inra.fr/Genefarm/Gene/display_gene.htpl?GENE_ID={$id}", - "name": "GeneFarm at Unité de Recherche en Génomique Végétale", - "description": "GeneFarm at Unité de Recherche en Génomique Végétale", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "4892", - "resourceHomeUrl": "http://urgi.versailles.inra.fr/Genefarm/", "institution": { - "id": 629, - "name": "Unité de Recherche en Génomique Végétale, Evry", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 629, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Unit\u00e9 de Recherche en G\u00e9nomique V\u00e9g\u00e9tale, Evry", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100270", + "name": "GeneFarm at Unit\u00e9 de Recherche en G\u00e9nomique V\u00e9g\u00e9tale", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://urgi.versailles.inra.fr/Genefarm/", + "sampleId": "4892", + "urlPattern": "https://urgi.versailles.inra.fr/Genefarm/Gene/display_gene.htpl?GENE_ID={$id}" } ], - "sampleId": "4892", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "4892" }, { + "created": "2019-06-11T14:16:27.419+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The G protein-coupled receptor database (GPCRDB) collects, large amounts of heterogeneous data on GPCRs. It contains experimental data on sequences, ligand-binding constants, mutations and oligomers, and derived data such as multiple sequence alignments and homology models.", "id": 631, - "prefix": "gpcrdb", "mirId": "MIR:00000212", + "modified": "2019-06-11T14:16:27.419+0000", "name": "GPCRDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "The G protein-coupled receptor database (GPCRDB) collects, large amounts of heterogeneous data on GPCRs. It contains experimental data on sequences, ligand-binding constants, mutations and oligomers, and derived data such as multiple sequence alignments and homology models.", - "created": "2019-06-11T14:16:27.419+0000", - "modified": "2019-06-11T14:16:27.419+0000", + "prefix": "gpcrdb", "resources": [ { - "id": 633, - "mirId": "MIR:00100271", - "urlPattern": "http://www.gpcrdb.org/protein/{$id}/", - "name": "GPCRDB at Radboud University", + "deprecated": false, + "deprecationDate": null, "description": "GPCRDB at Radboud University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "RL3R1_HUMAN", - "resourceHomeUrl": "http://www.gpcrdb.org/", + "id": 633, "institution": { - "id": 632, - "name": "Radboud University Nijmegen Medical Centre, Nijmegen,", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 632, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "Radboud University Nijmegen Medical Centre, Nijmegen,", + "rorId": null }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100271", + "name": "GPCRDB at Radboud University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.gpcrdb.org/", + "sampleId": "RL3R1_HUMAN", + "urlPattern": "http://www.gpcrdb.org/protein/{$id}/" } ], - "sampleId": "RL3R1_HUMAN", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "RL3R1_HUMAN" }, { + "created": "2019-06-11T14:16:27.678+0000", + "deprecated": false, + "deprecationDate": null, + "description": "HOGENOM is a database of homologous genes from fully sequenced organisms (bacteria, archeae and eukarya). This collection references phylogenetic trees which can be retrieved using either UniProt accession numbers, or HOGENOM tree family identifier.", "id": 634, - "prefix": "hogenom", "mirId": "MIR:00000213", + "modified": "2019-06-11T14:16:27.678+0000", "name": "HOGENOM", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "HOGENOM is a database of homologous genes from fully sequenced organisms (bacteria, archeae and eukarya). This collection references phylogenetic trees which can be retrieved using either UniProt accession numbers, or HOGENOM tree family identifier.", - "created": "2019-06-11T14:16:27.678+0000", - "modified": "2019-06-11T14:16:27.678+0000", + "prefix": "hogenom", "resources": [ { - "id": 636, - "mirId": "MIR:00100272", - "urlPattern": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?db=HOGENOM5&query={$id}", - "name": "HOGENOM at CNRS", + "deprecated": false, + "deprecationDate": null, "description": "HOGENOM at CNRS", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "HBG284870", - "resourceHomeUrl": "http://pbil.univ-lyon1.fr/databases/hogenom/", + "id": 636, "institution": { - "id": 635, - "name": "Laboratoire de Biométrie et Biologie Evolutive, CNRS, Lyon", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 635, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Laboratoire de Biom\u00e9trie et Biologie Evolutive, CNRS, Lyon", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100272", + "name": "HOGENOM at CNRS", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://pbil.univ-lyon1.fr/databases/hogenom/", + "sampleId": "HBG284870", + "urlPattern": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?db=HOGENOM5&query={$id}" } ], - "sampleId": "HBG284870", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "HBG284870" }, { + "created": "2019-06-11T14:16:27.950+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Genetree displays the maximum likelihood phylogenetic (protein) trees representing the evolutionary history of the genes. These are constructed using the canonical protein for every gene in Ensembl.", "id": 637, - "prefix": "genetree", "mirId": "MIR:00000214", + "modified": "2019-06-11T14:16:27.950+0000", "name": "GeneTree", + "namespaceEmbeddedInLui": false, "pattern": "^ENSGT\\d+$", - "description": "Genetree displays the maximum likelihood phylogenetic (protein) trees representing the evolutionary history of the genes. These are constructed using the canonical protein for every gene in Ensembl.", - "created": "2019-06-11T14:16:27.950+0000", - "modified": "2019-06-11T14:16:27.950+0000", + "prefix": "genetree", "resources": [ { - "id": 638, - "mirId": "MIR:00100273", - "urlPattern": "http://www.ensembl.org/Multi/GeneTree/Image?db=core;gt={$id}", - "name": "GeneTree at Ensembl", + "deprecated": false, + "deprecationDate": null, "description": "GeneTree at Ensembl", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ENSGT00550000074763", - "resourceHomeUrl": "http://www.ensembl.org/", + "id": 638, "institution": { - "id": 8, - "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 8, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100273", + "name": "GeneTree at Ensembl", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.ensembl.org/", + "sampleId": "ENSGT00550000074763", + "urlPattern": "http://www.ensembl.org/Multi/GeneTree/Image?db=core;gt={$id}" } ], - "sampleId": "ENSGT00550000074763", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ENSGT00550000074763" }, { + "created": "2019-06-11T14:16:28.184+0000", + "deprecated": false, + "deprecationDate": null, + "description": "HSSP (homology-derived structures of proteins) is a derived database merging structural (2-D and 3-D) and sequence information (1-D). For each protein of known 3D structure from the Protein Data Bank, the database has a file with all sequence homologues, properly aligned to the PDB protein.", "id": 639, - "prefix": "hssp", "mirId": "MIR:00000215", + "modified": "2019-06-11T14:16:28.184+0000", "name": "HSSP", + "namespaceEmbeddedInLui": false, "pattern": "^\\w{4}$", - "description": "HSSP (homology-derived structures of proteins) is a derived database merging structural (2-D and 3-D) and sequence information (1-D). For each protein of known 3D structure from the Protein Data Bank, the database has a file with all sequence homologues, properly aligned to the PDB protein.", - "created": "2019-06-11T14:16:28.184+0000", - "modified": "2019-06-11T14:16:28.184+0000", + "prefix": "hssp", "resources": [ { - "id": 641, - "mirId": "MIR:00100274", - "urlPattern": "ftp://ftp.embl-heidelberg.de/pub/databases/protein_extras/hssp/{$id}.hssp.bz2", - "name": "HSSP at EMBL", + "deprecated": false, + "deprecationDate": null, "description": "HSSP at EMBL", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "102l", - "resourceHomeUrl": "http://swift.cmbi.kun.nl/swift/hssp/", + "id": 641, "institution": { - "id": 640, - "name": "Protein Design Group, European Molecular Biology Laboratory, Heidelberg", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 640, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Protein Design Group, European Molecular Biology Laboratory, Heidelberg", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 643, - "mirId": "MIR:00100458", - "urlPattern": "ftp://ftp.cmbi.ru.nl/pub/molbio/data/hssp/{$id}.hssp.bz2", - "name": "HSSP at CMBI", - "description": "HSSP at CMBI", + "mirId": "MIR:00100274", + "name": "HSSP at EMBL", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://swift.cmbi.kun.nl/swift/hssp/", "sampleId": "102l", - "resourceHomeUrl": "ftp://ftp.cmbi.ru.nl/pub/molbio/data/hssp/", + "urlPattern": "ftp://ftp.embl-heidelberg.de/pub/databases/protein_extras/hssp/{$id}.hssp.bz2" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "HSSP at CMBI", + "id": 643, "institution": { - "id": 642, - "name": "Nijmegen Centre for Molecular Life Sciences, CMBI, Nijmegen", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 642, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "Nijmegen Centre for Molecular Life Sciences, CMBI, Nijmegen", + "rorId": null }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100458", + "name": "HSSP at CMBI", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "ftp://ftp.cmbi.ru.nl/pub/molbio/data/hssp/", + "sampleId": "102l", + "urlPattern": "ftp://ftp.cmbi.ru.nl/pub/molbio/data/hssp/{$id}.hssp.bz2" } ], - "sampleId": "102l", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "102l" }, { + "created": "2019-06-11T14:16:28.639+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria tuberculosis information.", "id": 644, - "prefix": "myco.tuber", "mirId": "MIR:00000216", + "modified": "2019-06-11T14:16:28.639+0000", "name": "MycoBrowser tuberculosis", + "namespaceEmbeddedInLui": false, "pattern": "^Rv\\d{4}(A|B|c)?$", - "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria tuberculosis information.", - "created": "2019-06-11T14:16:28.639+0000", - "modified": "2019-06-11T14:16:28.639+0000", + "prefix": "myco.tuber", "resources": [ { - "id": 646, - "mirId": "MIR:00100275", - "urlPattern": "http://tuberculist.epfl.ch/quicksearch.php?gene+name={$id}", - "name": "MycoBrowser tuberculosis at Global Health Institute", + "deprecated": false, + "deprecationDate": null, "description": "MycoBrowser tuberculosis at Global Health Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Rv1908c", - "resourceHomeUrl": "http://tuberculist.epfl.ch/", + "id": 646, "institution": { - "id": 645, - "name": "Global Health Institute, Lausanne", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 645, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "Global Health Institute, Lausanne", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100275", + "name": "MycoBrowser tuberculosis at Global Health Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://tuberculist.epfl.ch/", + "sampleId": "Rv1908c", + "urlPattern": "http://tuberculist.epfl.ch/quicksearch.php?gene+name={$id}" } ], - "sampleId": "Rv1908c", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Rv1908c" }, { + "created": "2019-06-11T14:16:28.887+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria leprae information.", "id": 647, - "prefix": "myco.lepra", "mirId": "MIR:00000217", + "modified": "2019-06-11T14:16:28.887+0000", "name": "MycoBrowser leprae", + "namespaceEmbeddedInLui": false, "pattern": "^ML\\w+$", - "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria leprae information.", - "created": "2019-06-11T14:16:28.887+0000", - "modified": "2019-06-11T14:16:28.887+0000", + "prefix": "myco.lepra", "resources": [ { - "id": 648, - "mirId": "MIR:00100276", - "urlPattern": "http://mycobrowser.epfl.ch/leprosysearch.php?gene+name={$id}", - "name": "MycoBrowser leprae at Global Health Institute", + "deprecated": false, + "deprecationDate": null, "description": "MycoBrowser leprae at Global Health Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ML0224", - "resourceHomeUrl": "http://mycobrowser.epfl.ch/leprosy.html", + "id": 648, "institution": { - "id": 645, - "name": "Global Health Institute, Lausanne", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 645, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "Global Health Institute, Lausanne", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100276", + "name": "MycoBrowser leprae at Global Health Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://mycobrowser.epfl.ch/leprosy.html", + "sampleId": "ML0224", + "urlPattern": "http://mycobrowser.epfl.ch/leprosysearch.php?gene+name={$id}" } ], - "sampleId": "ML0224", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ML0224" }, { - "id": 649, - "prefix": "myco.marinum", + "created": "2019-06-11T14:16:29.087+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria marinum information.", + "id": 649, "mirId": "MIR:00000218", + "modified": "2019-06-11T14:16:29.087+0000", "name": "MycoBrowser marinum", + "namespaceEmbeddedInLui": false, "pattern": "^MMAR\\_\\d+$", - "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria marinum information.", - "created": "2019-06-11T14:16:29.087+0000", - "modified": "2019-06-11T14:16:29.087+0000", + "prefix": "myco.marinum", "resources": [ { - "id": 650, - "mirId": "MIR:00100277", - "urlPattern": "http://mycobrowser.epfl.ch/marinosearch.php?gene+name={$id}", - "name": "MycoBrowser marinum at Global Health Institute", + "deprecated": false, + "deprecationDate": null, "description": "MycoBrowser marinum at Global Health Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MMAR_2462", - "resourceHomeUrl": "http://mycobrowser.epfl.ch/marinolist.html", + "id": 650, "institution": { - "id": 645, - "name": "Global Health Institute, Lausanne", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 645, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "Global Health Institute, Lausanne", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100277", + "name": "MycoBrowser marinum at Global Health Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://mycobrowser.epfl.ch/marinolist.html", + "sampleId": "MMAR_2462", + "urlPattern": "http://mycobrowser.epfl.ch/marinosearch.php?gene+name={$id}" } ], - "sampleId": "MMAR_2462", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MMAR_2462" }, { + "created": "2019-06-11T14:16:29.310+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria smegmatis information.", "id": 651, - "prefix": "myco.smeg", "mirId": "MIR:00000219", + "modified": "2019-06-11T14:16:29.310+0000", "name": "MycoBrowser smegmatis", + "namespaceEmbeddedInLui": false, "pattern": "^MSMEG\\w+$", - "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria smegmatis information.", - "created": "2019-06-11T14:16:29.310+0000", - "modified": "2019-06-11T14:16:29.310+0000", + "prefix": "myco.smeg", "resources": [ { - "id": 652, - "mirId": "MIR:00100278", - "urlPattern": "http://mycobrowser.epfl.ch/smegmasearch.php?gene+name={$id}", - "name": "MycoBrowser smegmatis at Global Health Institute", + "deprecated": false, + "deprecationDate": null, "description": "MycoBrowser smegmatis at Global Health Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MSMEG_3769", - "resourceHomeUrl": "http://mycobrowser.epfl.ch/smegmalist.html", + "id": 652, "institution": { - "id": 645, - "name": "Global Health Institute, Lausanne", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 645, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "Global Health Institute, Lausanne", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100278", + "name": "MycoBrowser smegmatis at Global Health Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://mycobrowser.epfl.ch/smegmalist.html", + "sampleId": "MSMEG_3769", + "urlPattern": "http://mycobrowser.epfl.ch/smegmasearch.php?gene+name={$id}" } ], - "sampleId": "MSMEG_3769", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MSMEG_3769" }, { + "created": "2019-06-11T14:16:29.544+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Orphanet is a reference portal for information on rare diseases and orphan drugs. It\u2019s aim is to help improve the diagnosis, care and treatment of patients with rare diseases.", "id": 653, - "prefix": "orphanet", "mirId": "MIR:00000220", + "modified": "2019-06-11T14:16:29.544+0000", "name": "Orphanet", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Orphanet is a reference portal for information on rare diseases and orphan drugs. It’s aim is to help improve the diagnosis, care and treatment of patients with rare diseases.", - "created": "2019-06-11T14:16:29.544+0000", - "modified": "2019-06-11T14:16:29.544+0000", + "prefix": "orphanet", "resources": [ { - "id": 655, - "mirId": "MIR:00100279", - "urlPattern": "http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng=EN&Expert={$id}", - "name": "Orphanet at Inserm", + "deprecated": false, + "deprecationDate": null, "description": "Orphanet at Inserm", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "85163", - "resourceHomeUrl": "http://www.orpha.net/consor/", + "id": 655, "institution": { - "id": 654, - "name": "Inserm, Hôpital Broussais, Paris", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 654, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Inserm, H\u00f4pital Broussais, Paris", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100279", + "name": "Orphanet at Inserm", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.orpha.net/consor/", + "sampleId": "85163", + "urlPattern": "http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng=EN&Expert={$id}" }, { - "id": 656, - "mirId": "MIR:00100701", - "urlPattern": "http://orphanet.bio2rdf.org/describe/?url=http://bio2rdf.org/orphanet:{$id}", - "name": "Bio2RDF", + "deprecated": false, + "deprecationDate": null, "description": "Bio2RDF", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "85163", - "resourceHomeUrl": "http://orphanet.bio2rdf.org/fct", + "id": 656, "institution": { - "id": 33, - "name": "Bio2RDF.org", - "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", - "rorId": null, + "homeUrl": "https://bio2rdf.org", + "id": 33, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Bio2RDF.org", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100701", + "name": "Bio2RDF", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://orphanet.bio2rdf.org/fct", + "sampleId": "85163", + "urlPattern": "http://orphanet.bio2rdf.org/describe/?url=http://bio2rdf.org/orphanet:{$id}" } ], - "sampleId": "85163", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "85163" }, { + "created": "2019-06-11T14:16:29.860+0000", + "deprecated": false, + "deprecationDate": null, + "description": "OrthoDB presents a catalog of eukaryotic orthologous protein-coding genes across vertebrates, arthropods, and fungi. Orthology refers to the last common ancestor of the species under consideration, and thus OrthoDB explicitly delineates orthologs at each radiation along the species phylogeny. The database of orthologs presents available protein descriptors, together with Gene Ontology and InterPro attributes, which serve to provide general descriptive annotations of the orthologous groups", "id": 657, - "prefix": "orthodb", "mirId": "MIR:00000221", + "modified": "2019-06-11T14:16:29.860+0000", "name": "OrthoDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "OrthoDB presents a catalog of eukaryotic orthologous protein-coding genes across vertebrates, arthropods, and fungi. Orthology refers to the last common ancestor of the species under consideration, and thus OrthoDB explicitly delineates orthologs at each radiation along the species phylogeny. The database of orthologs presents available protein descriptors, together with Gene Ontology and InterPro attributes, which serve to provide general descriptive annotations of the orthologous groups", - "created": "2019-06-11T14:16:29.860+0000", - "modified": "2019-06-11T14:16:29.860+0000", + "prefix": "orthodb", "resources": [ { - "id": 659, - "mirId": "MIR:00100280", - "urlPattern": "http://cegg.unige.ch/orthodb/results?searchtext={$id}", - "name": "OrthoDB at Swiss Institute of Bioinformatics", + "deprecated": false, + "deprecationDate": null, "description": "OrthoDB at Swiss Institute of Bioinformatics", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Q9P0K8", - "resourceHomeUrl": "http://cegg.unige.ch/orthodb4", + "id": 659, "institution": { - "id": 658, - "name": "Department of Genetic Medicine and Development, Swiss Institute of Bioinformatics, Geneva", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 658, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "Department of Genetic Medicine and Development, Swiss Institute of Bioinformatics, Geneva", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100280", + "name": "OrthoDB at Swiss Institute of Bioinformatics", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://cegg.unige.ch/orthodb4", + "sampleId": "Q9P0K8", + "urlPattern": "http://cegg.unige.ch/orthodb/results?searchtext={$id}" } ], - "sampleId": "Q9P0K8", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Q9P0K8" }, { + "created": "2019-06-11T14:16:30.097+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Peroxibase provides access to peroxidase sequences from all kingdoms of life, and provides a series of bioinformatics tools and facilities suitable for analysing these sequences.", "id": 660, - "prefix": "peroxibase", "mirId": "MIR:00000222", + "modified": "2019-06-11T14:16:30.097+0000", "name": "Peroxibase", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Peroxibase provides access to peroxidase sequences from all kingdoms of life, and provides a series of bioinformatics tools and facilities suitable for analysing these sequences.", - "created": "2019-06-11T14:16:30.097+0000", - "modified": "2019-06-11T14:16:30.097+0000", + "prefix": "peroxibase", "resources": [ { - "id": 662, - "mirId": "MIR:00100281", - "urlPattern": "http://peroxibase.toulouse.inra.fr/browse/process/view_perox.php?id={$id}", - "name": "Peroxibase at University of Geneva", + "deprecated": false, + "deprecationDate": null, "description": "Peroxibase at University of Geneva", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "5282", - "resourceHomeUrl": "http://peroxibase.toulouse.inra.fr/", + "id": 662, "institution": { - "id": 661, - "name": "Department of Plant Biology, University of Geneva, Geneva", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 661, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "Department of Plant Biology, University of Geneva, Geneva", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100281", + "name": "Peroxibase at University of Geneva", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://peroxibase.toulouse.inra.fr/", + "sampleId": "5282", + "urlPattern": "http://peroxibase.toulouse.inra.fr/browse/process/view_perox.php?id={$id}" } ], - "sampleId": "5282", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "5282" }, { + "created": "2019-06-11T14:16:30.326+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PhylomeDB is a database of complete phylomes derived for different genomes within a specific taxonomic range. It provides alignments, phylogentic trees and tree-based orthology predictions for all encoded proteins.", "id": 663, - "prefix": "phylomedb", "mirId": "MIR:00000223", + "modified": "2019-06-11T14:16:30.326+0000", "name": "PhylomeDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "PhylomeDB is a database of complete phylomes derived for different genomes within a specific taxonomic range. It provides alignments, phylogentic trees and tree-based orthology predictions for all encoded proteins.", - "created": "2019-06-11T14:16:30.326+0000", - "modified": "2019-06-11T14:16:30.326+0000", + "prefix": "phylomedb", "resources": [ { + "deprecated": false, + "deprecationDate": null, + "description": "PhylomeDB at Centro de Investigaci\u00f3n Pr\u00edncipe Felipe", "id": 665, - "mirId": "MIR:00100282", - "urlPattern": "http://phylomedb.org/?seqid={$id}", - "name": "PhylomeDB at Centro de Investigación Príncipe Felipe", - "description": "PhylomeDB at Centro de Investigación Príncipe Felipe", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Phy000CLXM_RAT", - "resourceHomeUrl": "http://phylomedb.org/", "institution": { - "id": 664, - "name": "Centre for Genomic Regulation", - "homeUrl": "https://www.crg.eu", "description": "The Centre for Genomic Regulation (CRG) is an international biomedical research institute of excellence, created in December 2000. It is a non-profit foundation funded by the Catalan Government through the Departments of Business & Knowledge, the Spanish Ministry of Science, Innovation & Universities, the \"la Caixa\" Banking Foundation, and includes the participation of Pompeu Fabra University.", - "rorId": "https://ror.org/03wyzt892", + "homeUrl": "https://www.crg.eu", + "id": 664, "location": { "countryCode": "ES", "countryName": "Spain" - } + }, + "name": "Centre for Genomic Regulation", + "rorId": "https://ror.org/03wyzt892" }, "location": { "countryCode": "ES", "countryName": "Spain" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100282", + "name": "PhylomeDB at Centro de Investigaci\u00f3n Pr\u00edncipe Felipe", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://phylomedb.org/", + "sampleId": "Phy000CLXM_RAT", + "urlPattern": "http://phylomedb.org/?seqid={$id}" } ], - "sampleId": "Phy000CLXM_RAT", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Phy000CLXM_RAT" }, { + "created": "2019-06-11T14:16:30.547+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Proteolysis MAP is a resource for proteolytic networks and pathways. PMAP is comprised of five databases, linked together in one environment. SubstrateDB contains molecular information on documented protease substrates.", "id": 666, - "prefix": "pmap.substratedb", "mirId": "MIR:00000224", + "modified": "2019-06-11T14:16:30.547+0000", "name": "SubstrateDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Proteolysis MAP is a resource for proteolytic networks and pathways. PMAP is comprised of five databases, linked together in one environment. SubstrateDB contains molecular information on documented protease substrates.", - "created": "2019-06-11T14:16:30.547+0000", - "modified": "2019-06-11T14:16:30.547+0000", + "prefix": "pmap.substratedb", "resources": [ { - "id": 668, - "mirId": "MIR:00100283", - "urlPattern": "http://substrate.burnham.org/protein/annotation/{$id}/html", - "name": "SubstrateDB at The Burnham Institute for Medical Research", + "deprecated": false, + "deprecationDate": null, "description": "SubstrateDB at The Burnham Institute for Medical Research", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1915", - "resourceHomeUrl": "http://substrate.burnham.org/", + "id": 668, "institution": { - "id": 667, - "name": "The Center on Proteolytic Pathways, The Cancer Research Center and The Inflammatory and Infectious Disease Center, The Burnham Institute for Medical Research, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 667, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Center on Proteolytic Pathways, The Cancer Research Center and The Inflammatory and Infectious Disease Center, The Burnham Institute for Medical Research, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100283", + "name": "SubstrateDB at The Burnham Institute for Medical Research", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://substrate.burnham.org/", + "sampleId": "1915", + "urlPattern": "http://substrate.burnham.org/protein/annotation/{$id}/html" } ], - "sampleId": "1915", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1915" }, { + "created": "2019-06-11T14:16:30.793+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Proteolysis MAP is a resource for proteolytic networks and pathways. PMAP is comprised of five databases, linked together in one environment. CutDB is a database of individual proteolytic events (cleavage sites).", "id": 669, - "prefix": "pmap.cutdb", "mirId": "MIR:00000225", + "modified": "2019-06-11T14:16:30.793+0000", "name": "CutDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Proteolysis MAP is a resource for proteolytic networks and pathways. PMAP is comprised of five databases, linked together in one environment. CutDB is a database of individual proteolytic events (cleavage sites).", - "created": "2019-06-11T14:16:30.793+0000", - "modified": "2019-06-11T14:16:30.793+0000", + "prefix": "pmap.cutdb", "resources": [ { - "id": 670, - "mirId": "MIR:00100284", - "urlPattern": "http://cutdb.burnham.org/relation/show/{$id}", - "name": "CutDB at The Burnham Institute for Medical Research", + "deprecated": false, + "deprecationDate": null, "description": "CutDB at The Burnham Institute for Medical Research", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "25782", - "resourceHomeUrl": "http://cutdb.burnham.org", + "id": 670, "institution": { - "id": 667, - "name": "The Center on Proteolytic Pathways, The Cancer Research Center and The Inflammatory and Infectious Disease Center, The Burnham Institute for Medical Research, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 667, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Center on Proteolytic Pathways, The Cancer Research Center and The Inflammatory and Infectious Disease Center, The Burnham Institute for Medical Research, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100284", + "name": "CutDB at The Burnham Institute for Medical Research", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://cutdb.burnham.org", + "sampleId": "25782", + "urlPattern": "http://cutdb.burnham.org/relation/show/{$id}" } ], - "sampleId": "25782", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "25782" }, { + "created": "2019-06-11T14:16:31.086+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ProtClustDB is a collection of related protein sequences (clusters) consisting of Reference Sequence proteins encoded by complete genomes. This database contains both curated and non-curated clusters.", "id": 671, - "prefix": "protclustdb", "mirId": "MIR:00000226", + "modified": "2019-06-11T14:16:31.086+0000", "name": "ProtClustDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "ProtClustDB is a collection of related protein sequences (clusters) consisting of Reference Sequence proteins encoded by complete genomes. This database contains both curated and non-curated clusters.", - "created": "2019-06-11T14:16:31.086+0000", - "modified": "2019-06-11T14:16:31.086+0000", + "prefix": "protclustdb", "resources": [ { - "id": 672, - "mirId": "MIR:00100285", - "urlPattern": "https://www.ncbi.nlm.nih.gov/sites/entrez?Db=proteinclusters&Cmd=DetailsSearch&Term={$id}", - "name": "ProtClustDB at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "ProtClustDB at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "O80725", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/proteinclusters?db=proteinclusters", + "id": 672, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100285", + "name": "ProtClustDB at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/proteinclusters?db=proteinclusters", + "sampleId": "O80725", + "urlPattern": "https://www.ncbi.nlm.nih.gov/sites/entrez?Db=proteinclusters&Cmd=DetailsSearch&Term={$id}" } ], - "sampleId": "O80725", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "O80725" }, { + "created": "2019-06-11T14:16:31.282+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The number of known protein sequences exceeds those of experimentally solved protein structures. Homology (or comparative) modeling methods make use of experimental protein structures to build models for evolutionary related proteins. The Protein Model Portal (PMP) provides a single portal to access these models, which are accessed through their UniProt identifiers.", "id": 673, - "prefix": "pmp", "mirId": "MIR:00000227", + "modified": "2019-06-11T14:16:31.282+0000", "name": "PMP", + "namespaceEmbeddedInLui": false, "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])$", - "description": "The number of known protein sequences exceeds those of experimentally solved protein structures. Homology (or comparative) modeling methods make use of experimental protein structures to build models for evolutionary related proteins. The Protein Model Portal (PMP) provides a single portal to access these models, which are accessed through their UniProt identifiers.", - "created": "2019-06-11T14:16:31.282+0000", - "modified": "2019-06-11T14:16:31.282+0000", + "prefix": "pmp", "resources": [ { - "id": 675, - "mirId": "MIR:00100286", - "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100286/{$id}", - "name": "PMP at University of Basel", + "deprecated": true, + "deprecationDate": "2020-03-03T06:27:49.602+0000", "description": "PMP at University of Basel", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Q0VCA6", - "resourceHomeUrl": "http://www.proteinmodelportal.org/", + "id": 675, "institution": { - "id": 674, - "name": "Biozentrum, University of Basel, Basel", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 674, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "Biozentrum, University of Basel, Basel", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": true, - "deprecationDate": "2020-03-03T06:27:49.602+0000" + "mirId": "MIR:00100286", + "name": "PMP at University of Basel", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.proteinmodelportal.org/", + "sampleId": "Q0VCA6", + "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100286/{$id}" } ], - "sampleId": "Q0VCA6", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Q0VCA6" }, { + "created": "2019-06-11T14:16:31.529+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ProtoNet provides automatic hierarchical classification of protein sequences in the UniProt database, partitioning the protein space into clusters of similar proteins. This collection references protein information.", "id": 676, - "prefix": "protonet.proteincard", "mirId": "MIR:00000228", + "modified": "2019-06-11T14:16:31.529+0000", "name": "ProtoNet ProteinCard", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "ProtoNet provides automatic hierarchical classification of protein sequences in the UniProt database, partitioning the protein space into clusters of similar proteins. This collection references protein information.", - "created": "2019-06-11T14:16:31.529+0000", - "modified": "2019-06-11T14:16:31.529+0000", + "prefix": "protonet.proteincard", "resources": [ { - "id": 678, - "mirId": "MIR:00100287", - "urlPattern": "http://www.protonet.cs.huji.ac.il/requested/protein_card.php?protein_id={$id}", - "name": "ProtoNet at Hebrew University", + "deprecated": false, + "deprecationDate": null, "description": "ProtoNet at Hebrew University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "16941567", - "resourceHomeUrl": "http://www.protonet.cs.huji.ac.il/", + "id": 678, "institution": { - "id": 677, - "name": "Hebrew University, Jerusalem", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 677, "location": { "countryCode": "IL", "countryName": "Israel" - } + }, + "name": "Hebrew University, Jerusalem", + "rorId": null }, "location": { "countryCode": "IL", "countryName": "Israel" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100287", + "name": "ProtoNet at Hebrew University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.protonet.cs.huji.ac.il/", + "sampleId": "16941567", + "urlPattern": "http://www.protonet.cs.huji.ac.il/requested/protein_card.php?protein_id={$id}" } ], - "sampleId": "16941567", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "16941567" }, { + "created": "2019-06-11T14:16:31.786+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ProtoNet provides automatic hierarchical classification of protein sequences in the UniProt database, partitioning the protein space into clusters of similar proteins. This collection references cluster information.", "id": 679, - "prefix": "protonet.cluster", "mirId": "MIR:00000229", + "modified": "2019-06-11T14:16:31.786+0000", "name": "ProtoNet Cluster", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "ProtoNet provides automatic hierarchical classification of protein sequences in the UniProt database, partitioning the protein space into clusters of similar proteins. This collection references cluster information.", - "created": "2019-06-11T14:16:31.786+0000", - "modified": "2019-06-11T14:16:31.786+0000", + "prefix": "protonet.cluster", "resources": [ { - "id": 680, - "mirId": "MIR:00100288", - "urlPattern": "http://www.protonet.cs.huji.ac.il/requested/cluster_card.php?cluster={$id}", - "name": "ProtoNet at Hebrew University", + "deprecated": false, + "deprecationDate": null, "description": "ProtoNet at Hebrew University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "4349895", - "resourceHomeUrl": "http://www.protonet.cs.huji.ac.il/", + "id": 680, "institution": { - "id": 677, - "name": "Hebrew University, Jerusalem", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 677, "location": { "countryCode": "IL", "countryName": "Israel" - } + }, + "name": "Hebrew University, Jerusalem", + "rorId": null }, "location": { "countryCode": "IL", "countryName": "Israel" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100288", + "name": "ProtoNet at Hebrew University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.protonet.cs.huji.ac.il/", + "sampleId": "4349895", + "urlPattern": "http://www.protonet.cs.huji.ac.il/requested/cluster_card.php?cluster={$id}" } ], - "sampleId": "4349895", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "4349895" }, { + "created": "2019-06-11T14:16:32.004+0000", + "deprecated": false, + "deprecationDate": null, + "description": "REBASE is a comprehensive database of information about restriction enzymes, DNA methyltransferases and related proteins involved in the biological process of restriction-modification (R-M). It contains fully referenced information about recognition and cleavage sites, isoschizomers, neoschizomers, commercial availability, methylation sensitivity, crystal and sequence data.", "id": 681, - "prefix": "rebase", "mirId": "MIR:00000230", + "modified": "2019-06-11T14:16:32.004+0000", "name": "REBASE", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "REBASE is a comprehensive database of information about restriction enzymes, DNA methyltransferases and related proteins involved in the biological process of restriction-modification (R-M). It contains fully referenced information about recognition and cleavage sites, isoschizomers, neoschizomers, commercial availability, methylation sensitivity, crystal and sequence data.", - "created": "2019-06-11T14:16:32.004+0000", - "modified": "2019-06-11T14:16:32.004+0000", + "prefix": "rebase", "resources": [ { - "id": 683, - "mirId": "MIR:00100289", - "urlPattern": "http://rebase.neb.com/rebase/enz/{$id}.html", - "name": "REBASE at New England Biolabs", + "deprecated": false, + "deprecationDate": null, "description": "REBASE at New England Biolabs", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "101", - "resourceHomeUrl": "http://rebase.neb.com/rebase/", + "id": 683, "institution": { - "id": 682, - "name": "New England Biolabs, Ipswich, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 682, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "New England Biolabs, Ipswich, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100289", + "name": "REBASE at New England Biolabs", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://rebase.neb.com/rebase/", + "sampleId": "101", + "urlPattern": "http://rebase.neb.com/rebase/enz/{$id}.html" } ], - "sampleId": "101", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "101" }, { + "created": "2019-06-11T14:16:32.267+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The SWISS-MODEL Repository is a database of 3D protein structure models generated by the SWISS-MODEL homology-modelling pipeline for UniProtKB protein sequences.", "id": 684, - "prefix": "swiss-model", "mirId": "MIR:00000231", + "modified": "2019-06-11T14:16:32.267+0000", "name": "SWISS-MODEL Repository", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "The SWISS-MODEL Repository is a database of 3D protein structure models generated by the SWISS-MODEL homology-modelling pipeline for UniProtKB protein sequences.", - "created": "2019-06-11T14:16:32.267+0000", - "modified": "2019-06-11T14:16:32.267+0000", + "prefix": "swiss-model", "resources": [ { - "id": 686, - "mirId": "MIR:00100290", - "urlPattern": "https://swissmodel.expasy.org/repository/uniprot/{$id}", - "name": "SWISS-MODEL at SIB Swiss Institute of Bioinformatics", + "deprecated": false, + "deprecationDate": null, "description": "SWISS-MODEL at SIB Swiss Institute of Bioinformatics", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "P23298", - "resourceHomeUrl": "https://swissmodel.expasy.org", + "id": 686, "institution": { - "id": 685, - "name": "Biozentrum, University of Basel and SIB Swiss Institute of Bioinformatics, Basel", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 685, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "Biozentrum, University of Basel and SIB Swiss Institute of Bioinformatics, Basel", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100290", + "name": "SWISS-MODEL at SIB Swiss Institute of Bioinformatics", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://swissmodel.expasy.org", + "sampleId": "P23298", + "urlPattern": "https://swissmodel.expasy.org/repository/uniprot/{$id}" } ], - "sampleId": "P23298", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "P23298" }, { + "created": "2019-06-11T14:16:32.515+0000", + "deprecated": false, + "deprecationDate": null, + "description": "VectorBase is an NIAID-funded Bioinformatic Resource Center focused on invertebrate vectors of human pathogens. VectorBase annotates and curates vector genomes providing a web accessible integrated resource for the research community. Currently, VectorBase contains genome information for three mosquito species: Aedes aegypti, Anopheles gambiae and Culex quinquefasciatus, a body louse Pediculus humanus and a tick species Ixodes scapularis.", "id": 687, - "prefix": "vectorbase", "mirId": "MIR:00000232", + "modified": "2019-06-11T14:16:32.515+0000", "name": "VectorBase", + "namespaceEmbeddedInLui": false, "pattern": "^\\D{4}\\d{6}(\\-\\D{2})?$", - "description": "VectorBase is an NIAID-funded Bioinformatic Resource Center focused on invertebrate vectors of human pathogens. VectorBase annotates and curates vector genomes providing a web accessible integrated resource for the research community. Currently, VectorBase contains genome information for three mosquito species: Aedes aegypti, Anopheles gambiae and Culex quinquefasciatus, a body louse Pediculus humanus and a tick species Ixodes scapularis.", - "created": "2019-06-11T14:16:32.515+0000", - "modified": "2019-06-11T14:16:32.515+0000", + "prefix": "vectorbase", "resources": [ { - "id": 688, - "mirId": "MIR:00100291", - "urlPattern": "https://www.vectorbase.org/search/site/{$id}?&site=\"Genome\"", - "name": "Vectorbase at EMBL-EBI", + "deprecated": false, + "deprecationDate": null, "description": "Vectorbase at EMBL-EBI", - "official": true, - "providerCode": "ebi", - "sampleId": "ISCW007415", - "resourceHomeUrl": "https://www.vectorbase.org/", + "id": 688, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100291", + "name": "Vectorbase at EMBL-EBI", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.vectorbase.org/", + "sampleId": "ISCW007415", + "urlPattern": "https://www.vectorbase.org/search/site/{$id}?&site=\"Genome\"" } ], - "sampleId": "ISCW007415", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ISCW007415" }, { + "created": "2019-06-11T14:16:33.213+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Cell Cycle Ontology is an application ontology that captures and integrates detailed knowledge on the cell cycle process.", "id": 694, - "prefix": "cco", "mirId": "MIR:00000234", + "modified": "2019-06-11T14:16:33.213+0000", "name": "Cell Cycle Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^CCO\\:\\w+$", - "description": "The Cell Cycle Ontology is an application ontology that captures and integrates detailed knowledge on the cell cycle process.", - "created": "2019-06-11T14:16:33.213+0000", - "modified": "2019-06-11T14:16:33.213+0000", + "prefix": "cco", "resources": [ { - "id": 695, - "mirId": "MIR:00100294", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/cco/terms?obo_id=CCO:{$id}", - "name": "Cell Cycle Ontology through OLS", + "deprecated": false, + "deprecationDate": null, "description": "Cell Cycle Ontology through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0000003", - "resourceHomeUrl": "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=CCO", + "id": 695, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100294", + "name": "Cell Cycle Ontology through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=CCO", + "sampleId": "0000003", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/cco/terms?obo_id=CCO:{$id}" } ], - "sampleId": "0000003", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0000003" }, { + "created": "2019-06-11T14:16:33.415+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The miRBase Sequence Database is a searchable database of published miRNA sequences and annotation. This collection refers specifically to the mature miRNA sequence.", "id": 696, - "prefix": "mirbase.mature", "mirId": "MIR:00000235", + "modified": "2019-06-11T14:16:33.415+0000", "name": "miRBase mature sequence", + "namespaceEmbeddedInLui": false, "pattern": "MIMAT\\d{7}", - "description": "The miRBase Sequence Database is a searchable database of published miRNA sequences and annotation. This collection refers specifically to the mature miRNA sequence.", - "created": "2019-06-11T14:16:33.415+0000", - "modified": "2019-06-11T14:16:33.415+0000", + "prefix": "mirbase.mature", "resources": [ { - "id": 697, - "mirId": "MIR:00100296", - "urlPattern": "http://www.mirbase.org/cgi-bin/mature.pl?mature_acc={$id}", - "name": "miRBase", + "deprecated": false, + "deprecationDate": null, "description": "miRBase", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MIMAT0000001", - "resourceHomeUrl": "http://www.mirbase.org/", + "id": 697, "institution": { - "id": 264, - "name": "Faculty of Life Sciences, University of Manchester", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 264, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Faculty of Life Sciences, University of Manchester", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100296", + "name": "miRBase", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.mirbase.org/", + "sampleId": "MIMAT0000001", + "urlPattern": "http://www.mirbase.org/cgi-bin/mature.pl?mature_acc={$id}" } ], - "sampleId": "MIMAT0000001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MIMAT0000001" }, { + "created": "2019-06-11T14:16:33.634+0000", + "deprecated": false, + "deprecationDate": null, + "description": "neXtProt is a resource on human proteins, and includes information such as proteins\u2019 function, subcellular location, expression, interactions and role in diseases.", "id": 698, - "prefix": "nextprot", "mirId": "MIR:00000236", + "modified": "2019-06-11T14:16:33.634+0000", "name": "nextProt", + "namespaceEmbeddedInLui": false, "pattern": "^NX_\\w+", - "description": "neXtProt is a resource on human proteins, and includes information such as proteins’ function, subcellular location, expression, interactions and role in diseases.", - "created": "2019-06-11T14:16:33.634+0000", - "modified": "2019-06-11T14:16:33.634+0000", + "prefix": "nextprot", "resources": [ { - "id": 700, - "mirId": "MIR:00100300", - "urlPattern": "https://www.nextprot.org/db/entry/{$id}", - "name": "nextProt at Swiss Institute of Bioinformatics", + "deprecated": false, + "deprecationDate": null, "description": "nextProt at Swiss Institute of Bioinformatics", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "NX_O00165", - "resourceHomeUrl": "https://www.nextprot.org/", + "id": 700, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100300", + "name": "nextProt at Swiss Institute of Bioinformatics", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.nextprot.org/", + "sampleId": "NX_O00165", + "urlPattern": "https://www.nextprot.org/db/entry/{$id}" } ], - "sampleId": "NX_O00165", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "NX_O00165" }, { + "created": "2019-06-11T14:16:33.869+0000", + "deprecated": false, + "deprecationDate": null, + "description": "CAS (Chemical Abstracts Service) is a division of the American Chemical Society and is the producer of comprehensive databases of chemical information.", "id": 701, - "prefix": "cas", "mirId": "MIR:00000237", + "modified": "2019-06-11T14:16:33.869+0000", "name": "CAS", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{1,7}\\-\\d{2}\\-\\d$", - "description": "CAS (Chemical Abstracts Service) is a division of the American Chemical Society and is the producer of comprehensive databases of chemical information.", - "created": "2019-06-11T14:16:33.869+0000", - "modified": "2019-06-11T14:16:33.869+0000", + "prefix": "cas", "resources": [ { - "id": 703, - "mirId": "MIR:00100301", - "urlPattern": "http://commonchemistry.org/ChemicalDetail.aspx?ref={$id}", - "name": "CAS through Common Chemistry", + "deprecated": false, + "deprecationDate": null, "description": "CAS through Common Chemistry", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "50-00-0", - "resourceHomeUrl": "http://commonchemistry.org", + "id": 703, "institution": { - "id": 702, - "name": "CAS American Chemical Society", - "homeUrl": "https://www.cas.org", "description": "CAS is a global organization of expert scientists, technologists, and business leaders with a successful and extended history of delivering scientific information opportunities.", - "rorId": null, + "homeUrl": "https://www.cas.org", + "id": 702, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "CAS American Chemical Society", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100301", + "name": "CAS through Common Chemistry", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://commonchemistry.org", + "sampleId": "50-00-0", + "urlPattern": "http://commonchemistry.org/ChemicalDetail.aspx?ref={$id}" }, { - "id": 2454, - "mirId": "MIR:00000732", - "urlPattern": "https://scholia.toolforge.org/cas/{$id}", - "name": "Scholia", + "deprecated": false, + "deprecationDate": null, "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", - "official": false, - "providerCode": "scholia", - "sampleId": "50-00-0", - "resourceHomeUrl": "https://scholia.toolforge.org/", + "id": 2454, "institution": { - "id": 283, - "name": "Maastricht University", - "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", - "rorId": "https://ror.org/02jz4aj89", + "homeUrl": "https://www.maastrichtuniversity.nl", + "id": 283, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "Maastricht University", + "rorId": "https://ror.org/02jz4aj89" }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000732", + "name": "Scholia", + "official": false, + "providerCode": "scholia", + "resourceHomeUrl": "https://scholia.toolforge.org/", + "sampleId": "50-00-0", + "urlPattern": "https://scholia.toolforge.org/cas/{$id}" } ], - "sampleId": "50-00-0", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "50-00-0" }, { + "created": "2019-06-11T14:16:34.113+0000", + "deprecated": false, + "deprecationDate": null, + "description": "KEGG Genome is a collection of organisms whose genomes have been completely sequenced.", "id": 704, - "prefix": "kegg.genome", "mirId": "MIR:00000238", + "modified": "2019-06-11T14:16:34.113+0000", "name": "KEGG Genome", + "namespaceEmbeddedInLui": false, "pattern": "^(T0\\d+|\\w{3,5})$", - "description": "KEGG Genome is a collection of organisms whose genomes have been completely sequenced.", - "created": "2019-06-11T14:16:34.113+0000", - "modified": "2019-06-11T14:16:34.113+0000", + "prefix": "kegg.genome", "resources": [ { - "id": 706, - "mirId": "MIR:00100303", - "urlPattern": "http://www.kegg.jp/entry/{$id}", - "name": "KEGG Genome Database", + "deprecated": false, + "deprecationDate": null, "description": "KEGG Genome Database", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "eco", - "resourceHomeUrl": "http://www.genome.jp/kegg/catalog/org_list.html", + "id": 706, "institution": { - "id": 705, - "name": "Kyoto University Bioinformatics Center, Kyoto", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 705, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Kyoto University Bioinformatics Center, Kyoto", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100303", + "name": "KEGG Genome Database", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.genome.jp/kegg/catalog/org_list.html", + "sampleId": "eco", + "urlPattern": "http://www.kegg.jp/entry/{$id}" } ], - "sampleId": "eco", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "eco" }, { + "created": "2019-06-11T14:16:34.345+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The KEGG Metagenome Database collection information on environmental samples (ecosystems) of genome sequences for multiple species.", "id": 707, - "prefix": "kegg.metagenome", "mirId": "MIR:00000239", + "modified": "2019-06-11T14:16:34.345+0000", "name": "KEGG Metagenome", + "namespaceEmbeddedInLui": false, "pattern": "^T3\\d+$", - "description": "The KEGG Metagenome Database collection information on environmental samples (ecosystems) of genome sequences for multiple species.", - "created": "2019-06-11T14:16:34.345+0000", - "modified": "2019-06-11T14:16:34.345+0000", + "prefix": "kegg.metagenome", "resources": [ { - "id": 708, - "mirId": "MIR:00100304", - "urlPattern": "http://www.kegg.jp/entry/{$id}", - "name": "KEGG Metagenome Database", + "deprecated": false, + "deprecationDate": null, "description": "KEGG Metagenome Database", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "T30002", - "resourceHomeUrl": "http://www.genome.jp/kegg/catalog/org_list3.html", + "id": 708, "institution": { - "id": 705, - "name": "Kyoto University Bioinformatics Center, Kyoto", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 705, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Kyoto University Bioinformatics Center, Kyoto", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100304", + "name": "KEGG Metagenome Database", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.genome.jp/kegg/catalog/org_list3.html", + "sampleId": "T30002", + "urlPattern": "http://www.kegg.jp/entry/{$id}" } ], - "sampleId": "T30002", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "T30002" }, { + "created": "2019-06-11T14:16:34.542+0000", + "deprecated": false, + "deprecationDate": null, + "description": "NARCIS provides access to scientific information, including (open access) publications from the repositories of all the Dutch universities, KNAW, NWO and a number of research institutes, which is not referenced in other citation databases.", "id": 709, - "prefix": "narcis", "mirId": "MIR:00000240", + "modified": "2019-06-11T14:16:34.542+0000", "name": "NARCIS", + "namespaceEmbeddedInLui": false, "pattern": "^oai\\:cwi\\.nl\\:\\d+$", - "description": "NARCIS provides access to scientific information, including (open access) publications from the repositories of all the Dutch universities, KNAW, NWO and a number of research institutes, which is not referenced in other citation databases.", - "created": "2019-06-11T14:16:34.542+0000", - "modified": "2019-06-11T14:16:34.542+0000", + "prefix": "narcis", "resources": [ { - "id": 711, - "mirId": "MIR:00100306", - "urlPattern": "http://www.narcis.nl/publication/RecordID/{$id}", - "name": "NARCIS at The Hague", + "deprecated": false, + "deprecationDate": null, "description": "NARCIS at The Hague", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "oai:cwi.nl:4725", - "resourceHomeUrl": "http://www.narcis.nl/?Language=en", + "id": 711, "institution": { - "id": 710, - "name": "NARCIS, Royal Netherlands Academy of Science and Arts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 710, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "NARCIS, Royal Netherlands Academy of Science and Arts", + "rorId": null }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100306", + "name": "NARCIS at The Hague", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.narcis.nl/?Language=en", + "sampleId": "oai:cwi.nl:4725", + "urlPattern": "http://www.narcis.nl/publication/RecordID/{$id}" } ], - "sampleId": "oai:cwi.nl:4725", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "oai:cwi.nl:4725" }, { + "created": "2019-06-11T14:16:34.772+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Japan Chemical Substance Dictionary is an organic compound dictionary database prepared by the Japan Science and Technology Agency (JST).", "id": 712, - "prefix": "jcsd", "mirId": "MIR:00000241", + "modified": "2019-06-11T14:16:34.772+0000", "name": "Japan Chemical Substance Dictionary", + "namespaceEmbeddedInLui": false, "pattern": "^J\\d{1,3}(\\.\\d{3})?(\\.\\d{1,3})?[A-Za-z]$", - "description": "The Japan Chemical Substance Dictionary is an organic compound dictionary database prepared by the Japan Science and Technology Agency (JST).", - "created": "2019-06-11T14:16:34.772+0000", - "modified": "2019-06-11T14:16:34.772+0000", + "prefix": "jcsd", "resources": [ { - "id": 714, - "mirId": "MIR:00100307", - "urlPattern": "http://jglobal.jst.go.jp/en/redirect?Nikkaji_No={$id}", - "name": "Japan Chemical Substance Dictionary", + "deprecated": false, + "deprecationDate": null, "description": "Japan Chemical Substance Dictionary", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "J55.713G", - "resourceHomeUrl": "http://jglobal.jst.go.jp/en/", + "id": 714, "institution": { - "id": 713, - "name": "Japan Science and Technology Agency", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 713, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Japan Science and Technology Agency", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100307", + "name": "Japan Chemical Substance Dictionary", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://jglobal.jst.go.jp/en/", + "sampleId": "J55.713G", + "urlPattern": "http://jglobal.jst.go.jp/en/redirect?Nikkaji_No={$id}" } ], - "sampleId": "J55.713G", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "J55.713G" }, { + "created": "2019-06-11T14:16:35.052+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Pathway Ontology captures information on biological networks, the relationships between netweorks and the alterations or malfunctioning of such networks within a hierarchical structure. The five main branches of the ontology are: classic metabolic pathways, regulatory, signaling, drug, and disease pathwaysfor complex human conditions.", "id": 715, - "prefix": "pw", "mirId": "MIR:00000242", + "modified": "2019-06-11T14:16:35.052+0000", "name": "Pathway Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^PW:\\d{7}$", - "description": "The Pathway Ontology captures information on biological networks, the relationships between netweorks and the alterations or malfunctioning of such networks within a hierarchical structure. The five main branches of the ontology are: classic metabolic pathways, regulatory, signaling, drug, and disease pathwaysfor complex human conditions.", - "created": "2019-06-11T14:16:35.052+0000", - "modified": "2019-06-11T14:16:35.052+0000", + "prefix": "pw", "resources": [ { - "id": 717, - "mirId": "MIR:00100309", - "urlPattern": "http://rgd.mcw.edu/rgdweb/ontology/annot.html?acc_id=PW:{$id}", - "name": "Pathway Ontology at Rat Genome Database", + "deprecated": false, + "deprecationDate": null, "description": "Pathway Ontology at Rat Genome Database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0000208", - "resourceHomeUrl": "http://rgd.mcw.edu/rgdweb/ontology/search.html", + "id": 717, "institution": { - "id": 716, - "name": "Medical College of Wisconsin, Wisconsin", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 716, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Medical College of Wisconsin, Wisconsin", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100309", + "name": "Pathway Ontology at Rat Genome Database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://rgd.mcw.edu/rgdweb/ontology/search.html", + "sampleId": "0000208", + "urlPattern": "http://rgd.mcw.edu/rgdweb/ontology/annot.html?acc_id=PW:{$id}" }, { - "id": 718, - "mirId": "MIR:00100310", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/pw/terms?obo_id=PW:{$id}", - "name": "Pathway Ontology through OLS", + "deprecated": false, + "deprecationDate": null, "description": "Pathway Ontology through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0000208", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/pw", + "id": 718, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100310", + "name": "Pathway Ontology through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/pw", + "sampleId": "0000208", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/pw/terms?obo_id=PW:{$id}" }, { - "id": 720, - "mirId": "MIR:00100311", - "urlPattern": "http://purl.bioontology.org/ontology/PW/PW:{$id}", - "name": "Pathway Ontology through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "Pathway Ontology through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "0000208", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PW", + "id": 720, "institution": { - "id": 719, - "name": "National Center for Biomedical Ontology, Stanford, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 719, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100311", + "name": "Pathway Ontology through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PW", + "sampleId": "0000208", + "urlPattern": "http://purl.bioontology.org/ontology/PW/PW:{$id}" } ], - "sampleId": "0000208", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0000208" }, { + "created": "2019-06-11T14:16:35.560+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Sequence Read Archive (SRA) stores raw sequencing data from the next generation of sequencing platforms Data submitted to SRA. It is organized using a metadata model consisting of six objects: study, sample, experiment, run, analysis and submission. The SRA study contains high-level information including goals of the study and literature references, and may be linked to the INSDC BioProject database.", "id": 721, - "prefix": "insdc.sra", "mirId": "MIR:00000243", + "modified": "2019-06-11T14:16:35.560+0000", "name": "Sequence Read Archive", + "namespaceEmbeddedInLui": false, "pattern": "^[SED]R[APRSXZ]\\d+$", - "description": "The Sequence Read Archive (SRA) stores raw sequencing data from the next generation of sequencing platforms Data submitted to SRA. It is organized using a metadata model consisting of six objects: study, sample, experiment, run, analysis and submission. The SRA study contains high-level information including goals of the study and literature references, and may be linked to the INSDC BioProject database.", - "created": "2019-06-11T14:16:35.560+0000", - "modified": "2019-06-11T14:16:35.560+0000", + "prefix": "insdc.sra", "resources": [ { - "id": 722, - "mirId": "MIR:00100312", - "urlPattern": "https://www.ncbi.nlm.nih.gov/sra/{$id}", - "name": "Sequence Read Archive at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "Sequence Read Archive at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "SRX000007", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sra", + "id": 722, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100312", + "name": "Sequence Read Archive at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sra", + "sampleId": "SRX000007", + "urlPattern": "https://www.ncbi.nlm.nih.gov/sra/{$id}" }, { - "id": 723, - "mirId": "MIR:00100313", - "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", - "name": "European Nucleotide Archive (ENA)", + "deprecated": false, + "deprecationDate": null, "description": "European Nucleotide Archive (ENA)", - "official": false, - "providerCode": "ebi", - "sampleId": "SRX000007", - "resourceHomeUrl": "https://www.ebi.ac.uk/ena", + "id": 723, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100313", + "name": "European Nucleotide Archive (ENA)", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/ena", + "sampleId": "SRX000007", + "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}" }, { - "id": 724, - "mirId": "MIR:00100314", - "urlPattern": "http://trace.ddbj.nig.ac.jp/DRASearch/experiment?acc={$id}", - "name": "DDBJ Sequence Read Archive (DRA)", + "deprecated": false, + "deprecationDate": null, "description": "DDBJ Sequence Read Archive (DRA)", - "official": false, - "providerCode": "ddbj", - "sampleId": "SRX000007", - "resourceHomeUrl": "http://trace.ddbj.nig.ac.jp/dra/", + "id": 724, "institution": { - "id": 121, - "name": "DNA Data Bank of Japan, Mishima, Shizuoka", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 121, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "DNA Data Bank of Japan, Mishima, Shizuoka", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100314", + "name": "DDBJ Sequence Read Archive (DRA)", + "official": false, + "providerCode": "ddbj", + "resourceHomeUrl": "http://trace.ddbj.nig.ac.jp/dra/", + "sampleId": "SRX000007", + "urlPattern": "http://trace.ddbj.nig.ac.jp/DRASearch/experiment?acc={$id}" } ], - "sampleId": "SRX000007", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "SRX000007" }, { + "created": "2019-06-11T14:16:35.987+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ScerTF is a database of position weight matrices (PWMs) for transcription factors in Saccharomyces species. It identifies a single matrix for each TF that best predicts in vivo data, providing metrics related to the performance of that matrix in accurately representing the DNA binding specificity of the annotated transcription factor.", "id": 725, - "prefix": "scretf", "mirId": "MIR:00000244", + "modified": "2019-06-11T14:16:35.987+0000", "name": "ScerTF", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "ScerTF is a database of position weight matrices (PWMs) for transcription factors in Saccharomyces species. It identifies a single matrix for each TF that best predicts in vivo data, providing metrics related to the performance of that matrix in accurately representing the DNA binding specificity of the annotated transcription factor.", - "created": "2019-06-11T14:16:35.987+0000", - "modified": "2019-06-11T14:16:35.987+0000", + "prefix": "scretf", "resources": [ { - "id": 727, - "mirId": "MIR:00100315", - "urlPattern": "http://stormo.wustl.edu/ScerTF/details/{$id}/", - "name": "ScerTF at Washington University", + "deprecated": false, + "deprecationDate": null, "description": "ScerTF at Washington University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "RSC3", - "resourceHomeUrl": "http://stormo.wustl.edu/ScerTF/", + "id": 727, "institution": { - "id": 726, - "name": "Department of Genetics, Washington University Medical School, St Louis, Missouri", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 726, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Genetics, Washington University Medical School, St Louis, Missouri", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100315", + "name": "ScerTF at Washington University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://stormo.wustl.edu/ScerTF/", + "sampleId": "RSC3", + "urlPattern": "http://stormo.wustl.edu/ScerTF/details/{$id}/" } ], - "sampleId": "RSC3", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "RSC3" }, { + "created": "2019-06-11T14:16:36.222+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PharmGKB database is a central repository for genetic, genomic, molecular and cellular phenotype data and clinical information about people who have participated in pharmacogenomics research studies. The data includes, but is not limited to, clinical and basic pharmacokinetic and pharmacogenomic research in the cardiovascular, pulmonary, cancer, pathways, metabolic and transporter domains.", "id": 728, - "prefix": "pharmgkb.gene", "mirId": "MIR:00000245", + "modified": "2019-06-11T14:16:36.222+0000", "name": "PharmGKB Gene", + "namespaceEmbeddedInLui": false, "pattern": "^PA\\w+$", - "description": "The PharmGKB database is a central repository for genetic, genomic, molecular and cellular phenotype data and clinical information about people who have participated in pharmacogenomics research studies. The data includes, but is not limited to, clinical and basic pharmacokinetic and pharmacogenomic research in the cardiovascular, pulmonary, cancer, pathways, metabolic and transporter domains.", - "created": "2019-06-11T14:16:36.222+0000", - "modified": "2019-06-11T14:16:36.222+0000", + "prefix": "pharmgkb.gene", "resources": [ { - "id": 729, - "mirId": "MIR:00100316", - "urlPattern": "http://www.pharmgkb.org/gene/{$id}", - "name": "PharmGKB Gene at Stanford", + "deprecated": false, + "deprecationDate": null, "description": "PharmGKB Gene at Stanford", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PA131", - "resourceHomeUrl": "http://www.pharmgkb.org/", + "id": 729, "institution": { - "id": 298, - "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 298, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100316", + "name": "PharmGKB Gene at Stanford", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.pharmgkb.org/", + "sampleId": "PA131", + "urlPattern": "http://www.pharmgkb.org/gene/{$id}" } ], - "sampleId": "PA131", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PA131" }, { + "created": "2019-06-11T14:16:36.416+0000", + "deprecated": false, + "deprecationDate": null, + "description": "miRNEST is a database of animal, plant and virus microRNAs, containing miRNA predictions conducted on Expressed Sequence Tags of animal and plant species.", "id": 730, - "prefix": "mirnest", "mirId": "MIR:00000246", + "modified": "2019-06-11T14:16:36.416+0000", "name": "miRNEST", + "namespaceEmbeddedInLui": false, "pattern": "^MNEST\\d+$", - "description": "miRNEST is a database of animal, plant and virus microRNAs, containing miRNA predictions conducted on Expressed Sequence Tags of animal and plant species.", - "created": "2019-06-11T14:16:36.416+0000", - "modified": "2019-06-11T14:16:36.416+0000", + "prefix": "mirnest", "resources": [ { - "id": 732, - "mirId": "MIR:00100317", - "urlPattern": "http://rhesus.amu.edu.pl/mirnest/copy/details.php?id={$id}", - "name": "miRNEST at Adam Mickiewicz University", + "deprecated": false, + "deprecationDate": null, "description": "miRNEST at Adam Mickiewicz University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MNEST029358", - "resourceHomeUrl": "http://rhesus.amu.edu.pl/mirnest/copy/", + "id": 732, "institution": { - "id": 731, - "name": "Institute of Molecular Biology, Adam Mickiewicz University, Poznan", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 731, "location": { "countryCode": "PL", "countryName": "Poland" - } + }, + "name": "Institute of Molecular Biology, Adam Mickiewicz University, Poznan", + "rorId": null }, "location": { "countryCode": "PL", "countryName": "Poland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100317", + "name": "miRNEST at Adam Mickiewicz University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://rhesus.amu.edu.pl/mirnest/copy/", + "sampleId": "MNEST029358", + "urlPattern": "http://rhesus.amu.edu.pl/mirnest/copy/details.php?id={$id}" } ], - "sampleId": "MNEST029358", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MNEST029358" }, { + "created": "2019-06-11T14:16:36.669+0000", + "deprecated": false, + "deprecationDate": null, + "description": "NAPP (Nucleic Acids Phylogenetic Profiling is a clustering method based on conserved noncoding RNA (ncRNA) elements in a bacterial genomes. Short intergenic regions from a reference genome are compared with other genomes to identify RNA rich clusters.", "id": 733, - "prefix": "napp", "mirId": "MIR:00000247", + "modified": "2019-06-11T14:16:36.669+0000", "name": "NAPP", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "NAPP (Nucleic Acids Phylogenetic Profiling is a clustering method based on conserved noncoding RNA (ncRNA) elements in a bacterial genomes. Short intergenic regions from a reference genome are compared with other genomes to identify RNA rich clusters.", - "created": "2019-06-11T14:16:36.669+0000", - "modified": "2019-06-11T14:16:36.669+0000", + "prefix": "napp", "resources": [ { - "id": 735, - "mirId": "MIR:00100318", - "urlPattern": "http://rna.igmors.u-psud.fr/NAPP/Niveau2.php?specie={$id}", - "name": "NAPP at CNRS", + "deprecated": false, + "deprecationDate": null, "description": "NAPP at CNRS", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "351", - "resourceHomeUrl": "http://napp.u-psud.fr/", + "id": 735, "institution": { - "id": 734, - "name": "Institut de Génétique et Microbiologie, UMR 8621, CNRS, Université Paris Sud, Paris", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 734, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Institut de G\u00e9n\u00e9tique et Microbiologie, UMR 8621, CNRS, Universit\u00e9 Paris Sud, Paris", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100318", + "name": "NAPP at CNRS", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://napp.u-psud.fr/", + "sampleId": "351", + "urlPattern": "http://rna.igmors.u-psud.fr/NAPP/Niveau2.php?specie={$id}" } ], - "sampleId": "351", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "351" }, { + "created": "2019-06-11T14:16:36.900+0000", + "deprecated": false, + "deprecationDate": null, + "description": "NONCODE is a database of expression and functional lncRNA (long noncoding RNA) data obtained from microarray studies. LncRNAs have been shown to play key roles in various biological processes such as imprinting control, circuitry controlling pluripotency and differentiation, immune responses and chromosome dynamics. The collection references NONCODE version 3. This was replaced in 2013 by version 4.", "id": 736, - "prefix": "noncodev3", "mirId": "MIR:00000248", + "modified": "2019-06-11T14:16:36.900+0000", "name": "NONCODE v3", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "NONCODE is a database of expression and functional lncRNA (long noncoding RNA) data obtained from microarray studies. LncRNAs have been shown to play key roles in various biological processes such as imprinting control, circuitry controlling pluripotency and differentiation, immune responses and chromosome dynamics. The collection references NONCODE version 3. This was replaced in 2013 by version 4.", - "created": "2019-06-11T14:16:36.900+0000", - "modified": "2019-06-11T14:16:36.900+0000", + "prefix": "noncodev3", "resources": [ { - "id": 738, - "mirId": "MIR:00100319", - "urlPattern": "http://www.noncode.org/NONCODERv3/ncrna.php?ncid={$id}", - "name": "NONCODE at Chinese Academy of Sciences", + "deprecated": false, + "deprecationDate": null, "description": "NONCODE at Chinese Academy of Sciences", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "377550", - "resourceHomeUrl": "http://www.noncode.org/", + "id": 738, "institution": { - "id": 737, - "name": "Chinese Academy of Sciences", + "description": "The Chinese Academy of Sciences is the linchpin of China\u2019s drive to explore and harness high technology and the natural sciences for the benefit of China and the world. CAS brings together scientists and engineers from China and around the world to address both theoretical and applied problems using world-class scientific and management approaches.", "homeUrl": "http://english.cas.cn/", - "description": "The Chinese Academy of Sciences is the linchpin of China’s drive to explore and harness high technology and the natural sciences for the benefit of China and the world. CAS brings together scientists and engineers from China and around the world to address both theoretical and applied problems using world-class scientific and management approaches.", - "rorId": "https://ror.org/034t30j35", + "id": 737, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "Chinese Academy of Sciences", + "rorId": "https://ror.org/034t30j35" }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100319", + "name": "NONCODE at Chinese Academy of Sciences", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.noncode.org/", + "sampleId": "377550", + "urlPattern": "http://www.noncode.org/NONCODERv3/ncrna.php?ncid={$id}" } ], - "sampleId": "377550", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "377550" }, { + "created": "2019-06-11T14:16:37.163+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The VIRsiRNA database contains details of siRNA/shRNA which target viral genome regions. It provides efficacy information where available, as well as the siRNA sequence, viral target and subtype, as well as the target genomic region.", "id": 739, - "prefix": "virsirna", "mirId": "MIR:00000249", + "modified": "2019-06-11T14:16:37.163+0000", "name": "VIRsiRNA", + "namespaceEmbeddedInLui": false, "pattern": "^virsi\\d+$", - "description": "The VIRsiRNA database contains details of siRNA/shRNA which target viral genome regions. It provides efficacy information where available, as well as the siRNA sequence, viral target and subtype, as well as the target genomic region.", - "created": "2019-06-11T14:16:37.163+0000", - "modified": "2019-06-11T14:16:37.163+0000", + "prefix": "virsirna", "resources": [ { - "id": 741, - "mirId": "MIR:00100320", - "urlPattern": "http://crdd.osdd.net/servers/virsirnadb/record.php?details={$id}", - "name": "VIRsiRNA at Institute of Microbial Technology", + "deprecated": false, + "deprecationDate": null, "description": "VIRsiRNA at Institute of Microbial Technology", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "virsi1909", - "resourceHomeUrl": "http://crdd.osdd.net/servers/virsirnadb", + "id": 741, "institution": { - "id": 740, - "name": "Institute of Microbial Technology, Council of Scientific and Industrial Research (CSIR), Chandigarh, India", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 740, "location": { "countryCode": "IN", "countryName": "India" - } + }, + "name": "Institute of Microbial Technology, Council of Scientific and Industrial Research (CSIR), Chandigarh, India", + "rorId": null }, "location": { "countryCode": "IN", "countryName": "India" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100320", + "name": "VIRsiRNA at Institute of Microbial Technology", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://crdd.osdd.net/servers/virsirnadb", + "sampleId": "virsi1909", + "urlPattern": "http://crdd.osdd.net/servers/virsirnadb/record.php?details={$id}" } ], - "sampleId": "virsi1909", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "virsi1909" }, { + "created": "2019-06-11T14:16:37.386+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Linear motifs are short, evolutionarily plastic components of regulatory proteins. Mainly focused on the eukaryotic sequences,the Eukaryotic Linear Motif resource (ELM) is a database of curated motif classes and instances.", "id": 742, - "prefix": "elm", "mirId": "MIR:00000250", + "modified": "2019-06-11T14:16:37.386+0000", "name": "ELM", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z_0-9]+$", - "description": "Linear motifs are short, evolutionarily plastic components of regulatory proteins. Mainly focused on the eukaryotic sequences,the Eukaryotic Linear Motif resource (ELM) is a database of curated motif classes and instances.", - "created": "2019-06-11T14:16:37.386+0000", - "modified": "2019-06-11T14:16:37.386+0000", + "prefix": "elm", "resources": [ { - "id": 744, - "mirId": "MIR:00100321", - "urlPattern": "http://elm.eu.org/elms/elmPages/{$id}.html", - "name": "ELM at EMBL (Germany)", + "deprecated": false, + "deprecationDate": null, "description": "ELM at EMBL (Germany)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "CLV_MEL_PAP_1", - "resourceHomeUrl": "http://elm.eu.org/", + "id": 744, "institution": { - "id": 743, - "name": "Structural and Computational Biology, European Molecular Biology Laboratory, Heidelberg", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 743, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Structural and Computational Biology, European Molecular Biology Laboratory, Heidelberg", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100321", + "name": "ELM at EMBL (Germany)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://elm.eu.org/", + "sampleId": "CLV_MEL_PAP_1", + "urlPattern": "http://elm.eu.org/elms/elmPages/{$id}.html" } ], - "sampleId": "CLV_MEL_PAP_1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CLV_MEL_PAP_1" }, { + "created": "2019-06-11T14:16:37.622+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MimoDB is a database collecting peptides that have been selected from random peptide libraries based on their ability to bind small compounds, nucleic acids, proteins, cells, tissues and organs. It also stores other information such as the corresponding target, template, library, and structures. As of March 2016, this database was renamed Biopanning Data Bank.", "id": 745, - "prefix": "mimodb", "mirId": "MIR:00000251", + "modified": "2019-06-11T14:16:37.622+0000", "name": "MimoDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "MimoDB is a database collecting peptides that have been selected from random peptide libraries based on their ability to bind small compounds, nucleic acids, proteins, cells, tissues and organs. It also stores other information such as the corresponding target, template, library, and structures. As of March 2016, this database was renamed Biopanning Data Bank.", - "created": "2019-06-11T14:16:37.622+0000", - "modified": "2019-06-11T14:16:37.622+0000", + "prefix": "mimodb", "resources": [ { - "id": 747, - "mirId": "MIR:00100322", - "urlPattern": "http://immunet.cn/bdb/index.php/mimoset/{$id}", - "name": "BDB at University of Electronic Science and Technology of China", + "deprecated": false, + "deprecationDate": null, "description": "BDB at University of Electronic Science and Technology of China", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1", - "resourceHomeUrl": "http://immunet.cn/bdb/", + "id": 747, "institution": { - "id": 746, - "name": "Key Laboratory for Neuroinformation of Ministry of Education, University of Electronic Science and Technology of China, Sichuan", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 746, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "Key Laboratory for Neuroinformation of Ministry of Education, University of Electronic Science and Technology of China, Sichuan", + "rorId": null }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100322", + "name": "BDB at University of Electronic Science and Technology of China", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://immunet.cn/bdb/", + "sampleId": "1", + "urlPattern": "http://immunet.cn/bdb/index.php/mimoset/{$id}" } ], - "sampleId": "1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1" }, { + "created": "2019-06-11T14:16:37.867+0000", + "deprecated": false, + "deprecationDate": null, + "description": "SitEx is a database containing information on eukaryotic protein functional sites. It stores the amino acid sequence positions in the functional site, in relation to the exon structure of encoding gene This can be used to detect the exons involved in shuffling in protein evolution, or to design protein-engineering experiments.", "id": 748, - "prefix": "sitex", "mirId": "MIR:00000252", + "modified": "2019-06-11T14:16:37.867+0000", "name": "SitEx", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "SitEx is a database containing information on eukaryotic protein functional sites. It stores the amino acid sequence positions in the functional site, in relation to the exon structure of encoding gene This can be used to detect the exons involved in shuffling in protein evolution, or to design protein-engineering experiments.", - "created": "2019-06-11T14:16:37.867+0000", - "modified": "2019-06-11T14:16:37.867+0000", + "prefix": "sitex", "resources": [ { - "id": 750, - "mirId": "MIR:00100323", - "urlPattern": "http://www-bionet.sscc.ru/sitex/index.php?siteid={$id}", - "name": "SitEx at Novosibirsk State University", + "deprecated": false, + "deprecationDate": null, "description": "SitEx at Novosibirsk State University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1000", - "resourceHomeUrl": "http://www-bionet.sscc.ru/sitex/", + "id": 750, "institution": { - "id": 749, - "name": "Novosibirsk State University, Novosibirsk", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 749, "location": { "countryCode": "RU", "countryName": "Russian Federation" - } + }, + "name": "Novosibirsk State University, Novosibirsk", + "rorId": null }, "location": { "countryCode": "RU", "countryName": "Russian Federation" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100323", + "name": "SitEx at Novosibirsk State University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www-bionet.sscc.ru/sitex/", + "sampleId": "1000", + "urlPattern": "http://www-bionet.sscc.ru/sitex/index.php?siteid={$id}" } ], - "sampleId": "1000", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1000" }, { + "created": "2019-06-11T14:16:38.105+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The bacterial tyrosine kinase database (BYKdb) that collects sequences of putative and authentic bacterial tyrosine kinases, providing structural and functional information.", "id": 751, - "prefix": "bykdb", "mirId": "MIR:00000253", + "modified": "2019-06-11T14:16:38.105+0000", "name": "BYKdb", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z0-9]+$", - "description": "The bacterial tyrosine kinase database (BYKdb) that collects sequences of putative and authentic bacterial tyrosine kinases, providing structural and functional information.", - "created": "2019-06-11T14:16:38.105+0000", - "modified": "2019-06-11T14:16:38.105+0000", + "prefix": "bykdb", "resources": [ { - "id": 753, - "mirId": "MIR:00100324", - "urlPattern": "https://bykdb.ibcp.fr/data/html/annotated/{$id}.html", - "name": "BYKdb at CNRS", + "deprecated": false, + "deprecationDate": null, "description": "BYKdb at CNRS", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "A0A009E7X8", - "resourceHomeUrl": "https://bykdb.ibcp.fr/BYKdb/", + "id": 753, "institution": { - "id": 752, - "name": "Unité Bases Moléculaires et Structurales des Systèmes Infectieux; CNRS - Université Claude Bernard, Lyon", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 752, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Unit\u00e9 Bases Mol\u00e9culaires et Structurales des Syst\u00e8mes Infectieux; CNRS - Universit\u00e9 Claude Bernard, Lyon", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100324", + "name": "BYKdb at CNRS", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://bykdb.ibcp.fr/BYKdb/", + "sampleId": "A0A009E7X8", + "urlPattern": "https://bykdb.ibcp.fr/data/html/annotated/{$id}.html" } ], - "sampleId": "A0A009E7X8", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "A0A009E7X8" }, { + "created": "2019-06-11T14:16:38.340+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ConoServer is a database specialized in the sequence and structures of conopeptides, which are peptides expressed by carnivorous marine cone snails.", "id": 754, - "prefix": "conoserver", "mirId": "MIR:00000254", + "modified": "2019-06-11T14:16:38.340+0000", "name": "Conoserver", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "ConoServer is a database specialized in the sequence and structures of conopeptides, which are peptides expressed by carnivorous marine cone snails.", - "created": "2019-06-11T14:16:38.340+0000", - "modified": "2019-06-11T14:16:38.340+0000", + "prefix": "conoserver", "resources": [ { - "id": 755, - "mirId": "MIR:00100325", - "urlPattern": "http://www.conoserver.org/?page=card&table=protein&id={$id}", - "name": "ConoServer at University of Queensland", + "deprecated": false, + "deprecationDate": null, "description": "ConoServer at University of Queensland", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2639", - "resourceHomeUrl": "http://www.conoserver.org/", + "id": 755, "institution": { - "id": 582, - "name": "Institute for Molecular Bioscience, The University of Queensland, Brisbane", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 582, "location": { "countryCode": "AU", "countryName": "Australia" - } + }, + "name": "Institute for Molecular Bioscience, The University of Queensland, Brisbane", + "rorId": null }, "location": { "countryCode": "AU", "countryName": "Australia" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100325", + "name": "ConoServer at University of Queensland", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.conoserver.org/", + "sampleId": "2639", + "urlPattern": "http://www.conoserver.org/?page=card&table=protein&id={$id}" } ], - "sampleId": "2639", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2639" }, { + "created": "2019-06-11T14:16:38.521+0000", + "deprecated": false, + "deprecationDate": null, + "description": "TopFIND is a database of protein termini, terminus modifications and their proteolytic processing in the species: Homo sapiens, Mus musculus, Arabidopsis thaliana, Saccharomyces cerevisiae and Escherichia coli.", "id": 756, - "prefix": "topfind", "mirId": "MIR:00000255", + "modified": "2019-06-11T14:16:38.521+0000", "name": "TopFind", + "namespaceEmbeddedInLui": false, "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])$", - "description": "TopFIND is a database of protein termini, terminus modifications and their proteolytic processing in the species: Homo sapiens, Mus musculus, Arabidopsis thaliana, Saccharomyces cerevisiae and Escherichia coli.", - "created": "2019-06-11T14:16:38.521+0000", - "modified": "2019-06-11T14:16:38.521+0000", + "prefix": "topfind", "resources": [ { - "id": 758, - "mirId": "MIR:00100326", - "urlPattern": "http://clipserve.clip.ubc.ca/topfind/proteins/{$id}", - "name": "TopFind at University of British Columbia", + "deprecated": false, + "deprecationDate": null, "description": "TopFind at University of British Columbia", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Q9UKQ2", - "resourceHomeUrl": "http://clipserve.clip.ubc.ca/topfind", + "id": 758, "institution": { - "id": 757, - "name": "Department of Oral Biological and Medical Sciences, University of British Columbia, Vancouver", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 757, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "Department of Oral Biological and Medical Sciences, University of British Columbia, Vancouver", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100326", + "name": "TopFind at University of British Columbia", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://clipserve.clip.ubc.ca/topfind", + "sampleId": "Q9UKQ2", + "urlPattern": "http://clipserve.clip.ubc.ca/topfind/proteins/{$id}" } ], - "sampleId": "Q9UKQ2", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Q9UKQ2" }, { + "created": "2019-06-11T14:16:38.756+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MIPModDb is a database of comparative protein structure models of MIP (Major Intrinsic Protein) family of proteins, identified from complete genome sequence. It provides key information of MIPs based on their sequence and structures.", "id": 759, - "prefix": "mipmod", "mirId": "MIR:00000256", + "modified": "2019-06-11T14:16:38.756+0000", "name": "MIPModDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "MIPModDb is a database of comparative protein structure models of MIP (Major Intrinsic Protein) family of proteins, identified from complete genome sequence. It provides key information of MIPs based on their sequence and structures.", - "created": "2019-06-11T14:16:38.756+0000", - "modified": "2019-06-11T14:16:38.756+0000", + "prefix": "mipmod", "resources": [ { - "id": 761, - "mirId": "MIR:00100327", - "urlPattern": "http://bioinfo.iitk.ac.in/MIPModDB/result.php?code={$id}", - "name": "MIPModDB at Indian Institute of Technology Kanpur", + "deprecated": false, + "deprecationDate": null, "description": "MIPModDB at Indian Institute of Technology Kanpur", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "HOSAPI0399", - "resourceHomeUrl": "http://bioinfo.iitk.ac.in/MIPModDB", + "id": 761, "institution": { - "id": 760, - "name": "Department of Biological Sciences and Bioengineering, Indian Institute of Technology Kanpur, Kanpur", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 760, "location": { "countryCode": "IN", "countryName": "India" - } + }, + "name": "Department of Biological Sciences and Bioengineering, Indian Institute of Technology Kanpur, Kanpur", + "rorId": null }, "location": { "countryCode": "IN", "countryName": "India" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100327", + "name": "MIPModDB at Indian Institute of Technology Kanpur", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bioinfo.iitk.ac.in/MIPModDB", + "sampleId": "HOSAPI0399", + "urlPattern": "http://bioinfo.iitk.ac.in/MIPModDB/result.php?code={$id}" } ], - "sampleId": "HOSAPI0399", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "HOSAPI0399" }, { + "created": "2019-06-11T14:16:38.984+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Cell: An Image Library\u2122 is a freely accessible, public repository of reviewed and annotated images, videos, and animations of cells from a variety of organisms, showcasing cell architecture, intracellular functionalities, and both normal and abnormal processes.", "id": 762, - "prefix": "cellimage", "mirId": "MIR:00000257", + "modified": "2019-06-11T14:16:38.984+0000", "name": "Cell Image Library", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Cell: An Image Library™ is a freely accessible, public repository of reviewed and annotated images, videos, and animations of cells from a variety of organisms, showcasing cell architecture, intracellular functionalities, and both normal and abnormal processes.", - "created": "2019-06-11T14:16:38.984+0000", - "modified": "2019-06-11T14:16:38.984+0000", + "prefix": "cellimage", "resources": [ { - "id": 764, - "mirId": "MIR:00100328", - "urlPattern": "http://cellimagelibrary.org/images/{$id}", - "name": "Cell Image Library at American Society for Cell Biology", + "deprecated": false, + "deprecationDate": null, "description": "Cell Image Library at American Society for Cell Biology", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "24801", - "resourceHomeUrl": "http://cellimagelibrary.org/", + "id": 764, "institution": { - "id": 763, - "name": "National Center for Microscopy and Imaging Research", - "homeUrl": "https://ncmir.ucsd.edu", "description": "The mission of NCMIR is to develop technologies to bridge understanding of biological systems between the gross anatomical and molecular scales and to make these technologies broadly available to biomedical researchers. NCMIR provides expertise, infrastructure, technological development, and an environment in which new information about the 3D ultrastructure of tissues, cells, and macromolecular complexes may be accurately and easily obtained and analyzed.", - "rorId": null, + "homeUrl": "https://ncmir.ucsd.edu", + "id": 763, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Microscopy and Imaging Research", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100328", + "name": "Cell Image Library at American Society for Cell Biology", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://cellimagelibrary.org/", + "sampleId": "24801", + "urlPattern": "http://cellimagelibrary.org/images/{$id}" } ], - "sampleId": "24801", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "24801" }, { + "created": "2019-06-11T14:16:39.210+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The 'COmputational Modeling in BIology' NEtwork (COMBINE) is an initiative to coordinate the development of the various community standards and formats for computational models, initially in Systems Biology and related fields. This collection pertains to specifications of the standard formats developed by the Computational Modeling in Biology Network.", "id": 765, - "prefix": "combine.specifications", "mirId": "MIR:00000258", + "modified": "2019-06-11T14:16:39.210+0000", "name": "COMBINE specifications", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+(\\-|\\.|\\w)*$", - "description": "The 'COmputational Modeling in BIology' NEtwork (COMBINE) is an initiative to coordinate the development of the various community standards and formats for computational models, initially in Systems Biology and related fields. This collection pertains to specifications of the standard formats developed by the Computational Modeling in Biology Network.", - "created": "2019-06-11T14:16:39.210+0000", - "modified": "2019-06-11T14:16:39.210+0000", + "prefix": "combine.specifications", "resources": [ { - "id": 766, - "mirId": "MIR:00100329", - "urlPattern": "https://co.mbine.org/specifications/{$id}", - "name": "COMBINE at EBI", + "deprecated": false, + "deprecationDate": null, "description": "COMBINE at EBI", - "official": false, - "providerCode": "ebi", - "sampleId": "sbgn.er.level-1.version-1.2", - "resourceHomeUrl": "https://co.mbine.org/standards/", + "id": 766, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100329", + "name": "COMBINE at EBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://co.mbine.org/standards/", + "sampleId": "sbgn.er.level-1.version-1.2", + "urlPattern": "https://co.mbine.org/specifications/{$id}" } ], - "sampleId": "sbgn.er.level-1.version-1.2", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "sbgn.er.level-1.version-1.2" }, { + "created": "2019-06-11T14:16:39.396+0000", + "deprecated": false, + "deprecationDate": null, + "description": "CABRI (Common Access to Biotechnological Resources and Information) is an online service where users can search a number of European Biological Resource Centre catalogues. It lists the availability of a particular organism or genetic resource and defines the set of technical specifications and procedures which should be used to handle it.", "id": 767, - "prefix": "cabri", "mirId": "MIR:00000261", + "modified": "2019-06-11T14:16:39.396+0000", "name": "CABRI", + "namespaceEmbeddedInLui": false, "pattern": "^([A-Za-z]+)?(\\_)?([A-Za-z-]+)\\:([A-Za-z0-9 ]+)$", - "description": "CABRI (Common Access to Biotechnological Resources and Information) is an online service where users can search a number of European Biological Resource Centre catalogues. It lists the availability of a particular organism or genetic resource and defines the set of technical specifications and procedures which should be used to handle it.", - "created": "2019-06-11T14:16:39.396+0000", - "modified": "2019-06-11T14:16:39.396+0000", + "prefix": "cabri", "resources": [ { - "id": 769, - "mirId": "MIR:00100334", - "urlPattern": "http://www.cabri.org/CABRI/srs-bin/wgetz?-e+-page+EntryPage+[{$id}]", - "name": "CABRI Cell Lines catalogue in Genova (SRS)", + "deprecated": false, + "deprecationDate": null, "description": "CABRI Cell Lines catalogue in Genova (SRS)", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "dsmz_mutz-id:ACC 291", - "resourceHomeUrl": "http://www.cabri.org/", + "id": 769, "institution": { - "id": 768, - "name": "National Cancer Research Institute of Genova, Genova", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 768, "location": { "countryCode": "IT", "countryName": "Italy" - } + }, + "name": "National Cancer Research Institute of Genova, Genova", + "rorId": null }, "location": { "countryCode": "IT", "countryName": "Italy" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100334", + "name": "CABRI Cell Lines catalogue in Genova (SRS)", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.cabri.org/", + "sampleId": "dsmz_mutz-id:ACC 291", + "urlPattern": "http://www.cabri.org/CABRI/srs-bin/wgetz?-e+-page+EntryPage+[{$id}]" }, { - "id": 771, - "mirId": "MIR:00100335", - "urlPattern": "http://www.be.cabri.org/CABRI/srs-bin/wgetz?-e+-page+EntryPage+[{$id}]", - "name": "CABRI Cell Lines catalogue in Brussels (SRS)", + "deprecated": false, + "deprecationDate": null, "description": "CABRI Cell Lines catalogue in Brussels (SRS)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "dsmz_mutz-id:ACC 291", - "resourceHomeUrl": "http://www.be.cabri.org/", + "id": 771, "institution": { - "id": 770, - "name": "BCCM", - "homeUrl": "http://bccm.belspo.be/", "description": "he BCCM consortium has grown to become one of the most important culture collections in the world, both in terms of the size and quality of the collections (bacteria, yeasts, moulds, plasmids, diatoms, DNA libraries) and its expertise. Not only does the consortium keep more than 200,000 quality controlled, characterised and documented units of biological material, but it also offers its expertise through services and partnership projects.", - "rorId": null, + "homeUrl": "http://bccm.belspo.be/", + "id": 770, "location": { "countryCode": "BE", "countryName": "Belgium" - } + }, + "name": "BCCM", + "rorId": null }, "location": { "countryCode": "BE", "countryName": "Belgium" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100335", + "name": "CABRI Cell Lines catalogue in Brussels (SRS)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.be.cabri.org/", + "sampleId": "dsmz_mutz-id:ACC 291", + "urlPattern": "http://www.be.cabri.org/CABRI/srs-bin/wgetz?-e+-page+EntryPage+[{$id}]" } ], - "sampleId": "dsmz_mutz-id:ACC 291", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "dsmz_mutz-id:ACC 291" }, { + "created": "2019-06-11T14:16:39.763+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Human Unidentified Gene-Encoded (HUGE) protein database contains results from sequence analysis of human novel large (>4 kb) cDNAs identified in the Kazusa cDNA sequencing project.", "id": 772, - "prefix": "huge", "mirId": "MIR:00000263", + "modified": "2019-06-11T14:16:39.763+0000", "name": "HUGE", + "namespaceEmbeddedInLui": false, "pattern": "^KIAA\\d{4}$", - "description": "The Human Unidentified Gene-Encoded (HUGE) protein database contains results from sequence analysis of human novel large (>4 kb) cDNAs identified in the Kazusa cDNA sequencing project.", - "created": "2019-06-11T14:16:39.763+0000", - "modified": "2019-06-11T14:16:39.763+0000", + "prefix": "huge", "resources": [ { - "id": 774, - "mirId": "MIR:00100339", - "urlPattern": "http://www.kazusa.or.jp/huge/gfpage/{$id}/", - "name": "HUGE at Kazusa DNA Research Institute", + "deprecated": false, + "deprecationDate": null, "description": "HUGE at Kazusa DNA Research Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "KIAA0001", - "resourceHomeUrl": "http://www.kazusa.or.jp/huge/", + "id": 774, "institution": { - "id": 773, - "name": "Kazusa DNA Research Institute, Chiba", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 773, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Kazusa DNA Research Institute, Chiba", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100339", + "name": "HUGE at Kazusa DNA Research Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.kazusa.or.jp/huge/", + "sampleId": "KIAA0001", + "urlPattern": "http://www.kazusa.or.jp/huge/gfpage/{$id}/" } ], - "sampleId": "KIAA0001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "KIAA0001" }, { + "created": "2019-06-11T14:16:39.982+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BindingDB is the first public database of protein-small molecule affinity data.", "id": 775, - "prefix": "bindingdb", "mirId": "MIR:00000264", + "modified": "2019-06-11T14:16:39.982+0000", "name": "BindingDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\w\\d+$", - "description": "BindingDB is the first public database of protein-small molecule affinity data.", - "created": "2019-06-11T14:16:39.982+0000", - "modified": "2019-06-11T14:16:39.982+0000", + "prefix": "bindingdb", "resources": [ { - "id": 777, - "mirId": "MIR:00100340", - "urlPattern": "http://www.bindingdb.org/compact/{$id}", - "name": "BindingDB", + "deprecated": false, + "deprecationDate": null, "description": "BindingDB", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "e999", - "resourceHomeUrl": "https://www.bindingdb.org", + "id": 777, "institution": { - "id": 190, - "name": "University of California, San Diego", - "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", - "rorId": "https://ror.org/0168r3w48", + "homeUrl": "https://ucsd.edu/", + "id": 190, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of California, San Diego", + "rorId": "https://ror.org/0168r3w48" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100340", + "name": "BindingDB", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.bindingdb.org", + "sampleId": "e999", + "urlPattern": "http://www.bindingdb.org/compact/{$id}" } ], - "sampleId": "e999", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "e999" }, { + "created": "2019-06-11T14:16:45.247+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The dictyBase database provides data on the model organism Dictyostelium discoideum and related species. It contains the complete genome sequence, ESTs, gene models and functional annotations. This collection references gene information.", "id": 839, - "prefix": "dictybase.gene", "mirId": "MIR:00000286", + "modified": "2019-06-11T14:16:45.247+0000", "name": "Dictybase Gene", + "namespaceEmbeddedInLui": false, "pattern": "^DDB_G\\d+$", - "description": "The dictyBase database provides data on the model organism Dictyostelium discoideum and related species. It contains the complete genome sequence, ESTs, gene models and functional annotations. This collection references gene information.", - "created": "2019-06-11T14:16:45.247+0000", - "modified": "2019-06-11T14:16:45.247+0000", + "prefix": "dictybase.gene", "resources": [ { - "id": 841, - "mirId": "MIR:00100367", - "urlPattern": "http://dictybase.org/gene/{$id}", - "name": "Dictybase Gene at Northwestern University", + "deprecated": false, + "deprecationDate": null, "description": "Dictybase Gene at Northwestern University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "DDB_G0267522", - "resourceHomeUrl": "http://dictybase.org/", + "id": 841, "institution": { - "id": 840, - "name": "Northwestern University Biomedical Informatics Center and Center for Genetic Medicine, Chicago, Illinois", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 840, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Northwestern University Biomedical Informatics Center and Center for Genetic Medicine, Chicago, Illinois", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100367", + "name": "Dictybase Gene at Northwestern University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://dictybase.org/", + "sampleId": "DDB_G0267522", + "urlPattern": "http://dictybase.org/gene/{$id}" } ], - "sampleId": "DDB_G0267522", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "DDB_G0267522" }, { + "created": "2019-06-11T14:16:40.213+0000", + "deprecated": false, + "deprecationDate": null, + "description": "STRING (Search Tool for Retrieval of Interacting Genes/Proteins) is a database of known and predicted protein interactions.\r\nThe interactions include direct (physical) and indirect (functional) associations; they are derived from four sources:Genomic Context, High-throughput Experiments,(Conserved) Coexpression, Previous Knowledge. STRING quantitatively integrates interaction data from these sources for a large number of organisms, and transfers information between these organisms where applicable.", "id": 778, - "prefix": "string", "mirId": "MIR:00000265", + "modified": "2019-06-11T14:16:40.213+0000", "name": "STRING", + "namespaceEmbeddedInLui": false, "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])|([0-9][A-Za-z0-9]{3})$", - "description": "STRING (Search Tool for Retrieval of Interacting Genes/Proteins) is a database of known and predicted protein interactions.\r\nThe interactions include direct (physical) and indirect (functional) associations; they are derived from four sources:Genomic Context, High-throughput Experiments,(Conserved) Coexpression, Previous Knowledge. STRING quantitatively integrates interaction data from these sources for a large number of organisms, and transfers information between these organisms where applicable.", - "created": "2019-06-11T14:16:40.213+0000", - "modified": "2019-06-11T14:16:40.213+0000", + "prefix": "string", "resources": [ { - "id": 779, - "mirId": "MIR:00100341", - "urlPattern": "http://string.embl.de/interactions/{$id}", - "name": "STRING at Heidelberg", + "deprecated": false, + "deprecationDate": null, "description": "STRING at Heidelberg", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "P53350", - "resourceHomeUrl": "http://string.embl.de/", + "id": 779, "institution": { - "id": 605, - "name": "European Molecular Biology Laboratory, Heidelberg", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 605, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "European Molecular Biology Laboratory, Heidelberg", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 780, - "mirId": "MIR:00100342", - "urlPattern": "http://string-db.org/interactions/{$id}", - "name": "STRING Mirror at Heidelberg", - "description": "STRING Mirror at Heidelberg", + "mirId": "MIR:00100341", + "name": "STRING at Heidelberg", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://string.embl.de/", "sampleId": "P53350", - "resourceHomeUrl": "http://string-db.org/", + "urlPattern": "http://string.embl.de/interactions/{$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "STRING Mirror at Heidelberg", + "id": 780, "institution": { - "id": 605, - "name": "European Molecular Biology Laboratory, Heidelberg", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 605, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "European Molecular Biology Laboratory, Heidelberg", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100342", + "name": "STRING Mirror at Heidelberg", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://string-db.org/", + "sampleId": "P53350", + "urlPattern": "http://string-db.org/interactions/{$id}" } ], - "sampleId": "P53350", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "P53350" }, { + "created": "2019-06-11T14:16:40.524+0000", + "deprecated": false, + "deprecationDate": null, + "description": "STITCH is a resource to explore known and predicted interactions of chemicals and proteins. Chemicals are linked to other chemicals and proteins by evidence derived from experiments, databases and the literature.", "id": 781, - "prefix": "stitch", "mirId": "MIR:00000266", + "modified": "2019-06-11T14:16:40.524+0000", "name": "STITCH", + "namespaceEmbeddedInLui": false, "pattern": "^\\w{14}$", - "description": "STITCH is a resource to explore known and predicted interactions of chemicals and proteins. Chemicals are linked to other chemicals and proteins by evidence derived from experiments, databases and the literature.", - "created": "2019-06-11T14:16:40.524+0000", - "modified": "2019-06-11T14:16:40.524+0000", + "prefix": "stitch", "resources": [ { - "id": 782, - "mirId": "MIR:00100343", - "urlPattern": "http://stitch.embl.de/interactions/{$id}", - "name": "STITCH", + "deprecated": false, + "deprecationDate": null, "description": "STITCH", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "BQJCRHHNABKAKU", - "resourceHomeUrl": "http://stitch.embl.de/", + "id": 782, "institution": { - "id": 605, - "name": "European Molecular Biology Laboratory, Heidelberg", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 605, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "European Molecular Biology Laboratory, Heidelberg", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100343", + "name": "STITCH", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://stitch.embl.de/", + "sampleId": "BQJCRHHNABKAKU", + "urlPattern": "http://stitch.embl.de/interactions/{$id}" } ], - "sampleId": "BQJCRHHNABKAKU", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "BQJCRHHNABKAKU" }, { + "created": "2019-06-11T14:16:40.712+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The ATCvet system for the classification of veterinary medicines is based on the same overall principles as the ATC system for substances used in human medicine. In ATCvet systems, preparations are divided into groups, according to their therapeutic use. First, they are divided into 15 anatomical groups (1st level), classified as QA-QV in the ATCvet system, on the basis of their main therapeutic use.", "id": 783, - "prefix": "atcvet", "mirId": "MIR:00000267", + "modified": "2019-06-11T14:16:40.712+0000", "name": "Anatomical Therapeutic Chemical Vetinary", + "namespaceEmbeddedInLui": false, "pattern": "^Q[A-Z0-9]+$", - "description": "The ATCvet system for the classification of veterinary medicines is based on the same overall principles as the ATC system for substances used in human medicine. In ATCvet systems, preparations are divided into groups, according to their therapeutic use. First, they are divided into 15 anatomical groups (1st level), classified as QA-QV in the ATCvet system, on the basis of their main therapeutic use.", - "created": "2019-06-11T14:16:40.712+0000", - "modified": "2019-06-11T14:16:40.712+0000", + "prefix": "atcvet", "resources": [ { - "id": 784, - "mirId": "MIR:00100344", - "urlPattern": "http://www.whocc.no/atcvet/atcvet_index/?code={$id}", - "name": "Anatomical Therapeutic Chemical Vet Index at WHO", + "deprecated": false, + "deprecationDate": null, "description": "Anatomical Therapeutic Chemical Vet Index at WHO", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "QJ51RV02", - "resourceHomeUrl": "http://www.whocc.no/atcvet/atcvet_index/", + "id": 784, "institution": { - "id": 295, - "name": "World Health Organisation", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 295, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "World Health Organisation", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100344", + "name": "Anatomical Therapeutic Chemical Vet Index at WHO", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.whocc.no/atcvet/atcvet_index/", + "sampleId": "QJ51RV02", + "urlPattern": "http://www.whocc.no/atcvet/atcvet_index/?code={$id}" } ], - "sampleId": "QJ51RV02", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "QJ51RV02" }, { + "created": "2019-06-11T14:16:40.928+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Phenol-Explorer is an electronic database on polyphenol content in foods. Polyphenols form a wide group of natural antioxidants present in a large number of foods and beverages. They contribute to food characteristics such as taste, colour or shelf-life. They also participate in the prevention of several major chronic diseases such as cardiovascular diseases, diabetes, cancers, neurodegenerative diseases or osteoporosis.", "id": 785, - "prefix": "phenolexplorer", "mirId": "MIR:00000268", + "modified": "2019-06-11T14:16:40.928+0000", "name": "Phenol-Explorer", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Phenol-Explorer is an electronic database on polyphenol content in foods. Polyphenols form a wide group of natural antioxidants present in a large number of foods and beverages. They contribute to food characteristics such as taste, colour or shelf-life. They also participate in the prevention of several major chronic diseases such as cardiovascular diseases, diabetes, cancers, neurodegenerative diseases or osteoporosis.", - "created": "2019-06-11T14:16:40.928+0000", - "modified": "2019-06-11T14:16:40.928+0000", + "prefix": "phenolexplorer", "resources": [ { - "id": 787, - "mirId": "MIR:00100345", - "urlPattern": "http://phenol-explorer.eu/foods/{$id}", - "name": "Phenol-Explorer Database on Phenol content of foods", + "deprecated": false, + "deprecationDate": null, "description": "Phenol-Explorer Database on Phenol content of foods", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "75", - "resourceHomeUrl": "http://www.phenol-explorer.eu/foods/", + "id": 787, "institution": { - "id": 786, - "name": "INRA and University of Alberta", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 786, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "INRA and University of Alberta", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100345", + "name": "Phenol-Explorer Database on Phenol content of foods", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.phenol-explorer.eu/foods/", + "sampleId": "75", + "urlPattern": "http://phenol-explorer.eu/foods/{$id}" } ], - "sampleId": "75", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "75" }, { + "created": "2019-06-11T14:16:41.184+0000", + "deprecated": false, + "deprecationDate": null, + "description": "SNOMED CT (Systematized Nomenclature of Medicine -- Clinical Terms), is a systematically organized computer processable collection of medical terminology covering most areas of clinical information such as diseases, findings, procedures, microorganisms, pharmaceuticals, etc.", "id": 788, - "prefix": "snomedct", "mirId": "MIR:00000269", + "modified": "2019-06-11T14:16:41.184+0000", "name": "SNOMED CT", + "namespaceEmbeddedInLui": false, "pattern": "^(\\w+)?\\d+$", - "description": "SNOMED CT (Systematized Nomenclature of Medicine -- Clinical Terms), is a systematically organized computer processable collection of medical terminology covering most areas of clinical information such as diseases, findings, procedures, microorganisms, pharmaceuticals, etc.", - "created": "2019-06-11T14:16:41.184+0000", - "modified": "2019-06-11T14:16:41.184+0000", + "prefix": "snomedct", "resources": [ { - "id": 790, - "mirId": "MIR:00100405", - "urlPattern": "http://www.snomedbrowser.com/Codes/Details/{$id}", - "name": "SNOMED-CT at The National Pathology Exchange", + "deprecated": false, + "deprecationDate": null, "description": "SNOMED-CT at The National Pathology Exchange", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "284196006", - "resourceHomeUrl": "http://www.snomedbrowser.com/", + "id": 790, "institution": { - "id": 789, - "name": "The Health Informatics Service, NHS, West Yorkshire", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 789, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "The Health Informatics Service, NHS, West Yorkshire", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100405", + "name": "SNOMED-CT at The National Pathology Exchange", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.snomedbrowser.com/", + "sampleId": "284196006", + "urlPattern": "http://www.snomedbrowser.com/Codes/Details/{$id}" } ], - "sampleId": "284196006", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "284196006" }, { + "created": "2019-06-11T14:16:41.417+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MeSH (Medical Subject Headings) is the National Library of Medicine's controlled vocabulary thesaurus. It consists of sets of terms naming descriptors in a hierarchical structure that permits searching at various levels of specificity. This thesaurus is used by NLM for indexing articles from biomedical journals, cataloging of books, documents, etc. This collection references MeSH terms published in 2012.", "id": 791, - "prefix": "mesh.2012", "mirId": "MIR:00000270", + "modified": "2019-06-11T14:16:41.417+0000", "name": "MeSH 2012", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9]+$", - "description": "MeSH (Medical Subject Headings) is the National Library of Medicine's controlled vocabulary thesaurus. It consists of sets of terms naming descriptors in a hierarchical structure that permits searching at various levels of specificity. This thesaurus is used by NLM for indexing articles from biomedical journals, cataloging of books, documents, etc. This collection references MeSH terms published in 2012.", - "created": "2019-06-11T14:16:41.417+0000", - "modified": "2019-06-11T14:16:41.417+0000", + "prefix": "mesh.2012", "resources": [ { - "id": 793, - "mirId": "MIR:00100349", - "urlPattern": "http://www.nlm.nih.gov/cgi/mesh/2012/MB_cgi?mode=&index={$id}&view=expanded", - "name": "MeSH at National Library of Medicine", + "deprecated": false, + "deprecationDate": null, "description": "MeSH at National Library of Medicine", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "17186", - "resourceHomeUrl": "http://www.nlm.nih.gov/mesh/", + "id": 793, "institution": { - "id": 792, - "name": "U.S. National Library of Medicine, National Institute of Health, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 792, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "U.S. National Library of Medicine, National Institute of Health, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100349", + "name": "MeSH at National Library of Medicine", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.nlm.nih.gov/mesh/", + "sampleId": "17186", + "urlPattern": "http://www.nlm.nih.gov/cgi/mesh/2012/MB_cgi?mode=&index={$id}&view=expanded" } ], - "sampleId": "17186", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "17186" }, { + "created": "2019-06-11T14:16:41.852+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Canadian Drug Product Database (DPD) contains product specific information on drugs approved for use in Canada, and includes human pharmaceutical and biological drugs, veterinary drugs and disinfectant products. This information includes 'brand name', 'route of administration' and a Canadian 'Drug Identification Number' (DIN).", "id": 797, - "prefix": "cdpd", "mirId": "MIR:00000272", + "modified": "2019-06-11T14:16:41.852+0000", "name": "Canadian Drug Product Database", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Canadian Drug Product Database (DPD) contains product specific information on drugs approved for use in Canada, and includes human pharmaceutical and biological drugs, veterinary drugs and disinfectant products. This information includes 'brand name', 'route of administration' and a Canadian 'Drug Identification Number' (DIN).", - "created": "2019-06-11T14:16:41.852+0000", - "modified": "2019-06-11T14:16:41.852+0000", + "prefix": "cdpd", "resources": [ { - "id": 799, - "mirId": "MIR:00100351", - "urlPattern": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/info.do?lang=eng&code={$id}", - "name": "Canadian Drug Identification Number at Health Canada", + "deprecated": false, + "deprecationDate": null, "description": "Canadian Drug Identification Number at Health Canada", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "63250", - "resourceHomeUrl": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/index-eng.jsp", + "id": 799, "institution": { - "id": 798, - "name": "Health Canada, Ottawa, Ontario", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 798, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "Health Canada, Ottawa, Ontario", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100351", + "name": "Canadian Drug Identification Number at Health Canada", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/index-eng.jsp", + "sampleId": "63250", + "urlPattern": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/info.do?lang=eng&code={$id}" } ], - "sampleId": "63250", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "63250" }, { + "created": "2019-06-11T14:16:42.071+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MassBank is a federated database of reference spectra from different instruments, including high-resolution mass spectra of small metabolites (<3000 Da).", "id": 800, - "prefix": "massbank", "mirId": "MIR:00000273", + "modified": "2019-06-11T14:16:42.071+0000", "name": "MassBank", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z]{2}[A-Z0-9][0-9]{5}$", - "description": "MassBank is a federated database of reference spectra from different instruments, including high-resolution mass spectra of small metabolites (<3000 Da).", - "created": "2019-06-11T14:16:42.071+0000", - "modified": "2019-06-11T14:16:42.071+0000", + "prefix": "massbank", "resources": [ { - "id": 802, - "mirId": "MIR:00100353", - "urlPattern": "http://www.massbank.jp/RecordDisplay?id={$id}", - "name": "MassBank in Japan", + "deprecated": false, + "deprecationDate": null, "description": "MassBank in Japan", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PB000166", - "resourceHomeUrl": "http://www.massbank.jp", + "id": 802, "institution": { - "id": 801, - "name": "The MassBank Consortium", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 801, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "The MassBank Consortium", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100353", + "name": "MassBank in Japan", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.massbank.jp", + "sampleId": "PB000166", + "urlPattern": "http://www.massbank.jp/RecordDisplay?id={$id}" }, { - "id": 804, - "mirId": "MIR:00100666", - "urlPattern": "https://massbank.eu/MassBank/RecordDisplay?id={$id}", - "name": "MassBank in Europe", + "deprecated": false, + "deprecationDate": null, "description": "MassBank in Europe", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PB000166", - "resourceHomeUrl": "https://massbank.eu/", + "id": 804, "institution": { - "id": 803, - "name": "NORMAN Network and The MassBank Consortium", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 803, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "NORMAN Network and The MassBank Consortium", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100666", + "name": "MassBank in Europe", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://massbank.eu/", + "sampleId": "PB000166", + "urlPattern": "https://massbank.eu/MassBank/RecordDisplay?id={$id}" } ], - "sampleId": "PB000166", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PB000166" }, { + "created": "2019-06-11T14:16:42.514+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. This collection references metabolite information, relating the biologically active substance to metabolic pathways or signalling phenomena.", "id": 805, - "prefix": "gmd", "mirId": "MIR:00000274", + "modified": "2019-06-11T14:16:42.514+0000", "name": "Golm Metabolome Database", + "namespaceEmbeddedInLui": false, "pattern": "^([0-9a-fA-F]){8}(-([0-9a-fA-F]){4}){3}-([0-9a-fA-F]){12}$", - "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. This collection references metabolite information, relating the biologically active substance to metabolic pathways or signalling phenomena.", - "created": "2019-06-11T14:16:42.514+0000", - "modified": "2019-06-11T14:16:42.514+0000", + "prefix": "gmd", "resources": [ { - "id": 807, - "mirId": "MIR:00100354", - "urlPattern": "http://gmd.mpimp-golm.mpg.de/Metabolites/{$id}.aspx", - "name": "Golm Metabolome Database at Max Planck Institute of Molecular Plant Physiology", + "deprecated": false, + "deprecationDate": null, "description": "Golm Metabolome Database at Max Planck Institute of Molecular Plant Physiology", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "68513255-fc44-4041-bc4b-4fd2fae7541d", - "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", + "id": 807, "institution": { - "id": 806, - "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 806, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100354", + "name": "Golm Metabolome Database at Max Planck Institute of Molecular Plant Physiology", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", + "sampleId": "68513255-fc44-4041-bc4b-4fd2fae7541d", + "urlPattern": "http://gmd.mpimp-golm.mpg.de/Metabolites/{$id}.aspx" } ], - "sampleId": "68513255-fc44-4041-bc4b-4fd2fae7541d", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "68513255-fc44-4041-bc4b-4fd2fae7541d" }, { + "created": "2019-06-11T14:16:42.733+0000", + "deprecated": false, + "deprecationDate": null, + "description": "HomoloGene is a system for automated detection of homologs among the annotated genes of several completely sequenced eukaryotic genomes.", "id": 808, - "prefix": "homologene", "mirId": "MIR:00000275", + "modified": "2019-06-11T14:16:42.733+0000", "name": "HomoloGene", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "HomoloGene is a system for automated detection of homologs among the annotated genes of several completely sequenced eukaryotic genomes.", - "created": "2019-06-11T14:16:42.733+0000", - "modified": "2019-06-11T14:16:42.733+0000", + "prefix": "homologene", "resources": [ { - "id": 809, - "mirId": "MIR:00100355", - "urlPattern": "https://www.ncbi.nlm.nih.gov/homologene/{$id}", - "name": "Homologene at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "Homologene at NCBI", - "official": true, - "providerCode": "ncbi", - "sampleId": "1000", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/homologene/", + "id": 809, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100355", + "name": "Homologene at NCBI", + "official": true, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/homologene/", + "sampleId": "1000", + "urlPattern": "https://www.ncbi.nlm.nih.gov/homologene/{$id}" }, { - "id": 810, - "mirId": "MIR:00100699", - "urlPattern": "http://homologene.bio2rdf.org/describe/?url=http://bio2rdf.org/homologene:{$id}", - "name": "Bio2RDF", + "deprecated": false, + "deprecationDate": null, "description": "Bio2RDF", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1000", - "resourceHomeUrl": "http://homologene.bio2rdf.org/fct", + "id": 810, "institution": { - "id": 33, - "name": "Bio2RDF.org", - "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", - "rorId": null, + "homeUrl": "https://bio2rdf.org", + "id": 33, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Bio2RDF.org", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100699", + "name": "Bio2RDF", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://homologene.bio2rdf.org/fct", + "sampleId": "1000", + "urlPattern": "http://homologene.bio2rdf.org/describe/?url=http://bio2rdf.org/homologene:{$id}" } ], - "sampleId": "1000", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1000" }, { + "created": "2019-06-11T14:16:42.994+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the UM-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. This collection refers to compound information.", "id": 811, - "prefix": "umbbd.compound", "mirId": "MIR:00000276", + "modified": "2019-06-11T14:16:42.994+0000", "name": "UM-BBD Compound", + "namespaceEmbeddedInLui": false, "pattern": "^c\\d+$", - "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the UM-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. This collection refers to compound information.", - "created": "2019-06-11T14:16:42.994+0000", - "modified": "2019-06-11T14:16:42.994+0000", + "prefix": "umbbd.compound", "resources": [ { - "id": 813, - "mirId": "MIR:00100357", - "urlPattern": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=c&compID={$id}", - "name": "Biocatalysis/Biodegradation Database Mirror (Compound) at ETH Zurich", + "deprecated": false, + "deprecationDate": null, "description": "Biocatalysis/Biodegradation Database Mirror (Compound) at ETH Zurich", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "c0001", - "resourceHomeUrl": "http://umbbd.ethz.ch/", + "id": 813, "institution": { - "id": 812, - "name": "ETH, Zurich", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 812, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "ETH, Zurich", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100357", + "name": "Biocatalysis/Biodegradation Database Mirror (Compound) at ETH Zurich", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://umbbd.ethz.ch/", + "sampleId": "c0001", + "urlPattern": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=c&compID={$id}" } ], - "sampleId": "c0001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "c0001" }, { + "created": "2019-06-11T14:16:43.224+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The database of Annotated regulatory Binding Sites (from orthologous promoters), ABS, is a public database of known binding sites identified in promoters of orthologous vertebrate genes that have been manually curated from bibliography.", "id": 814, - "prefix": "abs", "mirId": "MIR:00000277", + "modified": "2019-06-11T14:16:43.224+0000", "name": "ABS", + "namespaceEmbeddedInLui": false, "pattern": "^A\\d+$", - "description": "The database of Annotated regulatory Binding Sites (from orthologous promoters), ABS, is a public database of known binding sites identified in promoters of orthologous vertebrate genes that have been manually curated from bibliography.", - "created": "2019-06-11T14:16:43.224+0000", - "modified": "2019-06-11T14:16:43.224+0000", + "prefix": "abs", "resources": [ { - "id": 816, - "mirId": "MIR:00100358", - "urlPattern": "http://genome.crg.es/datasets/abs2005/entries/{$id}.html", - "name": "ABS at IMIM", + "deprecated": false, + "deprecationDate": null, "description": "ABS at IMIM", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "A0014", - "resourceHomeUrl": "http://genome.crg.es/datasets/abs2005/", + "id": 816, "institution": { - "id": 815, - "name": "Institut Municipal d'Investigació Mèdica, Barcelona", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 815, "location": { "countryCode": "ES", "countryName": "Spain" - } + }, + "name": "Institut Municipal d'Investigació Mèdica, Barcelona", + "rorId": null }, "location": { "countryCode": "ES", "countryName": "Spain" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100358", + "name": "ABS at IMIM", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://genome.crg.es/datasets/abs2005/", + "sampleId": "A0014", + "urlPattern": "http://genome.crg.es/datasets/abs2005/entries/{$id}.html" } ], - "sampleId": "A0014", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "A0014" }, { + "created": "2019-06-11T14:16:43.451+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The antimicrobial peptide database (APD) provides information on anticancer, antiviral, antifungal and antibacterial peptides.", "id": 817, - "prefix": "apd", "mirId": "MIR:00000278", + "modified": "2019-06-11T14:16:43.451+0000", "name": "APD", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{5}$", - "description": "The antimicrobial peptide database (APD) provides information on anticancer, antiviral, antifungal and antibacterial peptides.", - "created": "2019-06-11T14:16:43.451+0000", - "modified": "2019-06-11T14:16:43.451+0000", + "prefix": "apd", "resources": [ { - "id": 819, - "mirId": "MIR:00100359", - "urlPattern": "http://aps.unmc.edu/AP/database/query_output.php?ID={$id}", - "name": "APD at Nebraska", + "deprecated": false, + "deprecationDate": null, "description": "APD at Nebraska", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "01001", - "resourceHomeUrl": "http://aps.unmc.edu/AP/", + "id": 819, "institution": { - "id": 818, - "name": "Eppley Institute for Research in Cancer and Allied Diseases, University of Nebraska Medical Center, Omaha", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 818, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Eppley Institute for Research in Cancer and Allied Diseases, University of Nebraska Medical Center, Omaha", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100359", + "name": "APD at Nebraska", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://aps.unmc.edu/AP/", + "sampleId": "01001", + "urlPattern": "http://aps.unmc.edu/AP/database/query_output.php?ID={$id}" } ], - "sampleId": "01001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "01001" }, { + "created": "2019-06-11T14:16:43.696+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ChemDB is a chemical database containing commercially available small molecules, important for use as synthetic building blocks, probes in systems biology and as leads for the discovery of drugs and other useful compounds.", "id": 820, - "prefix": "chemdb", "mirId": "MIR:00000279", + "modified": "2019-06-11T14:16:43.696+0000", "name": "ChemDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "ChemDB is a chemical database containing commercially available small molecules, important for use as synthetic building blocks, probes in systems biology and as leads for the discovery of drugs and other useful compounds.", - "created": "2019-06-11T14:16:43.696+0000", - "modified": "2019-06-11T14:16:43.696+0000", + "prefix": "chemdb", "resources": [ { - "id": 822, - "mirId": "MIR:00100360", - "urlPattern": "http://cdb.ics.uci.edu/cgibin/ChemicalDetailWeb.py?chemical_id={$id}", - "name": "ChemDB at UC Irvine", + "deprecated": false, + "deprecationDate": null, "description": "ChemDB at UC Irvine", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "3966782", - "resourceHomeUrl": "http://cdb.ics.uci.edu/", + "id": 822, "institution": { - "id": 821, - "name": "University of California, Irvine", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 821, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of California, Irvine", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100360", + "name": "ChemDB at UC Irvine", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://cdb.ics.uci.edu/", + "sampleId": "3966782", + "urlPattern": "http://cdb.ics.uci.edu/cgibin/ChemicalDetailWeb.py?chemical_id={$id}" } ], - "sampleId": "3966782", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "3966782" }, { + "created": "2019-06-11T14:16:43.916+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Description of Plant Viruses (DPV) provides information about viruses, viroids and satellites of plants, fungi and protozoa. It provides taxonomic information, including brief descriptions of each family and genus, and classified lists of virus sequences. The database also holds detailed information for all sequences of viruses, viroids and satellites of plants, fungi and protozoa that are complete or that contain at least one complete gene.", "id": 823, - "prefix": "dpv", "mirId": "MIR:00000280", + "modified": "2019-06-11T14:16:43.916+0000", "name": "DPV", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Description of Plant Viruses (DPV) provides information about viruses, viroids and satellites of plants, fungi and protozoa. It provides taxonomic information, including brief descriptions of each family and genus, and classified lists of virus sequences. The database also holds detailed information for all sequences of viruses, viroids and satellites of plants, fungi and protozoa that are complete or that contain at least one complete gene.", - "created": "2019-06-11T14:16:43.916+0000", - "modified": "2019-06-11T14:16:43.916+0000", + "prefix": "dpv", "resources": [ { - "id": 825, - "mirId": "MIR:00100361", - "urlPattern": "http://www.dpvweb.net/dpv/showdpv.php?dpvno={$id}", - "name": "DPV at Rothamsted", + "deprecated": false, + "deprecationDate": null, "description": "DPV at Rothamsted", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "100", - "resourceHomeUrl": "http://www.dpvweb.net/", + "id": 825, "institution": { - "id": 824, - "name": "Plant-Pathogen Interactions Division, Wheat Pathogenesis Programme, Rothamsted Research Harpenden, Hertfordshire", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 824, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Plant-Pathogen Interactions Division, Wheat Pathogenesis Programme, Rothamsted Research Harpenden, Hertfordshire", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100361", + "name": "DPV at Rothamsted", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.dpvweb.net/", + "sampleId": "100", + "urlPattern": "http://www.dpvweb.net/dpv/showdpv.php?dpvno={$id}" } ], - "sampleId": "100", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "100" }, { + "created": "2019-06-11T14:16:44.139+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The IUPHAR Compendium details the molecular, biophysical and pharmacological properties of identified mammalian sodium, calcium and potassium channels, as well as the related cyclic nucleotide-modulated ion channels and transient receptor potential channels. It includes information on nomenclature systems, and on inter and intra-species molecular structure variation. This collection references individual receptors or subunits.", "id": 826, - "prefix": "iuphar.receptor", "mirId": "MIR:00000281", + "modified": "2019-06-11T14:16:44.139+0000", "name": "IUPHAR receptor", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The IUPHAR Compendium details the molecular, biophysical and pharmacological properties of identified mammalian sodium, calcium and potassium channels, as well as the related cyclic nucleotide-modulated ion channels and transient receptor potential channels. It includes information on nomenclature systems, and on inter and intra-species molecular structure variation. This collection references individual receptors or subunits.", - "created": "2019-06-11T14:16:44.139+0000", - "modified": "2019-06-11T14:16:44.139+0000", + "prefix": "iuphar.receptor", "resources": [ { - "id": 828, - "mirId": "MIR:00100362", - "urlPattern": "http://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId={$id}", - "name": "IUPHAR Receptor at University of Edinburgh", + "deprecated": false, + "deprecationDate": null, "description": "IUPHAR Receptor at University of Edinburgh", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "101", - "resourceHomeUrl": "http://www.guidetopharmacology.org/targets.jsp", + "id": 828, "institution": { - "id": 827, - "name": "Centre for Cardiovascular Science, University of Edinburgh, Edinburgh", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 827, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Centre for Cardiovascular Science, University of Edinburgh, Edinburgh", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100362", + "name": "IUPHAR Receptor at University of Edinburgh", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.guidetopharmacology.org/targets.jsp", + "sampleId": "101", + "urlPattern": "http://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId={$id}" } ], - "sampleId": "101", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "101" }, { + "created": "2019-06-11T14:16:44.374+0000", + "deprecated": false, + "deprecationDate": null, + "description": "AceView provides a curated sequence representation of all public mRNA sequences (mRNAs from GenBank or RefSeq, and single pass cDNA sequences from dbEST and Trace). These are aligned on the genome and clustered into a minimal number of alternative transcript variants and grouped into genes. In addition, alternative features such as promoters, and expression in tissues is recorded. This collection references C. elegans genes and expression.", "id": 829, - "prefix": "aceview.worm", "mirId": "MIR:00000282", + "modified": "2019-06-11T14:16:44.374+0000", "name": "Aceview Worm", + "namespaceEmbeddedInLui": false, "pattern": "^[a-z0-9-]+$", - "description": "AceView provides a curated sequence representation of all public mRNA sequences (mRNAs from GenBank or RefSeq, and single pass cDNA sequences from dbEST and Trace). These are aligned on the genome and clustered into a minimal number of alternative transcript variants and grouped into genes. In addition, alternative features such as promoters, and expression in tissues is recorded. This collection references C. elegans genes and expression.", - "created": "2019-06-11T14:16:44.374+0000", - "modified": "2019-06-11T14:16:44.374+0000", + "prefix": "aceview.worm", "resources": [ { - "id": 830, - "mirId": "MIR:00100363", - "urlPattern": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/av.cgi?db=worm&c=Gene&l={$id}", - "name": "AceView Worm at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "AceView Worm at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "aap-1", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/index.html?worm", + "id": 830, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100363", + "name": "AceView Worm at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/index.html?worm", + "sampleId": "aap-1", + "urlPattern": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/av.cgi?db=worm&c=Gene&l={$id}" } ], - "sampleId": "aap-1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "aap-1" }, { + "created": "2019-06-11T14:16:45.469+0000", + "deprecated": false, + "deprecationDate": null, + "description": "IMGT, the international ImMunoGeneTics project, is a collection of high-quality integrated databases specialising in Immunoglobulins, T cell receptors and the Major Histocompatibility Complex (MHC) of all vertebrate species. IMGT/LIGM is a comprehensive database of fully annotated sequences of Immunoglobulins and T cell receptors from human and other vertebrates.", "id": 842, - "prefix": "imgt.ligm", "mirId": "MIR:00000287", + "modified": "2019-06-11T14:16:45.469+0000", "name": "IMGT LIGM", + "namespaceEmbeddedInLui": false, "pattern": "^M\\d+$", - "description": "IMGT, the international ImMunoGeneTics project, is a collection of high-quality integrated databases specialising in Immunoglobulins, T cell receptors and the Major Histocompatibility Complex (MHC) of all vertebrate species. IMGT/LIGM is a comprehensive database of fully annotated sequences of Immunoglobulins and T cell receptors from human and other vertebrates.", - "created": "2019-06-11T14:16:45.469+0000", - "modified": "2019-06-11T14:16:45.469+0000", + "prefix": "imgt.ligm", "resources": [ { - "id": 844, - "mirId": "MIR:00100369", - "urlPattern": "http://genius.embnet.dkfz-heidelberg.de/menu/cgi-bin/srs7.1.3.1/wgetz?-id+4ktAl1fNMTA+-e+[IMGT:'{$id}']", - "name": "IMGT LIGM through DKFZ (SRS)", + "deprecated": false, + "deprecationDate": null, "description": "IMGT LIGM through DKFZ (SRS)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "M94112", - "resourceHomeUrl": "http://genius.embnet.dkfz-heidelberg.de/", + "id": 844, "institution": { - "id": 843, - "name": "DKFZ TP3, Heidelberg", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 843, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "DKFZ TP3, Heidelberg", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100369", + "name": "IMGT LIGM through DKFZ (SRS)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://genius.embnet.dkfz-heidelberg.de/", + "sampleId": "M94112", + "urlPattern": "http://genius.embnet.dkfz-heidelberg.de/menu/cgi-bin/srs7.1.3.1/wgetz?-id+4ktAl1fNMTA+-e+[IMGT:'{$id}']" }, { - "id": 846, - "mirId": "MIR:00100428", - "urlPattern": "http://www.imgt.org/ligmdb/view?id={$id}", - "name": "IMGT LIGM at CNRS", + "deprecated": false, + "deprecationDate": null, "description": "IMGT LIGM at CNRS", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "M94112", - "resourceHomeUrl": "http://www.imgt.org/", + "id": 846, "institution": { - "id": 845, - "name": "CNRS, Montpellier University, Montpellier", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 845, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "CNRS, Montpellier University, Montpellier", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100428", + "name": "IMGT LIGM at CNRS", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.imgt.org/", + "sampleId": "M94112", + "urlPattern": "http://www.imgt.org/ligmdb/view?id={$id}" } ], - "sampleId": "M94112", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "M94112" }, { + "created": "2019-06-11T14:16:45.846+0000", + "deprecated": false, + "deprecationDate": null, + "description": "WOrfDB (Worm ORFeome DataBase) contains data from the cloning of complete set of predicted protein-encoding Open Reading Frames (ORFs) of Caenorhabditis elegans. This collection describes experimentally defined transcript structures of unverified genes through RACE (Rapid Amplification of cDNA Ends).", "id": 847, - "prefix": "worfdb", "mirId": "MIR:00000288", + "modified": "2019-06-11T14:16:45.846+0000", "name": "Worfdb", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+(\\.\\d+)?", - "description": "WOrfDB (Worm ORFeome DataBase) contains data from the cloning of complete set of predicted protein-encoding Open Reading Frames (ORFs) of Caenorhabditis elegans. This collection describes experimentally defined transcript structures of unverified genes through RACE (Rapid Amplification of cDNA Ends).", - "created": "2019-06-11T14:16:45.846+0000", - "modified": "2019-06-11T14:16:45.846+0000", + "prefix": "worfdb", "resources": [ { - "id": 849, - "mirId": "MIR:00100370", - "urlPattern": "http://worfdb.dfci.harvard.edu/index.php?search_type=name&page=showresultrc&race_query={$id}", - "name": "Worm Orf DB at Harvard", + "deprecated": false, + "deprecationDate": null, "description": "Worm Orf DB at Harvard", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "T01B6.1", - "resourceHomeUrl": "http://worfdb.dfci.harvard.edu/", + "id": 849, "institution": { - "id": 848, - "name": "Center for Cancer Systems Biology, Harvard Medical School, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 848, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Center for Cancer Systems Biology, Harvard Medical School, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100370", + "name": "Worm Orf DB at Harvard", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://worfdb.dfci.harvard.edu/", + "sampleId": "T01B6.1", + "urlPattern": "http://worfdb.dfci.harvard.edu/index.php?search_type=name&page=showresultrc&race_query={$id}" } ], - "sampleId": "T01B6.1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "T01B6.1" }, { + "created": "2019-06-11T14:16:46.065+0000", + "deprecated": false, + "deprecationDate": null, + "description": "NextDb is a database that provides information on the expression pattern map of the 100Mb genome of the nematode Caenorhabditis elegans. This was done through EST analysis and systematic whole mount in situ hybridization. Information available includes 5' and 3' ESTs, and in-situ hybridization images of 11,237 cDNA clones.", "id": 850, - "prefix": "nextdb", "mirId": "MIR:00000289", + "modified": "2019-06-11T14:16:46.065+0000", "name": "NEXTDB", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9]+$", - "description": "NextDb is a database that provides information on the expression pattern map of the 100Mb genome of the nematode Caenorhabditis elegans. This was done through EST analysis and systematic whole mount in situ hybridization. Information available includes 5' and 3' ESTs, and in-situ hybridization images of 11,237 cDNA clones.", - "created": "2019-06-11T14:16:46.065+0000", - "modified": "2019-06-11T14:16:46.065+0000", + "prefix": "nextdb", "resources": [ { - "id": 852, - "mirId": "MIR:00100371", - "urlPattern": "http://nematode.lab.nig.ac.jp/db2/ShowCloneInfo.php?clone={$id}", - "name": "NEXTDB at Shizuoka", + "deprecated": false, + "deprecationDate": null, "description": "NEXTDB at Shizuoka", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "6b1", - "resourceHomeUrl": "http://nematode.lab.nig.ac.jp/", + "id": 852, "institution": { - "id": 851, - "name": "National Institute of Genetics, Shizuoka", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 851, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "National Institute of Genetics, Shizuoka", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100371", + "name": "NEXTDB at Shizuoka", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://nematode.lab.nig.ac.jp/", + "sampleId": "6b1", + "urlPattern": "http://nematode.lab.nig.ac.jp/db2/ShowCloneInfo.php?clone={$id}" } ], - "sampleId": "6b1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "6b1" }, { + "created": "2019-06-11T14:16:46.310+0000", + "deprecated": false, + "deprecationDate": null, + "description": "SoyBase is a repository for curated genetics, genomics and related data resources for soybean.", "id": 853, - "prefix": "soybase", "mirId": "MIR:00000291", + "modified": "2019-06-11T14:16:46.310+0000", "name": "SoyBase", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+(\\-)?\\w+(\\-)?\\w+$", - "description": "SoyBase is a repository for curated genetics, genomics and related data resources for soybean.", - "created": "2019-06-11T14:16:46.310+0000", - "modified": "2019-06-11T14:16:46.310+0000", + "prefix": "soybase", "resources": [ { - "id": 855, - "mirId": "MIR:00100373", - "urlPattern": "http://www.soybase.org/sbt/search/search_results.php?category=SNP&search_term={$id}", - "name": "SoyBase at Iowa State University", + "deprecated": false, + "deprecationDate": null, "description": "SoyBase at Iowa State University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "BARC-013845-01256", - "resourceHomeUrl": "http://soybase.org/", + "id": 855, "institution": { - "id": 854, - "name": "USDA-ARS-CICGRU, Iowa State University, Iowa", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 854, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "USDA-ARS-CICGRU, Iowa State University, Iowa", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100373", + "name": "SoyBase at Iowa State University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://soybase.org/", + "sampleId": "BARC-013845-01256", + "urlPattern": "http://www.soybase.org/sbt/search/search_results.php?category=SNP&search_term={$id}" } ], - "sampleId": "BARC-013845-01256", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "BARC-013845-01256" }, { + "created": "2019-06-11T14:16:46.532+0000", + "deprecated": false, + "deprecationDate": null, + "description": "HAMAP is a system that identifies and semi-automatically annotates proteins that are part of well-conserved and orthologous microbial families or subfamilies. These are used to build rules which are used to propagate annotations to member bacterial, archaeal and plastid-encoded protein entries.", "id": 856, - "prefix": "hamap", "mirId": "MIR:00000292", + "modified": "2019-06-11T14:16:46.532+0000", "name": "HAMAP", + "namespaceEmbeddedInLui": false, "pattern": "^MF_\\d+$", - "description": "HAMAP is a system that identifies and semi-automatically annotates proteins that are part of well-conserved and orthologous microbial families or subfamilies. These are used to build rules which are used to propagate annotations to member bacterial, archaeal and plastid-encoded protein entries.", - "created": "2019-06-11T14:16:46.532+0000", - "modified": "2019-06-11T14:16:46.532+0000", + "prefix": "hamap", "resources": [ { - "id": 857, - "mirId": "MIR:00100374", - "urlPattern": "https://hamap.expasy.org/unirule/{$id}", - "name": "HAPMAP at Swiss Institute of Bioinformatics", + "deprecated": false, + "deprecationDate": null, "description": "HAPMAP at Swiss Institute of Bioinformatics", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MF_01400", - "resourceHomeUrl": "https://hamap.expasy.org/", + "id": 857, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100374", + "name": "HAPMAP at Swiss Institute of Bioinformatics", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://hamap.expasy.org/", + "sampleId": "MF_01400", + "urlPattern": "https://hamap.expasy.org/unirule/{$id}" } ], - "sampleId": "MF_01400", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MF_01400" }, { + "created": "2019-06-11T14:16:46.721+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Rouge protein database contains results from sequence analysis of novel large (>4 kb) cDNAs identified in the Kazusa cDNA sequencing project.", "id": 858, - "prefix": "rouge", "mirId": "MIR:00000293", + "modified": "2019-06-11T14:16:46.721+0000", "name": "Rouge", + "namespaceEmbeddedInLui": false, "pattern": "^m\\w+$", - "description": "The Rouge protein database contains results from sequence analysis of novel large (>4 kb) cDNAs identified in the Kazusa cDNA sequencing project.", - "created": "2019-06-11T14:16:46.721+0000", - "modified": "2019-06-11T14:16:46.721+0000", + "prefix": "rouge", "resources": [ { - "id": 860, - "mirId": "MIR:00100375", - "urlPattern": "http://www.kazusa.or.jp/rouge/gfpage/{$id}/", - "name": "Rouge at Kazusa DNA Research Institute", + "deprecated": false, + "deprecationDate": null, "description": "Rouge at Kazusa DNA Research Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "mKIAA4200", - "resourceHomeUrl": "http://www.kazusa.or.jp/rouge/", + "id": 860, "institution": { - "id": 859, - "name": "Kazusa DNA Research Institute, Chiba", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 859, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Kazusa DNA Research Institute, Chiba", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100375", + "name": "Rouge at Kazusa DNA Research Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.kazusa.or.jp/rouge/", + "sampleId": "mKIAA4200", + "urlPattern": "http://www.kazusa.or.jp/rouge/gfpage/{$id}/" } ], - "sampleId": "mKIAA4200", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "mKIAA4200" }, { + "created": "2019-06-11T14:16:46.944+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ArrayExpress is a public repository for microarray data, which is aimed at storing MIAME-compliant data in accordance with Microarray Gene Expression Data (MGED) recommendations.This collection references the specific platforms used in the generation of experimental results.", "id": 861, - "prefix": "arrayexpress.platform", "mirId": "MIR:00000294", + "modified": "2019-06-11T14:16:46.944+0000", "name": "ArrayExpress Platform", + "namespaceEmbeddedInLui": false, "pattern": "^[AEP]-\\w{4}-\\d+$", - "description": "ArrayExpress is a public repository for microarray data, which is aimed at storing MIAME-compliant data in accordance with Microarray Gene Expression Data (MGED) recommendations.This collection references the specific platforms used in the generation of experimental results.", - "created": "2019-06-11T14:16:46.944+0000", - "modified": "2019-06-11T14:16:46.944+0000", + "prefix": "arrayexpress.platform", "resources": [ { - "id": 862, - "mirId": "MIR:00100376", - "urlPattern": "https://www.ebi.ac.uk/arrayexpress/arrays/{$id}", - "name": "ArrayExpress Platform at EBI", + "deprecated": false, + "deprecationDate": null, "description": "ArrayExpress Platform at EBI", - "official": false, - "providerCode": "ebi", - "sampleId": "A-GEOD-50", - "resourceHomeUrl": "https://www.ebi.ac.uk/arrayexpress/", + "id": 862, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100376", + "name": "ArrayExpress Platform at EBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/arrayexpress/", + "sampleId": "A-GEOD-50", + "urlPattern": "https://www.ebi.ac.uk/arrayexpress/arrays/{$id}" } ], - "sampleId": "A-GEOD-50", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "A-GEOD-50" }, { + "created": "2019-06-11T14:16:47.138+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The CGSC Database of E. coli genetic information includes genotypes and reference information for the strains in the CGSC collection, the names, synonyms, properties, and map position for genes, gene product information, and information on specific mutations and references to primary literature.", "id": 863, - "prefix": "cgsc", "mirId": "MIR:00000295", + "modified": "2019-06-11T14:16:47.138+0000", "name": "CGSC Strain", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The CGSC Database of E. coli genetic information includes genotypes and reference information for the strains in the CGSC collection, the names, synonyms, properties, and map position for genes, gene product information, and information on specific mutations and references to primary literature.", - "created": "2019-06-11T14:16:47.138+0000", - "modified": "2019-06-11T14:16:47.138+0000", + "prefix": "cgsc", "resources": [ { - "id": 865, - "mirId": "MIR:00100377", - "urlPattern": "http://cgsc.biology.yale.edu/Site.php?ID={$id}", - "name": "CGSC at Yale university", + "deprecated": false, + "deprecationDate": null, "description": "CGSC at Yale university", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "74", - "resourceHomeUrl": "http://cgsc.biology.yale.edu/index.php", + "id": 865, "institution": { - "id": 864, - "name": "Dept. of Molecular, Cellular, and Developmental Biology, Yale University, Conneticut", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 864, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Dept. of Molecular, Cellular, and Developmental Biology, Yale University, Conneticut", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100377", + "name": "CGSC at Yale university", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://cgsc.biology.yale.edu/index.php", + "sampleId": "74", + "urlPattern": "http://cgsc.biology.yale.edu/Site.php?ID={$id}" } ], - "sampleId": "74", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "74" }, { + "created": "2019-06-11T14:16:47.375+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DragonDB is a genetic and genomic database for Antirrhinum majus (Snapdragon). This collection refers to DNA sequence information.", "id": 866, - "prefix": "dragondb.dna", "mirId": "MIR:00000297", + "modified": "2019-06-11T14:16:47.375+0000", "name": "DragonDB DNA", + "namespaceEmbeddedInLui": false, "pattern": "^\\d\\w+$", - "description": "DragonDB is a genetic and genomic database for Antirrhinum majus (Snapdragon). This collection refers to DNA sequence information.", - "created": "2019-06-11T14:16:47.375+0000", - "modified": "2019-06-11T14:16:47.375+0000", + "prefix": "dragondb.dna", "resources": [ { - "id": 868, - "mirId": "MIR:00100379", - "urlPattern": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name={$id};class=DNA", - "name": "DragonDB DNA at University of British Columbia", + "deprecated": false, + "deprecationDate": null, "description": "DragonDB DNA at University of British Columbia", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "3hB06", - "resourceHomeUrl": "http://www.antirrhinum.net/", + "id": 868, "institution": { - "id": 867, - "name": "University of British Columbia, Vancouver", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 867, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "University of British Columbia, Vancouver", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100379", + "name": "DragonDB DNA at University of British Columbia", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.antirrhinum.net/", + "sampleId": "3hB06", + "urlPattern": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name={$id};class=DNA" } ], - "sampleId": "3hB06", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "3hB06" }, { + "created": "2019-06-11T14:16:47.607+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DragonDB is a genetic and genomic database for Antirrhinum majus (Snapdragon). This collection refers to protein sequence information.", "id": 869, - "prefix": "dragondb.protein", "mirId": "MIR:00000298", + "modified": "2019-06-11T14:16:47.607+0000", "name": "DragonDB Protein", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "DragonDB is a genetic and genomic database for Antirrhinum majus (Snapdragon). This collection refers to protein sequence information.", - "created": "2019-06-11T14:16:47.607+0000", - "modified": "2019-06-11T14:16:47.607+0000", + "prefix": "dragondb.protein", "resources": [ { - "id": 870, - "mirId": "MIR:00100380", - "urlPattern": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name={$id};class=Peptide", - "name": "DragonDB Protein at University of British Columbia", + "deprecated": false, + "deprecationDate": null, "description": "DragonDB Protein at University of British Columbia", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "AMDEFA", - "resourceHomeUrl": "http://www.antirrhinum.net/", + "id": 870, "institution": { - "id": 867, - "name": "University of British Columbia, Vancouver", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 867, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "University of British Columbia, Vancouver", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100380", + "name": "DragonDB Protein at University of British Columbia", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.antirrhinum.net/", + "sampleId": "AMDEFA", + "urlPattern": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name={$id};class=Peptide" } ], - "sampleId": "AMDEFA", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AMDEFA" }, { + "created": "2019-06-11T14:16:47.798+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DragonDB is a genetic and genomic database for Antirrhinum majus (Snapdragon). This collection refers to Locus information.", "id": 871, - "prefix": "dragondb.locus", "mirId": "MIR:00000299", + "modified": "2019-06-11T14:16:47.798+0000", "name": "DragonDB Locus", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "DragonDB is a genetic and genomic database for Antirrhinum majus (Snapdragon). This collection refers to Locus information.", - "created": "2019-06-11T14:16:47.798+0000", - "modified": "2019-06-11T14:16:47.798+0000", + "prefix": "dragondb.locus", "resources": [ { - "id": 872, - "mirId": "MIR:00100381", - "urlPattern": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name={$id}&class=Locus", - "name": "DragonDB Locus at University of British Columbia", + "deprecated": false, + "deprecationDate": null, "description": "DragonDB Locus at University of British Columbia", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "DEF", - "resourceHomeUrl": "http://www.antirrhinum.net/", + "id": 872, "institution": { - "id": 867, - "name": "University of British Columbia, Vancouver", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 867, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "University of British Columbia, Vancouver", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100381", + "name": "DragonDB Locus at University of British Columbia", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.antirrhinum.net/", + "sampleId": "DEF", + "urlPattern": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name={$id}&class=Locus" } ], - "sampleId": "DEF", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "DEF" }, { + "created": "2019-06-11T14:16:47.981+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DragonDB is a genetic and genomic database for Antirrhinum majus (Snapdragon). This collection refers to allele information.", "id": 873, - "prefix": "dragondb.allele", "mirId": "MIR:00000300", + "modified": "2019-06-11T14:16:47.981+0000", "name": "DragonDB Allele", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "DragonDB is a genetic and genomic database for Antirrhinum majus (Snapdragon). This collection refers to allele information.", - "created": "2019-06-11T14:16:47.981+0000", - "modified": "2019-06-11T14:16:47.981+0000", + "prefix": "dragondb.allele", "resources": [ { - "id": 874, - "mirId": "MIR:00100382", - "urlPattern": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name={$id}&class=Allele", - "name": "DragonDB Allele at University of British Columbia", + "deprecated": false, + "deprecationDate": null, "description": "DragonDB Allele at University of British Columbia", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "cho", - "resourceHomeUrl": "http://www.antirrhinum.net/", + "id": 874, "institution": { - "id": 867, - "name": "University of British Columbia, Vancouver", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 867, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "University of British Columbia, Vancouver", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100382", + "name": "DragonDB Allele at University of British Columbia", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.antirrhinum.net/", + "sampleId": "cho", + "urlPattern": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name={$id}&class=Allele" } ], - "sampleId": "cho", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "cho" }, { + "created": "2019-06-11T14:16:48.189+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The International Standard Serial Number (ISSN) is a unique eight-digit number used to identify a print or electronic periodical publication, rather than individual articles or books.", "id": 875, - "prefix": "issn", "mirId": "MIR:00000301", + "modified": "2019-06-11T14:16:48.189+0000", "name": "ISSN", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{4}-\\d{3}[\\dX]$", - "description": "The International Standard Serial Number (ISSN) is a unique eight-digit number used to identify a print or electronic periodical publication, rather than individual articles or books.", - "created": "2019-06-11T14:16:48.189+0000", - "modified": "2019-06-11T14:16:48.189+0000", + "prefix": "issn", "resources": [ { - "id": 877, - "mirId": "MIR:00100383", - "urlPattern": "https://catalog.loc.gov/vwebv/search?searchCode=STNO&searchArg={$id}&searchType=1&recCount=25", - "name": "ISSN at Library of Congress", + "deprecated": false, + "deprecationDate": null, "description": "ISSN at Library of Congress", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0745-4570", - "resourceHomeUrl": "http://catalog.loc.gov/webvoy.htm", + "id": 877, "institution": { - "id": 876, - "name": "Library of Congress Online Catalogue, Washington DC", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 876, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Library of Congress Online Catalogue, Washington DC", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100383", + "name": "ISSN at Library of Congress", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://catalog.loc.gov/webvoy.htm", + "sampleId": "0745-4570", + "urlPattern": "https://catalog.loc.gov/vwebv/search?searchCode=STNO&searchArg={$id}&searchType=1&recCount=25" }, { - "id": 879, - "mirId": "MIR:00100924", - "urlPattern": "https://portal.issn.org/resource/ISSN/{$id}", - "name": "ISSN Portal", + "deprecated": false, + "deprecationDate": null, "description": "ISSN Portal", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1776-3045", - "resourceHomeUrl": "https://portal.issn.org", + "id": 879, "institution": { - "id": 878, - "name": "ISSN International Centre, Paris", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 878, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "ISSN International Centre, Paris", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100924", + "name": "ISSN Portal", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://portal.issn.org", + "sampleId": "1776-3045", + "urlPattern": "https://portal.issn.org/resource/ISSN/{$id}" } ], - "sampleId": "0745-4570", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "0745-4570" }, { + "created": "2019-06-11T14:16:48.579+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The MEROPS database is an information resource for peptidases (also termed proteases, proteinases and proteolytic enzymes) and the proteins that inhibit them. These are hierarchically classified and assigned to a Family on the basis of statistically significant similarities in amino acid sequence. Families thought to be homologous are grouped together in a Clan. This collection references peptidase families.", "id": 880, - "prefix": "merops.family", "mirId": "MIR:00000302", + "modified": "2019-06-11T14:16:48.579+0000", "name": "MEROPS Family", + "namespaceEmbeddedInLui": false, "pattern": "^[SCTAGMNU]\\d+$", - "description": "The MEROPS database is an information resource for peptidases (also termed proteases, proteinases and proteolytic enzymes) and the proteins that inhibit them. These are hierarchically classified and assigned to a Family on the basis of statistically significant similarities in amino acid sequence. Families thought to be homologous are grouped together in a Clan. This collection references peptidase families.", - "created": "2019-06-11T14:16:48.579+0000", - "modified": "2019-06-11T14:16:48.579+0000", + "prefix": "merops.family", "resources": [ { - "id": 881, - "mirId": "MIR:00100384", - "urlPattern": "http://merops.sanger.ac.uk/cgi-bin/famsum?family={$id}", - "name": "Merops Family at Sanger Institute", + "deprecated": false, + "deprecationDate": null, "description": "Merops Family at Sanger Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "S1", - "resourceHomeUrl": "http://merops.sanger.ac.uk/index.htm", + "id": 881, "institution": { - "id": 482, - "name": "Wellcome Trust Sanger Institute, Hinxton", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 482, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Wellcome Trust Sanger Institute, Hinxton", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100384", + "name": "Merops Family at Sanger Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://merops.sanger.ac.uk/index.htm", + "sampleId": "S1", + "urlPattern": "http://merops.sanger.ac.uk/cgi-bin/famsum?family={$id}" } ], - "sampleId": "S1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "S1" }, { + "created": "2019-06-11T14:16:48.772+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The MGED Ontology (MO) provides terms for annotating all aspects of a microarray experiment from the design of the experiment and array layout, through to the preparation of the biological sample and the protocols used to hybridize the RNA and analyze the data.", "id": 882, - "prefix": "mo", "mirId": "MIR:00000303", + "modified": "2019-06-11T14:16:48.772+0000", "name": "MGED Ontology", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "The MGED Ontology (MO) provides terms for annotating all aspects of a microarray experiment from the design of the experiment and array layout, through to the preparation of the biological sample and the protocols used to hybridize the RNA and analyze the data.", - "created": "2019-06-11T14:16:48.772+0000", - "modified": "2019-06-11T14:16:48.772+0000", + "prefix": "mo", "resources": [ { - "id": 883, - "mirId": "MIR:00100385", - "urlPattern": "http://purl.bioontology.org/ontology/MO/{$id}", - "name": "MGED Ontology at BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "MGED Ontology at BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "ArrayGroup", - "resourceHomeUrl": "http://bioportal.bioontology.org/", + "id": 883, "institution": { - "id": 571, - "name": "National Center for Biomedical Ontology, Stanford University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 571, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford University", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100385", + "name": "MGED Ontology at BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/", + "sampleId": "ArrayGroup", + "urlPattern": "http://purl.bioontology.org/ontology/MO/{$id}" }, { - "id": 885, - "mirId": "MIR:00100568", - "urlPattern": "https://mged.sourceforge.net/ontologies/MGEDontology.php#{$id}", - "name": "MGED Ontology at SourceForge", + "deprecated": false, + "deprecationDate": null, "description": "MGED Ontology at SourceForge", - "official": false, - "providerCode": "ebi", - "sampleId": "ArrayGroup", - "resourceHomeUrl": "https://mged.sourceforge.net/ontologies/MGEDontology.php", + "id": 885, "institution": { - "id": 884, - "name": "(Ontology Working Group), European Bioinformatics Institute, Hinxton, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 884, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "(Ontology Working Group), European Bioinformatics Institute, Hinxton, Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100568", + "name": "MGED Ontology at SourceForge", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://mged.sourceforge.net/ontologies/MGEDontology.php", + "sampleId": "ArrayGroup", + "urlPattern": "https://mged.sourceforge.net/ontologies/MGEDontology.php#{$id}" } ], - "sampleId": "ArrayGroup", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ArrayGroup" }, { + "created": "2019-06-11T14:16:49.131+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Nottingham Arabidopsis Stock Centre (NASC) provides seed and information resources to the International Arabidopsis Genome Programme and the wider research community.", "id": 886, - "prefix": "nasc", "mirId": "MIR:00000304", + "modified": "2019-06-11T14:16:49.131+0000", "name": "NASC code", + "namespaceEmbeddedInLui": false, "pattern": "^(\\w+)?\\d+$", - "description": "The Nottingham Arabidopsis Stock Centre (NASC) provides seed and information resources to the International Arabidopsis Genome Programme and the wider research community.", - "created": "2019-06-11T14:16:49.131+0000", - "modified": "2019-06-11T14:16:49.131+0000", + "prefix": "nasc", "resources": [ { - "id": 888, - "mirId": "MIR:00100386", - "urlPattern": "http://arabidopsis.info/StockInfo?NASC_id={$id}", - "name": "NASC at University of Nottingham", + "deprecated": false, + "deprecationDate": null, "description": "NASC at University of Nottingham", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "N1899", - "resourceHomeUrl": "http://arabidopsis.info/", + "id": 888, "institution": { - "id": 887, - "name": "The Nottingham Arabidopsis Stock Centre, University of Nottingham", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 887, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "The Nottingham Arabidopsis Stock Centre, University of Nottingham", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100386", + "name": "NASC at University of Nottingham", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://arabidopsis.info/", + "sampleId": "N1899", + "urlPattern": "http://arabidopsis.info/StockInfo?NASC_id={$id}" } ], - "sampleId": "N1899", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "N1899" }, { + "created": "2019-06-11T14:16:49.376+0000", + "deprecated": false, + "deprecationDate": null, + "description": "A catalog of mouse genes expressed in early embryos, embryonic and adult stem cells, including 250000 ESTs, was assembled by the NIA (National Institute on Aging) assembled.This collection represents the name and sequence from individual cDNA clones.", "id": 889, - "prefix": "niaest", "mirId": "MIR:00000305", + "modified": "2019-06-11T14:16:49.376+0000", "name": "NIAEST", + "namespaceEmbeddedInLui": false, "pattern": "^\\w\\d{4}\\w\\d{2}(\\-[35])?$", - "description": "A catalog of mouse genes expressed in early embryos, embryonic and adult stem cells, including 250000 ESTs, was assembled by the NIA (National Institute on Aging) assembled.This collection represents the name and sequence from individual cDNA clones.", - "created": "2019-06-11T14:16:49.376+0000", - "modified": "2019-06-11T14:16:49.376+0000", + "prefix": "niaest", "resources": [ { - "id": 891, - "mirId": "MIR:00100387", - "urlPattern": "http://lgsun.grc.nia.nih.gov/cgi-bin/pro3?sname1={$id}", - "name": "NIAEST at National Institute on Aging", + "deprecated": false, + "deprecationDate": null, "description": "NIAEST at National Institute on Aging", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "J0705A10", - "resourceHomeUrl": "http://lgsun.grc.nia.nih.gov/cDNA/", + "id": 891, "institution": { - "id": 890, - "name": "National Institute on Aging, NIH", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 890, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Institute on Aging, NIH", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100387", + "name": "NIAEST at National Institute on Aging", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://lgsun.grc.nia.nih.gov/cDNA/", + "sampleId": "J0705A10", + "urlPattern": "http://lgsun.grc.nia.nih.gov/cgi-bin/pro3?sname1={$id}" } ], - "sampleId": "J0705A10", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "J0705A10" }, { + "created": "2019-06-11T14:16:49.605+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PAZAR database unites independently created and maintained data collections of transcription factor and regulatory sequence annotation. It provides information on the sequence and target of individual transcription factors.", "id": 892, - "prefix": "pazar", "mirId": "MIR:00000306", + "modified": "2019-06-11T14:16:49.605+0000", "name": "Pazar Transcription Factor", + "namespaceEmbeddedInLui": false, "pattern": "^TF\\w+$", - "description": "The PAZAR database unites independently created and maintained data collections of transcription factor and regulatory sequence annotation. It provides information on the sequence and target of individual transcription factors.", - "created": "2019-06-11T14:16:49.605+0000", - "modified": "2019-06-11T14:16:49.605+0000", + "prefix": "pazar", "resources": [ { - "id": 894, - "mirId": "MIR:00100388", - "urlPattern": "http://www.pazar.info/cgi-bin/tf_search.cgi?geneID={$id}", - "name": "Pazar Transcription Factor at University of British Columbia", + "deprecated": false, + "deprecationDate": null, "description": "Pazar Transcription Factor at University of British Columbia", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "TF0001053", - "resourceHomeUrl": "http://www.pazar.info/", + "id": 894, "institution": { - "id": 893, - "name": "Centre for Molecular Medicine and Therapeutics, University of British Columbia, Vancouver", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 893, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "Centre for Molecular Medicine and Therapeutics, University of British Columbia, Vancouver", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100388", + "name": "Pazar Transcription Factor at University of British Columbia", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.pazar.info/", + "sampleId": "TF0001053", + "urlPattern": "http://www.pazar.info/cgi-bin/tf_search.cgi?geneID={$id}" } ], - "sampleId": "TF0001053", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "TF0001053" }, { + "created": "2019-06-11T14:16:49.830+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Plant Ontology is a structured vocabulary and database resource that links plant anatomy, morphology and growth and development to plant genomics data.", "id": 895, - "prefix": "po", "mirId": "MIR:00000307", + "modified": "2019-06-11T14:16:49.830+0000", "name": "Plant Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^PO:\\d+$", - "description": "The Plant Ontology is a structured vocabulary and database resource that links plant anatomy, morphology and growth and development to plant genomics data.", - "created": "2019-06-11T14:16:49.830+0000", - "modified": "2019-06-11T14:16:49.830+0000", + "prefix": "po", "resources": [ { - "id": 897, - "mirId": "MIR:00100389", - "urlPattern": "http://www.plantontology.org/amigo/go.cgi?view=details&query=PO:{$id}", - "name": "Plant Ontology through Amigo", + "deprecated": false, + "deprecationDate": null, "description": "Plant Ontology through Amigo", - "official": false, - "providerCode": "amigo", - "sampleId": "0009089", - "resourceHomeUrl": "http://www.plantontology.org/", + "id": 897, "institution": { - "id": 896, - "name": "Cold Spring Harbor Laboratory, Cold Spring Harbor, New York", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 896, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Cold Spring Harbor Laboratory, Cold Spring Harbor, New York", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100389", + "name": "Plant Ontology through Amigo", + "official": false, + "providerCode": "amigo", + "resourceHomeUrl": "http://www.plantontology.org/", + "sampleId": "0009089", + "urlPattern": "http://www.plantontology.org/amigo/go.cgi?view=details&query=PO:{$id}" }, { - "id": 898, - "mirId": "MIR:00100390", - "urlPattern": "http://purl.bioontology.org/ontology/PO/PO:{$id}", - "name": "Plant Ontology through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "Plant Ontology through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "0009089", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PO", + "id": 898, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100390", + "name": "Plant Ontology through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PO", + "sampleId": "0009089", + "urlPattern": "http://purl.bioontology.org/ontology/PO/PO:{$id}" }, { - "id": 899, - "mirId": "MIR:00100676", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/po/terms?obo_id=PO:{$id}", - "name": "Plant Ontology through OLS", + "deprecated": false, + "deprecationDate": null, "description": "Plant Ontology through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0009089", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/po", + "id": 899, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100676", + "name": "Plant Ontology through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/po", + "sampleId": "0009089", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/po/terms?obo_id=PO:{$id}" } ], - "sampleId": "0009089", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0009089" }, { + "created": "2019-06-11T14:16:50.326+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The RNA modification database provides a comprehensive listing of post-transcriptionally modified nucleosides from RNA. The database consists of all RNA-derived ribonucleosides of known structure, including those from established sequence positions, as well as those detected or characterized from hydrolysates of RNA.", "id": 900, - "prefix": "rnamods", "mirId": "MIR:00000308", + "modified": "2019-06-11T14:16:50.326+0000", "name": "RNA Modification Database", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{3}$", - "description": "The RNA modification database provides a comprehensive listing of post-transcriptionally modified nucleosides from RNA. The database consists of all RNA-derived ribonucleosides of known structure, including those from established sequence positions, as well as those detected or characterized from hydrolysates of RNA.", - "created": "2019-06-11T14:16:50.326+0000", - "modified": "2019-06-11T14:16:50.326+0000", + "prefix": "rnamods", "resources": [ { - "id": 902, - "mirId": "MIR:00100391", - "urlPattern": "http://mods.rna.albany.edu/mods/modifications/view/{$id}", - "name": "RNA Modification Database at University of Utah", + "deprecated": false, + "deprecationDate": null, "description": "RNA Modification Database at University of Utah", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "101", - "resourceHomeUrl": "http://rna-mdb.cas.albany.edu/RNAmods/rnaover.htm", + "id": 902, "institution": { - "id": 901, - "name": "Department of Medicinal Chemistry and Department of Biochemistry, University of Utah, Salt Lake City, Utah", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 901, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Medicinal Chemistry and Department of Biochemistry, University of Utah, Salt Lake City, Utah", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100391", + "name": "RNA Modification Database at University of Utah", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://rna-mdb.cas.albany.edu/RNAmods/rnaover.htm", + "sampleId": "101", + "urlPattern": "http://mods.rna.albany.edu/mods/modifications/view/{$id}" } ], - "sampleId": "101", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "101" }, { + "created": "2019-06-11T14:16:50.556+0000", + "deprecated": false, + "deprecationDate": null, + "description": "TreeBASE is a relational database designed to manage and explore information on phylogenetic relationships. It includes phylogenetic trees and data matrices, together with information about the relevant publication, taxa, morphological and sequence-based characters, and published analyses. Data in TreeBASE are exposed to the public if they are used in a publication that is in press or published in a peer-reviewed scientific journal, etc.", "id": 903, - "prefix": "treebase", "mirId": "MIR:00000312", + "modified": "2019-06-11T14:16:50.556+0000", "name": "TreeBASE", + "namespaceEmbeddedInLui": false, "pattern": "^TB[1,2]?:[A-Z][a-z]?\\d+$", - "description": "TreeBASE is a relational database designed to manage and explore information on phylogenetic relationships. It includes phylogenetic trees and data matrices, together with information about the relevant publication, taxa, morphological and sequence-based characters, and published analyses. Data in TreeBASE are exposed to the public if they are used in a publication that is in press or published in a peer-reviewed scientific journal, etc.", - "created": "2019-06-11T14:16:50.556+0000", - "modified": "2019-06-11T14:16:50.556+0000", + "prefix": "treebase", "resources": [ { - "id": 905, - "mirId": "MIR:00100395", - "urlPattern": "http://purl.org/phylo/treebase/phylows/study/{$id}?format=html", - "name": "TreeBASE (hosted at National Evolutionary Synthesis Center)", + "deprecated": false, + "deprecationDate": null, "description": "TreeBASE (hosted at National Evolutionary Synthesis Center)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "TB2:S1000", - "resourceHomeUrl": "http://treebase.org/", + "id": 905, "institution": { - "id": 904, - "name": "Phyloinformatics Research Foundation, Durham, North Carolina", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 904, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Phyloinformatics Research Foundation, Durham, North Carolina", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100395", + "name": "TreeBASE (hosted at National Evolutionary Synthesis Center)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://treebase.org/", + "sampleId": "TB2:S1000", + "urlPattern": "http://purl.org/phylo/treebase/phylows/study/{$id}?format=html" } ], - "sampleId": "TB2:S1000", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "TB2:S1000" }, { + "created": "2019-06-11T14:17:18.559+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Cell Signaling Technology is a commercial organisation which provides a pathway portal to showcase their phospho-antibody products. This collection references antibody products.", "id": 1235, - "prefix": "cst.ab", "mirId": "MIR:00000430", + "modified": "2019-06-11T14:17:18.559+0000", "name": "Cell Signaling Technology Antibody", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Cell Signaling Technology is a commercial organisation which provides a pathway portal to showcase their phospho-antibody products. This collection references antibody products.", - "created": "2019-06-11T14:17:18.559+0000", - "modified": "2019-06-11T14:17:18.559+0000", + "prefix": "cst.ab", "resources": [ { - "id": 1236, - "mirId": "MIR:00100553", - "urlPattern": "http://www.cellsignal.com/products/{$id}.html", - "name": "CST Antibody at Cell Signaling Technology", + "deprecated": false, + "deprecationDate": null, "description": "CST Antibody at Cell Signaling Technology", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "3305", - "resourceHomeUrl": "http://www.cellsignal.com/catalog/index.html", + "id": 1236, "institution": { - "id": 1233, - "name": "Cell Signaling Technology, Inc., Danvers, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1233, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Cell Signaling Technology, Inc., Danvers, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100553", + "name": "CST Antibody at Cell Signaling Technology", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.cellsignal.com/catalog/index.html", + "sampleId": "3305", + "urlPattern": "http://www.cellsignal.com/products/{$id}.html" } ], - "sampleId": "3305", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "3305" }, { + "created": "2019-06-11T14:16:50.779+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Tetrahymena Genome Database (TGD) Wiki is a database of information about the Tetrahymena thermophila genome sequence. It provides information curated from the literature about each published gene, including a standardized gene name, a link to the genomic locus, gene product annotations utilizing the Gene Ontology, and links to published literature.", "id": 906, - "prefix": "tgd", "mirId": "MIR:00000313", + "modified": "2019-06-11T14:16:50.779+0000", "name": "Tetrahymena Genome Database", + "namespaceEmbeddedInLui": false, "pattern": "^TTHERM\\_\\d+$", - "description": "The Tetrahymena Genome Database (TGD) Wiki is a database of information about the Tetrahymena thermophila genome sequence. It provides information curated from the literature about each published gene, including a standardized gene name, a link to the genomic locus, gene product annotations utilizing the Gene Ontology, and links to published literature.", - "created": "2019-06-11T14:16:50.779+0000", - "modified": "2019-06-11T14:16:50.779+0000", + "prefix": "tgd", "resources": [ { - "id": 907, - "mirId": "MIR:00100396", - "urlPattern": "http://ciliate.org/index.php/feature/details/{$id}", - "name": "TGD at Stanford University", + "deprecated": false, + "deprecationDate": null, "description": "TGD at Stanford University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "TTHERM_00648910", - "resourceHomeUrl": "http://ciliate.org/index.php/", + "id": 907, "institution": { - "id": 298, - "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 298, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100396", + "name": "TGD at Stanford University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://ciliate.org/index.php/", + "sampleId": "TTHERM_00648910", + "urlPattern": "http://ciliate.org/index.php/feature/details/{$id}" } ], - "sampleId": "TTHERM_00648910", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "TTHERM_00648910" }, { + "created": "2019-06-11T14:16:50.975+0000", + "deprecated": false, + "deprecationDate": null, + "description": "TIGRFAMs is a resource consisting of curated multiple sequence alignments, Hidden Markov Models (HMMs) for protein sequence classification, and associated information designed to support automated annotation of (mostly prokaryotic) proteins.", "id": 908, - "prefix": "tigrfam", "mirId": "MIR:00000315", + "modified": "2019-06-11T14:16:50.975+0000", "name": "TIGRFAMS", + "namespaceEmbeddedInLui": false, "pattern": "^TIGR\\d+$", - "description": "TIGRFAMs is a resource consisting of curated multiple sequence alignments, Hidden Markov Models (HMMs) for protein sequence classification, and associated information designed to support automated annotation of (mostly prokaryotic) proteins.", - "created": "2019-06-11T14:16:50.975+0000", - "modified": "2019-06-11T14:16:50.975+0000", + "prefix": "tigrfam", "resources": [ { - "id": 910, - "mirId": "MIR:00100398", - "urlPattern": "http://www.jcvi.org/cgi-bin/tigrfams/HmmReportPage.cgi?acc={$id}", - "name": "TIGRFAM at JCVI", + "deprecated": false, + "deprecationDate": null, "description": "TIGRFAM at JCVI", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "TIGR00010", - "resourceHomeUrl": "http://www.jcvi.org/cgi-bin/tigrfams/Listing.cgi", + "id": 910, "institution": { - "id": 909, - "name": "The Institute for Genomic Research, Rockville, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 909, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Institute for Genomic Research, Rockville, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100398", + "name": "TIGRFAM at JCVI", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.jcvi.org/cgi-bin/tigrfams/Listing.cgi", + "sampleId": "TIGR00010", + "urlPattern": "http://www.jcvi.org/cgi-bin/tigrfams/HmmReportPage.cgi?acc={$id}" } ], - "sampleId": "TIGR00010", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "TIGR00010" }, { + "created": "2019-06-11T14:16:51.241+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Animal Transcription Factor DataBase (AnimalTFDB) classifies TFs in sequenced animal genomes, as well as collecting the transcription co-factors and chromatin remodeling factors of those genomes. This collections refers to transcription factor families, and the species in which they are found.", "id": 911, - "prefix": "atfdb.family", "mirId": "MIR:00000316", + "modified": "2019-06-11T14:16:51.241+0000", "name": "Animal TFDB Family", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "The Animal Transcription Factor DataBase (AnimalTFDB) classifies TFs in sequenced animal genomes, as well as collecting the transcription co-factors and chromatin remodeling factors of those genomes. This collections refers to transcription factor families, and the species in which they are found.", - "created": "2019-06-11T14:16:51.241+0000", - "modified": "2019-06-11T14:16:51.241+0000", + "prefix": "atfdb.family", "resources": [ { - "id": 913, - "mirId": "MIR:00100399", - "urlPattern": "http://www.bioguo.org/AnimalTFDB/family.php?fam={$id}", - "name": "Animal TFDB at Hubei Bioinformatics & Molecular Imaging Key Laboratory", + "deprecated": false, + "deprecationDate": null, "description": "Animal TFDB at Hubei Bioinformatics & Molecular Imaging Key Laboratory", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "CUT", - "resourceHomeUrl": "http://www.bioguo.org/AnimalTFDB/family_index.php", + "id": 913, "institution": { - "id": 912, - "name": "Hubei Bioinformatics and Molecular Imaging Key Laboratory, Wuhan", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 912, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "Hubei Bioinformatics and Molecular Imaging Key Laboratory, Wuhan", + "rorId": null }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100399", + "name": "Animal TFDB at Hubei Bioinformatics & Molecular Imaging Key Laboratory", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.bioguo.org/AnimalTFDB/family_index.php", + "sampleId": "CUT", + "urlPattern": "http://www.bioguo.org/AnimalTFDB/family.php?fam={$id}" } ], - "sampleId": "CUT", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CUT" }, { + "created": "2019-06-11T14:16:51.481+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The IUPHAR Compendium details the molecular, biophysical and pharmacological properties of identified mammalian sodium, calcium and potassium channels, as well as the related cyclic nucleotide-modulated ion channels and the recently described transient receptor potential channels. It includes information on nomenclature systems, and on inter and intra-species molecular structure variation. This collection references families of receptors or subunits.", "id": 914, - "prefix": "iuphar.family", "mirId": "MIR:00000317", + "modified": "2019-06-11T14:16:51.481+0000", "name": "IUPHAR family", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The IUPHAR Compendium details the molecular, biophysical and pharmacological properties of identified mammalian sodium, calcium and potassium channels, as well as the related cyclic nucleotide-modulated ion channels and the recently described transient receptor potential channels. It includes information on nomenclature systems, and on inter and intra-species molecular structure variation. This collection references families of receptors or subunits.", - "created": "2019-06-11T14:16:51.481+0000", - "modified": "2019-06-11T14:16:51.481+0000", + "prefix": "iuphar.family", "resources": [ { - "id": 916, - "mirId": "MIR:00100708", - "urlPattern": "http://www.guidetopharmacology.org/GRAC/FamilyDisplayForward?familyId={$id}", - "name": "The IUPHAR/BPS Guide to PHARMACOLOGY", + "deprecated": false, + "deprecationDate": null, "description": "The IUPHAR/BPS Guide to PHARMACOLOGY", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "78", - "resourceHomeUrl": "http://www.guidetopharmacology.org/", + "id": 916, "institution": { - "id": 915, - "name": "International Union of Pharmacology, Edinburgh", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 915, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "International Union of Pharmacology, Edinburgh", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100708", + "name": "The IUPHAR/BPS Guide to PHARMACOLOGY", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.guidetopharmacology.org/", + "sampleId": "78", + "urlPattern": "http://www.guidetopharmacology.org/GRAC/FamilyDisplayForward?familyId={$id}" } ], - "sampleId": "78", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "78" }, { + "created": "2019-06-11T14:16:51.708+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Database for Bacterial Group II Introns provides a catalogue of full-length, non-redundant group II introns present in bacterial DNA sequences in GenBank.", "id": 917, - "prefix": "dbg2introns", "mirId": "MIR:00000318", + "modified": "2019-06-11T14:16:51.708+0000", "name": "DBG2 Introns", + "namespaceEmbeddedInLui": false, "pattern": "^\\w{1,2}\\.(\\w{1,2}\\.)?[A-Za-z0-9]+$", - "description": "The Database for Bacterial Group II Introns provides a catalogue of full-length, non-redundant group II introns present in bacterial DNA sequences in GenBank.", - "created": "2019-06-11T14:16:51.708+0000", - "modified": "2019-06-11T14:16:51.708+0000", + "prefix": "dbg2introns", "resources": [ { - "id": 919, - "mirId": "MIR:00100401", - "urlPattern": "http://webapps2.ucalgary.ca/~groupii/cgi-bin/intron.cgi?name={$id}", - "name": "Bacterial Group II Introns at University of Calgary", + "deprecated": false, + "deprecationDate": null, "description": "Bacterial Group II Introns at University of Calgary", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Cu.me.I1", - "resourceHomeUrl": "http://webapps2.ucalgary.ca/~groupii/", + "id": 919, "institution": { - "id": 568, - "name": "University of Calgary", + "description": "The University of Calgary is one of Canada\u2019s top comprehensive research universities, combining the best of university tradition with the city of Calgary\u2019s vibrant energy and diversity.", "homeUrl": "https://www.ucalgary.ca/", - "description": "The University of Calgary is one of Canada’s top comprehensive research universities, combining the best of university tradition with the city of Calgary’s vibrant energy and diversity.", - "rorId": "https://ror.org/03yjb2x39", + "id": 568, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "University of Calgary", + "rorId": "https://ror.org/03yjb2x39" }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100401", + "name": "Bacterial Group II Introns at University of Calgary", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://webapps2.ucalgary.ca/~groupii/", + "sampleId": "Cu.me.I1", + "urlPattern": "http://webapps2.ucalgary.ca/~groupii/cgi-bin/intron.cgi?name={$id}" } ], - "sampleId": "Cu.me.I1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Cu.me.I1" }, { + "created": "2019-06-11T14:16:51.940+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Spectral Database for Organic Compounds (SDBS) is an integrated spectral database system for organic compounds. It provides access to 6 different types of spectra for each compound, including Mass spectrum (EI-MS), a Fourier transform infrared spectrum (FT-IR), and NMR spectra.", "id": 920, - "prefix": "sdbs", "mirId": "MIR:00000319", + "modified": "2019-06-11T14:16:51.940+0000", "name": "Spectral Database for Organic Compounds", + "namespaceEmbeddedInLui": false, "pattern": "\\d+$", - "description": "The Spectral Database for Organic Compounds (SDBS) is an integrated spectral database system for organic compounds. It provides access to 6 different types of spectra for each compound, including Mass spectrum (EI-MS), a Fourier transform infrared spectrum (FT-IR), and NMR spectra.", - "created": "2019-06-11T14:16:51.940+0000", - "modified": "2019-06-11T14:16:51.940+0000", + "prefix": "sdbs", "resources": [ { - "id": 922, - "mirId": "MIR:00100402", - "urlPattern": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/cre_frame_disp.cgi?sdbsno={$id}", - "name": "SDBS at AIST", + "deprecated": false, + "deprecationDate": null, "description": "SDBS at AIST", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "4544", - "resourceHomeUrl": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/direct_frame_top.cgi", + "id": 922, "institution": { - "id": 921, - "name": "National Institute of Advanced Industrial Science and Technology (AIST)", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 921, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "National Institute of Advanced Industrial Science and Technology (AIST)", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100402", + "name": "SDBS at AIST", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/direct_frame_top.cgi", + "sampleId": "4544", + "urlPattern": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/cre_frame_disp.cgi?sdbsno={$id}" } ], - "sampleId": "4544", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "4544" }, { + "created": "2019-06-11T14:16:52.167+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The database VBASE2 provides germ-line sequences of human and mouse immunoglobulin variable (V) genes.", "id": 923, - "prefix": "vbase2", "mirId": "MIR:00000320", + "modified": "2019-06-11T14:16:52.167+0000", "name": "Vbase2", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "The database VBASE2 provides germ-line sequences of human and mouse immunoglobulin variable (V) genes.", - "created": "2019-06-11T14:16:52.167+0000", - "modified": "2019-06-11T14:16:52.167+0000", + "prefix": "vbase2", "resources": [ { - "id": 925, - "mirId": "MIR:00100403", - "urlPattern": "http://www.vbase2.org/vgene.php?id={$id}", - "name": "Vbase2 at German Research Centre for Biotechnology", + "deprecated": false, + "deprecationDate": null, "description": "Vbase2 at German Research Centre for Biotechnology", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "humIGHV025", - "resourceHomeUrl": "http://www.vbase2.org/vbase2.php", + "id": 925, "institution": { - "id": 924, - "name": "Department of Experimental Immunology, German Research Centre for Biotechnology, Braunschweig", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 924, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Department of Experimental Immunology, German Research Centre for Biotechnology, Braunschweig", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100403", + "name": "Vbase2 at German Research Centre for Biotechnology", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.vbase2.org/vbase2.php", + "sampleId": "humIGHV025", + "urlPattern": "http://www.vbase2.org/vgene.php?id={$id}" } ], - "sampleId": "humIGHV025", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "humIGHV025" }, { + "created": "2019-06-11T14:16:52.396+0000", + "deprecated": false, + "deprecationDate": null, + "description": "SPIKE (Signaling Pathways Integrated Knowledge Engine) is a repository that can store, organise and allow retrieval of pathway information in a way that will be useful for the research community. The database currently focuses primarily on pathways describing DNA damage response, cell cycle, programmed cell death and hearing related pathways. Pathways are regularly updated, and additional pathways are gradually added. The complete database and the individual maps are freely exportable in several formats. This collection references pathway maps.", "id": 926, - "prefix": "spike.map", "mirId": "MIR:00000321", + "modified": "2019-06-11T14:16:52.396+0000", "name": "SPIKE Map", + "namespaceEmbeddedInLui": false, "pattern": "^spike\\d{5}$", - "description": "SPIKE (Signaling Pathways Integrated Knowledge Engine) is a repository that can store, organise and allow retrieval of pathway information in a way that will be useful for the research community. The database currently focuses primarily on pathways describing DNA damage response, cell cycle, programmed cell death and hearing related pathways. Pathways are regularly updated, and additional pathways are gradually added. The complete database and the individual maps are freely exportable in several formats. This collection references pathway maps.", - "created": "2019-06-11T14:16:52.396+0000", - "modified": "2019-06-11T14:16:52.396+0000", + "prefix": "spike.map", "resources": [ { - "id": 928, - "mirId": "MIR:00100404", - "urlPattern": "http://www.cs.tau.ac.il/~spike/maps/{$id}.html", - "name": "SPIKE database at Tel Aviv University", + "deprecated": false, + "deprecationDate": null, "description": "SPIKE database at Tel Aviv University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "spike00001", - "resourceHomeUrl": "http://www.cs.tau.ac.il/~spike/", + "id": 928, "institution": { - "id": 927, - "name": "School of Computer Sciences and School of Medicine, Tel Aviv University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 927, "location": { "countryCode": "IL", "countryName": "Israel" - } + }, + "name": "School of Computer Sciences and School of Medicine, Tel Aviv University", + "rorId": null }, "location": { "countryCode": "IL", "countryName": "Israel" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100404", + "name": "SPIKE database at Tel Aviv University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.cs.tau.ac.il/~spike/", + "sampleId": "spike00001", + "urlPattern": "http://www.cs.tau.ac.il/~spike/maps/{$id}.html" } ], - "sampleId": "spike00001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "spike00001" }, { + "created": "2019-06-11T14:16:52.640+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The METLIN (Metabolite and Tandem Mass Spectrometry) Database is a repository of metabolite information as well as tandem mass spectrometry data, providing public access to its comprehensive MS and MS/MS metabolite data. An annotated list of known metabolites and their mass, chemical formula, and structure are available, with each metabolite linked to external resources for further reference and inquiry.", "id": 929, - "prefix": "metlin", "mirId": "MIR:00000322", + "modified": "2019-06-11T14:16:52.640+0000", "name": "METLIN", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{4}$", - "description": "The METLIN (Metabolite and Tandem Mass Spectrometry) Database is a repository of metabolite information as well as tandem mass spectrometry data, providing public access to its comprehensive MS and MS/MS metabolite data. An annotated list of known metabolites and their mass, chemical formula, and structure are available, with each metabolite linked to external resources for further reference and inquiry.", - "created": "2019-06-11T14:16:52.640+0000", - "modified": "2019-06-11T14:16:52.640+0000", + "prefix": "metlin", "resources": [ { - "id": 931, - "mirId": "MIR:00100406", - "urlPattern": "http://metlin.scripps.edu/metabo_info.php?molid={$id}", - "name": "METLIN at Scripps Center, Molecular Biology and Center for Mass Spectrometry, La Jolla", - "description": "METLIN at Scripps Center, Molecular Biology and Center for Mass Spectrometry, La Jolla", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1455", - "resourceHomeUrl": "http://masspec.scripps.edu/", + "deprecated": false, + "deprecationDate": null, + "description": "METLIN at Scripps Center, Molecular Biology and Center for Mass Spectrometry, La Jolla", + "id": 931, "institution": { - "id": 930, - "name": "Scripps Research Institute, San Diego", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 930, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Scripps Research Institute, San Diego", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100406", + "name": "METLIN at Scripps Center, Molecular Biology and Center for Mass Spectrometry, La Jolla", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://masspec.scripps.edu/", + "sampleId": "1455", + "urlPattern": "http://metlin.scripps.edu/metabo_info.php?molid={$id}" } ], - "sampleId": "1455", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1455" }, { + "created": "2019-06-11T14:16:52.858+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The GeneCards human gene database stores gene related transcriptomic, genetic, proteomic, functional and disease information. It uses standard nomenclature and approved gene symbols. GeneCards presents a complete summary for each human gene.", "id": 932, - "prefix": "genecards", "mirId": "MIR:00000323", + "modified": "2019-06-11T14:16:52.858+0000", "name": "GeneCards", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z-0-9_]+(\\@)?$", - "description": "The GeneCards human gene database stores gene related transcriptomic, genetic, proteomic, functional and disease information. It uses standard nomenclature and approved gene symbols. GeneCards presents a complete summary for each human gene.", - "created": "2019-06-11T14:16:52.858+0000", - "modified": "2019-06-11T14:16:52.858+0000", + "prefix": "genecards", "resources": [ { - "id": 934, - "mirId": "MIR:00100407", - "urlPattern": "https://www.genecards.org/cgi-bin/carddisp.pl?gene={$id}", - "name": "GeneCards at Weizmann Institute", + "deprecated": false, + "deprecationDate": null, "description": "GeneCards at Weizmann Institute", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ABL1", - "resourceHomeUrl": "http://www.genecards.org/", + "id": 934, "institution": { - "id": 933, - "name": "Department of Molecular Genetics, Weizmann Institute of Science, Rehovot", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 933, "location": { "countryCode": "IL", "countryName": "Israel" - } + }, + "name": "Department of Molecular Genetics, Weizmann Institute of Science, Rehovot", + "rorId": null }, "location": { "countryCode": "IL", "countryName": "Israel" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100407", + "name": "GeneCards at Weizmann Institute", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.genecards.org/", + "sampleId": "ABL1", + "urlPattern": "https://www.genecards.org/cgi-bin/carddisp.pl?gene={$id}" } ], - "sampleId": "ABL1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ABL1" }, { + "created": "2019-06-11T14:16:53.082+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The MMRRC database is a repository of available mouse stocks and embryonic stem cell line collections.", "id": 935, - "prefix": "mmrrc", "mirId": "MIR:00000324", + "modified": "2019-06-11T14:16:53.082+0000", "name": "MMRRC", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The MMRRC database is a repository of available mouse stocks and embryonic stem cell line collections.", - "created": "2019-06-11T14:16:53.082+0000", - "modified": "2019-06-11T14:16:53.082+0000", + "prefix": "mmrrc", "resources": [ { - "id": 937, - "mirId": "MIR:00100414", - "urlPattern": "http://www.mmrrc.org/catalog/getSDS.php?mmrrc_id={$id}", - "name": "MMRRC at University of North Carolina", + "deprecated": false, + "deprecationDate": null, "description": "MMRRC at University of North Carolina", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "70", - "resourceHomeUrl": "http://www.mmrrc.org/", + "id": 937, "institution": { - "id": 936, - "name": "University of North Carolina", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 936, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of North Carolina", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100414", + "name": "MMRRC at University of North Carolina", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.mmrrc.org/", + "sampleId": "70", + "urlPattern": "http://www.mmrrc.org/catalog/getSDS.php?mmrrc_id={$id}" } ], - "sampleId": "70", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "70" }, { + "created": "2019-06-11T14:16:53.335+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the UM-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. This collection refers to reaction information.", "id": 938, - "prefix": "umbbd.reaction", "mirId": "MIR:00000325", + "modified": "2019-06-11T14:16:53.335+0000", "name": "UM-BBD Reaction", + "namespaceEmbeddedInLui": false, "pattern": "^r\\d+$", - "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the UM-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. This collection refers to reaction information.", - "created": "2019-06-11T14:16:53.335+0000", - "modified": "2019-06-11T14:16:53.335+0000", + "prefix": "umbbd.reaction", "resources": [ { - "id": 939, - "mirId": "MIR:00100416", - "urlPattern": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=r&reacID={$id}", - "name": "Biocatalysis/Biodegradation Database Mirror (Reaction) at ETH Zurich", + "deprecated": false, + "deprecationDate": null, "description": "Biocatalysis/Biodegradation Database Mirror (Reaction) at ETH Zurich", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "r0001", - "resourceHomeUrl": "http://umbbd.ethz.ch/", + "id": 939, "institution": { - "id": 812, - "name": "ETH, Zurich", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 812, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "ETH, Zurich", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100416", + "name": "Biocatalysis/Biodegradation Database Mirror (Reaction) at ETH Zurich", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://umbbd.ethz.ch/", + "sampleId": "r0001", + "urlPattern": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=r&reacID={$id}" } ], - "sampleId": "r0001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "r0001" }, { + "created": "2019-06-11T14:16:53.546+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the UM-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. This collection refers to enzyme information.", "id": 940, - "prefix": "umbbd.enzyme", "mirId": "MIR:00000326", + "modified": "2019-06-11T14:16:53.546+0000", "name": "UM-BBD Enzyme", + "namespaceEmbeddedInLui": false, "pattern": "^e\\d+$", - "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the UM-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. This collection refers to enzyme information.", - "created": "2019-06-11T14:16:53.546+0000", - "modified": "2019-06-11T14:16:53.546+0000", + "prefix": "umbbd.enzyme", "resources": [ { - "id": 941, - "mirId": "MIR:00100418", - "urlPattern": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=ep&enzymeID={$id}", - "name": "Biocatalysis/Biodegradation Database Mirror (Enzyme) at ETH Zurich", + "deprecated": false, + "deprecationDate": null, "description": "Biocatalysis/Biodegradation Database Mirror (Enzyme) at ETH Zurich", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "e0333", - "resourceHomeUrl": "http://umbbd.ethz.ch/", + "id": 941, "institution": { - "id": 812, - "name": "ETH, Zurich", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 812, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "ETH, Zurich", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100418", + "name": "Biocatalysis/Biodegradation Database Mirror (Enzyme) at ETH Zurich", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://umbbd.ethz.ch/", + "sampleId": "e0333", + "urlPattern": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=ep&enzymeID={$id}" } ], - "sampleId": "e0333", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "e0333" }, { + "created": "2019-06-11T14:16:53.741+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the UM-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. This collection refers to pathway information.", "id": 942, - "prefix": "umbbd.pathway", "mirId": "MIR:00000327", + "modified": "2019-06-11T14:16:53.741+0000", "name": "UM-BBD Pathway", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the UM-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. This collection refers to pathway information.", - "created": "2019-06-11T14:16:53.741+0000", - "modified": "2019-06-11T14:16:53.741+0000", + "prefix": "umbbd.pathway", "resources": [ { - "id": 943, - "mirId": "MIR:00100420", - "urlPattern": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=p&pathway_abbr={$id}", - "name": "Biocatalysis/Biodegradation Database Mirror (Pathway) at ETH Zurich", + "deprecated": false, + "deprecationDate": null, "description": "Biocatalysis/Biodegradation Database Mirror (Pathway) at ETH Zurich", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ala", - "resourceHomeUrl": "http://umbbd.ethz.ch/", + "id": 943, "institution": { - "id": 812, - "name": "ETH, Zurich", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 812, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "ETH, Zurich", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100420", + "name": "Biocatalysis/Biodegradation Database Mirror (Pathway) at ETH Zurich", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://umbbd.ethz.ch/", + "sampleId": "ala", + "urlPattern": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=p&pathway_abbr={$id}" } ], - "sampleId": "ala", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ala" }, { + "created": "2019-06-11T14:16:53.927+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The UM-BBD Pathway Prediction System (PPS) predicts microbial catabolic reactions using substructure searching, a rule-base, and atom-to-atom mapping. The PPS recognizes organic functional groups found in a compound and predicts transformations based on biotransformation rules. These rules are based on reactions found in the UM-BBD database. This collection references those rules.", "id": 944, - "prefix": "umbbd.rule", "mirId": "MIR:00000328", + "modified": "2019-06-11T14:16:53.927+0000", "name": "UM-BBD Biotransformation Rule", + "namespaceEmbeddedInLui": false, "pattern": "^bt\\d+$", - "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The UM-BBD Pathway Prediction System (PPS) predicts microbial catabolic reactions using substructure searching, a rule-base, and atom-to-atom mapping. The PPS recognizes organic functional groups found in a compound and predicts transformations based on biotransformation rules. These rules are based on reactions found in the UM-BBD database. This collection references those rules.", - "created": "2019-06-11T14:16:53.927+0000", - "modified": "2019-06-11T14:16:53.927+0000", + "prefix": "umbbd.rule", "resources": [ { - "id": 945, - "mirId": "MIR:00100421", - "urlPattern": "http://www.umbbd.ethz.ch/servlets/rule.jsp?rule={$id}", - "name": "Biocatalysis/Biodegradation Database Mirror (Biotransformation Rule) at ETH Zurich", + "deprecated": false, + "deprecationDate": null, "description": "Biocatalysis/Biodegradation Database Mirror (Biotransformation Rule) at ETH Zurich", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "bt0001", - "resourceHomeUrl": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=allrules", + "id": 945, "institution": { - "id": 812, - "name": "ETH, Zurich", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 812, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "ETH, Zurich", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100421", + "name": "Biocatalysis/Biodegradation Database Mirror (Biotransformation Rule) at ETH Zurich", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=allrules", + "sampleId": "bt0001", + "urlPattern": "http://www.umbbd.ethz.ch/servlets/rule.jsp?rule={$id}" } ], - "sampleId": "bt0001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "bt0001" }, { + "created": "2019-06-11T14:16:54.147+0000", + "deprecated": false, + "deprecationDate": null, + "description": "mirEX is a comprehensive platform for comparative analysis of primary microRNA expression data, storing RT\u2013qPCR-based gene expression profile over seven development stages of Arabidopsis. It also provides RNA structural models, publicly available deep sequencing results and experimental procedure details. This collection provides profile information for a single microRNA over all development stages.", "id": 946, - "prefix": "mirex", "mirId": "MIR:00000329", + "modified": "2019-06-11T14:16:54.147+0000", "name": "mirEX", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+(\\w+)?$", - "description": "mirEX is a comprehensive platform for comparative analysis of primary microRNA expression data, storing RT–qPCR-based gene expression profile over seven development stages of Arabidopsis. It also provides RNA structural models, publicly available deep sequencing results and experimental procedure details. This collection provides profile information for a single microRNA over all development stages.", - "created": "2019-06-11T14:16:54.147+0000", - "modified": "2019-06-11T14:16:54.147+0000", + "prefix": "mirex", "resources": [ { - "id": 947, - "mirId": "MIR:00100423", - "urlPattern": "http://comgen.pl/mirex1/?page=results/record&name={$id}&exref=pp2a&limit=yes", - "name": "mirEX at Adam Mickiewicz University", + "deprecated": false, + "deprecationDate": null, "description": "mirEX at Adam Mickiewicz University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "165a", - "resourceHomeUrl": "http://comgen.pl/mirex/?page=home", + "id": 947, "institution": { - "id": 731, - "name": "Institute of Molecular Biology, Adam Mickiewicz University, Poznan", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 731, "location": { "countryCode": "PL", "countryName": "Poland" - } + }, + "name": "Institute of Molecular Biology, Adam Mickiewicz University, Poznan", + "rorId": null }, "location": { "countryCode": "PL", "countryName": "Poland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100423", + "name": "mirEX at Adam Mickiewicz University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://comgen.pl/mirex/?page=home", + "sampleId": "165a", + "urlPattern": "http://comgen.pl/mirex1/?page=results/record&name={$id}&exref=pp2a&limit=yes" } ], - "sampleId": "165a", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "165a" }, { + "created": "2019-06-11T14:16:54.345+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The dictyBase database provides data on the model organism Dictyostelium discoideum and related species. It contains the complete genome sequence, ESTs, gene models and functional annotations. This collection references expressed sequence tag (EST) information.", "id": 948, - "prefix": "dictybase.est", "mirId": "MIR:00000330", + "modified": "2019-06-11T14:16:54.345+0000", "name": "Dictybase EST", + "namespaceEmbeddedInLui": false, "pattern": "^DDB\\d+$", - "description": "The dictyBase database provides data on the model organism Dictyostelium discoideum and related species. It contains the complete genome sequence, ESTs, gene models and functional annotations. This collection references expressed sequence tag (EST) information.", - "created": "2019-06-11T14:16:54.345+0000", - "modified": "2019-06-11T14:16:54.345+0000", + "prefix": "dictybase.est", "resources": [ { - "id": 949, - "mirId": "MIR:00100424", - "urlPattern": "http://dictybase.org/db/cgi-bin/feature_page.pl?primary_id={$id}", - "name": "Dictybase Gene at Northwestern University", + "deprecated": false, + "deprecationDate": null, "description": "Dictybase Gene at Northwestern University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "DDB0016567", - "resourceHomeUrl": "http://dictybase.org/", + "id": 949, "institution": { - "id": 840, - "name": "Northwestern University Biomedical Informatics Center and Center for Genetic Medicine, Chicago, Illinois", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 840, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Northwestern University Biomedical Informatics Center and Center for Genetic Medicine, Chicago, Illinois", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100424", + "name": "Dictybase Gene at Northwestern University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://dictybase.org/", + "sampleId": "DDB0016567", + "urlPattern": "http://dictybase.org/db/cgi-bin/feature_page.pl?primary_id={$id}" } ], - "sampleId": "DDB0016567", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "DDB0016567" }, { + "created": "2019-06-11T14:18:08.223+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MobiDB is a database of protein disorder and mobility annotations.", "id": 1768, - "prefix": "mobidb", "mirId": "MIR:00000637", + "modified": "2019-06-11T14:18:08.223+0000", "name": "MobiDB", + "namespaceEmbeddedInLui": false, "pattern": "^[OPQ][0-9][A-Z0-9]{3}[0-9]|[A-NR-Z][0-9]([A-Z][A-Z0-9]{2}[0-9]){1,2}$", - "description": "MobiDB is a database of protein disorder and mobility annotations.", - "created": "2019-06-11T14:18:08.223+0000", - "modified": "2019-06-11T14:18:08.223+0000", + "prefix": "mobidb", "resources": [ { - "id": 1770, - "mirId": "MIR:00100842", - "urlPattern": "http://mobidb.bio.unipd.it/{$id}", - "name": "MobiDB", + "deprecated": false, + "deprecationDate": null, "description": "MobiDB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "P10636", - "resourceHomeUrl": "http://mobidb.bio.unipd.it", + "id": 1770, "institution": { - "id": 1769, - "name": "University of Padua", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1769, "location": { "countryCode": "IT", "countryName": "Italy" - } + }, + "name": "University of Padua", + "rorId": null }, "location": { "countryCode": "IT", "countryName": "Italy" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100842", + "name": "MobiDB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://mobidb.bio.unipd.it", + "sampleId": "P10636", + "urlPattern": "http://mobidb.bio.unipd.it/{$id}" } ], - "sampleId": "P10636", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "P10636" }, { + "created": "2019-06-11T14:16:54.535+0000", + "deprecated": false, + "deprecationDate": null, + "description": "IMGT, the international ImMunoGeneTics project, is a collection of high-quality integrated databases specialising in Immunoglobulins, T cell receptors and the Major Histocompatibility Complex (MHC) of all vertebrate species. IMGT/HLA is a database for sequences of the human MHC, referred to as HLA. It includes all the official sequences for the WHO Nomenclature Committee For Factors of the HLA System. This collection references allele information through the WHO nomenclature.", "id": 950, - "prefix": "imgt.hla", "mirId": "MIR:00000331", + "modified": "2019-06-11T14:16:54.535+0000", "name": "IMGT HLA", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z0-9*:]+$", - "description": "IMGT, the international ImMunoGeneTics project, is a collection of high-quality integrated databases specialising in Immunoglobulins, T cell receptors and the Major Histocompatibility Complex (MHC) of all vertebrate species. IMGT/HLA is a database for sequences of the human MHC, referred to as HLA. It includes all the official sequences for the WHO Nomenclature Committee For Factors of the HLA System. This collection references allele information through the WHO nomenclature.", - "created": "2019-06-11T14:16:54.535+0000", - "modified": "2019-06-11T14:16:54.535+0000", + "prefix": "imgt.hla", "resources": [ { - "id": 951, - "mirId": "MIR:00100425", - "urlPattern": "https://www.ebi.ac.uk/cgi-bin/imgt/hla/get_allele.cgi?{$id}", - "name": "IMGT HLA at EBI", + "deprecated": false, + "deprecationDate": null, "description": "IMGT HLA at EBI", - "official": false, - "providerCode": "ebi", - "sampleId": "A*01:01:01:01", - "resourceHomeUrl": "https://www.ebi.ac.uk/imgt/hla/allele.html", + "id": 951, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100425", + "name": "IMGT HLA at EBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/imgt/hla/allele.html", + "sampleId": "A*01:01:01:01", + "urlPattern": "https://www.ebi.ac.uk/cgi-bin/imgt/hla/get_allele.cgi?{$id}" } ], - "sampleId": "A*01:01:01:01", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "A*01:01:01:01" }, { + "created": "2019-06-11T14:16:54.741+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Bloomington Drosophila Stock Center collects, maintains and distributes Drosophila melanogaster strains for research.", "id": 952, - "prefix": "bdsc", "mirId": "MIR:00000332", + "modified": "2019-06-11T14:16:54.741+0000", "name": "Bloomington Drosophila Stock Center", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Bloomington Drosophila Stock Center collects, maintains and distributes Drosophila melanogaster strains for research.", - "created": "2019-06-11T14:16:54.741+0000", - "modified": "2019-06-11T14:16:54.741+0000", + "prefix": "bdsc", "resources": [ { - "id": 954, - "mirId": "MIR:00100426", - "urlPattern": "https://bdsc.indiana.edu/stocks/{$id}", - "name": "BDSC at Indiana University", + "deprecated": false, + "deprecationDate": null, "description": "BDSC at Indiana University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "33607", - "resourceHomeUrl": "https://bdsc.indiana.edu/about/mission.html", + "id": 954, "institution": { - "id": 953, - "name": "Department of Biology, Indiana University, Bloomington", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 953, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Biology, Indiana University, Bloomington", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100426", + "name": "BDSC at Indiana University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://bdsc.indiana.edu/about/mission.html", + "sampleId": "33607", + "urlPattern": "https://bdsc.indiana.edu/stocks/{$id}" } ], - "sampleId": "33607", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "33607" }, { + "created": "2019-06-11T14:16:54.970+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Orientations of Proteins in Membranes (OPM) database provides spatial positions of membrane-bound peptides and proteins of known three-dimensional structure in the lipid bilayer, together with their structural classification, topology and intracellular localization.", "id": 955, - "prefix": "opm", "mirId": "MIR:00000333", + "modified": "2019-06-11T14:16:54.970+0000", "name": "OPM", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9][A-Za-z0-9]{3}$", - "description": "The Orientations of Proteins in Membranes (OPM) database provides spatial positions of membrane-bound peptides and proteins of known three-dimensional structure in the lipid bilayer, together with their structural classification, topology and intracellular localization.", - "created": "2019-06-11T14:16:54.970+0000", - "modified": "2019-06-11T14:16:54.970+0000", + "prefix": "opm", "resources": [ { - "id": 957, - "mirId": "MIR:00100427", - "urlPattern": "http://opm.phar.umich.edu/protein.php?pdbid={$id}", - "name": "OPM at University of Michigan", + "deprecated": false, + "deprecationDate": null, "description": "OPM at University of Michigan", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1h68", - "resourceHomeUrl": "http://opm.phar.umich.edu/", + "id": 957, "institution": { - "id": 956, - "name": "Department of Medicinal Chemistry, College of Pharmacy, University of Michigan", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 956, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Medicinal Chemistry, College of Pharmacy, University of Michigan", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100427", + "name": "OPM at University of Michigan", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://opm.phar.umich.edu/", + "sampleId": "1h68", + "urlPattern": "http://opm.phar.umich.edu/protein.php?pdbid={$id}" } ], - "sampleId": "1h68", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1h68" }, { + "created": "2019-06-11T14:16:55.214+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Allergome is a repository of data related to all IgE-binding compounds. Its purpose is to collect a list of allergenic sources and molecules by using the widest selection criteria and sources.", "id": 958, - "prefix": "allergome", "mirId": "MIR:00000334", + "modified": "2019-06-11T14:16:55.214+0000", "name": "Allergome", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Allergome is a repository of data related to all IgE-binding compounds. Its purpose is to collect a list of allergenic sources and molecules by using the widest selection criteria and sources.", - "created": "2019-06-11T14:16:55.214+0000", - "modified": "2019-06-11T14:16:55.214+0000", + "prefix": "allergome", "resources": [ { - "id": 960, - "mirId": "MIR:00100429", - "urlPattern": "http://www.allergome.org/script/dettaglio.php?id_molecule={$id}", - "name": "Allergome at Rome", + "deprecated": false, + "deprecationDate": null, "description": "Allergome at Rome", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1948", - "resourceHomeUrl": "http://www.allergome.org/", + "id": 960, "institution": { - "id": 959, - "name": "Center for Clinical and Experimental Allergology, Rome", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 959, "location": { "countryCode": "IT", "countryName": "Italy" - } + }, + "name": "Center for Clinical and Experimental Allergology, Rome", + "rorId": null }, "location": { "countryCode": "IT", "countryName": "Italy" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100429", + "name": "Allergome at Rome", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.allergome.org/", + "sampleId": "1948", + "urlPattern": "http://www.allergome.org/script/dettaglio.php?id_molecule={$id}" } ], - "sampleId": "1948", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1948" }, { + "created": "2019-06-11T14:16:55.438+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PomBase is a model organism database established to provide access to molecular data and biological information for the fission yeast Schizosaccharomyces pombe. It encompasses annotation of genomic sequence and features, comprehensive manual literature curation and genome-wide data sets.", "id": 961, - "prefix": "pombase", "mirId": "MIR:00000335", + "modified": "2019-06-11T14:16:55.438+0000", "name": "PomBase", + "namespaceEmbeddedInLui": false, "pattern": "^S\\w+(\\.)?\\w+(\\.)?$", - "description": "PomBase is a model organism database established to provide access to molecular data and biological information for the fission yeast Schizosaccharomyces pombe. It encompasses annotation of genomic sequence and features, comprehensive manual literature curation and genome-wide data sets.", - "created": "2019-06-11T14:16:55.438+0000", - "modified": "2019-06-11T14:16:55.438+0000", + "prefix": "pombase", "resources": [ { - "id": 963, - "mirId": "MIR:00100430", - "urlPattern": "http://www.pombase.org/spombe/result/{$id}", - "name": "PomBase at University of Cambridge", + "deprecated": false, + "deprecationDate": null, "description": "PomBase at University of Cambridge", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "SPCC13B11.01", - "resourceHomeUrl": "http://www.pombase.org/", + "id": 963, "institution": { - "id": 962, - "name": "Cambridge Systems Biology Centre, Department of Biochemistry, University of Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 962, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Cambridge Systems Biology Centre, Department of Biochemistry, University of Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100430", + "name": "PomBase at University of Cambridge", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.pombase.org/", + "sampleId": "SPCC13B11.01", + "urlPattern": "http://www.pombase.org/spombe/result/{$id}" } ], - "sampleId": "SPCC13B11.01", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "SPCC13B11.01" }, { + "created": "2019-06-11T14:16:55.662+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Human Protein Atlas (HPA) is a publicly available database with high-resolution images showing the spatial distribution of proteins in different normal and cancer human cell lines. Primary access to this collection is through Ensembl Gene identifiers.", "id": 964, - "prefix": "hpa", "mirId": "MIR:00000336", + "modified": "2019-06-11T14:16:55.662+0000", "name": "HPA", + "namespaceEmbeddedInLui": false, "pattern": "^ENSG\\d{11}$", - "description": "The Human Protein Atlas (HPA) is a publicly available database with high-resolution images showing the spatial distribution of proteins in different normal and cancer human cell lines. Primary access to this collection is through Ensembl Gene identifiers.", - "created": "2019-06-11T14:16:55.662+0000", - "modified": "2019-06-11T14:16:55.662+0000", + "prefix": "hpa", "resources": [ { - "id": 966, - "mirId": "MIR:00100431", - "urlPattern": "http://www.proteinatlas.org/{$id}", - "name": "Human Protein Atlas at AlbaNova University", + "deprecated": false, + "deprecationDate": null, "description": "Human Protein Atlas at AlbaNova University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ENSG00000026508", - "resourceHomeUrl": "http://www.proteinatlas.org/", + "id": 966, "institution": { - "id": 965, - "name": "Department of Proteomics, School of Biotechnology, AlbaNova University Center, Stockholm", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 965, "location": { "countryCode": "SE", "countryName": "Sweden" - } + }, + "name": "Department of Proteomics, School of Biotechnology, AlbaNova University Center, Stockholm", + "rorId": null }, "location": { "countryCode": "SE", "countryName": "Sweden" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100431", + "name": "Human Protein Atlas at AlbaNova University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.proteinatlas.org/", + "sampleId": "ENSG00000026508", + "urlPattern": "http://www.proteinatlas.org/{$id}" } ], - "sampleId": "ENSG00000026508", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ENSG00000026508" }, { + "created": "2019-06-11T14:16:55.877+0000", + "deprecated": false, + "deprecationDate": null, + "description": "JAX Mice is a catalogue of mouse strains supplied by the Jackson Laboratory.", "id": 967, - "prefix": "jaxmice", "mirId": "MIR:00000337", + "modified": "2019-06-11T14:16:55.877+0000", "name": "JAX Mice", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "JAX Mice is a catalogue of mouse strains supplied by the Jackson Laboratory.", - "created": "2019-06-11T14:16:55.877+0000", - "modified": "2019-06-11T14:16:55.877+0000", + "prefix": "jaxmice", "resources": [ { - "id": 969, - "mirId": "MIR:00100432", - "urlPattern": "http://jaxmice.jax.org/strain/{$id}.html", - "name": "JAX Mice at Jackson Laboratory", + "deprecated": false, + "deprecationDate": null, "description": "JAX Mice at Jackson Laboratory", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "005012", - "resourceHomeUrl": "http://jaxmice.jax.org/", + "id": 969, "institution": { - "id": 968, - "name": "The Jackson Laboratory, Sacremento, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 968, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Jackson Laboratory, Sacremento, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100432", + "name": "JAX Mice at Jackson Laboratory", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://jaxmice.jax.org/", + "sampleId": "005012", + "urlPattern": "http://jaxmice.jax.org/strain/{$id}.html" } ], - "sampleId": "005012", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "005012" }, { + "created": "2019-06-11T14:16:56.122+0000", + "deprecated": false, + "deprecationDate": null, + "description": "NameBank is a \"biological name server\" focused on storing names and objectively-derived nomenclatural attributes. NameBank is a repository for all recorded names including scientific names, vernacular (or common names), misspelled names, as well as ad-hoc nomenclatural labels that may have limited context.", "id": 970, - "prefix": "ubio.namebank", "mirId": "MIR:00000338", + "modified": "2019-06-11T14:16:56.122+0000", "name": "uBio NameBank", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "NameBank is a \"biological name server\" focused on storing names and objectively-derived nomenclatural attributes. NameBank is a repository for all recorded names including scientific names, vernacular (or common names), misspelled names, as well as ad-hoc nomenclatural labels that may have limited context.", - "created": "2019-06-11T14:16:56.122+0000", - "modified": "2019-06-11T14:16:56.122+0000", + "prefix": "ubio.namebank", "resources": [ { - "id": 972, - "mirId": "MIR:00100433", - "urlPattern": "http://www.ubio.org/browser/details.php?namebankID={$id}", - "name": "uBio NameBank at The Marine Biological Laboratory", + "deprecated": false, + "deprecationDate": null, "description": "uBio NameBank at The Marine Biological Laboratory", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2555646", - "resourceHomeUrl": "http://www.ubio.org", + "id": 972, "institution": { - "id": 971, - "name": "Marine Biological Laboratory, Woods Hole, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 971, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Marine Biological Laboratory, Woods Hole, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100433", + "name": "uBio NameBank at The Marine Biological Laboratory", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.ubio.org", + "sampleId": "2555646", + "urlPattern": "http://www.ubio.org/browser/details.php?namebankID={$id}" } ], - "sampleId": "2555646", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2555646" }, { + "created": "2019-06-11T14:16:56.366+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Yeast Transcription Factor Specificity Compendium (YeTFasCO) is a database of transcription factor specificities for the yeast Saccharomyces cerevisiae in Position Frequency Matrix (PFM) or Position Weight Matrix (PWM) formats.", "id": 973, - "prefix": "yetfasco", "mirId": "MIR:00000339", + "modified": "2019-06-11T14:16:56.366+0000", "name": "YeTFasCo", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+\\_\\d+(\\.\\d+)?$", - "description": "The Yeast Transcription Factor Specificity Compendium (YeTFasCO) is a database of transcription factor specificities for the yeast Saccharomyces cerevisiae in Position Frequency Matrix (PFM) or Position Weight Matrix (PWM) formats.", - "created": "2019-06-11T14:16:56.366+0000", - "modified": "2019-06-11T14:16:56.366+0000", + "prefix": "yetfasco", "resources": [ { - "id": 975, - "mirId": "MIR:00100434", - "urlPattern": "http://yetfasco.ccbr.utoronto.ca/showPFM.php?mot={$id}", - "name": "YeTFasCo at University of Toronto", + "deprecated": false, + "deprecationDate": null, "description": "YeTFasCo at University of Toronto", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "YOR172W_571.0", - "resourceHomeUrl": "http://yetfasco.ccbr.utoronto.ca/", + "id": 975, "institution": { - "id": 974, - "name": "Department of Molecular Genetics, Terrence Donnelly Centre for Cellular and Biomolecular Research, University of Toronto, Toronto", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 974, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "Department of Molecular Genetics, Terrence Donnelly Centre for Cellular and Biomolecular Research, University of Toronto, Toronto", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100434", + "name": "YeTFasCo at University of Toronto", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://yetfasco.ccbr.utoronto.ca/", + "sampleId": "YOR172W_571.0", + "urlPattern": "http://yetfasco.ccbr.utoronto.ca/showPFM.php?mot={$id}" } ], - "sampleId": "YOR172W_571.0", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "YOR172W_571.0" }, { + "created": "2019-06-11T14:16:56.599+0000", + "deprecated": false, + "deprecationDate": null, + "description": "TarBase stores microRNA (miRNA) information for miRNA\u2013gene interactions, as well as miRNA- and gene-related facts to information specific to the interaction and the experimental validation methodologies used.", "id": 976, - "prefix": "tarbase", "mirId": "MIR:00000340", + "modified": "2019-06-11T14:16:56.599+0000", "name": "TarBase", + "namespaceEmbeddedInLui": false, "pattern": "^[a-z]{3}\\-(mir|let|lin)\\-\\w+(\\-\\w+\\-\\w+)?", - "description": "TarBase stores microRNA (miRNA) information for miRNA–gene interactions, as well as miRNA- and gene-related facts to information specific to the interaction and the experimental validation methodologies used.", - "created": "2019-06-11T14:16:56.599+0000", - "modified": "2019-06-11T14:16:56.599+0000", + "prefix": "tarbase", "resources": [ { - "id": 978, - "mirId": "MIR:00100713", - "urlPattern": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index&mirnas={$id}", - "name": "TarBase v7 at University of Thessaly", + "deprecated": false, + "deprecationDate": null, "description": "TarBase v7 at University of Thessaly", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "hsa-let-7a-2-3p", - "resourceHomeUrl": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index", + "id": 978, "institution": { - "id": 977, - "name": "DIANA-Lab, Department of Electrical & Computer Engineering, University of Thessaly", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 977, "location": { "countryCode": "GR", "countryName": "Greece" - } + }, + "name": "DIANA-Lab, Department of Electrical & Computer Engineering, University of Thessaly", + "rorId": null }, "location": { "countryCode": "GR", "countryName": "Greece" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100713", + "name": "TarBase v7 at University of Thessaly", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index", + "sampleId": "hsa-let-7a-2-3p", + "urlPattern": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index&mirnas={$id}" } ], - "sampleId": "hsa-let-7a-2-3p", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "hsa-let-7a-2-3p" }, { + "created": "2019-06-11T14:16:56.827+0000", + "deprecated": false, + "deprecationDate": null, + "description": "CharProt is a database of biochemically characterized proteins designed to support automated annotation pipelines. Entries are annotated with gene name, symbol and various controlled vocabulary terms, including Gene Ontology terms, Enzyme Commission number and TransportDB accession.", "id": 979, - "prefix": "charprot", "mirId": "MIR:00000341", + "modified": "2019-06-11T14:16:56.827+0000", "name": "CharProt", + "namespaceEmbeddedInLui": false, "pattern": "^CH_\\d+$", - "description": "CharProt is a database of biochemically characterized proteins designed to support automated annotation pipelines. Entries are annotated with gene name, symbol and various controlled vocabulary terms, including Gene Ontology terms, Enzyme Commission number and TransportDB accession.", - "created": "2019-06-11T14:16:56.827+0000", - "modified": "2019-06-11T14:16:56.827+0000", + "prefix": "charprot", "resources": [ { - "id": 981, - "mirId": "MIR:00100436", - "urlPattern": "http://www.jcvi.org/charprotdb/index.cgi/view/{$id}", - "name": "CharProt at JCVI", + "deprecated": false, + "deprecationDate": null, "description": "CharProt at JCVI", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "CH_001923", - "resourceHomeUrl": "http://www.jcvi.org/charprotdb", + "id": 981, "institution": { - "id": 980, - "name": "J Craig Venter institute, Rockville, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 980, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "J Craig Venter institute, Rockville, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100436", + "name": "CharProt at JCVI", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.jcvi.org/charprotdb", + "sampleId": "CH_001923", + "urlPattern": "http://www.jcvi.org/charprotdb/index.cgi/view/{$id}" } ], - "sampleId": "CH_001923", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CH_001923" }, { + "created": "2019-06-11T14:16:57.058+0000", + "deprecated": false, + "deprecationDate": null, + "description": "OMA (Orthologous MAtrix) is a database that identifies orthologs among publicly available, complete genome sequences. It identifies orthologous relationships which can be accessed either group-wise, where all group members are orthologous to all other group members, or on a sequence-centric basis, where for a given protein all its orthologs in all other species are displayed. This collection references individual protein records.", "id": 982, - "prefix": "oma.protein", "mirId": "MIR:00000342", + "modified": "2019-06-11T14:16:57.058+0000", "name": "OMA Protein", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z0-9]{5}\\d+$", - "description": "OMA (Orthologous MAtrix) is a database that identifies orthologs among publicly available, complete genome sequences. It identifies orthologous relationships which can be accessed either group-wise, where all group members are orthologous to all other group members, or on a sequence-centric basis, where for a given protein all its orthologs in all other species are displayed. This collection references individual protein records.", - "created": "2019-06-11T14:16:57.058+0000", - "modified": "2019-06-11T14:16:57.058+0000", + "prefix": "oma.protein", "resources": [ { - "id": 984, - "mirId": "MIR:00100437", - "urlPattern": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayEntry&p1={$id}", - "name": "OMA Protein through OMA browser at ETH Zurich", + "deprecated": false, + "deprecationDate": null, "description": "OMA Protein through OMA browser at ETH Zurich", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "HUMAN16963", - "resourceHomeUrl": "https://omabrowser.org/cgi-bin/gateway.pl", + "id": 984, "institution": { - "id": 983, - "name": "ETH Zurich, Computer Science, Zurich", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 983, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "ETH Zurich, Computer Science, Zurich", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100437", + "name": "OMA Protein through OMA browser at ETH Zurich", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://omabrowser.org/cgi-bin/gateway.pl", + "sampleId": "HUMAN16963", + "urlPattern": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayEntry&p1={$id}" } ], - "sampleId": "HUMAN16963", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "HUMAN16963" }, { + "created": "2019-06-11T14:16:57.285+0000", + "deprecated": false, + "deprecationDate": null, + "description": "OMA (Orthologous MAtrix) is a database that identifies orthologs among publicly available, complete genome sequences. It identifies orthologous relationships which can be accessed either group-wise, where all group members are orthologous to all other group members, or on a sequence-centric basis, where for a given protein all its orthologs in all other species are displayed. This collection references groupings of orthologs.", "id": 985, - "prefix": "oma.grp", "mirId": "MIR:00000343", + "modified": "2019-06-11T14:16:57.285+0000", "name": "OMA Group", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z]+$", - "description": "OMA (Orthologous MAtrix) is a database that identifies orthologs among publicly available, complete genome sequences. It identifies orthologous relationships which can be accessed either group-wise, where all group members are orthologous to all other group members, or on a sequence-centric basis, where for a given protein all its orthologs in all other species are displayed. This collection references groupings of orthologs.", - "created": "2019-06-11T14:16:57.285+0000", - "modified": "2019-06-11T14:16:57.285+0000", + "prefix": "oma.grp", "resources": [ { - "id": 986, - "mirId": "MIR:00100438", - "urlPattern": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayGroup&p1={$id}", - "name": "OMA Group through OMA browser at ETH Zurich", + "deprecated": false, + "deprecationDate": null, "description": "OMA Group through OMA browser at ETH Zurich", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "LCSCCPN", - "resourceHomeUrl": "https://omabrowser.org/cgi-bin/gateway.pl", + "id": 986, "institution": { - "id": 983, - "name": "ETH Zurich, Computer Science, Zurich", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 983, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "ETH Zurich, Computer Science, Zurich", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100438", + "name": "OMA Group through OMA browser at ETH Zurich", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://omabrowser.org/cgi-bin/gateway.pl", + "sampleId": "LCSCCPN", + "urlPattern": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayGroup&p1={$id}" } ], - "sampleId": "LCSCCPN", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "LCSCCPN" }, { + "created": "2019-06-11T14:16:57.477+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Protein database is a collection of sequences from several sources, including translations from annotated coding regions in GenBank, RefSeq and TPA, as well as records from SwissProt, PIR, PRF, and PDB.", "id": 987, - "prefix": "ncbiprotein", "mirId": "MIR:00000344", - "name": "NCBI Protein", - "pattern": "^(\\w+\\d+(\\.\\d+)?)|(NP_\\d+)$", - "description": "The Protein database is a collection of sequences from several sources, including translations from annotated coding regions in GenBank, RefSeq and TPA, as well as records from SwissProt, PIR, PRF, and PDB.", - "created": "2019-06-11T14:16:57.477+0000", "modified": "2019-06-11T14:16:57.477+0000", + "name": "NCBI Protein", + "namespaceEmbeddedInLui": false, + "pattern": "^(\\w+\\d+(\\.\\d+)?)|(NP_\\d+)$", + "prefix": "ncbiprotein", "resources": [ { - "id": 988, - "mirId": "MIR:00100439", - "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}", - "name": "NCBI Protein at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "NCBI Protein at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "CAA71118.1", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/protein", + "id": 988, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100439", + "name": "NCBI Protein at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/protein", + "sampleId": "CAA71118.1", + "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}" } ], - "sampleId": "CAA71118.1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CAA71118.1" }, { + "created": "2019-06-11T14:16:57.671+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The GenPept database is a collection of sequences based on translations from annotated coding regions in GenBank.", "id": 989, - "prefix": "genpept", "mirId": "MIR:00000345", + "modified": "2019-06-11T14:16:57.671+0000", "name": "GenPept", + "namespaceEmbeddedInLui": false, "pattern": "^\\w{3}\\d{5}(\\.\\d+)?$", - "description": "The GenPept database is a collection of sequences based on translations from annotated coding regions in GenBank.", - "created": "2019-06-11T14:16:57.671+0000", - "modified": "2019-06-11T14:16:57.671+0000", + "prefix": "genpept", "resources": [ { - "id": 990, - "mirId": "MIR:00100440", - "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}?report=genpept", - "name": "GenPept at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "GenPept at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "CAA71118.1", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/protein", + "id": 990, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100440", + "name": "GenPept at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/protein", + "sampleId": "CAA71118.1", + "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}?report=genpept" } ], - "sampleId": "CAA71118.1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CAA71118.1" }, { + "created": "2019-06-11T14:16:57.856+0000", + "deprecated": false, + "deprecationDate": null, + "description": "A UniGene entry is a set of transcript sequences that appear to come from the same transcription locus (gene or expressed pseudogene), together with information on protein similarities, gene expression, cDNA clone reagents, and genomic location.", "id": 991, - "prefix": "unigene", "mirId": "MIR:00000346", + "modified": "2019-06-11T14:16:57.856+0000", "name": "UniGene", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "A UniGene entry is a set of transcript sequences that appear to come from the same transcription locus (gene or expressed pseudogene), together with information on protein similarities, gene expression, cDNA clone reagents, and genomic location.", - "created": "2019-06-11T14:16:57.856+0000", - "modified": "2019-06-11T14:16:57.856+0000", + "prefix": "unigene", "resources": [ { - "id": 993, - "mirId": "MIR:00100441", - "urlPattern": "http://www.ncbi.nlm.nih.gov/UniGene/clust.cgi?UGID={$id}", - "name": "UniGene at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "UniGene at NCBI", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "4900", - "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/unigene", + "id": 993, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100441", + "name": "UniGene at NCBI", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/unigene", + "sampleId": "4900", + "urlPattern": "http://www.ncbi.nlm.nih.gov/UniGene/clust.cgi?UGID={$id}" } ], - "sampleId": "4900", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "4900" }, { + "created": "2019-06-11T14:16:58.089+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BitterDB is a database of compounds reported to taste bitter to humans. The compounds can be searched by name, chemical structure, similarity to other bitter compounds, association with a particular human bitter taste receptor, and so on. The database also contains information on mutations in bitter taste receptors that were shown to influence receptor activation by bitter compounds. The aim of BitterDB is to facilitate studying the chemical features associated with bitterness. This collection references receptors.", "id": 994, - "prefix": "bitterdb.rec", "mirId": "MIR:00000347", + "modified": "2019-06-11T14:16:58.089+0000", "name": "BitterDB Receptor", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "BitterDB is a database of compounds reported to taste bitter to humans. The compounds can be searched by name, chemical structure, similarity to other bitter compounds, association with a particular human bitter taste receptor, and so on. The database also contains information on mutations in bitter taste receptors that were shown to influence receptor activation by bitter compounds. The aim of BitterDB is to facilitate studying the chemical features associated with bitterness. This collection references receptors.", - "created": "2019-06-11T14:16:58.089+0000", - "modified": "2019-06-11T14:16:58.089+0000", + "prefix": "bitterdb.rec", "resources": [ { - "id": 996, - "mirId": "MIR:00100442", - "urlPattern": "http://bitterdb.agri.huji.ac.il/Receptor.php?id={$id}", - "name": "BitterDB Receptor at The Hebrew University of Jerusalem", + "deprecated": false, + "deprecationDate": null, "description": "BitterDB Receptor at The Hebrew University of Jerusalem", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1", - "resourceHomeUrl": "http://bitterdb.agri.huji.ac.il/dbbitter.php", + "id": 996, "institution": { - "id": 995, - "name": "The Robert H Smith Faculty of Agriculture, Food and Environment, The Institute of Biochemistry, Food Science and Nutrition, The Hebrew University of Jerusalem, Rehovot", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 995, "location": { "countryCode": "IL", "countryName": "Israel" - } + }, + "name": "The Robert H Smith Faculty of Agriculture, Food and Environment, The Institute of Biochemistry, Food Science and Nutrition, The Hebrew University of Jerusalem, Rehovot", + "rorId": null }, "location": { "countryCode": "IL", "countryName": "Israel" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100442", + "name": "BitterDB Receptor at The Hebrew University of Jerusalem", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bitterdb.agri.huji.ac.il/dbbitter.php", + "sampleId": "1", + "urlPattern": "http://bitterdb.agri.huji.ac.il/Receptor.php?id={$id}" } ], - "sampleId": "1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1" }, { + "created": "2019-06-11T14:16:58.347+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BitterDB is a database of compounds reported to taste bitter to humans. The compounds can be searched by name, chemical structure, similarity to other bitter compounds, association with a particular human bitter taste receptor, and so on. The database also contains information on mutations in bitter taste receptors that were shown to influence receptor activation by bitter compounds. The aim of BitterDB is to facilitate studying the chemical features associated with bitterness. This collection references compounds.", "id": 997, - "prefix": "bitterdb.cpd", "mirId": "MIR:00000348", + "modified": "2019-06-11T14:16:58.347+0000", "name": "BitterDB Compound", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "BitterDB is a database of compounds reported to taste bitter to humans. The compounds can be searched by name, chemical structure, similarity to other bitter compounds, association with a particular human bitter taste receptor, and so on. The database also contains information on mutations in bitter taste receptors that were shown to influence receptor activation by bitter compounds. The aim of BitterDB is to facilitate studying the chemical features associated with bitterness. This collection references compounds.", - "created": "2019-06-11T14:16:58.347+0000", - "modified": "2019-06-11T14:16:58.347+0000", + "prefix": "bitterdb.cpd", "resources": [ { - "id": 998, - "mirId": "MIR:00100443", - "urlPattern": "http://bitterdb.agri.huji.ac.il/bitterdb/compound.php?id={$id}", - "name": "BitterDB Compound at The Hebrew University of Jerusalem", + "deprecated": false, + "deprecationDate": null, "description": "BitterDB Compound at The Hebrew University of Jerusalem", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "46", - "resourceHomeUrl": "http://bitterdb.agri.huji.ac.il/dbbitter.php", + "id": 998, "institution": { - "id": 995, - "name": "The Robert H Smith Faculty of Agriculture, Food and Environment, The Institute of Biochemistry, Food Science and Nutrition, The Hebrew University of Jerusalem, Rehovot", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 995, "location": { "countryCode": "IL", "countryName": "Israel" - } + }, + "name": "The Robert H Smith Faculty of Agriculture, Food and Environment, The Institute of Biochemistry, Food Science and Nutrition, The Hebrew University of Jerusalem, Rehovot", + "rorId": null }, "location": { "countryCode": "IL", "countryName": "Israel" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100443", + "name": "BitterDB Compound at The Hebrew University of Jerusalem", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bitterdb.agri.huji.ac.il/dbbitter.php", + "sampleId": "46", + "urlPattern": "http://bitterdb.agri.huji.ac.il/bitterdb/compound.php?id={$id}" } ], - "sampleId": "46", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "46" }, { + "created": "2019-06-11T14:16:58.543+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BioProject provides an organizational framework to access metadata about research projects and the data from the projects that are deposited into different databases. It provides information about a project\u2019s scope, material, objectives, funding source and general relevance categories.", "id": 999, - "prefix": "bioproject", "mirId": "MIR:00000349", + "modified": "2019-06-11T14:16:58.543+0000", "name": "BioProject", + "namespaceEmbeddedInLui": false, "pattern": "^PRJ[DEN][A-Z]\\d+$", - "description": "BioProject provides an organizational framework to access metadata about research projects and the data from the projects that are deposited into different databases. It provides information about a project’s scope, material, objectives, funding source and general relevance categories.", - "created": "2019-06-11T14:16:58.543+0000", - "modified": "2019-06-11T14:16:58.543+0000", + "prefix": "bioproject", "resources": [ { - "id": 1001, - "mirId": "MIR:00100444", - "urlPattern": "http://trace.ddbj.nig.ac.jp/BPSearch/bioproject?acc={$id}", - "name": "BioProject at DNA Data Bank of Japan", + "deprecated": false, + "deprecationDate": null, "description": "BioProject at DNA Data Bank of Japan", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PRJDB3", - "resourceHomeUrl": "http://trace.ddbj.nig.ac.jp/bioproject/", + "id": 1001, "institution": { - "id": 1000, - "name": "DNA Data Bank of Japan, Shizuoka", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1000, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "DNA Data Bank of Japan, Shizuoka", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100444", + "name": "BioProject at DNA Data Bank of Japan", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://trace.ddbj.nig.ac.jp/bioproject/", + "sampleId": "PRJDB3", + "urlPattern": "http://trace.ddbj.nig.ac.jp/BPSearch/bioproject?acc={$id}" }, { - "id": 1002, - "mirId": "MIR:00100445", - "urlPattern": "https://www.ncbi.nlm.nih.gov/bioproject?term={$id}", - "name": "BioProject at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "BioProject at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "PRJDB3", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/bioproject", + "id": 1002, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100445", + "name": "BioProject at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/bioproject", + "sampleId": "PRJDB3", + "urlPattern": "https://www.ncbi.nlm.nih.gov/bioproject?term={$id}" }, { - "id": 1003, - "mirId": "MIR:00100446", - "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", - "name": "BioProject at European Nucleotide Archive (ENA)", + "deprecated": false, + "deprecationDate": null, "description": "BioProject at European Nucleotide Archive (ENA)", - "official": false, - "providerCode": "ebi", - "sampleId": "PRJDB3", - "resourceHomeUrl": "https://www.ebi.ac.uk/ena/", + "id": 1003, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100446", + "name": "BioProject at European Nucleotide Archive (ENA)", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/ena/", + "sampleId": "PRJDB3", + "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}" } ], - "sampleId": "PRJDB3", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PRJDB3" }, { + "created": "2019-06-11T14:16:59.017+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The BioSample Database stores information about biological samples used in molecular experiments, such as sequencing, gene expression or proteomics. It includes reference samples, such as cell lines, which are repeatedly used in experiments. Accession numbers for the reference samples will be exchanged with a similar database at NCBI, and DDBJ (Japan). Record access may be affected due to different release cycles and inter-institutional synchronisation.", "id": 1004, - "prefix": "biosample", "mirId": "MIR:00000350", + "modified": "2019-06-11T14:16:59.017+0000", "name": "BioSample", + "namespaceEmbeddedInLui": false, "pattern": "^SAM[NED](\\w)?\\d+$", - "description": "The BioSample Database stores information about biological samples used in molecular experiments, such as sequencing, gene expression or proteomics. It includes reference samples, such as cell lines, which are repeatedly used in experiments. Accession numbers for the reference samples will be exchanged with a similar database at NCBI, and DDBJ (Japan). Record access may be affected due to different release cycles and inter-institutional synchronisation.", - "created": "2019-06-11T14:16:59.017+0000", - "modified": "2019-06-11T14:16:59.017+0000", + "prefix": "biosample", "resources": [ { - "id": 1005, - "mirId": "MIR:00100447", - "urlPattern": "https://www.ebi.ac.uk/biosamples/sample/{$id}", - "name": "BioSamples Database at EBI", + "deprecated": false, + "deprecationDate": null, "description": "BioSamples Database at EBI", - "official": true, - "providerCode": "ebi", - "sampleId": "SAMEA2397676", - "resourceHomeUrl": "https://www.ebi.ac.uk/biosamples/", + "id": 1005, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100447", + "name": "BioSamples Database at EBI", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/biosamples/", + "sampleId": "SAMEA2397676", + "urlPattern": "https://www.ebi.ac.uk/biosamples/sample/{$id}" }, { - "id": 1006, - "mirId": "MIR:00100706", - "urlPattern": "http://www.ncbi.nlm.nih.gov/biosample?term={$id}", - "name": "BioSample at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "BioSample at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "SAMN00000002", - "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/biosample", + "id": 1006, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100706", + "name": "BioSample at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/biosample", + "sampleId": "SAMN00000002", + "urlPattern": "http://www.ncbi.nlm.nih.gov/biosample?term={$id}" }, { - "id": 1008, - "mirId": "MIR:00100707", - "urlPattern": "http://trace.ddbj.nig.ac.jp/BSSearch/biosample?acc={$id}", - "name": "BioSample at DNA Data Bank of Japan", + "deprecated": false, + "deprecationDate": null, "description": "BioSample at DNA Data Bank of Japan", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "SAMD00005257", - "resourceHomeUrl": "http://trace.ddbj.nig.ac.jp/biosample/", + "id": 1008, "institution": { - "id": 1007, - "name": "Institution DNA Data Bank of Japan, Shizuoka", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1007, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Institution DNA Data Bank of Japan, Shizuoka", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100707", + "name": "BioSample at DNA Data Bank of Japan", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://trace.ddbj.nig.ac.jp/biosample/", + "sampleId": "SAMD00005257", + "urlPattern": "http://trace.ddbj.nig.ac.jp/BSSearch/biosample?acc={$id}" } ], - "sampleId": "SAMEA2397676", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "SAMEA2397676" }, { + "created": "2019-06-11T14:16:59.494+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PiroplasmaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "id": 1009, - "prefix": "piroplasma", "mirId": "MIR:00000351", + "modified": "2019-06-11T14:16:59.494+0000", "name": "PiroplasmaDB", + "namespaceEmbeddedInLui": false, "pattern": "^TA\\d+$", - "description": "PiroplasmaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", - "created": "2019-06-11T14:16:59.494+0000", - "modified": "2019-06-11T14:16:59.494+0000", + "prefix": "piroplasma", "resources": [ { - "id": 1011, - "mirId": "MIR:00100448", - "urlPattern": "http://piroplasmadb.org/piro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", - "name": "PiroplasmaBD at EuPathDB", + "deprecated": false, + "deprecationDate": null, "description": "PiroplasmaBD at EuPathDB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "TA14985", - "resourceHomeUrl": "http://piroplasmadb.org/", + "id": 1011, "institution": { - "id": 1010, - "name": "Center for Tropical & Emerging Global Diseases, University of Georgia, Georgia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1010, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Center for Tropical & Emerging Global Diseases, University of Georgia, Georgia", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100448", + "name": "PiroplasmaBD at EuPathDB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://piroplasmadb.org/", + "sampleId": "TA14985", + "urlPattern": "http://piroplasmadb.org/piro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}" } ], - "sampleId": "TA14985", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "TA14985" }, { + "created": "2019-06-11T14:16:59.723+0000", + "deprecated": false, + "deprecationDate": null, + "description": "UNITE is a fungal rDNA internal transcribed spacer (ITS) sequence database. It focuses on high-quality ITS sequences generated from fruiting bodies collected and identified by experts and deposited in public herbaria. Entries may be supplemented with metadata on describing locality, habitat, soil, climate, and interacting taxa.", "id": 1012, - "prefix": "unite", "mirId": "MIR:00000352", + "modified": "2019-06-11T14:16:59.723+0000", "name": "Unite", + "namespaceEmbeddedInLui": false, "pattern": "^UDB\\d{6}$", - "description": "UNITE is a fungal rDNA internal transcribed spacer (ITS) sequence database. It focuses on high-quality ITS sequences generated from fruiting bodies collected and identified by experts and deposited in public herbaria. Entries may be supplemented with metadata on describing locality, habitat, soil, climate, and interacting taxa.", - "created": "2019-06-11T14:16:59.723+0000", - "modified": "2019-06-11T14:16:59.723+0000", + "prefix": "unite", "resources": [ { - "id": 1014, - "mirId": "MIR:00100449", - "urlPattern": "http://unite.ut.ee/bl_forw.php?nimi={$id}", - "name": "Unite at University of Tartu", + "deprecated": false, + "deprecationDate": null, "description": "Unite at University of Tartu", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "UDB000691", - "resourceHomeUrl": "http://unite.ut.ee/", + "id": 1014, "institution": { - "id": 1013, - "name": "Institute of Botany, University of Tartu, Tartu", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1013, "location": { "countryCode": "EE", "countryName": "Estonia" - } + }, + "name": "Institute of Botany, University of Tartu, Tartu", + "rorId": null }, "location": { "countryCode": "EE", "countryName": "Estonia" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100449", + "name": "Unite at University of Tartu", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://unite.ut.ee/", + "sampleId": "UDB000691", + "urlPattern": "http://unite.ut.ee/bl_forw.php?nimi={$id}" } ], - "sampleId": "UDB000691", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "UDB000691" }, { + "created": "2019-06-11T14:16:59.945+0000", + "deprecated": false, + "deprecationDate": null, + "description": "NCI Metathesaurus (NCIm) is a wide-ranging biomedical terminology database that covers most terminologies used by NCI for clinical care, translational and basic research, and public information and administrative activities. It integrates terms and definitions from different terminologies, including NCI Thesaurus, however the representation is not identical.", "id": 1015, - "prefix": "ncim", "mirId": "MIR:00000353", + "modified": "2019-06-11T14:16:59.945+0000", "name": "NCIm", + "namespaceEmbeddedInLui": false, "pattern": "^C\\d+$", - "description": "NCI Metathesaurus (NCIm) is a wide-ranging biomedical terminology database that covers most terminologies used by NCI for clinical care, translational and basic research, and public information and administrative activities. It integrates terms and definitions from different terminologies, including NCI Thesaurus, however the representation is not identical.", - "created": "2019-06-11T14:16:59.945+0000", - "modified": "2019-06-11T14:16:59.945+0000", + "prefix": "ncim", "resources": [ { - "id": 1016, - "mirId": "MIR:00100450", - "urlPattern": "http://ncim.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20MetaThesaurus&code={$id}", - "name": "NCIm at National Cancer Institue", + "deprecated": false, + "deprecationDate": null, "description": "NCIm at National Cancer Institue", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "C0026339", - "resourceHomeUrl": "http://ncim.nci.nih.gov/", + "id": 1016, "institution": { - "id": 442, - "name": "National Cancer Institute, Center for Bioinformatics, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 442, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Cancer Institute, Center for Bioinformatics, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100450", + "name": "NCIm at National Cancer Institue", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://ncim.nci.nih.gov/", + "sampleId": "C0026339", + "urlPattern": "http://ncim.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20MetaThesaurus&code={$id}" } ], - "sampleId": "C0026339", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "C0026339" }, { + "created": "2019-06-11T14:17:00.162+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ProGlycProt (Prokaryotic Glycoprotein) is a repository of bacterial and archaeal glycoproteins with at least one experimentally validated glycosite (glycosylated residue). Each entry in the database is fully cross-referenced and enriched with available published information about source organism, coding gene, protein, glycosites, glycosylation type, attached glycan, associated oligosaccharyl/glycosyl transferases (OSTs/GTs), supporting references, and applicable additional information.", "id": 1017, - "prefix": "proglyc", "mirId": "MIR:00000354", + "modified": "2019-06-11T14:17:00.162+0000", "name": "ProGlycProt", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z]C\\d{1,3}$", - "description": "ProGlycProt (Prokaryotic Glycoprotein) is a repository of bacterial and archaeal glycoproteins with at least one experimentally validated glycosite (glycosylated residue). Each entry in the database is fully cross-referenced and enriched with available published information about source organism, coding gene, protein, glycosites, glycosylation type, attached glycan, associated oligosaccharyl/glycosyl transferases (OSTs/GTs), supporting references, and applicable additional information.", - "created": "2019-06-11T14:17:00.162+0000", - "modified": "2019-06-11T14:17:00.162+0000", + "prefix": "proglyc", "resources": [ { - "id": 1019, - "mirId": "MIR:00100451", - "urlPattern": "http://www.proglycprot.org/detail.aspx?ProId={$id}", - "name": "ProGlycProt at IMT", + "deprecated": false, + "deprecationDate": null, "description": "ProGlycProt at IMT", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "AC119", - "resourceHomeUrl": "http://www.proglycprot.org/", + "id": 1019, "institution": { - "id": 1018, - "name": "Institute of Microbial Technology, Council of Scientific and Industrial Research (CSIR), Chandigarh", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1018, "location": { "countryCode": "IN", "countryName": "India" - } + }, + "name": "Institute of Microbial Technology, Council of Scientific and Industrial Research (CSIR), Chandigarh", + "rorId": null }, "location": { "countryCode": "IN", "countryName": "India" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100451", + "name": "ProGlycProt at IMT", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.proglycprot.org/", + "sampleId": "AC119", + "urlPattern": "http://www.proglycprot.org/detail.aspx?ProId={$id}" } ], - "sampleId": "AC119", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AC119" }, { + "created": "2019-06-11T14:17:00.403+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Polbase is a database of DNA polymerases providing information on polymerase protein sequence, target DNA sequence, enzyme structure, sequence mutations and details on polymerase activity.", "id": 1020, - "prefix": "polbase", "mirId": "MIR:00000355", + "modified": "2019-06-11T14:17:00.403+0000", "name": "PolBase", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z-0-9]+$", - "description": "Polbase is a database of DNA polymerases providing information on polymerase protein sequence, target DNA sequence, enzyme structure, sequence mutations and details on polymerase activity.", - "created": "2019-06-11T14:17:00.403+0000", - "modified": "2019-06-11T14:17:00.403+0000", + "prefix": "polbase", "resources": [ { - "id": 1021, - "mirId": "MIR:00100452", - "urlPattern": "https://polbase.neb.com/polymerases/{$id}#sequences", - "name": "PolBase at New England BioLabs", + "deprecated": false, + "deprecationDate": null, "description": "PolBase at New England BioLabs", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "19-T4", - "resourceHomeUrl": "http://polbase.neb.com/", + "id": 1021, "institution": { - "id": 682, - "name": "New England Biolabs, Ipswich, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 682, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "New England Biolabs, Ipswich, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100452", + "name": "PolBase at New England BioLabs", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://polbase.neb.com/", + "sampleId": "19-T4", + "urlPattern": "https://polbase.neb.com/polymerases/{$id}#sequences" } ], - "sampleId": "19-T4", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "19-T4" }, { + "created": "2019-06-11T14:17:00.593+0000", + "deprecated": false, + "deprecationDate": null, + "description": "NucleaRDB is an information system that stores heterogenous data on Nuclear Hormone Receptors (NHRs). It contains data on sequences, ligand binding constants and mutations for NHRs.", "id": 1022, - "prefix": "nuclearbd", "mirId": "MIR:00000356", + "modified": "2019-06-11T14:17:00.593+0000", "name": "NucleaRDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+\\_\\w+$", - "description": "NucleaRDB is an information system that stores heterogenous data on Nuclear Hormone Receptors (NHRs). It contains data on sequences, ligand binding constants and mutations for NHRs.", - "created": "2019-06-11T14:17:00.593+0000", - "modified": "2019-06-11T14:17:00.593+0000", + "prefix": "nuclearbd", "resources": [ { - "id": 1024, - "mirId": "MIR:00100453", - "urlPattern": "http://www.receptors.org/nucleardb/proteins/{$id}", - "name": "NucleaRDB at Radboud University Nijmegen Medical Centre", + "deprecated": false, + "deprecationDate": null, "description": "NucleaRDB at Radboud University Nijmegen Medical Centre", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "prgr_human", - "resourceHomeUrl": "http://www.receptors.org/nucleardb/", + "id": 1024, "institution": { - "id": 1023, - "name": "CMBI, Radboud University Nijmegen Medical Centre, Dreijenplein, Wageningen", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1023, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "CMBI, Radboud University Nijmegen Medical Centre, Dreijenplein, Wageningen", + "rorId": null }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100453", + "name": "NucleaRDB at Radboud University Nijmegen Medical Centre", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.receptors.org/nucleardb/", + "sampleId": "prgr_human", + "urlPattern": "http://www.receptors.org/nucleardb/proteins/{$id}" } ], - "sampleId": "prgr_human", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "prgr_human" }, { + "created": "2019-06-11T14:17:00.815+0000", + "deprecated": false, + "deprecationDate": null, + "description": "SUPERFAMILY provides structural, functional and evolutionary information for proteins from all completely sequenced genomes, and large sequence collections such as UniProt.", "id": 1025, - "prefix": "supfam", "mirId": "MIR:00000357", + "modified": "2019-06-11T14:17:00.815+0000", "name": "SUPFAM", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "SUPERFAMILY provides structural, functional and evolutionary information for proteins from all completely sequenced genomes, and large sequence collections such as UniProt.", - "created": "2019-06-11T14:17:00.815+0000", - "modified": "2019-06-11T14:17:00.815+0000", + "prefix": "supfam", "resources": [ { - "id": 1027, - "mirId": "MIR:00100454", - "urlPattern": "http://supfam.org/SUPERFAMILY/cgi-bin/scop.cgi?ipid={$id}", - "name": "SUPFAM at MRC and University of Bristol", + "deprecated": false, + "deprecationDate": null, "description": "SUPFAM at MRC and University of Bristol", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "SSF57615", - "resourceHomeUrl": "http://supfam.org/SUPERFAMILY/", + "id": 1027, "institution": { - "id": 1026, - "name": "MRC Laboratory of Molecular Biology, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1026, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "MRC Laboratory of Molecular Biology, Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100454", + "name": "SUPFAM at MRC and University of Bristol", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://supfam.org/SUPERFAMILY/", + "sampleId": "SSF57615", + "urlPattern": "http://supfam.org/SUPERFAMILY/cgi-bin/scop.cgi?ipid={$id}" } ], - "sampleId": "SSF57615", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "SSF57615" }, { + "created": "2019-06-11T14:17:01.041+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The objective of this project is to provide high quality annotation for the rice genome Oryza sativa spp japonica cv Nipponbare. All genes are annotated with functional annotation including expression data, gene ontologies, and tagged lines.", "id": 1028, - "prefix": "ricegap", "mirId": "MIR:00000358", + "modified": "2019-06-11T14:17:01.041+0000", "name": "Rice Genome Annotation Project", + "namespaceEmbeddedInLui": false, "pattern": "^LOC\\_Os\\d{1,2}g\\d{5}$", - "description": "The objective of this project is to provide high quality annotation for the rice genome Oryza sativa spp japonica cv Nipponbare. All genes are annotated with functional annotation including expression data, gene ontologies, and tagged lines.", - "created": "2019-06-11T14:17:01.041+0000", - "modified": "2019-06-11T14:17:01.041+0000", + "prefix": "ricegap", "resources": [ { - "id": 1029, - "mirId": "MIR:00100455", - "urlPattern": "http://rice.plantbiology.msu.edu/cgi-bin/ORF_infopage.cgi?&orf={$id}", - "name": "Rice Genome Annotation Project at TIGR", + "deprecated": false, + "deprecationDate": null, "description": "Rice Genome Annotation Project at TIGR", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "LOC_Os02g13300", - "resourceHomeUrl": "http://rice.plantbiology.msu.edu/annotation_pseudo_current.shtml", + "id": 1029, "institution": { - "id": 909, - "name": "The Institute for Genomic Research, Rockville, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 909, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Institute for Genomic Research, Rockville, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100455", + "name": "Rice Genome Annotation Project at TIGR", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://rice.plantbiology.msu.edu/annotation_pseudo_current.shtml", + "sampleId": "LOC_Os02g13300", + "urlPattern": "http://rice.plantbiology.msu.edu/cgi-bin/ORF_infopage.cgi?&orf={$id}" } ], - "sampleId": "LOC_Os02g13300", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "LOC_Os02g13300" }, { + "created": "2019-06-11T14:17:01.276+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Protein Interaction Network Analysis (PINA) platform is an integrated platform for protein interaction network construction, filtering, analysis, visualization and management. It integrates protein-protein interaction data from six public curated databases and builds a complete, non-redundant protein interaction dataset for six model organisms.", "id": 1030, - "prefix": "pina", "mirId": "MIR:00000359", + "modified": "2019-06-11T14:17:01.276+0000", "name": "PINA", + "namespaceEmbeddedInLui": false, "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])$", - "description": "Protein Interaction Network Analysis (PINA) platform is an integrated platform for protein interaction network construction, filtering, analysis, visualization and management. It integrates protein-protein interaction data from six public curated databases and builds a complete, non-redundant protein interaction dataset for six model organisms.", - "created": "2019-06-11T14:17:01.276+0000", - "modified": "2019-06-11T14:17:01.276+0000", + "prefix": "pina", "resources": [ { - "id": 1032, - "mirId": "MIR:00100456", - "urlPattern": "http://cbg.garvan.unsw.edu.au/pina/interactome.oneP.do?ac={$id}&showExtend=null", - "name": "Protein Interaction Network Analysis (PINA) at Garvan Institute", + "deprecated": false, + "deprecationDate": null, "description": "Protein Interaction Network Analysis (PINA) at Garvan Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Q13485", - "resourceHomeUrl": "http://cbg.garvan.unsw.edu.au/pina/", + "id": 1032, "institution": { - "id": 1031, - "name": "Garvan Institute of Medical Research, Sydney", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1031, "location": { "countryCode": "AU", "countryName": "Australia" - } + }, + "name": "Garvan Institute of Medical Research, Sydney", + "rorId": null }, "location": { "countryCode": "AU", "countryName": "Australia" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100456", + "name": "Protein Interaction Network Analysis (PINA) at Garvan Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://cbg.garvan.unsw.edu.au/pina/", + "sampleId": "Q13485", + "urlPattern": "http://cbg.garvan.unsw.edu.au/pina/interactome.oneP.do?ac={$id}&showExtend=null" } ], - "sampleId": "Q13485", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Q13485" }, { + "created": "2019-06-11T14:17:01.500+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The UniProt Tissue List is a controlled vocabulary of terms used to annotate biological tissues. It also contains cross-references to other ontologies where tissue types are specified.", "id": 1033, - "prefix": "tissuelist", "mirId": "MIR:00000360", + "modified": "2019-06-11T14:17:01.500+0000", "name": "Tissue List", + "namespaceEmbeddedInLui": false, "pattern": "^TS-\\d{4}$", - "description": "The UniProt Tissue List is a controlled vocabulary of terms used to annotate biological tissues. It also contains cross-references to other ontologies where tissue types are specified.", - "created": "2019-06-11T14:17:01.500+0000", - "modified": "2019-06-11T14:17:01.500+0000", + "prefix": "tissuelist", "resources": [ { - "id": 1035, - "mirId": "MIR:00100457", - "urlPattern": "https://www.uniprot.org/tissues/{$id}", - "name": "Tissue List at Swiss Institute of Bioinformatics", + "deprecated": false, + "deprecationDate": null, "description": "Tissue List at Swiss Institute of Bioinformatics", - "official": false, - "providerCode": "sib", - "sampleId": "TS-0285", - "resourceHomeUrl": "https://www.uniprot.org/docs/tisslist.txt", + "id": 1035, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100457", + "name": "Tissue List at Swiss Institute of Bioinformatics", + "official": false, + "providerCode": "sib", + "resourceHomeUrl": "https://www.uniprot.org/docs/tisslist.txt", + "sampleId": "TS-0285", + "urlPattern": "https://www.uniprot.org/tissues/{$id}" } ], - "sampleId": "TS-0285", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "TS-0285" }, { + "created": "2019-06-11T14:17:01.735+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BacMap is an electronic, interactive atlas of fully sequenced bacterial genomes. It contains labeled, zoomable and searchable chromosome maps for sequenced prokaryotic (archaebacterial and eubacterial) species. Each map can be zoomed to the level of individual genes and each gene is hyperlinked to a richly annotated gene card. All bacterial genome maps are supplemented with separate prophage genome maps as well as separate tRNA and rRNA maps. Each bacterial chromosome entry in BacMap contains graphs and tables on a variety of gene and protein statistics. Likewise, every bacterial species entry contains a bacterial 'biography' card, with taxonomic details, phenotypic details, textual descriptions and images. This collection references 'biography' information.", "id": 1036, - "prefix": "bacmap.biog", "mirId": "MIR:00000361", + "modified": "2019-06-11T14:17:01.735+0000", "name": "BacMap Biography", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "BacMap is an electronic, interactive atlas of fully sequenced bacterial genomes. It contains labeled, zoomable and searchable chromosome maps for sequenced prokaryotic (archaebacterial and eubacterial) species. Each map can be zoomed to the level of individual genes and each gene is hyperlinked to a richly annotated gene card. All bacterial genome maps are supplemented with separate prophage genome maps as well as separate tRNA and rRNA maps. Each bacterial chromosome entry in BacMap contains graphs and tables on a variety of gene and protein statistics. Likewise, every bacterial species entry contains a bacterial 'biography' card, with taxonomic details, phenotypic details, textual descriptions and images. This collection references 'biography' information.", - "created": "2019-06-11T14:17:01.735+0000", - "modified": "2019-06-11T14:17:01.735+0000", + "prefix": "bacmap.biog", "resources": [ { - "id": 1038, - "mirId": "MIR:00100459", - "urlPattern": "http://bacmap.wishartlab.com/organisms/{$id}", - "name": "BacMap Biography at University of Alberta", + "deprecated": false, + "deprecationDate": null, "description": "BacMap Biography at University of Alberta", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1050", - "resourceHomeUrl": "http://bacmap.wishartlab.com/", + "id": 1038, "institution": { - "id": 1037, - "name": "Department of Computing Science, Food and Nutritional Science, University of Alberta, Edmonton", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1037, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "Department of Computing Science, Food and Nutritional Science, University of Alberta, Edmonton", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100459", + "name": "BacMap Biography at University of Alberta", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bacmap.wishartlab.com/", + "sampleId": "1050", + "urlPattern": "http://bacmap.wishartlab.com/organisms/{$id}" } ], - "sampleId": "1050", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1050" }, { + "created": "2019-06-11T14:17:01.955+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. This collection refers to records using the HGNC symbol.", "id": 1039, - "prefix": "hgnc.symbol", "mirId": "MIR:00000362", + "modified": "2019-06-11T14:17:01.955+0000", "name": "HGNC Symbol", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z-0-9_]+(\\@)?$", - "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. This collection refers to records using the HGNC symbol.", - "created": "2019-06-11T14:17:01.955+0000", - "modified": "2019-06-11T14:17:01.955+0000", + "prefix": "hgnc.symbol", "resources": [ { - "id": 1040, - "mirId": "MIR:00100460", - "urlPattern": "https://www.genenames.org/cgi-bin/gene_symbol_report?match={$id}", - "name": "HGNC Symbol at HUGO Genome Nomenclature Committee", + "deprecated": false, + "deprecationDate": null, "description": "HGNC Symbol at HUGO Genome Nomenclature Committee", - "official": false, - "providerCode": "ebi", - "sampleId": "DAPK1", - "resourceHomeUrl": "https://www.genenames.org/", + "id": 1040, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100460", + "name": "HGNC Symbol at HUGO Genome Nomenclature Committee", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.genenames.org/", + "sampleId": "DAPK1", + "urlPattern": "https://www.genenames.org/cgi-bin/gene_symbol_report?match={$id}" } ], - "sampleId": "DAPK1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "DAPK1" }, { + "created": "2019-06-11T14:17:02.153+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. The PANTHER Pathway collection references pathway information, primarily for signaling pathways, each with subfamilies and protein sequences mapped to individual pathway components.", "id": 1041, - "prefix": "panther.pathway", "mirId": "MIR:00000363", + "modified": "2019-06-11T14:17:02.153+0000", "name": "PANTHER Pathway", + "namespaceEmbeddedInLui": false, "pattern": "^P\\d{5}$", - "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. The PANTHER Pathway collection references pathway information, primarily for signaling pathways, each with subfamilies and protein sequences mapped to individual pathway components.", - "created": "2019-06-11T14:17:02.153+0000", - "modified": "2019-06-11T14:17:02.153+0000", + "prefix": "panther.pathway", "resources": [ { - "id": 1042, - "mirId": "MIR:00100461", - "urlPattern": "http://www.pantherdb.org/pathway/pathwayDiagram.jsp?catAccession={$id}", - "name": "PANTHER Pathway at USC (Los Angeles)", + "deprecated": false, + "deprecationDate": null, "description": "PANTHER Pathway at USC (Los Angeles)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "P00024", - "resourceHomeUrl": "http://www.pantherdb.org/", + "id": 1042, "institution": { - "id": 94, - "name": "Keck School of Medicine, University of Southern California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 94, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Keck School of Medicine, University of Southern California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100461", + "name": "PANTHER Pathway at USC (Los Angeles)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.pantherdb.org/", + "sampleId": "P00024", + "urlPattern": "http://www.pantherdb.org/pathway/pathwayDiagram.jsp?catAccession={$id}" } ], - "sampleId": "P00024", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "P00024" }, { + "created": "2019-06-11T14:17:02.358+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The web-based FAIRSharing catalogues aim to centralize bioscience data policies, reporting standards and links to other related portals. This collection references bioinformatics data exchange standards, which includes 'Reporting Guidelines', Format Specifications and Terminologies.", "id": 1043, - "prefix": "fairsharing", "mirId": "MIR:00000364", + "modified": "2019-06-11T14:17:02.358+0000", "name": "FAIRsharing", + "namespaceEmbeddedInLui": false, "pattern": "^bsg-[dscp]?\\d{6}$", - "description": "The web-based FAIRSharing catalogues aim to centralize bioscience data policies, reporting standards and links to other related portals. This collection references bioinformatics data exchange standards, which includes 'Reporting Guidelines', Format Specifications and Terminologies.", - "created": "2019-06-11T14:17:02.358+0000", - "modified": "2019-06-11T14:17:02.358+0000", + "prefix": "fairsharing", "resources": [ - { - "id": 1045, - "mirId": "MIR:00100463", - "urlPattern": "https://fairsharing.org/{$id}", - "name": "FAIRSharing at University of Oxford", + { + "deprecated": false, + "deprecationDate": null, "description": "FAIRSharing at University of Oxford", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "bsg-000052", - "resourceHomeUrl": "https://fairsharing.org/", + "id": 1045, "institution": { - "id": 1044, - "name": "Oxford e-Research Centre, University of Oxford, Oxford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1044, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Oxford e-Research Centre, University of Oxford, Oxford", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100463", + "name": "FAIRSharing at University of Oxford", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://fairsharing.org/", + "sampleId": "bsg-000052", + "urlPattern": "https://fairsharing.org/{$id}" } ], - "sampleId": "bsg-000052", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "bsg-000052" }, { + "created": "2019-06-11T14:17:02.591+0000", + "deprecated": false, + "deprecationDate": null, + "description": "FungiDB is a genomic resource for fungal genomes. It contains contains genome sequence and annotation from several fungal classes, including the Ascomycota classes, Eurotiomycetes, Sordariomycetes, Saccharomycetes and the Basidiomycota orders, Pucciniomycetes and Tremellomycetes, and the basal 'Zygomycete' lineage Mucormycotina.", "id": 1046, - "prefix": "fungidb", "mirId": "MIR:00000365", + "modified": "2019-06-11T14:17:02.591+0000", "name": "FungiDB", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z_0-9]+$", - "description": "FungiDB is a genomic resource for fungal genomes. It contains contains genome sequence and annotation from several fungal classes, including the Ascomycota classes, Eurotiomycetes, Sordariomycetes, Saccharomycetes and the Basidiomycota orders, Pucciniomycetes and Tremellomycetes, and the basal 'Zygomycete' lineage Mucormycotina.", - "created": "2019-06-11T14:17:02.591+0000", - "modified": "2019-06-11T14:17:02.591+0000", + "prefix": "fungidb", "resources": [ { - "id": 1048, - "mirId": "MIR:00100464", - "urlPattern": "https://fungidb.org/fungidb/app/record/gene/{$id}", - "name": "FungiDB at University of California", + "deprecated": false, + "deprecationDate": null, "description": "FungiDB at University of California", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "CNBG_0001", - "resourceHomeUrl": "https://fungidb.org/fungidb", + "id": 1048, "institution": { - "id": 1047, - "name": "Department of Plant Pathology & Microbiology, University of California, Riverside, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1047, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Plant Pathology & Microbiology, University of California, Riverside, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100464", + "name": "FungiDB at University of California", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://fungidb.org/fungidb", + "sampleId": "CNBG_0001", + "urlPattern": "https://fungidb.org/fungidb/app/record/gene/{$id}" } ], - "sampleId": "CNBG_0001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CNBG_0001" }, { + "created": "2019-06-11T14:18:08.473+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Neurovault is an online repository for statistical maps, parcellations and atlases of the brain. This collection references individual images.", "id": 1771, - "prefix": "neurovault.image", "mirId": "MIR:00000638", + "modified": "2019-06-11T14:18:08.473+0000", "name": "NeuroVault Image", + "namespaceEmbeddedInLui": false, "pattern": "^[1-9][0-9]*$", - "description": "Neurovault is an online repository for statistical maps, parcellations and atlases of the brain. This collection references individual images.", - "created": "2019-06-11T14:18:08.473+0000", - "modified": "2019-06-11T14:18:08.473+0000", + "prefix": "neurovault.image", "resources": [ { - "id": 1772, - "mirId": "MIR:00100843", - "urlPattern": "https://neurovault.org/images/{$id}", - "name": "NeuroVault", + "deprecated": false, + "deprecationDate": null, "description": "NeuroVault", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "58788", - "resourceHomeUrl": "http://neurovault.org", + "id": 1772, "institution": { - "id": 98, - "name": "Stanford University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 98, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Stanford University", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100843", + "name": "NeuroVault", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://neurovault.org", + "sampleId": "58788", + "urlPattern": "https://neurovault.org/images/{$id}" } ], - "sampleId": "58788", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "58788" }, { + "created": "2019-06-11T14:17:02.814+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DARC (Database of Aligned Ribosomal Complexes) stores available cryo-EM (electron microscopy) data and atomic coordinates of ribosomal particles from the PDB, which are aligned within a common coordinate system. The aligned coordinate system simplifies direct visualization of conformational changes in the ribosome, such as subunit rotation and head-swiveling, as well as direct comparison of bound ligands, such as antibiotics or translation factors.", "id": 1049, - "prefix": "darc", "mirId": "MIR:00000366", + "modified": "2019-06-11T14:17:02.814+0000", "name": "DARC", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "DARC (Database of Aligned Ribosomal Complexes) stores available cryo-EM (electron microscopy) data and atomic coordinates of ribosomal particles from the PDB, which are aligned within a common coordinate system. The aligned coordinate system simplifies direct visualization of conformational changes in the ribosome, such as subunit rotation and head-swiveling, as well as direct comparison of bound ligands, such as antibiotics or translation factors.", - "created": "2019-06-11T14:17:02.814+0000", - "modified": "2019-06-11T14:17:02.814+0000", + "prefix": "darc", "resources": [ { - "id": 1051, - "mirId": "MIR:00100465", - "urlPattern": "http://darcsite.genzentrum.lmu.de/darc/view.php?id={$id}", - "name": "DARC at University of Munich", + "deprecated": false, + "deprecationDate": null, "description": "DARC at University of Munich", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1250", - "resourceHomeUrl": "http://darcsite.genzentrum.lmu.de/darc/index.php", + "id": 1051, "institution": { - "id": 1050, - "name": "Gene Center and Department for Biochemistry and Center for integrated Protein Science Munich, University of Munich, Munich", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1050, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Gene Center and Department for Biochemistry and Center for integrated Protein Science Munich, University of Munich, Munich", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100465", + "name": "DARC at University of Munich", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://darcsite.genzentrum.lmu.de/darc/index.php", + "sampleId": "1250", + "urlPattern": "http://darcsite.genzentrum.lmu.de/darc/view.php?id={$id}" } ], - "sampleId": "1250", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1250" }, { + "created": "2019-06-11T14:17:03.033+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The DRSC (Drosophila RNAi Screening Cente) tracks both production of reagents for RNA interference (RNAi) screening in Drosophila cells and RNAi screen results. It maintains a list of Drosophila gene names, identifiers, symbols and synonyms and provides information for cell-based or in vivo RNAi reagents, other types of reagents, screen results, etc. corresponding for a given gene.", "id": 1052, - "prefix": "drsc", "mirId": "MIR:00000367", + "modified": "2019-06-11T14:17:03.033+0000", "name": "DRSC", + "namespaceEmbeddedInLui": false, "pattern": "^DRSC\\d+$", - "description": "The DRSC (Drosophila RNAi Screening Cente) tracks both production of reagents for RNA interference (RNAi) screening in Drosophila cells and RNAi screen results. It maintains a list of Drosophila gene names, identifiers, symbols and synonyms and provides information for cell-based or in vivo RNAi reagents, other types of reagents, screen results, etc. corresponding for a given gene.", - "created": "2019-06-11T14:17:03.033+0000", - "modified": "2019-06-11T14:17:03.033+0000", + "prefix": "drsc", "resources": [ { - "id": 1054, - "mirId": "MIR:00100466", - "urlPattern": "http://www.flyrnai.org/cgi-bin/RNAi_gene_lookup_public.pl?gname={$id}", - "name": "DRSC at Harvard Medical School", + "deprecated": false, + "deprecationDate": null, "description": "DRSC at Harvard Medical School", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "DRSC05221", - "resourceHomeUrl": "http://flyrnai.org/", + "id": 1054, "institution": { - "id": 1053, - "name": "Department of Genetics, Harvard Medical School, Boston, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1053, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Genetics, Harvard Medical School, Boston, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100466", + "name": "DRSC at Harvard Medical School", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://flyrnai.org/", + "sampleId": "DRSC05221", + "urlPattern": "http://www.flyrnai.org/cgi-bin/RNAi_gene_lookup_public.pl?gname={$id}" } ], - "sampleId": "DRSC05221", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "DRSC05221" }, { + "created": "2019-06-11T14:17:03.255+0000", + "deprecated": false, + "deprecationDate": null, + "description": "OriDB is a database of collated genome-wide mapping studies of confirmed and predicted replication origin sites in Saccharomyces cerevisiae and the fission yeast Schizosaccharomyces pombe. This collection references Schizosaccharomyces pombe.", "id": 1055, - "prefix": "oridb.schizo", "mirId": "MIR:00000368", + "modified": "2019-06-11T14:17:03.255+0000", "name": "OriDB Schizosaccharomyces", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "OriDB is a database of collated genome-wide mapping studies of confirmed and predicted replication origin sites in Saccharomyces cerevisiae and the fission yeast Schizosaccharomyces pombe. This collection references Schizosaccharomyces pombe.", - "created": "2019-06-11T14:17:03.255+0000", - "modified": "2019-06-11T14:17:03.255+0000", + "prefix": "oridb.schizo", "resources": [ { - "id": 1057, - "mirId": "MIR:00100467", - "urlPattern": "http://pombe.oridb.org/details.php?id={$id}", - "name": "OriDB Schizosaccharomyces at University of Nottingham", + "deprecated": false, + "deprecationDate": null, "description": "OriDB Schizosaccharomyces at University of Nottingham", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1", - "resourceHomeUrl": "http://pombe.oridb.org/index.php", + "id": 1057, "institution": { - "id": 1056, - "name": "Centre for Genetics and Genomics, The University of Nottingham, Queen's Medical Centre, Nottingham", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1056, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Centre for Genetics and Genomics, The University of Nottingham, Queen's Medical Centre, Nottingham", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100467", + "name": "OriDB Schizosaccharomyces at University of Nottingham", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://pombe.oridb.org/index.php", + "sampleId": "1", + "urlPattern": "http://pombe.oridb.org/details.php?id={$id}" } ], - "sampleId": "1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1" }, { + "created": "2019-06-11T14:17:03.475+0000", + "deprecated": false, + "deprecationDate": null, + "description": "OriDB is a database of collated genome-wide mapping studies of confirmed and predicted replication origin sites in Saccharomyces cerevisiae and the fission yeast Schizosaccharomyces pombe. This collection references Saccharomyces cerevisiae.", "id": 1058, - "prefix": "oridb.sacch", "mirId": "MIR:00000369", + "modified": "2019-06-11T14:17:03.475+0000", "name": "OriDB Saccharomyces", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "OriDB is a database of collated genome-wide mapping studies of confirmed and predicted replication origin sites in Saccharomyces cerevisiae and the fission yeast Schizosaccharomyces pombe. This collection references Saccharomyces cerevisiae.", - "created": "2019-06-11T14:17:03.475+0000", - "modified": "2019-06-11T14:17:03.475+0000", + "prefix": "oridb.sacch", "resources": [ { - "id": 1059, - "mirId": "MIR:00100468", - "urlPattern": "http://cerevisiae.oridb.org/details.php?id={$id}", - "name": "OriDB Saccharomyces at University of Nottingham", + "deprecated": false, + "deprecationDate": null, "description": "OriDB Saccharomyces at University of Nottingham", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1", - "resourceHomeUrl": "http://cerevisiae.oridb.org/index.php", + "id": 1059, "institution": { - "id": 1056, - "name": "Centre for Genetics and Genomics, The University of Nottingham, Queen's Medical Centre, Nottingham", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1056, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Centre for Genetics and Genomics, The University of Nottingham, Queen's Medical Centre, Nottingham", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100468", + "name": "OriDB Saccharomyces at University of Nottingham", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://cerevisiae.oridb.org/index.php", + "sampleId": "1", + "urlPattern": "http://cerevisiae.oridb.org/details.php?id={$id}" } ], - "sampleId": "1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1" }, { + "created": "2019-06-11T14:17:03.650+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PSCDB (Protein Structural Change DataBase) collects information on the relationship between protein structural change upon ligand binding. Each entry page provides detailed information about this structural motion.", "id": 1060, - "prefix": "pscdb", "mirId": "MIR:00000370", + "modified": "2019-06-11T14:17:03.650+0000", "name": "PSCDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The PSCDB (Protein Structural Change DataBase) collects information on the relationship between protein structural change upon ligand binding. Each entry page provides detailed information about this structural motion.", - "created": "2019-06-11T14:17:03.650+0000", - "modified": "2019-06-11T14:17:03.650+0000", + "prefix": "pscdb", "resources": [ { - "id": 1062, - "mirId": "MIR:00100469", - "urlPattern": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/{$id}.html", - "name": "PSCDB at Nagoya University", + "deprecated": false, + "deprecationDate": null, "description": "PSCDB at Nagoya University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "051", - "resourceHomeUrl": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/index.html", + "id": 1062, "institution": { - "id": 1061, - "name": "Graduate School of Information Science, Nagoya University, Furo-cho, Chikusa-ku", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1061, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Graduate School of Information Science, Nagoya University, Furo-cho, Chikusa-ku", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100469", + "name": "PSCDB at Nagoya University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/index.html", + "sampleId": "051", + "urlPattern": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/{$id}.html" } ], - "sampleId": "051", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "051" }, { + "created": "2019-06-11T14:17:03.870+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The SCOP (Structural Classification of Protein) database is a comprehensive ordering of all proteins of known structure according to their evolutionary, functional and structural relationships. The basic classification unit is the protein domain. Domains are hierarchically classified into species, proteins, families, superfamilies, folds, and classes.", "id": 1063, - "prefix": "scop", "mirId": "MIR:00000371", + "modified": "2019-06-11T14:17:03.870+0000", "name": "SCOP", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The SCOP (Structural Classification of Protein) database is a comprehensive ordering of all proteins of known structure according to their evolutionary, functional and structural relationships. The basic classification unit is the protein domain. Domains are hierarchically classified into species, proteins, families, superfamilies, folds, and classes.", - "created": "2019-06-11T14:17:03.870+0000", - "modified": "2019-06-11T14:17:03.870+0000", + "prefix": "scop", "resources": [ { - "id": 1065, - "mirId": "MIR:00100470", - "urlPattern": "http://scop.mrc-lmb.cam.ac.uk/scop/search.cgi?sunid={$id}", - "name": "SCOP at MRC", + "deprecated": false, + "deprecationDate": null, "description": "SCOP at MRC", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "47419", - "resourceHomeUrl": "http://scop.mrc-lmb.cam.ac.uk/scop/", + "id": 1065, "institution": { - "id": 1064, - "name": "MRC Laboratory of Molecular Biology, Centre for Protein Engineering, Hills Road, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1064, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "MRC Laboratory of Molecular Biology, Centre for Protein Engineering, Hills Road, Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 1067, - "mirId": "MIR:00100471", - "urlPattern": "http://scop.berkeley.edu/sunid={$id}", - "name": "SCOP at Berkeley", - "description": "SCOP at Berkeley", + "mirId": "MIR:00100470", + "name": "SCOP at MRC", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://scop.mrc-lmb.cam.ac.uk/scop/", "sampleId": "47419", - "resourceHomeUrl": "http://scop.berkeley.edu/", + "urlPattern": "http://scop.mrc-lmb.cam.ac.uk/scop/search.cgi?sunid={$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "SCOP at Berkeley", + "id": 1067, "institution": { - "id": 1066, - "name": "University of California, Berkeley", - "homeUrl": "https://www.berkeley.edu/", "description": "From a group of academic pioneers in 1868 to the Free Speech Movement in 1964, Berkeley is a place where the brightest minds from across the globe come together to explore, ask questions and improve the world.", - "rorId": "https://ror.org/01an7q238", + "homeUrl": "https://www.berkeley.edu/", + "id": 1066, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of California, Berkeley", + "rorId": "https://ror.org/01an7q238" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100471", + "name": "SCOP at Berkeley", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://scop.berkeley.edu/", + "sampleId": "47419", + "urlPattern": "http://scop.berkeley.edu/sunid={$id}" } ], - "sampleId": "47419", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "47419" }, { + "created": "2019-06-11T14:17:04.223+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The European Nucleotide Archive (ENA) captures and presents information relating to experimental workflows that are based around nucleotide sequencing. ENA is made up of a number of distinct databases that includes EMBL-Bank, the Sequence Read Archive (SRA) and the Trace Archive each with their own data formats and standards. This collection references Embl-Bank identifiers.", "id": 1068, - "prefix": "ena.embl", "mirId": "MIR:00000372", + "modified": "2019-06-11T14:17:04.223+0000", "name": "ENA", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z]+[0-9]+(\\.\\d+)?$", - "description": "The European Nucleotide Archive (ENA) captures and presents information relating to experimental workflows that are based around nucleotide sequencing. ENA is made up of a number of distinct databases that includes EMBL-Bank, the Sequence Read Archive (SRA) and the Trace Archive each with their own data formats and standards. This collection references Embl-Bank identifiers.", - "created": "2019-06-11T14:17:04.223+0000", - "modified": "2019-06-11T14:17:04.223+0000", + "prefix": "ena.embl", "resources": [ { - "id": 1070, - "mirId": "MIR:00100889", - "urlPattern": "https://www.ncbi.nlm.nih.gov/nuccore/{$id}", - "name": "ENA through GenBank", + "deprecated": false, + "deprecationDate": null, "description": "ENA through GenBank", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "BN000065", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/Genbank/", + "id": 1070, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100889", + "name": "ENA through GenBank", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/Genbank/", + "sampleId": "BN000065", + "urlPattern": "https://www.ncbi.nlm.nih.gov/nuccore/{$id}" }, { - "id": 1069, - "mirId": "MIR:00100473", - "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", - "name": "ENA at European Bioinformatics Institute", + "deprecated": false, + "deprecationDate": null, "description": "ENA at European Bioinformatics Institute", - "official": true, - "providerCode": "ebi", - "sampleId": "BN000065", - "resourceHomeUrl": "https://www.ebi.ac.uk/ena/", + "id": 1069, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100473", + "name": "ENA at European Bioinformatics Institute", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/ena/", + "sampleId": "BN000065", + "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}" } ], - "sampleId": "BN000065", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "BN000065" }, { + "created": "2019-06-11T14:17:04.514+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DOMMINO is a database of macromolecular interactions that includes the interactions between protein domains, interdomain linkers, N- and C-terminal regions and protein peptides.", "id": 1071, - "prefix": "dommino", "mirId": "MIR:00000373", + "modified": "2019-06-11T14:17:04.514+0000", "name": "DOMMINO", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9][A-Za-z0-9]{3}$", - "description": "DOMMINO is a database of macromolecular interactions that includes the interactions between protein domains, interdomain linkers, N- and C-terminal regions and protein peptides.", - "created": "2019-06-11T14:17:04.514+0000", - "modified": "2019-06-11T14:17:04.514+0000", + "prefix": "dommino", "resources": [ { - "id": 1073, - "mirId": "MIR:00100474", - "urlPattern": "http://orion.rnet.missouri.edu/~nz953/DOMMINO/index.php/result/show_network/{$id}", - "name": "DOMMINO at University of Missouri", + "deprecated": false, + "deprecationDate": null, "description": "DOMMINO at University of Missouri", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2GC4", - "resourceHomeUrl": "http://dommino.org/", + "id": 1073, "institution": { - "id": 1072, - "name": "Informatics Institute and Department of Computer Science and Bond Life Science Center, University of Missouri, Columbia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1072, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Informatics Institute and Department of Computer Science and Bond Life Science Center, University of Missouri, Columbia", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100474", + "name": "DOMMINO at University of Missouri", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://dommino.org/", + "sampleId": "2GC4", + "urlPattern": "http://orion.rnet.missouri.edu/~nz953/DOMMINO/index.php/result/show_network/{$id}" } ], - "sampleId": "2GC4", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2GC4" }, { + "created": "2019-06-11T14:17:04.735+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. PANTHER tree is a key element of the PANTHER System to represent \u2018all\u2019 of the evolutionary events in the gene family. PANTHER nodes represent the evolutionary events, either speciation or duplication, within the tree. PANTHER is maintaining stable identifier for these nodes.", "id": 1074, - "prefix": "panther.node", "mirId": "MIR:00000374", + "modified": "2019-06-11T14:17:04.735+0000", "name": "PANTHER Node", + "namespaceEmbeddedInLui": false, "pattern": "^PTN\\d{9}$", - "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. PANTHER tree is a key element of the PANTHER System to represent ‘all’ of the evolutionary events in the gene family. PANTHER nodes represent the evolutionary events, either speciation or duplication, within the tree. PANTHER is maintaining stable identifier for these nodes.", - "created": "2019-06-11T14:17:04.735+0000", - "modified": "2019-06-11T14:17:04.735+0000", + "prefix": "panther.node", "resources": [ { - "id": 1075, - "mirId": "MIR:00100475", - "urlPattern": "http://www.pantree.org/node/annotationNode.jsp?id={$id}", - "name": "PANTHER Node at USC (Los Angeles)", + "deprecated": false, + "deprecationDate": null, "description": "PANTHER Node at USC (Los Angeles)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PTN000000026", - "resourceHomeUrl": "http://pantree.org/", + "id": 1075, "institution": { - "id": 94, - "name": "Keck School of Medicine, University of Southern California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 94, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Keck School of Medicine, University of Southern California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100475", + "name": "PANTHER Node at USC (Los Angeles)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://pantree.org/", + "sampleId": "PTN000000026", + "urlPattern": "http://www.pantree.org/node/annotationNode.jsp?id={$id}" } ], - "sampleId": "PTN000000026", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PTN000000026" }, { + "created": "2019-06-11T14:17:04.925+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Consensus CDS (CCDS) project is a collaborative effort to identify a core set of human and mouse protein coding regions that are consistently annotated and of high quality. The CCDS set is calculated following coordinated whole genome annotation updates carried out by the NCBI, WTSI, and Ensembl. The long term goal is to support convergence towards a standard set of gene annotations.", "id": 1076, - "prefix": "ccds", "mirId": "MIR:00000375", + "modified": "2019-06-11T14:17:04.925+0000", "name": "Consensus CDS", + "namespaceEmbeddedInLui": false, "pattern": "^CCDS\\d+\\.\\d+$", - "description": "The Consensus CDS (CCDS) project is a collaborative effort to identify a core set of human and mouse protein coding regions that are consistently annotated and of high quality. The CCDS set is calculated following coordinated whole genome annotation updates carried out by the NCBI, WTSI, and Ensembl. The long term goal is to support convergence towards a standard set of gene annotations.", - "created": "2019-06-11T14:17:04.925+0000", - "modified": "2019-06-11T14:17:04.925+0000", + "prefix": "ccds", "resources": [ { - "id": 1077, - "mirId": "MIR:00100477", - "urlPattern": "http://www.ncbi.nlm.nih.gov/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&DATA={$id}", - "name": "Consensus CDS at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "Consensus CDS at NCBI", - "official": true, - "providerCode": "ncbi", - "sampleId": "CCDS13573.1", - "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/CCDS/", + "id": 1077, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100477", + "name": "Consensus CDS at NCBI", + "official": true, + "providerCode": "ncbi", + "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/CCDS/", + "sampleId": "CCDS13573.1", + "urlPattern": "http://www.ncbi.nlm.nih.gov/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&DATA={$id}" } ], - "sampleId": "CCDS13573.1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CCDS13573.1" }, { + "created": "2019-06-11T14:17:05.741+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Human Protein Reference Database (HPRD) represents a centralized platform to visually depict and integrate information pertaining to domain architecture, post-translational modifications, interaction networks and disease association for each protein in the human proteome.", "id": 1086, - "prefix": "hprd", "mirId": "MIR:00000377", + "modified": "2019-06-11T14:17:05.741+0000", "name": "HPRD", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Human Protein Reference Database (HPRD) represents a centralized platform to visually depict and integrate information pertaining to domain architecture, post-translational modifications, interaction networks and disease association for each protein in the human proteome.", - "created": "2019-06-11T14:17:05.741+0000", - "modified": "2019-06-11T14:17:05.741+0000", + "prefix": "hprd", "resources": [ { - "id": 1088, - "mirId": "MIR:00100479", - "urlPattern": "http://www.hprd.org/protein/{$id}", - "name": "Human Protein Reference Database", + "deprecated": false, + "deprecationDate": null, "description": "Human Protein Reference Database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "00001", - "resourceHomeUrl": "http://www.hprd.org/", + "id": 1088, "institution": { - "id": 1087, - "name": "Institute of Bioinformatics, International Tech Park, Bangalore", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1087, "location": { "countryCode": "IN", "countryName": "India" - } + }, + "name": "Institute of Bioinformatics, International Tech Park, Bangalore", + "rorId": null }, "location": { "countryCode": "IN", "countryName": "India" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100479", + "name": "Human Protein Reference Database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.hprd.org/", + "sampleId": "00001", + "urlPattern": "http://www.hprd.org/protein/{$id}" } ], - "sampleId": "00001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "00001" }, { + "created": "2019-06-11T14:17:05.964+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Gene Expression Atlas (GXA) is a semantically enriched database of meta-analysis based summary statistics over a curated subset of ArrayExpress Archive, servicing queries for condition-specific gene expression patterns as well as broader exploratory searches for biologically interesting genes/samples. This collection references genes.", "id": 1089, - "prefix": "gxa.gene", "mirId": "MIR:00000378", - "name": "GXA Gene", - "pattern": "^\\w+$", - "description": "The Gene Expression Atlas (GXA) is a semantically enriched database of meta-analysis based summary statistics over a curated subset of ArrayExpress Archive, servicing queries for condition-specific gene expression patterns as well as broader exploratory searches for biologically interesting genes/samples. This collection references genes.", - "created": "2019-06-11T14:17:05.964+0000", "modified": "2019-06-11T14:17:05.964+0000", + "name": "GXA Gene", + "namespaceEmbeddedInLui": false, + "pattern": "^\\w+$", + "prefix": "gxa.gene", "resources": [ { - "id": 1090, - "mirId": "MIR:00100482", - "urlPattern": "https://www.ebi.ac.uk/gxa/genes/{$id}", - "name": "GXA Gene at EBI", + "deprecated": false, + "deprecationDate": null, "description": "GXA Gene at EBI", - "official": false, - "providerCode": "ebi", - "sampleId": "AT4G01080", - "resourceHomeUrl": "https://www.ebi.ac.uk/gxa/", + "id": 1090, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100482", + "name": "GXA Gene at EBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/gxa/", + "sampleId": "AT4G01080", + "urlPattern": "https://www.ebi.ac.uk/gxa/genes/{$id}" } ], - "sampleId": "AT4G01080", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AT4G01080" }, { + "created": "2019-06-11T14:17:06.163+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Gene Expression Atlas (GXA) is a semantically enriched database of meta-analysis based summary statistics over a curated subset of ArrayExpress Archive, servicing queries for condition-specific gene expression patterns as well as broader exploratory searches for biologically interesting genes/samples. This collection references experiments.", "id": 1091, - "prefix": "gxa.expt", "mirId": "MIR:00000379", + "modified": "2019-06-11T14:17:06.163+0000", "name": "GXA Expt", + "namespaceEmbeddedInLui": false, "pattern": "^[AEP]-\\w{4}-\\d+$", - "description": "The Gene Expression Atlas (GXA) is a semantically enriched database of meta-analysis based summary statistics over a curated subset of ArrayExpress Archive, servicing queries for condition-specific gene expression patterns as well as broader exploratory searches for biologically interesting genes/samples. This collection references experiments.", - "created": "2019-06-11T14:17:06.163+0000", - "modified": "2019-06-11T14:17:06.163+0000", + "prefix": "gxa.expt", "resources": [ { - "id": 1092, - "mirId": "MIR:00100483", - "urlPattern": "https://www.ebi.ac.uk/gxa/experiments/{$id}", - "name": "GXA Expt at EBI", + "deprecated": false, + "deprecationDate": null, "description": "GXA Expt at EBI", - "official": true, - "providerCode": "ebi", - "sampleId": "E-MTAB-2037", - "resourceHomeUrl": "https://www.ebi.ac.uk/gxa/", + "id": 1092, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100483", + "name": "GXA Expt at EBI", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/gxa/", + "sampleId": "E-MTAB-2037", + "urlPattern": "https://www.ebi.ac.uk/gxa/experiments/{$id}" }, { - "id": 1093, - "mirId": "MIR:00100857", - "urlPattern": "https://www.omicsdi.org/dataset/atlas-experiments/{$id}", - "name": "GXA Expt through OmicsDI", + "deprecated": false, + "deprecationDate": null, "description": "GXA Expt through OmicsDI", - "official": false, - "providerCode": "omicsdi", - "sampleId": "E-MTAB-2037", - "resourceHomeUrl": "https://www.omicsdi.org/", + "id": 1093, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100857", + "name": "GXA Expt through OmicsDI", + "official": false, + "providerCode": "omicsdi", + "resourceHomeUrl": "https://www.omicsdi.org/", + "sampleId": "E-MTAB-2037", + "urlPattern": "https://www.omicsdi.org/dataset/atlas-experiments/{$id}" } ], - "sampleId": "E-MTAB-2037", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "E-MTAB-2037" }, { + "created": "2019-06-11T14:17:06.457+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MetaboLights is a database for Metabolomics experiments and derived information. The database is cross-species, cross-technique and covers metabolite structures and their reference spectra as well as their biological roles, locations and concentrations, and experimental data from metabolic experiments. This collection references individual metabolomics studies.", "id": 1094, - "prefix": "metabolights", "mirId": "MIR:00000380", + "modified": "2019-06-11T14:17:06.457+0000", "name": "MetaboLights", + "namespaceEmbeddedInLui": false, "pattern": "^MTBLS\\d+$", - "description": "MetaboLights is a database for Metabolomics experiments and derived information. The database is cross-species, cross-technique and covers metabolite structures and their reference spectra as well as their biological roles, locations and concentrations, and experimental data from metabolic experiments. This collection references individual metabolomics studies.", - "created": "2019-06-11T14:17:06.457+0000", - "modified": "2019-06-11T14:17:06.457+0000", + "prefix": "metabolights", "resources": [ { - "id": 1095, - "mirId": "MIR:00100486", - "urlPattern": "https://www.ebi.ac.uk/metabolights/{$id}", - "name": "MetaboLights at EBI", + "deprecated": false, + "deprecationDate": null, "description": "MetaboLights at EBI", - "official": true, - "providerCode": "ebi", - "sampleId": "MTBLS1", - "resourceHomeUrl": "https://www.ebi.ac.uk/metabolights/", + "id": 1095, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100486", + "name": "MetaboLights at EBI", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/metabolights/", + "sampleId": "MTBLS1", + "urlPattern": "https://www.ebi.ac.uk/metabolights/{$id}" }, { - "id": 1096, - "mirId": "MIR:00100853", - "urlPattern": "https://www.omicsdi.org/dataset/metabolights_dataset/{$id}", - "name": "MataboLights through OmicsDI", + "deprecated": false, + "deprecationDate": null, "description": "MataboLights through OmicsDI", - "official": false, - "providerCode": "omicsdi", - "sampleId": "MTBLS1", - "resourceHomeUrl": "https://www.omicsdi.org/", + "id": 1096, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100853", + "name": "MataboLights through OmicsDI", + "official": false, + "providerCode": "omicsdi", + "resourceHomeUrl": "https://www.omicsdi.org/", + "sampleId": "MTBLS1", + "urlPattern": "https://www.omicsdi.org/dataset/metabolights_dataset/{$id}" } ], - "sampleId": "MTBLS1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MTBLS1" }, { + "created": "2019-06-11T14:17:06.748+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The National Bibliography Number (NBN), is a URN-based publication identifier system employed by a variety of national libraries such as those of Germany, the Netherlands and Switzerland. They are used to identify documents archived in national libraries, in their native format or language, and are typically used for documents which do not have a publisher-assigned identifier.", "id": 1097, - "prefix": "nbn", "mirId": "MIR:00000381", + "modified": "2019-06-11T14:17:06.748+0000", "name": "National Bibliography Number", + "namespaceEmbeddedInLui": false, "pattern": "^urn\\:nbn\\:[A-Za-z_0-9]+\\:([A-Za-z_0-9]+)-[A-Za-z_0-9]+$", - "description": "The National Bibliography Number (NBN), is a URN-based publication identifier system employed by a variety of national libraries such as those of Germany, the Netherlands and Switzerland. They are used to identify documents archived in national libraries, in their native format or language, and are typically used for documents which do not have a publisher-assigned identifier.", - "created": "2019-06-11T14:17:06.748+0000", - "modified": "2019-06-11T14:17:06.748+0000", + "prefix": "nbn", "resources": [ { - "id": 1099, - "mirId": "MIR:00100488", - "urlPattern": "http://nbn-resolving.org/resolver?identifier={$id}&verb=redirect", - "name": "NBN through URN Resolver at German National Library", + "deprecated": false, + "deprecationDate": null, "description": "NBN through URN Resolver at German National Library", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "urn:nbn:fi:tkk-004781", - "resourceHomeUrl": "http://nbn-resolving.org/resolve_urn.htm", + "id": 1099, "institution": { - "id": 1098, - "name": "Deutsche Nationalbibliothek, Frankfurt", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1098, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Deutsche Nationalbibliothek, Frankfurt", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100488", + "name": "NBN through URN Resolver at German National Library", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://nbn-resolving.org/resolve_urn.htm", + "sampleId": "urn:nbn:fi:tkk-004781", + "urlPattern": "http://nbn-resolving.org/resolver?identifier={$id}&verb=redirect" } ], - "sampleId": "urn:nbn:fi:tkk-004781", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "urn:nbn:fi:tkk-004781" }, { + "created": "2019-06-11T14:17:06.994+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ORCID (Open Researcher and Contributor ID) is an open, non-profit, community-based effort to create and maintain a registry of unique identifiers for individual researchers. ORCID records hold non-sensitive information such as name, email, organization name, and research activities.", "id": 1100, - "prefix": "orcid", "mirId": "MIR:00000382", + "modified": "2019-06-11T14:17:06.994+0000", "name": "ORCID", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{4}-\\d{4}-\\d{4}-\\d{3}(\\d|X)$", - "description": "ORCID (Open Researcher and Contributor ID) is an open, non-profit, community-based effort to create and maintain a registry of unique identifiers for individual researchers. ORCID records hold non-sensitive information such as name, email, organization name, and research activities.", - "created": "2019-06-11T14:17:06.994+0000", - "modified": "2019-06-11T14:17:06.994+0000", + "prefix": "orcid", "resources": [ { - "id": 1102, - "mirId": "MIR:00100489", - "urlPattern": "https://orcid.org/{$id}", - "name": "ORCID at Bethesda", + "deprecated": false, + "deprecationDate": null, "description": "ORCID at Bethesda", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0000-0002-5355-2576", - "resourceHomeUrl": "https://orcid.org", + "id": 1102, "institution": { - "id": 1101, - "name": "ORCID Inc, Bethesda, Mayrland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1101, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "ORCID Inc, Bethesda, Mayrland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100489", + "name": "ORCID at Bethesda", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://orcid.org", + "sampleId": "0000-0002-5355-2576", + "urlPattern": "https://orcid.org/{$id}" } ], - "sampleId": "0000-0002-5355-2576", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "0000-0002-5355-2576" }, { + "created": "2019-06-11T14:17:07.236+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The IUPAC International Chemical Identifier (InChI) is a non-proprietary identifier for chemical substances that can be used in printed and electronic data sources. It is derived solely from a structural representation of that substance, such that a single compound always yields the same identifier.", "id": 1103, - "prefix": "inchi", "mirId": "MIR:00000383", + "modified": "2019-06-11T14:17:07.236+0000", "name": "InChI", + "namespaceEmbeddedInLui": false, "pattern": "^InChI\\=1S?\\/[A-Za-z0-9\\.]+(\\+[0-9]+)?(\\/[cnpqbtmsih][A-Za-z0-9\\-\\+\\(\\)\\,\\/\\?\\;\\.]+)*$", - "description": "The IUPAC International Chemical Identifier (InChI) is a non-proprietary identifier for chemical substances that can be used in printed and electronic data sources. It is derived solely from a structural representation of that substance, such that a single compound always yields the same identifier.", - "created": "2019-06-11T14:17:07.236+0000", - "modified": "2019-06-11T14:17:07.236+0000", + "prefix": "inchi", "resources": [ { - "id": 1106, - "mirId": "MIR:00100492", - "urlPattern": "http://www.chemspider.com/{$id}", - "name": "InChI through Chemspider", + "deprecated": false, + "deprecationDate": null, "description": "InChI through Chemspider", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", - "resourceHomeUrl": "http://www.chemspider.com/", + "id": 1106, "institution": { - "id": 439, - "name": "Royal Society of Chemistry, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 439, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Royal Society of Chemistry, Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 1108, - "mirId": "MIR:00100493", - "urlPattern": "http://webbook.nist.gov/cgi/cbook.cgi?{$id}", - "name": "InChI through NIST", - "description": "InChI through NIST", + "mirId": "MIR:00100492", + "name": "InChI through Chemspider", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.chemspider.com/", "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", - "resourceHomeUrl": "http://webbook.nist.gov/chemistry", + "urlPattern": "http://www.chemspider.com/{$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "InChI through NIST", + "id": 1108, "institution": { - "id": 1107, - "name": "National Institute of Standards and Technology, Gaithersburg, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1107, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Institute of Standards and Technology, Gaithersburg, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100493", + "name": "InChI through NIST", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://webbook.nist.gov/chemistry", + "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", + "urlPattern": "http://webbook.nist.gov/cgi/cbook.cgi?{$id}" }, { - "id": 1109, - "mirId": "MIR:00100494", - "urlPattern": "https://www.ebi.ac.uk/chebi/advancedSearchFT.do?searchString={$id}", - "name": "InChI through ChEBI", + "deprecated": false, + "deprecationDate": null, "description": "InChI through ChEBI", - "official": false, - "providerCode": "ebi", - "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", - "resourceHomeUrl": "https://www.ebi.ac.uk/chebi/", + "id": 1109, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100494", + "name": "InChI through ChEBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/chebi/", + "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", + "urlPattern": "https://www.ebi.ac.uk/chebi/advancedSearchFT.do?searchString={$id}" }, { - "id": 1105, - "mirId": "MIR:00100491", - "urlPattern": "http://rdf.openmolecules.net/?{$id}", - "name": "InChI through RDF Open Molecules", + "deprecated": false, + "deprecationDate": null, "description": "InChI through RDF Open Molecules", - "official": false, - "providerCode": "um", - "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", - "resourceHomeUrl": "http://rdf.openmolecules.net/", + "id": 1105, "institution": { - "id": 283, - "name": "Maastricht University", - "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", - "rorId": "https://ror.org/02jz4aj89", + "homeUrl": "https://www.maastrichtuniversity.nl", + "id": 283, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "Maastricht University", + "rorId": "https://ror.org/02jz4aj89" }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100491", + "name": "InChI through RDF Open Molecules", + "official": false, + "providerCode": "um", + "resourceHomeUrl": "http://rdf.openmolecules.net/", + "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", + "urlPattern": "http://rdf.openmolecules.net/?{$id}" } ], - "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3" }, { + "created": "2019-06-11T14:17:07.845+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Wikipedia is a multilingual, web-based, free-content encyclopedia project based on an openly editable model. It is written collaboratively by largely anonymous Internet volunteers who write without pay.", "id": 1110, - "prefix": "wikipedia.en", "mirId": "MIR:00000384", + "modified": "2019-06-11T14:17:07.845+0000", "name": "Wikipedia (En)", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z-0-9_]+$", - "description": "Wikipedia is a multilingual, web-based, free-content encyclopedia project based on an openly editable model. It is written collaboratively by largely anonymous Internet volunteers who write without pay.", - "created": "2019-06-11T14:17:07.845+0000", - "modified": "2019-06-11T14:17:07.845+0000", + "prefix": "wikipedia.en", "resources": [ { - "id": 1112, - "mirId": "MIR:00100495", - "urlPattern": "http://en.wikipedia.org/wiki/{$id}", - "name": "Wikipedia (English)", + "deprecated": false, + "deprecationDate": null, "description": "Wikipedia (English)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "SM_UB-81", - "resourceHomeUrl": "http://en.wikipedia.org/wiki/Main_Page", + "id": 1112, "institution": { - "id": 1111, - "name": "Wikimedia Foundation, San Francisco, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1111, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Wikimedia Foundation, San Francisco, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 1114, - "mirId": "MIR:00100496", - "urlPattern": "http://dbpedia.org/page/{$id}", - "name": "Wikipedia structured content through DBpedia", - "description": "Wikipedia structured content through DBpedia", + "mirId": "MIR:00100495", + "name": "Wikipedia (English)", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://en.wikipedia.org/wiki/Main_Page", "sampleId": "SM_UB-81", - "resourceHomeUrl": "http://wiki.dbpedia.org/", + "urlPattern": "http://en.wikipedia.org/wiki/{$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "Wikipedia structured content through DBpedia", + "id": 1114, "institution": { - "id": 1113, - "name": "OpenLink Software, Burlington, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1113, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "OpenLink Software, Burlington, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100496", + "name": "Wikipedia structured content through DBpedia", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://wiki.dbpedia.org/", + "sampleId": "SM_UB-81", + "urlPattern": "http://dbpedia.org/page/{$id}" } ], - "sampleId": "SM_UB-81", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "SM_UB-81" }, { + "created": "2019-06-11T14:17:08.222+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PhosphoPOINT is a database of the human kinase and phospho-protein interactome. It describes the interactions among kinases, their potential substrates and their interacting (phospho)-proteins. It also incorporates gene expression and uses gene ontology (GO) terms to annotate interactions. This collection references kinase information.", "id": 1115, - "prefix": "phosphopoint.kinase", "mirId": "MIR:00000385", + "modified": "2019-06-11T14:17:08.222+0000", "name": "PhosphoPoint Kinase", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "PhosphoPOINT is a database of the human kinase and phospho-protein interactome. It describes the interactions among kinases, their potential substrates and their interacting (phospho)-proteins. It also incorporates gene expression and uses gene ontology (GO) terms to annotate interactions. This collection references kinase information.", - "created": "2019-06-11T14:17:08.222+0000", - "modified": "2019-06-11T14:17:08.222+0000", + "prefix": "phosphopoint.kinase", "resources": [ { - "id": 1117, - "mirId": "MIR:00100499", - "urlPattern": "http://kinase.bioinformatics.tw/showall.jsp?type=Kinase&info=Gene&name={$id}&drawing=0&sorting=0&kinome=1", - "name": "PhosphoPoint Kinase at National Taiwan University", + "deprecated": false, + "deprecationDate": null, "description": "PhosphoPoint Kinase at National Taiwan University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "AURKA", - "resourceHomeUrl": "http://kinase.bioinformatics.tw/", + "id": 1117, "institution": { - "id": 1116, - "name": "Department of Computer Science and Information Engineering, National Taiwan University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1116, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "Department of Computer Science and Information Engineering, National Taiwan University", + "rorId": null }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100499", + "name": "PhosphoPoint Kinase at National Taiwan University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://kinase.bioinformatics.tw/", + "sampleId": "AURKA", + "urlPattern": "http://kinase.bioinformatics.tw/showall.jsp?type=Kinase&info=Gene&name={$id}&drawing=0&sorting=0&kinome=1" } ], - "sampleId": "AURKA", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AURKA" }, { + "created": "2019-06-11T14:17:08.458+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PhosphoPOINT is a database of the human kinase and phospho-protein interactome. It describes the interactions among kinases, their potential substrates and their interacting (phospho)-proteins. It also incorporates gene expression and uses gene ontology (GO) terms to annotate interactions. This collection references phosphoprotein information.", "id": 1118, - "prefix": "phosphopoint.protein", "mirId": "MIR:00000386", + "modified": "2019-06-11T14:17:08.458+0000", "name": "PhosphoPoint Phosphoprotein", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "PhosphoPOINT is a database of the human kinase and phospho-protein interactome. It describes the interactions among kinases, their potential substrates and their interacting (phospho)-proteins. It also incorporates gene expression and uses gene ontology (GO) terms to annotate interactions. This collection references phosphoprotein information.", - "created": "2019-06-11T14:17:08.458+0000", - "modified": "2019-06-11T14:17:08.458+0000", + "prefix": "phosphopoint.protein", "resources": [ { - "id": 1119, - "mirId": "MIR:00100500", - "urlPattern": "http://kinase.bioinformatics.tw/showall.jsp?type=PhosphoProtein&info=Gene&name={$id}&drawing=0&sorting=0&kinome=0", - "name": "PhosphoPoint Phosphoprotein at National Taiwan University", + "deprecated": false, + "deprecationDate": null, "description": "PhosphoPoint Phosphoprotein at National Taiwan University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "AURKA", - "resourceHomeUrl": "http://kinase.bioinformatics.tw/", + "id": 1119, "institution": { - "id": 1116, - "name": "Department of Computer Science and Information Engineering, National Taiwan University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1116, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "Department of Computer Science and Information Engineering, National Taiwan University", + "rorId": null }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100500", + "name": "PhosphoPoint Phosphoprotein at National Taiwan University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://kinase.bioinformatics.tw/", + "sampleId": "AURKA", + "urlPattern": "http://kinase.bioinformatics.tw/showall.jsp?type=PhosphoProtein&info=Gene&name={$id}&drawing=0&sorting=0&kinome=0" } ], - "sampleId": "AURKA", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AURKA" }, { + "created": "2019-06-11T14:17:08.649+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The IUPAC International Chemical Identifier (InChI, see MIR:00000383) is an identifier for chemical substances, and is derived solely from a structural representation of that substance. Since these can be quite unwieldly, particularly for web use, the InChIKey was developed. These are of a fixed length (25 character) and were created as a condensed, more web friendly, digital representation of the InChI.", "id": 1120, - "prefix": "inchikey", "mirId": "MIR:00000387", + "modified": "2019-06-11T14:17:08.649+0000", "name": "InChIKey", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z]{14}\\-[A-Z]{10}(\\-[A-Z])?", - "description": "The IUPAC International Chemical Identifier (InChI, see MIR:00000383) is an identifier for chemical substances, and is derived solely from a structural representation of that substance. Since these can be quite unwieldly, particularly for web use, the InChIKey was developed. These are of a fixed length (25 character) and were created as a condensed, more web friendly, digital representation of the InChI.", - "created": "2019-06-11T14:17:08.649+0000", - "modified": "2019-06-11T14:17:08.649+0000", + "prefix": "inchikey", "resources": [ { - "id": 1121, - "mirId": "MIR:00100501", - "urlPattern": "http://www.chemspider.com/inchikey={$id}", - "name": "InChIKey through ChemSpider", + "deprecated": false, + "deprecationDate": null, "description": "InChIKey through ChemSpider", - "official": true, - "providerCode": "chemspider", - "sampleId": "RYYVLZVUVIJVGH-UHFFFAOYSA-N", - "resourceHomeUrl": "http://www.chemspider.com/", + "id": 1121, "institution": { - "id": 439, - "name": "Royal Society of Chemistry, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 439, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Royal Society of Chemistry, Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100501", + "name": "InChIKey through ChemSpider", + "official": true, + "providerCode": "chemspider", + "resourceHomeUrl": "http://www.chemspider.com/", + "sampleId": "RYYVLZVUVIJVGH-UHFFFAOYSA-N", + "urlPattern": "http://www.chemspider.com/inchikey={$id}" }, { - "id": 1122, - "mirId": "MIR:00100505", - "urlPattern": "http://cactus.nci.nih.gov/chemical/structure/{$id}/names", - "name": "InChiKey resolver at NCI", + "deprecated": false, + "deprecationDate": null, "description": "InChiKey resolver at NCI", - "official": true, - "providerCode": "cactus", - "sampleId": "RYYVLZVUVIJVGH-UHFFFAOYSA-N", - "resourceHomeUrl": "http://cactus.nci.nih.gov/chemical/structure", + "id": 1122, "institution": { - "id": 425, - "name": "National Cancer Institute, Rockville, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 425, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Cancer Institute, Rockville, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100505", + "name": "InChiKey resolver at NCI", + "official": true, + "providerCode": "cactus", + "resourceHomeUrl": "http://cactus.nci.nih.gov/chemical/structure", + "sampleId": "RYYVLZVUVIJVGH-UHFFFAOYSA-N", + "urlPattern": "http://cactus.nci.nih.gov/chemical/structure/{$id}/names" }, { - "id": 2470, - "mirId": "MIR:00000779", - "urlPattern": "https://scholia.toolforge.org/inchikey/{$id}", - "name": "Scholia", + "deprecated": false, + "deprecationDate": null, "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", - "official": false, - "providerCode": "scholia", - "sampleId": "WUUVSJBKHXDKBS-ROFOPDMZSA-N", - "resourceHomeUrl": "https://scholia.toolforge.org/", + "id": 2470, "institution": { - "id": 283, - "name": "Maastricht University", - "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", - "rorId": "https://ror.org/02jz4aj89", + "homeUrl": "https://www.maastrichtuniversity.nl", + "id": 283, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "Maastricht University", + "rorId": "https://ror.org/02jz4aj89" }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000779", + "name": "Scholia", + "official": false, + "providerCode": "scholia", + "resourceHomeUrl": "https://scholia.toolforge.org/", + "sampleId": "WUUVSJBKHXDKBS-ROFOPDMZSA-N", + "urlPattern": "https://scholia.toolforge.org/inchikey/{$id}" } ], - "sampleId": "RYYVLZVUVIJVGH-UHFFFAOYSA-N", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "RYYVLZVUVIJVGH-UHFFFAOYSA-N" }, { + "created": "2019-06-11T14:17:08.943+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The UniProt Knowledgebase (UniProtKB) is a comprehensive resource for protein sequence and functional information with extensive cross-references to more than 120 external databases. This collection is a subset of UniProtKB, and provides a means to reference isoform information.", "id": 1123, - "prefix": "uniprot.isoform", "mirId": "MIR:00000388", + "modified": "2019-06-11T14:17:08.943+0000", "name": "UniProt Isoform", + "namespaceEmbeddedInLui": false, "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])(\\-\\d+)$", - "description": "The UniProt Knowledgebase (UniProtKB) is a comprehensive resource for protein sequence and functional information with extensive cross-references to more than 120 external databases. This collection is a subset of UniProtKB, and provides a means to reference isoform information.", - "created": "2019-06-11T14:17:08.943+0000", - "modified": "2019-06-11T14:17:08.943+0000", + "prefix": "uniprot.isoform", "resources": [ - { - "id": 1124, - "mirId": "MIR:00100502", - "urlPattern": "http://www.uniprot.org/uniprot/{$id}", - "name": "UniProt Isoform through Universal Protein Resource", + { + "deprecated": false, + "deprecationDate": null, "description": "UniProt Isoform through Universal Protein Resource", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Q5BJF6-3", - "resourceHomeUrl": "http://www.uniprot.org/", + "id": 1124, "institution": { - "id": 24, - "name": "UniProt Consortium", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 24, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "UniProt Consortium", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 1125, - "mirId": "MIR:00100503", - "urlPattern": "http://purl.uniprot.org/uniprot/{$id}", - "name": "UniProt Isoform through Universal Protein Resource using Persistent URL system", - "description": "UniProt Isoform through Universal Protein Resource using Persistent URL system", + "mirId": "MIR:00100502", + "name": "UniProt Isoform through Universal Protein Resource", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.uniprot.org/", "sampleId": "Q5BJF6-3", - "resourceHomeUrl": "http://purl.uniprot.org/", + "urlPattern": "http://www.uniprot.org/uniprot/{$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "UniProt Isoform through Universal Protein Resource using Persistent URL system", + "id": 1125, "institution": { - "id": 24, - "name": "UniProt Consortium", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 24, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "UniProt Consortium", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 1126, - "mirId": "MIR:00100504", - "urlPattern": "http://www.uniprot.org/uniparc/?query={$id}", - "name": "UniProt Isoform through UniParc", - "description": "UniProt Isoform through UniParc", + "mirId": "MIR:00100503", + "name": "UniProt Isoform through Universal Protein Resource using Persistent URL system", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://purl.uniprot.org/", "sampleId": "Q5BJF6-3", - "resourceHomeUrl": "http://www.uniprot.org/uniparc/", + "urlPattern": "http://purl.uniprot.org/uniprot/{$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "UniProt Isoform through UniParc", + "id": 1126, "institution": { - "id": 24, - "name": "UniProt Consortium", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 24, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "UniProt Consortium", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100504", + "name": "UniProt Isoform through UniParc", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.uniprot.org/uniparc/", + "sampleId": "Q5BJF6-3", + "urlPattern": "http://www.uniprot.org/uniparc/?query={$id}" } ], - "sampleId": "Q5BJF6-3", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Q5BJF6-3" }, { + "created": "2019-06-11T14:17:09.349+0000", + "deprecated": false, + "deprecationDate": null, + "description": "KEGG ENVIRON (renamed from EDRUG) is a collection of crude drugs, essential oils, and other health-promoting substances, which are mostly natural products of plants. It will contain environmental substances and other health-damagine substances as well. Each KEGG ENVIRON entry is identified by the E number and is associated with the chemical component, efficacy information, and source species information whenever applicable.", "id": 1127, - "prefix": "kegg.environ", "mirId": "MIR:00000389", + "modified": "2019-06-11T14:17:09.349+0000", "name": "KEGG Environ", + "namespaceEmbeddedInLui": false, "pattern": "^(ev\\:)?E\\d+$", - "description": "KEGG ENVIRON (renamed from EDRUG) is a collection of crude drugs, essential oils, and other health-promoting substances, which are mostly natural products of plants. It will contain environmental substances and other health-damagine substances as well. Each KEGG ENVIRON entry is identified by the E number and is associated with the chemical component, efficacy information, and source species information whenever applicable.", - "created": "2019-06-11T14:17:09.349+0000", - "modified": "2019-06-11T14:17:09.349+0000", + "prefix": "kegg.environ", "resources": [ { - "id": 1128, - "mirId": "MIR:00100506", - "urlPattern": "http://www.kegg.jp/entry/{$id}", - "name": "KEGG ENVIRON Database", + "deprecated": false, + "deprecationDate": null, "description": "KEGG ENVIRON Database", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ev:E00032", - "resourceHomeUrl": "http://www.genome.jp/kegg/drug/environ.html", + "id": 1128, "institution": { - "id": 15, - "name": "Kyoto University Bioinformatics Center", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 15, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Kyoto University Bioinformatics Center", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100506", + "name": "KEGG ENVIRON Database", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.genome.jp/kegg/drug/environ.html", + "sampleId": "ev:E00032", + "urlPattern": "http://www.kegg.jp/entry/{$id}" } ], - "sampleId": "ev:E00032", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ev:E00032" }, { + "created": "2019-06-11T14:17:09.531+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Cell Line Data Base (CLDB) is a reference information source for human and animal cell lines. It provides the characteristics of the cell lines and their availability through distributors, allowing cell line requests to be made from collections and laboratories.", "id": 1129, - "prefix": "cldb", "mirId": "MIR:00000390", + "modified": "2019-06-11T14:17:09.531+0000", "name": "CLDB", + "namespaceEmbeddedInLui": false, "pattern": "^(cl|tum)\\d+$", - "description": "The Cell Line Data Base (CLDB) is a reference information source for human and animal cell lines. It provides the characteristics of the cell lines and their availability through distributors, allowing cell line requests to be made from collections and laboratories.", - "created": "2019-06-11T14:17:09.531+0000", - "modified": "2019-06-11T14:17:09.531+0000", + "prefix": "cldb", "resources": [ { - "id": 1131, - "mirId": "MIR:00100508", - "urlPattern": "http://bioinformatics.hsanmartino.it/hypercldb/{$id}.html", - "name": "CLDB at Genova", + "deprecated": false, + "deprecationDate": null, "description": "CLDB at Genova", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "cl3603", - "resourceHomeUrl": "http://bioinformatics.hsanmartino.it/hypercldb/indexes.html", + "id": 1131, "institution": { - "id": 1130, - "name": "Ospedale San Martino", - "homeUrl": "http://www.ospedalesanmartino.it", "description": "NOTE - No international description has been found on its website, so it's not been possible to include a brief summary here.", - "rorId": "https://ror.org/04d7es448", + "homeUrl": "http://www.ospedalesanmartino.it", + "id": 1130, "location": { "countryCode": "IT", "countryName": "Italy" - } + }, + "name": "Ospedale San Martino", + "rorId": "https://ror.org/04d7es448" }, "location": { "countryCode": "IT", "countryName": "Italy" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100508", + "name": "CLDB at Genova", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bioinformatics.hsanmartino.it/hypercldb/indexes.html", + "sampleId": "cl3603", + "urlPattern": "http://bioinformatics.hsanmartino.it/hypercldb/{$id}.html" } ], - "sampleId": "cl3603", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "cl3603" }, { + "created": "2019-06-11T14:17:09.753+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Experimental Factor Ontology (EFO) provides a systematic description of many experimental variables available in EBI databases. It combines parts of several biological ontologies, such as anatomy, disease and chemical compounds. The scope of EFO is to support the annotation, analysis and visualization of data handled by the EBI Functional Genomics Team.", "id": 1132, - "prefix": "efo", "mirId": "MIR:00000391", + "modified": "2019-06-11T14:17:09.753+0000", "name": "Experimental Factor Ontology", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{7}$", - "description": "The Experimental Factor Ontology (EFO) provides a systematic description of many experimental variables available in EBI databases. It combines parts of several biological ontologies, such as anatomy, disease and chemical compounds. The scope of EFO is to support the annotation, analysis and visualization of data handled by the EBI Functional Genomics Team.", - "created": "2019-06-11T14:17:09.753+0000", - "modified": "2019-06-11T14:17:09.753+0000", + "prefix": "efo", "resources": [ { - "id": 1133, - "mirId": "MIR:00100509", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/efo/terms?obo_id=EFO:{$id}", - "name": "EFO through OLS", + "deprecated": false, + "deprecationDate": null, "description": "EFO through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0004859", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/efo", + "id": 1133, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100509", + "name": "EFO through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/efo", + "sampleId": "0004859", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/efo/terms?obo_id=EFO:{$id}" }, { - "id": 1134, - "mirId": "MIR:00100510", - "urlPattern": "http://purl.bioontology.org/ontology/EFO/efo:EFO_{$id}", - "name": "EFO through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "EFO through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "0004859", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/EFO", + "id": 1134, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100510", + "name": "EFO through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/EFO", + "sampleId": "0004859", + "urlPattern": "http://purl.bioontology.org/ontology/EFO/efo:EFO_{$id}" }, { - "id": 1135, - "mirId": "MIR:00100511", - "urlPattern": "https://www.ebi.ac.uk/efo/EFO_{$id}", - "name": "EFO through Functional Genomics Group (EBI)", + "deprecated": false, + "deprecationDate": null, "description": "EFO through Functional Genomics Group (EBI)", - "official": false, - "providerCode": "ebi", - "sampleId": "0004859", - "resourceHomeUrl": "https://www.ebi.ac.uk/efo/", + "id": 1135, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100511", + "name": "EFO through Functional Genomics Group (EBI)", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/efo/", + "sampleId": "0004859", + "urlPattern": "https://www.ebi.ac.uk/efo/EFO_{$id}" } ], - "sampleId": "0004859", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "0004859" }, { + "created": "2019-06-11T14:17:10.208+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Human Gene Mutation Database (HGMD) collates data on germ-line mutations in nuclear genes associated with human inherited disease. It includes information on single base-pair substitutions in coding, regulatory and splicing-relevant regions; micro-deletions and micro-insertions; indels; triplet repeat expansions as well as gross deletions; insertions; duplications; and complex rearrangements. Each mutation entry is unique, and includes cDNA reference sequences for most genes, splice junction sequences, disease-associated and functional polymorphisms, as well as links to data present in publicly available online locus-specific mutation databases.", "id": 1136, - "prefix": "hgmd", "mirId": "MIR:00000392", + "modified": "2019-06-11T14:17:10.208+0000", "name": "HGMD", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z_0-9]+$", - "description": "The Human Gene Mutation Database (HGMD) collates data on germ-line mutations in nuclear genes associated with human inherited disease. It includes information on single base-pair substitutions in coding, regulatory and splicing-relevant regions; micro-deletions and micro-insertions; indels; triplet repeat expansions as well as gross deletions; insertions; duplications; and complex rearrangements. Each mutation entry is unique, and includes cDNA reference sequences for most genes, splice junction sequences, disease-associated and functional polymorphisms, as well as links to data present in publicly available online locus-specific mutation databases.", - "created": "2019-06-11T14:17:10.208+0000", - "modified": "2019-06-11T14:17:10.208+0000", + "prefix": "hgmd", "resources": [ { - "id": 1138, - "mirId": "MIR:00100512", - "urlPattern": "http://www.hgmd.cf.ac.uk/ac/gene.php?gene={$id}", - "name": "HGMD at Cardiff University", + "deprecated": false, + "deprecationDate": null, "description": "HGMD at Cardiff University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "CALM1", - "resourceHomeUrl": "http://www.hgmd.cf.ac.uk/ac/index.php", + "id": 1138, "institution": { - "id": 1137, - "name": "Cardiff University, Cardiff", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1137, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Cardiff University, Cardiff", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100512", + "name": "HGMD at Cardiff University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.hgmd.cf.ac.uk/ac/index.php", + "sampleId": "CALM1", + "urlPattern": "http://www.hgmd.cf.ac.uk/ac/gene.php?gene={$id}" } ], - "sampleId": "CALM1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CALM1" }, { + "created": "2019-06-11T14:17:10.425+0000", + "deprecated": false, + "deprecationDate": null, + "description": "AphidBase is a centralized bioinformatic resource that was developed to facilitate community annotation of the pea aphid genome by the International Aphid Genomics Consortium (IAGC). The AphidBase Information System was designed to organize and distribute genomic data and annotations for a large international community. This collection references the transcript report, which describes genomic location, sequence and exon information.", "id": 1139, - "prefix": "aphidbase.transcript", "mirId": "MIR:00000393", + "modified": "2019-06-11T14:17:10.425+0000", "name": "AphidBase Transcript", + "namespaceEmbeddedInLui": false, "pattern": "^ACYPI\\d{6}(-RA)?$", - "description": "AphidBase is a centralized bioinformatic resource that was developed to facilitate community annotation of the pea aphid genome by the International Aphid Genomics Consortium (IAGC). The AphidBase Information System was designed to organize and distribute genomic data and annotations for a large international community. This collection references the transcript report, which describes genomic location, sequence and exon information.", - "created": "2019-06-11T14:17:10.425+0000", - "modified": "2019-06-11T14:17:10.425+0000", + "prefix": "aphidbase.transcript", "resources": [ { - "id": 1141, - "mirId": "MIR:00100513", - "urlPattern": "http://bipaa.genouest.org/apps/grs-2.3/grs?reportID=aphidbase_transcript_report&objectID={$id}", - "name": "AphidBase at INRA", + "deprecated": false, + "deprecationDate": null, "description": "AphidBase at INRA", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ACYPI000159", - "resourceHomeUrl": "http://www.aphidbase.com/aphidbase", + "id": 1141, "institution": { - "id": 1140, - "name": "INRA UMR, Le Rheu", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1140, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "INRA UMR, Le Rheu", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100513", + "name": "AphidBase at INRA", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.aphidbase.com/aphidbase", + "sampleId": "ACYPI000159", + "urlPattern": "http://bipaa.genouest.org/apps/grs-2.3/grs?reportID=aphidbase_transcript_report&objectID={$id}" } ], - "sampleId": "ACYPI000159", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ACYPI000159" }, { + "created": "2019-06-11T14:17:10.647+0000", + "deprecated": false, + "deprecationDate": null, + "description": "An Affymetrix ProbeSet is a collection of up to 11 short (~22 nucleotide) microarray probes designed to measure a single gene or a family of genes as a unit. Multiple probe sets may be available for each gene under consideration.", "id": 1142, - "prefix": "affy.probeset", "mirId": "MIR:00000394", + "modified": "2019-06-11T14:17:10.647+0000", "name": "Affymetrix Probeset", + "namespaceEmbeddedInLui": false, "pattern": "\\d{4,}((_[asx])?_at)?", - "description": "An Affymetrix ProbeSet is a collection of up to 11 short (~22 nucleotide) microarray probes designed to measure a single gene or a family of genes as a unit. Multiple probe sets may be available for each gene under consideration.", - "created": "2019-06-11T14:17:10.647+0000", - "modified": "2019-06-11T14:17:10.647+0000", + "prefix": "affy.probeset", "resources": [ { - "id": 1144, - "mirId": "MIR:00100514", - "urlPattern": "https://www.affymetrix.com/LinkServlet?probeset={$id}", - "name": "Affymetrix ProbeSet in Santa Clara", + "deprecated": false, + "deprecationDate": null, "description": "Affymetrix ProbeSet in Santa Clara", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "243002_at", - "resourceHomeUrl": "http://www.affymetrix.com/", + "id": 1144, "institution": { - "id": 1143, - "name": "Affymetrix", + "description": "Thermo Fisher Scientific provides innovative Affymetrix\u2122 products, tools, and resources that help advance the work of researchers via microarray analysis", "homeUrl": "https://www.thermofisher.com/uk/en/home/life-science/microarray-analysis.html", - "description": "Thermo Fisher Scientific provides innovative Affymetrix™ products, tools, and resources that help advance the work of researchers via microarray analysis", - "rorId": "https://ror.org/012kjw534", + "id": 1143, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Affymetrix", + "rorId": "https://ror.org/012kjw534" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100514", + "name": "Affymetrix ProbeSet in Santa Clara", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.affymetrix.com/", + "sampleId": "243002_at", + "urlPattern": "https://www.affymetrix.com/LinkServlet?probeset={$id}" }, { - "id": 1145, - "mirId": "MIR:00100672", - "urlPattern": "http://cu.affymetrix.bio2rdf.org/describe/?url=http://bio2rdf.org/affymetrix:{$id}", - "name": "Bio2RDF", + "deprecated": false, + "deprecationDate": null, "description": "Bio2RDF", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "243002_at", - "resourceHomeUrl": "http://cu.affymetrix.bio2rdf.org/fct/", + "id": 1145, "institution": { - "id": 33, - "name": "Bio2RDF.org", - "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", - "rorId": null, + "homeUrl": "https://bio2rdf.org", + "id": 33, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Bio2RDF.org", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100672", + "name": "Bio2RDF", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://cu.affymetrix.bio2rdf.org/fct/", + "sampleId": "243002_at", + "urlPattern": "http://cu.affymetrix.bio2rdf.org/describe/?url=http://bio2rdf.org/affymetrix:{$id}" } ], - "sampleId": "243002_at", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "243002_at" }, { + "created": "2019-06-11T14:17:10.973+0000", + "deprecated": false, + "deprecationDate": null, + "description": "TreeFam is a database of phylogenetic trees of gene families found in animals. Automatically generated trees are curated, to create a curated resource that presents the accurate evolutionary history of all animal gene families, as well as reliable ortholog and paralog assignments.", "id": 1146, - "prefix": "treefam", "mirId": "MIR:00000395", + "modified": "2019-06-11T14:17:10.973+0000", "name": "TreeFam", + "namespaceEmbeddedInLui": false, "pattern": "^\\w{1,2}\\d+$", - "description": "TreeFam is a database of phylogenetic trees of gene families found in animals. Automatically generated trees are curated, to create a curated resource that presents the accurate evolutionary history of all animal gene families, as well as reliable ortholog and paralog assignments.", - "created": "2019-06-11T14:17:10.973+0000", - "modified": "2019-06-11T14:17:10.973+0000", + "prefix": "treefam", "resources": [ { - "id": 1148, - "mirId": "MIR:00100515", - "urlPattern": "http://www.treefam.org/family/{$id}", - "name": "TreeFam database", + "deprecated": false, + "deprecationDate": null, "description": "TreeFam database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "TF101014", - "resourceHomeUrl": "http://www.treefam.org/", + "id": 1148, "institution": { - "id": 1147, - "name": "Beijing Genomics Institute", - "homeUrl": "https://www.bgi.com", "description": "BGI Genomics is a publicly listed commercial genomics company, providing a wide range of next generation sequencing services and a broad portfolio of genetic tests for medical institutions, research institutions and other public and private partners.\nEstablished in 1999, we have almost 20 years of genomics experience. Our mission is to leverage our genomics expertise in order to advance life science research and improve human health for the benefit of mankind.", - "rorId": "https://ror.org/045pn2j94", + "homeUrl": "https://www.bgi.com", + "id": 1147, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "Beijing Genomics Institute", + "rorId": "https://ror.org/045pn2j94" }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100515", + "name": "TreeFam database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.treefam.org/", + "sampleId": "TF101014", + "urlPattern": "http://www.treefam.org/family/{$id}" } ], - "sampleId": "TF101014", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "TF101014" }, { + "created": "2019-06-11T14:17:11.199+0000", + "deprecated": false, + "deprecationDate": null, + "description": "CAPS-DB is a structural classification of helix-cappings or caps compiled from protein structures. The regions of the polypeptide chain immediately preceding or following an alpha-helix are known as Nt- and Ct cappings, respectively. Caps extracted from protein structures have been structurally classified based on geometry and conformation and organized in a tree-like hierarchical classification where the different levels correspond to different properties of the caps.", "id": 1149, - "prefix": "caps", "mirId": "MIR:00000396", + "modified": "2019-06-11T14:17:11.199+0000", "name": "CAPS-DB", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "CAPS-DB is a structural classification of helix-cappings or caps compiled from protein structures. The regions of the polypeptide chain immediately preceding or following an alpha-helix are known as Nt- and Ct cappings, respectively. Caps extracted from protein structures have been structurally classified based on geometry and conformation and organized in a tree-like hierarchical classification where the different levels correspond to different properties of the caps.", - "created": "2019-06-11T14:17:11.199+0000", - "modified": "2019-06-11T14:17:11.199+0000", + "prefix": "caps", "resources": [ { - "id": 1151, - "mirId": "MIR:00100516", - "urlPattern": "http://www.bioinsilico.org/cgi-bin/CAPSDB/getCAPScluster?nidcl={$id}", - "name": "CAPS-DB at Leeds Institute of Molecular Medicine", + "deprecated": false, + "deprecationDate": null, "description": "CAPS-DB at Leeds Institute of Molecular Medicine", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "434", - "resourceHomeUrl": "http://www.bioinsilico.org/cgi-bin/CAPSDB/staticHTML/home", + "id": 1151, "institution": { - "id": 1150, - "name": "Leeds Institute of Molecular Medicine, Section of Experimental Therapeutics, University of Leeds, Leeds", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1150, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Leeds Institute of Molecular Medicine, Section of Experimental Therapeutics, University of Leeds, Leeds", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100516", + "name": "CAPS-DB at Leeds Institute of Molecular Medicine", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.bioinsilico.org/cgi-bin/CAPSDB/staticHTML/home", + "sampleId": "434", + "urlPattern": "http://www.bioinsilico.org/cgi-bin/CAPSDB/getCAPScluster?nidcl={$id}" } ], - "sampleId": "434", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "434" }, { + "created": "2019-06-11T14:17:11.437+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Cube-DB is a database of pre-evaluated results for detection of functional divergence in human/vertebrate protein families. It analyzes comparable taxonomical samples for all paralogues under consideration, storing functional specialisation at the level of residues. The data are presented as a table of per-residue scores, and mapped onto related structures where available.", "id": 1152, - "prefix": "cubedb", "mirId": "MIR:00000397", + "modified": "2019-06-11T14:17:11.437+0000", "name": "Cube db", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z_0-9]+$", - "description": "Cube-DB is a database of pre-evaluated results for detection of functional divergence in human/vertebrate protein families. It analyzes comparable taxonomical samples for all paralogues under consideration, storing functional specialisation at the level of residues. The data are presented as a table of per-residue scores, and mapped onto related structures where available.", - "created": "2019-06-11T14:17:11.437+0000", - "modified": "2019-06-11T14:17:11.437+0000", + "prefix": "cubedb", "resources": [ { - "id": 1154, - "mirId": "MIR:00100517", - "urlPattern": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/data/{$id}/", - "name": "Cube db at Bioinformatics Institute (Singapore)", + "deprecated": false, + "deprecationDate": null, "description": "Cube db at Bioinformatics Institute (Singapore)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "AKR", - "resourceHomeUrl": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/html/home.html", + "id": 1154, "institution": { - "id": 1153, - "name": "BII Bioinformatics Institute", - "homeUrl": "http://www.bii.a-star.edu.sg", "description": "The BII focuses on theoretical approaches aimed at understanding biomolecular mechanisms that underlie biological phenomena, the development of computational methods to support this discovery process, and experimental verification of predicted molecular and cellular functions of genes and proteins with biochemical methods.", - "rorId": "https://ror.org/044w3nw43", + "homeUrl": "http://www.bii.a-star.edu.sg", + "id": 1153, "location": { "countryCode": "SG", "countryName": "Singapore" - } + }, + "name": "BII Bioinformatics Institute", + "rorId": "https://ror.org/044w3nw43" }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100517", + "name": "Cube db at Bioinformatics Institute (Singapore)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/html/home.html", + "sampleId": "AKR", + "urlPattern": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/data/{$id}/" } ], - "sampleId": "AKR", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AKR" }, { + "created": "2019-06-11T14:17:11.651+0000", + "deprecated": false, + "deprecationDate": null, + "description": "IDEAL provides a collection of knowledge on experimentally verified intrinsically disordered proteins. It contains manual annotations by curators on intrinsically disordered regions, interaction regions to other molecules, post-translational modification sites, references and structural domain assignments.", "id": 1155, - "prefix": "ideal", "mirId": "MIR:00000398", + "modified": "2019-06-11T14:17:11.651+0000", "name": "IDEAL", + "namespaceEmbeddedInLui": false, "pattern": "^IID\\d+$", - "description": "IDEAL provides a collection of knowledge on experimentally verified intrinsically disordered proteins. It contains manual annotations by curators on intrinsically disordered regions, interaction regions to other molecules, post-translational modification sites, references and structural domain assignments.", - "created": "2019-06-11T14:17:11.651+0000", - "modified": "2019-06-11T14:17:11.651+0000", + "prefix": "ideal", "resources": [ { - "id": 1157, - "mirId": "MIR:00100518", - "urlPattern": "http://idp1.force.cs.is.nagoya-u.ac.jp/IDEAL/ideal.php?id={$id}", - "name": "IDEAL at Nagoya University", + "deprecated": false, + "deprecationDate": null, "description": "IDEAL at Nagoya University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "IID00001", - "resourceHomeUrl": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/", + "id": 1157, "institution": { - "id": 1156, - "name": "Nagoya University", + "description": "Nagoya University has a 144-year history, dating from when the Temporary\u3000Medical School/Public Hospital -- the forerunner of today's Nagoya University -- was established in 1871. The University became the last Imperial University of Japan in 1939, and the educational reforms in 1949 led to the beginning of Nagoya University under the new education system. From that time to this day, the University has been pursuing steady development.", "homeUrl": "http://en.nagoya-u.ac.jp/", - "description": "Nagoya University has a 144-year history, dating from when the Temporary Medical School/Public Hospital -- the forerunner of today's Nagoya University -- was established in 1871. The University became the last Imperial University of Japan in 1939, and the educational reforms in 1949 led to the beginning of Nagoya University under the new education system. From that time to this day, the University has been pursuing steady development.", - "rorId": "https://ror.org/04chrp450", + "id": 1156, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Nagoya University", + "rorId": "https://ror.org/04chrp450" }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100518", + "name": "IDEAL at Nagoya University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/", + "sampleId": "IID00001", + "urlPattern": "http://idp1.force.cs.is.nagoya-u.ac.jp/IDEAL/ideal.php?id={$id}" } ], - "sampleId": "IID00001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "IID00001" }, { + "created": "2019-06-11T14:17:11.871+0000", + "deprecated": false, + "deprecationDate": null, + "description": "STAP (Statistical Torsional Angles Potentials) was developed since, according to several studies, some nuclear magnetic resonance (NMR) structures are of lower quality, are less reliable and less suitable for structural analysis than high-resolution X-ray crystallographic structures. The refined NMR solution structures (statistical torsion angle potentials; STAP) in the database are refined from the Protein Data Bank (PDB).", "id": 1158, - "prefix": "stap", "mirId": "MIR:00000399", + "modified": "2019-06-11T14:17:11.871+0000", "name": "STAP", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9][A-Za-z0-9]{3}$", - "description": "STAP (Statistical Torsional Angles Potentials) was developed since, according to several studies, some nuclear magnetic resonance (NMR) structures are of lower quality, are less reliable and less suitable for structural analysis than high-resolution X-ray crystallographic structures. The refined NMR solution structures (statistical torsion angle potentials; STAP) in the database are refined from the Protein Data Bank (PDB).", - "created": "2019-06-11T14:17:11.871+0000", - "modified": "2019-06-11T14:17:11.871+0000", + "prefix": "stap", "resources": [ { - "id": 1160, - "mirId": "MIR:00100519", - "urlPattern": "http://psb.kobic.re.kr/STAP/refinement1/result.php?search={$id}", - "name": "STAP at Korean Bioinformation Center", + "deprecated": false, + "deprecationDate": null, "description": "STAP at Korean Bioinformation Center", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1a24", - "resourceHomeUrl": "http://psb.kobic.re.kr/STAP/refinement/", + "id": 1160, "institution": { - "id": 1159, - "name": "Korean Bioinformation Center, Korea Research Institute of Bioscience and Biotechnology, Daejeon", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1159, "location": { "countryCode": "KR", "countryName": "Korea, Republic of" - } + }, + "name": "Korean Bioinformation Center, Korea Research Institute of Bioscience and Biotechnology, Daejeon", + "rorId": null }, "location": { "countryCode": "KR", "countryName": "Korea, Republic of" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100519", + "name": "STAP at Korean Bioinformation Center", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://psb.kobic.re.kr/STAP/refinement/", + "sampleId": "1a24", + "urlPattern": "http://psb.kobic.re.kr/STAP/refinement1/result.php?search={$id}" } ], - "sampleId": "1a24", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1a24" }, { + "created": "2019-06-11T14:17:12.099+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Pocketome is an encyclopedia of conformational ensembles of all druggable binding sites that can be identified experimentally from co-crystal structures in the Protein Data Bank. Each Pocketome entry corresponds to a small molecule binding site in a protein which has been co-crystallized in complex with at least one drug-like small molecule, and is represented in at least two PDB entries.", "id": 1161, - "prefix": "pocketome", "mirId": "MIR:00000400", + "modified": "2019-06-11T14:17:12.099+0000", "name": "Pocketome", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z_0-9]+", - "description": "Pocketome is an encyclopedia of conformational ensembles of all druggable binding sites that can be identified experimentally from co-crystal structures in the Protein Data Bank. Each Pocketome entry corresponds to a small molecule binding site in a protein which has been co-crystallized in complex with at least one drug-like small molecule, and is represented in at least two PDB entries.", - "created": "2019-06-11T14:17:12.099+0000", - "modified": "2019-06-11T14:17:12.099+0000", + "prefix": "pocketome", "resources": [ { - "id": 1163, - "mirId": "MIR:00100520", - "urlPattern": "http://www.pocketome.org/files/{$id}.html", - "name": "Pocketome at UCSD Skaggs School", + "deprecated": false, + "deprecationDate": null, "description": "Pocketome at UCSD Skaggs School", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1433C_TOBAC_1_252", - "resourceHomeUrl": "http://www.pocketome.org/sfSearch.cgi?act=browseall", + "id": 1163, "institution": { - "id": 1162, - "name": "UCSD Skaggs School of Pharmacy and Pharmaceutical Sciences, La Jolla, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1162, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "UCSD Skaggs School of Pharmacy and Pharmaceutical Sciences, La Jolla, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100520", + "name": "Pocketome at UCSD Skaggs School", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.pocketome.org/sfSearch.cgi?act=browseall", + "sampleId": "1433C_TOBAC_1_252", + "urlPattern": "http://www.pocketome.org/files/{$id}.html" } ], - "sampleId": "1433C_TOBAC_1_252", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1433C_TOBAC_1_252" }, { + "created": "2019-06-11T14:17:12.749+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BugBase is a MIAME-compliant microbial gene expression and comparative genomic database. It stores experimental annotation and multiple raw and analysed data formats, as well as protocols for bacterial microarray designs. This collection references design protocols.", "id": 1169, - "prefix": "bugbase.protocol", "mirId": "MIR:00000403", + "modified": "2019-06-11T14:17:12.749+0000", "name": "BugBase Protocol", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "BugBase is a MIAME-compliant microbial gene expression and comparative genomic database. It stores experimental annotation and multiple raw and analysed data formats, as well as protocols for bacterial microarray designs. This collection references design protocols.", - "created": "2019-06-11T14:17:12.749+0000", - "modified": "2019-06-11T14:17:12.749+0000", + "prefix": "bugbase.protocol", "resources": [ { - "id": 1171, - "mirId": "MIR:00100523", - "urlPattern": "http://bugs.sgul.ac.uk/bugsbase/tabs/protocol.php?protocol_id={$id}&action=view", - "name": "BugBase Protocol at University of London", + "deprecated": false, + "deprecationDate": null, "description": "BugBase Protocol at University of London", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "67", - "resourceHomeUrl": "http://bugs.sgul.ac.uk/E-BUGS", + "id": 1171, "institution": { - "id": 1170, - "name": "St George's, University of London", + "description": "St George\u2019s Hospital Medical School was established in 1733 and initially based at Hyde Park Corner, before moving to our Tooting site in 1980. It was the second institution in England to provide formal training courses for doctors.\nSt George\u2019s has a dynamic research culture, with teams working to improve the health of people of all ages, from children to the elderly, in populations locally and globally.", "homeUrl": "https://www.sgul.ac.uk/", - "description": "St George’s Hospital Medical School was established in 1733 and initially based at Hyde Park Corner, before moving to our Tooting site in 1980. It was the second institution in England to provide formal training courses for doctors.\nSt George’s has a dynamic research culture, with teams working to improve the health of people of all ages, from children to the elderly, in populations locally and globally.", - "rorId": "https://ror.org/040f08y74", + "id": 1170, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "St George's, University of London", + "rorId": "https://ror.org/040f08y74" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100523", + "name": "BugBase Protocol at University of London", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bugs.sgul.ac.uk/E-BUGS", + "sampleId": "67", + "urlPattern": "http://bugs.sgul.ac.uk/bugsbase/tabs/protocol.php?protocol_id={$id}&action=view" } ], - "sampleId": "67", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "67" }, { + "created": "2019-06-11T14:17:12.968+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BugBase is a MIAME-compliant microbial gene expression and comparative genomic database. It stores experimental annotation and multiple raw and analysed data formats, as well as protocols for bacterial microarray designs. This collection references microarray experiments.", "id": 1172, - "prefix": "bugbase.expt", "mirId": "MIR:00000404", + "modified": "2019-06-11T14:17:12.968+0000", "name": "BugBase Expt", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "BugBase is a MIAME-compliant microbial gene expression and comparative genomic database. It stores experimental annotation and multiple raw and analysed data formats, as well as protocols for bacterial microarray designs. This collection references microarray experiments.", - "created": "2019-06-11T14:17:12.968+0000", - "modified": "2019-06-11T14:17:12.968+0000", + "prefix": "bugbase.expt", "resources": [ { - "id": 1173, - "mirId": "MIR:00100524", - "urlPattern": "http://bugs.sgul.ac.uk/bugsbase/tabs/experiment.php?expt_id={$id}&action=view", - "name": "BugBase Expt at University of London", + "deprecated": false, + "deprecationDate": null, "description": "BugBase Expt at University of London", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "288", - "resourceHomeUrl": "http://bugs.sgul.ac.uk/E-BUGS", + "id": 1173, "institution": { - "id": 1170, - "name": "St George's, University of London", + "description": "St George\u2019s Hospital Medical School was established in 1733 and initially based at Hyde Park Corner, before moving to our Tooting site in 1980. It was the second institution in England to provide formal training courses for doctors.\nSt George\u2019s has a dynamic research culture, with teams working to improve the health of people of all ages, from children to the elderly, in populations locally and globally.", "homeUrl": "https://www.sgul.ac.uk/", - "description": "St George’s Hospital Medical School was established in 1733 and initially based at Hyde Park Corner, before moving to our Tooting site in 1980. It was the second institution in England to provide formal training courses for doctors.\nSt George’s has a dynamic research culture, with teams working to improve the health of people of all ages, from children to the elderly, in populations locally and globally.", - "rorId": "https://ror.org/040f08y74", + "id": 1170, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "St George's, University of London", + "rorId": "https://ror.org/040f08y74" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100524", + "name": "BugBase Expt at University of London", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bugs.sgul.ac.uk/E-BUGS", + "sampleId": "288", + "urlPattern": "http://bugs.sgul.ac.uk/bugsbase/tabs/experiment.php?expt_id={$id}&action=view" } ], - "sampleId": "288", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "288" }, { + "created": "2019-06-11T14:17:13.167+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Tree of Life Web Project (ToL) is a collaborative effort of biologists and nature enthusiasts from around the world. On more than 10,000 World Wide Web pages, the project provides information about biodiversity, the characteristics of different groups of organisms, and their evolutionary history (phylogeny). \r\n\r\nEach page contains information about a particular group, with pages linked one to another hierarchically, in the form of the evolutionary tree of life. Starting with the root of all Life on Earth and moving out along diverging branches to individual species, the structure of the ToL project thus illustrates the genetic connections between all living things.", "id": 1174, - "prefix": "tol", "mirId": "MIR:00000405", + "modified": "2019-06-11T14:17:13.167+0000", "name": "Tree of Life", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Tree of Life Web Project (ToL) is a collaborative effort of biologists and nature enthusiasts from around the world. On more than 10,000 World Wide Web pages, the project provides information about biodiversity, the characteristics of different groups of organisms, and their evolutionary history (phylogeny). \r\n\r\nEach page contains information about a particular group, with pages linked one to another hierarchically, in the form of the evolutionary tree of life. Starting with the root of all Life on Earth and moving out along diverging branches to individual species, the structure of the ToL project thus illustrates the genetic connections between all living things.", - "created": "2019-06-11T14:17:13.167+0000", - "modified": "2019-06-11T14:17:13.167+0000", + "prefix": "tol", "resources": [ { - "id": 1176, - "mirId": "MIR:00100525", - "urlPattern": "http://tolweb.org/{$id}", - "name": "Tree of Life Web", + "deprecated": false, + "deprecationDate": null, "description": "Tree of Life Web", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "98034", - "resourceHomeUrl": "http://tolweb.org/tree/", + "id": 1176, "institution": { - "id": 1175, - "name": "University of Arizona", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1175, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Arizona", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100525", + "name": "Tree of Life Web", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://tolweb.org/tree/", + "sampleId": "98034", + "urlPattern": "http://tolweb.org/{$id}" } ], - "sampleId": "98034", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "98034" }, { + "created": "2019-06-11T14:17:13.429+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Variation Ontology (VariO) is an ontology for the standardized, systematic description of effects, consequences and mechanisms of variations. It describes the effects of variations at the DNA, RNA and/or protein level.", "id": 1177, - "prefix": "vario", "mirId": "MIR:00000406", + "modified": "2019-06-11T14:17:13.429+0000", "name": "VariO", + "namespaceEmbeddedInLui": true, "pattern": "^VariO:\\d+$", - "description": "The Variation Ontology (VariO) is an ontology for the standardized, systematic description of effects, consequences and mechanisms of variations. It describes the effects of variations at the DNA, RNA and/or protein level.", - "created": "2019-06-11T14:17:13.429+0000", - "modified": "2019-06-11T14:17:13.429+0000", + "prefix": "vario", "resources": [ { - "id": 1180, - "mirId": "MIR:00100566", - "urlPattern": "http://purl.bioontology.org/ontology/VARIO/VariO:{$id}", - "name": "VariO through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "VariO through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "0294", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/VARIO", + "id": 1180, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100566", + "name": "VariO through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/VARIO", + "sampleId": "0294", + "urlPattern": "http://purl.bioontology.org/ontology/VARIO/VariO:{$id}" }, { - "id": 1181, - "mirId": "MIR:00100677", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/vario/terms?obo_id=VariO:{$id}", - "name": "VariO through OLS", + "deprecated": false, + "deprecationDate": null, "description": "VariO through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0294", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/vario", + "id": 1181, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100677", + "name": "VariO through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/vario", + "sampleId": "0294", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/vario/terms?obo_id=VariO:{$id}" }, { - "id": 1179, - "mirId": "MIR:00100526", - "urlPattern": "http://www.ontobee.org/search?ontology=VariO&keywords=VariO_{$id}&submit=Search+terms", - "name": "VariO at Lund University", + "deprecated": false, + "deprecationDate": null, "description": "VariO at Lund University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0294", - "resourceHomeUrl": "http://www.variationontology.org/", + "id": 1179, "institution": { - "id": 1178, - "name": "Department of Experimental Medical Science, Lund University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1178, "location": { "countryCode": "SE", "countryName": "Sweden" - } + }, + "name": "Department of Experimental Medical Science, Lund University", + "rorId": null }, "location": { "countryCode": "SE", "countryName": "Sweden" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100526", + "name": "VariO at Lund University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.variationontology.org/", + "sampleId": "0294", + "urlPattern": "http://www.ontobee.org/search?ontology=VariO&keywords=VariO_{$id}&submit=Search+terms" } ], - "sampleId": "0294", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0294" }, { + "created": "2019-06-11T14:17:13.893+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Virus Pathogen Database and Analysis Resource (ViPR) supports bioinformatics workflows for a broad range of human virus pathogens and other related viruses. It provides access to sequence records, gene and protein annotations, immune epitopes, 3D structures, and host factor data. This collection references viral strain information.", "id": 1182, - "prefix": "vipr", "mirId": "MIR:00000407", + "modified": "2019-06-11T14:17:13.893+0000", "name": "ViPR Strain", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z 0-9]+$", - "description": "The Virus Pathogen Database and Analysis Resource (ViPR) supports bioinformatics workflows for a broad range of human virus pathogens and other related viruses. It provides access to sequence records, gene and protein annotations, immune epitopes, 3D structures, and host factor data. This collection references viral strain information.", - "created": "2019-06-11T14:17:13.893+0000", - "modified": "2019-06-11T14:17:13.893+0000", + "prefix": "vipr", "resources": [ { - "id": 1184, - "mirId": "MIR:00100527", - "urlPattern": "http://www.viprbrc.org/brc/viprStrainDetails.do?strainName={$id}&decorator=arena", - "name": "ViPR Strain at J. Craig Venter Institute", + "deprecated": false, + "deprecationDate": null, "description": "ViPR Strain at J. Craig Venter Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "BeAn 70563", - "resourceHomeUrl": "http://www.viprbrc.org/brc/home.do?decorator=vipr", + "id": 1184, "institution": { - "id": 1183, - "name": "J. Craig Venter Institute, San Diego, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1183, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "J. Craig Venter Institute, San Diego, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100527", + "name": "ViPR Strain at J. Craig Venter Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.viprbrc.org/brc/home.do?decorator=vipr", + "sampleId": "BeAn 70563", + "urlPattern": "http://www.viprbrc.org/brc/viprStrainDetails.do?strainName={$id}&decorator=arena" } ], - "sampleId": "BeAn 70563", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "BeAn 70563" }, { + "created": "2019-06-11T14:17:14.109+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Eukaryotic Promoter Database (EPD) is an annotated non-redundant collection of eukaryotic POL II promoters, for which the transcription start site has been determined experimentally. Access to promoter sequences is provided by pointers to positions in nucleotide sequence entries. The annotation part of an entry includes description of the initiation site mapping data, cross-references to other databases, and bibliographic references. EPD is structured in a way that facilitates dynamic extraction of biologically meaningful promoter subsets for comparative sequence analysis.", "id": 1185, - "prefix": "epd", "mirId": "MIR:00000408", + "modified": "2019-06-11T14:17:14.109+0000", "name": "EPD", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z-_0-9]+$", - "description": "The Eukaryotic Promoter Database (EPD) is an annotated non-redundant collection of eukaryotic POL II promoters, for which the transcription start site has been determined experimentally. Access to promoter sequences is provided by pointers to positions in nucleotide sequence entries. The annotation part of an entry includes description of the initiation site mapping data, cross-references to other databases, and bibliographic references. EPD is structured in a way that facilitates dynamic extraction of biologically meaningful promoter subsets for comparative sequence analysis.", - "created": "2019-06-11T14:17:14.109+0000", - "modified": "2019-06-11T14:17:14.109+0000", + "prefix": "epd", "resources": [ { - "id": 1186, - "mirId": "MIR:00100528", - "urlPattern": "http://epd.vital-it.ch/cgi-bin/query_result.pl?out_format=NICE&Entry_0={$id}", - "name": "EPD at Swiss Institute of Bioinformatics", + "deprecated": false, + "deprecationDate": null, "description": "EPD at Swiss Institute of Bioinformatics", - "official": false, - "providerCode": "sib", - "sampleId": "TA_H3", - "resourceHomeUrl": "http://epd.vital-it.ch/", + "id": 1186, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100528", + "name": "EPD at Swiss Institute of Bioinformatics", + "official": false, + "providerCode": "sib", + "resourceHomeUrl": "http://epd.vital-it.ch/", + "sampleId": "TA_H3", + "urlPattern": "http://epd.vital-it.ch/cgi-bin/query_result.pl?out_format=NICE&Entry_0={$id}" } ], - "sampleId": "TA_H3", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "TA_H3" }, { + "created": "2019-06-11T14:17:14.331+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Rfam database is a collection of RNA families, each represented by multiple sequence alignments, consensus secondary structures and covariance models (CMs). The families in Rfam break down into three broad functional classes: non-coding RNA genes, structured cis-regulatory elements and self-splicing RNAs. Typically these functional RNAs often have a conserved secondary structure which may be better preserved than the RNA sequence. The CMs used to describe each family are a slightly more complicated relative of the profile hidden Markov models (HMMs) used by Pfam. CMs can simultaneously model RNA sequence and the structure in an elegant and accurate fashion.", "id": 1187, - "prefix": "rfam", "mirId": "MIR:00000409", + "modified": "2019-06-11T14:17:14.331+0000", "name": "RFAM", + "namespaceEmbeddedInLui": false, "pattern": "^RF\\d{5}$", - "description": "The Rfam database is a collection of RNA families, each represented by multiple sequence alignments, consensus secondary structures and covariance models (CMs). The families in Rfam break down into three broad functional classes: non-coding RNA genes, structured cis-regulatory elements and self-splicing RNAs. Typically these functional RNAs often have a conserved secondary structure which may be better preserved than the RNA sequence. The CMs used to describe each family are a slightly more complicated relative of the profile hidden Markov models (HMMs) used by Pfam. CMs can simultaneously model RNA sequence and the structure in an elegant and accurate fashion.", - "created": "2019-06-11T14:17:14.331+0000", - "modified": "2019-06-11T14:17:14.331+0000", + "prefix": "rfam", "resources": [ { - "id": 1188, - "mirId": "MIR:00100686", - "urlPattern": "https://rfam.xfam.org/family/{$id}", - "name": "Rfam at EMBL-EBI", + "deprecated": false, + "deprecationDate": null, "description": "Rfam at EMBL-EBI", - "official": true, - "providerCode": "ebi", - "sampleId": "RF00230", - "resourceHomeUrl": "https://rfam.xfam.org/", + "id": 1188, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100686", + "name": "Rfam at EMBL-EBI", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://rfam.xfam.org/", + "sampleId": "RF00230", + "urlPattern": "https://rfam.xfam.org/family/{$id}" } ], - "sampleId": "RF00230", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "RF00230" }, { + "created": "2019-06-11T14:17:14.533+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DNA barcoding is the use of short standardised segments of the genome for identification of species in all the Kingdoms of Life. The goal of the Fungal Barcoding site is to promote the DNA barcoding of fungi and other fungus-like organisms.", "id": 1189, - "prefix": "fbol", "mirId": "MIR:00000410", + "modified": "2019-06-11T14:17:14.533+0000", "name": "Fungal Barcode", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "DNA barcoding is the use of short standardised segments of the genome for identification of species in all the Kingdoms of Life. The goal of the Fungal Barcoding site is to promote the DNA barcoding of fungi and other fungus-like organisms.", - "created": "2019-06-11T14:17:14.533+0000", - "modified": "2019-06-11T14:17:14.533+0000", + "prefix": "fbol", "resources": [ { - "id": 1191, - "mirId": "MIR:00100532", - "urlPattern": "http://www.fungalbarcoding.org/BioloMICS.aspx?Table=Fungal barcodes&Rec={$id}&Fields=All&ExactMatch=T", - "name": "Fungal Barcode at Fungal Biodiversity Centre", + "deprecated": false, + "deprecationDate": null, "description": "Fungal Barcode at Fungal Biodiversity Centre", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2224", - "resourceHomeUrl": "http://www.fungalbarcoding.org/", + "id": 1191, "institution": { - "id": 1190, - "name": "Fungal Biodiversity Centre, Utrecht", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1190, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "Fungal Biodiversity Centre, Utrecht", + "rorId": null }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100532", + "name": "Fungal Barcode at Fungal Biodiversity Centre", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.fungalbarcoding.org/", + "sampleId": "2224", + "urlPattern": "http://www.fungalbarcoding.org/BioloMICS.aspx?Table=Fungal barcodes&Rec={$id}&Fields=All&ExactMatch=T" } ], - "sampleId": "2224", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2224" }, { + "created": "2019-06-11T14:17:14.756+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Assembling the Fungal Tree of Life (AFTOL) project is dedicated to significantly enhancing our understanding of the evolution of the Kingdom Fungi, which represents one of the major clades of life. There are roughly 80,000 described species of Fungi, but the actual diversity in the group has been estimated to be about 1.5 million species.", "id": 1192, - "prefix": "aftol.taxonomy", "mirId": "MIR:00000411", + "modified": "2019-06-11T14:17:14.756+0000", "name": "AFTOL", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Assembling the Fungal Tree of Life (AFTOL) project is dedicated to significantly enhancing our understanding of the evolution of the Kingdom Fungi, which represents one of the major clades of life. There are roughly 80,000 described species of Fungi, but the actual diversity in the group has been estimated to be about 1.5 million species.", - "created": "2019-06-11T14:17:14.756+0000", - "modified": "2019-06-11T14:17:14.756+0000", + "prefix": "aftol.taxonomy", "resources": [ { - "id": 1194, - "mirId": "MIR:00100533", - "urlPattern": "http://wasabi.lutzonilab.net/pub/displayTaxonInfo?aftol_id={$id}", - "name": "AFTOL at University of Minnesota", + "deprecated": false, + "deprecationDate": null, "description": "AFTOL at University of Minnesota", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "959", - "resourceHomeUrl": "http://aftol.org/data.php", + "id": 1194, "institution": { - "id": 1193, - "name": "Department of Plant Biology, University of Minnesota, Minnesota", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1193, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Plant Biology, University of Minnesota, Minnesota", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100533", + "name": "AFTOL at University of Minnesota", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://aftol.org/data.php", + "sampleId": "959", + "urlPattern": "http://wasabi.lutzonilab.net/pub/displayTaxonInfo?aftol_id={$id}" } ], - "sampleId": "959", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "959" }, { + "created": "2019-06-11T14:17:14.975+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Aspergillus Genome Database (AspGD) is a repository for information relating to fungi of the genus Aspergillus, which includes organisms of clinical, agricultural and industrial importance. AspGD facilitates comparative genomics by providing a full-featured genomics viewer, as well as matched and standardized sets of genomic information for the sequenced aspergilli. This collection references gene information.", "id": 1195, - "prefix": "aspgd.locus", "mirId": "MIR:00000412", + "modified": "2019-06-11T14:17:14.975+0000", "name": "AspGD Locus", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z_0-9]+$", - "description": "The Aspergillus Genome Database (AspGD) is a repository for information relating to fungi of the genus Aspergillus, which includes organisms of clinical, agricultural and industrial importance. AspGD facilitates comparative genomics by providing a full-featured genomics viewer, as well as matched and standardized sets of genomic information for the sequenced aspergilli. This collection references gene information.", - "created": "2019-06-11T14:17:14.975+0000", - "modified": "2019-06-11T14:17:14.975+0000", + "prefix": "aspgd.locus", "resources": [ { - "id": 1197, - "mirId": "MIR:00100534", - "urlPattern": "http://www.aspergillusgenome.org/cgi-bin/locus.pl?dbid={$id}", - "name": "AspGD at Stanford Medical School", + "deprecated": false, + "deprecationDate": null, "description": "AspGD at Stanford Medical School", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ASPL0000349247", - "resourceHomeUrl": "http://www.aspgd.org/", + "id": 1197, "institution": { - "id": 1196, - "name": "Department of Genetics, Stanford University Medical School, Stanford, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1196, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Genetics, Stanford University Medical School, Stanford, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100534", + "name": "AspGD at Stanford Medical School", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.aspgd.org/", + "sampleId": "ASPL0000349247", + "urlPattern": "http://www.aspergillusgenome.org/cgi-bin/locus.pl?dbid={$id}" } ], - "sampleId": "ASPL0000349247", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ASPL0000349247" }, { + "created": "2019-06-11T14:17:15.227+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Aspergillus Genome Database (AspGD) is a repository for information relating to fungi of the genus Aspergillus, which includes organisms of clinical, agricultural and industrial importance. AspGD facilitates comparative genomics by providing a full-featured genomics viewer, as well as matched and standardized sets of genomic information for the sequenced aspergilli. This collection references protein information.", "id": 1198, - "prefix": "aspgd.protein", "mirId": "MIR:00000413", + "modified": "2019-06-11T14:17:15.227+0000", "name": "AspGD Protein", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z_0-9]+$", - "description": "The Aspergillus Genome Database (AspGD) is a repository for information relating to fungi of the genus Aspergillus, which includes organisms of clinical, agricultural and industrial importance. AspGD facilitates comparative genomics by providing a full-featured genomics viewer, as well as matched and standardized sets of genomic information for the sequenced aspergilli. This collection references protein information.", - "created": "2019-06-11T14:17:15.227+0000", - "modified": "2019-06-11T14:17:15.227+0000", + "prefix": "aspgd.protein", "resources": [ { - "id": 1199, - "mirId": "MIR:00100535", - "urlPattern": "http://www.aspergillusgenome.org/cgi-bin/protein/proteinPage.pl?dbid={$id}", - "name": "AspGD Protein at Stanford Medical School", + "deprecated": false, + "deprecationDate": null, "description": "AspGD Protein at Stanford Medical School", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ASPL0000349247", - "resourceHomeUrl": "http://www.aspgd.org/", + "id": 1199, "institution": { - "id": 1196, - "name": "Department of Genetics, Stanford University Medical School, Stanford, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1196, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Genetics, Stanford University Medical School, Stanford, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100535", + "name": "AspGD Protein at Stanford Medical School", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.aspgd.org/", + "sampleId": "ASPL0000349247", + "urlPattern": "http://www.aspergillusgenome.org/cgi-bin/protein/proteinPage.pl?dbid={$id}" } ], - "sampleId": "ASPL0000349247", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ASPL0000349247" }, { + "created": "2019-06-11T14:17:18.754+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The National Drug Code (NDC) is a unique, three-segment number used by the Food and Drug Administration (FDA) to identify drug products for commercial use. This is required by the Drug Listing Act of 1972. The FDA publishes and updates the listed NDC numbers daily.", "id": 1237, - "prefix": "ndc", "mirId": "MIR:00000431", + "modified": "2019-06-11T14:17:18.754+0000", "name": "National Drug Code", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+\\-\\d+\\-\\d+", - "description": "The National Drug Code (NDC) is a unique, three-segment number used by the Food and Drug Administration (FDA) to identify drug products for commercial use. This is required by the Drug Listing Act of 1972. The FDA publishes and updates the listed NDC numbers daily.", - "created": "2019-06-11T14:17:18.754+0000", - "modified": "2019-06-11T14:17:18.754+0000", + "prefix": "ndc", "resources": [ { - "id": 1239, - "mirId": "MIR:00100554", - "urlPattern": "http://www.hipaaspace.com/Medical_Billing/Coding/National.Drug.Codes/{$id}", - "name": "National Drug Code at Food and Drug Administration", + "deprecated": false, + "deprecationDate": null, "description": "National Drug Code at Food and Drug Administration", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0002-1975-61", - "resourceHomeUrl": "http://www.accessdata.fda.gov/scripts/cder/ndc/", + "id": 1239, "institution": { - "id": 1238, - "name": "U.S. Food and Drug Administration, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1238, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "U.S. Food and Drug Administration, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100554", + "name": "National Drug Code at Food and Drug Administration", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.accessdata.fda.gov/scripts/cder/ndc/", + "sampleId": "0002-1975-61", + "urlPattern": "http://www.hipaaspace.com/Medical_Billing/Coding/National.Drug.Codes/{$id}" }, { - "id": 1240, - "mirId": "MIR:00100700", - "urlPattern": "http://ndc.bio2rdf.org/describe/?url=http://bio2rdf.org/ndc:{$id}", - "name": "Bio2RDF", + "deprecated": false, + "deprecationDate": null, "description": "Bio2RDF", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0002-1975-61", - "resourceHomeUrl": "http://ndc.bio2rdf.org/fct", + "id": 1240, "institution": { - "id": 33, - "name": "Bio2RDF.org", - "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", - "rorId": null, + "homeUrl": "https://bio2rdf.org", + "id": 33, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Bio2RDF.org", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100700", + "name": "Bio2RDF", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://ndc.bio2rdf.org/fct", + "sampleId": "0002-1975-61", + "urlPattern": "http://ndc.bio2rdf.org/describe/?url=http://bio2rdf.org/ndc:{$id}" } ], - "sampleId": "0002-1975-61", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "0002-1975-61" }, { + "created": "2019-06-11T14:17:15.426+0000", + "deprecated": false, + "deprecationDate": null, + "description": "AutDB is a curated database for autism research. It is built on information extracted from the studies on molecular genetics and biology of Autism Spectrum Disorders (ASD). The four modules of AutDB include information on Human Genes, Animal models, Protein Interactions (PIN) and Copy Number Variants (CNV) respectively. It provides an annotated list of ASD candidate genes in the form of reference dataset for interrogating molecular mechanisms underlying the disorder.", "id": 1200, - "prefix": "autdb", "mirId": "MIR:00000415", + "modified": "2019-06-11T14:17:15.426+0000", "name": "AutDB", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z]+[A-Z-0-9]{2,}$", - "description": "AutDB is a curated database for autism research. It is built on information extracted from the studies on molecular genetics and biology of Autism Spectrum Disorders (ASD). The four modules of AutDB include information on Human Genes, Animal models, Protein Interactions (PIN) and Copy Number Variants (CNV) respectively. It provides an annotated list of ASD candidate genes in the form of reference dataset for interrogating molecular mechanisms underlying the disorder.", - "created": "2019-06-11T14:17:15.426+0000", - "modified": "2019-06-11T14:17:15.426+0000", + "prefix": "autdb", "resources": [ { - "id": 1202, - "mirId": "MIR:00100538", - "urlPattern": "http://autism.mindspec.org/GeneDetail/{$id}", - "name": "AutDB at MindSpec", + "deprecated": false, + "deprecationDate": null, "description": "AutDB at MindSpec", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ADA", - "resourceHomeUrl": "http://autism.mindspec.org/autdb/", + "id": 1202, "institution": { - "id": 1201, - "name": "MindSpec Inc., Fairfax, Virginia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1201, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "MindSpec Inc., Fairfax, Virginia", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100538", + "name": "AutDB at MindSpec", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://autism.mindspec.org/autdb/", + "sampleId": "ADA", + "urlPattern": "http://autism.mindspec.org/GeneDetail/{$id}" } ], - "sampleId": "ADA", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ADA" }, { + "created": "2019-06-11T14:17:15.634+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BacMap is an electronic, interactive atlas of fully sequenced bacterial genomes. It contains labeled, zoomable and searchable chromosome maps for sequenced prokaryotic (archaebacterial and eubacterial) species. Each map can be zoomed to the level of individual genes and each gene is hyperlinked to a richly annotated gene card. All bacterial genome maps are supplemented with separate prophage genome maps as well as separate tRNA and rRNA maps. Each bacterial chromosome entry in BacMap contains graphs and tables on a variety of gene and protein statistics. Likewise, every bacterial species entry contains a bacterial 'biography' card, with taxonomic details, phenotypic details, textual descriptions and images. This collection references genome map information.", "id": 1203, - "prefix": "bacmap.map", "mirId": "MIR:00000416", + "modified": "2019-06-11T14:17:15.634+0000", "name": "BacMap Map", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+(\\_)?\\d+(\\.\\d+)?$", - "description": "BacMap is an electronic, interactive atlas of fully sequenced bacterial genomes. It contains labeled, zoomable and searchable chromosome maps for sequenced prokaryotic (archaebacterial and eubacterial) species. Each map can be zoomed to the level of individual genes and each gene is hyperlinked to a richly annotated gene card. All bacterial genome maps are supplemented with separate prophage genome maps as well as separate tRNA and rRNA maps. Each bacterial chromosome entry in BacMap contains graphs and tables on a variety of gene and protein statistics. Likewise, every bacterial species entry contains a bacterial 'biography' card, with taxonomic details, phenotypic details, textual descriptions and images. This collection references genome map information.", - "created": "2019-06-11T14:17:15.634+0000", - "modified": "2019-06-11T14:17:15.634+0000", + "prefix": "bacmap.map", "resources": [ { - "id": 1204, - "mirId": "MIR:00100539", - "urlPattern": "http://bacmap.wishartlab.com/maps/{$id}/index.html", - "name": "BacMap Genome Map at University of Alberta", + "deprecated": false, + "deprecationDate": null, "description": "BacMap Genome Map at University of Alberta", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "AP011135", - "resourceHomeUrl": "http://bacmap.wishartlab.com/", + "id": 1204, "institution": { - "id": 1037, - "name": "Department of Computing Science, Food and Nutritional Science, University of Alberta, Edmonton", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1037, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "Department of Computing Science, Food and Nutritional Science, University of Alberta, Edmonton", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100539", + "name": "BacMap Genome Map at University of Alberta", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bacmap.wishartlab.com/", + "sampleId": "AP011135", + "urlPattern": "http://bacmap.wishartlab.com/maps/{$id}/index.html" } ], - "sampleId": "AP011135", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AP011135" }, { + "created": "2019-06-11T14:17:15.821+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Bgee is a database of gene expression patterns within particular anatomical structures within a species, and between different animal species. This collection refers to expression across species.", "id": 1205, - "prefix": "bgee.family", "mirId": "MIR:00000417", + "modified": "2019-06-11T14:17:15.821+0000", "name": "Bgee family", + "namespaceEmbeddedInLui": false, "pattern": "^(ENSFM|ENSGTV:)\\d+$", - "description": "Bgee is a database of gene expression patterns within particular anatomical structures within a species, and between different animal species. This collection refers to expression across species.", - "created": "2019-06-11T14:17:15.821+0000", - "modified": "2019-06-11T14:17:15.821+0000", + "prefix": "bgee.family", "resources": [ { - "id": 1207, - "mirId": "MIR:00100540", - "urlPattern": "http://bgee.unil.ch/bgee/bgee?page=gene_family&action=family_details&gene_family_id={$id}", - "name": "Bgee at Lausanne", + "deprecated": false, + "deprecationDate": null, "description": "Bgee at Lausanne", - "official": false, - "providerCode": "sib", - "sampleId": "ENSFM00500000270089", - "resourceHomeUrl": "http://bgee.unil.ch/bgee/bgee", + "id": 1207, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100540", + "name": "Bgee at Lausanne", + "official": false, + "providerCode": "sib", + "resourceHomeUrl": "http://bgee.unil.ch/bgee/bgee", + "sampleId": "ENSFM00500000270089", + "urlPattern": "http://bgee.unil.ch/bgee/bgee?page=gene_family&action=family_details&gene_family_id={$id}" } ], - "sampleId": "ENSFM00500000270089", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ENSFM00500000270089" }, { + "created": "2019-06-11T14:17:16.067+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Bgee is a database to retrieve and compare gene expression patterns in multiple species, produced from multiple data types (RNA-Seq, Affymetrix, in situ hybridization, and EST data). This collection references genes in Bgee.", "id": 1208, - "prefix": "bgee.gene", "mirId": "MIR:00000418", + "modified": "2019-06-11T14:17:16.067+0000", "name": "Bgee gene", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z]+\\d+$", - "description": "Bgee is a database to retrieve and compare gene expression patterns in multiple species, produced from multiple data types (RNA-Seq, Affymetrix, in situ hybridization, and EST data). This collection references genes in Bgee.", - "created": "2019-06-11T14:17:16.067+0000", - "modified": "2019-06-11T14:17:16.067+0000", + "prefix": "bgee.gene", "resources": [ { - "id": 1210, - "mirId": "MIR:00100541", - "urlPattern": "https://bgee.org/?page=gene&gene_id={$id}", - "name": "Bgee gene", + "deprecated": false, + "deprecationDate": null, "description": "Bgee gene", - "official": false, - "providerCode": "sib", - "sampleId": "FBgn0000015", - "resourceHomeUrl": "https://bgee.org/", + "id": 1210, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100541", + "name": "Bgee gene", + "official": false, + "providerCode": "sib", + "resourceHomeUrl": "https://bgee.org/", + "sampleId": "FBgn0000015", + "urlPattern": "https://bgee.org/?page=gene&gene_id={$id}" } ], - "sampleId": "FBgn0000015", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "FBgn0000015" }, { + "created": "2019-06-11T14:17:16.333+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Bgee is a database of gene expression patterns within particular anatomical structures within a species, and between different animal species. This collection refers to developmental stages.", "id": 1211, - "prefix": "bgee.stage", "mirId": "MIR:00000419", + "modified": "2019-06-11T14:17:16.333+0000", "name": "Bgee stage", + "namespaceEmbeddedInLui": false, "pattern": "^(FBvd|XtroDO|HsapDO|MmusDO)\\:\\d+$", - "description": "Bgee is a database of gene expression patterns within particular anatomical structures within a species, and between different animal species. This collection refers to developmental stages.", - "created": "2019-06-11T14:17:16.333+0000", - "modified": "2019-06-11T14:17:16.333+0000", + "prefix": "bgee.stage", "resources": [ { - "id": 1212, - "mirId": "MIR:00100542", - "urlPattern": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organs&stage_id={$id}&stage_children=on", - "name": "Bgee at Lausanne", + "deprecated": false, + "deprecationDate": null, "description": "Bgee at Lausanne", - "official": false, - "providerCode": "sib", - "sampleId": "HsapDO:0000004", - "resourceHomeUrl": "http://bgee.unil.ch/bgee/bgee", + "id": 1212, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100542", + "name": "Bgee at Lausanne", + "official": false, + "providerCode": "sib", + "resourceHomeUrl": "http://bgee.unil.ch/bgee/bgee", + "sampleId": "HsapDO:0000004", + "urlPattern": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organs&stage_id={$id}&stage_children=on" } ], - "sampleId": "HsapDO:0000004", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "HsapDO:0000004" }, { + "created": "2019-06-11T14:17:16.514+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Bgee is a database of gene expression patterns within particular anatomical structures within a species, and between different animal species. This collection refers to anatomical structures.", "id": 1213, - "prefix": "bgee.organ", "mirId": "MIR:00000420", + "modified": "2019-06-11T14:17:16.514+0000", "name": "Bgee organ", + "namespaceEmbeddedInLui": false, "pattern": "^(XAO|ZFA|EHDAA|EMAPA|EV|MA)\\:\\d+$", - "description": "Bgee is a database of gene expression patterns within particular anatomical structures within a species, and between different animal species. This collection refers to anatomical structures.", - "created": "2019-06-11T14:17:16.514+0000", - "modified": "2019-06-11T14:17:16.514+0000", + "prefix": "bgee.organ", "resources": [ { - "id": 1214, - "mirId": "MIR:00100543", - "urlPattern": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organ_details&organ_id={$id}&organ_children=on", - "name": "Bgee at Lausanne", + "deprecated": false, + "deprecationDate": null, "description": "Bgee at Lausanne", - "official": false, - "providerCode": "sib", - "sampleId": "EHDAA:2185", - "resourceHomeUrl": "http://bgee.unil.ch/bgee/bgee", + "id": 1214, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100543", + "name": "Bgee at Lausanne", + "official": false, + "providerCode": "sib", + "resourceHomeUrl": "http://bgee.unil.ch/bgee/bgee", + "sampleId": "EHDAA:2185", + "urlPattern": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organ_details&organ_id={$id}&organ_children=on" } ], - "sampleId": "EHDAA:2185", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "EHDAA:2185" }, { + "created": "2019-06-11T14:17:16.688+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BioCarta is a supplier and distributor of characterized reagents and assays for biopharmaceutical and academic research. It catalogs community produced online maps depicting molecular relationships from areas of active research, generating classical pathways as well as suggestions for new pathways. This collections references pathway maps.", "id": 1215, - "prefix": "biocarta.pathway", "mirId": "MIR:00000421", + "modified": "2019-06-11T14:17:16.688+0000", "name": "BioCarta Pathway", + "namespaceEmbeddedInLui": false, "pattern": "^([hm]\\_)?\\w+Pathway$", - "description": "BioCarta is a supplier and distributor of characterized reagents and assays for biopharmaceutical and academic research. It catalogs community produced online maps depicting molecular relationships from areas of active research, generating classical pathways as well as suggestions for new pathways. This collections references pathway maps.", - "created": "2019-06-11T14:17:16.688+0000", - "modified": "2019-06-11T14:17:16.688+0000", + "prefix": "biocarta.pathway", "resources": [ { - "id": 1216, - "mirId": "MIR:00100544", - "urlPattern": "https://cgap.nci.nih.gov/Pathways/BioCarta/{$id}", - "name": "BioCarta Pathway at NCI", + "deprecated": false, + "deprecationDate": null, "description": "BioCarta Pathway at NCI", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "h_aktPathway", - "resourceHomeUrl": "https://www.biocarta.com/", + "id": 1216, "institution": { - "id": 442, - "name": "National Cancer Institute, Center for Bioinformatics, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 442, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Cancer Institute, Center for Bioinformatics, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100544", + "name": "BioCarta Pathway at NCI", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.biocarta.com/", + "sampleId": "h_aktPathway", + "urlPattern": "https://cgap.nci.nih.gov/Pathways/BioCarta/{$id}" } ], - "sampleId": "h_aktPathway", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "h_aktPathway" }, { + "created": "2019-06-11T14:17:16.858+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. The PANTHER Pathway Component collection references specific classes of molecules that play the same mechanistic role within a pathway, across species. Pathway\r\ncomponents may be proteins, genes/DNA, RNA, or simple molecules. Where the identified component is a protein, DNA, or transcribed RNA, it is associated with protein sequences in the PANTHER protein family trees through manual curation.", "id": 1217, - "prefix": "panther.pthcmp", "mirId": "MIR:00000422", + "modified": "2019-06-11T14:17:16.858+0000", "name": "PANTHER Pathway Component", + "namespaceEmbeddedInLui": false, "pattern": "^G|P|U|C|S\\d{5}$", - "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. The PANTHER Pathway Component collection references specific classes of molecules that play the same mechanistic role within a pathway, across species. Pathway\r\ncomponents may be proteins, genes/DNA, RNA, or simple molecules. Where the identified component is a protein, DNA, or transcribed RNA, it is associated with protein sequences in the PANTHER protein family trees through manual curation.", - "created": "2019-06-11T14:17:16.858+0000", - "modified": "2019-06-11T14:17:16.858+0000", + "prefix": "panther.pthcmp", "resources": [ { - "id": 1218, - "mirId": "MIR:00100545", - "urlPattern": "http://www.pantherdb.org/pathway/pathCatDetail.do?clsAccession={$id}", - "name": "PANTHER Pathway Component at USC (Los Angeles)", + "deprecated": false, + "deprecationDate": null, "description": "PANTHER Pathway Component at USC (Los Angeles)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "P00266", - "resourceHomeUrl": "http://www.pantherdb.org/", + "id": 1218, "institution": { - "id": 94, - "name": "Keck School of Medicine, University of Southern California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 94, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Keck School of Medicine, University of Southern California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100545", + "name": "PANTHER Pathway Component at USC (Los Angeles)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.pantherdb.org/", + "sampleId": "P00266", + "urlPattern": "http://www.pantherdb.org/pathway/pathCatDetail.do?clsAccession={$id}" } ], - "sampleId": "P00266", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "P00266" }, { + "created": "2019-06-11T14:17:17.038+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. GMD's metabolite profiles provide relative metabolite concentrations normalised according to fresh weight (or comparable quantitative data, such as volume, cell count, etc.) and internal standards (e.g. ribotol) of biological reference conditions and tissues.", "id": 1219, - "prefix": "gmd.profile", "mirId": "MIR:00000423", + "modified": "2019-06-11T14:17:17.038+0000", "name": "Golm Metabolome Database Profile", + "namespaceEmbeddedInLui": false, "pattern": "^([0-9a-fA-F]){8}(-([0-9a-fA-F]){4}){3}-([0-9a-fA-F]){12}$", - "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. GMD's metabolite profiles provide relative metabolite concentrations normalised according to fresh weight (or comparable quantitative data, such as volume, cell count, etc.) and internal standards (e.g. ribotol) of biological reference conditions and tissues.", - "created": "2019-06-11T14:17:17.038+0000", - "modified": "2019-06-11T14:17:17.038+0000", + "prefix": "gmd.profile", "resources": [ { - "id": 1220, - "mirId": "MIR:00100546", - "urlPattern": "http://gmd.mpimp-golm.mpg.de/profile/default.aspx?XemlId={$id}", - "name": "Golm Metabolome Database (Profile) at Max Planck Institute of Molecular Plant Physiology", + "deprecated": false, + "deprecationDate": null, "description": "Golm Metabolome Database (Profile) at Max Planck Institute of Molecular Plant Physiology", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "10b38aaf-b977-4950-85b8-f4775f66658d", - "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", + "id": 1220, "institution": { - "id": 806, - "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 806, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100546", + "name": "Golm Metabolome Database (Profile) at Max Planck Institute of Molecular Plant Physiology", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", + "sampleId": "10b38aaf-b977-4950-85b8-f4775f66658d", + "urlPattern": "http://gmd.mpimp-golm.mpg.de/profile/default.aspx?XemlId={$id}" } ], - "sampleId": "10b38aaf-b977-4950-85b8-f4775f66658d", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "10b38aaf-b977-4950-85b8-f4775f66658d" }, { + "created": "2019-06-11T14:17:17.255+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. Analytes are subjected to a gas chromatograph coupled to a mass spectrometer, which records the mass spectrum and the retention time linked to an analyte. This collection references GC-MS spectra.", "id": 1221, - "prefix": "gmd.gcms", "mirId": "MIR:00000424", + "modified": "2019-06-11T14:17:17.255+0000", "name": "Golm Metabolome Database GC-MS spectra", + "namespaceEmbeddedInLui": false, "pattern": "^([0-9a-fA-F]){8}(-([0-9a-fA-F]){4}){3}-([0-9a-fA-F]){12}$", - "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. Analytes are subjected to a gas chromatograph coupled to a mass spectrometer, which records the mass spectrum and the retention time linked to an analyte. This collection references GC-MS spectra.", - "created": "2019-06-11T14:17:17.255+0000", - "modified": "2019-06-11T14:17:17.255+0000", + "prefix": "gmd.gcms", "resources": [ { - "id": 1222, - "mirId": "MIR:00100547", - "urlPattern": "http://gmd.mpimp-golm.mpg.de/Spectrums/{$id}", - "name": "Golm Metabolome Database (GC-MS Spectra) at Max Planck Institute of Molecular Plant Physiology", + "deprecated": false, + "deprecationDate": null, "description": "Golm Metabolome Database (GC-MS Spectra) at Max Planck Institute of Molecular Plant Physiology", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "53d583d8-40c6-40e1-9296-23f821cd77a5", - "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", + "id": 1222, "institution": { - "id": 806, - "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 806, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100547", + "name": "Golm Metabolome Database (GC-MS Spectra) at Max Planck Institute of Molecular Plant Physiology", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", + "sampleId": "53d583d8-40c6-40e1-9296-23f821cd77a5", + "urlPattern": "http://gmd.mpimp-golm.mpg.de/Spectrums/{$id}" } ], - "sampleId": "53d583d8-40c6-40e1-9296-23f821cd77a5", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "53d583d8-40c6-40e1-9296-23f821cd77a5" }, { + "created": "2019-06-11T14:17:17.475+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. Since metabolites often cannot be obtained in their respective native biological state, for example organic acids may be only acquirable as salts, the concept of reference substance was introduced. This collection references reference substances.", "id": 1223, - "prefix": "gmd.ref", "mirId": "MIR:00000425", + "modified": "2019-06-11T14:17:17.475+0000", "name": "Golm Metabolome Database Reference Substance", + "namespaceEmbeddedInLui": false, "pattern": "^([0-9a-fA-F]){8}(-([0-9a-fA-F]){4}){3}-([0-9a-fA-F]){12}$", - "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. Since metabolites often cannot be obtained in their respective native biological state, for example organic acids may be only acquirable as salts, the concept of reference substance was introduced. This collection references reference substances.", - "created": "2019-06-11T14:17:17.475+0000", - "modified": "2019-06-11T14:17:17.475+0000", + "prefix": "gmd.ref", "resources": [ { - "id": 1224, - "mirId": "MIR:00100548", - "urlPattern": "http://gmd.mpimp-golm.mpg.de/ReferenceSubstances/{$id}", - "name": "Golm Metabolome Database (Reference Substance) at Max Planck Institute of Molecular Plant Physiology", + "deprecated": false, + "deprecationDate": null, "description": "Golm Metabolome Database (Reference Substance) at Max Planck Institute of Molecular Plant Physiology", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "8cf84adb-b4db-4807-ac98-0004247c35df", - "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", + "id": 1224, "institution": { - "id": 806, - "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 806, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100548", + "name": "Golm Metabolome Database (Reference Substance) at Max Planck Institute of Molecular Plant Physiology", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", + "sampleId": "8cf84adb-b4db-4807-ac98-0004247c35df", + "urlPattern": "http://gmd.mpimp-golm.mpg.de/ReferenceSubstances/{$id}" } ], - "sampleId": "8cf84adb-b4db-4807-ac98-0004247c35df", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "8cf84adb-b4db-4807-ac98-0004247c35df" }, { + "created": "2019-06-11T14:17:17.661+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. For GC-MS profiling analyses, polar metabolite extracts are chemically converted, i.e. derivatised into less polar and volatile compounds, so called analytes. This collection references analytes.", "id": 1225, - "prefix": "gmd.analyte", "mirId": "MIR:00000426", + "modified": "2019-06-11T14:17:17.661+0000", "name": "Golm Metabolome Database Analyte", + "namespaceEmbeddedInLui": false, "pattern": "^([0-9a-fA-F]){8}(-([0-9a-fA-F]){4}){3}-([0-9a-fA-F]){12}$", - "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. For GC-MS profiling analyses, polar metabolite extracts are chemically converted, i.e. derivatised into less polar and volatile compounds, so called analytes. This collection references analytes.", - "created": "2019-06-11T14:17:17.661+0000", - "modified": "2019-06-11T14:17:17.661+0000", + "prefix": "gmd.analyte", "resources": [ { - "id": 1226, - "mirId": "MIR:00100549", - "urlPattern": "http://gmd.mpimp-golm.mpg.de/Analytes/{$id}", - "name": "Golm Metabolome Database (Analyte) at Max Planck Institute of Molecular Plant Physiology", + "deprecated": false, + "deprecationDate": null, "description": "Golm Metabolome Database (Analyte) at Max Planck Institute of Molecular Plant Physiology", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "4f0fa9b6-514f-4ff4-98cc-0009bc08eb80", - "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", + "id": 1226, "institution": { - "id": 806, - "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 806, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100549", + "name": "Golm Metabolome Database (Analyte) at Max Planck Institute of Molecular Plant Physiology", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", + "sampleId": "4f0fa9b6-514f-4ff4-98cc-0009bc08eb80", + "urlPattern": "http://gmd.mpimp-golm.mpg.de/Analytes/{$id}" } ], - "sampleId": "4f0fa9b6-514f-4ff4-98cc-0009bc08eb80", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "4f0fa9b6-514f-4ff4-98cc-0009bc08eb80" }, { + "created": "2019-06-11T14:17:17.850+0000", + "deprecated": false, + "deprecationDate": null, + "description": "IntAct provides a freely available, open source database system and analysis tools for protein interaction data. This collection references interactor molecules.", "id": 1227, - "prefix": "intact.molecule", "mirId": "MIR:00000427", + "modified": "2019-06-11T14:17:17.850+0000", "name": "IntAct Molecule", + "namespaceEmbeddedInLui": false, "pattern": "^EBI\\-[0-9]+$", - "description": "IntAct provides a freely available, open source database system and analysis tools for protein interaction data. This collection references interactor molecules.", - "created": "2019-06-11T14:17:17.850+0000", - "modified": "2019-06-11T14:17:17.850+0000", + "prefix": "intact.molecule", "resources": [ { - "id": 1228, - "mirId": "MIR:00100550", - "urlPattern": "https://www.ebi.ac.uk/intact/molecule/{$id}", - "name": "IntAct Molecule at EBI", + "deprecated": false, + "deprecationDate": null, "description": "IntAct Molecule at EBI", - "official": false, - "providerCode": "ebi", - "sampleId": "EBI-366083", - "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", + "id": 1228, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100550", + "name": "IntAct Molecule at EBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", + "sampleId": "EBI-366083", + "urlPattern": "https://www.ebi.ac.uk/intact/molecule/{$id}" } ], - "sampleId": "EBI-366083", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "EBI-366083" }, { + "created": "2019-06-11T14:17:18.034+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The human DEPhOsphorylation Database (DEPOD) contains information on known human active phosphatases and their experimentally verified protein and nonprotein substrates. Reliability scores are provided for dephosphorylation interactions, according to the type of assay used, as well as the number of laboratories that have confirmed such interaction. Phosphatase and substrate entries are listed along with the dephosphorylation site, bioassay type, and original literature, and contain links to other resources.", "id": 1229, - "prefix": "depod", "mirId": "MIR:00000428", + "modified": "2019-06-11T14:17:18.034+0000", "name": "DEPOD", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z0-9]+$", - "description": "The human DEPhOsphorylation Database (DEPOD) contains information on known human active phosphatases and their experimentally verified protein and nonprotein substrates. Reliability scores are provided for dephosphorylation interactions, according to the type of assay used, as well as the number of laboratories that have confirmed such interaction. Phosphatase and substrate entries are listed along with the dephosphorylation site, bioassay type, and original literature, and contain links to other resources.", - "created": "2019-06-11T14:17:18.034+0000", - "modified": "2019-06-11T14:17:18.034+0000", + "prefix": "depod", "resources": [ { - "id": 1231, - "mirId": "MIR:00100551", - "urlPattern": "http://www.depod.bioss.uni-freiburg.de/showp.php?gene={$id}", - "name": "DEPOD at EMBL", + "deprecated": false, + "deprecationDate": null, "description": "DEPOD at EMBL", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PTPN1", - "resourceHomeUrl": "http://www.depod.bioss.uni-freiburg.de", + "id": 1231, "institution": { - "id": 1230, - "name": "European Molecular Biology Laboratory EMBL, Heidelberg", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1230, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "European Molecular Biology Laboratory EMBL, Heidelberg", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100551", + "name": "DEPOD at EMBL", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.depod.bioss.uni-freiburg.de", + "sampleId": "PTPN1", + "urlPattern": "http://www.depod.bioss.uni-freiburg.de/showp.php?gene={$id}" } ], - "sampleId": "PTPN1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PTPN1" }, { + "created": "2019-06-11T14:17:18.324+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Cell Signaling Technology is a commercial organisation which provides a pathway portal to showcase their phospho-antibody products. This collection references pathways.", "id": 1232, - "prefix": "cst", "mirId": "MIR:00000429", + "modified": "2019-06-11T14:17:18.324+0000", "name": "Cell Signaling Technology Pathways", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9_-]+$", - "description": "Cell Signaling Technology is a commercial organisation which provides a pathway portal to showcase their phospho-antibody products. This collection references pathways.", - "created": "2019-06-11T14:17:18.324+0000", - "modified": "2019-06-11T14:17:18.324+0000", + "prefix": "cst", "resources": [ { - "id": 1234, - "mirId": "MIR:00100552", - "urlPattern": "http://www.cellsignal.com/reference/pathway/{$id}.html", - "name": "CST Pathways at Cell Signaling Technology", + "deprecated": false, + "deprecationDate": null, "description": "CST Pathways at Cell Signaling Technology", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Akt_PKB", - "resourceHomeUrl": "http://www.cellsignal.com/pathways/index.html", + "id": 1234, "institution": { - "id": 1233, - "name": "Cell Signaling Technology, Inc., Danvers, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1233, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Cell Signaling Technology, Inc., Danvers, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100552", + "name": "CST Pathways at Cell Signaling Technology", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.cellsignal.com/pathways/index.html", + "sampleId": "Akt_PKB", + "urlPattern": "http://www.cellsignal.com/reference/pathway/{$id}.html" } ], - "sampleId": "Akt_PKB", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Akt_PKB" }, { + "created": "2019-06-11T14:17:19.049+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Phytozome is a project to facilitate comparative genomic studies amongst green plants. Famlies of orthologous and paralogous genes that represent the modern descendents of ancestral gene sets are constructed at key phylogenetic nodes. These families allow easy access to clade specific orthology/paralogy relationships as well as clade specific genes and gene expansions. This collection references locus information.", "id": 1241, - "prefix": "phytozome.locus", "mirId": "MIR:00000432", + "modified": "2019-06-11T14:17:19.049+0000", "name": "Phytozome Locus", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9]+$", - "description": "Phytozome is a project to facilitate comparative genomic studies amongst green plants. Famlies of orthologous and paralogous genes that represent the modern descendents of ancestral gene sets are constructed at key phylogenetic nodes. These families allow easy access to clade specific orthology/paralogy relationships as well as clade specific genes and gene expansions. This collection references locus information.", - "created": "2019-06-11T14:17:19.049+0000", - "modified": "2019-06-11T14:17:19.049+0000", + "prefix": "phytozome.locus", "resources": [ { - "id": 1243, - "mirId": "MIR:00100556", - "urlPattern": "http://www.phytozome.net/genePage.php?crown&method=0&search=1&detail=1&searchText=locusname:{$id}", - "name": "Phytozome Locus at Joint Genome Institute", + "deprecated": false, + "deprecationDate": null, "description": "Phytozome Locus at Joint Genome Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Glyma0021s00410", - "resourceHomeUrl": "http://www.phytozome.net/", + "id": 1243, "institution": { - "id": 1242, - "name": "Joint Genome Institute, California, and the Center for Integrative Genomics, Lausanne", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1242, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Joint Genome Institute, California, and the Center for Integrative Genomics, Lausanne", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100556", + "name": "Phytozome Locus at Joint Genome Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.phytozome.net/", + "sampleId": "Glyma0021s00410", + "urlPattern": "http://www.phytozome.net/genePage.php?crown&method=0&search=1&detail=1&searchText=locusname:{$id}" } ], - "sampleId": "Glyma0021s00410", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Glyma0021s00410" }, { + "created": "2019-06-11T14:17:19.310+0000", + "deprecated": false, + "deprecationDate": null, + "description": "SubtiList serves to collate and integrate various aspects of the genomic information from B. subtilis, the paradigm of sporulating Gram-positive bacteria.\r\nSubtiList provides a complete dataset of DNA and protein sequences derived from the paradigm strain B. subtilis 168, linked to the relevant annotations and functional assignments.", "id": 1244, - "prefix": "subtilist", "mirId": "MIR:00000433", + "modified": "2019-06-11T14:17:19.310+0000", "name": "SubtiList", + "namespaceEmbeddedInLui": false, "pattern": "^BG\\d+$", - "description": "SubtiList serves to collate and integrate various aspects of the genomic information from B. subtilis, the paradigm of sporulating Gram-positive bacteria.\r\nSubtiList provides a complete dataset of DNA and protein sequences derived from the paradigm strain B. subtilis 168, linked to the relevant annotations and functional assignments.", - "created": "2019-06-11T14:17:19.310+0000", - "modified": "2019-06-11T14:17:19.310+0000", + "prefix": "subtilist", "resources": [ { - "id": 1246, - "mirId": "MIR:00100557", - "urlPattern": "http://genolist.pasteur.fr/SubtiList/genome.cgi?external_query+{$id}", - "name": "SubtiList at Pasteur Institute", + "deprecated": false, + "deprecationDate": null, "description": "SubtiList at Pasteur Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "BG11523", - "resourceHomeUrl": "http://genolist.pasteur.fr/SubtiList/", + "id": 1246, "institution": { - "id": 1245, - "name": "Pasteur Institute, Paris", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1245, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Pasteur Institute, Paris", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100557", + "name": "SubtiList at Pasteur Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://genolist.pasteur.fr/SubtiList/", + "sampleId": "BG11523", + "urlPattern": "http://genolist.pasteur.fr/SubtiList/genome.cgi?external_query+{$id}" } ], - "sampleId": "BG11523", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "BG11523" }, { + "created": "2019-06-11T14:17:19.532+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DailyMed provides information about marketed drugs. This information includes FDA labels (package inserts). The Web site provides a standard, comprehensive, up-to-date, look-up and download resource of medication content and labeling as found in medication package inserts. Drug labeling is the most recent submitted to the Food and Drug Administration (FDA) and currently in use; it may include, for example, strengthened warnings undergoing FDA review or minor editorial changes. These labels have been reformatted to make them easier to read.", "id": 1247, - "prefix": "dailymed", "mirId": "MIR:00000434", + "modified": "2019-06-11T14:17:19.532+0000", "name": "DailyMed", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9-]+", - "description": "DailyMed provides information about marketed drugs. This information includes FDA labels (package inserts). The Web site provides a standard, comprehensive, up-to-date, look-up and download resource of medication content and labeling as found in medication package inserts. Drug labeling is the most recent submitted to the Food and Drug Administration (FDA) and currently in use; it may include, for example, strengthened warnings undergoing FDA review or minor editorial changes. These labels have been reformatted to make them easier to read.", - "created": "2019-06-11T14:17:19.532+0000", - "modified": "2019-06-11T14:17:19.532+0000", + "prefix": "dailymed", "resources": [ { - "id": 1249, - "mirId": "MIR:00100558", - "urlPattern": "https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid={$id}", - "name": "DailyMed at NLM", + "deprecated": false, + "deprecationDate": null, "description": "DailyMed at NLM", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "973a9333-fec7-46dd-8eb5-25738f06ee54", - "resourceHomeUrl": "https://dailymed.nlm.nih.gov/dailymed/", + "id": 1249, "institution": { - "id": 1248, - "name": "U.S. National Library of Medicine, Bethesda, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1248, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "U.S. National Library of Medicine, Bethesda, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100558", + "name": "DailyMed at NLM", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://dailymed.nlm.nih.gov/dailymed/", + "sampleId": "973a9333-fec7-46dd-8eb5-25738f06ee54", + "urlPattern": "https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid={$id}" } ], - "sampleId": "973a9333-fec7-46dd-8eb5-25738f06ee54", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "973a9333-fec7-46dd-8eb5-25738f06ee54" }, { + "created": "2019-06-11T14:17:19.846+0000", + "deprecated": false, + "deprecationDate": null, + "description": "SIDER (Side Effect Resource) is a public, computer-readable side effect resource that connects drugs to side effect terms. It aggregates dispersed public information on side effects. This collection references drugs in SIDER.", "id": 1250, - "prefix": "sider.drug", "mirId": "MIR:00000435", + "modified": "2019-06-11T14:17:19.846+0000", "name": "SIDER Drug", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "SIDER (Side Effect Resource) is a public, computer-readable side effect resource that connects drugs to side effect terms. It aggregates dispersed public information on side effects. This collection references drugs in SIDER.", - "created": "2019-06-11T14:17:19.846+0000", - "modified": "2019-06-11T14:17:19.846+0000", + "prefix": "sider.drug", "resources": [ { - "id": 1252, - "mirId": "MIR:00100559", - "urlPattern": "http://sideeffects.embl.de/drugs/{$id}/", - "name": "SIDER Drug v2 at EMBL (Heidelberg)", + "deprecated": false, + "deprecationDate": null, "description": "SIDER Drug v2 at EMBL (Heidelberg)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2244", - "resourceHomeUrl": "http://sideeffects.embl.de/", + "id": 1252, "institution": { - "id": 1251, - "name": "Structural and Computational Biology Unit, European Molecular Biology Laboratory, Heidelberg", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1251, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Structural and Computational Biology Unit, European Molecular Biology Laboratory, Heidelberg", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100559", + "name": "SIDER Drug v2 at EMBL (Heidelberg)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://sideeffects.embl.de/", + "sampleId": "2244", + "urlPattern": "http://sideeffects.embl.de/drugs/{$id}/" } ], - "sampleId": "2244", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2244" }, { + "created": "2019-06-11T14:17:20.079+0000", + "deprecated": false, + "deprecationDate": null, + "description": "SIDER (Side Effect Resource) is a public, computer-readable side effect resource that connects drugs to side effect terms. It aggregates dispersed public information on side effects. This collection references side effects of drugs as referenced in SIDER.", "id": 1253, - "prefix": "sider.effect", "mirId": "MIR:00000436", + "modified": "2019-06-11T14:17:20.079+0000", "name": "SIDER Side Effect", + "namespaceEmbeddedInLui": false, "pattern": "^C\\d+$", - "description": "SIDER (Side Effect Resource) is a public, computer-readable side effect resource that connects drugs to side effect terms. It aggregates dispersed public information on side effects. This collection references side effects of drugs as referenced in SIDER.", - "created": "2019-06-11T14:17:20.079+0000", - "modified": "2019-06-11T14:17:20.079+0000", + "prefix": "sider.effect", "resources": [ { - "id": 1254, - "mirId": "MIR:00100560", - "urlPattern": "http://sideeffects.embl.de/se/{$id}/", - "name": "SIDER Side Effect v2 at EMBL (Heidelberg)", + "deprecated": false, + "deprecationDate": null, "description": "SIDER Side Effect v2 at EMBL (Heidelberg)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "C0017565", - "resourceHomeUrl": "http://sideeffects.embl.de/", + "id": 1254, "institution": { - "id": 1251, - "name": "Structural and Computational Biology Unit, European Molecular Biology Laboratory, Heidelberg", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1251, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Structural and Computational Biology Unit, European Molecular Biology Laboratory, Heidelberg", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100560", + "name": "SIDER Side Effect v2 at EMBL (Heidelberg)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://sideeffects.embl.de/", + "sampleId": "C0017565", + "urlPattern": "http://sideeffects.embl.de/se/{$id}/" } ], - "sampleId": "C0017565", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "C0017565" }, { + "created": "2019-06-11T14:17:20.303+0000", + "deprecated": false, + "deprecationDate": null, + "description": "WikiGenes is a collaborative knowledge resource for the life sciences, which is based on the general wiki idea but employs specifically developed technology to serve as a rigorous scientific tool. The rationale behind WikiGenes is to provide a platform for the scientific community to collect, communicate and evaluate knowledge about genes, chemicals, diseases and other biomedical concepts in a bottom-up process.", "id": 1255, - "prefix": "wikigenes", "mirId": "MIR:00000437", + "modified": "2019-06-11T14:17:20.303+0000", "name": "WikiGenes", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "WikiGenes is a collaborative knowledge resource for the life sciences, which is based on the general wiki idea but employs specifically developed technology to serve as a rigorous scientific tool. The rationale behind WikiGenes is to provide a platform for the scientific community to collect, communicate and evaluate knowledge about genes, chemicals, diseases and other biomedical concepts in a bottom-up process.", - "created": "2019-06-11T14:17:20.303+0000", - "modified": "2019-06-11T14:17:20.303+0000", + "prefix": "wikigenes", "resources": [ { - "id": 1257, - "mirId": "MIR:00100567", - "urlPattern": "http://www.wikigenes.org/e/gene/e/{$id}.html", - "name": "WikiGenes at Massachusetts Institute of Technology", + "deprecated": false, + "deprecationDate": null, "description": "WikiGenes at Massachusetts Institute of Technology", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "3771877", - "resourceHomeUrl": "http://www.wikigenes.org/", + "id": 1257, "institution": { - "id": 1256, - "name": "Computer Science and Artificial Intelligence Laboratory, Massachusetts Institute of Technology, Cambridge, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1256, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Computer Science and Artificial Intelligence Laboratory, Massachusetts Institute of Technology, Cambridge, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100567", + "name": "WikiGenes at Massachusetts Institute of Technology", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.wikigenes.org/", + "sampleId": "3771877", + "urlPattern": "http://www.wikigenes.org/e/gene/e/{$id}.html" } ], - "sampleId": "3771877", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "3771877" }, { + "created": "2019-06-11T14:17:20.539+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Magnaporthe grisea, the causal agent of rice blast disease, is one of the most devasting threats to food security worldwide and is a model organism for studying fungal phytopathogenicity and host-parasite interactions. The Magnaporthe comparative genomics database provides accesses to multiple fungal genomes from the Magnaporthaceae family to facilitate the comparative analysis. As part of the Broad Fungal Genome Initiative, the Magnaporthe comparative project includes the finished M. oryzae (formerly M. grisea) genome, as well as the draft assemblies of Gaeumannomyces graminis var. tritici and M. poae.", "id": 1258, - "prefix": "broad", "mirId": "MIR:00000438", + "modified": "2019-06-11T14:17:20.539+0000", "name": "Broad Fungal Genome Initiative", + "namespaceEmbeddedInLui": false, "pattern": "^S\\d+$", - "description": "Magnaporthe grisea, the causal agent of rice blast disease, is one of the most devasting threats to food security worldwide and is a model organism for studying fungal phytopathogenicity and host-parasite interactions. The Magnaporthe comparative genomics database provides accesses to multiple fungal genomes from the Magnaporthaceae family to facilitate the comparative analysis. As part of the Broad Fungal Genome Initiative, the Magnaporthe comparative project includes the finished M. oryzae (formerly M. grisea) genome, as well as the draft assemblies of Gaeumannomyces graminis var. tritici and M. poae.", - "created": "2019-06-11T14:17:20.539+0000", - "modified": "2019-06-11T14:17:20.539+0000", + "prefix": "broad", "resources": [ { - "id": 1260, - "mirId": "MIR:00100569", - "urlPattern": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/GeneDetails.html?sp={$id}", - "name": "Broad Fungal Genome Initiative at Broad Institute", + "deprecated": false, + "deprecationDate": null, "description": "Broad Fungal Genome Initiative at Broad Institute", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "S7000002168151102", - "resourceHomeUrl": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/", + "id": 1260, "institution": { - "id": 1259, - "name": "Broad Institute of MIT and Harvard, Cambridge, Massachuchetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1259, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Broad Institute of MIT and Harvard, Cambridge, Massachuchetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100569", + "name": "Broad Fungal Genome Initiative at Broad Institute", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/", + "sampleId": "S7000002168151102", + "urlPattern": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/GeneDetails.html?sp={$id}" } ], - "sampleId": "S7000002168151102", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "S7000002168151102" }, { + "created": "2019-06-11T14:17:20.763+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Coriell Cell Repositories provide essential research reagents to the scientific community by establishing, verifying, maintaining, and distributing cell cultures and DNA derived from cell cultures. These collections, supported by funds from the National Institutes of Health (NIH) and several foundations, are extensively utilized by research scientists around the world.", "id": 1261, - "prefix": "coriell", "mirId": "MIR:00000439", + "modified": "2019-06-11T14:17:20.763+0000", "name": "Coriell Cell Repositories", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z]{2}\\d+$", - "description": "The Coriell Cell Repositories provide essential research reagents to the scientific community by establishing, verifying, maintaining, and distributing cell cultures and DNA derived from cell cultures. These collections, supported by funds from the National Institutes of Health (NIH) and several foundations, are extensively utilized by research scientists around the world.", - "created": "2019-06-11T14:17:20.763+0000", - "modified": "2019-06-11T14:17:20.763+0000", + "prefix": "coriell", "resources": [ { - "id": 1263, - "mirId": "MIR:00100570", - "urlPattern": "http://ccr.coriell.org/Sections/Search/Sample_Detail.aspx?Ref={$id}", - "name": "Coriell Cell Repositories at Coriell Institute", + "deprecated": false, + "deprecationDate": null, "description": "Coriell Cell Repositories at Coriell Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "GM17027", - "resourceHomeUrl": "http://ccr.coriell.org/", + "id": 1263, "institution": { - "id": 1262, - "name": "Coriell Institute for Medical Research, New Jersey", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1262, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Coriell Institute for Medical Research, New Jersey", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100570", + "name": "Coriell Cell Repositories at Coriell Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://ccr.coriell.org/", + "sampleId": "GM17027", + "urlPattern": "http://ccr.coriell.org/Sections/Search/Sample_Detail.aspx?Ref={$id}" } ], - "sampleId": "GM17027", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "GM17027" }, { + "created": "2019-06-11T14:17:20.995+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The CORUM database provides a resource of manually annotated protein complexes from mammalian organisms. Annotation includes protein complex function, localization, subunit composition, literature references and more. All information is obtained from individual experiments published in scientific articles, data from high-throughput experiments is excluded.", "id": 1264, - "prefix": "corum", "mirId": "MIR:00000440", + "modified": "2019-06-11T14:17:20.995+0000", "name": "CORUM", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The CORUM database provides a resource of manually annotated protein complexes from mammalian organisms. Annotation includes protein complex function, localization, subunit composition, literature references and more. All information is obtained from individual experiments published in scientific articles, data from high-throughput experiments is excluded.", - "created": "2019-06-11T14:17:20.995+0000", - "modified": "2019-06-11T14:17:20.995+0000", + "prefix": "corum", "resources": [ - { - "id": 1266, - "mirId": "MIR:00100571", - "urlPattern": "https://mips.helmholtz-muenchen.de/corum/?id={$id}", - "name": "CORUM at Institute for Bioinformatics and Systems Biology (Germany)", + { + "deprecated": false, + "deprecationDate": null, "description": "CORUM at Institute for Bioinformatics and Systems Biology (Germany)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "100", - "resourceHomeUrl": "https://mips.helmholtz-muenchen.de/genre/proj/corum/", + "id": 1266, "institution": { - "id": 1265, - "name": "Institute for Bioinformatics and Systems Biology, Helmholtz Zentrum M&uuml;nchen-German Research Center for Environmental Health, Neuherberg", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1265, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Institute for Bioinformatics and Systems Biology, Helmholtz Zentrum M&uuml;nchen-German Research Center for Environmental Health, Neuherberg", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100571", + "name": "CORUM at Institute for Bioinformatics and Systems Biology (Germany)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://mips.helmholtz-muenchen.de/genre/proj/corum/", + "sampleId": "100", + "urlPattern": "https://mips.helmholtz-muenchen.de/corum/?id={$id}" } ], - "sampleId": "100", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "100" }, { + "created": "2019-06-11T14:17:21.287+0000", + "deprecated": false, + "deprecationDate": null, + "description": "EcoliWiki is a wiki-based resource to store information related to non-pathogenic E. coli, its phages, plasmids, and mobile genetic elements. This collection references genes.", "id": 1267, - "prefix": "ecoliwiki", "mirId": "MIR:00000442", + "modified": "2019-06-11T14:17:21.287+0000", "name": "EcoliWiki", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9-]+$", - "description": "EcoliWiki is a wiki-based resource to store information related to non-pathogenic E. coli, its phages, plasmids, and mobile genetic elements. This collection references genes.", - "created": "2019-06-11T14:17:21.287+0000", - "modified": "2019-06-11T14:17:21.287+0000", + "prefix": "ecoliwiki", "resources": [ { - "id": 1269, - "mirId": "MIR:00100573", - "urlPattern": "http://ecoliwiki.net/colipedia/index.php/{$id}:Gene", - "name": "EcoliWiki at Texas Agrilife Research", + "deprecated": false, + "deprecationDate": null, "description": "EcoliWiki at Texas Agrilife Research", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "aaeA", - "resourceHomeUrl": "http://ecoliwiki.net/colipedia/", + "id": 1269, "institution": { - "id": 1268, - "name": "Texas Agrilife Research, Texas A&M University College Station", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1268, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Texas Agrilife Research, Texas A&M University College Station", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100573", + "name": "EcoliWiki at Texas Agrilife Research", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://ecoliwiki.net/colipedia/", + "sampleId": "aaeA", + "urlPattern": "http://ecoliwiki.net/colipedia/index.php/{$id}:Gene" } ], - "sampleId": "aaeA", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "aaeA" }, { + "created": "2019-06-11T14:17:21.507+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Genome properties is an annotation system whereby functional attributes can be assigned to a genome, based on the presence of a defined set of protein signatures within that genome.", "id": 1270, - "prefix": "genprop", "mirId": "MIR:00000443", + "modified": "2019-06-11T14:17:21.507+0000", "name": "Genome Properties", + "namespaceEmbeddedInLui": false, "pattern": "^GenProp\\d+$", - "description": "Genome properties is an annotation system whereby functional attributes can be assigned to a genome, based on the presence of a defined set of protein signatures within that genome.", - "created": "2019-06-11T14:17:21.507+0000", - "modified": "2019-06-11T14:17:21.507+0000", + "prefix": "genprop", "resources": [ { - "id": 1271, - "mirId": "MIR:00100910", - "urlPattern": "https://www.ebi.ac.uk/interpro/genomeproperties/#{$id}", - "name": "Genome Properties", + "deprecated": false, + "deprecationDate": null, "description": "Genome Properties", - "official": true, - "providerCode": "ebi", - "sampleId": "GenProp0699", - "resourceHomeUrl": "https://www.ebi.ac.uk/interpro/genomeproperties/", + "id": 1271, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100910", + "name": "Genome Properties", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/interpro/genomeproperties/", + "sampleId": "GenProp0699", + "urlPattern": "https://www.ebi.ac.uk/interpro/genomeproperties/#{$id}" } ], - "sampleId": "GenProp0699", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "GenProp0699" }, { + "created": "2019-06-11T14:17:21.690+0000", + "deprecated": false, + "deprecationDate": null, + "description": "JSTOR (Journal Storage) is a digital library containing digital versions of historical academic journals, as well as books, pamphlets and current issues of journals. Some public domain content is free to access, while other articles require registration.", "id": 1272, - "prefix": "jstor", "mirId": "MIR:00000444", + "modified": "2019-06-11T14:17:21.690+0000", "name": "JSTOR", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "JSTOR (Journal Storage) is a digital library containing digital versions of historical academic journals, as well as books, pamphlets and current issues of journals. Some public domain content is free to access, while other articles require registration.", - "created": "2019-06-11T14:17:21.690+0000", - "modified": "2019-06-11T14:17:21.690+0000", + "prefix": "jstor", "resources": [ { - "id": 1274, - "mirId": "MIR:00100575", - "urlPattern": "http://www.jstor.org/stable/{$id}", - "name": "JSTOR Online", + "deprecated": false, + "deprecationDate": null, "description": "JSTOR Online", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "3075966", - "resourceHomeUrl": "http://www.jstor.org/", + "id": 1274, "institution": { - "id": 1273, - "name": "Ithaka Harbors, Inc., New York", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1273, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Ithaka Harbors, Inc., New York", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100575", + "name": "JSTOR Online", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.jstor.org/", + "sampleId": "3075966", + "urlPattern": "http://www.jstor.org/stable/{$id}" } ], - "sampleId": "3075966", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "3075966" }, { + "created": "2019-06-11T14:17:21.919+0000", + "deprecated": false, + "deprecationDate": null, + "description": "A structured controlled vocabulary of the adult anatomy of the mouse (Mus)", "id": 1275, - "prefix": "ma", "mirId": "MIR:00000445", + "modified": "2019-06-11T14:17:21.919+0000", "name": "Mouse Adult Gross Anatomy", + "namespaceEmbeddedInLui": true, "pattern": "^MA:\\d+$", - "description": "A structured controlled vocabulary of the adult anatomy of the mouse (Mus)", - "created": "2019-06-11T14:17:21.919+0000", - "modified": "2019-06-11T14:17:21.919+0000", + "prefix": "ma", "resources": [ { - "id": 1276, - "mirId": "MIR:00100576", - "urlPattern": "http://purl.bioontology.org/ontology/MA/MA:{$id}", - "name": "Mouse Adult Gross Anatomy through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "Mouse Adult Gross Anatomy through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "0002502", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/MA", + "id": 1276, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100576", + "name": "Mouse Adult Gross Anatomy through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/MA", + "sampleId": "0002502", + "urlPattern": "http://purl.bioontology.org/ontology/MA/MA:{$id}" }, { - "id": 1277, - "mirId": "MIR:00100577", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ma/terms?obo_id=MA:{$id}", - "name": "Mouse Adult Gross Anatomy through OLS", + "deprecated": false, + "deprecationDate": null, "description": "Mouse Adult Gross Anatomy through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0002502", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ma", + "id": 1277, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100577", + "name": "Mouse Adult Gross Anatomy through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ma", + "sampleId": "0002502", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ma/terms?obo_id=MA:{$id}" }, { - "id": 1279, - "mirId": "MIR:00100578", - "urlPattern": "http://www.informatics.jax.org/searches/AMA.cgi?id=MA:{$id}", - "name": "Mouse Adult Gross Anatomy at The Jackson Laboratory", + "deprecated": false, + "deprecationDate": null, "description": "Mouse Adult Gross Anatomy at The Jackson Laboratory", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0002502", - "resourceHomeUrl": "http://www.informatics.jax.org/", + "id": 1279, "institution": { - "id": 1278, - "name": "The Jackson Laboratory, Bar Harbor, Maine", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1278, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Jackson Laboratory, Bar Harbor, Maine", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100578", + "name": "Mouse Adult Gross Anatomy at The Jackson Laboratory", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.informatics.jax.org/", + "sampleId": "0002502", + "urlPattern": "http://www.informatics.jax.org/searches/AMA.cgi?id=MA:{$id}" } ], - "sampleId": "0002502", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0002502" }, { + "created": "2019-06-11T14:17:22.748+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Unimod is a public domain database created to provide a community supported, comprehensive database of protein modifications for mass spectrometry applications. That is, accurate and verifiable values, derived from elemental compositions, for the mass differences introduced by all types of natural and artificial modifications. Other important information includes any mass change, (neutral loss), that occurs during MS/MS analysis, and site specificity, (which residues are susceptible to modification and any constraints on the position of the modification within the protein or peptide).", "id": 1283, - "prefix": "unimod", "mirId": "MIR:00000447", + "modified": "2019-06-11T14:17:22.748+0000", "name": "Unimod", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Unimod is a public domain database created to provide a community supported, comprehensive database of protein modifications for mass spectrometry applications. That is, accurate and verifiable values, derived from elemental compositions, for the mass differences introduced by all types of natural and artificial modifications. Other important information includes any mass change, (neutral loss), that occurs during MS/MS analysis, and site specificity, (which residues are susceptible to modification and any constraints on the position of the modification within the protein or peptide).", - "created": "2019-06-11T14:17:22.748+0000", - "modified": "2019-06-11T14:17:22.748+0000", + "prefix": "unimod", "resources": [ { - "id": 1285, - "mirId": "MIR:00100581", - "urlPattern": "http://www.unimod.org/modifications_view.php?editid1={$id}", - "name": "Unimod at Matrix Sciences Ltd.", + "deprecated": false, + "deprecationDate": null, "description": "Unimod at Matrix Sciences Ltd.", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1200", - "resourceHomeUrl": "http://www.unimod.org/", + "id": 1285, "institution": { - "id": 1284, - "name": "Matrix Science Ltd., London", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1284, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Matrix Science Ltd., London", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100581", + "name": "Unimod at Matrix Sciences Ltd.", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.unimod.org/", + "sampleId": "1200", + "urlPattern": "http://www.unimod.org/modifications_view.php?editid1={$id}" } ], - "sampleId": "1200", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1200" }, { + "created": "2019-06-11T14:17:22.962+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The VBRC provides bioinformatics resources to support scientific research directed at viruses belonging to the Arenaviridae, Bunyaviridae, Filoviridae, Flaviviridae, Paramyxoviridae, Poxviridae, and Togaviridae families. The Center consists of a relational database and web application that support the data storage, annotation, analysis, and information exchange goals of this work. Each data release contains the complete genomic sequences for all viral pathogens and related strains that are available for species in the above-named families. In addition to sequence data, the VBRC provides a curation for each virus species, resulting in a searchable, comprehensive mini-review of gene function relating genotype to biological phenotype, with special emphasis on pathogenesis.", "id": 1286, - "prefix": "vbrc", "mirId": "MIR:00000448", + "modified": "2019-06-11T14:17:22.962+0000", "name": "VBRC", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The VBRC provides bioinformatics resources to support scientific research directed at viruses belonging to the Arenaviridae, Bunyaviridae, Filoviridae, Flaviviridae, Paramyxoviridae, Poxviridae, and Togaviridae families. The Center consists of a relational database and web application that support the data storage, annotation, analysis, and information exchange goals of this work. Each data release contains the complete genomic sequences for all viral pathogens and related strains that are available for species in the above-named families. In addition to sequence data, the VBRC provides a curation for each virus species, resulting in a searchable, comprehensive mini-review of gene function relating genotype to biological phenotype, with special emphasis on pathogenesis.", - "created": "2019-06-11T14:17:22.962+0000", - "modified": "2019-06-11T14:17:22.962+0000", + "prefix": "vbrc", "resources": [ { - "id": 1288, - "mirId": "MIR:00100582", - "urlPattern": "http://vbrc.org/gene_detail.asp?gene_id={$id}", - "name": "VBRC at University of Alabama", + "deprecated": false, + "deprecationDate": null, "description": "VBRC at University of Alabama", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "35742", - "resourceHomeUrl": "http://vbrc.org/", + "id": 1288, "institution": { - "id": 1287, - "name": "University of Alabama, Birmingham and the University of Victoria, British Columbia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1287, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Alabama, Birmingham and the University of Victoria, British Columbia", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100582", + "name": "VBRC at University of Alabama", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://vbrc.org/", + "sampleId": "35742", + "urlPattern": "http://vbrc.org/gene_detail.asp?gene_id={$id}" } ], - "sampleId": "35742", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "35742" }, { + "created": "2019-06-11T14:17:23.207+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ViralZone is a resource bridging textbook knowledge with genomic and proteomic sequences. It provides fact sheets on all known virus families/genera with easy access to sequence data. A selection of reference strains (RefStrain) provides annotated standards to circumvent the exponential increase of virus sequences. Moreover ViralZone offers a complete set of detailed and accurate virion pictures.", "id": 1289, - "prefix": "viralzone", "mirId": "MIR:00000449", + "modified": "2019-06-11T14:17:23.207+0000", "name": "ViralZone", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "ViralZone is a resource bridging textbook knowledge with genomic and proteomic sequences. It provides fact sheets on all known virus families/genera with easy access to sequence data. A selection of reference strains (RefStrain) provides annotated standards to circumvent the exponential increase of virus sequences. Moreover ViralZone offers a complete set of detailed and accurate virion pictures.", - "created": "2019-06-11T14:17:23.207+0000", - "modified": "2019-06-11T14:17:23.207+0000", + "prefix": "viralzone", "resources": [ { - "id": 1291, - "mirId": "MIR:00100583", - "urlPattern": "http://viralzone.expasy.org/all_by_protein/{$id}.html", - "name": "ViralZone at SIB", + "deprecated": false, + "deprecationDate": null, "description": "ViralZone at SIB", - "official": false, - "providerCode": "sib", - "sampleId": "992", - "resourceHomeUrl": "http://www.expasy.org/viralzone/", + "id": 1291, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100583", + "name": "ViralZone at SIB", + "official": false, + "providerCode": "sib", + "resourceHomeUrl": "http://www.expasy.org/viralzone/", + "sampleId": "992", + "urlPattern": "http://viralzone.expasy.org/all_by_protein/{$id}.html" } ], - "sampleId": "992", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "992" }, { + "created": "2019-06-11T14:17:23.659+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Rat Genome Database seeks to collect, consolidate, and integrate rat genomic and genetic data with curated functional and physiological data and make these data widely available to the scientific community. This collection references quantitative trait loci (qTLs), providing phenotype and disease descriptions, mapping, and strain information as well as links to markers and candidate genes.", "id": 1294, - "prefix": "rgd.qtl", "mirId": "MIR:00000451", + "modified": "2019-06-11T14:17:23.659+0000", "name": "Rat Genome Database qTL", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Rat Genome Database seeks to collect, consolidate, and integrate rat genomic and genetic data with curated functional and physiological data and make these data widely available to the scientific community. This collection references quantitative trait loci (qTLs), providing phenotype and disease descriptions, mapping, and strain information as well as links to markers and candidate genes.", - "created": "2019-06-11T14:17:23.659+0000", - "modified": "2019-06-11T14:17:23.659+0000", + "prefix": "rgd.qtl", "resources": [ { - "id": 1296, - "mirId": "MIR:00100586", - "urlPattern": "http://rgd.mcw.edu/rgdweb/report/qtl/main.html?id={$id}", - "name": "Rat Genome Database qTL at Medical College of Wisconsin", + "deprecated": false, + "deprecationDate": null, "description": "Rat Genome Database qTL at Medical College of Wisconsin", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1354581", - "resourceHomeUrl": "http://rgd.mcw.edu/", + "id": 1296, "institution": { - "id": 1295, - "name": "Medical College of Wisconsin, Milwaukee, Wisconsin", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1295, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Medical College of Wisconsin, Milwaukee, Wisconsin", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100586", + "name": "Rat Genome Database qTL at Medical College of Wisconsin", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://rgd.mcw.edu/", + "sampleId": "1354581", + "urlPattern": "http://rgd.mcw.edu/rgdweb/report/qtl/main.html?id={$id}" } ], - "sampleId": "1354581", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1354581" }, { + "created": "2019-06-11T14:17:23.876+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Rat Genome Database seeks to collect, consolidate, and integrate rat genomic and genetic data with curated functional and physiological data and make these data widely available to the scientific community. This collection references strain reports, which include a description of strain origin, disease, phenotype, genetics and immunology.", "id": 1297, - "prefix": "rgd.strain", "mirId": "MIR:00000452", + "modified": "2019-06-11T14:17:23.876+0000", "name": "Rat Genome Database strain", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Rat Genome Database seeks to collect, consolidate, and integrate rat genomic and genetic data with curated functional and physiological data and make these data widely available to the scientific community. This collection references strain reports, which include a description of strain origin, disease, phenotype, genetics and immunology.", - "created": "2019-06-11T14:17:23.876+0000", - "modified": "2019-06-11T14:17:23.876+0000", + "prefix": "rgd.strain", "resources": [ { - "id": 1298, - "mirId": "MIR:00100587", - "urlPattern": "http://rgd.mcw.edu/rgdweb/report/strain/main.html?id={$id}", - "name": "Rat Genome Database strain at Medical College of Wisconsin", + "deprecated": false, + "deprecationDate": null, "description": "Rat Genome Database strain at Medical College of Wisconsin", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "5688061", - "resourceHomeUrl": "http://rgd.mcw.edu/", + "id": 1298, "institution": { - "id": 1295, - "name": "Medical College of Wisconsin, Milwaukee, Wisconsin", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1295, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Medical College of Wisconsin, Milwaukee, Wisconsin", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100587", + "name": "Rat Genome Database strain at Medical College of Wisconsin", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://rgd.mcw.edu/", + "sampleId": "5688061", + "urlPattern": "http://rgd.mcw.edu/rgdweb/report/strain/main.html?id={$id}" } ], - "sampleId": "5688061", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "5688061" }, { + "created": "2019-06-11T14:17:24.062+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DOOR (Database for prOkaryotic OpeRons) contains computationally predicted operons of all the sequenced prokaryotic genomes. It includes operons for RNA genes.", "id": 1299, - "prefix": "door", "mirId": "MIR:00000453", + "modified": "2019-06-11T14:17:24.062+0000", "name": "DOOR", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "DOOR (Database for prOkaryotic OpeRons) contains computationally predicted operons of all the sequenced prokaryotic genomes. It includes operons for RNA genes.", - "created": "2019-06-11T14:17:24.062+0000", - "modified": "2019-06-11T14:17:24.062+0000", + "prefix": "door", "resources": [ { - "id": 1301, - "mirId": "MIR:00100588", - "urlPattern": "http://csbl.bmb.uga.edu/DOOR/operon.php?id={$id}", - "name": "DOOR v1 at University of Georgia", + "deprecated": false, + "deprecationDate": null, "description": "DOOR v1 at University of Georgia", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1398574", - "resourceHomeUrl": "http://csbl.bmb.uga.edu/DOOR/operon.php", + "id": 1301, "institution": { - "id": 1300, - "name": "Computational Systems Biology Laboratory, Department of Biochemistry and Molecular Biology, University of Georgia, Athens, Georgia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1300, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Computational Systems Biology Laboratory, Department of Biochemistry and Molecular Biology, University of Georgia, Athens, Georgia", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100588", + "name": "DOOR v1 at University of Georgia", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://csbl.bmb.uga.edu/DOOR/operon.php", + "sampleId": "1398574", + "urlPattern": "http://csbl.bmb.uga.edu/DOOR/operon.php?id={$id}" } ], - "sampleId": "1398574", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1398574" }, { + "created": "2019-06-11T14:17:24.294+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Degradome Database contains information on the complete set of predicted proteases present in a a variety of mammalian species that have been subjected to whole genome sequencing. Each protease sequence is curated and, when necessary, cloned and sequenced.", "id": 1302, - "prefix": "degradome", "mirId": "MIR:00000454", + "modified": "2019-06-11T14:17:24.294+0000", "name": "Degradome Database", + "namespaceEmbeddedInLui": false, "pattern": "^[AMCST][0-9x][0-9]$", - "description": "The Degradome Database contains information on the complete set of predicted proteases present in a a variety of mammalian species that have been subjected to whole genome sequencing. Each protease sequence is curated and, when necessary, cloned and sequenced.", - "created": "2019-06-11T14:17:24.294+0000", - "modified": "2019-06-11T14:17:24.294+0000", + "prefix": "degradome", "resources": [ { - "id": 1304, - "mirId": "MIR:00100589", - "urlPattern": "http://degradome.uniovi.es/cgi-bin/protease/{$id}", - "name": "Degradome Database at", + "deprecated": false, + "deprecationDate": null, "description": "Degradome Database at", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Ax1", - "resourceHomeUrl": "http://degradome.uniovi.es/", + "id": 1304, "institution": { - "id": 1303, - "name": "Departamento de Bioqu&amp;iacute;mica y Biolog&amp;iacute;a Molecular, Facultad de Medicina, Universidad de Oviedo", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1303, "location": { "countryCode": "ES", "countryName": "Spain" - } + }, + "name": "Departamento de Bioqu&amp;iacute;mica y Biolog&amp;iacute;a Molecular, Facultad de Medicina, Universidad de Oviedo", + "rorId": null }, "location": { "countryCode": "ES", "countryName": "Spain" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100589", + "name": "Degradome Database at", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://degradome.uniovi.es/", + "sampleId": "Ax1", + "urlPattern": "http://degradome.uniovi.es/cgi-bin/protease/{$id}" } ], - "sampleId": "Ax1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Ax1" }, { + "created": "2019-06-11T14:17:24.514+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The DBD (transcription factor database) provides genome-wide transcription factor predictions for organisms across the tree of life. The prediction method identifies sequence-specific DNA-binding transcription factors through homology using profile hidden Markov models (HMMs) of domains from Pfam and SUPERFAMILY. It does not include basal transcription factors or chromatin-associated proteins.", "id": 1305, - "prefix": "dbd", "mirId": "MIR:00000455", + "modified": "2019-06-11T14:17:24.514+0000", "name": "DBD", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The DBD (transcription factor database) provides genome-wide transcription factor predictions for organisms across the tree of life. The prediction method identifies sequence-specific DNA-binding transcription factors through homology using profile hidden Markov models (HMMs) of domains from Pfam and SUPERFAMILY. It does not include basal transcription factors or chromatin-associated proteins.", - "created": "2019-06-11T14:17:24.514+0000", - "modified": "2019-06-11T14:17:24.514+0000", + "prefix": "dbd", "resources": [ { - "id": 1306, - "mirId": "MIR:00100590", - "urlPattern": "http://www.transcriptionfactor.org/index.cgi?Search/Domain+domain:{$id}+cat:DBD", - "name": "DBD at MRC Laboratory of Molecular Biology", + "deprecated": false, + "deprecationDate": null, "description": "DBD at MRC Laboratory of Molecular Biology", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0045310", - "resourceHomeUrl": "http://www.transcriptionfactor.org/", + "id": 1306, "institution": { - "id": 1026, - "name": "MRC Laboratory of Molecular Biology, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1026, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "MRC Laboratory of Molecular Biology, Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100590", + "name": "DBD at MRC Laboratory of Molecular Biology", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.transcriptionfactor.org/", + "sampleId": "0045310", + "urlPattern": "http://www.transcriptionfactor.org/index.cgi?Search/Domain+domain:{$id}+cat:DBD" } ], - "sampleId": "0045310", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "0045310" }, { + "created": "2019-06-11T14:17:24.701+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DATF contains known and predicted Arabidopsis transcription factors (1827 genes in 56 families) with the unique information of 1177 cloned sequences and many other features including 3D structure templates, EST expression information, transcription factor binding sites and nuclear location signals.", "id": 1307, - "prefix": "datf", "mirId": "MIR:00000456", + "modified": "2019-06-11T14:17:24.701+0000", "name": "DATF", + "namespaceEmbeddedInLui": false, "pattern": "^AT[1-5]G\\d{5}(\\.\\d+)?$", - "description": "DATF contains known and predicted Arabidopsis transcription factors (1827 genes in 56 families) with the unique information of 1177 cloned sequences and many other features including 3D structure templates, EST expression information, transcription factor binding sites and nuclear location signals.", - "created": "2019-06-11T14:17:24.701+0000", - "modified": "2019-06-11T14:17:24.701+0000", + "prefix": "datf", "resources": [ { - "id": 1309, - "mirId": "MIR:00100591", - "urlPattern": "http://planttfdb.cbi.pku.edu.cn/tf.php?sp=Ath&did={$id}", - "name": "DATF through PlantTFDB", + "deprecated": false, + "deprecationDate": null, "description": "DATF through PlantTFDB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "AT1G01030.1", - "resourceHomeUrl": "http://datf.cbi.pku.edu.cn/", + "id": 1309, "institution": { - "id": 1612, - "name": "Peking University", + "description": "Peking University is a comprehensive and national key university. The campus, known as \"Yan Yuan\"\uff08the garden of Yan\uff09, is situated at Haidian District in the western suburb of Beijing, with a total area of 2,743,532 square metres (or 274 hectares). It stands near to the Yuanmingyuan Garden and the Summer Palace.\nPeking University is proud of its outstanding faculty, including 48 members of the Chinese Academy of Sciences (CAS), 9 members of the Chinese Academy of Engineering (CAE), and 21 members of the Third World Academy of Sciences (TWAS).", "homeUrl": "http://english.pku.edu.cn/", - "description": "Peking University is a comprehensive and national key university. The campus, known as \"Yan Yuan\"(the garden of Yan), is situated at Haidian District in the western suburb of Beijing, with a total area of 2,743,532 square metres (or 274 hectares). It stands near to the Yuanmingyuan Garden and the Summer Palace.\nPeking University is proud of its outstanding faculty, including 48 members of the Chinese Academy of Sciences (CAS), 9 members of the Chinese Academy of Engineering (CAE), and 21 members of the Third World Academy of Sciences (TWAS).", - "rorId": null, + "id": 1612, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "Peking University", + "rorId": null }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100591", + "name": "DATF through PlantTFDB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://datf.cbi.pku.edu.cn/", + "sampleId": "AT1G01030.1", + "urlPattern": "http://planttfdb.cbi.pku.edu.cn/tf.php?sp=Ath&did={$id}" } ], - "sampleId": "AT1G01030.1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AT1G01030.1" }, { + "created": "2019-06-11T14:17:24.936+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The IUPHAR Compendium details the molecular, biophysical and pharmacological properties of identified mammalian sodium, calcium and potassium channels, as well as the related cyclic nucleotide-modulated ion channels and the recently described transient receptor potential channels. It includes information on nomenclature systems, and on inter and intra-species molecular structure variation. This collection references ligands.", "id": 1310, - "prefix": "iuphar.ligand", "mirId": "MIR:00000457", + "modified": "2019-06-11T14:17:24.936+0000", "name": "IUPHAR ligand", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The IUPHAR Compendium details the molecular, biophysical and pharmacological properties of identified mammalian sodium, calcium and potassium channels, as well as the related cyclic nucleotide-modulated ion channels and the recently described transient receptor potential channels. It includes information on nomenclature systems, and on inter and intra-species molecular structure variation. This collection references ligands.", - "created": "2019-06-11T14:17:24.936+0000", - "modified": "2019-06-11T14:17:24.936+0000", + "prefix": "iuphar.ligand", "resources": [ { - "id": 1311, - "mirId": "MIR:00100592", - "urlPattern": "http://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId={$id}", - "name": "IUPHAR ligand at University of Edinburgh", + "deprecated": false, + "deprecationDate": null, "description": "IUPHAR ligand at University of Edinburgh", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1755", - "resourceHomeUrl": "http://www.guidetopharmacology.org/GRAC/LigandListForward?database=all", + "id": 1311, "institution": { - "id": 827, - "name": "Centre for Cardiovascular Science, University of Edinburgh, Edinburgh", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 827, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Centre for Cardiovascular Science, University of Edinburgh, Edinburgh", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100592", + "name": "IUPHAR ligand at University of Edinburgh", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.guidetopharmacology.org/GRAC/LigandListForward?database=all", + "sampleId": "1755", + "urlPattern": "http://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId={$id}" } ], - "sampleId": "1755", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1755" }, { + "created": "2019-06-11T14:17:25.144+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Molbase provides compound data information for researchers as well as listing suppliers and price information. It can be searched by keyword or CAS indetifier.", "id": 1312, - "prefix": "molbase", "mirId": "MIR:00000458", + "modified": "2019-06-11T14:17:25.144+0000", "name": "Molbase", + "namespaceEmbeddedInLui": false, "pattern": "^(\\d{1,7}\\-\\d{2}\\-\\d)|([A-Za-z0-9\\+\\-\\_]+)$", - "description": "Molbase provides compound data information for researchers as well as listing suppliers and price information. It can be searched by keyword or CAS indetifier.", - "created": "2019-06-11T14:17:25.144+0000", - "modified": "2019-06-11T14:17:25.144+0000", + "prefix": "molbase", "resources": [ { - "id": 1314, - "mirId": "MIR:00100593", - "urlPattern": "http://www.molbase.com/en/index.php?app=search&search_keyword={$id}", - "name": "Molbase at Chinese Academy of Sciences", + "deprecated": false, + "deprecationDate": null, "description": "Molbase at Chinese Academy of Sciences", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "128796-39-4", - "resourceHomeUrl": "http://www.molbase.com/", + "id": 1314, "institution": { - "id": 1313, - "name": "Chinese Academy of Sciences, Xuhui District Shanghai", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1313, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "Chinese Academy of Sciences, Xuhui District Shanghai", + "rorId": null }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100593", + "name": "Molbase at Chinese Academy of Sciences", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.molbase.com/", + "sampleId": "128796-39-4", + "urlPattern": "http://www.molbase.com/en/index.php?app=search&search_keyword={$id}" } ], - "sampleId": "128796-39-4", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "128796-39-4" }, { + "created": "2019-06-11T14:17:25.397+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Yeast Resource Center Public Data Repository (YRC PDR) serves as a single point of access for the experimental data produced from many collaborations typically studying Saccharomyces cerevisiae (baker's yeast). The experimental data include large amounts of mass spectrometry results from protein co-purification experiments, yeast two-hybrid interaction experiments, fluorescence microscopy images and protein structure predictions.", "id": 1315, - "prefix": "yrcpdr", "mirId": "MIR:00000459", + "modified": "2019-06-11T14:17:25.397+0000", "name": "YRC PDR", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Yeast Resource Center Public Data Repository (YRC PDR) serves as a single point of access for the experimental data produced from many collaborations typically studying Saccharomyces cerevisiae (baker's yeast). The experimental data include large amounts of mass spectrometry results from protein co-purification experiments, yeast two-hybrid interaction experiments, fluorescence microscopy images and protein structure predictions.", - "created": "2019-06-11T14:17:25.397+0000", - "modified": "2019-06-11T14:17:25.397+0000", + "prefix": "yrcpdr", "resources": [ { - "id": 1317, - "mirId": "MIR:00100594", - "urlPattern": "http://yeastrc.org/pdr/viewProtein.do?id={$id}", - "name": "YRC PDR at University of Washington", + "deprecated": false, + "deprecationDate": null, "description": "YRC PDR at University of Washington", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2673500", - "resourceHomeUrl": "http://www.yeastrc.org/pdr/", + "id": 1317, "institution": { - "id": 1316, - "name": "Department of Biochemistry, University of Washington, Seattle", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1316, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Biochemistry, University of Washington, Seattle", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100594", + "name": "YRC PDR at University of Washington", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.yeastrc.org/pdr/", + "sampleId": "2673500", + "urlPattern": "http://yeastrc.org/pdr/viewProtein.do?id={$id}" } ], - "sampleId": "2673500", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2673500" }, { + "created": "2019-06-11T14:17:25.610+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The YEast Intron Database (version 3) contains information on the spliceosomal introns of the yeast Saccharomyces cerevisiae. It includes expression data that relates to the efficiency of splicing relative to other processes in strains of yeast lacking nonessential splicing factors. The data are displayed on each intron page. An updated version of the database is available through [MIR:00000521].", "id": 1318, - "prefix": "yid", "mirId": "MIR:00000460", + "modified": "2019-06-11T14:17:25.610+0000", "name": "Yeast Intron Database v3", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z0-9]+$", - "description": "The YEast Intron Database (version 3) contains information on the spliceosomal introns of the yeast Saccharomyces cerevisiae. It includes expression data that relates to the efficiency of splicing relative to other processes in strains of yeast lacking nonessential splicing factors. The data are displayed on each intron page. An updated version of the database is available through [MIR:00000521].", - "created": "2019-06-11T14:17:25.610+0000", - "modified": "2019-06-11T14:17:25.610+0000", + "prefix": "yid", "resources": [ { - "id": 1320, - "mirId": "MIR:00100595", - "urlPattern": "http://metarray.ucsc.edu/cgi-bin/intron/yirIntrondb?orfName={$id}", - "name": "Yeast Intron Database version 3 at Baskin School of Engineering", + "deprecated": false, + "deprecationDate": null, "description": "Yeast Intron Database version 3 at Baskin School of Engineering", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "SNR17A", - "resourceHomeUrl": "http://compbio.soe.ucsc.edu/yeast_introns.html", + "id": 1320, "institution": { - "id": 1319, - "name": "University of California, Santa Cruz", - "homeUrl": "https://www.ucsc.edu", "description": "UC Santa Cruz opened in 1965 with 650 students. During the 2018-2019 academic year, 16,983 undergraduate and 1,822 graduate students were enrolled.\n", - "rorId": "https://ror.org/03s65by71", + "homeUrl": "https://www.ucsc.edu", + "id": 1319, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of California, Santa Cruz", + "rorId": "https://ror.org/03s65by71" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100595", + "name": "Yeast Intron Database version 3 at Baskin School of Engineering", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://compbio.soe.ucsc.edu/yeast_introns.html", + "sampleId": "SNR17A", + "urlPattern": "http://metarray.ucsc.edu/cgi-bin/intron/yirIntrondb?orfName={$id}" } ], - "sampleId": "SNR17A", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "SNR17A" }, { + "created": "2019-06-11T14:17:25.854+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Computational gene function prediction can serve to focus experimental resources on high-priority experimental tasks. FuncBase is a web resource for viewing quantitative machine learning-based gene function annotations. Quantitative annotations of genes, including fungal and mammalian genes, with Gene Ontology terms are accompanied by a community feedback system. Evidence underlying function annotations is shown. FuncBase provides links to external resources, and may be accessed directly or via links from species-specific databases. This collection references Drosophila data.", "id": 1321, - "prefix": "funcbase.fly", "mirId": "MIR:00000461", + "modified": "2019-06-11T14:17:25.854+0000", "name": "FuncBase Fly", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Computational gene function prediction can serve to focus experimental resources on high-priority experimental tasks. FuncBase is a web resource for viewing quantitative machine learning-based gene function annotations. Quantitative annotations of genes, including fungal and mammalian genes, with Gene Ontology terms are accompanied by a community feedback system. Evidence underlying function annotations is shown. FuncBase provides links to external resources, and may be accessed directly or via links from species-specific databases. This collection references Drosophila data.", - "created": "2019-06-11T14:17:25.854+0000", - "modified": "2019-06-11T14:17:25.854+0000", + "prefix": "funcbase.fly", "resources": [ { - "id": 1323, - "mirId": "MIR:00100596", - "urlPattern": "http://func.mshri.on.ca/fly/genes/list_functional_scores/{$id}", - "name": "FuncBase Fly at Harvard Medical School", + "deprecated": false, + "deprecationDate": null, "description": "FuncBase Fly at Harvard Medical School", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "10194", - "resourceHomeUrl": "http://func.mshri.on.ca/fly", + "id": 1323, "institution": { - "id": 1322, - "name": "Harvard Medical School, Boston, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1322, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Harvard Medical School, Boston, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100596", + "name": "FuncBase Fly at Harvard Medical School", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://func.mshri.on.ca/fly", + "sampleId": "10194", + "urlPattern": "http://func.mshri.on.ca/fly/genes/list_functional_scores/{$id}" } ], - "sampleId": "10194", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "10194" }, { + "created": "2019-06-11T14:17:26.074+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Computational gene function prediction can serve to focus experimental resources on high-priority experimental tasks. FuncBase is a web resource for viewing quantitative machine learning-based gene function annotations. Quantitative annotations of genes, including fungal and mammalian genes, with Gene Ontology terms are accompanied by a community feedback system. Evidence underlying function annotations is shown. FuncBase provides links to external resources, and may be accessed directly or via links from species-specific databases. This collection references human data.", "id": 1324, - "prefix": "funcbase.human", "mirId": "MIR:00000462", + "modified": "2019-06-11T14:17:26.074+0000", "name": "FuncBase Human", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Computational gene function prediction can serve to focus experimental resources on high-priority experimental tasks. FuncBase is a web resource for viewing quantitative machine learning-based gene function annotations. Quantitative annotations of genes, including fungal and mammalian genes, with Gene Ontology terms are accompanied by a community feedback system. Evidence underlying function annotations is shown. FuncBase provides links to external resources, and may be accessed directly or via links from species-specific databases. This collection references human data.", - "created": "2019-06-11T14:17:26.074+0000", - "modified": "2019-06-11T14:17:26.074+0000", + "prefix": "funcbase.human", "resources": [ { - "id": 1325, - "mirId": "MIR:00100597", - "urlPattern": "http://func.mshri.on.ca/human/genes/list_functional_scores/{$id}", - "name": "FuncBase Human at Harvard Medical School", + "deprecated": false, + "deprecationDate": null, "description": "FuncBase Human at Harvard Medical School", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "119514", - "resourceHomeUrl": "http://func.mshri.on.ca/human/", + "id": 1325, "institution": { - "id": 1322, - "name": "Harvard Medical School, Boston, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1322, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Harvard Medical School, Boston, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100597", + "name": "FuncBase Human at Harvard Medical School", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://func.mshri.on.ca/human/", + "sampleId": "119514", + "urlPattern": "http://func.mshri.on.ca/human/genes/list_functional_scores/{$id}" } ], - "sampleId": "119514", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "119514" }, { + "created": "2019-06-11T14:17:26.285+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Computational gene function prediction can serve to focus experimental resources on high-priority experimental tasks. FuncBase is a web resource for viewing quantitative machine learning-based gene function annotations. Quantitative annotations of genes, including fungal and mammalian genes, with Gene Ontology terms are accompanied by a community feedback system. Evidence underlying function annotations is shown. FuncBase provides links to external resources, and may be accessed directly or via links from species-specific databases. This collection references mouse.", "id": 1326, - "prefix": "funcbase.mouse", "mirId": "MIR:00000463", + "modified": "2019-06-11T14:17:26.285+0000", "name": "FuncBase Mouse", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Computational gene function prediction can serve to focus experimental resources on high-priority experimental tasks. FuncBase is a web resource for viewing quantitative machine learning-based gene function annotations. Quantitative annotations of genes, including fungal and mammalian genes, with Gene Ontology terms are accompanied by a community feedback system. Evidence underlying function annotations is shown. FuncBase provides links to external resources, and may be accessed directly or via links from species-specific databases. This collection references mouse.", - "created": "2019-06-11T14:17:26.285+0000", - "modified": "2019-06-11T14:17:26.285+0000", + "prefix": "funcbase.mouse", "resources": [ { - "id": 1327, - "mirId": "MIR:00100598", - "urlPattern": "http://func.mshri.on.ca/mouse/genes/list_functional_scores/{$id}", - "name": "FuncBase Mouse at Harvard Medical School", + "deprecated": false, + "deprecationDate": null, "description": "FuncBase Mouse at Harvard Medical School", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1351341", - "resourceHomeUrl": "http://func.mshri.on.ca/mouse/", + "id": 1327, "institution": { - "id": 1322, - "name": "Harvard Medical School, Boston, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1322, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Harvard Medical School, Boston, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100598", + "name": "FuncBase Mouse at Harvard Medical School", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://func.mshri.on.ca/mouse/", + "sampleId": "1351341", + "urlPattern": "http://func.mshri.on.ca/mouse/genes/list_functional_scores/{$id}" } ], - "sampleId": "1351341", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1351341" }, { + "created": "2019-06-11T14:18:18.874+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The cBioPortal for Cancer Genomics provides visualization, analysis and download of large-scale cancer genomics data sets.", "id": 1881, - "prefix": "cbioportal", "mirId": "MIR:00000679", + "modified": "2019-06-11T14:18:18.874+0000", "name": "The cBioPortal for Cancer Genomics", + "namespaceEmbeddedInLui": false, "pattern": "^[a-z0-9\\_]+$", - "description": "The cBioPortal for Cancer Genomics provides visualization, analysis and download of large-scale cancer genomics data sets.", - "created": "2019-06-11T14:18:18.874+0000", - "modified": "2019-06-11T14:18:18.874+0000", + "prefix": "cbioportal", "resources": [ { - "id": 1883, - "mirId": "MIR:00100909", - "urlPattern": "http://www.cbioportal.org/study?id={$id}#summary", - "name": "The cBioPortal for Cancer Genomics", + "deprecated": false, + "deprecationDate": null, "description": "The cBioPortal for Cancer Genomics", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "laml_tcga_pub", - "resourceHomeUrl": "http://www.cbioportal.org", + "id": 1883, "institution": { - "id": 1882, - "name": "Memorial Sloan Kettering Cancer Center", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1882, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Memorial Sloan Kettering Cancer Center", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100909", + "name": "The cBioPortal for Cancer Genomics", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.cbioportal.org", + "sampleId": "laml_tcga_pub", + "urlPattern": "http://www.cbioportal.org/study?id={$id}#summary" } ], - "sampleId": "laml_tcga_pub", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "laml_tcga_pub" }, { + "created": "2019-06-11T14:17:26.470+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Computational gene function prediction can serve to focus experimental resources on high-priority experimental tasks. FuncBase is a web resource for viewing quantitative machine learning-based gene function annotations. Quantitative annotations of genes, including fungal and mammalian genes, with Gene Ontology terms are accompanied by a community feedback system. Evidence underlying function annotations is shown. FuncBase provides links to external resources, and may be accessed directly or via links from species-specific databases. This collection references yeast.", "id": 1328, - "prefix": "funcbase.yeast", "mirId": "MIR:00000464", + "modified": "2019-06-11T14:17:26.470+0000", "name": "FuncBase Yeast", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Computational gene function prediction can serve to focus experimental resources on high-priority experimental tasks. FuncBase is a web resource for viewing quantitative machine learning-based gene function annotations. Quantitative annotations of genes, including fungal and mammalian genes, with Gene Ontology terms are accompanied by a community feedback system. Evidence underlying function annotations is shown. FuncBase provides links to external resources, and may be accessed directly or via links from species-specific databases. This collection references yeast.", - "created": "2019-06-11T14:17:26.470+0000", - "modified": "2019-06-11T14:17:26.470+0000", + "prefix": "funcbase.yeast", "resources": [ { - "id": 1329, - "mirId": "MIR:00100599", - "urlPattern": "http://func.mshri.on.ca/yeast/genes/list_functional_scores/{$id}", - "name": "FuncBase Yeast at Harvard Medical School", + "deprecated": false, + "deprecationDate": null, "description": "FuncBase Yeast at Harvard Medical School", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2701", - "resourceHomeUrl": "http://func.mshri.on.ca/yeast", + "id": 1329, "institution": { - "id": 1322, - "name": "Harvard Medical School, Boston, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1322, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Harvard Medical School, Boston, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100599", + "name": "FuncBase Yeast at Harvard Medical School", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://func.mshri.on.ca/yeast", + "sampleId": "2701", + "urlPattern": "http://func.mshri.on.ca/yeast/genes/list_functional_scores/{$id}" } ], - "sampleId": "2701", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2701" }, { + "created": "2019-06-11T14:17:26.654+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The YDPM database serves to support the Yeast Deletion and the Mitochondrial Proteomics Project. The project aims to increase the understanding of mitochondrial function and biogenesis in the context of the cell. In the Deletion Project, strains from the deletion collection were monitored under 9 different media conditions selected for the study of mitochondrial function. The YDPM database contains both the raw data and growth rates calculated for each strain in each media condition.", "id": 1330, - "prefix": "ydpm", "mirId": "MIR:00000465", + "modified": "2019-06-11T14:17:26.654+0000", "name": "YDPM", + "namespaceEmbeddedInLui": false, "pattern": "^Y[A-Z]{2}\\d+[CW]$", - "description": "The YDPM database serves to support the Yeast Deletion and the Mitochondrial Proteomics Project. The project aims to increase the understanding of mitochondrial function and biogenesis in the context of the cell. In the Deletion Project, strains from the deletion collection were monitored under 9 different media conditions selected for the study of mitochondrial function. The YDPM database contains both the raw data and growth rates calculated for each strain in each media condition.", - "created": "2019-06-11T14:17:26.654+0000", - "modified": "2019-06-11T14:17:26.654+0000", + "prefix": "ydpm", "resources": [ { - "id": 1332, - "mirId": "MIR:00100600", - "urlPattern": "http://www-deletion.stanford.edu/cgi-bin/YDPM/YDPM_search.cgi?thelist={$id}", - "name": "YDPM at Stanford University School of Medicine", + "deprecated": false, + "deprecationDate": null, "description": "YDPM at Stanford University School of Medicine", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "YAL001C", - "resourceHomeUrl": "http://www-deletion.stanford.edu/YDPM/", + "id": 1332, "institution": { - "id": 1331, - "name": "Stanford University School of Medicine, Stanford, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1331, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Stanford University School of Medicine, Stanford, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100600", + "name": "YDPM at Stanford University School of Medicine", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www-deletion.stanford.edu/YDPM/", + "sampleId": "YAL001C", + "urlPattern": "http://www-deletion.stanford.edu/cgi-bin/YDPM/YDPM_search.cgi?thelist={$id}" } ], - "sampleId": "YAL001C", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "YAL001C" }, { + "created": "2019-06-11T14:17:26.886+0000", + "deprecated": false, + "deprecationDate": null, + "description": "WormBase is an online bioinformatics database of the biology and genome of the model organism Caenorhabditis elegans and related nematodes. It is used by the C. elegans research community both as an information resource and as a mode to publish and distribute their results. This collection references RNAi experiments, detailing target and phenotypes.", "id": 1333, - "prefix": "wb.rnai", "mirId": "MIR:00000466", + "modified": "2019-06-11T14:17:26.886+0000", "name": "WormBase RNAi", + "namespaceEmbeddedInLui": false, "pattern": "^WBRNAi\\d{8}$", - "description": "WormBase is an online bioinformatics database of the biology and genome of the model organism Caenorhabditis elegans and related nematodes. It is used by the C. elegans research community both as an information resource and as a mode to publish and distribute their results. This collection references RNAi experiments, detailing target and phenotypes.", - "created": "2019-06-11T14:17:26.886+0000", - "modified": "2019-06-11T14:17:26.886+0000", + "prefix": "wb.rnai", "resources": [ { - "id": 1334, - "mirId": "MIR:00100601", - "urlPattern": "https://www.wormbase.org/species/c_elegans/rnai/{$id}", - "name": "WormBase RNAi", + "deprecated": false, + "deprecationDate": null, "description": "WormBase RNAi", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "WBRNAi00086878", - "resourceHomeUrl": "https://www.wormbase.org/", + "id": 1334, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100601", + "name": "WormBase RNAi", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.wormbase.org/", + "sampleId": "WBRNAi00086878", + "urlPattern": "https://www.wormbase.org/species/c_elegans/rnai/{$id}" } ], - "sampleId": "WBRNAi00086878", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "WBRNAi00086878" }, { + "created": "2019-06-11T14:17:27.086+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PASS2 database provides alignments of proteins related at the superfamily level and are characterized by low sequence identity.", "id": 1335, - "prefix": "pass2", "mirId": "MIR:00000468", + "modified": "2019-06-11T14:17:27.086+0000", "name": "PASS2", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The PASS2 database provides alignments of proteins related at the superfamily level and are characterized by low sequence identity.", - "created": "2019-06-11T14:17:27.086+0000", - "modified": "2019-06-11T14:17:27.086+0000", + "prefix": "pass2", "resources": [ { - "id": 1337, - "mirId": "MIR:00100603", - "urlPattern": "http://caps.ncbs.res.in/cgi-bin/pass2//show_sf.py?sf_id={$id}", - "name": "PASS2 at National centre for Biological Sciences (India)", + "deprecated": false, + "deprecationDate": null, "description": "PASS2 at National centre for Biological Sciences (India)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "46977", - "resourceHomeUrl": "http://caps.ncbs.res.in/pass2/", + "id": 1337, "institution": { - "id": 1336, - "name": "National centre for Biological Sciences, TIFR, GKVK campus, Bangalore, Karnataka", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1336, "location": { "countryCode": "IN", "countryName": "India" - } + }, + "name": "National centre for Biological Sciences, TIFR, GKVK campus, Bangalore, Karnataka", + "rorId": null }, "location": { "countryCode": "IN", "countryName": "India" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100603", + "name": "PASS2 at National centre for Biological Sciences (India)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://caps.ncbs.res.in/pass2/", + "sampleId": "46977", + "urlPattern": "http://caps.ncbs.res.in/cgi-bin/pass2//show_sf.py?sf_id={$id}" } ], - "sampleId": "46977", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "46977" }, { + "created": "2019-06-11T14:17:27.338+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ICEberg (Integrative and conjugative elements) is a database of integrative and conjugative elements (ICEs) found in bacteria. ICEs are conjugative self-transmissible elements that can integrate into and excise from a host chromosome, and can carry likely virulence determinants, antibiotic-resistant factors and/or genes coding for other beneficial traits. It contains details of ICEs found in representatives bacterial species, and which are organised as families. This collection references ICE elements.", "id": 1338, - "prefix": "iceberg.element", "mirId": "MIR:00000469", + "modified": "2019-06-11T14:17:27.338+0000", "name": "ICEberg element", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "ICEberg (Integrative and conjugative elements) is a database of integrative and conjugative elements (ICEs) found in bacteria. ICEs are conjugative self-transmissible elements that can integrate into and excise from a host chromosome, and can carry likely virulence determinants, antibiotic-resistant factors and/or genes coding for other beneficial traits. It contains details of ICEs found in representatives bacterial species, and which are organised as families. This collection references ICE elements.", - "created": "2019-06-11T14:17:27.338+0000", - "modified": "2019-06-11T14:17:27.338+0000", + "prefix": "iceberg.element", "resources": [ { - "id": 1340, - "mirId": "MIR:00100604", - "urlPattern": "http://db-mml.sjtu.edu.cn/ICEberg/feature_page.php?ice_id={$id}", - "name": "ICEberg element at Shanghai Jiaotong University", + "deprecated": false, + "deprecationDate": null, "description": "ICEberg element at Shanghai Jiaotong University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "100", - "resourceHomeUrl": "http://db-mml.sjtu.edu.cn/ICEberg/", + "id": 1340, "institution": { - "id": 1339, - "name": "State Key Laboratory of Microbial Metabolism and School of Life Sciences &amp;amp;amp; Biotechnology, Shanghai Jiaotong University, Shanghai", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1339, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "State Key Laboratory of Microbial Metabolism and School of Life Sciences &amp;amp;amp; Biotechnology, Shanghai Jiaotong University, Shanghai", + "rorId": null }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100604", + "name": "ICEberg element at Shanghai Jiaotong University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://db-mml.sjtu.edu.cn/ICEberg/", + "sampleId": "100", + "urlPattern": "http://db-mml.sjtu.edu.cn/ICEberg/feature_page.php?ice_id={$id}" } ], - "sampleId": "100", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "100" }, { + "created": "2019-06-11T14:17:27.601+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ICEberg (Integrative and conjugative elements) is a database of integrative and conjugative elements (ICEs) found in bacteria. ICEs are conjugative self-transmissible elements that can integrate into and excise from a host chromosome, and can carry likely virulence determinants, antibiotic-resistant factors and/or genes coding for other beneficial traits. It contains details of ICEs found in representatives bacterial species, and which are organised as families. This collection references ICE families.", "id": 1341, - "prefix": "iceberg.family", "mirId": "MIR:00000470", + "modified": "2019-06-11T14:17:27.601+0000", "name": "ICEberg family", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "ICEberg (Integrative and conjugative elements) is a database of integrative and conjugative elements (ICEs) found in bacteria. ICEs are conjugative self-transmissible elements that can integrate into and excise from a host chromosome, and can carry likely virulence determinants, antibiotic-resistant factors and/or genes coding for other beneficial traits. It contains details of ICEs found in representatives bacterial species, and which are organised as families. This collection references ICE families.", - "created": "2019-06-11T14:17:27.601+0000", - "modified": "2019-06-11T14:17:27.601+0000", + "prefix": "iceberg.family", "resources": [ { - "id": 1343, - "mirId": "MIR:00100605", - "urlPattern": "http://db-mml.sjtu.edu.cn/ICEberg/browse_result.php?type=fam&fam_id={$id}", - "name": "ICEberg family at Shanghai Jiaotong University", + "deprecated": false, + "deprecationDate": null, "description": "ICEberg family at Shanghai Jiaotong University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1", - "resourceHomeUrl": "http://db-mml.sjtu.edu.cn/ICEberg/", + "id": 1343, "institution": { - "id": 1342, - "name": "State Key Laboratory of Microbial Metabolism and School of Life Sciences &amp; Biotechnology, Shanghai Jiaotong University, Shanghai", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1342, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "State Key Laboratory of Microbial Metabolism and School of Life Sciences &amp; Biotechnology, Shanghai Jiaotong University, Shanghai", + "rorId": null }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100605", + "name": "ICEberg family at Shanghai Jiaotong University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://db-mml.sjtu.edu.cn/ICEberg/", + "sampleId": "1", + "urlPattern": "http://db-mml.sjtu.edu.cn/ICEberg/browse_result.php?type=fam&fam_id={$id}" } ], - "sampleId": "1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1" }, { + "created": "2019-06-11T14:17:27.811+0000", + "deprecated": false, + "deprecationDate": null, + "description": "VFDB is a repository of virulence factors (VFs) of pathogenic bacteria.This collection references VF information by Genus.", "id": 1344, - "prefix": "vfdb.genus", "mirId": "MIR:00000471", + "modified": "2019-06-11T14:17:27.811+0000", "name": "VFDB Genus", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "VFDB is a repository of virulence factors (VFs) of pathogenic bacteria.This collection references VF information by Genus.", - "created": "2019-06-11T14:17:27.811+0000", - "modified": "2019-06-11T14:17:27.811+0000", + "prefix": "vfdb.genus", "resources": [ { - "id": 1346, - "mirId": "MIR:00100606", - "urlPattern": "http://www.mgc.ac.cn/cgi-bin/VFs/genus.cgi?Genus={$id}", - "name": "VFDB Genus at Institute of Pathogen Biology", + "deprecated": false, + "deprecationDate": null, "description": "VFDB Genus at Institute of Pathogen Biology", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Chlamydia", - "resourceHomeUrl": "http://www.mgc.ac.cn/VFs/", + "id": 1346, "institution": { - "id": 1345, - "name": "State Key Laboratory for Molecular Virology and Genetic Engineering, Institute of Pathogen Biology, Chinese Academy Medical Sciences and Peking Union Medical College, Beijing", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1345, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "State Key Laboratory for Molecular Virology and Genetic Engineering, Institute of Pathogen Biology, Chinese Academy Medical Sciences and Peking Union Medical College, Beijing", + "rorId": null }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100606", + "name": "VFDB Genus at Institute of Pathogen Biology", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.mgc.ac.cn/VFs/", + "sampleId": "Chlamydia", + "urlPattern": "http://www.mgc.ac.cn/cgi-bin/VFs/genus.cgi?Genus={$id}" } ], - "sampleId": "Chlamydia", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Chlamydia" }, { + "created": "2019-06-11T14:17:28.027+0000", + "deprecated": false, + "deprecationDate": null, + "description": "VFDB is a repository of virulence factors (VFs) of pathogenic bacteria.This collection references VF genes.", "id": 1347, - "prefix": "vfdb.gene", "mirId": "MIR:00000472", + "modified": "2019-06-11T14:17:28.027+0000", "name": "VFDB Gene", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "VFDB is a repository of virulence factors (VFs) of pathogenic bacteria.This collection references VF genes.", - "created": "2019-06-11T14:17:28.027+0000", - "modified": "2019-06-11T14:17:28.027+0000", + "prefix": "vfdb.gene", "resources": [ - { - "id": 1348, - "mirId": "MIR:00100607", - "urlPattern": "http://www.mgc.ac.cn/cgi-bin/VFs/gene.cgi?GeneID={$id}", - "name": "VFDB Gene at Institute of Pathogen Biology", + { + "deprecated": false, + "deprecationDate": null, "description": "VFDB Gene at Institute of Pathogen Biology", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "VFG2154", - "resourceHomeUrl": "http://www.mgc.ac.cn/VFs/", + "id": 1348, "institution": { - "id": 1345, - "name": "State Key Laboratory for Molecular Virology and Genetic Engineering, Institute of Pathogen Biology, Chinese Academy Medical Sciences and Peking Union Medical College, Beijing", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1345, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "State Key Laboratory for Molecular Virology and Genetic Engineering, Institute of Pathogen Biology, Chinese Academy Medical Sciences and Peking Union Medical College, Beijing", + "rorId": null }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100607", + "name": "VFDB Gene at Institute of Pathogen Biology", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.mgc.ac.cn/VFs/", + "sampleId": "VFG2154", + "urlPattern": "http://www.mgc.ac.cn/cgi-bin/VFs/gene.cgi?GeneID={$id}" } ], - "sampleId": "VFG2154", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "VFG2154" }, { + "created": "2019-06-11T14:17:28.224+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MeSH (Medical Subject Headings) is the National Library of Medicine's controlled vocabulary thesaurus. It consists of sets of terms naming descriptors in a hierarchical structure that permits searching at various levels of specificity. This thesaurus is used by NLM for indexing articles from biomedical journals, cataloging of books, documents, etc. This collection references MeSH terms published in 2013.", "id": 1349, - "prefix": "mesh.2013", "mirId": "MIR:00000473", + "modified": "2019-06-11T14:17:28.224+0000", "name": "MeSH 2013", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9]+$", - "description": "MeSH (Medical Subject Headings) is the National Library of Medicine's controlled vocabulary thesaurus. It consists of sets of terms naming descriptors in a hierarchical structure that permits searching at various levels of specificity. This thesaurus is used by NLM for indexing articles from biomedical journals, cataloging of books, documents, etc. This collection references MeSH terms published in 2013.", - "created": "2019-06-11T14:17:28.224+0000", - "modified": "2019-06-11T14:17:28.224+0000", + "prefix": "mesh.2013", "resources": [ { - "id": 1350, - "mirId": "MIR:00100608", - "urlPattern": "http://www.nlm.nih.gov/cgi/mesh/2013/MB_cgi?mode=&index={$id}&view=expanded", - "name": "MeSH 2013 at National Library of Medicine", + "deprecated": false, + "deprecationDate": null, "description": "MeSH 2013 at National Library of Medicine", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "17165", - "resourceHomeUrl": "http://www.nlm.nih.gov/mesh/", + "id": 1350, "institution": { - "id": 792, - "name": "U.S. National Library of Medicine, National Institute of Health, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 792, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "U.S. National Library of Medicine, National Institute of Health, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100608", + "name": "MeSH 2013 at National Library of Medicine", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.nlm.nih.gov/mesh/", + "sampleId": "17165", + "urlPattern": "http://www.nlm.nih.gov/cgi/mesh/2013/MB_cgi?mode=&index={$id}&view=expanded" } ], - "sampleId": "17165", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "17165" }, { + "created": "2019-06-11T14:17:28.414+0000", + "deprecated": false, + "deprecationDate": null, + "description": "KEGG Modules are manually defined functional units used in the annotation and biological interpretation of sequenced genomes. Each module corresponds to a set of 'KEGG Orthology' (MIR:00000116) entries. KEGG Modules can represent pathway, structural, functional or signature modules.", "id": 1351, - "prefix": "kegg.module", "mirId": "MIR:00000474", + "modified": "2019-06-11T14:17:28.414+0000", "name": "KEGG Module", + "namespaceEmbeddedInLui": false, "pattern": "^([a-z]{3,5}_)?M\\d{5}$", - "description": "KEGG Modules are manually defined functional units used in the annotation and biological interpretation of sequenced genomes. Each module corresponds to a set of 'KEGG Orthology' (MIR:00000116) entries. KEGG Modules can represent pathway, structural, functional or signature modules.", - "created": "2019-06-11T14:17:28.414+0000", - "modified": "2019-06-11T14:17:28.414+0000", + "prefix": "kegg.module", "resources": [ { - "id": 1352, - "mirId": "MIR:00100609", - "urlPattern": "http://www.kegg.jp/entry/{$id}", - "name": "KEGG Module at Kyoto University Bioinformatics Center", + "deprecated": false, + "deprecationDate": null, "description": "KEGG Module at Kyoto University Bioinformatics Center", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "M00002", - "resourceHomeUrl": "http://www.kegg.jp/kegg/module.html", + "id": 1352, "institution": { - "id": 367, - "name": "Department of Computational Biology, University of Tokyo, Tokyo", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 367, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Department of Computational Biology, University of Tokyo, Tokyo", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100609", + "name": "KEGG Module at Kyoto University Bioinformatics Center", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.kegg.jp/kegg/module.html", + "sampleId": "M00002", + "urlPattern": "http://www.kegg.jp/entry/{$id}" } ], - "sampleId": "M00002", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "M00002" }, { + "created": "2019-06-11T14:17:28.601+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The KEGG DISEASE database is a collection of disease entries capturing knowledge on genetic and environmental perturbations. Each disease entry contains a list of known genetic factors (disease genes), environmental factors, diagnostic markers, and therapeutic drugs. Diseases are viewed as perturbed states of the molecular system, and drugs as perturbants to the molecular system.", "id": 1353, - "prefix": "kegg.disease", "mirId": "MIR:00000475", + "modified": "2019-06-11T14:17:28.601+0000", "name": "KEGG Disease", + "namespaceEmbeddedInLui": false, "pattern": "^H\\d+$", - "description": "The KEGG DISEASE database is a collection of disease entries capturing knowledge on genetic and environmental perturbations. Each disease entry contains a list of known genetic factors (disease genes), environmental factors, diagnostic markers, and therapeutic drugs. Diseases are viewed as perturbed states of the molecular system, and drugs as perturbants to the molecular system.", - "created": "2019-06-11T14:17:28.601+0000", - "modified": "2019-06-11T14:17:28.601+0000", + "prefix": "kegg.disease", "resources": [ { - "id": 1354, - "mirId": "MIR:00100610", - "urlPattern": "http://www.kegg.jp/entry/{$id}", - "name": "KEGG Disease at Kyoto University Bioinformatics Center", + "deprecated": false, + "deprecationDate": null, "description": "KEGG Disease at Kyoto University Bioinformatics Center", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "H00076", - "resourceHomeUrl": "http://www.genome.jp/kegg/disease/", + "id": 1354, "institution": { - "id": 705, - "name": "Kyoto University Bioinformatics Center, Kyoto", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 705, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Kyoto University Bioinformatics Center, Kyoto", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100610", + "name": "KEGG Disease at Kyoto University Bioinformatics Center", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.genome.jp/kegg/disease/", + "sampleId": "H00076", + "urlPattern": "http://www.kegg.jp/entry/{$id}" } ], - "sampleId": "H00076", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "H00076" }, { + "created": "2019-06-11T14:17:28.795+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MedlinePlus is the National Institutes of Health's Web site for patients and their families and friends. Produced by the National Library of Medicine, it provides information about diseases, conditions, and wellness issues using non-technical terms and language.", "id": 1355, - "prefix": "medlineplus", "mirId": "MIR:00000476", + "modified": "2019-06-11T14:17:28.795+0000", "name": "MedlinePlus", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "MedlinePlus is the National Institutes of Health's Web site for patients and their families and friends. Produced by the National Library of Medicine, it provides information about diseases, conditions, and wellness issues using non-technical terms and language.", - "created": "2019-06-11T14:17:28.795+0000", - "modified": "2019-06-11T14:17:28.795+0000", + "prefix": "medlineplus", "resources": [ { - "id": 1356, - "mirId": "MIR:00100611", - "urlPattern": "http://www.nlm.nih.gov/medlineplus/ency/article/{$id}.htm", - "name": "MedlinePlus at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "MedlinePlus at NCBI", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "002804", - "resourceHomeUrl": "http://www.nlm.nih.gov/medlineplus/", + "id": 1356, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100611", + "name": "MedlinePlus at NCBI", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.nlm.nih.gov/medlineplus/", + "sampleId": "002804", + "urlPattern": "http://www.nlm.nih.gov/medlineplus/ency/article/{$id}.htm" } ], - "sampleId": "002804", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "002804" }, { + "created": "2019-06-11T14:17:29.214+0000", + "deprecated": false, + "deprecationDate": null, + "description": "GlycoEpitope is a database containing useful information about carbohydrate antigens (glyco-epitopes) and the antibodies (polyclonal or monoclonal) that can be used to analyze their expression. This collection references Glycoepitopes.", "id": 1360, - "prefix": "glycoepitope", "mirId": "MIR:00000478", + "modified": "2019-06-11T14:17:29.214+0000", "name": "GlycoEpitope", + "namespaceEmbeddedInLui": false, "pattern": "^EP\\d{4}$", - "description": "GlycoEpitope is a database containing useful information about carbohydrate antigens (glyco-epitopes) and the antibodies (polyclonal or monoclonal) that can be used to analyze their expression. This collection references Glycoepitopes.", - "created": "2019-06-11T14:17:29.214+0000", - "modified": "2019-06-11T14:17:29.214+0000", + "prefix": "glycoepitope", "resources": [ { - "id": 1362, - "mirId": "MIR:00100613", - "urlPattern": "https://www.glycoepitope.jp/epitopes/{$id}", - "name": "GlycoEpitope at Ritsumeikan University", + "deprecated": false, + "deprecationDate": null, "description": "GlycoEpitope at Ritsumeikan University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "EP0311", - "resourceHomeUrl": "https://www.glycoepitope.jp/epitopes/", + "id": 1362, "institution": { - "id": 1361, - "name": "Kawasaki laboratory, Research Center for Glycobiotechnology, Ritsumeikan University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1361, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Kawasaki laboratory, Research Center for Glycobiotechnology, Ritsumeikan University", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100613", + "name": "GlycoEpitope at Ritsumeikan University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.glycoepitope.jp/epitopes/", + "sampleId": "EP0311", + "urlPattern": "https://www.glycoepitope.jp/epitopes/{$id}" } ], - "sampleId": "EP0311", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "EP0311" }, { + "created": "2019-06-11T14:17:29.437+0000", + "deprecated": false, + "deprecationDate": null, + "description": "JCGGDB (Japan Consortium for Glycobiology and Glycotechnology DataBase) is a database that aims to integrate all glycan-related data held in various repositories in Japan. This includes databases for large-quantity synthesis of glycogenes and glycans, analysis and detection of glycan structure and glycoprotein, glycan-related differentiation markers, glycan functions, glycan-related diseases and transgenic and knockout animals, etc.", "id": 1363, - "prefix": "jcggdb", "mirId": "MIR:00000479", + "modified": "2019-06-11T14:17:29.437+0000", "name": "JCGGDB", + "namespaceEmbeddedInLui": false, "pattern": "^JCGG-STR\\d{6}$", - "description": "JCGGDB (Japan Consortium for Glycobiology and Glycotechnology DataBase) is a database that aims to integrate all glycan-related data held in various repositories in Japan. This includes databases for large-quantity synthesis of glycogenes and glycans, analysis and detection of glycan structure and glycoprotein, glycan-related differentiation markers, glycan functions, glycan-related diseases and transgenic and knockout animals, etc.", - "created": "2019-06-11T14:17:29.437+0000", - "modified": "2019-06-11T14:17:29.437+0000", + "prefix": "jcggdb", "resources": [ { - "id": 1365, - "mirId": "MIR:00100614", - "urlPattern": "http://jcggdb.jp/idb/jcggdb/{$id}", - "name": "JCGGDB at Advanced Science Institute (Japan)", + "deprecated": false, + "deprecationDate": null, "description": "JCGGDB at Advanced Science Institute (Japan)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "JCGG-STR008690", - "resourceHomeUrl": "http://jcggdb.jp/index_en.html", + "id": 1365, "institution": { - "id": 1364, - "name": "RIKEN Advanced Science Institute", - "homeUrl": "http://www.riken.jp/en/about/reports/evaluation/asi/", "description": "Established by RIKEN in April 2008, based on the DRI (Discovery Research Institute) and the FRS (Frontier Research System). ASI is unique since it is structured as comprehensive system supporting the full range of scientific fields including high energy/nuclear/astro-physics, condensed matter physics, chemistry, electronic engineering, biology and medicine.", - "rorId": "https://ror.org/030vbmf58", + "homeUrl": "http://www.riken.jp/en/about/reports/evaluation/asi/", + "id": 1364, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "RIKEN Advanced Science Institute", + "rorId": "https://ror.org/030vbmf58" }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100614", + "name": "JCGGDB at Advanced Science Institute (Japan)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://jcggdb.jp/index_en.html", + "sampleId": "JCGG-STR008690", + "urlPattern": "http://jcggdb.jp/idb/jcggdb/{$id}" } ], - "sampleId": "JCGG-STR008690", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "JCGG-STR008690" }, { + "created": "2019-06-11T14:17:29.649+0000", + "deprecated": false, + "deprecationDate": null, + "description": "NONCODE is a database of expression and functional lncRNA (long noncoding RNA) data obtained from microarray studies. LncRNAs have been shown to play key roles in various biological processes such as imprinting control, circuitry controlling pluripotency and differentiation, immune responses and chromosome dynamics. The collection references NONCODE version 4 and relates to gene regions.", "id": 1366, - "prefix": "noncodev4.gene", "mirId": "MIR:00000480", + "modified": "2019-06-11T14:17:29.649+0000", "name": "NONCODE v4 Gene", + "namespaceEmbeddedInLui": false, "pattern": "^NONHSAG\\d{5}$", - "description": "NONCODE is a database of expression and functional lncRNA (long noncoding RNA) data obtained from microarray studies. LncRNAs have been shown to play key roles in various biological processes such as imprinting control, circuitry controlling pluripotency and differentiation, immune responses and chromosome dynamics. The collection references NONCODE version 4 and relates to gene regions.", - "created": "2019-06-11T14:17:29.649+0000", - "modified": "2019-06-11T14:17:29.649+0000", + "prefix": "noncodev4.gene", "resources": [ { - "id": 1367, - "mirId": "MIR:00100616", - "urlPattern": "http://www.bioinfo.org/NONCODEv4/show_gene.php?id={$id}", - "name": "NONCODE v4 Gene at Chinese Academy of Sciences", + "deprecated": false, + "deprecationDate": null, "description": "NONCODE v4 Gene at Chinese Academy of Sciences", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "NONHSAG00001", - "resourceHomeUrl": "http://www.bioinfo.org/NONCODEv4/", + "id": 1367, "institution": { - "id": 737, - "name": "Chinese Academy of Sciences", + "description": "The Chinese Academy of Sciences is the linchpin of China\u2019s drive to explore and harness high technology and the natural sciences for the benefit of China and the world. CAS brings together scientists and engineers from China and around the world to address both theoretical and applied problems using world-class scientific and management approaches.", "homeUrl": "http://english.cas.cn/", - "description": "The Chinese Academy of Sciences is the linchpin of China’s drive to explore and harness high technology and the natural sciences for the benefit of China and the world. CAS brings together scientists and engineers from China and around the world to address both theoretical and applied problems using world-class scientific and management approaches.", - "rorId": "https://ror.org/034t30j35", + "id": 737, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "Chinese Academy of Sciences", + "rorId": "https://ror.org/034t30j35" }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100616", + "name": "NONCODE v4 Gene at Chinese Academy of Sciences", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.bioinfo.org/NONCODEv4/", + "sampleId": "NONHSAG00001", + "urlPattern": "http://www.bioinfo.org/NONCODEv4/show_gene.php?id={$id}" } ], - "sampleId": "NONHSAG00001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "NONHSAG00001" }, { + "created": "2019-06-11T14:18:19.150+0000", + "deprecated": false, + "deprecationDate": null, + "description": "An interactive tool for neurobiologists to explore the detailed neuroanatomy, neuron connectivity and gene expression of the Drosophila melanogaster.", "id": 1884, - "prefix": "vfb", "mirId": "MIR:00000680", + "modified": "2019-06-11T14:18:19.150+0000", "name": "Virtual Fly Brain", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9a-zA-Z]{8}$", - "description": "An interactive tool for neurobiologists to explore the detailed neuroanatomy, neuron connectivity and gene expression of the Drosophila melanogaster.", - "created": "2019-06-11T14:18:19.150+0000", - "modified": "2019-06-11T14:18:19.150+0000", + "prefix": "vfb", "resources": [ { - "id": 1886, - "mirId": "MIR:00100911", - "urlPattern": "http://virtualflybrain.org/reports/{$id}", - "name": "Virtual Fly Brain", + "deprecated": false, + "deprecationDate": null, "description": "Virtual Fly Brain", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "00000001", - "resourceHomeUrl": "https://VirtualFlyBrain.org", + "id": 1886, "institution": { - "id": 1885, - "name": "The University of Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1885, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "The University of Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100911", + "name": "Virtual Fly Brain", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://VirtualFlyBrain.org", + "sampleId": "00000001", + "urlPattern": "http://virtualflybrain.org/reports/{$id}" } ], - "sampleId": "00000001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "00000001" }, { + "created": "2019-06-11T14:17:29.833+0000", + "deprecated": false, + "deprecationDate": null, + "description": "NONCODE is a database of expression and functional lncRNA (long noncoding RNA) data obtained from microarray studies. LncRNAs have been shown to play key roles in various biological processes such as imprinting control, circuitry controlling pluripotency and differentiation, immune responses and chromosome dynamics. The collection references NONCODE version 4 and relates to individual transcripts.", "id": 1368, - "prefix": "noncodev4.rna", "mirId": "MIR:00000481", + "modified": "2019-06-11T14:17:29.833+0000", "name": "NONCODE v4 Transcript", + "namespaceEmbeddedInLui": false, "pattern": "^NONHSAT\\d{6}$", - "description": "NONCODE is a database of expression and functional lncRNA (long noncoding RNA) data obtained from microarray studies. LncRNAs have been shown to play key roles in various biological processes such as imprinting control, circuitry controlling pluripotency and differentiation, immune responses and chromosome dynamics. The collection references NONCODE version 4 and relates to individual transcripts.", - "created": "2019-06-11T14:17:29.833+0000", - "modified": "2019-06-11T14:17:29.833+0000", + "prefix": "noncodev4.rna", "resources": [ { - "id": 1369, - "mirId": "MIR:00100617", - "urlPattern": "http://www.bioinfo.org/NONCODEv4/show_rna.php?id={$id}", - "name": "NONCODE v4 Transcript at Chinese Academy of Sciences", + "deprecated": false, + "deprecationDate": null, "description": "NONCODE v4 Transcript at Chinese Academy of Sciences", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "NONHSAT000001", - "resourceHomeUrl": "http://www.bioinfo.org/NONCODEv4/", + "id": 1369, "institution": { - "id": 737, - "name": "Chinese Academy of Sciences", + "description": "The Chinese Academy of Sciences is the linchpin of China\u2019s drive to explore and harness high technology and the natural sciences for the benefit of China and the world. CAS brings together scientists and engineers from China and around the world to address both theoretical and applied problems using world-class scientific and management approaches.", "homeUrl": "http://english.cas.cn/", - "description": "The Chinese Academy of Sciences is the linchpin of China’s drive to explore and harness high technology and the natural sciences for the benefit of China and the world. CAS brings together scientists and engineers from China and around the world to address both theoretical and applied problems using world-class scientific and management approaches.", - "rorId": "https://ror.org/034t30j35", + "id": 737, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "Chinese Academy of Sciences", + "rorId": "https://ror.org/034t30j35" }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100617", + "name": "NONCODE v4 Transcript at Chinese Academy of Sciences", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.bioinfo.org/NONCODEv4/", + "sampleId": "NONHSAT000001", + "urlPattern": "http://www.bioinfo.org/NONCODEv4/show_rna.php?id={$id}" } ], - "sampleId": "NONHSAT000001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "NONHSAT000001" }, { + "created": "2019-06-11T14:17:30.027+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Oryzabase provides a view of rice (Oryza sativa) as a model monocot plant by integrating biological data with molecular genomic information. It contains information about rice development and anatomy, rice mutants, and genetic resources, especially for wild varieties of rice. Developmental and anatomical descriptions include in situ gene expression data serving as stage and tissue markers. This collection references gene information.", "id": 1370, - "prefix": "oryzabase.gene", "mirId": "MIR:00000482", + "modified": "2019-06-11T14:17:30.027+0000", "name": "Oryzabase Gene", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Oryzabase provides a view of rice (Oryza sativa) as a model monocot plant by integrating biological data with molecular genomic information. It contains information about rice development and anatomy, rice mutants, and genetic resources, especially for wild varieties of rice. Developmental and anatomical descriptions include in situ gene expression data serving as stage and tissue markers. This collection references gene information.", - "created": "2019-06-11T14:17:30.027+0000", - "modified": "2019-06-11T14:17:30.027+0000", + "prefix": "oryzabase.gene", "resources": [ { - "id": 1372, - "mirId": "MIR:00100618", - "urlPattern": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/gene/detail/{$id}", - "name": "Oryzabase v4 Gene at National Institute of Genetics (Japan)", + "deprecated": false, + "deprecationDate": null, "description": "Oryzabase v4 Gene at National Institute of Genetics (Japan)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "117", - "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "id": 1372, "institution": { - "id": 1371, - "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1371, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100618", + "name": "Oryzabase v4 Gene at National Institute of Genetics (Japan)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "sampleId": "117", + "urlPattern": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/gene/detail/{$id}" } ], - "sampleId": "117", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "117" }, { + "created": "2019-06-11T14:17:30.248+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Oryzabase provides a view of rice (Oryza sativa) as a model monocot plant by integrating biological data with molecular genomic information. It contains information about rice development and anatomy, rice mutants, and genetic resources, especially for wild varieties of rice. Developmental and anatomical descriptions include in situ gene expression data serving as stage and tissue markers. This collection references mutant strain information.", "id": 1373, - "prefix": "oryzabase.mutant", "mirId": "MIR:00000483", + "modified": "2019-06-11T14:17:30.248+0000", "name": "Oryzabase Mutant", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Oryzabase provides a view of rice (Oryza sativa) as a model monocot plant by integrating biological data with molecular genomic information. It contains information about rice development and anatomy, rice mutants, and genetic resources, especially for wild varieties of rice. Developmental and anatomical descriptions include in situ gene expression data serving as stage and tissue markers. This collection references mutant strain information.", - "created": "2019-06-11T14:17:30.248+0000", - "modified": "2019-06-11T14:17:30.248+0000", + "prefix": "oryzabase.mutant", "resources": [ { - "id": 1374, - "mirId": "MIR:00100619", - "urlPattern": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/inducedMutationLine/detail/{$id}", - "name": "Oryzabase v4 Mutant at National Institute of Genetics (Japan)", + "deprecated": false, + "deprecationDate": null, "description": "Oryzabase v4 Mutant at National Institute of Genetics (Japan)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "21393", - "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "id": 1374, "institution": { - "id": 1371, - "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1371, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100619", + "name": "Oryzabase v4 Mutant at National Institute of Genetics (Japan)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "sampleId": "21393", + "urlPattern": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/inducedMutationLine/detail/{$id}" } ], - "sampleId": "21393", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "21393" }, { + "created": "2019-06-11T14:17:30.425+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Oryzabase provides a view of rice (Oryza sativa) as a model monocot plant by integrating biological data with molecular genomic information. It contains information about rice development and anatomy, rice mutants, and genetic resources, especially for wild varieties of rice. Developmental and anatomical descriptions include in situ gene expression data serving as stage and tissue markers. This collection references wild strain information.", "id": 1375, - "prefix": "oryzabase.strain", "mirId": "MIR:00000484", + "modified": "2019-06-11T14:17:30.425+0000", "name": "Oryzabase Strain", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Oryzabase provides a view of rice (Oryza sativa) as a model monocot plant by integrating biological data with molecular genomic information. It contains information about rice development and anatomy, rice mutants, and genetic resources, especially for wild varieties of rice. Developmental and anatomical descriptions include in situ gene expression data serving as stage and tissue markers. This collection references wild strain information.", - "created": "2019-06-11T14:17:30.425+0000", - "modified": "2019-06-11T14:17:30.425+0000", + "prefix": "oryzabase.strain", "resources": [ { - "id": 1376, - "mirId": "MIR:00100620", - "urlPattern": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/wildCore/detail/{$id}", - "name": "Oryzabase v4 Strain at National Institute of Genetics (Japan)", + "deprecated": false, + "deprecationDate": null, "description": "Oryzabase v4 Strain at National Institute of Genetics (Japan)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1", - "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "id": 1376, "institution": { - "id": 1371, - "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1371, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100620", + "name": "Oryzabase v4 Strain at National Institute of Genetics (Japan)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "sampleId": "1", + "urlPattern": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/wildCore/detail/{$id}" } ], - "sampleId": "1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1" }, { + "created": "2019-06-11T14:17:30.616+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Oryzabase provides a view of rice (Oryza sativa) as a model monocot plant by integrating biological data with molecular genomic information. It contains information about rice development and anatomy, rice mutants, and genetic resources, especially for wild varieties of rice. Developmental and anatomical descriptions include in situ gene expression data serving as stage and tissue markers. This collection references development stage information.", "id": 1377, - "prefix": "oryzabase.stage", "mirId": "MIR:00000485", + "modified": "2019-06-11T14:17:30.616+0000", "name": "Oryzabase Stage", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Oryzabase provides a view of rice (Oryza sativa) as a model monocot plant by integrating biological data with molecular genomic information. It contains information about rice development and anatomy, rice mutants, and genetic resources, especially for wild varieties of rice. Developmental and anatomical descriptions include in situ gene expression data serving as stage and tissue markers. This collection references development stage information.", - "created": "2019-06-11T14:17:30.616+0000", - "modified": "2019-06-11T14:17:30.616+0000", + "prefix": "oryzabase.stage", "resources": [ { - "id": 1378, - "mirId": "MIR:00100621", - "urlPattern": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/devstageineachorgan/detail/{$id}", - "name": "Oryzabase v4 Stage at National Institute of Genetics (Japan)", + "deprecated": false, + "deprecationDate": null, "description": "Oryzabase v4 Stage at National Institute of Genetics (Japan)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "34", - "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "id": 1378, "institution": { - "id": 1371, - "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1371, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100621", + "name": "Oryzabase v4 Stage at National Institute of Genetics (Japan)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "sampleId": "34", + "urlPattern": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/devstageineachorgan/detail/{$id}" } ], - "sampleId": "34", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "34" }, { + "created": "2019-06-11T14:17:30.833+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Oryza Tag Line is a database that was developed to collect information generated from the characterization of rice (Oryza sativa L cv. Nipponbare) insertion lines resulting in potential gene disruptions. It collates morpho-physiological alterations observed during field evaluation, with each insertion line documented through a generic passport data including production records, seed stocks and FST information.", "id": 1379, - "prefix": "otl", "mirId": "MIR:00000486", + "modified": "2019-06-11T14:17:30.833+0000", "name": "Oryza Tag Line", + "namespaceEmbeddedInLui": false, "pattern": "^A[A-Z]+\\d+$", - "description": "Oryza Tag Line is a database that was developed to collect information generated from the characterization of rice (Oryza sativa L cv. Nipponbare) insertion lines resulting in potential gene disruptions. It collates morpho-physiological alterations observed during field evaluation, with each insertion line documented through a generic passport data including production records, seed stocks and FST information.", - "created": "2019-06-11T14:17:30.833+0000", - "modified": "2019-06-11T14:17:30.833+0000", + "prefix": "otl", "resources": [ { - "id": 1381, - "mirId": "MIR:00100622", - "urlPattern": "http://oryzatagline.cirad.fr/cgi-bin/general_mutant.pl?line={$id}", - "name": "Oryza Tag Line at CIRAD-INRA-SUPAGRO-UMI", + "deprecated": false, + "deprecationDate": null, "description": "Oryza Tag Line at CIRAD-INRA-SUPAGRO-UMI", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "AADB12", - "resourceHomeUrl": "http://oryzatagline.cirad.fr/", + "id": 1381, "institution": { - "id": 1380, - "name": "CIRAD-INRA-SUPAGRO-UMII, Biological Systems Department, Montpellier", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1380, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "CIRAD-INRA-SUPAGRO-UMII, Biological Systems Department, Montpellier", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100622", + "name": "Oryza Tag Line at CIRAD-INRA-SUPAGRO-UMI", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://oryzatagline.cirad.fr/", + "sampleId": "AADB12", + "urlPattern": "http://oryzatagline.cirad.fr/cgi-bin/general_mutant.pl?line={$id}" } ], - "sampleId": "AADB12", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AADB12" }, { + "created": "2019-06-11T14:17:31.086+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Gene Wiki is project which seeks to provide detailed information on human genes. Initial 'stub' articles are created in an automated manner, with further information added by the community. Gene Wiki can be accessed in wikipedia using Gene identifiers from NCBI.", "id": 1382, - "prefix": "genewiki", "mirId": "MIR:00000487", + "modified": "2019-06-11T14:17:31.086+0000", "name": "Gene Wiki", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Gene Wiki is project which seeks to provide detailed information on human genes. Initial 'stub' articles are created in an automated manner, with further information added by the community. Gene Wiki can be accessed in wikipedia using Gene identifiers from NCBI.", - "created": "2019-06-11T14:17:31.086+0000", - "modified": "2019-06-11T14:17:31.086+0000", + "prefix": "genewiki", "resources": [ { - "id": 1383, - "mirId": "MIR:00100623", - "urlPattern": "http://plugins.biogps.org/cgi-bin/wp.cgi?id={$id}", - "name": "Gene Wiki through BioGPS", - "description": "Gene Wiki through BioGPS", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1017", - "resourceHomeUrl": "http://en.wikipedia.org/wiki/Gene_Wiki", + "deprecated": false, + "deprecationDate": null, + "description": "Gene Wiki through BioGPS", + "id": 1383, "institution": { - "id": 1111, - "name": "Wikimedia Foundation, San Francisco, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1111, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Wikimedia Foundation, San Francisco, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100623", + "name": "Gene Wiki through BioGPS", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://en.wikipedia.org/wiki/Gene_Wiki", + "sampleId": "1017", + "urlPattern": "http://plugins.biogps.org/cgi-bin/wp.cgi?id={$id}" } ], - "sampleId": "1017", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1017" }, { + "created": "2019-06-11T14:17:31.315+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PaxDb is a resource dedicated to integrating information on absolute protein abundance levels across different organisms. Publicly available experimental data are mapped onto a common namespace and, in the case of tandem mass spectrometry data, re-processed using a standardized spectral counting pipeline. Data sets are scored and ranked to assess consistency against externally provided protein-network information. PaxDb provides whole-organism data as well as tissue-resolved data, for numerous proteins. This collection references protein abundance information by species.", "id": 1384, - "prefix": "paxdb.organism", "mirId": "MIR:00000488", + "modified": "2019-06-11T14:17:31.315+0000", "name": "PaxDb Organism", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "PaxDb is a resource dedicated to integrating information on absolute protein abundance levels across different organisms. Publicly available experimental data are mapped onto a common namespace and, in the case of tandem mass spectrometry data, re-processed using a standardized spectral counting pipeline. Data sets are scored and ranked to assess consistency against externally provided protein-network information. PaxDb provides whole-organism data as well as tissue-resolved data, for numerous proteins. This collection references protein abundance information by species.", - "created": "2019-06-11T14:17:31.315+0000", - "modified": "2019-06-11T14:17:31.315+0000", + "prefix": "paxdb.organism", "resources": [ { - "id": 1386, - "mirId": "MIR:00100624", - "urlPattern": "http://pax-db.org/#!species/{$id}", - "name": "PaxDb v3 at University of Zurich", + "deprecated": false, + "deprecationDate": null, "description": "PaxDb v3 at University of Zurich", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "9606", - "resourceHomeUrl": "http://pax-db.org/", + "id": 1386, "institution": { - "id": 1385, - "name": "Institute of Molecular Life Sciences, University of Zurich, Zurich", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1385, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "Institute of Molecular Life Sciences, University of Zurich, Zurich", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100624", + "name": "PaxDb v3 at University of Zurich", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://pax-db.org/", + "sampleId": "9606", + "urlPattern": "http://pax-db.org/#!species/{$id}" } ], - "sampleId": "9606", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "9606" }, { + "created": "2019-06-11T14:17:31.566+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PaxDb is a resource dedicated to integrating information on absolute protein abundance levels across different organisms. Publicly available experimental data are mapped onto a common namespace and, in the case of tandem mass spectrometry data, re-processed using a standardized spectral counting pipeline. Data sets are scored and ranked to assess consistency against externally provided protein-network information. PaxDb provides whole-organism data as well as tissue-resolved data, for numerous proteins. This collection references individual protein abundance levels.", "id": 1387, - "prefix": "paxdb.protein", "mirId": "MIR:00000489", + "modified": "2019-06-11T14:17:31.566+0000", "name": "PaxDb Protein", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "PaxDb is a resource dedicated to integrating information on absolute protein abundance levels across different organisms. Publicly available experimental data are mapped onto a common namespace and, in the case of tandem mass spectrometry data, re-processed using a standardized spectral counting pipeline. Data sets are scored and ranked to assess consistency against externally provided protein-network information. PaxDb provides whole-organism data as well as tissue-resolved data, for numerous proteins. This collection references individual protein abundance levels.", - "created": "2019-06-11T14:17:31.566+0000", - "modified": "2019-06-11T14:17:31.566+0000", + "prefix": "paxdb.protein", "resources": [ { - "id": 1388, - "mirId": "MIR:00100625", - "urlPattern": "http://pax-db.org/#!protein/{$id}", - "name": "PaxDb v3 at University of Zurich", + "deprecated": false, + "deprecationDate": null, "description": "PaxDb v3 at University of Zurich", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "977869", - "resourceHomeUrl": "http://pax-db.org/", + "id": 1388, "institution": { - "id": 1385, - "name": "Institute of Molecular Life Sciences, University of Zurich, Zurich", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1385, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "Institute of Molecular Life Sciences, University of Zurich, Zurich", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100625", + "name": "PaxDb v3 at University of Zurich", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://pax-db.org/", + "sampleId": "977869", + "urlPattern": "http://pax-db.org/#!protein/{$id}" } ], - "sampleId": "977869", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "977869" }, { + "created": "2019-06-11T14:17:31.784+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Protein Data Bank is the single worldwide archive of structural data of biological macromolecules. This collection references ligands.", "id": 1389, - "prefix": "pdb.ligand", "mirId": "MIR:00000490", + "modified": "2019-06-11T14:17:31.784+0000", "name": "Protein Data Bank Ligand", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9]+$", - "description": "The Protein Data Bank is the single worldwide archive of structural data of biological macromolecules. This collection references ligands.", - "created": "2019-06-11T14:17:31.784+0000", - "modified": "2019-06-11T14:17:31.784+0000", + "prefix": "pdb.ligand", "resources": [ { - "id": 1390, - "mirId": "MIR:00100626", - "urlPattern": "http://www.rcsb.org/pdb/ligand/ligandsummary.do?hetId={$id}", - "name": "PDB Ligand at RCSB", + "deprecated": false, + "deprecationDate": null, "description": "PDB Ligand at RCSB", - "official": false, - "providerCode": "rcsb", - "sampleId": "TRQ", - "resourceHomeUrl": "http://www.pdb.org/", + "id": 1390, "institution": { - "id": 79, - "name": "Rutgers, The State University of New Jersey", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 79, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Rutgers, The State University of New Jersey", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100626", + "name": "PDB Ligand at RCSB", + "official": false, + "providerCode": "rcsb", + "resourceHomeUrl": "http://www.pdb.org/", + "sampleId": "TRQ", + "urlPattern": "http://www.rcsb.org/pdb/ligand/ligandsummary.do?hetId={$id}" }, { - "id": 1391, - "mirId": "MIR:00100650", - "urlPattern": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/chemicalCompound/show/{$id}", - "name": "PDB Ligand at Protein Databank in Europe (PDBe)", + "deprecated": false, + "deprecationDate": null, "description": "PDB Ligand at Protein Databank in Europe (PDBe)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "TRQ", - "resourceHomeUrl": "https://www.pdbe.org/", + "id": 1391, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100650", + "name": "PDB Ligand at Protein Databank in Europe (PDBe)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.pdbe.org/", + "sampleId": "TRQ", + "urlPattern": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/chemicalCompound/show/{$id}" } ], - "sampleId": "TRQ", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "TRQ" }, { + "created": "2019-06-11T14:17:32.129+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The MEROPS database is an information resource for peptidases (also termed proteases, proteinases and proteolytic enzymes) and the proteins that inhibit them. This collections references inhibitors.", "id": 1392, - "prefix": "merops.inhibitor", "mirId": "MIR:00000491", + "modified": "2019-06-11T14:17:32.129+0000", "name": "MEROPS Inhibitor", + "namespaceEmbeddedInLui": false, "pattern": "^I\\d{2}\\.\\d{3}$", - "description": "The MEROPS database is an information resource for peptidases (also termed proteases, proteinases and proteolytic enzymes) and the proteins that inhibit them. This collections references inhibitors.", - "created": "2019-06-11T14:17:32.129+0000", - "modified": "2019-06-11T14:17:32.129+0000", + "prefix": "merops.inhibitor", "resources": [ { - "id": 1394, - "mirId": "MIR:00100632", - "urlPattern": "http://merops.sanger.ac.uk/cgi-bin/pepsum?id={$id}", - "name": "MEROPS Inhibitor at Sanger Institute", + "deprecated": false, + "deprecationDate": null, "description": "MEROPS Inhibitor at Sanger Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "I31.952", - "resourceHomeUrl": "http://merops.sanger.ac.uk/index.htm", + "id": 1394, "institution": { - "id": 1393, - "name": "Wellcome Trust Sanger Institute, Wellcome Trust Genome Campus, Hinxton, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1393, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Wellcome Trust Sanger Institute, Wellcome Trust Genome Campus, Hinxton, Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100632", + "name": "MEROPS Inhibitor at Sanger Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://merops.sanger.ac.uk/index.htm", + "sampleId": "I31.952", + "urlPattern": "http://merops.sanger.ac.uk/cgi-bin/pepsum?id={$id}" } ], - "sampleId": "I31.952", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "I31.952" }, { + "created": "2019-06-11T14:17:32.366+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Animal Diversity Web (ADW) is an online database of animal natural history, distribution, classification, and conservation biology.", "id": 1395, - "prefix": "adw", "mirId": "MIR:00000492", + "modified": "2019-06-11T14:17:32.366+0000", "name": "Animal Diversity Web", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z_a-z]+$", - "description": "Animal Diversity Web (ADW) is an online database of animal natural history, distribution, classification, and conservation biology.", - "created": "2019-06-11T14:17:32.366+0000", - "modified": "2019-06-11T14:17:32.366+0000", + "prefix": "adw", "resources": [ { - "id": 1397, - "mirId": "MIR:00100633", - "urlPattern": "https://animaldiversity.org/accounts/{$id}/", - "name": "Animal Diversity Web at University of Michigan", + "deprecated": false, + "deprecationDate": null, "description": "Animal Diversity Web at University of Michigan", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Lycalopex_vetulus", - "resourceHomeUrl": "https://animaldiversity.org/", + "id": 1397, "institution": { - "id": 1396, - "name": "University of Michigan Museum of Zoology, Ann Arbor, Michigan", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1396, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Michigan Museum of Zoology, Ann Arbor, Michigan", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100633", + "name": "Animal Diversity Web at University of Michigan", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://animaldiversity.org/", + "sampleId": "Lycalopex_vetulus", + "urlPattern": "https://animaldiversity.org/accounts/{$id}/" } ], - "sampleId": "Lycalopex_vetulus", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Lycalopex_vetulus" }, { + "created": "2019-06-11T14:17:32.633+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The GPCR-LIgand DAtabase (GLIDA) is a GPCR-related chemical genomic database that is primarily focused on the correlation of information between GPCRs and their ligands. It provides correlation data between GPCRs and their ligands, along with chemical information on the ligands. This collection references G-protein coupled receptors.", "id": 1398, - "prefix": "glida.gpcr", "mirId": "MIR:00000493", + "modified": "2019-06-11T14:17:32.633+0000", "name": "GLIDA GPCR", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z-_0-9]+$", - "description": "The GPCR-LIgand DAtabase (GLIDA) is a GPCR-related chemical genomic database that is primarily focused on the correlation of information between GPCRs and their ligands. It provides correlation data between GPCRs and their ligands, along with chemical information on the ligands. This collection references G-protein coupled receptors.", - "created": "2019-06-11T14:17:32.633+0000", - "modified": "2019-06-11T14:17:32.633+0000", + "prefix": "glida.gpcr", "resources": [ { - "id": 1400, - "mirId": "MIR:00100634", - "urlPattern": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/gpcr_information.php?id={$id}", - "name": "GLIDA GPCR at Kyoto University", + "deprecated": false, + "deprecationDate": null, "description": "GLIDA GPCR at Kyoto University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ACM1_HUMAN", - "resourceHomeUrl": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/", + "id": 1400, "institution": { - "id": 1399, - "name": "Department of Genomic Drug Discovery Science, Graduate School of Pharmaceutical Sciences, Kyoto University, Sakyo-ku, Kyoto", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1399, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Department of Genomic Drug Discovery Science, Graduate School of Pharmaceutical Sciences, Kyoto University, Sakyo-ku, Kyoto", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100634", + "name": "GLIDA GPCR at Kyoto University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/", + "sampleId": "ACM1_HUMAN", + "urlPattern": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/gpcr_information.php?id={$id}" } ], - "sampleId": "ACM1_HUMAN", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ACM1_HUMAN" }, { + "created": "2019-06-11T14:17:32.872+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The GPCR-LIgand DAtabase (GLIDA) is a GPCR-related chemical genomic database that is primarily focused on the correlation of information between GPCRs and their ligands. It provides correlation data between GPCRs and their ligands, along with chemical information on the ligands. This collection references ligands.", "id": 1401, - "prefix": "glida.ligand", "mirId": "MIR:00000494", + "modified": "2019-06-11T14:17:32.872+0000", "name": "GLIDA Ligand", + "namespaceEmbeddedInLui": false, "pattern": "^L\\d+$", - "description": "The GPCR-LIgand DAtabase (GLIDA) is a GPCR-related chemical genomic database that is primarily focused on the correlation of information between GPCRs and their ligands. It provides correlation data between GPCRs and their ligands, along with chemical information on the ligands. This collection references ligands.", - "created": "2019-06-11T14:17:32.872+0000", - "modified": "2019-06-11T14:17:32.872+0000", + "prefix": "glida.ligand", "resources": [ - { - "id": 1402, - "mirId": "MIR:00100635", - "urlPattern": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/ligand_information.php?id={$id}", - "name": "GLIDA Ligand at Kyoto University", + { + "deprecated": false, + "deprecationDate": null, "description": "GLIDA Ligand at Kyoto University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "L000001", - "resourceHomeUrl": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/", + "id": 1402, "institution": { - "id": 1399, - "name": "Department of Genomic Drug Discovery Science, Graduate School of Pharmaceutical Sciences, Kyoto University, Sakyo-ku, Kyoto", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1399, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Department of Genomic Drug Discovery Science, Graduate School of Pharmaceutical Sciences, Kyoto University, Sakyo-ku, Kyoto", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100635", + "name": "GLIDA Ligand at Kyoto University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/", + "sampleId": "L000001", + "urlPattern": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/ligand_information.php?id={$id}" } ], - "sampleId": "L000001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "L000001" }, { + "created": "2019-06-11T14:17:33.087+0000", + "deprecated": false, + "deprecationDate": null, + "description": "GRSDB is a database of G-quadruplexes and contains information on composition and distribution of putative Quadruplex-forming G-Rich Sequences (QGRS) mapped in the eukaryotic pre-mRNA sequences, including those that are alternatively processed (alternatively spliced or alternatively polyadenylated). The data stored in the GRSDB is based on computational analysis of NCBI Entrez Gene entries and their corresponding annotated genomic nucleotide sequences of RefSeq/GenBank.", "id": 1403, - "prefix": "grsdb", "mirId": "MIR:00000495", + "modified": "2019-06-11T14:17:33.087+0000", "name": "GRSDB", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "GRSDB is a database of G-quadruplexes and contains information on composition and distribution of putative Quadruplex-forming G-Rich Sequences (QGRS) mapped in the eukaryotic pre-mRNA sequences, including those that are alternatively processed (alternatively spliced or alternatively polyadenylated). The data stored in the GRSDB is based on computational analysis of NCBI Entrez Gene entries and their corresponding annotated genomic nucleotide sequences of RefSeq/GenBank.", - "created": "2019-06-11T14:17:33.087+0000", - "modified": "2019-06-11T14:17:33.087+0000", + "prefix": "grsdb", "resources": [ { - "id": 1405, - "mirId": "MIR:00100636", - "urlPattern": "http://bioinformatics.ramapo.edu/GRSDB2/geneview.php?geneID={$id}", - "name": "GRSDB v2 at Ramapo College of New Jersey", + "deprecated": false, + "deprecationDate": null, "description": "GRSDB v2 at Ramapo College of New Jersey", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "10142", - "resourceHomeUrl": "http://bioinformatics.ramapo.edu/GRSDB2/", + "id": 1405, "institution": { - "id": 1404, - "name": "Ramapo College", + "description": "Established in 1969, Ramapo College offers bachelor\u2019s degrees in the arts, business, humanities, social sciences and the sciences, as well as in professional studies, which include business, elementary education, nursing and social work. In fall 2020, the College will be enrolling students in both a bachelor\u2019s and master\u2019s degree in data science, only one of two higher education institutions in New Jersey to offer both programs.", "homeUrl": "https://www.ramapo.edu/", - "description": "Established in 1969, Ramapo College offers bachelor’s degrees in the arts, business, humanities, social sciences and the sciences, as well as in professional studies, which include business, elementary education, nursing and social work. In fall 2020, the College will be enrolling students in both a bachelor’s and master’s degree in data science, only one of two higher education institutions in New Jersey to offer both programs.", - "rorId": "https://ror.org/03s2x9d90", + "id": 1404, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Ramapo College", + "rorId": "https://ror.org/03s2x9d90" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100636", + "name": "GRSDB v2 at Ramapo College of New Jersey", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bioinformatics.ramapo.edu/GRSDB2/", + "sampleId": "10142", + "urlPattern": "http://bioinformatics.ramapo.edu/GRSDB2/geneview.php?geneID={$id}" } ], - "sampleId": "10142", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "10142" }, { + "created": "2019-06-11T14:17:37.549+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The ProteomeXchange provides a single point of submission of Mass Spectrometry (MS) proteomics data for the main existing proteomics repositories, and encourages the data exchange between them for optimal data dissemination.", "id": 1447, - "prefix": "px", "mirId": "MIR:00000513", + "modified": "2019-06-11T14:17:37.549+0000", "name": "ProteomeXchange", + "namespaceEmbeddedInLui": false, "pattern": "^(R)?PXD\\d{6}$", - "description": "The ProteomeXchange provides a single point of submission of Mass Spectrometry (MS) proteomics data for the main existing proteomics repositories, and encourages the data exchange between them for optimal data dissemination.", - "created": "2019-06-11T14:17:37.549+0000", - "modified": "2019-06-11T14:17:37.549+0000", + "prefix": "px", "resources": [ { - "id": 1449, - "mirId": "MIR:00100660", - "urlPattern": "http://proteomecentral.proteomexchange.org/cgi/GetDataset?ID={$id}", - "name": "ProteomeXchange at Seattle", + "deprecated": false, + "deprecationDate": null, "description": "ProteomeXchange at Seattle", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PXD000500", - "resourceHomeUrl": "http://www.proteomexchange.org/", + "id": 1449, "institution": { - "id": 193, - "name": "Institute for Systems Biology", - "homeUrl": "https://isbscience.org/", "description": "ISB was created in 2000 as the first-ever institute dedicated to systems biology.", - "rorId": "https://ror.org/02tpgw303", + "homeUrl": "https://isbscience.org/", + "id": 193, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Institute for Systems Biology", + "rorId": "https://ror.org/02tpgw303" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100660", + "name": "ProteomeXchange at Seattle", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.proteomexchange.org/", + "sampleId": "PXD000500", + "urlPattern": "http://proteomecentral.proteomexchange.org/cgi/GetDataset?ID={$id}" } ], - "sampleId": "PXD000500", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PXD000500" }, { + "created": "2019-06-11T14:17:37.784+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Vocabulary used in the RDF representation of SBML models.", "id": 1450, - "prefix": "biomodels.vocabulary", "mirId": "MIR:00000514", + "modified": "2019-06-11T14:17:37.784+0000", "name": "SBML RDF Vocabulary", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z]+$", - "description": "Vocabulary used in the RDF representation of SBML models.", - "created": "2019-06-11T14:17:37.784+0000", - "modified": "2019-06-11T14:17:37.784+0000", + "prefix": "biomodels.vocabulary", "resources": [ { - "id": 1452, - "mirId": "MIR:00100661", - "urlPattern": "http://biomodels.net/rdf/vocabulary.rdf#{$id}", - "name": "Vocabulary via BioModels.net", + "deprecated": false, + "deprecationDate": null, "description": "Vocabulary via BioModels.net", - "official": false, - "providerCode": "ebi", - "sampleId": "rateRule", - "resourceHomeUrl": "http://biomodels.net/rdf/vocabulary.rdf", + "id": 1452, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100661", + "name": "Vocabulary via BioModels.net", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "http://biomodels.net/rdf/vocabulary.rdf", + "sampleId": "rateRule", + "urlPattern": "http://biomodels.net/rdf/vocabulary.rdf#{$id}" } ], - "sampleId": "rateRule", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "rateRule" }, { + "created": "2019-06-11T14:17:33.340+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Functional Single Nucleotide Polymorphism (F-SNP) database integrates information obtained from databases about the functional effects of SNPs. These effects are predicted and indicated at the splicing, transcriptional, translational and post-translational level. In particular, users can retrieve SNPs that disrupt genomic regions known to be functional, including splice sites and transcriptional regulatory regions. Users can also identify non-synonymous SNPs that may have deleterious effects on protein structure or function, interfere with protein translation or impede post-translational modification.", "id": 1406, - "prefix": "fsnp", "mirId": "MIR:00000496", + "modified": "2019-06-11T14:17:33.340+0000", "name": "F-SNP", + "namespaceEmbeddedInLui": false, "pattern": "^rs\\d+$", - "description": "The Functional Single Nucleotide Polymorphism (F-SNP) database integrates information obtained from databases about the functional effects of SNPs. These effects are predicted and indicated at the splicing, transcriptional, translational and post-translational level. In particular, users can retrieve SNPs that disrupt genomic regions known to be functional, including splice sites and transcriptional regulatory regions. Users can also identify non-synonymous SNPs that may have deleterious effects on protein structure or function, interfere with protein translation or impede post-translational modification.", - "created": "2019-06-11T14:17:33.340+0000", - "modified": "2019-06-11T14:17:33.340+0000", + "prefix": "fsnp", "resources": [ { - "id": 1408, - "mirId": "MIR:00100637", - "urlPattern": "http://compbio.cs.queensu.ca/cgi-bin/compbio/search/main.cgi?search_mode=id&id_type=snp_id&id_val={$id}", - "name": "F-SNP at Queen's University (Canada)", + "deprecated": false, + "deprecationDate": null, "description": "F-SNP at Queen's University (Canada)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "rs17852708", - "resourceHomeUrl": "http://compbio.cs.queensu.ca/F-SNP/", + "id": 1408, "institution": { - "id": 1407, - "name": "Computational Biology and Machine Learning Lab, School of Computing, Queen's University, Kingston, Ontario", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1407, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "Computational Biology and Machine Learning Lab, School of Computing, Queen's University, Kingston, Ontario", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100637", + "name": "F-SNP at Queen's University (Canada)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://compbio.cs.queensu.ca/F-SNP/", + "sampleId": "rs17852708", + "urlPattern": "http://compbio.cs.queensu.ca/cgi-bin/compbio/search/main.cgi?search_mode=id&id_type=snp_id&id_val={$id}" } ], - "sampleId": "rs17852708", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "rs17852708" }, { + "created": "2019-06-11T14:17:33.593+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Homeodomain Resource is a curated collection of sequence, structure, interaction, genomic and functional information on the homeodomain family. It contains sets of curated homeodomain sequences from fully sequenced genomes, including experimentally derived homeodomain structures, homeodomain protein-protein interactions, homeodomain DNA-binding sites and homeodomain proteins implicated in human genetic disorders.", "id": 1409, - "prefix": "hdr", "mirId": "MIR:00000497", + "modified": "2019-06-11T14:17:33.593+0000", "name": "Homeodomain Research", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Homeodomain Resource is a curated collection of sequence, structure, interaction, genomic and functional information on the homeodomain family. It contains sets of curated homeodomain sequences from fully sequenced genomes, including experimentally derived homeodomain structures, homeodomain protein-protein interactions, homeodomain DNA-binding sites and homeodomain proteins implicated in human genetic disorders.", - "created": "2019-06-11T14:17:33.593+0000", - "modified": "2019-06-11T14:17:33.593+0000", + "prefix": "hdr", "resources": [ { - "id": 1411, - "mirId": "MIR:00100638", - "urlPattern": "http://research.nhgri.nih.gov/apps/homeodomain/web/index.cgi?mode=view&view=proteins&id={$id}", - "name": "Homeodomain Research at National Human Genome Research Institute (NIH)", + "deprecated": false, + "deprecationDate": null, "description": "Homeodomain Research at National Human Genome Research Institute (NIH)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "63", - "resourceHomeUrl": "http://research.nhgri.nih.gov/apps/homeodomain/web/", + "id": 1411, "institution": { - "id": 1410, - "name": "Genome Technology Branch, National Human Genome Research Institute, National Institutes of Health, Bethesda, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1410, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Genome Technology Branch, National Human Genome Research Institute, National Institutes of Health, Bethesda, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100638", + "name": "Homeodomain Research at National Human Genome Research Institute (NIH)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://research.nhgri.nih.gov/apps/homeodomain/web/", + "sampleId": "63", + "urlPattern": "http://research.nhgri.nih.gov/apps/homeodomain/web/index.cgi?mode=view&view=proteins&id={$id}" } ], - "sampleId": "63", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "63" }, { + "created": "2019-06-11T14:17:33.862+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Norine is a database dedicated to nonribosomal peptides (NRPs). In bacteria and fungi, in addition to the traditional ribosomal proteic biosynthesis, an alternative ribosome-independent pathway called NRP synthesis allows peptide production. The molecules synthesized by NRPS contain a high proportion of nonproteogenic amino acids whose primary structure is not always linear, often being more complex and containing cycles and branchings.", "id": 1412, - "prefix": "norine", "mirId": "MIR:00000498", + "modified": "2019-06-11T14:17:33.862+0000", "name": "NORINE", + "namespaceEmbeddedInLui": false, "pattern": "^NOR\\d+$", - "description": "Norine is a database dedicated to nonribosomal peptides (NRPs). In bacteria and fungi, in addition to the traditional ribosomal proteic biosynthesis, an alternative ribosome-independent pathway called NRP synthesis allows peptide production. The molecules synthesized by NRPS contain a high proportion of nonproteogenic amino acids whose primary structure is not always linear, often being more complex and containing cycles and branchings.", - "created": "2019-06-11T14:17:33.862+0000", - "modified": "2019-06-11T14:17:33.862+0000", + "prefix": "norine", "resources": [ { - "id": 1414, - "mirId": "MIR:00100639", - "urlPattern": "http://bioinfo.lifl.fr/norine/result.jsp?ID={$id}", - "name": "NORINE at Computer Science Laboratory of Lille", + "deprecated": false, + "deprecationDate": null, "description": "NORINE at Computer Science Laboratory of Lille", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "NOR00681", - "resourceHomeUrl": "http://bioinfo.lifl.fr/norine/", + "id": 1414, "institution": { - "id": 1413, - "name": "Computer Science Laboratory of Lille, INRIA and ProBioGEM, University of Sciences and Technologies of Lille, Lille", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1413, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Computer Science Laboratory of Lille, INRIA and ProBioGEM, University of Sciences and Technologies of Lille, Lille", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100639", + "name": "NORINE at Computer Science Laboratory of Lille", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bioinfo.lifl.fr/norine/", + "sampleId": "NOR00681", + "urlPattern": "http://bioinfo.lifl.fr/norine/result.jsp?ID={$id}" } ], - "sampleId": "NOR00681", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "NOR00681" }, { + "created": "2019-06-11T14:17:34.104+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Olfactory Receptor Database (ORDB) is a repository of genomics and proteomics information of olfactory receptors (ORs). It includes a broad range of chemosensory genes and proteins, that includes in addition to ORs the taste papilla receptors (TPRs), vomeronasal organ receptors (VNRs), insect olfactory receptors (IORs), Caenorhabditis elegans chemosensory receptors (CeCRs), fungal pheromone receptors (FPRs).", "id": 1415, - "prefix": "ordb", "mirId": "MIR:00000499", + "modified": "2019-06-11T14:17:34.104+0000", "name": "Olfactory Receptor Database", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Olfactory Receptor Database (ORDB) is a repository of genomics and proteomics information of olfactory receptors (ORs). It includes a broad range of chemosensory genes and proteins, that includes in addition to ORs the taste papilla receptors (TPRs), vomeronasal organ receptors (VNRs), insect olfactory receptors (IORs), Caenorhabditis elegans chemosensory receptors (CeCRs), fungal pheromone receptors (FPRs).", - "created": "2019-06-11T14:17:34.104+0000", - "modified": "2019-06-11T14:17:34.104+0000", + "prefix": "ordb", "resources": [ { - "id": 1417, - "mirId": "MIR:00100640", - "urlPattern": "http://senselab.med.yale.edu/ORDB/Data/{$id}", - "name": "Olfactory Receptor Database at Yale University School of Medicine", + "deprecated": false, + "deprecationDate": null, "description": "Olfactory Receptor Database at Yale University School of Medicine", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "8497", - "resourceHomeUrl": "http://senselab.med.yale.edu/OrDB/", + "id": 1417, "institution": { - "id": 1416, - "name": "Center for Medical Informatics, Yale University School of Medicine, New Haven, Connecticut", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1416, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Center for Medical Informatics, Yale University School of Medicine, New Haven, Connecticut", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100640", + "name": "Olfactory Receptor Database at Yale University School of Medicine", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://senselab.med.yale.edu/OrDB/", + "sampleId": "8497", + "urlPattern": "http://senselab.med.yale.edu/ORDB/Data/{$id}" } ], - "sampleId": "8497", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "8497" }, { + "created": "2019-06-11T14:17:34.340+0000", + "deprecated": false, + "deprecationDate": null, + "description": "OdorDB stores information related to odorous compounds, specifically identifying those that have been shown to interact with olfactory receptors", "id": 1418, - "prefix": "odor", "mirId": "MIR:00000500", + "modified": "2019-06-11T14:17:34.340+0000", "name": "Odor Molecules DataBase", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "OdorDB stores information related to odorous compounds, specifically identifying those that have been shown to interact with olfactory receptors", - "created": "2019-06-11T14:17:34.340+0000", - "modified": "2019-06-11T14:17:34.340+0000", + "prefix": "odor", "resources": [ { - "id": 1419, - "mirId": "MIR:00100641", - "urlPattern": "http://senselab.med.yale.edu/OdorDB/Data/{$id}/?db=5", - "name": "Odor Molecules DataBase at Yale University School of Medicine", + "deprecated": false, + "deprecationDate": null, "description": "Odor Molecules DataBase at Yale University School of Medicine", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "74", - "resourceHomeUrl": "http://senselab.med.yale.edu/OdorDB", + "id": 1419, "institution": { - "id": 1416, - "name": "Center for Medical Informatics, Yale University School of Medicine, New Haven, Connecticut", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1416, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Center for Medical Informatics, Yale University School of Medicine, New Haven, Connecticut", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100641", + "name": "Odor Molecules DataBase at Yale University School of Medicine", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://senselab.med.yale.edu/OdorDB", + "sampleId": "74", + "urlPattern": "http://senselab.med.yale.edu/OdorDB/Data/{$id}/?db=5" } ], - "sampleId": "74", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "74" }, { + "created": "2019-06-11T14:17:34.528+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Plant Protein Phosphorylation DataBase (P3DB) is a database that provides information on experimentally determined phosphorylation sites in the proteins of various plant species. This collection references plant proteins that contain phosphorylation sites.", "id": 1420, - "prefix": "p3db.protein", "mirId": "MIR:00000501", + "modified": "2019-06-11T14:17:34.528+0000", "name": "P3DB Protein", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Plant Protein Phosphorylation DataBase (P3DB) is a database that provides information on experimentally determined phosphorylation sites in the proteins of various plant species. This collection references plant proteins that contain phosphorylation sites.", - "created": "2019-06-11T14:17:34.528+0000", - "modified": "2019-06-11T14:17:34.528+0000", + "prefix": "p3db.protein", "resources": [ { - "id": 1422, - "mirId": "MIR:00100642", - "urlPattern": "http://www.p3db.org/protein.php?id={$id}&ref=0", - "name": "P3DB Protein at University of Missouri", + "deprecated": false, + "deprecationDate": null, "description": "P3DB Protein at University of Missouri", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "70", - "resourceHomeUrl": "http://www.p3db.org/", + "id": 1422, "institution": { - "id": 1421, - "name": "Department of Computer Science, University of Missouri, Columbia, Missouri", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1421, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Computer Science, University of Missouri, Columbia, Missouri", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100642", + "name": "P3DB Protein at University of Missouri", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.p3db.org/", + "sampleId": "70", + "urlPattern": "http://www.p3db.org/protein.php?id={$id}&ref=0" } ], - "sampleId": "70", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "70" }, { + "created": "2019-06-11T14:17:34.763+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Plant Protein Phosphorylation DataBase (P3DB) is a database that provides information on experimentally determined phosphorylation sites in the proteins of various plant species. This collection references phosphorylation sites in proteins.", "id": 1423, - "prefix": "p3db.site", "mirId": "MIR:00000502", + "modified": "2019-06-11T14:17:34.763+0000", "name": "P3DB Site", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "Plant Protein Phosphorylation DataBase (P3DB) is a database that provides information on experimentally determined phosphorylation sites in the proteins of various plant species. This collection references phosphorylation sites in proteins.", - "created": "2019-06-11T14:17:34.763+0000", - "modified": "2019-06-11T14:17:34.763+0000", + "prefix": "p3db.site", "resources": [ { - "id": 1424, - "mirId": "MIR:00100643", - "urlPattern": "http://www.p3db.org/phosphosite.php?id={$id}&ref=0", - "name": "P3DB Site at University of Missouri", + "deprecated": false, + "deprecationDate": null, "description": "P3DB Site at University of Missouri", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "65", - "resourceHomeUrl": "http://www.p3db.org/", + "id": 1424, "institution": { - "id": 1421, - "name": "Department of Computer Science, University of Missouri, Columbia, Missouri", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1421, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Computer Science, University of Missouri, Columbia, Missouri", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100643", + "name": "P3DB Site at University of Missouri", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.p3db.org/", + "sampleId": "65", + "urlPattern": "http://www.p3db.org/phosphosite.php?id={$id}&ref=0" } ], - "sampleId": "65", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "65" }, { + "created": "2019-06-11T14:17:35.217+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Topology Data Bank of Transmembrane Proteins (TOPDB) is a collection of transmembrane protein datasets containing experimentally derived topology information. It contains information gathered from the literature and from public databases availableon transmembrane proteins. Each record in TOPDB also contains information on the given protein sequence, name, organism and cross references to various other databases.", "id": 1425, - "prefix": "topdb", "mirId": "MIR:00000503", + "modified": "2019-06-11T14:17:35.217+0000", "name": "TOPDB", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z0-9]+$", - "description": "The Topology Data Bank of Transmembrane Proteins (TOPDB) is a collection of transmembrane protein datasets containing experimentally derived topology information. It contains information gathered from the literature and from public databases availableon transmembrane proteins. Each record in TOPDB also contains information on the given protein sequence, name, organism and cross references to various other databases.", - "created": "2019-06-11T14:17:35.217+0000", - "modified": "2019-06-11T14:17:35.217+0000", + "prefix": "topdb", "resources": [ { - "id": 1427, - "mirId": "MIR:00100644", - "urlPattern": "http://topdb.enzim.hu/?m=show&id={$id}", - "name": "TOPDB at Hungarian Academy of Sciences", + "deprecated": false, + "deprecationDate": null, "description": "TOPDB at Hungarian Academy of Sciences", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "AP00378", - "resourceHomeUrl": "http://topdb.enzim.hu/", + "id": 1427, "institution": { - "id": 1426, - "name": "Institute of Enzymology, Hungarian Academy of Sciences, Budapest", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1426, "location": { "countryCode": "HU", "countryName": "Hungary" - } + }, + "name": "Institute of Enzymology, Hungarian Academy of Sciences, Budapest", + "rorId": null }, "location": { "countryCode": "HU", "countryName": "Hungary" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100644", + "name": "TOPDB at Hungarian Academy of Sciences", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://topdb.enzim.hu/", + "sampleId": "AP00378", + "urlPattern": "http://topdb.enzim.hu/?m=show&id={$id}" } ], - "sampleId": "AP00378", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AP00378" }, { + "created": "2019-06-11T14:17:35.485+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection references cattle QTLs.", "id": 1428, - "prefix": "cattleqtldb", "mirId": "MIR:00000504", + "modified": "2019-06-11T14:17:35.485+0000", "name": "Animal Genome Cattle QTL", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection references cattle QTLs.", - "created": "2019-06-11T14:17:35.485+0000", - "modified": "2019-06-11T14:17:35.485+0000", + "prefix": "cattleqtldb", "resources": [ { - "id": 1430, - "mirId": "MIR:00100645", - "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}", - "name": "Animal QTL Cattle at Iowa State University", + "deprecated": false, + "deprecationDate": null, "description": "Animal QTL Cattle at Iowa State University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "4685", - "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", + "id": 1430, "institution": { - "id": 1429, - "name": "Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University, Iowa", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1429, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University, Iowa", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100645", + "name": "Animal QTL Cattle at Iowa State University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", + "sampleId": "4685", + "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}" } ], - "sampleId": "4685", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "4685" }, { + "created": "2019-06-11T14:17:35.752+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection references chicken QTLs.", "id": 1431, - "prefix": "chickenqtldb", "mirId": "MIR:00000505", + "modified": "2019-06-11T14:17:35.752+0000", "name": "Animal Genome Chicken QTL", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection references chicken QTLs.", - "created": "2019-06-11T14:17:35.752+0000", - "modified": "2019-06-11T14:17:35.752+0000", + "prefix": "chickenqtldb", "resources": [ { - "id": 1432, - "mirId": "MIR:00100646", - "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}", - "name": "Animal QTL Chicken at Iowa State University", + "deprecated": false, + "deprecationDate": null, "description": "Animal QTL Chicken at Iowa State University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "14362", - "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", + "id": 1432, "institution": { - "id": 1429, - "name": "Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University, Iowa", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1429, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University, Iowa", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100646", + "name": "Animal QTL Chicken at Iowa State University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", + "sampleId": "14362", + "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}" } ], - "sampleId": "14362", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "14362" }, { + "created": "2019-06-11T14:17:35.969+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection references pig QTLs.", "id": 1433, - "prefix": "pigqtldb", "mirId": "MIR:00000506", + "modified": "2019-06-11T14:17:35.969+0000", "name": "Animal Genome Pig QTL", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection references pig QTLs.", - "created": "2019-06-11T14:17:35.969+0000", - "modified": "2019-06-11T14:17:35.969+0000", + "prefix": "pigqtldb", "resources": [ { - "id": 1434, - "mirId": "MIR:00100647", - "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}", - "name": "Animal QTL Pig at Iowa State University", + "deprecated": false, + "deprecationDate": null, "description": "Animal QTL Pig at Iowa State University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "14", - "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", + "id": 1434, "institution": { - "id": 1429, - "name": "Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University, Iowa", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1429, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University, Iowa", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100647", + "name": "Animal QTL Pig at Iowa State University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", + "sampleId": "14", + "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}" } ], - "sampleId": "14", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "14" }, { + "created": "2019-06-11T14:17:36.183+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection references sheep QTLs.", "id": 1435, - "prefix": "sheepqtldb", "mirId": "MIR:00000507", + "modified": "2019-06-11T14:17:36.183+0000", "name": "Animal Genome Sheep QTL", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection references sheep QTLs.", - "created": "2019-06-11T14:17:36.183+0000", - "modified": "2019-06-11T14:17:36.183+0000", + "prefix": "sheepqtldb", "resources": [ { - "id": 1436, - "mirId": "MIR:00100648", - "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}", - "name": "Animal QTL Sheep at Iowa State University", + "deprecated": false, + "deprecationDate": null, "description": "Animal QTL Sheep at Iowa State University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "19803", - "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", + "id": 1436, "institution": { - "id": 1429, - "name": "Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University, Iowa", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1429, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University, Iowa", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100648", + "name": "Animal QTL Sheep at Iowa State University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", + "sampleId": "19803", + "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}" } ], - "sampleId": "19803", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "19803" }, { + "created": "2019-06-11T14:17:36.384+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This collection refers to growth stage ontology information in Gramene.", "id": 1437, - "prefix": "gramene.growthstage", "mirId": "MIR:00000508", + "modified": "2019-06-11T14:17:36.384+0000", "name": "Gramene Growth Stage Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^GRO\\:\\d+$", - "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This collection refers to growth stage ontology information in Gramene.", - "created": "2019-06-11T14:17:36.384+0000", - "modified": "2019-06-11T14:17:36.384+0000", + "prefix": "gramene.growthstage", "resources": [ { - "id": 1438, - "mirId": "MIR:00100649", - "urlPattern": "http://www.gramene.org/db/ontology/search?id=GRO:{$id}", - "name": "Gramene Growth Stage Ontology at Cold Spring Harbor", + "deprecated": false, + "deprecationDate": null, "description": "Gramene Growth Stage Ontology at Cold Spring Harbor", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0007133", - "resourceHomeUrl": "http://www.gramene.org/", + "id": 1438, "institution": { - "id": 556, - "name": "Cold Spring Harbor Laboratory, New York", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 556, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Cold Spring Harbor Laboratory, New York", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100649", + "name": "Gramene Growth Stage Ontology at Cold Spring Harbor", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.gramene.org/", + "sampleId": "0007133", + "urlPattern": "http://www.gramene.org/db/ontology/search?id=GRO:{$id}" } ], - "sampleId": "0007133", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0007133" }, { + "created": "2019-06-11T14:17:36.594+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The EBI Metagenomics service is an automated pipeline for the analysis and archiving of metagenomic data that aims to provide insights into the phylogenetic diversity as well as the functional and metabolic potential of a sample. Metagenomics is the study of all genomes present in any given environment without the need for prior individual identification or amplification. This collection references samples.", "id": 1439, - "prefix": "mgnify.samp", "mirId": "MIR:00000510", + "modified": "2019-06-11T14:17:36.594+0000", "name": "MGnify Sample", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z]+[0-9]+$", - "description": "The EBI Metagenomics service is an automated pipeline for the analysis and archiving of metagenomic data that aims to provide insights into the phylogenetic diversity as well as the functional and metabolic potential of a sample. Metagenomics is the study of all genomes present in any given environment without the need for prior individual identification or amplification. This collection references samples.", - "created": "2019-06-11T14:17:36.594+0000", - "modified": "2019-06-11T14:17:36.594+0000", + "prefix": "mgnify.samp", "resources": [ { - "id": 1440, - "mirId": "MIR:00100656", - "urlPattern": "https://www.ebi.ac.uk/metagenomics/samples/{$id}", - "name": "MGnify Sample", + "deprecated": false, + "deprecationDate": null, "description": "MGnify Sample", - "official": false, - "providerCode": "ebi", - "sampleId": "SRS086444", - "resourceHomeUrl": "https://www.ebi.ac.uk/metagenomics", + "id": 1440, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100656", + "name": "MGnify Sample", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/metagenomics", + "sampleId": "SRS086444", + "urlPattern": "https://www.ebi.ac.uk/metagenomics/samples/{$id}" } ], - "sampleId": "SRS086444", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "SRS086444" }, { + "created": "2019-06-11T14:17:36.823+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The EGA is a service for permanent archiving and sharing of all types of personally identifiable genetic and phenotypic data resulting from biomedical research projects. The EGA contains exclusive data collected from individuals whose consent agreements authorize data release only for specific research use or to bona fide researchers. Strict protocols govern how information is managed, stored and distributed by the EGA project. This collection references 'Studies' which are experimental investigations of a particular phenomenon, often drawn from different datasets.", "id": 1441, - "prefix": "ega.study", "mirId": "MIR:00000511", + "modified": "2019-06-11T14:17:36.823+0000", "name": "European Genome-phenome Archive Study", + "namespaceEmbeddedInLui": false, "pattern": "^EGAS\\d{11}$", - "description": "The EGA is a service for permanent archiving and sharing of all types of personally identifiable genetic and phenotypic data resulting from biomedical research projects. The EGA contains exclusive data collected from individuals whose consent agreements authorize data release only for specific research use or to bona fide researchers. Strict protocols govern how information is managed, stored and distributed by the EGA project. This collection references 'Studies' which are experimental investigations of a particular phenomenon, often drawn from different datasets.", - "created": "2019-06-11T14:17:36.823+0000", - "modified": "2019-06-11T14:17:36.823+0000", + "prefix": "ega.study", "resources": [ { - "id": 1442, - "mirId": "MIR:00100657", - "urlPattern": "https://www.ebi.ac.uk/ega/studies/{$id}", - "name": "EGA Study at European Bioinformatics Institute", + "deprecated": false, + "deprecationDate": null, "description": "EGA Study at European Bioinformatics Institute", - "official": true, - "providerCode": "ebi", - "sampleId": "EGAS00000000001", - "resourceHomeUrl": "https://www.ebi.ac.uk/ega/studies", + "id": 1442, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100657", + "name": "EGA Study at European Bioinformatics Institute", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/ega/studies", + "sampleId": "EGAS00000000001", + "urlPattern": "https://www.ebi.ac.uk/ega/studies/{$id}" }, { - "id": 1443, - "mirId": "MIR:00100851", - "urlPattern": "https://www.omicsdi.org/dataset/ega/{$id}", - "name": "EGA Study through OmicsDI", + "deprecated": false, + "deprecationDate": null, "description": "EGA Study through OmicsDI", - "official": false, - "providerCode": "omicsdi", - "sampleId": "EGAS00000000001", - "resourceHomeUrl": "https://www.omicsdi.org/", + "id": 1443, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100851", + "name": "EGA Study through OmicsDI", + "official": false, + "providerCode": "omicsdi", + "resourceHomeUrl": "https://www.omicsdi.org/", + "sampleId": "EGAS00000000001", + "urlPattern": "https://www.omicsdi.org/dataset/ega/{$id}" } ], - "sampleId": "EGAS00000000001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "EGAS00000000001" }, { + "created": "2019-06-11T14:17:37.233+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The EGA is a service for permanent archiving and sharing of all types of personally identifiable genetic and phenotypic data resulting from biomedical research projects. The EGA contains exclusive data collected from individuals whose consent agreements authorize data release only for specific research use or to bona fide researchers. Strict protocols govern how information is managed, stored and distributed by the EGA project. This collection references 'Datasets'.", "id": 1444, - "prefix": "ega.dataset", "mirId": "MIR:00000512", + "modified": "2019-06-11T14:17:37.233+0000", "name": "European Genome-phenome Archive Dataset", + "namespaceEmbeddedInLui": false, "pattern": "^EGAD\\d{11}$", - "description": "The EGA is a service for permanent archiving and sharing of all types of personally identifiable genetic and phenotypic data resulting from biomedical research projects. The EGA contains exclusive data collected from individuals whose consent agreements authorize data release only for specific research use or to bona fide researchers. Strict protocols govern how information is managed, stored and distributed by the EGA project. This collection references 'Datasets'.", - "created": "2019-06-11T14:17:37.233+0000", - "modified": "2019-06-11T14:17:37.233+0000", + "prefix": "ega.dataset", "resources": [ { - "id": 1445, - "mirId": "MIR:00100658", - "urlPattern": "https://www.ebi.ac.uk/ega/datasets/{$id}", - "name": "EGA Dataset at European Bioinformatics Institute", + "deprecated": false, + "deprecationDate": null, "description": "EGA Dataset at European Bioinformatics Institute", - "official": true, - "providerCode": "ebi", - "sampleId": "EGAD00000000001", - "resourceHomeUrl": "https://www.ebi.ac.uk/ega/dataset", + "id": 1445, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100658", + "name": "EGA Dataset at European Bioinformatics Institute", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/ega/dataset", + "sampleId": "EGAD00000000001", + "urlPattern": "https://www.ebi.ac.uk/ega/datasets/{$id}" }, { - "id": 1446, - "mirId": "MIR:00100852", - "urlPattern": "https://www.omicsdi.org/dataset/ega/{$id}", - "name": "EGA Dataset through OmicsDI", + "deprecated": false, + "deprecationDate": null, "description": "EGA Dataset through OmicsDI", - "official": false, - "providerCode": "omicsdi", - "sampleId": "EGAD00000000001", - "resourceHomeUrl": "https://www.omicsdi.org/", + "id": 1446, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100852", + "name": "EGA Dataset through OmicsDI", + "official": false, + "providerCode": "omicsdi", + "resourceHomeUrl": "https://www.omicsdi.org/", + "sampleId": "EGAD00000000001", + "urlPattern": "https://www.omicsdi.org/dataset/ega/{$id}" } ], - "sampleId": "EGAD00000000001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "EGAD00000000001" }, { + "created": "2019-06-11T14:17:38.030+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PRIDE PRoteomics IDEntifications database is a centralized, standards compliant, public data repository that provides protein and peptide identifications together with supporting evidence. This collection references projects.", "id": 1453, - "prefix": "pride.project", "mirId": "MIR:00000515", + "modified": "2019-06-11T14:17:38.030+0000", "name": "PRIDE Project", + "namespaceEmbeddedInLui": false, "pattern": "^P(X|R)D\\d{6}$", - "description": "The PRIDE PRoteomics IDEntifications database is a centralized, standards compliant, public data repository that provides protein and peptide identifications together with supporting evidence. This collection references projects.", - "created": "2019-06-11T14:17:38.030+0000", - "modified": "2019-06-11T14:17:38.030+0000", + "prefix": "pride.project", "resources": [ { - "id": 1454, - "mirId": "MIR:00100662", - "urlPattern": "https://www.ebi.ac.uk/pride/archive/projects/{$id}", - "name": "PRIDE Project at EBI", + "deprecated": false, + "deprecationDate": null, "description": "PRIDE Project at EBI", - "official": true, - "providerCode": "ebi", - "sampleId": "PXD000440", - "resourceHomeUrl": "https://www.ebi.ac.uk/pride/", + "id": 1454, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100662", + "name": "PRIDE Project at EBI", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/pride/", + "sampleId": "PXD000440", + "urlPattern": "https://www.ebi.ac.uk/pride/archive/projects/{$id}" }, { - "id": 1455, - "mirId": "MIR:00100858", - "urlPattern": "https://www.omicsdi.org/dataset/pride/{$id}", - "name": "PRIDE Project through OmicsDI", + "deprecated": false, + "deprecationDate": null, "description": "PRIDE Project through OmicsDI", - "official": false, - "providerCode": "omicsdi", - "sampleId": "PXD000440", - "resourceHomeUrl": "https://www.omicsdi.org/", + "id": 1455, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100858", + "name": "PRIDE Project through OmicsDI", + "official": false, + "providerCode": "omicsdi", + "resourceHomeUrl": "https://www.omicsdi.org/", + "sampleId": "PXD000440", + "urlPattern": "https://www.omicsdi.org/dataset/pride/{$id}" } ], - "sampleId": "PXD000440", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PXD000440" }, { + "created": "2019-06-11T14:17:38.379+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Antibody Registry provides identifiers for antibodies used in publications. It lists commercial antibodies from numerous vendors, each assigned with a unique identifier. Unlisted antibodies can be submitted by providing the catalog number and vendor information.", "id": 1456, - "prefix": "antibodyregistry", "mirId": "MIR:00000516", + "modified": "2019-06-11T14:17:38.379+0000", "name": "Antibody Registry", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{6}$", - "description": "The Antibody Registry provides identifiers for antibodies used in publications. It lists commercial antibodies from numerous vendors, each assigned with a unique identifier. Unlisted antibodies can be submitted by providing the catalog number and vendor information.", - "created": "2019-06-11T14:17:38.379+0000", - "modified": "2019-06-11T14:17:38.379+0000", + "prefix": "antibodyregistry", "resources": [ { - "id": 1458, - "mirId": "MIR:00100664", - "urlPattern": "http://antibodyregistry.org/AB_{$id}", - "name": "Antibody Registry at University of California", - "description": "Antibody Registry at University of California", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "493771", - "resourceHomeUrl": "http://antibodyregistry.org/", + "deprecated": false, + "deprecationDate": null, + "description": "Antibody Registry at University of California", + "id": 1458, "institution": { - "id": 1457, - "name": "Neuroscience Information Framework, University of California, San Diego, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1457, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Neuroscience Information Framework, University of California, San Diego, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100664", + "name": "Antibody Registry at University of California", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://antibodyregistry.org/", + "sampleId": "493771", + "urlPattern": "http://antibodyregistry.org/AB_{$id}" } ], - "sampleId": "493771", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "493771" }, { + "created": "2019-06-11T14:17:38.625+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Mathematical Modelling Ontology (MAMO) is a classification of the types of mathematical models used mostly in the life sciences, their variables, relationships and other relevant features.", "id": 1459, - "prefix": "mamo", "mirId": "MIR:00000517", + "modified": "2019-06-11T14:17:38.625+0000", "name": "Mathematical Modelling Ontology", + "namespaceEmbeddedInLui": false, "pattern": "^MAMO_\\d{7}$", - "description": "The Mathematical Modelling Ontology (MAMO) is a classification of the types of mathematical models used mostly in the life sciences, their variables, relationships and other relevant features.", - "created": "2019-06-11T14:17:38.625+0000", - "modified": "2019-06-11T14:17:38.625+0000", + "prefix": "mamo", "resources": [ { - "id": 1460, - "mirId": "MIR:00100665", - "urlPattern": "http://bioportal.bioontology.org/ontologies/MAMO/?p=classes&conceptid=http://identifiers.org/mamo/{$id}", - "name": "MAMO through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "MAMO through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "MAMO_0000026", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/MAMO", + "id": 1460, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100665", + "name": "MAMO through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/MAMO", + "sampleId": "MAMO_0000026", + "urlPattern": "http://bioportal.bioontology.org/ontologies/MAMO/?p=classes&conceptid=http://identifiers.org/mamo/{$id}" }, { - "id": 1461, - "mirId": "MIR:00100758", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/mamo/terms?short_form={$id}", - "name": "MaMO through OLS", + "deprecated": false, + "deprecationDate": null, "description": "MaMO through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "MAMO_0000026", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/mamo", + "id": 1461, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100758", + "name": "MaMO through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/mamo", + "sampleId": "MAMO_0000026", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/mamo/terms?short_form={$id}" } ], - "sampleId": "MAMO_0000026", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MAMO_0000026" }, { + "created": "2019-06-11T14:17:38.985+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Plant Environment Ontology is a set of standardized controlled vocabularies to describe various types of treatments given to an individual plant / a population or a cultured tissue and/or cell type sample to evaluate the response on its exposure. It also includes the study types, where the terms can be used to identify the growth study facility. Each growth facility such as field study, growth chamber, green house etc is a environment on its own it may also involve instances of biotic and abiotic environments as supplemental treatments used in these studies.", "id": 1462, - "prefix": "eo", "mirId": "MIR:00000518", + "modified": "2019-06-11T14:17:38.985+0000", "name": "Plant Environment Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^(P)?EO\\:\\d{7}$", - "description": "The Plant Environment Ontology is a set of standardized controlled vocabularies to describe various types of treatments given to an individual plant / a population or a cultured tissue and/or cell type sample to evaluate the response on its exposure. It also includes the study types, where the terms can be used to identify the growth study facility. Each growth facility such as field study, growth chamber, green house etc is a environment on its own it may also involve instances of biotic and abiotic environments as supplemental treatments used in these studies.", - "created": "2019-06-11T14:17:38.985+0000", - "modified": "2019-06-11T14:17:38.985+0000", + "prefix": "eo", "resources": [ { - "id": 1463, - "mirId": "MIR:00100667", - "urlPattern": "http://archive.gramene.org/db/ontology/search?query=EO:{$id}", - "name": "Plant Environment Ontology through Gramene", + "deprecated": false, + "deprecationDate": null, "description": "Plant Environment Ontology through Gramene", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0007404", - "resourceHomeUrl": "http://archive.gramene.org/db/ontology/search_term?id=EO:0007359", + "id": 1463, "institution": { - "id": 556, - "name": "Cold Spring Harbor Laboratory, New York", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 556, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Cold Spring Harbor Laboratory, New York", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100667", + "name": "Plant Environment Ontology through Gramene", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://archive.gramene.org/db/ontology/search_term?id=EO:0007359", + "sampleId": "0007404", + "urlPattern": "http://archive.gramene.org/db/ontology/search?query=EO:{$id}" }, { - "id": 1464, - "mirId": "MIR:00100668", - "urlPattern": "http://purl.bioontology.org/ontology/PECO/EO:{$id}", - "name": "Plant Environment Ontology through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "Plant Environment Ontology through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "0007404", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PECO", + "id": 1464, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100668", + "name": "Plant Environment Ontology through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PECO", + "sampleId": "0007404", + "urlPattern": "http://purl.bioontology.org/ontology/PECO/EO:{$id}" }, { - "id": 1465, - "mirId": "MIR:00100669", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/eo/terms?obo_id=EO:{$id}", - "name": "Plant Environment Ontology through OLS", + "deprecated": false, + "deprecationDate": null, "description": "Plant Environment Ontology through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0007404", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/eo", + "id": 1465, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100669", + "name": "Plant Environment Ontology through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/eo", + "sampleId": "0007404", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/eo/terms?obo_id=EO:{$id}" } ], - "sampleId": "0007404", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0007404" }, { + "created": "2019-06-11T14:17:39.487+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Identifiers.org Terms (idot) is an RDF vocabulary providing useful terms for describing datasets.", "id": 1466, - "prefix": "idot", "mirId": "MIR:00000519", + "modified": "2019-06-11T14:17:39.487+0000", "name": "Identifiers.org Terms", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z]+$", - "description": "Identifiers.org Terms (idot) is an RDF vocabulary providing useful terms for describing datasets.", - "created": "2019-06-11T14:17:39.487+0000", - "modified": "2019-06-11T14:17:39.487+0000", + "prefix": "idot", "resources": [ { - "id": 1467, - "mirId": "MIR:00100670", - "urlPattern": "https://biomodels.net/vocab/idot.rdf#{$id}", - "name": "IdoT via biomodels.net", + "deprecated": false, + "deprecationDate": null, "description": "IdoT via biomodels.net", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "identifierPattern", - "resourceHomeUrl": "https://identifiers.org/", + "id": 1467, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100670", + "name": "IdoT via biomodels.net", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://identifiers.org/", + "sampleId": "identifierPattern", + "urlPattern": "https://biomodels.net/vocab/idot.rdf#{$id}" } ], - "sampleId": "identifierPattern", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "identifierPattern" }, { + "created": "2019-06-11T14:17:39.906+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The YEast Intron Database (version 4.3) contains information on the spliceosomal introns of the yeast Saccharomyces cerevisiae. It includes expression data that relates to the efficiency of splicing relative to other processes in strains of yeast lacking nonessential splicing factors. The data are displayed on each intron page. This is an updated version of the previous dataset, which can be accessed through [MIR:00000460].", "id": 1470, - "prefix": "yeastintron", "mirId": "MIR:00000521", + "modified": "2019-06-11T14:17:39.906+0000", "name": "Yeast Intron Database v4.3", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z0-9]+$", - "description": "The YEast Intron Database (version 4.3) contains information on the spliceosomal introns of the yeast Saccharomyces cerevisiae. It includes expression data that relates to the efficiency of splicing relative to other processes in strains of yeast lacking nonessential splicing factors. The data are displayed on each intron page. This is an updated version of the previous dataset, which can be accessed through [MIR:00000460].", - "created": "2019-06-11T14:17:39.906+0000", - "modified": "2019-06-11T14:17:39.906+0000", + "prefix": "yeastintron", "resources": [ { - "id": 1471, - "mirId": "MIR:00100673", - "urlPattern": "http://intron.ucsc.edu/cgi-bin/yeast4.3/intronreports.pl?outputformat=full&orfName={$id}", - "name": "Yeast Intron Database version 4.3 at Baskin School of Engineering", + "deprecated": false, + "deprecationDate": null, "description": "Yeast Intron Database version 4.3 at Baskin School of Engineering", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "SNR17A", - "resourceHomeUrl": "http://intron.ucsc.edu/yeast4.3/", + "id": 1471, "institution": { - "id": 1319, - "name": "University of California, Santa Cruz", - "homeUrl": "https://www.ucsc.edu", "description": "UC Santa Cruz opened in 1965 with 650 students. During the 2018-2019 academic year, 16,983 undergraduate and 1,822 graduate students were enrolled.\n", - "rorId": "https://ror.org/03s65by71", + "homeUrl": "https://www.ucsc.edu", + "id": 1319, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of California, Santa Cruz", + "rorId": "https://ror.org/03s65by71" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100673", + "name": "Yeast Intron Database version 4.3 at Baskin School of Engineering", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://intron.ucsc.edu/yeast4.3/", + "sampleId": "SNR17A", + "urlPattern": "http://intron.ucsc.edu/cgi-bin/yeast4.3/intronreports.pl?outputformat=full&orfName={$id}" } ], - "sampleId": "SNR17A", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "SNR17A" }, { + "created": "2019-06-11T14:17:40.104+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Antibiotic Resistance Genes Database (ARDB) is a manually curated database which characterises genes involved in antibiotic resistance. Each gene and resistance type is annotated with information, including resistance profile, mechanism of action, ontology, COG and CDD annotations, as well as external links to sequence and protein databases. This collection references resistance genes.", "id": 1472, - "prefix": "ardb", "mirId": "MIR:00000522", + "modified": "2019-06-11T14:17:40.104+0000", "name": "Antibiotic Resistance Genes Database", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z_]{3}[0-9]{4,}$", - "description": "The Antibiotic Resistance Genes Database (ARDB) is a manually curated database which characterises genes involved in antibiotic resistance. Each gene and resistance type is annotated with information, including resistance profile, mechanism of action, ontology, COG and CDD annotations, as well as external links to sequence and protein databases. This collection references resistance genes.", - "created": "2019-06-11T14:17:40.104+0000", - "modified": "2019-06-11T14:17:40.104+0000", + "prefix": "ardb", "resources": [ { - "id": 1474, - "mirId": "MIR:00100678", - "urlPattern": "http://ardb.cbcb.umd.edu/cgi/search.cgi?db=L&field=ni&term={$id}", - "name": "ARDB at University of Maryland", + "deprecated": false, + "deprecationDate": null, "description": "ARDB at University of Maryland", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "CAE46076", - "resourceHomeUrl": "http://ardb.cbcb.umd.edu/", + "id": 1474, "institution": { - "id": 1473, - "name": "Center for Bioinformatics and Computational Biology, University of Maryland, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1473, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Center for Bioinformatics and Computational Biology, University of Maryland, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100678", + "name": "ARDB at University of Maryland", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://ardb.cbcb.umd.edu/", + "sampleId": "CAE46076", + "urlPattern": "http://ardb.cbcb.umd.edu/cgi/search.cgi?db=L&field=ni&term={$id}" } ], - "sampleId": "CAE46076", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CAE46076" }, { + "created": "2019-06-11T14:17:40.344+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ProteomicsDB is an effort dedicated to expedite the identification of the human proteome and its use across the scientific community. This human proteome data is assembled primarily using information from liquid chromatography tandem-mass-spectrometry (LC-MS/MS) experiments involving human tissues, cell lines and body fluids. Information is accessible for individual proteins, or on the basis of protein coverage on the encoding chromosome, and for peptide components of a protein. This collection provides access to individual proteins.", "id": 1475, - "prefix": "proteomicsdb.protein", "mirId": "MIR:00000524", - "name": "ProteomicsDB Protein", - "pattern": "^\\d+$", - "description": "ProteomicsDB is an effort dedicated to expedite the identification of the human proteome and its use across the scientific community. This human proteome data is assembled primarily using information from liquid chromatography tandem-mass-spectrometry (LC-MS/MS) experiments involving human tissues, cell lines and body fluids. Information is accessible for individual proteins, or on the basis of protein coverage on the encoding chromosome, and for peptide components of a protein. This collection provides access to individual proteins.", - "created": "2019-06-11T14:17:40.344+0000", "modified": "2019-06-11T14:17:40.344+0000", + "name": "ProteomicsDB Protein", + "namespaceEmbeddedInLui": false, + "pattern": "^\\d+$", + "prefix": "proteomicsdb.protein", "resources": [ { - "id": 1477, - "mirId": "MIR:00100680", - "urlPattern": "https://www.proteomicsdb.org/#human/proteinDetails/{$id}/summary", - "name": "Proteomics DB Protein at Center for Integrated Protein Science", + "deprecated": false, + "deprecationDate": null, "description": "Proteomics DB Protein at Center for Integrated Protein Science", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "53504", - "resourceHomeUrl": "https://www.proteomicsdb.org/#human", + "id": 1477, "institution": { - "id": 1476, - "name": "Center for Integrated Protein Science, Munich,", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1476, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Center for Integrated Protein Science, Munich,", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100680", + "name": "Proteomics DB Protein at Center for Integrated Protein Science", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.proteomicsdb.org/#human", + "sampleId": "53504", + "urlPattern": "https://www.proteomicsdb.org/#human/proteinDetails/{$id}/summary" } ], - "sampleId": "53504", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "53504" }, { + "created": "2019-06-11T14:17:40.583+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ProteomicsDB is an effort dedicated to expedite the identification of the human proteome and its use across the scientific community. This human proteome data is assembled primarily using information from liquid chromatography tandem-mass-spectrometry (LC-MS/MS) experiments involving human tissues, cell lines and body fluids. Information is accessible for individual proteins, or on the basis of protein coverage on the encoding chromosome, and for peptide components of a protein. This collection provides access to the peptides identified for a given protein.", "id": 1478, - "prefix": "proteomicsdb.peptide", "mirId": "MIR:00000525", + "modified": "2019-06-11T14:17:40.583+0000", "name": "ProteomicsDB Peptide", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "ProteomicsDB is an effort dedicated to expedite the identification of the human proteome and its use across the scientific community. This human proteome data is assembled primarily using information from liquid chromatography tandem-mass-spectrometry (LC-MS/MS) experiments involving human tissues, cell lines and body fluids. Information is accessible for individual proteins, or on the basis of protein coverage on the encoding chromosome, and for peptide components of a protein. This collection provides access to the peptides identified for a given protein.", - "created": "2019-06-11T14:17:40.583+0000", - "modified": "2019-06-11T14:17:40.583+0000", + "prefix": "proteomicsdb.peptide", "resources": [ { - "id": 1480, - "mirId": "MIR:00100681", - "urlPattern": "https://www.proteomicsdb.org/#human/proteinDetails/{$id}/peptides/", - "name": "Proteomics DB Peptide at Center for Integrated Protein Science", + "deprecated": false, + "deprecationDate": null, "description": "Proteomics DB Peptide at Center for Integrated Protein Science", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "53504", - "resourceHomeUrl": "https://www.proteomicsdb.org/#peptideSearch", + "id": 1480, "institution": { - "id": 1479, - "name": "Center for Integrated Protein Science, Munich", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1479, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Center for Integrated Protein Science, Munich", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100681", + "name": "Proteomics DB Peptide at Center for Integrated Protein Science", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.proteomicsdb.org/#peptideSearch", + "sampleId": "53504", + "urlPattern": "https://www.proteomicsdb.org/#human/proteinDetails/{$id}/peptides/" } ], - "sampleId": "53504", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "53504" }, { + "created": "2019-06-11T14:17:40.825+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Human Proteome Map (HPM) portal integrates the peptide sequencing result from the draft map of the human proteome project. The project was based on LC-MS/MS by utilizing of high resolution and high accuracy Fourier transform mass spectrometry. The HPM contains direct evidence of translation of a number of protein products derived from human genes, based on peptide identifications of multiple organs/tissues and cell types from individuals with clinically defined healthy tissues. The HPM portal provides data on individual proteins, as well as on individual peptide spectra. This collection references proteins.", "id": 1481, - "prefix": "hpm.protein", "mirId": "MIR:00000526", + "modified": "2019-06-11T14:17:40.825+0000", "name": "Human Proteome Map Protein", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Human Proteome Map (HPM) portal integrates the peptide sequencing result from the draft map of the human proteome project. The project was based on LC-MS/MS by utilizing of high resolution and high accuracy Fourier transform mass spectrometry. The HPM contains direct evidence of translation of a number of protein products derived from human genes, based on peptide identifications of multiple organs/tissues and cell types from individuals with clinically defined healthy tissues. The HPM portal provides data on individual proteins, as well as on individual peptide spectra. This collection references proteins.", - "created": "2019-06-11T14:17:40.825+0000", - "modified": "2019-06-11T14:17:40.825+0000", + "prefix": "hpm.protein", "resources": [ { - "id": 1482, - "mirId": "MIR:00100682", - "urlPattern": "http://www.humanproteomemap.org/protein.php?hpm_id={$id}", - "name": "Human Proteome Map Protein at Institute of Bioinformatics (Bangalore)", + "deprecated": false, + "deprecationDate": null, "description": "Human Proteome Map Protein at Institute of Bioinformatics (Bangalore)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1968", - "resourceHomeUrl": "http://www.humanproteomemap.org/index.php", + "id": 1482, "institution": { - "id": 1087, - "name": "Institute of Bioinformatics, International Tech Park, Bangalore", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1087, "location": { "countryCode": "IN", "countryName": "India" - } + }, + "name": "Institute of Bioinformatics, International Tech Park, Bangalore", + "rorId": null }, "location": { "countryCode": "IN", "countryName": "India" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100682", + "name": "Human Proteome Map Protein at Institute of Bioinformatics (Bangalore)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.humanproteomemap.org/index.php", + "sampleId": "1968", + "urlPattern": "http://www.humanproteomemap.org/protein.php?hpm_id={$id}" } ], - "sampleId": "1968", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1968" }, { + "created": "2019-06-11T14:17:41.032+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Human Proteome Map (HPM) portal integrates the peptide sequencing result from the draft map of the human proteome project. The project was based on LC-MS/MS by utilizing of high resolution and high accuracy Fourier transform mass spectrometry. The HPM contains direct evidence of translation of a number of protein products derived from human genes, based on peptide identifications of multiple organs/tissues and cell types from individuals with clinically defined healthy tissues. The HPM portal provides data on individual proteins, as well as on individual peptide spectra. This collection references individual peptides through spectra.", "id": 1483, - "prefix": "hpm.peptide", "mirId": "MIR:00000527", + "modified": "2019-06-11T14:17:41.032+0000", "name": "Human Proteome Map Peptide", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Human Proteome Map (HPM) portal integrates the peptide sequencing result from the draft map of the human proteome project. The project was based on LC-MS/MS by utilizing of high resolution and high accuracy Fourier transform mass spectrometry. The HPM contains direct evidence of translation of a number of protein products derived from human genes, based on peptide identifications of multiple organs/tissues and cell types from individuals with clinically defined healthy tissues. The HPM portal provides data on individual proteins, as well as on individual peptide spectra. This collection references individual peptides through spectra.", - "created": "2019-06-11T14:17:41.032+0000", - "modified": "2019-06-11T14:17:41.032+0000", + "prefix": "hpm.peptide", "resources": [ { - "id": 1484, - "mirId": "MIR:00100683", - "urlPattern": "http://www.humanproteomemap.org/spectrum.php?pep_id={$id}", - "name": "Human Proteome Map Peptide at Institute of Bioinformatics (Bangalore)", + "deprecated": false, + "deprecationDate": null, "description": "Human Proteome Map Peptide at Institute of Bioinformatics (Bangalore)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "9606117", - "resourceHomeUrl": "http://www.humanproteomemap.org/index.php", + "id": 1484, "institution": { - "id": 1087, - "name": "Institute of Bioinformatics, International Tech Park, Bangalore", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1087, "location": { "countryCode": "IN", "countryName": "India" - } + }, + "name": "Institute of Bioinformatics, International Tech Park, Bangalore", + "rorId": null }, "location": { "countryCode": "IN", "countryName": "India" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100683", + "name": "Human Proteome Map Peptide at Institute of Bioinformatics (Bangalore)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.humanproteomemap.org/index.php", + "sampleId": "9606117", + "urlPattern": "http://www.humanproteomemap.org/spectrum.php?pep_id={$id}" } ], - "sampleId": "9606117", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "9606117" }, { + "created": "2019-06-11T14:17:41.273+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The DrugBank database is a bioinformatics and chemoinformatics resource that combines detailed drug (i.e. chemical, pharmacological and pharmaceutical) data with comprehensive drug target (i.e. sequence, structure, and pathway) information. This collection references target information from version 4 of the database.", "id": 1485, - "prefix": "drugbankv4.target", "mirId": "MIR:00000528", + "modified": "2019-06-11T14:17:41.273+0000", "name": "DrugBank Target v4", + "namespaceEmbeddedInLui": false, "pattern": "^BE\\d{7}$", - "description": "The DrugBank database is a bioinformatics and chemoinformatics resource that combines detailed drug (i.e. chemical, pharmacological and pharmaceutical) data with comprehensive drug target (i.e. sequence, structure, and pathway) information. This collection references target information from version 4 of the database.", - "created": "2019-06-11T14:17:41.273+0000", - "modified": "2019-06-11T14:17:41.273+0000", + "prefix": "drugbankv4.target", "resources": [ { - "id": 1487, - "mirId": "MIR:00100687", - "urlPattern": "http://www.drugbank.ca/biodb/bio_entities/{$id}", - "name": "DrugBank Target information version 4", + "deprecated": false, + "deprecationDate": null, "description": "DrugBank Target information version 4", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "BE0000048", - "resourceHomeUrl": "http://www.drugbank.ca/targets", + "id": 1487, "institution": { - "id": 1486, - "name": "Departments of Computing Science, Biological Sciences, University of Alberta", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1486, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "Departments of Computing Science, Biological Sciences, University of Alberta", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100687", + "name": "DrugBank Target information version 4", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.drugbank.ca/targets", + "sampleId": "BE0000048", + "urlPattern": "http://www.drugbank.ca/biodb/bio_entities/{$id}" } ], - "sampleId": "BE0000048", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "BE0000048" }, { + "created": "2019-06-11T14:17:41.559+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ZINC is a free public resource for ligand discovery. The database contains over twenty million commercially available molecules in biologically relevant representations that may be downloaded in popular ready-to-dock formats and subsets. The Web site enables searches by structure, biological activity, physical property, vendor, catalog number, name, and CAS number.", "id": 1488, - "prefix": "zinc", "mirId": "MIR:00000529", + "modified": "2019-06-11T14:17:41.559+0000", "name": "ZINC", + "namespaceEmbeddedInLui": false, "pattern": "^(ZINC)?\\d+$", - "description": "ZINC is a free public resource for ligand discovery. The database contains over twenty million commercially available molecules in biologically relevant representations that may be downloaded in popular ready-to-dock formats and subsets. The Web site enables searches by structure, biological activity, physical property, vendor, catalog number, name, and CAS number.", - "created": "2019-06-11T14:17:41.559+0000", - "modified": "2019-06-11T14:17:41.559+0000", + "prefix": "zinc", "resources": [ { - "id": 1490, - "mirId": "MIR:00100688", - "urlPattern": "http://zinc15.docking.org/substances/{$id}", - "name": "ZINC at University of California (San Francisco)", + "deprecated": false, + "deprecationDate": null, "description": "ZINC at University of California (San Francisco)", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ZINC1084", - "resourceHomeUrl": "http://zinc15.docking.org/", + "id": 1490, "institution": { - "id": 1489, - "name": "Shoichet Laboratory, Department of Pharmaceutical Chemistry, University of California, San Francisco", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1489, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Shoichet Laboratory, Department of Pharmaceutical Chemistry, University of California, San Francisco", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100688", + "name": "ZINC at University of California (San Francisco)", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://zinc15.docking.org/", + "sampleId": "ZINC1084", + "urlPattern": "http://zinc15.docking.org/substances/{$id}" } ], - "sampleId": "ZINC1084", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ZINC1084" }, { + "created": "2019-06-11T14:17:41.796+0000", + "deprecated": false, + "deprecationDate": null, + "description": "FooDB is resource on food and its constituent compounds. It includes data on the compound\u2019s nomenclature, its description, information on its structure, chemical class, its physico-chemical data, its food source(s), its color, its aroma, its taste, its physiological effect, presumptive health effects (from published studies), and concentrations in various foods. This collection references compounds.", "id": 1491, - "prefix": "foodb.compound", "mirId": "MIR:00000530", + "modified": "2019-06-11T14:17:41.796+0000", "name": "FooDB Compound", + "namespaceEmbeddedInLui": false, "pattern": "^FDB\\d+$", - "description": "FooDB is resource on food and its constituent compounds. It includes data on the compound’s nomenclature, its description, information on its structure, chemical class, its physico-chemical data, its food source(s), its color, its aroma, its taste, its physiological effect, presumptive health effects (from published studies), and concentrations in various foods. This collection references compounds.", - "created": "2019-06-11T14:17:41.796+0000", - "modified": "2019-06-11T14:17:41.796+0000", + "prefix": "foodb.compound", "resources": [ { - "id": 1492, - "mirId": "MIR:00100689", - "urlPattern": "http://foodb.ca/compounds/{$id}", - "name": "FooDB database of food additives at University of Alberta", + "deprecated": false, + "deprecationDate": null, "description": "FooDB database of food additives at University of Alberta", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "FDB002100", - "resourceHomeUrl": "http://foodb.ca/foods", + "id": 1492, "institution": { - "id": 334, - "name": "University of Alberta", - "homeUrl": "https://www.ualberta.ca", "description": "The University of Alberta in Edmonton is one of Canada's top teaching and research universities, with an international reputation for excellence across the humanities, sciences, creative arts, business, engineering and health sciences.", - "rorId": "https://ror.org/0160cpw27", + "homeUrl": "https://www.ualberta.ca", + "id": 334, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "University of Alberta", + "rorId": "https://ror.org/0160cpw27" }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100689", + "name": "FooDB database of food additives at University of Alberta", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://foodb.ca/foods", + "sampleId": "FDB002100", + "urlPattern": "http://foodb.ca/compounds/{$id}" } ], - "sampleId": "FDB002100", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "FDB002100" }, { + "created": "2019-06-11T14:17:41.988+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The purpose of the joint FDA/USP Substance Registration System (SRS) is to support health information technology initiatives by generating unique ingredient identifiers (UNIIs) for substances in drugs, biologics, foods, and devices. The UNII is a non- proprietary, free, unique, unambiguous, non semantic, alphanumeric identifier based on a substance\u2019s molecular structure and/or descriptive information.", "id": 1493, - "prefix": "unii", "mirId": "MIR:00000531", + "modified": "2019-06-11T14:17:41.988+0000", "name": "UNII", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z0-9]+$", - "description": "The purpose of the joint FDA/USP Substance Registration System (SRS) is to support health information technology initiatives by generating unique ingredient identifiers (UNIIs) for substances in drugs, biologics, foods, and devices. The UNII is a non- proprietary, free, unique, unambiguous, non semantic, alphanumeric identifier based on a substance’s molecular structure and/or descriptive information.", - "created": "2019-06-11T14:17:41.988+0000", - "modified": "2019-06-11T14:17:41.988+0000", + "prefix": "unii", "resources": [ { - "id": 1494, - "mirId": "MIR:00100690", - "urlPattern": "http://fdasis.nlm.nih.gov/srs/srsdirect.jsp?regno={$id}", - "name": "UNII at U.S. Food and Drug Administration", + "deprecated": false, + "deprecationDate": null, "description": "UNII at U.S. Food and Drug Administration", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "3G6A5W338E", - "resourceHomeUrl": "http://fdasis.nlm.nih.gov/srs/", + "id": 1494, "institution": { - "id": 1238, - "name": "U.S. Food and Drug Administration, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1238, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "U.S. Food and Drug Administration, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100690", + "name": "UNII at U.S. Food and Drug Administration", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://fdasis.nlm.nih.gov/srs/", + "sampleId": "3G6A5W338E", + "urlPattern": "http://fdasis.nlm.nih.gov/srs/srsdirect.jsp?regno={$id}" } ], - "sampleId": "3G6A5W338E", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "3G6A5W338E" }, { + "created": "2019-06-11T14:17:42.194+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Orphanet Rare Disease ontology (ORDO) is a structured vocabulary for rare diseases, capturing relationships between diseases, genes and other relevant features which will form a useful resource for the computational analysis of rare diseases.\r\nIt integrates a nosology (classification of rare diseases), relationships (gene-disease relations, epiemological data) and connections with other terminologies (MeSH, UMLS, MedDRA), databases (OMIM, UniProtKB, HGNC, ensembl, Reactome, IUPHAR, Geantlas) and classifications (ICD10).", "id": 1495, - "prefix": "orphanet.ordo", "mirId": "MIR:00000532", + "modified": "2019-06-11T14:17:42.194+0000", "name": "Orphanet Rare Disease Ontology", + "namespaceEmbeddedInLui": false, "pattern": "^Orphanet(_|:)C?\\d+$", - "description": "The Orphanet Rare Disease ontology (ORDO) is a structured vocabulary for rare diseases, capturing relationships between diseases, genes and other relevant features which will form a useful resource for the computational analysis of rare diseases.\r\nIt integrates a nosology (classification of rare diseases), relationships (gene-disease relations, epiemological data) and connections with other terminologies (MeSH, UMLS, MedDRA), databases (OMIM, UniProtKB, HGNC, ensembl, Reactome, IUPHAR, Geantlas) and classifications (ICD10).", - "created": "2019-06-11T14:17:42.194+0000", - "modified": "2019-06-11T14:17:42.194+0000", + "prefix": "orphanet.ordo", "resources": [ { - "id": 1496, - "mirId": "MIR:00100705", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ordo/terms?short_form={$id}", - "name": "ORDO via OLS", + "deprecated": false, + "deprecationDate": null, "description": "ORDO via OLS", - "official": true, - "providerCode": "ols", - "sampleId": "Orphanet_C023", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ordo", + "id": 1496, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100705", + "name": "ORDO via OLS", + "official": true, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ordo", + "sampleId": "Orphanet_C023", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ordo/terms?short_form={$id}" } ], - "sampleId": "Orphanet_C023", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Orphanet_C023" }, { + "created": "2019-06-11T14:17:42.461+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Protein Affinity Reagents (PSI-PAR) provides a structured controlled vocabulary for the annotation of experiments concerned with interactions, and interactor production methods. PAR is developed by the HUPO Proteomics Standards Initiative and contains the majority of the terms from the PSI-MI controlled vocabular, as well as additional terms.", "id": 1497, - "prefix": "psipar", "mirId": "MIR:00000533", + "modified": "2019-06-11T14:17:42.461+0000", "name": "Protein Affinity Reagents", + "namespaceEmbeddedInLui": false, "pattern": "^PAR:\\d+$", - "description": "Protein Affinity Reagents (PSI-PAR) provides a structured controlled vocabulary for the annotation of experiments concerned with interactions, and interactor production methods. PAR is developed by the HUPO Proteomics Standards Initiative and contains the majority of the terms from the PSI-MI controlled vocabular, as well as additional terms.", - "created": "2019-06-11T14:17:42.461+0000", - "modified": "2019-06-11T14:17:42.461+0000", + "prefix": "psipar", "resources": [ { - "id": 1498, - "mirId": "MIR:00100709", - "urlPattern": "https://www.ebi.ac.uk/ontology-lookup/?termId={$id}", - "name": "Protein Affinity Reagents through OLS", + "deprecated": false, + "deprecationDate": null, "description": "Protein Affinity Reagents through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "PAR:0116", - "resourceHomeUrl": "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=PAR", + "id": 1498, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100709", + "name": "Protein Affinity Reagents through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=PAR", + "sampleId": "PAR:0116", + "urlPattern": "https://www.ebi.ac.uk/ontology-lookup/?termId={$id}" } ], - "sampleId": "PAR:0116", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PAR:0116" }, { + "created": "2019-06-11T14:17:42.685+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ClinVar archives reports of relationships among medically important variants and phenotypes. It records human variation, interpretations of the relationship specific variations to human health, and supporting evidence for each interpretation. Each ClinVar record (RCV identifier) represents an aggregated view of interpretations of the same variation and condition from one or more submitters. Submissions for individual variation/phenotype combinations (SCV identifier) are also collected and made available separately. This collection references the Record Report, based on RCV accession.", "id": 1499, - "prefix": "clinvar.record", "mirId": "MIR:00000534", + "modified": "2019-06-11T14:17:42.685+0000", "name": "ClinVar Record", + "namespaceEmbeddedInLui": false, "pattern": "^RCV\\d+(\\.\\d+)?$", - "description": "ClinVar archives reports of relationships among medically important variants and phenotypes. It records human variation, interpretations of the relationship specific variations to human health, and supporting evidence for each interpretation. Each ClinVar record (RCV identifier) represents an aggregated view of interpretations of the same variation and condition from one or more submitters. Submissions for individual variation/phenotype combinations (SCV identifier) are also collected and made available separately. This collection references the Record Report, based on RCV accession.", - "created": "2019-06-11T14:17:42.685+0000", - "modified": "2019-06-11T14:17:42.685+0000", + "prefix": "clinvar.record", "resources": [ { - "id": 1501, - "mirId": "MIR:00100710", - "urlPattern": "http://www.ncbi.nlm.nih.gov/clinvar/{$id}/", - "name": "ClinVar Record at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "ClinVar Record at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "RCV000033555.3", - "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/clinvar/", + "id": 1501, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100710", + "name": "ClinVar Record at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/clinvar/", + "sampleId": "RCV000033555.3", + "urlPattern": "http://www.ncbi.nlm.nih.gov/clinvar/{$id}/" } ], - "sampleId": "RCV000033555.3", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "RCV000033555.3" }, { + "created": "2019-06-11T14:17:42.938+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MGnify is a resource for the analysis and archiving of microbiome data to help determine the taxonomic diversity and functional & metabolic potential of environmental samples. Users can submit their own data for analysis or freely browse all of the analysed public datasets held within the repository. In addition, users can request analysis of any appropriate dataset within the European Nucleotide Archive (ENA). User-submitted or ENA-derived datasets can also be assembled on request, prior to analysis.", "id": 1502, - "prefix": "mgnify.proj", "mirId": "MIR:00000535", + "modified": "2019-06-11T14:17:42.938+0000", "name": "MGnify Project", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z]+[0-9]+$", - "description": "MGnify is a resource for the analysis and archiving of microbiome data to help determine the taxonomic diversity and functional & metabolic potential of environmental samples. Users can submit their own data for analysis or freely browse all of the analysed public datasets held within the repository. In addition, users can request analysis of any appropriate dataset within the European Nucleotide Archive (ENA). User-submitted or ENA-derived datasets can also be assembled on request, prior to analysis.", - "created": "2019-06-11T14:17:42.938+0000", - "modified": "2019-06-11T14:17:42.938+0000", + "prefix": "mgnify.proj", "resources": [ { - "id": 1503, - "mirId": "MIR:00100711", - "urlPattern": "https://www.ebi.ac.uk/metagenomics/projects/{$id}", - "name": "MGnify Project", + "deprecated": false, + "deprecationDate": null, "description": "MGnify Project", - "official": false, - "providerCode": "ebi", - "sampleId": "ERP004492", - "resourceHomeUrl": "https://www.ebi.ac.uk/metagenomics", + "id": 1503, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100711", + "name": "MGnify Project", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/metagenomics", + "sampleId": "ERP004492", + "urlPattern": "https://www.ebi.ac.uk/metagenomics/projects/{$id}" } ], - "sampleId": "ERP004492", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ERP004492" }, { + "created": "2019-06-11T14:17:43.129+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The EU Clinical Trials Register contains information on clinical trials conducted in the European Union (EU), or the European Economic Area (EEA) which started after 1 May 2004.\r\nIt also includes trials conducted outside these areas if they form part of a paediatric investigation plan (PIP), or are sponsored by a marketing authorisation holder, and involve the use of a medicine in the paediatric population.", "id": 1504, - "prefix": "euclinicaltrials", "mirId": "MIR:00000536", + "modified": "2019-06-11T14:17:43.129+0000", "name": "EU Clinical Trials", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{4}\\-\\d{6}\\-\\d{2}$", - "description": "The EU Clinical Trials Register contains information on clinical trials conducted in the European Union (EU), or the European Economic Area (EEA) which started after 1 May 2004.\r\nIt also includes trials conducted outside these areas if they form part of a paediatric investigation plan (PIP), or are sponsored by a marketing authorisation holder, and involve the use of a medicine in the paediatric population.", - "created": "2019-06-11T14:17:43.129+0000", - "modified": "2019-06-11T14:17:43.129+0000", + "prefix": "euclinicaltrials", "resources": [ { - "id": 1506, - "mirId": "MIR:00100712", - "urlPattern": "https://www.clinicaltrialsregister.eu/ctr-search/search?query={$id}", - "name": "EU Clinical Trials at European Medicines Agency", + "deprecated": false, + "deprecationDate": null, "description": "EU Clinical Trials at European Medicines Agency", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2008-005144-16", - "resourceHomeUrl": "https://www.clinicaltrialsregister.eu/", + "id": 1506, "institution": { - "id": 1505, - "name": "European Medicines Agency, London", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1505, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Medicines Agency, London", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100712", + "name": "EU Clinical Trials at European Medicines Agency", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.clinicaltrialsregister.eu/", + "sampleId": "2008-005144-16", + "urlPattern": "https://www.clinicaltrialsregister.eu/ctr-search/search?query={$id}" } ], - "sampleId": "2008-005144-16", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2008-005144-16" }, { + "created": "2019-06-11T14:17:43.371+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Google Patents covers the entire collection of granted patents and published patent applications from the USPTO, EPO, and WIPO. US patent documents date back to 1790, EPO and WIPO to 1978. Google Patents can be searched using patent number, inventor, classification, and filing date.", "id": 1507, - "prefix": "google.patent", "mirId": "MIR:00000537", + "modified": "2019-06-11T14:17:43.371+0000", "name": "Google Patents", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z]{2}\\d+([A-Z])?$", - "description": "Google Patents covers the entire collection of granted patents and published patent applications from the USPTO, EPO, and WIPO. US patent documents date back to 1790, EPO and WIPO to 1978. Google Patents can be searched using patent number, inventor, classification, and filing date.", - "created": "2019-06-11T14:17:43.371+0000", - "modified": "2019-06-11T14:17:43.371+0000", + "prefix": "google.patent", "resources": [ { - "id": 1509, - "mirId": "MIR:00100714", - "urlPattern": "https://www.google.com/patents/{$id}", - "name": "Google Patents at Google", + "deprecated": false, + "deprecationDate": null, "description": "Google Patents at Google", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "US4145692", - "resourceHomeUrl": "https://www.google.com/patents/", + "id": 1509, "institution": { - "id": 1508, - "name": "Google Incorporated", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1508, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Google Incorporated", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100714", + "name": "Google Patents at Google", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.google.com/patents/", + "sampleId": "US4145692", + "urlPattern": "https://www.google.com/patents/{$id}" } ], - "sampleId": "US4145692", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "US4145692" }, { + "created": "2019-06-11T14:17:43.583+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The United States Patent and Trademark Office (USPTO) is the federal agency for granting U.S. patents and registering trademarks. As a mechanism that protects new ideas and investments in innovation and creativity, the USPTO is at the cutting edge of the nation's technological progress and achievement.", "id": 1510, - "prefix": "uspto", "mirId": "MIR:00000538", + "modified": "2019-06-11T14:17:43.583+0000", "name": "USPTO", + "namespaceEmbeddedInLui": false, "pattern": "^(D|PP|R|T|H|X|AI)?\\d+$", - "description": "The United States Patent and Trademark Office (USPTO) is the federal agency for granting U.S. patents and registering trademarks. As a mechanism that protects new ideas and investments in innovation and creativity, the USPTO is at the cutting edge of the nation's technological progress and achievement.", - "created": "2019-06-11T14:17:43.583+0000", - "modified": "2019-06-11T14:17:43.583+0000", + "prefix": "uspto", "resources": [ { - "id": 1512, - "mirId": "MIR:00100715", - "urlPattern": "http://patft.uspto.gov/netacgi/nph-Parser?Sect2=PTO1&Sect2=HITOFF&p=1&u=/netahtml/PTO/search-bool.html&r=1&f=G&l=50&d=PALL&RefSrch=yes&Query=PN/{$id}", - "name": "USPTO patents at USPTO", + "deprecated": false, + "deprecationDate": null, "description": "USPTO patents at USPTO", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "4145692", - "resourceHomeUrl": "http://patft.uspto.gov/netahtml/PTO/index.html", + "id": 1512, "institution": { - "id": 1511, - "name": "United States Patent and Trademark Office", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1511, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "United States Patent and Trademark Office", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100715", + "name": "USPTO patents at USPTO", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://patft.uspto.gov/netahtml/PTO/index.html", + "sampleId": "4145692", + "urlPattern": "http://patft.uspto.gov/netacgi/nph-Parser?Sect2=PTO1&Sect2=HITOFF&p=1&u=/netahtml/PTO/search-bool.html&r=1&f=G&l=50&d=PALL&RefSrch=yes&Query=PN/{$id}" } ], - "sampleId": "4145692", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "4145692" }, { + "created": "2019-06-11T14:17:43.853+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Cooperative Patent Classification (CPC) is a patent classification system, developed jointly by the European Patent Office (EPO) and the United States Patent and Trademark Office (USPTO). It is based on the previous European classification system (ECLA), which itself was a version of the International Patent Classification (IPC) system. The CPC patent classification system has been used by EPO and USPTO since 1st January, 2013.", "id": 1513, - "prefix": "cpc", "mirId": "MIR:00000539", + "modified": "2019-06-11T14:17:43.853+0000", "name": "Cooperative Patent Classification", + "namespaceEmbeddedInLui": false, "pattern": "^([A-H,Y]|[A-H, Y]\\d{2}|[A-H, Y]\\d{2}[A-Z]|[A-H, Y]\\d{2}[A-Z]\\d{1,3}|[A-H, Y]\\d{2}[A-Z]\\d{1,3}(\\/)?\\d{2,})$", - "description": "The Cooperative Patent Classification (CPC) is a patent classification system, developed jointly by the European Patent Office (EPO) and the United States Patent and Trademark Office (USPTO). It is based on the previous European classification system (ECLA), which itself was a version of the International Patent Classification (IPC) system. The CPC patent classification system has been used by EPO and USPTO since 1st January, 2013.", - "created": "2019-06-11T14:17:43.853+0000", - "modified": "2019-06-11T14:17:43.853+0000", + "prefix": "cpc", "resources": [ { - "id": 1515, - "mirId": "MIR:00100716", - "urlPattern": "https://worldwide.espacenet.com/classification?locale=en_EP#!/CPC={$id}", - "name": "Cooperative Patent Classification at Espace", - "description": "Cooperative Patent Classification at Espace", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "A01M1/026", - "resourceHomeUrl": "https://worldwide.espacenet.com/classification", + "deprecated": false, + "deprecationDate": null, + "description": "Cooperative Patent Classification at Espace", + "id": 1515, "institution": { - "id": 1514, - "name": "Espace, European Patent Office", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1514, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Espace, European Patent Office", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100716", + "name": "Cooperative Patent Classification at Espace", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://worldwide.espacenet.com/classification", + "sampleId": "A01M1/026", + "urlPattern": "https://worldwide.espacenet.com/classification?locale=en_EP#!/CPC={$id}" } ], - "sampleId": "A01M1/026", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "A01M1/026" }, { + "created": "2019-06-11T14:17:44.062+0000", + "deprecated": false, + "deprecationDate": null, + "description": "GWAS Central (previously the Human Genome Variation database of Genotype-to-Phenotype information) is a database of summary level findings from genetic association studies, both large and small. It gathers datasets from public domain projects, and accepts direct data submission. It is based upon Marker information encompassing SNP and variant information from public databases, to which allele and genotype frequency data, and genetic association findings are additionally added. A Study (most generic level) contains one or more Experiments, one or more Sample Panels of test subjects, and one or more Phenotypes. This collection references a GWAS Central Study.", "id": 1516, - "prefix": "gwascentral.study", "mirId": "MIR:00000540", + "modified": "2019-06-11T14:17:44.062+0000", "name": "GWAS Central Study", + "namespaceEmbeddedInLui": false, "pattern": "^HGVST\\d+$", - "description": "GWAS Central (previously the Human Genome Variation database of Genotype-to-Phenotype information) is a database of summary level findings from genetic association studies, both large and small. It gathers datasets from public domain projects, and accepts direct data submission. It is based upon Marker information encompassing SNP and variant information from public databases, to which allele and genotype frequency data, and genetic association findings are additionally added. A Study (most generic level) contains one or more Experiments, one or more Sample Panels of test subjects, and one or more Phenotypes. This collection references a GWAS Central Study.", - "created": "2019-06-11T14:17:44.062+0000", - "modified": "2019-06-11T14:17:44.062+0000", + "prefix": "gwascentral.study", "resources": [ { - "id": 1517, - "mirId": "MIR:00100717", - "urlPattern": "https://www.gwascentral.org/study/{$id}", - "name": "GWAS Central Study at University of Leicester", + "deprecated": false, + "deprecationDate": null, "description": "GWAS Central Study at University of Leicester", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "HGVST1828", - "resourceHomeUrl": "https://www.gwascentral.org/studies", + "id": 1517, "institution": { - "id": 1079, - "name": "Department of Genetics, University of Leicester, Leicester", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1079, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Department of Genetics, University of Leicester, Leicester", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100717", + "name": "GWAS Central Study at University of Leicester", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.gwascentral.org/studies", + "sampleId": "HGVST1828", + "urlPattern": "https://www.gwascentral.org/study/{$id}" } ], - "sampleId": "HGVST1828", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "HGVST1828" }, { + "created": "2019-06-11T14:17:44.275+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Exome Aggregation Consortium (ExAC) is a coalition of investigators seeking to aggregate and harmonize exome sequencing data from a variety of large-scale sequencing projects, and to make summary data available for the wider scientific community. The data pertains to unrelated individuals sequenced as part of various disease-specific and population genetic studies and serves as a reference set of allele frequencies for severe disease studies. This collection references variant information.", "id": 1518, - "prefix": "exac.variant", "mirId": "MIR:00000541", + "modified": "2019-06-11T14:17:44.275+0000", "name": "ExAC Variant", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{1,2}\\-\\d+\\-[GATC]\\-[GATC]$", - "description": "The Exome Aggregation Consortium (ExAC) is a coalition of investigators seeking to aggregate and harmonize exome sequencing data from a variety of large-scale sequencing projects, and to make summary data available for the wider scientific community. The data pertains to unrelated individuals sequenced as part of various disease-specific and population genetic studies and serves as a reference set of allele frequencies for severe disease studies. This collection references variant information.", - "created": "2019-06-11T14:17:44.275+0000", - "modified": "2019-06-11T14:17:44.275+0000", + "prefix": "exac.variant", "resources": [ { - "id": 1520, - "mirId": "MIR:00100718", - "urlPattern": "http://exac.broadinstitute.org/variant/{$id}", - "name": "ExAC Variant at Exome Aggregation Consortium", + "deprecated": false, + "deprecationDate": null, "description": "ExAC Variant at Exome Aggregation Consortium", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "22-46615880-T-C", - "resourceHomeUrl": "http://exac.broadinstitute.org/", + "id": 1520, "institution": { - "id": 1519, - "name": "Exome Aggregation Consortium (ExAC), Cambridge, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1519, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Exome Aggregation Consortium (ExAC), Cambridge, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100718", + "name": "ExAC Variant at Exome Aggregation Consortium", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://exac.broadinstitute.org/", + "sampleId": "22-46615880-T-C", + "urlPattern": "http://exac.broadinstitute.org/variant/{$id}" } ], - "sampleId": "22-46615880-T-C", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "22-46615880-T-C" }, { + "created": "2019-06-11T14:17:44.511+0000", + "deprecated": false, + "deprecationDate": null, + "description": "GWAS Central (previously the Human Genome Variation database of Genotype-to-Phenotype information) is a database of summary level findings from genetic association studies, both large and small. It gathers datasets from public domain projects, and accepts direct data submission. It is based upon Marker information encompassing SNP and variant information from public databases, to which allele and genotype frequency data, and genetic association findings are additionally added. A Study (most generic level) contains one or more Experiments, one or more Sample Panels of test subjects, and one or more Phenotypes. This collection references a GWAS Central Marker.", "id": 1521, - "prefix": "gwascentral.marker", "mirId": "MIR:00000542", + "modified": "2019-06-11T14:17:44.511+0000", "name": "GWAS Central Marker", + "namespaceEmbeddedInLui": false, "pattern": "^HGVM\\d+$", - "description": "GWAS Central (previously the Human Genome Variation database of Genotype-to-Phenotype information) is a database of summary level findings from genetic association studies, both large and small. It gathers datasets from public domain projects, and accepts direct data submission. It is based upon Marker information encompassing SNP and variant information from public databases, to which allele and genotype frequency data, and genetic association findings are additionally added. A Study (most generic level) contains one or more Experiments, one or more Sample Panels of test subjects, and one or more Phenotypes. This collection references a GWAS Central Marker.", - "created": "2019-06-11T14:17:44.511+0000", - "modified": "2019-06-11T14:17:44.511+0000", + "prefix": "gwascentral.marker", "resources": [ { - "id": 1522, - "mirId": "MIR:00100719", - "urlPattern": "https://www.gwascentral.org/marker/{$id}", - "name": "GWAS Central Marker at University of Leicester", + "deprecated": false, + "deprecationDate": null, "description": "GWAS Central Marker at University of Leicester", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "HGVM15354", - "resourceHomeUrl": "https://www.gwascentral.org/markers/", + "id": 1522, "institution": { - "id": 1079, - "name": "Department of Genetics, University of Leicester, Leicester", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1079, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Department of Genetics, University of Leicester, Leicester", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100719", + "name": "GWAS Central Marker at University of Leicester", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.gwascentral.org/markers/", + "sampleId": "HGVM15354", + "urlPattern": "https://www.gwascentral.org/marker/{$id}" } ], - "sampleId": "HGVM15354", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "HGVM15354" }, { + "created": "2019-06-11T14:17:47.850+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. It more published genome-scale metabolic networks into a single database with a set of stardized identifiers called BiGG IDs. Genes in the BiGG models are mapped to NCBI genome annotations, and metabolites are linked to many external databases (KEGG, PubChem, and many more). This collection references individual metabolotes.", "id": 1555, - "prefix": "bigg.metabolite", "mirId": "MIR:00000556", + "modified": "2019-06-11T14:17:47.850+0000", "name": "BiGG Metabolite", + "namespaceEmbeddedInLui": false, "pattern": "^[a-z_A-Z0-9]+$", - "description": "BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. It more published genome-scale metabolic networks into a single database with a set of stardized identifiers called BiGG IDs. Genes in the BiGG models are mapped to NCBI genome annotations, and metabolites are linked to many external databases (KEGG, PubChem, and many more). This collection references individual metabolotes.", - "created": "2019-06-11T14:17:47.850+0000", - "modified": "2019-06-11T14:17:47.850+0000", + "prefix": "bigg.metabolite", "resources": [ { - "id": 1556, - "mirId": "MIR:00100733", - "urlPattern": "http://bigg.ucsd.edu/models/universal/metabolites/{$id}", - "name": "BiGG Metabolite at University of Cakifornia", + "deprecated": false, + "deprecationDate": null, "description": "BiGG Metabolite at University of Cakifornia", - "official": false, - "providerCode": "ucsd", - "sampleId": "12dgr161", - "resourceHomeUrl": "http://bigg.ucsd.edu/universal/metabolites", + "id": 1556, "institution": { - "id": 190, - "name": "University of California, San Diego", - "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", - "rorId": "https://ror.org/0168r3w48", + "homeUrl": "https://ucsd.edu/", + "id": 190, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of California, San Diego", + "rorId": "https://ror.org/0168r3w48" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100733", + "name": "BiGG Metabolite at University of Cakifornia", + "official": false, + "providerCode": "ucsd", + "resourceHomeUrl": "http://bigg.ucsd.edu/universal/metabolites", + "sampleId": "12dgr161", + "urlPattern": "http://bigg.ucsd.edu/models/universal/metabolites/{$id}" } ], - "sampleId": "12dgr161", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "12dgr161" }, { + "created": "2019-06-11T14:17:44.903+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Library of Network-Based Cellular Signatures (LINCS) Program aims to create a network-based understanding of biology by cataloging changes in gene expression and other cellular processes that occur when cells are exposed to a variety of perturbing agents. The LINCS cell model system can have the following cell categories: cell lines, primary cells, induced pluripotent stem cells, differentiated cells, and embryonic stem cells. The metadata contains information provided by each LINCS Data and Signature Generation Center (DSGC) and the association with a tissue or organ from which the cells were derived, in many cases are also associated to a disease.", "id": 1525, - "prefix": "lincs.cell", "mirId": "MIR:00000544", + "modified": "2019-06-11T14:17:44.903+0000", "name": "LINCS Cell", + "namespaceEmbeddedInLui": false, "pattern": "(^LCL-\\d+$)|(^LDC-\\d+$)|(^ES-\\d+$)|(^LSC-\\d+$)|(^LPC-\\d+$)", - "description": "The Library of Network-Based Cellular Signatures (LINCS) Program aims to create a network-based understanding of biology by cataloging changes in gene expression and other cellular processes that occur when cells are exposed to a variety of perturbing agents. The LINCS cell model system can have the following cell categories: cell lines, primary cells, induced pluripotent stem cells, differentiated cells, and embryonic stem cells. The metadata contains information provided by each LINCS Data and Signature Generation Center (DSGC) and the association with a tissue or organ from which the cells were derived, in many cases are also associated to a disease.", - "created": "2019-06-11T14:17:44.903+0000", - "modified": "2019-06-11T14:17:44.903+0000", + "prefix": "lincs.cell", "resources": [ { - "id": 1527, - "mirId": "MIR:00100721", - "urlPattern": "http://lincsportal.ccs.miami.edu/cells/#/view/{$id}", - "name": "LINCS Portal", + "deprecated": false, + "deprecationDate": null, "description": "LINCS Portal", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "LCL-2085", - "resourceHomeUrl": "http://lincsportal.ccs.miami.edu/cells/", + "id": 1527, "institution": { - "id": 1526, - "name": "University of Miami, BD2K-LINCS DCIC", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1526, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Miami, BD2K-LINCS DCIC", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100721", + "name": "LINCS Portal", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://lincsportal.ccs.miami.edu/cells/", + "sampleId": "LCL-2085", + "urlPattern": "http://lincsportal.ccs.miami.edu/cells/#/view/{$id}" } ], - "sampleId": "LCL-2085", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "LCL-2085" }, { + "created": "2019-06-11T14:17:45.145+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The HMS LINCS Database currently contains information on experimental reagents (small molecule perturbagens, cells, and proteins). It aims to collect and disseminate information relating to the fundamental principles of cellular response in humans to perturbation. This collection references proteins.", "id": 1528, - "prefix": "lincs.protein", "mirId": "MIR:00000545", + "modified": "2019-06-11T14:17:45.145+0000", "name": "LINCS Protein", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The HMS LINCS Database currently contains information on experimental reagents (small molecule perturbagens, cells, and proteins). It aims to collect and disseminate information relating to the fundamental principles of cellular response in humans to perturbation. This collection references proteins.", - "created": "2019-06-11T14:17:45.145+0000", - "modified": "2019-06-11T14:17:45.145+0000", + "prefix": "lincs.protein", "resources": [ { - "id": 1529, - "mirId": "MIR:00100722", - "urlPattern": "http://lincs.hms.harvard.edu/db/proteins/{$id}/", - "name": "LINCS Protein at Harvard Medical School", + "deprecated": false, + "deprecationDate": null, "description": "LINCS Protein at Harvard Medical School", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "200282", - "resourceHomeUrl": "http://lincs.hms.harvard.edu/db/proteins/", + "id": 1529, "institution": { - "id": 1322, - "name": "Harvard Medical School, Boston, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1322, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Harvard Medical School, Boston, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100722", + "name": "LINCS Protein at Harvard Medical School", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://lincs.hms.harvard.edu/db/proteins/", + "sampleId": "200282", + "urlPattern": "http://lincs.hms.harvard.edu/db/proteins/{$id}/" } ], - "sampleId": "200282", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "200282" }, { + "created": "2019-06-11T14:17:45.396+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Library of Network-Based Cellular Signatures (LINCS) Program aims to create a network-based understanding of biology by cataloging changes in gene expression and other cellular processes that occur when cells are exposed to a variety of perturbing agents. The LINCS small molecule collection is used as perturbagens in LINCS experiments. The small molecule metadata includes substance-specific batch information provided by each LINCS Data and Signature Generation Center (DSGC).", "id": 1530, - "prefix": "lincs.smallmolecule", "mirId": "MIR:00000546", + "modified": "2019-06-11T14:17:45.396+0000", "name": "LINCS Small Molecule", + "namespaceEmbeddedInLui": false, "pattern": "^LSM-\\d+$", - "description": "The Library of Network-Based Cellular Signatures (LINCS) Program aims to create a network-based understanding of biology by cataloging changes in gene expression and other cellular processes that occur when cells are exposed to a variety of perturbing agents. The LINCS small molecule collection is used as perturbagens in LINCS experiments. The small molecule metadata includes substance-specific batch information provided by each LINCS Data and Signature Generation Center (DSGC).", - "created": "2019-06-11T14:17:45.396+0000", - "modified": "2019-06-11T14:17:45.396+0000", + "prefix": "lincs.smallmolecule", "resources": [ { - "id": 1532, - "mirId": "MIR:00100723", - "urlPattern": "http://lincsportal.ccs.miami.edu/SmallMolecules/#/view/{$id}", - "name": "LINCS Portal", + "deprecated": false, + "deprecationDate": null, "description": "LINCS Portal", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "LSM-6306", - "resourceHomeUrl": "http://lincsportal.ccs.miami.edu/SmallMolecules/", + "id": 1532, "institution": { - "id": 1531, - "name": "University of Miami, BD2K-LINCS DCIC, USA", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1531, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Miami, BD2K-LINCS DCIC, USA", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100723", + "name": "LINCS Portal", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://lincsportal.ccs.miami.edu/SmallMolecules/", + "sampleId": "LSM-6306", + "urlPattern": "http://lincsportal.ccs.miami.edu/SmallMolecules/#/view/{$id}" } ], - "sampleId": "LSM-6306", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "LSM-6306" }, { + "created": "2019-06-11T14:17:45.691+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Exome Aggregation Consortium (ExAC) is a coalition of investigators seeking to aggregate and harmonize exome sequencing data from a variety of large-scale sequencing projects, and to make summary data available for the wider scientific community. The data pertains to unrelated individuals sequenced as part of various disease-specific and population genetic studies and serves as a reference set of allele frequencies for severe disease studies. This collection references transcript information.", "id": 1533, - "prefix": "exac.transcript", "mirId": "MIR:00000547", + "modified": "2019-06-11T14:17:45.691+0000", "name": "ExAC Transcript", + "namespaceEmbeddedInLui": false, "pattern": "^ENST\\d{11}$", - "description": "The Exome Aggregation Consortium (ExAC) is a coalition of investigators seeking to aggregate and harmonize exome sequencing data from a variety of large-scale sequencing projects, and to make summary data available for the wider scientific community. The data pertains to unrelated individuals sequenced as part of various disease-specific and population genetic studies and serves as a reference set of allele frequencies for severe disease studies. This collection references transcript information.", - "created": "2019-06-11T14:17:45.691+0000", - "modified": "2019-06-11T14:17:45.691+0000", + "prefix": "exac.transcript", "resources": [ { - "id": 1534, - "mirId": "MIR:00100724", - "urlPattern": "http://exac.broadinstitute.org/transcript/{$id}", - "name": "ExAC Transcript at Exome Aggregation Consortium", + "deprecated": false, + "deprecationDate": null, "description": "ExAC Transcript at Exome Aggregation Consortium", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ENST00000407236", - "resourceHomeUrl": "http://exac.broadinstitute.org/", + "id": 1534, "institution": { - "id": 1519, - "name": "Exome Aggregation Consortium (ExAC), Cambridge, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1519, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Exome Aggregation Consortium (ExAC), Cambridge, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100724", + "name": "ExAC Transcript at Exome Aggregation Consortium", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://exac.broadinstitute.org/", + "sampleId": "ENST00000407236", + "urlPattern": "http://exac.broadinstitute.org/transcript/{$id}" } ], - "sampleId": "ENST00000407236", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ENST00000407236" }, { + "created": "2019-06-11T14:17:45.890+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Exome Aggregation Consortium (ExAC) is a coalition of investigators seeking to aggregate and harmonize exome sequencing data from a variety of large-scale sequencing projects, and to make summary data available for the wider scientific community. The data pertains to unrelated individuals sequenced as part of various disease-specific and population genetic studies and serves as a reference set of allele frequencies for severe disease studies. This collection references gene information.", "id": 1535, - "prefix": "exac.gene", "mirId": "MIR:00000548", + "modified": "2019-06-11T14:17:45.890+0000", "name": "ExAC Gene", + "namespaceEmbeddedInLui": false, "pattern": "^ENSG\\d{11}$", - "description": "The Exome Aggregation Consortium (ExAC) is a coalition of investigators seeking to aggregate and harmonize exome sequencing data from a variety of large-scale sequencing projects, and to make summary data available for the wider scientific community. The data pertains to unrelated individuals sequenced as part of various disease-specific and population genetic studies and serves as a reference set of allele frequencies for severe disease studies. This collection references gene information.", - "created": "2019-06-11T14:17:45.890+0000", - "modified": "2019-06-11T14:17:45.890+0000", + "prefix": "exac.gene", "resources": [ { - "id": 1536, - "mirId": "MIR:00100725", - "urlPattern": "http://exac.broadinstitute.org/gene/{$id}", - "name": "ExAC Gene at Exome Aggregation Consortium", + "deprecated": false, + "deprecationDate": null, "description": "ExAC Gene at Exome Aggregation Consortium", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ENSG00000169174", - "resourceHomeUrl": "http://exac.broadinstitute.org/", + "id": 1536, "institution": { - "id": 1519, - "name": "Exome Aggregation Consortium (ExAC), Cambridge, Massachusetts", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1519, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Exome Aggregation Consortium (ExAC), Cambridge, Massachusetts", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100725", + "name": "ExAC Gene at Exome Aggregation Consortium", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://exac.broadinstitute.org/", + "sampleId": "ENSG00000169174", + "urlPattern": "http://exac.broadinstitute.org/gene/{$id}" } ], - "sampleId": "ENSG00000169174", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ENSG00000169174" }, { + "created": "2019-06-11T14:17:46.612+0000", + "deprecated": false, + "deprecationDate": null, + "description": "UniPathway is a manually curated resource of enzyme-catalyzed and spontaneous chemical reactions. It provides a hierarchical representation of metabolic pathways and a controlled vocabulary for pathway annotation in UniProtKB. UniPathway data are cross-linked to existing metabolic resources such as ChEBI/Rhea, KEGG and MetaCyc. This collection references compounds.", "id": 1542, - "prefix": "unipathway.compound", "mirId": "MIR:00000551", + "modified": "2019-06-11T14:17:46.612+0000", "name": "UniPathway Compound", + "namespaceEmbeddedInLui": false, "pattern": "^UPC\\d{5}$", - "description": "UniPathway is a manually curated resource of enzyme-catalyzed and spontaneous chemical reactions. It provides a hierarchical representation of metabolic pathways and a controlled vocabulary for pathway annotation in UniProtKB. UniPathway data are cross-linked to existing metabolic resources such as ChEBI/Rhea, KEGG and MetaCyc. This collection references compounds.", - "created": "2019-06-11T14:17:46.612+0000", - "modified": "2019-06-11T14:17:46.612+0000", + "prefix": "unipathway.compound", "resources": [ { - "id": 1544, - "mirId": "MIR:00100728", - "urlPattern": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upc?upid={$id}", - "name": "UniPathway Compound at Swiss Institute of Bioinformatics (SIB)", + "deprecated": true, + "deprecationDate": "2019-10-01T12:10:54.792+0000", "description": "UniPathway Compound at Swiss Institute of Bioinformatics (SIB)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "UPC04349", - "resourceHomeUrl": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", + "id": 1544, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": true, - "deprecationDate": "2019-10-01T12:10:54.792+0000" + "mirId": "MIR:00100728", + "name": "UniPathway Compound at Swiss Institute of Bioinformatics (SIB)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", + "sampleId": "UPC04349", + "urlPattern": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upc?upid={$id}" } ], - "sampleId": "UPC04349", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "UPC04349" }, { + "created": "2019-06-11T14:17:46.875+0000", + "deprecated": false, + "deprecationDate": null, + "description": "This cooperative effort, which includes Fellowship for Interpretation of Genomes (FIG), Argonne National Laboratory, and the University of Chicago, focuses on the development of the comparative genomics environment called the SEED. It is a framework to support comparative analysis and annotation of genomes, and the development of curated genomic data (annotation). Curation is performed at the level of subsystems by an expert annotator, across many genomes, and not on a gene by gene basis. This collection references subsystems.", "id": 1545, - "prefix": "seed", "mirId": "MIR:00000552", + "modified": "2019-06-11T14:17:46.875+0000", "name": "SEED Subsystem", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+$", - "description": "This cooperative effort, which includes Fellowship for Interpretation of Genomes (FIG), Argonne National Laboratory, and the University of Chicago, focuses on the development of the comparative genomics environment called the SEED. It is a framework to support comparative analysis and annotation of genomes, and the development of curated genomic data (annotation). Curation is performed at the level of subsystems by an expert annotator, across many genomes, and not on a gene by gene basis. This collection references subsystems.", - "created": "2019-06-11T14:17:46.875+0000", - "modified": "2019-06-11T14:17:46.875+0000", + "prefix": "seed", "resources": [ { - "id": 1547, - "mirId": "MIR:00100729", - "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100729/{$id}", - "name": "SEED Subsystem at Argonne National Laboratory", + "deprecated": true, + "deprecationDate": "2019-10-08T08:49:23.021+0000", "description": "SEED Subsystem at Argonne National Laboratory", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Biotin_biosynthesis", - "resourceHomeUrl": "http://seed-viewer.theseed.org/seedviewer.cgi", + "id": 1547, "institution": { - "id": 1546, - "name": "Argonne National Laboratory", - "homeUrl": "https://www.anl.gov", "description": "Argonne is a multidisciplinary science and engineering research center, where talented scientists and engineers work together to answer the biggest questions facing humanity, from how to obtain affordable clean energy to protecting ourselves and our environment.", - "rorId": "https://ror.org/05gvnxz63", + "homeUrl": "https://www.anl.gov", + "id": 1546, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Argonne National Laboratory", + "rorId": "https://ror.org/05gvnxz63" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": true, - "deprecationDate": "2019-10-08T08:49:23.021+0000" + "mirId": "MIR:00100729", + "name": "SEED Subsystem at Argonne National Laboratory", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://seed-viewer.theseed.org/seedviewer.cgi", + "sampleId": "Biotin_biosynthesis", + "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100729/{$id}" } ], - "sampleId": "Biotin_biosynthesis", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Biotin_biosynthesis" }, { + "created": "2019-06-11T14:17:47.133+0000", + "deprecated": false, + "deprecationDate": null, + "description": "This cooperative effort, which includes Fellowship for Interpretation of Genomes (FIG), Argonne National Laboratory, and the University of Chicago, focuses on the development of the comparative genomics environment called the SEED. It is a framework to support comparative analysis and annotation of genomes, and the development of curated genomic data (annotation). Curation is performed at the level of subsystems by an expert annotator, across many genomes, and not on a gene by gene basis. This collection references subsystems.", "id": 1548, - "prefix": "seed.compound", "mirId": "MIR:00000553", + "modified": "2019-06-11T14:17:47.133+0000", "name": "SEED Compound", + "namespaceEmbeddedInLui": false, "pattern": "^cpd\\d+$", - "description": "This cooperative effort, which includes Fellowship for Interpretation of Genomes (FIG), Argonne National Laboratory, and the University of Chicago, focuses on the development of the comparative genomics environment called the SEED. It is a framework to support comparative analysis and annotation of genomes, and the development of curated genomic data (annotation). Curation is performed at the level of subsystems by an expert annotator, across many genomes, and not on a gene by gene basis. This collection references subsystems.", - "created": "2019-06-11T14:17:47.133+0000", - "modified": "2019-06-11T14:17:47.133+0000", + "prefix": "seed.compound", "resources": [ { - "id": 1549, - "mirId": "MIR:00100730", - "urlPattern": "http://modelseed.org/biochem/compounds/{$id}", - "name": "SEED Compound at Argonne National Laboratory", + "deprecated": false, + "deprecationDate": null, "description": "SEED Compound at Argonne National Laboratory", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "cpd15380", - "resourceHomeUrl": "http://modelseed.org/", + "id": 1549, "institution": { - "id": 1546, - "name": "Argonne National Laboratory", - "homeUrl": "https://www.anl.gov", "description": "Argonne is a multidisciplinary science and engineering research center, where talented scientists and engineers work together to answer the biggest questions facing humanity, from how to obtain affordable clean energy to protecting ourselves and our environment.", - "rorId": "https://ror.org/05gvnxz63", + "homeUrl": "https://www.anl.gov", + "id": 1546, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Argonne National Laboratory", + "rorId": "https://ror.org/05gvnxz63" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100730", + "name": "SEED Compound at Argonne National Laboratory", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://modelseed.org/", + "sampleId": "cpd15380", + "urlPattern": "http://modelseed.org/biochem/compounds/{$id}" } ], - "sampleId": "cpd15380", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "cpd15380" }, { + "created": "2019-06-11T14:17:47.362+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. It more published genome-scale metabolic networks into a single database with a set of stardized identifiers called BiGG IDs. Genes in the BiGG models are mapped to NCBI genome annotations, and metabolites are linked to many external databases (KEGG, PubChem, and many more). This collection references individual models.", "id": 1550, - "prefix": "bigg.model", "mirId": "MIR:00000554", + "modified": "2019-06-11T14:17:47.362+0000", "name": "BiGG Model", + "namespaceEmbeddedInLui": false, "pattern": "^[a-z_A-Z0-9]+$", - "description": "BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. It more published genome-scale metabolic networks into a single database with a set of stardized identifiers called BiGG IDs. Genes in the BiGG models are mapped to NCBI genome annotations, and metabolites are linked to many external databases (KEGG, PubChem, and many more). This collection references individual models.", - "created": "2019-06-11T14:17:47.362+0000", - "modified": "2019-06-11T14:17:47.362+0000", + "prefix": "bigg.model", "resources": [ { - "id": 1552, - "mirId": "MIR:00100731", - "urlPattern": "http://bigg.ucsd.edu/models/{$id}", - "name": "BiGG Model at University of California", + "deprecated": false, + "deprecationDate": null, "description": "BiGG Model at University of California", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "iECABU_c1320", - "resourceHomeUrl": "http://bigg.ucsd.edu/models", + "id": 1552, "institution": { - "id": 190, - "name": "University of California, San Diego", - "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", - "rorId": "https://ror.org/0168r3w48", + "homeUrl": "https://ucsd.edu/", + "id": 190, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of California, San Diego", + "rorId": "https://ror.org/0168r3w48" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100731", + "name": "BiGG Model at University of California", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bigg.ucsd.edu/models", + "sampleId": "iECABU_c1320", + "urlPattern": "http://bigg.ucsd.edu/models/{$id}" } ], - "sampleId": "iECABU_c1320", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "iECABU_c1320" }, { + "created": "2019-06-11T14:17:47.621+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. It more published genome-scale metabolic networks into a single database with a set of stardized identifiers called BiGG IDs. Genes in the BiGG models are mapped to NCBI genome annotations, and metabolites are linked to many external databases (KEGG, PubChem, and many more). This collection references model compartments.", "id": 1553, - "prefix": "bigg.compartment", "mirId": "MIR:00000555", + "modified": "2019-06-11T14:17:47.621+0000", "name": "BiGG Compartment", + "namespaceEmbeddedInLui": false, "pattern": "^[a-z_A-Z]+$", - "description": "BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. It more published genome-scale metabolic networks into a single database with a set of stardized identifiers called BiGG IDs. Genes in the BiGG models are mapped to NCBI genome annotations, and metabolites are linked to many external databases (KEGG, PubChem, and many more). This collection references model compartments.", - "created": "2019-06-11T14:17:47.621+0000", - "modified": "2019-06-11T14:17:47.621+0000", + "prefix": "bigg.compartment", "resources": [ { - "id": 1554, - "mirId": "MIR:00100732", - "urlPattern": "http://bigg.ucsd.edu/compartments/{$id}", - "name": "BiGG Compartment at University of California", + "deprecated": false, + "deprecationDate": null, "description": "BiGG Compartment at University of California", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "c", - "resourceHomeUrl": "http://bigg.ucsd.edu/compartments/", + "id": 1554, "institution": { - "id": 190, - "name": "University of California, San Diego", - "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", - "rorId": "https://ror.org/0168r3w48", + "homeUrl": "https://ucsd.edu/", + "id": 190, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of California, San Diego", + "rorId": "https://ror.org/0168r3w48" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100732", + "name": "BiGG Compartment at University of California", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bigg.ucsd.edu/compartments/", + "sampleId": "c", + "urlPattern": "http://bigg.ucsd.edu/compartments/{$id}" } ], - "sampleId": "c", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "c" }, { + "created": "2019-06-11T14:17:46.087+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Wikidata is a collaboratively edited knowledge base operated by the Wikimedia Foundation. It is intended to provide a common source of certain types of data which can be used by Wikimedia projects such as Wikipedia. Wikidata functions as a document-oriented database, centred on individual items. Items represent topics, for which basic information is stored that identifies each topic.", "id": 1537, - "prefix": "wikidata", "mirId": "MIR:00000549", + "modified": "2020-11-30T14:15:44.647+0000", "name": "Wikidata", + "namespaceEmbeddedInLui": false, "pattern": "^(Q|P)\\d+$", - "description": "Wikidata is a collaboratively edited knowledge base operated by the Wikimedia Foundation. It is intended to provide a common source of certain types of data which can be used by Wikimedia projects such as Wikipedia. Wikidata functions as a document-oriented database, centred on individual items. Items represent topics, for which basic information is stored that identifies each topic.", - "created": "2019-06-11T14:17:46.087+0000", - "modified": "2020-11-30T14:15:44.647+0000", + "prefix": "wikidata", "resources": [ { - "id": 1538, - "mirId": "MIR:00100726", - "urlPattern": "http://www.wikidata.org/entity/{$id}", - "name": "Wikidata at Wikimedia Foundation", - "description": "Wikidata at Wikimedia Foundation", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Q2207226", - "resourceHomeUrl": "https://www.wikidata.org/", + "deprecated": false, + "deprecationDate": null, + "description": "Wikidata at Wikimedia Foundation", + "id": 1538, "institution": { - "id": 1111, - "name": "Wikimedia Foundation, San Francisco, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1111, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Wikimedia Foundation, San Francisco, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100726", + "name": "Wikidata at Wikimedia Foundation", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.wikidata.org/", + "sampleId": "Q2207226", + "urlPattern": "http://www.wikidata.org/entity/{$id}" } ], - "sampleId": "Q2207226", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Q2207226" }, { + "created": "2019-06-11T14:17:48.059+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. It more published genome-scale metabolic networks into a single database with a set of stardized identifiers called BiGG IDs. Genes in the BiGG models are mapped to NCBI genome annotations, and metabolites are linked to many external databases (KEGG, PubChem, and many more). This collection references reactions.", "id": 1557, - "prefix": "bigg.reaction", "mirId": "MIR:00000557", + "modified": "2019-06-11T14:17:48.059+0000", "name": "BiGG Reaction", + "namespaceEmbeddedInLui": false, "pattern": "^[a-z_A-Z0-9]+$", - "description": "BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. It more published genome-scale metabolic networks into a single database with a set of stardized identifiers called BiGG IDs. Genes in the BiGG models are mapped to NCBI genome annotations, and metabolites are linked to many external databases (KEGG, PubChem, and many more). This collection references reactions.", - "created": "2019-06-11T14:17:48.059+0000", - "modified": "2019-06-11T14:17:48.059+0000", + "prefix": "bigg.reaction", "resources": [ { - "id": 1558, - "mirId": "MIR:00100734", - "urlPattern": "http://bigg.ucsd.edu/models/universal/reactions/{$id}", - "name": "BiGG Reaction at University of California", + "deprecated": false, + "deprecationDate": null, "description": "BiGG Reaction at University of California", - "official": false, - "providerCode": "ucsd", - "sampleId": "13GS", - "resourceHomeUrl": "http://bigg.ucsd.edu/universal/reactions", + "id": 1558, "institution": { - "id": 190, - "name": "University of California, San Diego", - "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", - "rorId": "https://ror.org/0168r3w48", + "homeUrl": "https://ucsd.edu/", + "id": 190, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of California, San Diego", + "rorId": "https://ror.org/0168r3w48" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100734", + "name": "BiGG Reaction at University of California", + "official": false, + "providerCode": "ucsd", + "resourceHomeUrl": "http://bigg.ucsd.edu/universal/reactions", + "sampleId": "13GS", + "urlPattern": "http://bigg.ucsd.edu/models/universal/reactions/{$id}" } ], - "sampleId": "13GS", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "13GS" }, { + "created": "2019-06-11T14:17:48.502+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Unified Medical Language System is a repository of biomedical vocabularies. Vocabularies integrated in the UMLS Metathesaurus include the NCBI taxonomy, Gene Ontology, the Medical Subject Headings (MeSH), OMIM and the Digital Anatomist Symbolic Knowledge Base. UMLS concepts are not only inter-related, but may also be linked to external resources such as GenBank.", "id": 1561, - "prefix": "umls", "mirId": "MIR:00000559", + "modified": "2019-06-11T14:17:48.502+0000", "name": "UMLS", + "namespaceEmbeddedInLui": false, "pattern": "^C\\d+$", - "description": "The Unified Medical Language System is a repository of biomedical vocabularies. Vocabularies integrated in the UMLS Metathesaurus include the NCBI taxonomy, Gene Ontology, the Medical Subject Headings (MeSH), OMIM and the Digital Anatomist Symbolic Knowledge Base. UMLS concepts are not only inter-related, but may also be linked to external resources such as GenBank.", - "created": "2019-06-11T14:17:48.502+0000", - "modified": "2019-06-11T14:17:48.502+0000", + "prefix": "umls", "resources": [ { - "id": 1562, - "mirId": "MIR:00100736", - "urlPattern": "http://linkedlifedata.com/resource/umls/id/{$id}", - "name": "Unified Medical Language System at LinkedLifeData", + "deprecated": false, + "deprecationDate": null, "description": "Unified Medical Language System at LinkedLifeData", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "C0021390", - "resourceHomeUrl": "http://linkedlifedata.com/", + "id": 1562, "institution": { - "id": 63, - "name": "Linkedlifedata, Ontotext, Sofia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 63, "location": { "countryCode": "BG", "countryName": "Bulgaria" - } + }, + "name": "Linkedlifedata, Ontotext, Sofia", + "rorId": null }, "location": { "countryCode": "BG", "countryName": "Bulgaria" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100736", + "name": "Unified Medical Language System at LinkedLifeData", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://linkedlifedata.com/", + "sampleId": "C0021390", + "urlPattern": "http://linkedlifedata.com/resource/umls/id/{$id}" } ], - "sampleId": "C0021390", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "C0021390" }, { + "created": "2019-06-11T14:17:48.947+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Electron Microscopy Data Bank (EMDB) is a public repository for electron microscopy density maps of macromolecular complexes and subcellular structures. It covers a variety of techniques, including single-particle analysis, electron tomography, and electron (2D) crystallography. The EMDB map distribution format follows the CCP4 definition, which is widely recognized by software packages used by the structural biology community.", "id": 1565, - "prefix": "emdb", "mirId": "MIR:00000561", + "modified": "2019-06-11T14:17:48.947+0000", "name": "Electron Microscopy Data Bank", + "namespaceEmbeddedInLui": false, "pattern": "^EMD-\\d{4}$", - "description": "The Electron Microscopy Data Bank (EMDB) is a public repository for electron microscopy density maps of macromolecular complexes and subcellular structures. It covers a variety of techniques, including single-particle analysis, electron tomography, and electron (2D) crystallography. The EMDB map distribution format follows the CCP4 definition, which is widely recognized by software packages used by the structural biology community.", - "created": "2019-06-11T14:17:48.947+0000", - "modified": "2019-06-11T14:17:48.947+0000", + "prefix": "emdb", "resources": [ { - "id": 1566, - "mirId": "MIR:00100738", - "urlPattern": "https://www.ebi.ac.uk/pdbe/entry/emdb/{$id}", - "name": "EMDB at Protein Data Bank in Europe", + "deprecated": false, + "deprecationDate": null, "description": "EMDB at Protein Data Bank in Europe", - "official": false, - "providerCode": "ebi", - "sampleId": "EMD-1001", - "resourceHomeUrl": "https://www.ebi.ac.uk/pdbe/emdb/", + "id": 1566, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100738", + "name": "EMDB at Protein Data Bank in Europe", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/pdbe/emdb/", + "sampleId": "EMD-1001", + "urlPattern": "https://www.ebi.ac.uk/pdbe/entry/emdb/{$id}" } ], - "sampleId": "EMD-1001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "EMD-1001" }, { + "created": "2019-06-11T14:17:49.171+0000", + "deprecated": false, + "deprecationDate": null, + "description": "miRTarBase is a database of miRNA-target interactions (MTIs), collected manually from relevant literature, following Natural Language Processing of the text to identify research articles related to functional studies of miRNAs. Generally, the collected MTIs are validated experimentally by reporter assay, western blot, microarray and next-generation sequencing experiments.", "id": 1567, - "prefix": "mirtarbase", "mirId": "MIR:00000562", + "modified": "2019-06-11T14:17:49.171+0000", "name": "miRTarBase", + "namespaceEmbeddedInLui": false, "pattern": "^MIRT\\d{6}$", - "description": "miRTarBase is a database of miRNA-target interactions (MTIs), collected manually from relevant literature, following Natural Language Processing of the text to identify research articles related to functional studies of miRNAs. Generally, the collected MTIs are validated experimentally by reporter assay, western blot, microarray and next-generation sequencing experiments.", - "created": "2019-06-11T14:17:49.171+0000", - "modified": "2019-06-11T14:17:49.171+0000", + "prefix": "mirtarbase", "resources": [ { - "id": 1569, - "mirId": "MIR:00100739", - "urlPattern": "http://mirtarbase.mbc.nctu.edu.tw/php/detail.php?mirtid={$id}", - "name": "miRTarBase at National Chiao Tung University", + "deprecated": false, + "deprecationDate": null, "description": "miRTarBase at National Chiao Tung University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MIRT000002", - "resourceHomeUrl": "http://mirtarbase.mbc.nctu.edu.tw/", + "id": 1569, "institution": { - "id": 1568, - "name": "Institute of Bioinformatics and Systems Biology, National Chiao Tung University, Hsinchu", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1568, "location": { "countryCode": "TW", "countryName": "Taiwan, Province of China" - } + }, + "name": "Institute of Bioinformatics and Systems Biology, National Chiao Tung University, Hsinchu", + "rorId": null }, "location": { "countryCode": "TW", "countryName": "Taiwan, Province of China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100739", + "name": "miRTarBase at National Chiao Tung University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://mirtarbase.mbc.nctu.edu.tw/", + "sampleId": "MIRT000002", + "urlPattern": "http://mirtarbase.mbc.nctu.edu.tw/php/detail.php?mirtid={$id}" } ], - "sampleId": "MIRT000002", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MIRT000002" }, { + "created": "2019-06-11T14:17:49.428+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Medical Dictionary for Regulatory Activities (MedDRA) was developed by the International Council for Harmonisation of Technical Requirements for Registration of Pharmaceuticals for Human Use (ICH)to provide a standardised medical terminology to facilitate sharing of regulatory information internationally for medical products used by humans. It is used within regulatory processes, safety monitoring, as well as for marketing activities. Products covered by the scope of MedDRA include pharmaceuticals, biologics, vaccines and drug-device combination products. The MedDRA dictionary is organized by System Organ Class (SOC), divided into High-Level Group Terms (HLGT), High-Level Terms (HLT), Preferred Terms (PT) and finally into Lowest Level Terms (LLT).", "id": 1570, - "prefix": "meddra", "mirId": "MIR:00000563", + "modified": "2019-06-11T14:17:49.428+0000", "name": "MedDRA", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Medical Dictionary for Regulatory Activities (MedDRA) was developed by the International Council for Harmonisation of Technical Requirements for Registration of Pharmaceuticals for Human Use (ICH)to provide a standardised medical terminology to facilitate sharing of regulatory information internationally for medical products used by humans. It is used within regulatory processes, safety monitoring, as well as for marketing activities. Products covered by the scope of MedDRA include pharmaceuticals, biologics, vaccines and drug-device combination products. The MedDRA dictionary is organized by System Organ Class (SOC), divided into High-Level Group Terms (HLGT), High-Level Terms (HLT), Preferred Terms (PT) and finally into Lowest Level Terms (LLT).", - "created": "2019-06-11T14:17:49.428+0000", - "modified": "2019-06-11T14:17:49.428+0000", + "prefix": "meddra", "resources": [ { - "id": 1571, - "mirId": "MIR:00100740", - "urlPattern": "http://purl.bioontology.org/ontology/MEDDRA/{$id}", - "name": "MedDRA through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "MedDRA through BioPortal", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "10015919", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/MEDDRA", + "id": 1571, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100740", + "name": "MedDRA through BioPortal", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/MEDDRA", + "sampleId": "10015919", + "urlPattern": "http://purl.bioontology.org/ontology/MEDDRA/{$id}" } ], - "sampleId": "10015919", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "10015919" }, { + "created": "2019-06-11T14:17:49.634+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DASHR reports the annotation, expression and evidence for specific RNA processing (cleavage specificity scores/entropy) of human sncRNA genes, precursor and mature sncRNA products across different human tissues and cell types. DASHR integrates information from multiple existing annotation resources for small non-coding RNAs, including microRNAs (miRNAs), Piwi-interacting (piRNAs), small nuclear (snRNAs), nucleolar (snoRNAs), cytoplasmic (scRNAs), transfer (tRNAs), tRNA fragments (tRFs), and ribosomal RNAs (rRNAs). These datasets were obtained from non-diseased human tissues and cell types and were generated for studying or profiling small non-coding RNAs. This collection references RNA records.", "id": 1572, - "prefix": "dashr", "mirId": "MIR:00000564", + "modified": "2019-06-11T14:17:49.634+0000", "name": "DASHR", + "namespaceEmbeddedInLui": false, "pattern": "^(hsa-(let|mir)-\\w+(-\\w+)?)|(piR-\\d+)|(chr\\w+.tRNA\\d+-\\w+)|(chr\\w+.tRNA\\d+-\\w+-tRF\\d)|((SNORD|SNORA|ACA|HBII|HBI|U)(-)?\\w+)|(HY\\d\\+(-L\\d+)?)|((LSU|SSU|5S)(-rRNA_Hsa)?(-L\\d+)?)$", - "description": "DASHR reports the annotation, expression and evidence for specific RNA processing (cleavage specificity scores/entropy) of human sncRNA genes, precursor and mature sncRNA products across different human tissues and cell types. DASHR integrates information from multiple existing annotation resources for small non-coding RNAs, including microRNAs (miRNAs), Piwi-interacting (piRNAs), small nuclear (snRNAs), nucleolar (snoRNAs), cytoplasmic (scRNAs), transfer (tRNAs), tRNA fragments (tRFs), and ribosomal RNAs (rRNAs). These datasets were obtained from non-diseased human tissues and cell types and were generated for studying or profiling small non-coding RNAs. This collection references RNA records.", - "created": "2019-06-11T14:17:49.634+0000", - "modified": "2019-06-11T14:17:49.634+0000", + "prefix": "dashr", "resources": [ { - "id": 1574, - "mirId": "MIR:00100741", - "urlPattern": "http://lisanwanglab.org/DASHR/entry/{$id}", - "name": "DASHR at University of Pennsylvania", + "deprecated": false, + "deprecationDate": null, "description": "DASHR at University of Pennsylvania", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "hsa-mir-200a", - "resourceHomeUrl": "http://lisanwanglab.org/DASHR/", + "id": 1574, "institution": { - "id": 1573, - "name": "Department of Pathology and Laboratory Medicine, University of Pennsylvania, Philadelphia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1573, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Pathology and Laboratory Medicine, University of Pennsylvania, Philadelphia", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100741", + "name": "DASHR at University of Pennsylvania", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://lisanwanglab.org/DASHR/", + "sampleId": "hsa-mir-200a", + "urlPattern": "http://lisanwanglab.org/DASHR/entry/{$id}" } ], - "sampleId": "hsa-mir-200a", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "hsa-mir-200a" }, { + "created": "2019-06-11T14:17:49.866+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DASHR reports the annotation, expression and evidence for specific RNA processing (cleavage specificity scores/entropy) of human sncRNA genes, precursor and mature sncRNA products across different human tissues and cell types. DASHR integrates information from multiple existing annotation resources for small non-coding RNAs, including microRNAs (miRNAs), Piwi-interacting (piRNAs), small nuclear (snRNAs), nucleolar (snoRNAs), cytoplasmic (scRNAs), transfer (tRNAs), tRNA fragments (tRFs), and ribosomal RNAs (rRNAs). These datasets were obtained from non-diseased human tissues and cell types and were generated for studying or profiling small non-coding RNAs. This collection references RNA expression.", "id": 1575, - "prefix": "dashr.expression", "mirId": "MIR:00000565", + "modified": "2019-06-11T14:17:49.866+0000", "name": "DASHR expression", + "namespaceEmbeddedInLui": false, "pattern": "^(hsa-(let|mir)-\\w+(-\\w+)?)|(piR-\\d+)|(chr\\w+.tRNA\\d+-\\w+)|(chr\\w+.tRNA\\d+-\\w+-tRF\\d)|((SNORD|SNORA|ACA|HBII|HBI|U)(-)?\\w+)|(HY\\d\\+(-L\\d+)?)|((LSU|SSU|5S)(-rRNA_Hsa)?(-L\\d+)?)$", - "description": "DASHR reports the annotation, expression and evidence for specific RNA processing (cleavage specificity scores/entropy) of human sncRNA genes, precursor and mature sncRNA products across different human tissues and cell types. DASHR integrates information from multiple existing annotation resources for small non-coding RNAs, including microRNAs (miRNAs), Piwi-interacting (piRNAs), small nuclear (snRNAs), nucleolar (snoRNAs), cytoplasmic (scRNAs), transfer (tRNAs), tRNA fragments (tRFs), and ribosomal RNAs (rRNAs). These datasets were obtained from non-diseased human tissues and cell types and were generated for studying or profiling small non-coding RNAs. This collection references RNA expression.", - "created": "2019-06-11T14:17:49.866+0000", - "modified": "2019-06-11T14:17:49.866+0000", + "prefix": "dashr.expression", "resources": [ { - "id": 1576, - "mirId": "MIR:00100742", - "urlPattern": "https://dashr1.lisanwanglab.org/entry/hsa-mir-200a#{$id}#exprPerTissueTable", - "name": "DASHR expression at University of Pennsylvania", + "deprecated": false, + "deprecationDate": null, "description": "DASHR expression at University of Pennsylvania", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "hsa-mir-200a", - "resourceHomeUrl": "https://dashr1.lisanwanglab.org/show-expression-table.php?start=0", + "id": 1576, "institution": { - "id": 1573, - "name": "Department of Pathology and Laboratory Medicine, University of Pennsylvania, Philadelphia", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1573, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Pathology and Laboratory Medicine, University of Pennsylvania, Philadelphia", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100742", + "name": "DASHR expression at University of Pennsylvania", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://dashr1.lisanwanglab.org/show-expression-table.php?start=0", + "sampleId": "hsa-mir-200a", + "urlPattern": "https://dashr1.lisanwanglab.org/entry/hsa-mir-200a#{$id}#exprPerTissueTable" } ], - "sampleId": "hsa-mir-200a", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "hsa-mir-200a" }, { + "created": "2019-06-11T14:17:50.083+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The spectra hash code (SPLASH) is a unique and non-proprietary identifier for spectra, and is independent of how the spectra were acquired or processed. It can be easily calculated for a wide range of spectra, including Mass spectroscopy, infrared spectroscopy, ultraviolet and nuclear magnetic resonance.", "id": 1577, - "prefix": "splash", "mirId": "MIR:00000566", + "modified": "2019-06-11T14:17:50.083+0000", "name": "SPLASH", + "namespaceEmbeddedInLui": false, "pattern": "^splash\\d[A-Z-a-z0-9]-[A-Za-z0-9]+-[A-Za-z0-9]+$", - "description": "The spectra hash code (SPLASH) is a unique and non-proprietary identifier for spectra, and is independent of how the spectra were acquired or processed. It can be easily calculated for a wide range of spectra, including Mass spectroscopy, infrared spectroscopy, ultraviolet and nuclear magnetic resonance.", - "created": "2019-06-11T14:17:50.083+0000", - "modified": "2019-06-11T14:17:50.083+0000", + "prefix": "splash", "resources": [ { - "id": 1579, - "mirId": "MIR:00100746", - "urlPattern": "http://mona.fiehnlab.ucdavis.edu/#/spectra/splash/{$id}", - "name": "Mass Bank of North America (MoNA)", + "deprecated": false, + "deprecationDate": null, "description": "Mass Bank of North America (MoNA)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "splash10-0zq2000000-77302b0326a418630a84", - "resourceHomeUrl": "http://mona.fiehnlab.ucdavis.edu/", + "id": 1579, "institution": { - "id": 1578, - "name": "University of Californai, Davis, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1578, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Californai, Davis, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100746", + "name": "Mass Bank of North America (MoNA)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://mona.fiehnlab.ucdavis.edu/", + "sampleId": "splash10-0zq2000000-77302b0326a418630a84", + "urlPattern": "http://mona.fiehnlab.ucdavis.edu/#/spectra/splash/{$id}" } ], - "sampleId": "splash10-0zq2000000-77302b0326a418630a84", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "splash10-0zq2000000-77302b0326a418630a84" }, { + "created": "2019-06-11T14:17:48.752+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MeSH (Medical Subject Headings) is the National Library of Medicine's controlled vocabulary thesaurus. It consists of sets of terms naming descriptors in a hierarchical structure that permits searching at various levels of specificity. This thesaurus is used by NLM for indexing articles from biomedical journals, cataloguing of books, documents, etc.", "id": 1563, - "prefix": "mesh", "mirId": "MIR:00000560", + "modified": "2020-04-21T17:40:51.334+0000", "name": "MeSH", + "namespaceEmbeddedInLui": false, "pattern": "^(C|D)\\d{6,9}$", - "description": "MeSH (Medical Subject Headings) is the National Library of Medicine's controlled vocabulary thesaurus. It consists of sets of terms naming descriptors in a hierarchical structure that permits searching at various levels of specificity. This thesaurus is used by NLM for indexing articles from biomedical journals, cataloguing of books, documents, etc.", - "created": "2019-06-11T14:17:48.752+0000", - "modified": "2020-04-21T17:40:51.334+0000", + "prefix": "mesh", "resources": [ { - "id": 1564, - "mirId": "MIR:00100737", - "urlPattern": "http://id.nlm.nih.gov/mesh/{$id}", - "name": "MeSH Linked Data at National Library of Medicine", + "deprecated": false, + "deprecationDate": null, "description": "MeSH Linked Data at National Library of Medicine", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "C000100", - "resourceHomeUrl": "http://id.nlm.nih.gov/mesh/", + "id": 1564, "institution": { - "id": 792, - "name": "U.S. National Library of Medicine, National Institute of Health, Maryland", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 792, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "U.S. National Library of Medicine, National Institute of Health, Maryland", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100737", + "name": "MeSH Linked Data at National Library of Medicine", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://id.nlm.nih.gov/mesh/", + "sampleId": "C000100", + "urlPattern": "http://id.nlm.nih.gov/mesh/{$id}" } ], - "sampleId": "C000100", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "C000100" }, { + "created": "2019-06-11T14:17:50.332+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MetaNetX/MNXref integrates various information from genome-scale metabolic network reconstructions such as information on reactions, metabolites and compartments. This information undergoes a reconciliation process to minimise for discrepancies between different data sources, and makes the data accessible under a common namespace. This collection references chemical or metabolic components.", "id": 1580, - "prefix": "metanetx.chemical", "mirId": "MIR:00000567", + "modified": "2021-02-26T09:36:59.253+0000", "name": "MetaNetX chemical", + "namespaceEmbeddedInLui": false, "pattern": "^(MNXM\\d+|BIOMASS|WATER)$", - "description": "MetaNetX/MNXref integrates various information from genome-scale metabolic network reconstructions such as information on reactions, metabolites and compartments. This information undergoes a reconciliation process to minimise for discrepancies between different data sources, and makes the data accessible under a common namespace. This collection references chemical or metabolic components.", - "created": "2019-06-11T14:17:50.332+0000", - "modified": "2021-02-26T09:36:59.253+0000", + "prefix": "metanetx.chemical", "resources": [ { - "id": 1582, - "mirId": "MIR:00100748", - "urlPattern": "https://www.metanetx.org/chem_info/{$id}", - "name": "MetaNetX chemical at SIB Swiss Institute of Bioinformatics", + "deprecated": false, + "deprecationDate": null, "description": "MetaNetX chemical at SIB Swiss Institute of Bioinformatics", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MNXM1723", - "resourceHomeUrl": "https://www.metanetx.org/", + "id": 1582, "institution": { - "id": 1581, - "name": "Vital-IT group, SIB Swiss Institute of Bioinformatics, Lausanne", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1581, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "Vital-IT group, SIB Swiss Institute of Bioinformatics, Lausanne", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100748", + "name": "MetaNetX chemical at SIB Swiss Institute of Bioinformatics", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.metanetx.org/", + "sampleId": "MNXM1723", + "urlPattern": "https://www.metanetx.org/chem_info/{$id}" } ], - "sampleId": "MNXM1723", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MNXM1723" }, { + "created": "2019-06-11T14:17:50.605+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MetaNetX/MNXref integrates various information from genome-scale metabolic network reconstructions such as information on reactions, metabolites and compartments. This information undergoes a reconciliation process to minimise for discrepancies between different data sources, and makes the data accessible under a common namespace. This collection references reactions.", "id": 1583, - "prefix": "metanetx.reaction", "mirId": "MIR:00000568", + "modified": "2021-02-26T09:43:13.847+0000", "name": "MetaNetX reaction", + "namespaceEmbeddedInLui": false, "pattern": "^(MNXR\\d+|EMPTY)$", - "description": "MetaNetX/MNXref integrates various information from genome-scale metabolic network reconstructions such as information on reactions, metabolites and compartments. This information undergoes a reconciliation process to minimise for discrepancies between different data sources, and makes the data accessible under a common namespace. This collection references reactions.", - "created": "2019-06-11T14:17:50.605+0000", - "modified": "2021-02-26T09:43:13.847+0000", + "prefix": "metanetx.reaction", "resources": [ { - "id": 1584, - "mirId": "MIR:00100749", - "urlPattern": "https://www.metanetx.org/equa_info/{$id}", - "name": "MetaNetX reaction at SIB Swiss Institute of Bioinformatics", + "deprecated": false, + "deprecationDate": null, "description": "MetaNetX reaction at SIB Swiss Institute of Bioinformatics", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MNXR101574", - "resourceHomeUrl": "https://www.metanetx.org/", + "id": 1584, "institution": { - "id": 1581, - "name": "Vital-IT group, SIB Swiss Institute of Bioinformatics, Lausanne", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1581, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "Vital-IT group, SIB Swiss Institute of Bioinformatics, Lausanne", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100749", + "name": "MetaNetX reaction at SIB Swiss Institute of Bioinformatics", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.metanetx.org/", + "sampleId": "MNXR101574", + "urlPattern": "https://www.metanetx.org/equa_info/{$id}" } ], - "sampleId": "MNXR101574", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MNXR101574" }, { + "created": "2019-06-11T14:17:51.017+0000", + "deprecated": false, + "deprecationDate": null, + "description": "UniPathway is a manually curated resource of enzyme-catalyzed and spontaneous chemical reactions. It provides a hierarchical representation of metabolic pathways and a controlled vocabulary for pathway annotation in UniProtKB. UniPathway data are cross-linked to existing metabolic resources such as ChEBI/Rhea, KEGG and MetaCyc. This collection references individual reactions.", "id": 1587, - "prefix": "unipathway.reaction", "mirId": "MIR:00000570", + "modified": "2019-06-11T14:17:51.017+0000", "name": "UniPathway Reaction", + "namespaceEmbeddedInLui": false, "pattern": "^UCR\\d{5}$", - "description": "UniPathway is a manually curated resource of enzyme-catalyzed and spontaneous chemical reactions. It provides a hierarchical representation of metabolic pathways and a controlled vocabulary for pathway annotation in UniProtKB. UniPathway data are cross-linked to existing metabolic resources such as ChEBI/Rhea, KEGG and MetaCyc. This collection references individual reactions.", - "created": "2019-06-11T14:17:51.017+0000", - "modified": "2019-06-11T14:17:51.017+0000", + "prefix": "unipathway.reaction", "resources": [ { - "id": 1588, - "mirId": "MIR:00100752", - "urlPattern": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/ucr?upid={$id}", - "name": "UniPathway Reaction at Swiss Institute of Bioinformatics (SIB)", + "deprecated": true, + "deprecationDate": "2019-10-01T12:11:20.049+0000", "description": "UniPathway Reaction at Swiss Institute of Bioinformatics (SIB)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "UCR00226", - "resourceHomeUrl": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", + "id": 1588, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": true, - "deprecationDate": "2019-10-01T12:11:20.049+0000" + "mirId": "MIR:00100752", + "name": "UniPathway Reaction at Swiss Institute of Bioinformatics (SIB)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", + "sampleId": "UCR00226", + "urlPattern": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/ucr?upid={$id}" } ], - "sampleId": "UCR00226", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "UCR00226" }, { + "created": "2019-06-11T14:17:51.237+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Human Phenotype Ontology (HPO) aims to provide a standardized vocabulary of phenotypic abnormalities encountered in human disease. Each term in the HPO describes a phenotypic abnormality, such as atrial septal defect. The HPO is currently being developed using the medical literature, Orphanet, DECIPHER, and OMIM.", "id": 1589, - "prefix": "hp", "mirId": "MIR:00000571", + "modified": "2019-06-11T14:17:51.237+0000", "name": "Human Phenotype Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^HP:\\d{7}$", - "description": "The Human Phenotype Ontology (HPO) aims to provide a standardized vocabulary of phenotypic abnormalities encountered in human disease. Each term in the HPO describes a phenotypic abnormality, such as atrial septal defect. The HPO is currently being developed using the medical literature, Orphanet, DECIPHER, and OMIM.", - "created": "2019-06-11T14:17:51.237+0000", - "modified": "2019-06-11T14:17:51.237+0000", + "prefix": "hp", "resources": [ { - "id": 1592, - "mirId": "MIR:00100754", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/hp/terms?obo_id=HP:{$id}", - "name": "Human Phenotype Ontology through OLS", + "deprecated": false, + "deprecationDate": null, "description": "Human Phenotype Ontology through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0000118", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/hp", + "id": 1592, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100754", + "name": "Human Phenotype Ontology through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/hp", + "sampleId": "0000118", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/hp/terms?obo_id=HP:{$id}" }, { - "id": 1591, - "mirId": "MIR:00100753", - "urlPattern": "https://hpo.jax.org/app/browse/term/HP:{$id}", - "name": "Human Phenotype Ontology at Institute for Medical Genetics and Human Genetics", + "deprecated": false, + "deprecationDate": null, "description": "Human Phenotype Ontology at Institute for Medical Genetics and Human Genetics", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0000118", - "resourceHomeUrl": "http://human-phenotype-ontology.github.io/", + "id": 1591, "institution": { - "id": 1590, - "name": "Institute for Medical Genetics and Human Genetics, Charité-Universitätsmedizin, Berlin", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1590, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Institute for Medical Genetics and Human Genetics, Charit\u00e9-Universit\u00e4tsmedizin, Berlin", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100753", + "name": "Human Phenotype Ontology at Institute for Medical Genetics and Human Genetics", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://human-phenotype-ontology.github.io/", + "sampleId": "0000118", + "urlPattern": "https://hpo.jax.org/app/browse/term/HP:{$id}" } ], - "sampleId": "0000118", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0000118" }, { + "created": "2019-06-11T14:17:51.650+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Small Angle Scattering Biological Data Bank (SASBDB) is a curated repository for small angle X-ray scattering (SAXS) and neutron scattering (SANS) data and derived models. Small angle scattering (SAS) of X-ray and neutrons provides structural information on biological macromolecules in solution at a resolution of 1-2 nm. SASBDB provides freely accessible and downloadable experimental data, which are deposited together with the relevant experimental conditions, sample details, derived models and their fits to the data.", "id": 1593, - "prefix": "sasbdb", "mirId": "MIR:00000572", + "modified": "2019-06-11T14:17:51.650+0000", "name": "SASBDB", + "namespaceEmbeddedInLui": false, "pattern": "^[Ss][Aa][Ss][A-Za-z0-9]{3}[0-9]$", - "description": "Small Angle Scattering Biological Data Bank (SASBDB) is a curated repository for small angle X-ray scattering (SAXS) and neutron scattering (SANS) data and derived models. Small angle scattering (SAS) of X-ray and neutrons provides structural information on biological macromolecules in solution at a resolution of 1-2 nm. SASBDB provides freely accessible and downloadable experimental data, which are deposited together with the relevant experimental conditions, sample details, derived models and their fits to the data.", - "created": "2019-06-11T14:17:51.650+0000", - "modified": "2019-06-11T14:17:51.650+0000", + "prefix": "sasbdb", "resources": [ { - "id": 1595, - "mirId": "MIR:00100763", - "urlPattern": "http://www.sasbdb.org/data/{$id}", - "name": "SASBDB at European Molecular Biology Laboratory", + "deprecated": false, + "deprecationDate": null, "description": "SASBDB at European Molecular Biology Laboratory", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "SASDAX8", - "resourceHomeUrl": "http://www.sasbdb.org/", + "id": 1595, "institution": { - "id": 1594, - "name": "European Molecular Biology Lab Hamburg Outstation", - "homeUrl": "https://www.embl-hamburg.de", "description": "EMBL is an intergovernmental organisation specialising in basic research in the life sciences, funded by public research monies from more than 20 member states, including much of Europe and Israel, and two associate members, Argentina and Australia. EMBL is led by the Director General, currently Professor Edith Heard, appointed by the governing body, EMBL Council. The Council is comprised of representatives of all member and associate member states.\nActivities at EMBL Hamburg focus on state-of-the-art structural biology methods using synchrotron radiation. The unit is situated on campus of the German Synchrotron Research Centre (DESY), which hosts leading facilities for synchrotron radiation (PETRA-III) and free electron lasers (FLASH and XFEL, under construction).", - "rorId": "https://ror.org/050589e39", + "homeUrl": "https://www.embl-hamburg.de", + "id": 1594, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "European Molecular Biology Lab Hamburg Outstation", + "rorId": "https://ror.org/050589e39" }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100763", + "name": "SASBDB at European Molecular Biology Laboratory", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.sasbdb.org/", + "sampleId": "SASDAX8", + "urlPattern": "http://www.sasbdb.org/data/{$id}" } ], - "sampleId": "SASDAX8", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "SASDAX8" }, { + "created": "2019-06-11T14:17:51.916+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. In addition, HGNC also provides a unique numerical ID to identify gene families, providing a display of curated hierarchical relationships between families.", "id": 1596, - "prefix": "hgnc.genefamily", "mirId": "MIR:00000573", + "modified": "2019-06-11T14:17:51.916+0000", "name": "HGNC gene family", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. In addition, HGNC also provides a unique numerical ID to identify gene families, providing a display of curated hierarchical relationships between families.", - "created": "2019-06-11T14:17:51.916+0000", - "modified": "2019-06-11T14:17:51.916+0000", + "prefix": "hgnc.genefamily", "resources": [ { - "id": 1597, - "mirId": "MIR:00100765", - "urlPattern": "https://www.genenames.org/cgi-bin/genefamilies/set/{$id}", - "name": "HGNC gene family at HUGO Genome Nomenclature Committee", + "deprecated": false, + "deprecationDate": null, "description": "HGNC gene family at HUGO Genome Nomenclature Committee", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "141", - "resourceHomeUrl": "https://www.genenames.org/", + "id": 1597, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100765", + "name": "HGNC gene family at HUGO Genome Nomenclature Committee", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.genenames.org/", + "sampleId": "141", + "urlPattern": "https://www.genenames.org/cgi-bin/genefamilies/set/{$id}" } ], - "sampleId": "141", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "141" }, { + "created": "2019-06-11T14:17:52.138+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The MDM (Medical Data Models) Portal is a meta-data registry for creating, analysing, sharing and reusing medical forms. Electronic forms are central in numerous processes involving data, including the collection of data through electronic health records (EHRs), Electronic Data Capture (EDC), and as case report forms (CRFs) for clinical trials. The MDM Portal provides medical forms in numerous export formats, facilitating the sharing and reuse of medical data models and exchange between information systems.", "id": 1598, - "prefix": "mdm", "mirId": "MIR:00000574", + "modified": "2019-06-11T14:17:52.138+0000", "name": "MDM", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The MDM (Medical Data Models) Portal is a meta-data registry for creating, analysing, sharing and reusing medical forms. Electronic forms are central in numerous processes involving data, including the collection of data through electronic health records (EHRs), Electronic Data Capture (EDC), and as case report forms (CRFs) for clinical trials. The MDM Portal provides medical forms in numerous export formats, facilitating the sharing and reuse of medical data models and exchange between information systems.", - "created": "2019-06-11T14:17:52.138+0000", - "modified": "2019-06-11T14:17:52.138+0000", + "prefix": "mdm", "resources": [ { - "id": 1600, - "mirId": "MIR:00100766", - "urlPattern": "https://medical-data-models.org/forms/{$id}", - "name": "MDM at University of Muenster", + "deprecated": false, + "deprecationDate": null, "description": "MDM at University of Muenster", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "4776", - "resourceHomeUrl": "https://medical-data-models.org/", + "id": 1600, "institution": { - "id": 1599, - "name": "Institute of Medical Informatics, University of Muenster", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1599, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Institute of Medical Informatics, University of Muenster", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100766", + "name": "MDM at University of Muenster", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://medical-data-models.org/", + "sampleId": "4776", + "urlPattern": "https://medical-data-models.org/forms/{$id}" } ], - "sampleId": "4776", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "4776" }, { + "created": "2019-06-11T14:17:52.483+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ProbOnto, is an ontology-based knowledge base of probability distributions, featuring uni- and multivariate distributions with their defining functions, characteristics, relationships and reparameterisation formulae. It can be used for annotation of models, facilitating the encoding of distribution-based models, related functions and quantities.", "id": 1601, - "prefix": "probonto", "mirId": "MIR:00000575", + "modified": "2019-06-11T14:17:52.483+0000", "name": "ProbOnto", + "namespaceEmbeddedInLui": false, "pattern": "^PROB_c\\d+$", - "description": "ProbOnto, is an ontology-based knowledge base of probability distributions, featuring uni- and multivariate distributions with their defining functions, characteristics, relationships and reparameterisation formulae. It can be used for annotation of models, facilitating the encoding of distribution-based models, related functions and quantities.", - "created": "2019-06-11T14:17:52.483+0000", - "modified": "2019-06-11T14:17:52.483+0000", + "prefix": "probonto", "resources": [ { - "id": 1602, - "mirId": "MIR:00100768", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/probonto/terms?short_form={$id}", - "name": "ProbOnto through OLS", + "deprecated": false, + "deprecationDate": null, "description": "ProbOnto through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "PROB_c0000005", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/probonto", + "id": 1602, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100768", + "name": "ProbOnto through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/probonto", + "sampleId": "PROB_c0000005", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/probonto/terms?short_form={$id}" } ], - "sampleId": "PROB_c0000005", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PROB_c0000005" }, { + "created": "2019-06-11T14:17:52.731+0000", + "deprecated": false, + "deprecationDate": null, + "description": "APID (Agile Protein Interactomes DataServer) provides information on the protein interactomes of numerous organisms, based on the integration of known experimentally validated protein-protein physical interactions (PPIs). Interactome data includes a report on quality levels and coverage over the proteomes for each organism included. APID integrates PPIs from primary databases of molecular interactions (BIND, BioGRID, DIP, HPRD, IntAct, MINT) and also from experimentally resolved 3D structures (PDB) where more than two distinct proteins have been identified. This collection references protein interactors, through a UniProt identifier.", "id": 1603, - "prefix": "apid.interactions", "mirId": "MIR:00000576", + "modified": "2019-06-11T14:17:52.731+0000", "name": "APID Interactomes", + "namespaceEmbeddedInLui": false, "pattern": "^([A-N,R-Z][0-9]([A-Z][A-Z, 0-9][A-Z, 0-9][0-9]){1,2})|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])(\\.\\d+)?$", - "description": "APID (Agile Protein Interactomes DataServer) provides information on the protein interactomes of numerous organisms, based on the integration of known experimentally validated protein-protein physical interactions (PPIs). Interactome data includes a report on quality levels and coverage over the proteomes for each organism included. APID integrates PPIs from primary databases of molecular interactions (BIND, BioGRID, DIP, HPRD, IntAct, MINT) and also from experimentally resolved 3D structures (PDB) where more than two distinct proteins have been identified. This collection references protein interactors, through a UniProt identifier.", - "created": "2019-06-11T14:17:52.731+0000", - "modified": "2019-06-11T14:17:52.731+0000", + "prefix": "apid.interactions", "resources": [ { - "id": 1605, - "mirId": "MIR:00100769", - "urlPattern": "http://cicblade.dep.usal.es:8080/APID/Interactions.action?protein={$id}", - "name": "APID at Salamanca", + "deprecated": false, + "deprecationDate": null, "description": "APID at Salamanca", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "P01116", - "resourceHomeUrl": "http://cicblade.dep.usal.es:8080/APID/", + "id": 1605, "institution": { - "id": 1604, - "name": "Cancer Research Center (CiC-IBMCC), Consejo Superior de Investigaciones Científicas (CSIC) and Universidad de Salamanca (USAL), Salamanca", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1604, "location": { "countryCode": "ES", "countryName": "Spain" - } + }, + "name": "Cancer Research Center (CiC-IBMCC), Consejo Superior de Investigaciones Cient\u00edficas (CSIC) and Universidad de Salamanca (USAL), Salamanca", + "rorId": null }, "location": { "countryCode": "ES", "countryName": "Spain" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100769", + "name": "APID at Salamanca", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://cicblade.dep.usal.es:8080/APID/", + "sampleId": "P01116", + "urlPattern": "http://cicblade.dep.usal.es:8080/APID/Interactions.action?protein={$id}" } ], - "sampleId": "P01116", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "P01116" }, { + "created": "2019-06-11T14:17:53.021+0000", + "deprecated": false, + "deprecationDate": null, + "description": "STOREDB database is a repository for data used by the international radiobiology community, archiving and sharing primary data outputs from research on low dose radiation. It also provides a directory of bioresources and databases for radiobiology projects containing information and materials that investigators are willing to share. STORE supports the creation of a low dose radiation research commons.", "id": 1606, - "prefix": "storedb", "mirId": "MIR:00000577", + "modified": "2019-06-11T14:17:53.021+0000", "name": "STOREDB", + "namespaceEmbeddedInLui": false, "pattern": "^STOREDB:(STUDY|FILE|DATASET)\\d+$", - "description": "STOREDB database is a repository for data used by the international radiobiology community, archiving and sharing primary data outputs from research on low dose radiation. It also provides a directory of bioresources and databases for radiobiology projects containing information and materials that investigators are willing to share. STORE supports the creation of a low dose radiation research commons.", - "created": "2019-06-11T14:17:53.021+0000", - "modified": "2019-06-11T14:17:53.021+0000", + "prefix": "storedb", "resources": [ { - "id": 1608, - "mirId": "MIR:00100771", - "urlPattern": "https://www.storedb.org/?{$id}", - "name": "STOREDB at University of Cambridge", + "deprecated": false, + "deprecationDate": null, "description": "STOREDB at University of Cambridge", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "STOREDB:STUDY1040", - "resourceHomeUrl": "https://www.storedb.org/", + "id": 1608, "institution": { - "id": 1607, - "name": "University of Cambridge, Department of Physiology, Downing Street, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1607, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "University of Cambridge, Department of Physiology, Downing Street, Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100771", + "name": "STOREDB at University of Cambridge", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.storedb.org/", + "sampleId": "STOREDB:STUDY1040", + "urlPattern": "https://www.storedb.org/?{$id}" } ], - "sampleId": "STOREDB:STUDY1040", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "STOREDB:STUDY1040" }, { + "created": "2019-06-11T14:17:53.298+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Kyoto Encyclopedia of Genes and Genomes (KEGG) is a database resource for understanding high-level functions and utilities of the biological system, such as the cell, the organism and the ecosystem, from molecular-level information, especially large-scale molecular datasets generated by genome sequencing and other high-throughput experimental technologies.", "id": 1609, - "prefix": "kegg", "mirId": "MIR:00000578", + "modified": "2019-06-11T14:17:53.298+0000", "name": "Kyoto Encyclopedia of Genes and Genomes", + "namespaceEmbeddedInLui": false, "pattern": "^([CHDEGTMKR]\\d+)|(\\w+:[\\w\\d\\.-]*)|([a-z]{3,5})|(\\w{2,4}\\d{5})$", - "description": "Kyoto Encyclopedia of Genes and Genomes (KEGG) is a database resource for understanding high-level functions and utilities of the biological system, such as the cell, the organism and the ecosystem, from molecular-level information, especially large-scale molecular datasets generated by genome sequencing and other high-throughput experimental technologies.", - "created": "2019-06-11T14:17:53.298+0000", - "modified": "2019-06-11T14:17:53.298+0000", + "prefix": "kegg", "resources": [ { - "id": 1610, - "mirId": "MIR:00100773", - "urlPattern": "http://www.kegg.jp/entry/{$id}", - "name": "KEGG at Kyoto University Bioinformatics Center", + "deprecated": false, + "deprecationDate": null, "description": "KEGG at Kyoto University Bioinformatics Center", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "hsa00190", - "resourceHomeUrl": "http://www.kegg.jp/", + "id": 1610, "institution": { - "id": 15, - "name": "Kyoto University Bioinformatics Center", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 15, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Kyoto University Bioinformatics Center", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100773", + "name": "KEGG at Kyoto University Bioinformatics Center", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.kegg.jp/", + "sampleId": "hsa00190", + "urlPattern": "http://www.kegg.jp/entry/{$id}" } ], - "sampleId": "hsa00190", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "hsa00190" }, { + "created": "2019-06-11T14:17:53.641+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Plant TF database (PlantTFDB) systematically identifies transcription factors for plant species. It includes annotation for identified TFs, including information on expression, regulation, interaction, conserved elements, phenotype information. It also provides curated descriptions and cross-references to other life science databases, as well as identifying evolutionary relationship among identified factors.", "id": 1611, - "prefix": "planttfdb", "mirId": "MIR:00000579", + "modified": "2019-06-11T14:17:53.641+0000", "name": "Plant Transcription Factor Database", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z][a-z]{2}_([A-Za-z]{3}[0-9]{6})|([A-Za-z0-9\\._\\-#]*)$", - "description": "The Plant TF database (PlantTFDB) systematically identifies transcription factors for plant species. It includes annotation for identified TFs, including information on expression, regulation, interaction, conserved elements, phenotype information. It also provides curated descriptions and cross-references to other life science databases, as well as identifying evolutionary relationship among identified factors.", - "created": "2019-06-11T14:17:53.641+0000", - "modified": "2019-06-11T14:17:53.641+0000", + "prefix": "planttfdb", "resources": [ { - "id": 1613, - "mirId": "MIR:00100772", - "urlPattern": "http://planttfdb.cbi.pku.edu.cn/tf.php?uid={$id}", - "name": "PlantTFDB at Peking University", + "deprecated": false, + "deprecationDate": null, "description": "PlantTFDB at Peking University", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Ath_AT1G01030.1", - "resourceHomeUrl": "http://planttfdb.cbi.pku.edu.cn", + "id": 1613, "institution": { - "id": 1612, - "name": "Peking University", + "description": "Peking University is a comprehensive and national key university. The campus, known as \"Yan Yuan\"\uff08the garden of Yan\uff09, is situated at Haidian District in the western suburb of Beijing, with a total area of 2,743,532 square metres (or 274 hectares). It stands near to the Yuanmingyuan Garden and the Summer Palace.\nPeking University is proud of its outstanding faculty, including 48 members of the Chinese Academy of Sciences (CAS), 9 members of the Chinese Academy of Engineering (CAE), and 21 members of the Third World Academy of Sciences (TWAS).", "homeUrl": "http://english.pku.edu.cn/", - "description": "Peking University is a comprehensive and national key university. The campus, known as \"Yan Yuan\"(the garden of Yan), is situated at Haidian District in the western suburb of Beijing, with a total area of 2,743,532 square metres (or 274 hectares). It stands near to the Yuanmingyuan Garden and the Summer Palace.\nPeking University is proud of its outstanding faculty, including 48 members of the Chinese Academy of Sciences (CAS), 9 members of the Chinese Academy of Engineering (CAE), and 21 members of the Third World Academy of Sciences (TWAS).", - "rorId": null, + "id": 1612, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "Peking University", + "rorId": null }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100772", + "name": "PlantTFDB at Peking University", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://planttfdb.cbi.pku.edu.cn", + "sampleId": "Ath_AT1G01030.1", + "urlPattern": "http://planttfdb.cbi.pku.edu.cn/tf.php?uid={$id}" } ], - "sampleId": "Ath_AT1G01030.1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Ath_AT1G01030.1" }, { + "created": "2019-06-11T14:17:53.926+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Mammalian Phenotype Ontology (MP) classifies and organises phenotypic information related to the mouse and other mammalian species. This ontology has been applied to mouse phenotype descriptions in various databases allowing comparisons of data from diverse mammalian sources. It can facilitate in the identification of appropriate experimental disease models, and aid in the discovery of candidate disease genes and molecular signaling pathways.", "id": 1614, - "prefix": "mp", "mirId": "MIR:00000580", + "modified": "2019-06-11T14:17:53.926+0000", "name": "Mammalian Phenotype Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^MP:\\d{7}$", - "description": "The Mammalian Phenotype Ontology (MP) classifies and organises phenotypic information related to the mouse and other mammalian species. This ontology has been applied to mouse phenotype descriptions in various databases allowing comparisons of data from diverse mammalian sources. It can facilitate in the identification of appropriate experimental disease models, and aid in the discovery of candidate disease genes and molecular signaling pathways.", - "created": "2019-06-11T14:17:53.926+0000", - "modified": "2019-06-11T14:17:53.926+0000", + "prefix": "mp", "resources": [ { - "id": 1615, - "mirId": "MIR:00100774", - "urlPattern": "http://www.informatics.jax.org/searches/Phat.cgi?id=MP:{$id}", - "name": "Mammalian Phenotype Ontology at The Jackson Lab", + "deprecated": false, + "deprecationDate": null, "description": "Mammalian Phenotype Ontology at The Jackson Lab", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0005452", - "resourceHomeUrl": "http://www.informatics.jax.org/", + "id": 1615, "institution": { - "id": 1278, - "name": "The Jackson Laboratory, Bar Harbor, Maine", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1278, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Jackson Laboratory, Bar Harbor, Maine", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100774", + "name": "Mammalian Phenotype Ontology at The Jackson Lab", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.informatics.jax.org/", + "sampleId": "0005452", + "urlPattern": "http://www.informatics.jax.org/searches/Phat.cgi?id=MP:{$id}" }, { - "id": 1616, - "mirId": "MIR:00100775", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/mp/terms?obo_id=MP:{$id}", - "name": "Mammalian Phenotype Ontology through OLS", + "deprecated": false, + "deprecationDate": null, "description": "Mammalian Phenotype Ontology through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0005452", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/mp/", + "id": 1616, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100775", + "name": "Mammalian Phenotype Ontology through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/mp/", + "sampleId": "0005452", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/mp/terms?obo_id=MP:{$id}" }, { - "id": 1617, - "mirId": "MIR:00100776", - "urlPattern": "https://bioportal.bioontology.org/ontologies/MP/MP:{$id}", - "name": "Mammalian Phenotype Ontology through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "Mammalian Phenotype Ontology through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "0005452", - "resourceHomeUrl": "https://bioportal.bioontology.org/ontologies/MP", + "id": 1617, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100776", + "name": "Mammalian Phenotype Ontology through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "https://bioportal.bioontology.org/ontologies/MP", + "sampleId": "0005452", + "urlPattern": "https://bioportal.bioontology.org/ontologies/MP/MP:{$id}" } ], - "sampleId": "0005452", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0005452" }, { + "created": "2019-06-11T14:17:54.476+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The World Register of Marine Species (WoRMS) provides an authoritative and comprehensive list of names of marine organisms. It includes synonyms for valid taxonomic names allowing a more complete interpretation of taxonomic literature. The content of WoRMS is administered by taxonomic experts.", "id": 1618, - "prefix": "worms", "mirId": "MIR:00000581", + "modified": "2019-06-11T14:17:54.476+0000", "name": "World Register of Marine Species", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The World Register of Marine Species (WoRMS) provides an authoritative and comprehensive list of names of marine organisms. It includes synonyms for valid taxonomic names allowing a more complete interpretation of taxonomic literature. The content of WoRMS is administered by taxonomic experts.", - "created": "2019-06-11T14:17:54.476+0000", - "modified": "2019-06-11T14:17:54.476+0000", + "prefix": "worms", "resources": [ { - "id": 1620, - "mirId": "MIR:00100778", - "urlPattern": "http://www.marinespecies.org/aphia.php?p=taxdetails&id={$id}", - "name": "World Register of Marine Species", + "deprecated": false, + "deprecationDate": null, "description": "World Register of Marine Species", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "146421", - "resourceHomeUrl": "http://www.marinespecies.org/", + "id": 1620, "institution": { - "id": 1619, - "name": "Flanders Marine Institute, Ostend", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1619, "location": { "countryCode": "BE", "countryName": "Belgium" - } + }, + "name": "Flanders Marine Institute, Ostend", + "rorId": null }, "location": { "countryCode": "BE", "countryName": "Belgium" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100778", + "name": "World Register of Marine Species", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.marinespecies.org/", + "sampleId": "146421", + "urlPattern": "http://www.marinespecies.org/aphia.php?p=taxdetails&id={$id}" } ], - "sampleId": "146421", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "146421" }, { + "created": "2019-06-11T14:17:54.753+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MultiCellDS is data standard for multicellular simulation, experimental, and clinical data. A collection groups one or more individual uniquely identified cell lines, snapshots, or collections. Primary uses are times series (collections of snapshots), patient cohorts (collections of cell lines), and studies (collections of time series collections).", "id": 1621, - "prefix": "multicellds.collection", "mirId": "MIR:00000582", + "modified": "2019-06-11T14:17:54.753+0000", "name": "MultiCellDS collection", + "namespaceEmbeddedInLui": false, "pattern": "^MCDS_C_[a-zA-Z0-9]{1,10}$", - "description": "MultiCellDS is data standard for multicellular simulation, experimental, and clinical data. A collection groups one or more individual uniquely identified cell lines, snapshots, or collections. Primary uses are times series (collections of snapshots), patient cohorts (collections of cell lines), and studies (collections of time series collections).", - "created": "2019-06-11T14:17:54.753+0000", - "modified": "2019-06-11T14:17:54.753+0000", + "prefix": "multicellds.collection", "resources": [ { - "id": 1623, - "mirId": "MIR:00100779", - "urlPattern": "http://multicellds.org/MultiCellDB/{$id}", - "name": "MultiCellDScollection at Keck School of Medicine", + "deprecated": false, + "deprecationDate": null, "description": "MultiCellDScollection at Keck School of Medicine", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MCDS_C_0000000001", - "resourceHomeUrl": "http://multicellds.org/MultiCellDB.php", + "id": 1623, "institution": { - "id": 1622, - "name": "Center for Applied Molecular Medicine, Keck School of Medicine, University of Southern California, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1622, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Center for Applied Molecular Medicine, Keck School of Medicine, University of Southern California, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100779", + "name": "MultiCellDScollection at Keck School of Medicine", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://multicellds.org/MultiCellDB.php", + "sampleId": "MCDS_C_0000000001", + "urlPattern": "http://multicellds.org/MultiCellDB/{$id}" } ], - "sampleId": "MCDS_C_0000000001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MCDS_C_0000000001" }, { + "created": "2019-06-11T14:17:55.012+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MultiCellDS is data standard for multicellular simulation, experimental, and clinical data. A digital snapshot is a single-time output of the microenvironment (including basement membranes and the vascular network), any cells contained within, and essential metadata. Cells may include phenotypic data.", "id": 1624, - "prefix": "multicellds.snapshot", "mirId": "MIR:00000583", + "modified": "2019-06-11T14:17:55.012+0000", "name": "MultiCellDS Digital snapshot", + "namespaceEmbeddedInLui": false, "pattern": "^MCDS_S_[a-zA-Z0-9]{1,10}$", - "description": "MultiCellDS is data standard for multicellular simulation, experimental, and clinical data. A digital snapshot is a single-time output of the microenvironment (including basement membranes and the vascular network), any cells contained within, and essential metadata. Cells may include phenotypic data.", - "created": "2019-06-11T14:17:55.012+0000", - "modified": "2019-06-11T14:17:55.012+0000", + "prefix": "multicellds.snapshot", "resources": [ { - "id": 1625, - "mirId": "MIR:00100780", - "urlPattern": "http://multicellds.org/MultiCellDB/{$id}", - "name": "MultiCellDS snapshot at Keck School of Medicine", + "deprecated": false, + "deprecationDate": null, "description": "MultiCellDS snapshot at Keck School of Medicine", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MCDS_S_0000000001", - "resourceHomeUrl": "http://multicellds.org/MultiCellDB.php", + "id": 1625, "institution": { - "id": 1622, - "name": "Center for Applied Molecular Medicine, Keck School of Medicine, University of Southern California, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1622, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Center for Applied Molecular Medicine, Keck School of Medicine, University of Southern California, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100780", + "name": "MultiCellDS snapshot at Keck School of Medicine", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://multicellds.org/MultiCellDB.php", + "sampleId": "MCDS_S_0000000001", + "urlPattern": "http://multicellds.org/MultiCellDB/{$id}" } ], - "sampleId": "MCDS_S_0000000001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MCDS_S_0000000001" }, { + "created": "2019-06-11T14:17:55.320+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MultiCellDS is data standard for multicellular simulation, experimental, and clinical data. A digital cell line is a hierarchical organization of quantitative phenotype data for a single biological cell line, including the microenvironmental context of the measurements and essential metadata.", "id": 1626, - "prefix": "multicellds.cell_line", "mirId": "MIR:00000584", + "modified": "2019-06-11T14:17:55.320+0000", "name": "MultiCellDS Digital Cell Line", + "namespaceEmbeddedInLui": false, "pattern": "^MCDS_L_[a-zA-Z0-9]{1,10}$", - "description": "MultiCellDS is data standard for multicellular simulation, experimental, and clinical data. A digital cell line is a hierarchical organization of quantitative phenotype data for a single biological cell line, including the microenvironmental context of the measurements and essential metadata.", - "created": "2019-06-11T14:17:55.320+0000", - "modified": "2019-06-11T14:17:55.320+0000", + "prefix": "multicellds.cell_line", "resources": [ { - "id": 1627, - "mirId": "MIR:00100781", - "urlPattern": "http://multicellds.org/MultiCellDB/{$id}", - "name": "MultiCellDS Digital Cell Line at Keck School of Medicine", + "deprecated": false, + "deprecationDate": null, "description": "MultiCellDS Digital Cell Line at Keck School of Medicine", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MCDS_L_0000000001", - "resourceHomeUrl": "http://multicellds.org/MultiCellDB.php", + "id": 1627, "institution": { - "id": 1622, - "name": "Center for Applied Molecular Medicine, Keck School of Medicine, University of Southern California, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1622, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Center for Applied Molecular Medicine, Keck School of Medicine, University of Southern California, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100781", + "name": "MultiCellDS Digital Cell Line at Keck School of Medicine", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://multicellds.org/MultiCellDB.php", + "sampleId": "MCDS_L_0000000001", + "urlPattern": "http://multicellds.org/MultiCellDB/{$id}" } ], - "sampleId": "MCDS_L_0000000001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MCDS_L_0000000001" }, { + "created": "2019-06-11T14:17:55.541+0000", + "deprecated": false, + "deprecationDate": null, + "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction \u2014 as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references entities.", "id": 1628, - "prefix": "ecyano.entity", "mirId": "MIR:00000585", + "modified": "2019-06-11T14:17:55.541+0000", "name": "E-cyanobacterium entity", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction — as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references entities.", - "created": "2019-06-11T14:17:55.541+0000", - "modified": "2019-06-11T14:17:55.541+0000", + "prefix": "ecyano.entity", "resources": [ { - "id": 1630, - "mirId": "MIR:00100782", - "urlPattern": "http://e-cyanobacterium.org/bcs/entity/{$id}/", - "name": "e-cyanobacterium entity at Masaryk University Brno", + "deprecated": false, + "deprecationDate": null, "description": "e-cyanobacterium entity at Masaryk University Brno", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "23", - "resourceHomeUrl": "http://www.e-cyanobacterium.org/bcs/entity/", + "id": 1630, "institution": { - "id": 1629, - "name": "Systems Biology Laboratory, Faculty of Informatics, Masaryk University Brno", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1629, "location": { "countryCode": "CZ", "countryName": "Czech Republic" - } + }, + "name": "Systems Biology Laboratory, Faculty of Informatics, Masaryk University Brno", + "rorId": null }, "location": { "countryCode": "CZ", "countryName": "Czech Republic" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100782", + "name": "e-cyanobacterium entity at Masaryk University Brno", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.e-cyanobacterium.org/bcs/entity/", + "sampleId": "23", + "urlPattern": "http://e-cyanobacterium.org/bcs/entity/{$id}/" } ], - "sampleId": "23", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "23" }, { + "created": "2019-06-11T14:17:55.864+0000", + "deprecated": false, + "deprecationDate": null, + "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction \u2014 as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references models.", "id": 1631, - "prefix": "ecyano.model", "mirId": "MIR:00000586", + "modified": "2019-06-11T14:17:55.864+0000", "name": "E-cyanobacterium model", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction — as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references models.", - "created": "2019-06-11T14:17:55.864+0000", - "modified": "2019-06-11T14:17:55.864+0000", + "prefix": "ecyano.model", "resources": [ { - "id": 1632, - "mirId": "MIR:00100783", - "urlPattern": "http://e-cyanobacterium.org/models/model/{$id}/", - "name": "e-cyanobacterium entity at Masaryk University Brno", + "deprecated": false, + "deprecationDate": null, "description": "e-cyanobacterium entity at Masaryk University Brno", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "26", - "resourceHomeUrl": "http://e-cyanobacterium.org/models/", + "id": 1632, "institution": { - "id": 1629, - "name": "Systems Biology Laboratory, Faculty of Informatics, Masaryk University Brno", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1629, "location": { "countryCode": "CZ", "countryName": "Czech Republic" - } + }, + "name": "Systems Biology Laboratory, Faculty of Informatics, Masaryk University Brno", + "rorId": null }, "location": { "countryCode": "CZ", "countryName": "Czech Republic" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100783", + "name": "e-cyanobacterium entity at Masaryk University Brno", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://e-cyanobacterium.org/models/", + "sampleId": "26", + "urlPattern": "http://e-cyanobacterium.org/models/model/{$id}/" } ], - "sampleId": "26", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "26" }, { + "created": "2019-06-11T14:17:56.089+0000", + "deprecated": false, + "deprecationDate": null, + "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction \u2014 as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references rules.", "id": 1633, - "prefix": "ecyano.rule", "mirId": "MIR:00000587", - "name": "E-cyanobacterium rule", - "pattern": "^\\d+$", - "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction — as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references rules.", - "created": "2019-06-11T14:17:56.089+0000", "modified": "2019-06-11T14:17:56.089+0000", + "name": "E-cyanobacterium rule", + "namespaceEmbeddedInLui": false, + "pattern": "^\\d+$", + "prefix": "ecyano.rule", "resources": [ { - "id": 1634, - "mirId": "MIR:00100784", - "urlPattern": "http://e-cyanobacterium.org/bcs/rule/{$id}/", - "name": "e-cyanobacterium entity at Masaryk University Brno", + "deprecated": false, + "deprecationDate": null, "description": "e-cyanobacterium entity at Masaryk University Brno", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "56", - "resourceHomeUrl": "http://www.e-cyanobacterium.org/bcs/rule/", + "id": 1634, "institution": { - "id": 1629, - "name": "Systems Biology Laboratory, Faculty of Informatics, Masaryk University Brno", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1629, "location": { "countryCode": "CZ", "countryName": "Czech Republic" - } + }, + "name": "Systems Biology Laboratory, Faculty of Informatics, Masaryk University Brno", + "rorId": null }, "location": { "countryCode": "CZ", "countryName": "Czech Republic" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100784", + "name": "e-cyanobacterium entity at Masaryk University Brno", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.e-cyanobacterium.org/bcs/rule/", + "sampleId": "56", + "urlPattern": "http://e-cyanobacterium.org/bcs/rule/{$id}/" } ], - "sampleId": "56", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "56" }, { + "created": "2019-06-11T14:17:56.343+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Library of Network-Based Cellular Signatures (LINCS) Program aims to create a network-based understanding of biology by cataloguing changes in gene expression and other cellular processes that occur when cells are exposed to perturbing agents. The data is organized and available as datasets, each including experimental data, metadata and a description of the dataset and assay. The dataset group comprises datasets for the same experiment but with different data level results (data processed to a different level).", "id": 1635, - "prefix": "lincs.data", "mirId": "MIR:00000588", + "modified": "2019-06-11T14:17:56.343+0000", "name": "LINCS Data", + "namespaceEmbeddedInLui": false, "pattern": "^[EL]D[SG]-\\d+$", - "description": "The Library of Network-Based Cellular Signatures (LINCS) Program aims to create a network-based understanding of biology by cataloguing changes in gene expression and other cellular processes that occur when cells are exposed to perturbing agents. The data is organized and available as datasets, each including experimental data, metadata and a description of the dataset and assay. The dataset group comprises datasets for the same experiment but with different data level results (data processed to a different level).", - "created": "2019-06-11T14:17:56.343+0000", - "modified": "2019-06-11T14:17:56.343+0000", + "prefix": "lincs.data", "resources": [ { - "id": 1636, - "mirId": "MIR:00100785", - "urlPattern": "http://lincsportal.ccs.miami.edu/datasets/#/view/{$id}", - "name": "LINCS Data at University of Miami", + "deprecated": false, + "deprecationDate": null, "description": "LINCS Data at University of Miami", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "LDS-1110", - "resourceHomeUrl": "http://lincsportal.ccs.miami.edu/datasets/", + "id": 1636, "institution": { - "id": 1526, - "name": "University of Miami, BD2K-LINCS DCIC", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1526, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Miami, BD2K-LINCS DCIC", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100785", + "name": "LINCS Data at University of Miami", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://lincsportal.ccs.miami.edu/datasets/", + "sampleId": "LDS-1110", + "urlPattern": "http://lincsportal.ccs.miami.edu/datasets/#/view/{$id}" }, { - "id": 1637, - "mirId": "MIR:00100856", - "urlPattern": "https://www.omicsdi.org/dataset/lincs/{$id}", - "name": "Lincs through OmicsDI", + "deprecated": false, + "deprecationDate": null, "description": "Lincs through OmicsDI", - "official": false, - "providerCode": "omicsdi", - "sampleId": "LDS-1110", - "resourceHomeUrl": "https://www.omicsdi.org/", + "id": 1637, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100856", + "name": "Lincs through OmicsDI", + "official": false, + "providerCode": "omicsdi", + "resourceHomeUrl": "https://www.omicsdi.org/", + "sampleId": "LDS-1110", + "urlPattern": "https://www.omicsdi.org/dataset/lincs/{$id}" } ], - "sampleId": "LDS-1110", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "LDS-1110" }, { + "created": "2019-06-11T14:17:56.660+0000", + "deprecated": false, + "deprecationDate": null, + "description": "AGRICOLA (AGRICultural OnLine Access) serves as the catalog and index to the collections of the National Agricultural Library, as well as a primary public source for world-wide access to agricultural information. The database covers materials in all formats and periods, including printed works from as far back as the 15th century.", "id": 1638, - "prefix": "agricola", "mirId": "MIR:00000589", + "modified": "2019-06-11T14:17:56.660+0000", "name": "AGRICOLA", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "AGRICOLA (AGRICultural OnLine Access) serves as the catalog and index to the collections of the National Agricultural Library, as well as a primary public source for world-wide access to agricultural information. The database covers materials in all formats and periods, including printed works from as far back as the 15th century.", - "created": "2019-06-11T14:17:56.660+0000", - "modified": "2019-06-11T14:17:56.660+0000", + "prefix": "agricola", "resources": [ { - "id": 1640, - "mirId": "MIR:00100789", - "urlPattern": "http://ddr.nal.usda.gov/dspace/handle/10113/{$id}", - "name": "AGRICOLA at National Agricultural Library", + "deprecated": false, + "deprecationDate": null, "description": "AGRICOLA at National Agricultural Library", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "50018", - "resourceHomeUrl": "http://agricola.nal.usda.gov/", + "id": 1640, "institution": { - "id": 1639, - "name": "National Agricultural Library, United States Department of Agriculture", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1639, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Agricultural Library, United States Department of Agriculture", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100789", + "name": "AGRICOLA at National Agricultural Library", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://agricola.nal.usda.gov/", + "sampleId": "50018", + "urlPattern": "http://ddr.nal.usda.gov/dspace/handle/10113/{$id}" } ], - "sampleId": "50018", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "50018" }, { + "created": "2019-06-11T14:17:56.919+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PSI-Mass Spectrometry (MS) CV contains all the terms used in the PSI MS-related data standards. The CV contains a logical hierarchical structure to ensure ease of maintenance and the development of software that makes use of complex semantics. The CV contains terms required for a complete description of an MS analysis pipeline used in proteomics, including sample labeling, digestion enzymes, instrumentation parts and parameters, software used for identification and quantification of peptides/proteins and the parameters and scores used to determine their significance.", "id": 1641, - "prefix": "ms", "mirId": "MIR:00000590", + "modified": "2019-06-11T14:17:56.919+0000", "name": "Mass Spectrometry Controlled Vocabulary", + "namespaceEmbeddedInLui": true, "pattern": "^MS:\\d{7}$", - "description": "The PSI-Mass Spectrometry (MS) CV contains all the terms used in the PSI MS-related data standards. The CV contains a logical hierarchical structure to ensure ease of maintenance and the development of software that makes use of complex semantics. The CV contains terms required for a complete description of an MS analysis pipeline used in proteomics, including sample labeling, digestion enzymes, instrumentation parts and parameters, software used for identification and quantification of peptides/proteins and the parameters and scores used to determine their significance.", - "created": "2019-06-11T14:17:56.919+0000", - "modified": "2019-06-11T14:17:56.919+0000", + "prefix": "ms", "resources": [ { - "id": 1642, - "mirId": "MIR:00100786", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ms/terms?obo_id=MS:{$id}", - "name": "Mass Spectrometry Controlled Vocabulary through OLS", + "deprecated": false, + "deprecationDate": null, "description": "Mass Spectrometry Controlled Vocabulary through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "1000001", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ms", + "id": 1642, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100786", + "name": "Mass Spectrometry Controlled Vocabulary through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ms", + "sampleId": "1000001", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ms/terms?obo_id=MS:{$id}" }, { - "id": 1643, - "mirId": "MIR:00100787", - "urlPattern": "http://purl.bioontology.org/ontology/MS/MS:{$id}", - "name": "Mass Spectrometry Controlled Vocabulary through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "Mass Spectrometry Controlled Vocabulary through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "1000001", - "resourceHomeUrl": "https://bioportal.bioontology.org/ontologies/MS", + "id": 1643, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100787", + "name": "Mass Spectrometry Controlled Vocabulary through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "https://bioportal.bioontology.org/ontologies/MS", + "sampleId": "1000001", + "urlPattern": "http://purl.bioontology.org/ontology/MS/MS:{$id}" } ], - "sampleId": "1000001", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "1000001" }, { + "created": "2019-06-11T14:17:57.267+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Environment Ontology is a resource and research target for the semantically controlled description of environmental entities. The ontology's initial aim was the representation of the biomes, environmental features, and environmental materials pertinent to genomic and microbiome-related investigations.", "id": 1644, - "prefix": "envo", "mirId": "MIR:00000591", + "modified": "2019-06-11T14:17:57.267+0000", "name": "Environment Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^ENVO:\\d{8}$", - "description": "The Environment Ontology is a resource and research target for the semantically controlled description of environmental entities. The ontology's initial aim was the representation of the biomes, environmental features, and environmental materials pertinent to genomic and microbiome-related investigations.", - "created": "2019-06-11T14:17:57.267+0000", - "modified": "2019-06-11T14:17:57.267+0000", + "prefix": "envo", "resources": [ { - "id": 1645, - "mirId": "MIR:00100790", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/envo/terms?obo_id=ENVO:{$id}", - "name": "The Environment Ontology through OLS", + "deprecated": false, + "deprecationDate": null, "description": "The Environment Ontology through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "09200010", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/envo", + "id": 1645, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100790", + "name": "The Environment Ontology through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/envo", + "sampleId": "09200010", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/envo/terms?obo_id=ENVO:{$id}" }, { - "id": 1646, - "mirId": "MIR:00100791", - "urlPattern": "http://purl.bioontology.org/ontology/ENVO/ENVO:{$id}", - "name": "The Environment Ontology through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "The Environment Ontology through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "09200010", - "resourceHomeUrl": "http://purl.bioontology.org/ontology/ENVO/", + "id": 1646, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100791", + "name": "The Environment Ontology through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://purl.bioontology.org/ontology/ENVO/", + "sampleId": "09200010", + "urlPattern": "http://purl.bioontology.org/ontology/ENVO/ENVO:{$id}" } ], - "sampleId": "09200010", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "09200010" }, { + "created": "2019-06-11T14:17:57.583+0000", + "deprecated": false, + "deprecationDate": null, + "description": "An Archival Resource Key (ARK) is a Uniform Resource Locator (URL) that is a multi-purpose persistent identifier for information objects of any type.", "id": 1647, - "prefix": "ark", "mirId": "MIR:00000592", + "modified": "2019-06-11T14:17:57.583+0000", "name": "ARK", + "namespaceEmbeddedInLui": true, "pattern": "^(ark\\:)/*[0-9A-Za-z]+(?:/[\\w/.=*+@\\$-]*)?(?:\\?.*)?$", - "description": "An Archival Resource Key (ARK) is a Uniform Resource Locator (URL) that is a multi-purpose persistent identifier for information objects of any type.", - "created": "2019-06-11T14:17:57.583+0000", - "modified": "2019-06-11T14:17:57.583+0000", + "prefix": "ark", "resources": [ { - "id": 1649, - "mirId": "MIR:00100792", - "urlPattern": "http://n2t.net/ark:{$id}", - "name": "ARK via the Name-to-Thing resolver.", + "deprecated": false, + "deprecationDate": null, "description": "ARK via the Name-to-Thing resolver.", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "/12345/fk1234", - "resourceHomeUrl": "http://n2t.net/", + "id": 1649, "institution": { - "id": 1648, - "name": "California Digital Library, University of California Office of the President", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1648, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "California Digital Library, University of California Office of the President", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100792", + "name": "ARK via the Name-to-Thing resolver.", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://n2t.net/", + "sampleId": "/12345/fk1234", + "urlPattern": "http://n2t.net/ark:{$id}" } ], - "sampleId": "/12345/fk1234", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "/12345/fk1234" }, { + "created": "2019-06-11T14:17:57.806+0000", + "deprecated": false, + "deprecationDate": null, + "description": "International coverage of the world's leading research organisations, indexing 92% of funding allocated globally.", "id": 1650, - "prefix": "grid", "mirId": "MIR:00000593", + "modified": "2019-06-11T14:17:57.806+0000", "name": "GRID", + "namespaceEmbeddedInLui": false, "pattern": "^grid\\.[0-9]+\\.[a-f0-9]{1,2}$", - "description": "International coverage of the world's leading research organisations, indexing 92% of funding allocated globally.", - "created": "2019-06-11T14:17:57.806+0000", - "modified": "2019-06-11T14:17:57.806+0000", + "prefix": "grid", "resources": [ { - "id": 1652, - "mirId": "MIR:00100793", - "urlPattern": "https://www.grid.ac/institutes/{$id}", - "name": "GRID at Digital Science & Research Ltd.", + "deprecated": false, + "deprecationDate": null, "description": "GRID at Digital Science & Research Ltd.", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "grid.225360.0", - "resourceHomeUrl": "https://www.grid.ac/", + "id": 1652, "institution": { - "id": 1651, - "name": "Digital Science &amp; Research Ltd, London", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1651, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Digital Science &amp; Research Ltd, London", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100793", + "name": "GRID at Digital Science & Research Ltd.", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.grid.ac/", + "sampleId": "grid.225360.0", + "urlPattern": "https://www.grid.ac/institutes/{$id}" } ], - "sampleId": "grid.225360.0", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "grid.225360.0" }, { + "created": "2019-06-11T14:17:58.068+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MedGen is a portal for information about conditions and phenotypes related to Medical Genetics. Terms from multiple sources are aggregated into concepts, each of which is assigned a unique identifier and a preferred name and symbol. The core content of the record may include names, identifiers used by other databases, mode of inheritance, clinical features, and map location of the loci affecting the disorder.", "id": 1653, - "prefix": "medgen", "mirId": "MIR:00000594", + "modified": "2019-06-11T14:17:58.068+0000", "name": "MedGen", + "namespaceEmbeddedInLui": false, "pattern": "^[CN]*\\d{4,7}$", - "description": "MedGen is a portal for information about conditions and phenotypes related to Medical Genetics. Terms from multiple sources are aggregated into concepts, each of which is assigned a unique identifier and a preferred name and symbol. The core content of the record may include names, identifiers used by other databases, mode of inheritance, clinical features, and map location of the loci affecting the disorder.", - "created": "2019-06-11T14:17:58.068+0000", - "modified": "2019-06-11T14:17:58.068+0000", + "prefix": "medgen", "resources": [ { - "id": 1654, - "mirId": "MIR:00100794", - "urlPattern": "https://www.ncbi.nlm.nih.gov/medgen/{$id}", - "name": "MedGen at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "MedGen at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "760050", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/medgen/", + "id": 1654, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100794", + "name": "MedGen at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/medgen/", + "sampleId": "760050", + "urlPattern": "https://www.ncbi.nlm.nih.gov/medgen/{$id}" } ], - "sampleId": "760050", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "760050" }, { + "created": "2019-06-11T14:17:58.273+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ClinVar archives reports of relationships among medically important variants and phenotypes. It records human variation, interpretations of the relationship specific variations to human health, and supporting evidence for each interpretation. Each ClinVar record (RCV identifier) represents an aggregated view of interpretations of the same variation and condition from one or more submitters. Submissions for individual variation/phenotype combinations (SCV identifier) are also collected and made available separately. This collection references submissions, and is based on SCV accession.", "id": 1655, - "prefix": "clinvar.submission", "mirId": "MIR:00000595", + "modified": "2019-06-11T14:17:58.273+0000", "name": "ClinVar Submission", + "namespaceEmbeddedInLui": false, "pattern": "^SCV\\d+(\\.\\d+)?$", - "description": "ClinVar archives reports of relationships among medically important variants and phenotypes. It records human variation, interpretations of the relationship specific variations to human health, and supporting evidence for each interpretation. Each ClinVar record (RCV identifier) represents an aggregated view of interpretations of the same variation and condition from one or more submitters. Submissions for individual variation/phenotype combinations (SCV identifier) are also collected and made available separately. This collection references submissions, and is based on SCV accession.", - "created": "2019-06-11T14:17:58.273+0000", - "modified": "2019-06-11T14:17:58.273+0000", + "prefix": "clinvar.submission", "resources": [ { - "id": 1656, - "mirId": "MIR:00100795", - "urlPattern": "http://www.ncbi.nlm.nih.gov/clinvar?term={$id}", - "name": "ClinVar Submission at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "ClinVar Submission at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "SCV000151292", - "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/clinvar/", + "id": 1656, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100795", + "name": "ClinVar Submission at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/clinvar/", + "sampleId": "SCV000151292", + "urlPattern": "http://www.ncbi.nlm.nih.gov/clinvar?term={$id}" } ], - "sampleId": "SCV000151292", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "SCV000151292" }, { + "created": "2019-06-11T14:17:58.490+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ClinVar archives reports of relationships among medically important variants and phenotypes. It records human variation, interpretations of the relationship specific variations to human health, and supporting evidence for each interpretation. Each ClinVar record (RCV identifier) represents an aggregated view of interpretations of the same variation and condition from one or more submitters. Submissions for individual variation/phenotype combinations (SCV identifier) are also collected and made available separately. This collection references the Variant identifier.", "id": 1657, - "prefix": "clinvar", "mirId": "MIR:00000596", + "modified": "2019-06-11T14:17:58.490+0000", "name": "ClinVar Variant", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "ClinVar archives reports of relationships among medically important variants and phenotypes. It records human variation, interpretations of the relationship specific variations to human health, and supporting evidence for each interpretation. Each ClinVar record (RCV identifier) represents an aggregated view of interpretations of the same variation and condition from one or more submitters. Submissions for individual variation/phenotype combinations (SCV identifier) are also collected and made available separately. This collection references the Variant identifier.", - "created": "2019-06-11T14:17:58.490+0000", - "modified": "2019-06-11T14:17:58.490+0000", + "prefix": "clinvar", "resources": [ { - "id": 1658, - "mirId": "MIR:00100796", - "urlPattern": "https://www.ncbi.nlm.nih.gov/clinvar/variation/{$id}", - "name": "ClinVar Variant at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "ClinVar Variant at NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "12345", - "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/clinvar/", + "id": 1658, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100796", + "name": "ClinVar Variant at NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/clinvar/", + "sampleId": "12345", + "urlPattern": "https://www.ncbi.nlm.nih.gov/clinvar/variation/{$id}" } ], - "sampleId": "12345", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "12345" }, { + "created": "2019-06-11T14:17:59.221+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Identifiers.org registry contains registered namespace and provider prefixes with associated access URIs for a large number of high quality data collections. These prefixes are used in web resolution of compact identifiers of the form \u201cPREFIX:ACCESSION\u201d or \"PROVIDER/PREFIX:ACCESSION\u201d commonly used to specify bioinformatics and other data resources.", "id": 1664, - "prefix": "mir", "mirId": "MIR:00000599", + "modified": "2019-06-11T14:17:59.221+0000", "name": "Identifiers.org Registry", + "namespaceEmbeddedInLui": true, "pattern": "^MIR:\\d{8}$", - "description": "The Identifiers.org registry contains registered namespace and provider prefixes with associated access URIs for a large number of high quality data collections. These prefixes are used in web resolution of compact identifiers of the form “PREFIX:ACCESSION” or \"PROVIDER/PREFIX:ACCESSION” commonly used to specify bioinformatics and other data resources.", - "created": "2019-06-11T14:17:59.221+0000", - "modified": "2019-06-11T14:17:59.221+0000", + "prefix": "mir", "resources": [ { - "id": 1665, - "mirId": "MIR:00100800", - "urlPattern": "https://registry.identifiers.org/registry?query=\"MIR:{$id}\"", - "name": "Identifiers.org Registry through EBI", + "deprecated": false, + "deprecationDate": null, "description": "Identifiers.org Registry through EBI", - "official": false, - "providerCode": "ebi", - "sampleId": "00100037", - "resourceHomeUrl": "https://registry.identifiers.org/registry", + "id": 1665, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100800", + "name": "Identifiers.org Registry through EBI", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://registry.identifiers.org/registry", + "sampleId": "00100037", + "urlPattern": "https://registry.identifiers.org/registry?query=\"MIR:{$id}\"" } ], - "sampleId": "00100037", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "00100037" }, { + "created": "2019-06-11T14:17:59.699+0000", + "deprecated": false, + "deprecationDate": null, + "description": "COSMIC is a comprehensive global resource for information on somatic mutations in human cancer, combining curation of the scientific literature with tumor resequencing data from the Cancer Genome Project at the Sanger Institute, U.K. This collection references genes.", "id": 1669, - "prefix": "cosmic", "mirId": "MIR:00000601", + "modified": "2019-06-11T14:17:59.699+0000", "name": "COSMIC Gene", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z0-9]+$", - "description": "COSMIC is a comprehensive global resource for information on somatic mutations in human cancer, combining curation of the scientific literature with tumor resequencing data from the Cancer Genome Project at the Sanger Institute, U.K. This collection references genes.", - "created": "2019-06-11T14:17:59.699+0000", - "modified": "2019-06-11T14:17:59.699+0000", + "prefix": "cosmic", "resources": [ { - "id": 1670, - "mirId": "MIR:00100802", - "urlPattern": "http://cancer.sanger.ac.uk/cosmic/gene/overview?ln={$id}", - "name": "COSMIC Gene at Sanger", + "deprecated": false, + "deprecationDate": null, "description": "COSMIC Gene at Sanger", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "BRAF", - "resourceHomeUrl": "http://cancer.sanger.ac.uk/cosmic/", + "id": 1670, "institution": { - "id": 1393, - "name": "Wellcome Trust Sanger Institute, Wellcome Trust Genome Campus, Hinxton, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1393, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Wellcome Trust Sanger Institute, Wellcome Trust Genome Campus, Hinxton, Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100802", + "name": "COSMIC Gene at Sanger", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://cancer.sanger.ac.uk/cosmic/", + "sampleId": "BRAF", + "urlPattern": "http://cancer.sanger.ac.uk/cosmic/gene/overview?ln={$id}" } ], - "sampleId": "BRAF", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "BRAF" }, { + "created": "2019-06-11T14:17:59.890+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The database of Genotypes and Phenotypes (dbGaP) archives and distributes the results of studies that have investigated the interaction of genotype and phenotype.", "id": 1671, - "prefix": "dbgap", "mirId": "MIR:00000602", + "modified": "2019-06-11T14:17:59.890+0000", "name": "dbGaP", + "namespaceEmbeddedInLui": false, "pattern": "^phs[0-9]{6}(.v\\d+.p\\d+)?$", - "description": "The database of Genotypes and Phenotypes (dbGaP) archives and distributes the results of studies that have investigated the interaction of genotype and phenotype.", - "created": "2019-06-11T14:17:59.890+0000", - "modified": "2019-06-11T14:17:59.890+0000", + "prefix": "dbgap", "resources": [ { - "id": 1672, - "mirId": "MIR:00100803", - "urlPattern": "https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/study.cgi?study_id={$id}", - "name": "dbGaP through NCBI", + "deprecated": false, + "deprecationDate": null, "description": "dbGaP through NCBI", - "official": true, - "providerCode": "ncbi", - "sampleId": "phs000768.v2.p1", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/projects/gap", + "id": 1672, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100803", + "name": "dbGaP through NCBI", + "official": true, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/projects/gap", + "sampleId": "phs000768.v2.p1", + "urlPattern": "https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/study.cgi?study_id={$id}" } ], - "sampleId": "phs000768.v2.p1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "phs000768.v2.p1" }, { + "created": "2019-06-11T14:18:00.081+0000", + "deprecated": false, + "deprecationDate": null, + "description": "An ontology of information entities, originally driven by work by the Ontology of Biomedical Investigation (OBI) digital entity and realizable information entity branch.", "id": 1673, - "prefix": "iao", "mirId": "MIR:00000603", + "modified": "2019-06-11T14:18:00.081+0000", "name": "Information Artifact Ontology", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{7}$", - "description": "An ontology of information entities, originally driven by work by the Ontology of Biomedical Investigation (OBI) digital entity and realizable information entity branch.", - "created": "2019-06-11T14:18:00.081+0000", - "modified": "2019-06-11T14:18:00.081+0000", + "prefix": "iao", "resources": [ { - "id": 1675, - "mirId": "MIR:00100804", - "urlPattern": "http://purl.obolibrary.org/obo/IAO_{$id}", - "name": "IAO through Ontobee", + "deprecated": false, + "deprecationDate": null, "description": "IAO through Ontobee", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0000030", - "resourceHomeUrl": "http://www.ontobee.org/ontology/IAO", + "id": 1675, "institution": { - "id": 1674, - "name": "University of Pennsylvania", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1674, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Pennsylvania", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100804", + "name": "IAO through Ontobee", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.ontobee.org/ontology/IAO", + "sampleId": "0000030", + "urlPattern": "http://purl.obolibrary.org/obo/IAO_{$id}" } ], - "sampleId": "0000030", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "0000030" }, { + "created": "2019-06-11T14:18:00.311+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The GDC Data Portal is a robust data-driven platform that allows cancer researchers and bioinformaticians to search and download cancer data for analysis.", "id": 1676, - "prefix": "gdc", "mirId": "MIR:00000604", + "modified": "2019-06-11T14:18:00.311+0000", "name": "Genomic Data Commons Data Portal", + "namespaceEmbeddedInLui": false, "pattern": "^[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}$", - "description": "The GDC Data Portal is a robust data-driven platform that allows cancer researchers and bioinformaticians to search and download cancer data for analysis.", - "created": "2019-06-11T14:18:00.311+0000", - "modified": "2019-06-11T14:18:00.311+0000", + "prefix": "gdc", "resources": [ { - "id": 1678, - "mirId": "MIR:00100805", - "urlPattern": "https://portal.gdc.cancer.gov/cases/{$id}", - "name": "Genomic Data Commons", + "deprecated": false, + "deprecationDate": null, "description": "Genomic Data Commons", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ae8c77fe-e6c8-44d5-8265-4a38c637bbef", - "resourceHomeUrl": "https://gdc.cancer.gov", + "id": 1678, "institution": { - "id": 1677, - "name": "National Cancer Institute Genomic Data Commons, NIH", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1677, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Cancer Institute Genomic Data Commons, NIH", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100805", + "name": "Genomic Data Commons", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://gdc.cancer.gov", + "sampleId": "ae8c77fe-e6c8-44d5-8265-4a38c637bbef", + "urlPattern": "https://portal.gdc.cancer.gov/cases/{$id}" } ], - "sampleId": "ae8c77fe-e6c8-44d5-8265-4a38c637bbef", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ae8c77fe-e6c8-44d5-8265-4a38c637bbef" }, { + "created": "2019-06-11T14:18:00.566+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The purpose of the OMIT ontology is to establish data exchange standards and common data elements in the microRNA (miR) domain. Biologists (cell biologists in particular) and bioinformaticians can make use of OMIT to leverage emerging semantic technologies in knowledge acquisition and discovery for more effective identification of important roles performed by miRs in humans' various diseases and biological processes (usually through miRs' respective target genes).", "id": 1679, - "prefix": "omit", "mirId": "MIR:00000605", + "modified": "2019-06-11T14:18:00.566+0000", "name": "OMIT", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{7}$", - "description": "The purpose of the OMIT ontology is to establish data exchange standards and common data elements in the microRNA (miR) domain. Biologists (cell biologists in particular) and bioinformaticians can make use of OMIT to leverage emerging semantic technologies in knowledge acquisition and discovery for more effective identification of important roles performed by miRs in humans' various diseases and biological processes (usually through miRs' respective target genes).", - "created": "2019-06-11T14:18:00.566+0000", - "modified": "2019-06-11T14:18:00.566+0000", + "prefix": "omit", "resources": [ { - "id": 1680, - "mirId": "MIR:00100806", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/omit/terms?short_form=OMIT_{$id}", - "name": "Ontology for miRNA Target (OMIT) through OLS", + "deprecated": false, + "deprecationDate": null, "description": "Ontology for miRNA Target (OMIT) through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0005506", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/omit/", + "id": 1680, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100806", + "name": "Ontology for miRNA Target (OMIT) through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/omit/", + "sampleId": "0005506", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/omit/terms?short_form=OMIT_{$id}" } ], - "sampleId": "0005506", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "0005506" }, { + "created": "2019-06-11T14:18:00.782+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The coding sequence or protein identifiers as maintained in INSDC.", "id": 1681, - "prefix": "insdc.cds", "mirId": "MIR:00000606", + "modified": "2019-06-11T14:18:00.782+0000", "name": "INSDC CDS", + "namespaceEmbeddedInLui": false, "pattern": "^([A-Z]\\d{5}|[A-Z]{2}\\d{6}|[A-Z]{4}\\d{8}|[A-J][A-Z]{2}\\d{5})(\\.\\d+)?$", - "description": "The coding sequence or protein identifiers as maintained in INSDC.", - "created": "2019-06-11T14:18:00.782+0000", - "modified": "2019-06-11T14:18:00.782+0000", + "prefix": "insdc.cds", "resources": [ { - "id": 1684, - "mirId": "MIR:00100809", - "urlPattern": "http://getentry.ddbj.nig.ac.jp/getentry/dad/{$id}", - "name": "INSDC CDS through DDBJ", + "deprecated": false, + "deprecationDate": null, "description": "INSDC CDS through DDBJ", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "AAA35559", - "resourceHomeUrl": "http://getentry.ddbj.nig.ac.jp", + "id": 1684, "institution": { - "id": 121, - "name": "DNA Data Bank of Japan, Mishima, Shizuoka", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 121, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "DNA Data Bank of Japan, Mishima, Shizuoka", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 1682, - "mirId": "MIR:00100807", - "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", - "name": "INSDC CDS through ENA", - "description": "INSDC CDS through ENA", + "mirId": "MIR:00100809", + "name": "INSDC CDS through DDBJ", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://getentry.ddbj.nig.ac.jp", "sampleId": "AAA35559", - "resourceHomeUrl": "https://www.ebi.ac.uk/ena", + "urlPattern": "http://getentry.ddbj.nig.ac.jp/getentry/dad/{$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "INSDC CDS through ENA", + "id": 1682, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 1683, - "mirId": "MIR:00100808", - "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}", - "name": "INSDC CDS through NCBI", - "description": "INSDC CDS through NCBI", + "mirId": "MIR:00100807", + "name": "INSDC CDS through ENA", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.ebi.ac.uk/ena", "sampleId": "AAA35559", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/protein/", + "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "INSDC CDS through NCBI", + "id": 1683, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100808", + "name": "INSDC CDS through NCBI", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/protein/", + "sampleId": "AAA35559", + "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}" } ], - "sampleId": "AAA35559", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AAA35559" }, { + "created": "2019-06-11T14:18:01.543+0000", + "deprecated": false, + "deprecationDate": null, + "description": "GlyTouCan is the single worldwide registry of glycan (carbohydrate sugar chain) data.", "id": 1688, - "prefix": "glytoucan", "mirId": "MIR:00000608", + "modified": "2019-06-11T14:18:01.543+0000", "name": "GlyTouCan", + "namespaceEmbeddedInLui": false, "pattern": "^G[0-9]{5}[A-Z]{2}$", - "description": "GlyTouCan is the single worldwide registry of glycan (carbohydrate sugar chain) data.", - "created": "2019-06-11T14:18:01.543+0000", - "modified": "2019-06-11T14:18:01.543+0000", + "prefix": "glytoucan", "resources": [ { - "id": 1690, - "mirId": "MIR:00100812", - "urlPattern": "https://glytoucan.org/Structures/Glycans/{$id}", - "name": "The Glycan Repository", + "deprecated": false, + "deprecationDate": null, "description": "The Glycan Repository", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "G00054MO", - "resourceHomeUrl": "https://glytoucan.org", + "id": 1690, "institution": { - "id": 1689, - "name": "Soka University, Hachioji, Tokyo", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1689, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Soka University, Hachioji, Tokyo", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100812", + "name": "The Glycan Repository", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://glytoucan.org", + "sampleId": "G00054MO", + "urlPattern": "https://glytoucan.org/Structures/Glycans/{$id}" } ], - "sampleId": "G00054MO", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "G00054MO" }, { + "created": "2019-06-11T14:18:01.783+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MetaCyc is a curated database of experimentally elucidated metabolic pathways from all domains of life. MetaCyc contains 2526 pathways from 2844 different organisms. MetaCyc contains pathways involved in both primary and secondary metabolism, as well as associated metabolites, reactions, enzymes, and genes. The goal of MetaCyc is to catalog the universe of metabolism by storing a representative sample of each experimentally elucidated pathway.", "id": 1691, - "prefix": "metacyc.compound", "mirId": "MIR:00000609", + "modified": "2019-06-11T14:18:01.783+0000", "name": "MetaCyc Compound", + "namespaceEmbeddedInLui": false, "pattern": "^CPD-\\d{5}$", - "description": "MetaCyc is a curated database of experimentally elucidated metabolic pathways from all domains of life. MetaCyc contains 2526 pathways from 2844 different organisms. MetaCyc contains pathways involved in both primary and secondary metabolism, as well as associated metabolites, reactions, enzymes, and genes. The goal of MetaCyc is to catalog the universe of metabolism by storing a representative sample of each experimentally elucidated pathway.", - "created": "2019-06-11T14:18:01.783+0000", - "modified": "2019-06-11T14:18:01.783+0000", + "prefix": "metacyc.compound", "resources": [ { - "id": 1693, - "mirId": "MIR:00100813", - "urlPattern": "https://metacyc.org/compound?orgid=META&id={$id}", - "name": "MetaCyc Metabolic Pathway Database", + "deprecated": false, + "deprecationDate": null, "description": "MetaCyc Metabolic Pathway Database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "CPD-10330", - "resourceHomeUrl": "https://metacyc.org", + "id": 1693, "institution": { - "id": 1692, - "name": "SRI International", - "homeUrl": "https://www.sri.com/", "description": "SRI is an independent, nonprofit research center that works with clients to take the most advanced R&D from the laboratory to the marketplace.", - "rorId": "https://ror.org/05s570m15", + "homeUrl": "https://www.sri.com/", + "id": 1692, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "SRI International", + "rorId": "https://ror.org/05s570m15" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100813", + "name": "MetaCyc Metabolic Pathway Database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://metacyc.org", + "sampleId": "CPD-10330", + "urlPattern": "https://metacyc.org/compound?orgid=META&id={$id}" } ], - "sampleId": "CPD-10330", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CPD-10330" }, { + "created": "2019-06-11T14:18:02.043+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MetaCyc is a curated database of experimentally elucidated metabolic pathways from all domains of life. MetaCyc contains 2526 pathways from 2844 different organisms. MetaCyc contains pathways involved in both primary and secondary metabolism, as well as associated metabolites, reactions, enzymes, and genes. The goal of MetaCyc is to catalog the universe of metabolism by storing a representative sample of each experimentally elucidated pathway.", "id": 1694, - "prefix": "metacyc.reaction", "mirId": "MIR:00000610", + "modified": "2019-06-11T14:18:02.043+0000", "name": "MetaCyc Reaction", + "namespaceEmbeddedInLui": false, "pattern": "^RXN-\\d{5}$", - "description": "MetaCyc is a curated database of experimentally elucidated metabolic pathways from all domains of life. MetaCyc contains 2526 pathways from 2844 different organisms. MetaCyc contains pathways involved in both primary and secondary metabolism, as well as associated metabolites, reactions, enzymes, and genes. The goal of MetaCyc is to catalog the universe of metabolism by storing a representative sample of each experimentally elucidated pathway.", - "created": "2019-06-11T14:18:02.043+0000", - "modified": "2019-06-11T14:18:02.043+0000", + "prefix": "metacyc.reaction", "resources": [ { - "id": 1695, - "mirId": "MIR:00100814", - "urlPattern": "https://metacyc.org/META/NEW-IMAGE?type=REACTION&object={$id}", - "name": "MetaCyc Metabolic Pathway Database - Reaction", + "deprecated": false, + "deprecationDate": null, "description": "MetaCyc Metabolic Pathway Database - Reaction", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "RXN-14904", - "resourceHomeUrl": "https://metacyc.org", + "id": 1695, "institution": { - "id": 1692, - "name": "SRI International", - "homeUrl": "https://www.sri.com/", "description": "SRI is an independent, nonprofit research center that works with clients to take the most advanced R&D from the laboratory to the marketplace.", - "rorId": "https://ror.org/05s570m15", + "homeUrl": "https://www.sri.com/", + "id": 1692, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "SRI International", + "rorId": "https://ror.org/05s570m15" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100814", + "name": "MetaCyc Metabolic Pathway Database - Reaction", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://metacyc.org", + "sampleId": "RXN-14904", + "urlPattern": "https://metacyc.org/META/NEW-IMAGE?type=REACTION&object={$id}" } ], - "sampleId": "RXN-14904", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "RXN-14904" }, { + "created": "2019-06-11T14:18:02.239+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DataONE provides infrastructure facilitating long-term access to scientific research data of relevance to the earth sciences.", "id": 1696, - "prefix": "d1id", "mirId": "MIR:00000611", + "modified": "2019-06-11T14:18:02.239+0000", "name": "DataONE", + "namespaceEmbeddedInLui": false, "pattern": "\\S+", - "description": "DataONE provides infrastructure facilitating long-term access to scientific research data of relevance to the earth sciences.", - "created": "2019-06-11T14:18:02.239+0000", - "modified": "2019-06-11T14:18:02.239+0000", + "prefix": "d1id", "resources": [ { - "id": 1698, - "mirId": "MIR:00100815", - "urlPattern": "https://cn.dataone.org/cn/v2/resolve/{{$id}}", - "name": "DataONE", + "deprecated": false, + "deprecationDate": null, "description": "DataONE", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "00030692-0FE1-4A1B-955E-A2E55D659267", - "resourceHomeUrl": "https://www.dataone.org", + "id": 1698, "institution": { - "id": 1697, - "name": "DataONE, Albuquerque, NM", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1697, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "DataONE, Albuquerque, NM", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100815", + "name": "DataONE", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.dataone.org", + "sampleId": "00030692-0FE1-4A1B-955E-A2E55D659267", + "urlPattern": "https://cn.dataone.org/cn/v2/resolve/{{$id}}" } ], - "sampleId": "00030692-0FE1-4A1B-955E-A2E55D659267", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "00030692-0FE1-4A1B-955E-A2E55D659267" }, { + "created": "2019-06-11T14:18:02.696+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MarRef is a manually curated marine microbial reference genome database that contains completely sequenced genomes.", "id": 1702, - "prefix": "mmp.ref", "mirId": "MIR:00000613", + "modified": "2019-06-11T14:18:02.696+0000", "name": "MarRef", + "namespaceEmbeddedInLui": false, "pattern": "^MMP\\d+.\\d+$", - "description": "MarRef is a manually curated marine microbial reference genome database that contains completely sequenced genomes.", - "created": "2019-06-11T14:18:02.696+0000", - "modified": "2019-06-11T14:18:02.696+0000", + "prefix": "mmp.ref", "resources": [ { - "id": 1704, - "mirId": "MIR:00100817", - "urlPattern": "https://mmp.sfb.uit.no/databases/marref/#/records/{$id}", - "name": "MarRef through SfB", + "deprecated": false, + "deprecationDate": null, "description": "MarRef through SfB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MMP3312982.2", - "resourceHomeUrl": "https://mmp.sfb.uit.no/databases/marref/", + "id": 1704, "institution": { - "id": 1703, - "name": "Center for Bioinformatics (SfB), UiT The Arctic university of Norway", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1703, "location": { "countryCode": "NO", "countryName": "Norway" - } + }, + "name": "Center for Bioinformatics (SfB), UiT The Arctic university of Norway", + "rorId": null }, "location": { "countryCode": "NO", "countryName": "Norway" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100817", + "name": "MarRef through SfB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://mmp.sfb.uit.no/databases/marref/", + "sampleId": "MMP3312982.2", + "urlPattern": "https://mmp.sfb.uit.no/databases/marref/#/records/{$id}" } ], - "sampleId": "MMP3312982.2", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MMP3312982.2" }, { + "created": "2019-06-11T14:18:02.934+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MarDB includes all sequenced marine microbial genomes regardless of level of completeness.", "id": 1705, - "prefix": "mmp.db", "mirId": "MIR:00000614", + "modified": "2019-06-11T14:18:02.934+0000", "name": "MarDB", + "namespaceEmbeddedInLui": false, "pattern": "^MMP\\d+.\\d+$", - "description": "MarDB includes all sequenced marine microbial genomes regardless of level of completeness.", - "created": "2019-06-11T14:18:02.934+0000", - "modified": "2019-06-11T14:18:02.934+0000", + "prefix": "mmp.db", "resources": [ { - "id": 1706, - "mirId": "MIR:00100818", - "urlPattern": "https://mmp.sfb.uit.no/databases/mardb/#/records/{$id}", - "name": "MarDB through SfB", + "deprecated": false, + "deprecationDate": null, "description": "MarDB through SfB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MMP02954345.1", - "resourceHomeUrl": "https://mmp.sfb.uit.no/databases/mardb/", + "id": 1706, "institution": { - "id": 1703, - "name": "Center for Bioinformatics (SfB), UiT The Arctic university of Norway", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1703, "location": { "countryCode": "NO", "countryName": "Norway" - } + }, + "name": "Center for Bioinformatics (SfB), UiT The Arctic university of Norway", + "rorId": null }, "location": { "countryCode": "NO", "countryName": "Norway" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100818", + "name": "MarDB through SfB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://mmp.sfb.uit.no/databases/mardb/", + "sampleId": "MMP02954345.1", + "urlPattern": "https://mmp.sfb.uit.no/databases/mardb/#/records/{$id}" } ], - "sampleId": "MMP02954345.1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MMP02954345.1" }, { + "created": "2019-06-11T14:18:03.141+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MarCat is a gene (protein) catalogue of uncultivable and cultivable marine genes and proteins derived from metagenomics samples.", "id": 1707, - "prefix": "mmp.cat", "mirId": "MIR:00000615", + "modified": "2019-06-11T14:18:03.141+0000", "name": "MarCat", + "namespaceEmbeddedInLui": false, "pattern": "^MMP\\d+.\\d+$", - "description": "MarCat is a gene (protein) catalogue of uncultivable and cultivable marine genes and proteins derived from metagenomics samples.", - "created": "2019-06-11T14:18:03.141+0000", - "modified": "2019-06-11T14:18:03.141+0000", + "prefix": "mmp.cat", "resources": [ { - "id": 1708, - "mirId": "MIR:00100819", - "urlPattern": "https://mmp.sfb.uit.no/databases/marcat/#/records/{$id}", - "name": "MarCat through SfB", + "deprecated": false, + "deprecationDate": null, "description": "MarCat through SfB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MMP743597.11", - "resourceHomeUrl": "https://mmp.sfb.uit.no/databases/marcat/", + "id": 1708, "institution": { - "id": 1703, - "name": "Center for Bioinformatics (SfB), UiT The Arctic university of Norway", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1703, "location": { "countryCode": "NO", "countryName": "Norway" - } + }, + "name": "Center for Bioinformatics (SfB), UiT The Arctic university of Norway", + "rorId": null }, "location": { "countryCode": "NO", "countryName": "Norway" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100819", + "name": "MarCat through SfB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://mmp.sfb.uit.no/databases/marcat/", + "sampleId": "MMP743597.11", + "urlPattern": "https://mmp.sfb.uit.no/databases/marcat/#/records/{$id}" } ], - "sampleId": "MMP743597.11", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MMP743597.11" }, { + "created": "2019-06-11T14:18:03.353+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Tool and data services registry.", "id": 1709, - "prefix": "biotools", "mirId": "MIR:00000616", + "modified": "2019-06-11T14:18:03.353+0000", "name": "BioTools", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9\\_]*$", - "description": "Tool and data services registry.", - "created": "2019-06-11T14:18:03.353+0000", - "modified": "2019-06-11T14:18:03.353+0000", + "prefix": "biotools", "resources": [ { - "id": 1711, - "mirId": "MIR:00100820", - "urlPattern": "https://bio.tools/{$id}", - "name": "BioTools", + "deprecated": false, + "deprecationDate": null, "description": "BioTools", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "uniprotkb", - "resourceHomeUrl": "https://bio.tools/", + "id": 1711, "institution": { - "id": 1710, - "name": "Elixir-DK", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1710, "location": { "countryCode": "DK", "countryName": "Denmark" - } + }, + "name": "Elixir-DK", + "rorId": null }, "location": { "countryCode": "DK", "countryName": "Denmark" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100820", + "name": "BioTools", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://bio.tools/", + "sampleId": "uniprotkb", + "urlPattern": "https://bio.tools/{$id}" } ], - "sampleId": "uniprotkb", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "uniprotkb" }, { + "created": "2019-06-11T14:18:03.584+0000", + "deprecated": false, + "deprecationDate": null, + "description": "International repository of Adverse Outcome Pathways.", "id": 1712, - "prefix": "aop", "mirId": "MIR:00000617", + "modified": "2019-06-11T14:18:03.584+0000", "name": "AOPWiki", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "International repository of Adverse Outcome Pathways.", - "created": "2019-06-11T14:18:03.584+0000", - "modified": "2019-06-11T14:18:03.584+0000", + "prefix": "aop", "resources": [ { - "id": 1714, - "mirId": "MIR:00100821", - "urlPattern": "https://aopwiki.org/aops/{$id}", - "name": "AOPWiki", + "deprecated": false, + "deprecationDate": null, "description": "AOPWiki", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "98", - "resourceHomeUrl": "https://aopwiki.org/", + "id": 1714, "institution": { - "id": 1713, - "name": "European Commision - DG Joint Research Centre and U.S Environmental Protection Agency", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1713, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "European Commision - DG Joint Research Centre and U.S Environmental Protection Agency", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100821", + "name": "AOPWiki", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://aopwiki.org/", + "sampleId": "98", + "urlPattern": "https://aopwiki.org/aops/{$id}" } ], - "sampleId": "98", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "98" }, { + "created": "2019-06-11T14:18:03.826+0000", + "deprecated": false, + "deprecationDate": null, + "description": "NASA's GeneLab gathers spaceflight genomic data, RNA and protein expression, and metabolic profiles, interfaces with existing databases for expanded research, will offer tools to conduct data analysis, and is in the process of creating a place online where scientists, researchers, teachers and students can connect with their peers, share their results, and communicate with NASA.", "id": 1715, - "prefix": "ngl", "mirId": "MIR:00000618", + "modified": "2019-06-11T14:18:03.826+0000", "name": "NASA GeneLab", + "namespaceEmbeddedInLui": false, "pattern": "^GLDS-\\d+$", - "description": "NASA's GeneLab gathers spaceflight genomic data, RNA and protein expression, and metabolic profiles, interfaces with existing databases for expanded research, will offer tools to conduct data analysis, and is in the process of creating a place online where scientists, researchers, teachers and students can connect with their peers, share their results, and communicate with NASA.", - "created": "2019-06-11T14:18:03.826+0000", - "modified": "2019-06-11T14:18:03.826+0000", + "prefix": "ngl", "resources": [ { - "id": 1717, - "mirId": "MIR:00100822", - "urlPattern": "https://genelab-data.ndc.nasa.gov/genelab/accession/{$id}", - "name": "NASA GeneLab", + "deprecated": false, + "deprecationDate": null, "description": "NASA GeneLab", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "GLDS-141", - "resourceHomeUrl": "https://genelab-data.ndc.nasa.gov/genelab/", + "id": 1717, "institution": { - "id": 1716, - "name": "NASA's Ames Research Center", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1716, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "NASA's Ames Research Center", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100822", + "name": "NASA GeneLab", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://genelab-data.ndc.nasa.gov/genelab/", + "sampleId": "GLDS-141", + "urlPattern": "https://genelab-data.ndc.nasa.gov/genelab/accession/{$id}" } ], - "sampleId": "GLDS-141", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "GLDS-141" }, { + "created": "2019-06-11T14:18:02.470+0000", + "deprecated": false, + "deprecationDate": null, + "description": "CATH is a classification of protein structural domains. We group protein domains into superfamilies when there is sufficient evidence they have diverged from a common ancestor. CATH can be used to predict structural and functional information directly from protein sequence.", "id": 1699, - "prefix": "cath", "mirId": "MIR:00000612", + "modified": "2021-02-01T16:12:25.234+0000", "name": "CATH Protein Structural Domain Superfamily", + "namespaceEmbeddedInLui": false, "pattern": "^[1-6]\\.[0-9]+\\.[0-9]+\\.[0-9]+$", - "description": "CATH is a classification of protein structural domains. We group protein domains into superfamilies when there is sufficient evidence they have diverged from a common ancestor. CATH can be used to predict structural and functional information directly from protein sequence.", - "created": "2019-06-11T14:18:02.470+0000", - "modified": "2021-02-01T16:12:25.234+0000", + "prefix": "cath", "resources": [ { - "id": 1701, - "mirId": "MIR:00100816", - "urlPattern": "http://www.cathdb.info/cathnode/{$id}", - "name": "CATH Node through UCL", + "deprecated": false, + "deprecationDate": null, "description": "CATH Node through UCL", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1.10.8.10", - "resourceHomeUrl": "http://www.cathdb.info", + "id": 1701, "institution": { - "id": 1700, - "name": "University College London", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1700, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "University College London", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100816", + "name": "CATH Node through UCL", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.cathdb.info", + "sampleId": "1.10.8.10", + "urlPattern": "http://www.cathdb.info/cathnode/{$id}" } ], - "sampleId": "1.10.8.10", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1.10.8.10" }, { + "created": "2019-06-11T14:17:59.000+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Cellosaurus is a knowledge resource on cell lines. It attempts to describe all cell lines used in biomedical research. Its scope includes: Immortalized cell lines; naturally immortal cell lines (example: stem cell lines); finite life cell lines when those are distributed and used widely; vertebrate cell line with an emphasis on human, mouse and rat cell lines; and invertebrate (insects and ticks) cell lines. Its scope does not include primary cell lines (with the exception of the finite life cell lines described above) and plant cell lines.", "id": 1662, - "prefix": "cellosaurus", "mirId": "MIR:00000598", + "modified": "2021-02-01T16:38:40.925+0000", "name": "Cellosaurus", + "namespaceEmbeddedInLui": false, "pattern": "^CVCL_[A-Z0-9]{4}$", - "description": "The Cellosaurus is a knowledge resource on cell lines. It attempts to describe all cell lines used in biomedical research. Its scope includes: Immortalized cell lines; naturally immortal cell lines (example: stem cell lines); finite life cell lines when those are distributed and used widely; vertebrate cell line with an emphasis on human, mouse and rat cell lines; and invertebrate (insects and ticks) cell lines. Its scope does not include primary cell lines (with the exception of the finite life cell lines described above) and plant cell lines.", - "created": "2019-06-11T14:17:59.000+0000", - "modified": "2021-02-01T16:38:40.925+0000", + "prefix": "cellosaurus", "resources": [ { - "id": 1663, - "mirId": "MIR:00100799", - "urlPattern": "https://web.expasy.org/cellosaurus/{$id}", - "name": "Cellosaurus through SIB", + "deprecated": false, + "deprecationDate": null, "description": "Cellosaurus through SIB", - "official": false, - "providerCode": "sib", - "sampleId": "CVCL_0030", - "resourceHomeUrl": "https://web.expasy.org/cellosaurus/", + "id": 1663, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100799", + "name": "Cellosaurus through SIB", + "official": false, + "providerCode": "sib", + "resourceHomeUrl": "https://web.expasy.org/cellosaurus/", + "sampleId": "CVCL_0030", + "urlPattern": "https://web.expasy.org/cellosaurus/{$id}" } ], - "sampleId": "CVCL_0030", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CVCL_0030" }, { + "created": "2019-06-11T14:18:04.072+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Endogenous retroviruses (ERVs) are common in vertebrate genomes; a typical mammalian genome contains tens to hundreds of thousands of ERV elements. Most ERVs are evolutionarily old and have accumulated multiple mutations, playing important roles in physiology and disease processes. The Human Endogenous Retrovirus Database (hERV) is compiled from the human genome nucleotide sequences obtained from Human Genome Projects, and screens those sequences for hERVs, whilst continuously improving classification and characterization of retroviral families. It provides access to individual reconstructed HERV elements, their sequence, structure and features.", "id": 1718, - "prefix": "erv", "mirId": "MIR:00000619", + "modified": "2019-06-11T14:18:04.072+0000", "name": "Human Endogenous Retrovirus Database", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9\\-\\_]+$", - "description": "Endogenous retroviruses (ERVs) are common in vertebrate genomes; a typical mammalian genome contains tens to hundreds of thousands of ERV elements. Most ERVs are evolutionarily old and have accumulated multiple mutations, playing important roles in physiology and disease processes. The Human Endogenous Retrovirus Database (hERV) is compiled from the human genome nucleotide sequences obtained from Human Genome Projects, and screens those sequences for hERVs, whilst continuously improving classification and characterization of retroviral families. It provides access to individual reconstructed HERV elements, their sequence, structure and features.", - "created": "2019-06-11T14:18:04.072+0000", - "modified": "2019-06-11T14:18:04.072+0000", + "prefix": "erv", "resources": [ { - "id": 1720, - "mirId": "MIR:00100823", - "urlPattern": "https://herv.img.cas.cz/s/{$id}", - "name": "Human Endogenous Retrovirus Database", + "deprecated": false, + "deprecationDate": null, "description": "Human Endogenous Retrovirus Database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "THE1B", - "resourceHomeUrl": "https://herv.img.cas.cz/", + "id": 1720, "institution": { - "id": 1719, - "name": "Institute of Molecular Genetics, Academy of Sciences of the Czech Republic", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1719, "location": { "countryCode": "CZ", "countryName": "Czech Republic" - } + }, + "name": "Institute of Molecular Genetics, Academy of Sciences of the Czech Republic", + "rorId": null }, "location": { "countryCode": "CZ", "countryName": "Czech Republic" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100823", + "name": "Human Endogenous Retrovirus Database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://herv.img.cas.cz/", + "sampleId": "THE1B", + "urlPattern": "https://herv.img.cas.cz/s/{$id}" } ], - "sampleId": "THE1B", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "THE1B" }, { + "created": "2019-06-11T14:18:04.316+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Natural Product-Drug Interaction Research Data Repository, a publicly accessible database where researchers can access scientific results, raw data, and recommended approaches to optimally assess the clinical significance of pharmacokinetic natural product-drug interactions (PK-NPDIs).", "id": 1721, - "prefix": "napdi", "mirId": "MIR:00000620", + "modified": "2019-06-11T14:18:04.316+0000", "name": "Natural Product-Drug Interaction Research Data Repository", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]+$", - "description": "The Natural Product-Drug Interaction Research Data Repository, a publicly accessible database where researchers can access scientific results, raw data, and recommended approaches to optimally assess the clinical significance of pharmacokinetic natural product-drug interactions (PK-NPDIs).", - "created": "2019-06-11T14:18:04.316+0000", - "modified": "2019-06-11T14:18:04.316+0000", + "prefix": "napdi", "resources": [ { - "id": 1723, - "mirId": "MIR:00100824", - "urlPattern": "https://repo.napdi.org/study/{$id}", - "name": "Natural Product-Drug Interaction Research Data Repository", + "deprecated": false, + "deprecationDate": null, "description": "Natural Product-Drug Interaction Research Data Repository", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "28", - "resourceHomeUrl": "https://repo.napdi.org/", + "id": 1723, "institution": { - "id": 1722, - "name": "National Center for Complementary and Integrative Health, National Institutes of Health, Washington D.C.", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1722, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Complementary and Integrative Health, National Institutes of Health, Washington D.C.", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100824", + "name": "Natural Product-Drug Interaction Research Data Repository", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://repo.napdi.org/", + "sampleId": "28", + "urlPattern": "https://repo.napdi.org/study/{$id}" } ], - "sampleId": "28", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "28" }, { + "created": "2019-06-11T14:18:04.557+0000", + "deprecated": false, + "deprecationDate": null, + "description": "arrayMap is a collection of pre-processed oncogenomic array data sets and CNA (somatic copy number aberrations) profiles. CNA are a type of mutation commonly found in cancer genomes. arrayMap data is assembled from public repositories and supplemented with additional sources, using custom curation pipelines. This information has been mapped to multiple editions of the reference human genome.", "id": 1724, - "prefix": "arraymap", "mirId": "MIR:00000621", + "modified": "2019-06-11T14:18:04.557+0000", "name": "ArrayMap", + "namespaceEmbeddedInLui": false, "pattern": "^[\\w\\-:,]{3,64}$", - "description": "arrayMap is a collection of pre-processed oncogenomic array data sets and CNA (somatic copy number aberrations) profiles. CNA are a type of mutation commonly found in cancer genomes. arrayMap data is assembled from public repositories and supplemented with additional sources, using custom curation pipelines. This information has been mapped to multiple editions of the reference human genome.", - "created": "2019-06-11T14:18:04.557+0000", - "modified": "2019-06-11T14:18:04.557+0000", + "prefix": "arraymap", "resources": [ { - "id": 1725, - "mirId": "MIR:00100825", - "urlPattern": "https://www.arraymap.org/pgx:{$id}", - "name": "ArrayMap", + "deprecated": false, + "deprecationDate": null, "description": "ArrayMap", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "icdom:8500_3", - "resourceHomeUrl": "https://www.arraymap.org", + "id": 1725, "institution": { - "id": 1385, - "name": "Institute of Molecular Life Sciences, University of Zurich, Zurich", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1385, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "Institute of Molecular Life Sciences, University of Zurich, Zurich", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100825", + "name": "ArrayMap", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.arraymap.org", + "sampleId": "icdom:8500_3", + "urlPattern": "https://www.arraymap.org/pgx:{$id}" } ], - "sampleId": "icdom:8500_3", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "icdom:8500_3" }, { + "created": "2019-06-11T14:18:04.748+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Benchmark Energy & Geometry Database (BEGDB) collects results of highly accurate quantum mechanics (QM) calculations of molecular structures, energies and properties. These data can serve as benchmarks for testing and parameterization of other computational methods.", "id": 1726, - "prefix": "begdb", "mirId": "MIR:00000622", + "modified": "2019-06-11T14:18:04.748+0000", "name": "Benchmark Energy & Geometry Database", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]+$", - "description": "The Benchmark Energy & Geometry Database (BEGDB) collects results of highly accurate quantum mechanics (QM) calculations of molecular structures, energies and properties. These data can serve as benchmarks for testing and parameterization of other computational methods.", - "created": "2019-06-11T14:18:04.748+0000", - "modified": "2019-06-11T14:18:04.748+0000", + "prefix": "begdb", "resources": [ { - "id": 1728, - "mirId": "MIR:00100826", - "urlPattern": "http://www.begdb.com/index.php?action=oneMolecule&state=show&id={$id}", - "name": "Benchmark Energy & Geometry Database", + "deprecated": false, + "deprecationDate": null, "description": "Benchmark Energy & Geometry Database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "4214", - "resourceHomeUrl": "http://www.begdb.com", + "id": 1728, "institution": { - "id": 1727, - "name": "Institute of Organic Chemistry and Biochemistry, Academy of Sciences of the Czech Republic, Prague", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1727, "location": { "countryCode": "CZ", "countryName": "Czech Republic" - } + }, + "name": "Institute of Organic Chemistry and Biochemistry, Academy of Sciences of the Czech Republic, Prague", + "rorId": null }, "location": { "countryCode": "CZ", "countryName": "Czech Republic" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100826", + "name": "Benchmark Energy & Geometry Database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.begdb.com", + "sampleId": "4214", + "urlPattern": "http://www.begdb.com/index.php?action=oneMolecule&state=show&id={$id}" } ], - "sampleId": "4214", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "4214" }, { + "created": "2019-06-11T14:18:05.215+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Sequencing Initiative Suomi (SISu) project is an international collaboration to harmonize and aggregate whole genome and exome sequence data from Finnish samples, providing data for researchers and clinicians. The SISu project allows for the search of variants to determine their attributes and occurrence in Finnish cohorts, and provides summary data on single nucleotide variants and indels from exomes, sequenced in disease-specific and population genetic studies.", "id": 1732, - "prefix": "sisu", "mirId": "MIR:00000624", + "modified": "2019-06-11T14:18:05.215+0000", "name": "SISu", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]+:[0-9]+$", - "description": "The Sequencing Initiative Suomi (SISu) project is an international collaboration to harmonize and aggregate whole genome and exome sequence data from Finnish samples, providing data for researchers and clinicians. The SISu project allows for the search of variants to determine their attributes and occurrence in Finnish cohorts, and provides summary data on single nucleotide variants and indels from exomes, sequenced in disease-specific and population genetic studies.", - "created": "2019-06-11T14:18:05.215+0000", - "modified": "2019-06-11T14:18:05.215+0000", + "prefix": "sisu", "resources": [ { - "id": 1734, - "mirId": "MIR:00100828", - "urlPattern": "http://search.sisuproject.fi/#/variant/{$id}", - "name": "SISu", + "deprecated": false, + "deprecationDate": null, "description": "SISu", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "17:41223048", - "resourceHomeUrl": "http://www.sisuproject.fi/", + "id": 1734, "institution": { - "id": 1733, - "name": "Sequencing Initiative Suomi project (SISu), Institute for Molecular Medicine Finland (FIMM), University of Helsinki, Helsinki", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1733, "location": { "countryCode": "FI", "countryName": "Finland" - } + }, + "name": "Sequencing Initiative Suomi project (SISu), Institute for Molecular Medicine Finland (FIMM), University of Helsinki, Helsinki", + "rorId": null }, "location": { "countryCode": "FI", "countryName": "Finland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100828", + "name": "SISu", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.sisuproject.fi/", + "sampleId": "17:41223048", + "urlPattern": "http://search.sisuproject.fi/#/variant/{$id}" } ], - "sampleId": "17:41223048", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "17:41223048" }, { + "created": "2019-06-11T14:18:05.468+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Universal Spectrum Identifier (USI) is a compound identifier that provides an abstract path to refer to a single spectrum generated by a mass spectrometer, and potentially the ion that is thought to have produced it.", "id": 1735, - "prefix": "mzspec", "mirId": "MIR:00000625", + "modified": "2019-06-11T14:18:05.468+0000", "name": "Universal Spectrum Identifier", + "namespaceEmbeddedInLui": true, "pattern": "^mzspec:.+$", - "description": "The Universal Spectrum Identifier (USI) is a compound identifier that provides an abstract path to refer to a single spectrum generated by a mass spectrometer, and potentially the ion that is thought to have produced it.", - "created": "2019-06-11T14:18:05.468+0000", - "modified": "2019-06-11T14:18:05.468+0000", + "prefix": "mzspec", "resources": [ { + "deprecated": false, + "deprecationDate": null, + "description": "Universal Spectrum Identifier through Peptide Atlas", "id": 1737, + "institution": { + "description": "ISB was created in 2000 as the first-ever institute dedicated to systems biology.", + "homeUrl": "https://isbscience.org/", + "id": 193, + "location": { + "countryCode": "US", + "countryName": "United States" + }, + "name": "Institute for Systems Biology", + "rorId": "https://ror.org/02tpgw303" + }, + "location": { + "countryCode": "US", + "countryName": "United States" + }, "mirId": "MIR:00100829", - "urlPattern": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/ShowObservedSpectrum?usi=mzspec:{$id}", "name": "Universal Spectrum Identifier through Peptide Atlas", - "description": "Universal Spectrum Identifier through Peptide Atlas", "official": false, "providerCode": "CURATOR_REVIEW", - "sampleId": "PXD002255::ES_XP_Ubi_97H_HCD_349:scan:9617:LAEIYVNSSFYK/2", "resourceHomeUrl": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/ShowObservedSpectrum", + "sampleId": "PXD002255::ES_XP_Ubi_97H_HCD_349:scan:9617:LAEIYVNSSFYK/2", + "urlPattern": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/ShowObservedSpectrum?usi=mzspec:{$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "Institute for Systems Biology (ISB), Seattle, USA is an independent research institute focusing on systems biology.", + "id": 2394, "institution": { - "id": 193, - "name": "Institute for Systems Biology", - "homeUrl": "https://isbscience.org/", "description": "ISB was created in 2000 as the first-ever institute dedicated to systems biology.", - "rorId": "https://ror.org/02tpgw303", + "homeUrl": "https://isbscience.org/", + "id": 193, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Institute for Systems Biology", + "rorId": "https://ror.org/02tpgw303" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 2394, "mirId": "MIR:00000771", - "urlPattern": "http://proteomecentral.proteomexchange.org/usi/?usi=mzspec:{$id}", "name": "Institute for Systems Biology, Seattle, USA", - "description": "Institute for Systems Biology (ISB), Seattle, USA is an independent research institute focusing on systems biology.", "official": true, "providerCode": "pc", - "sampleId": "PXD000865:00603_F01_P004608_B00F_A00_R1:scan:14453:SSLLDVLAAR/2", "resourceHomeUrl": "http://proteomecentral.proteomexchange.org/", - "institution": { - "id": 193, - "name": "Institute for Systems Biology", - "homeUrl": "https://isbscience.org/", - "description": "ISB was created in 2000 as the first-ever institute dedicated to systems biology.", - "rorId": "https://ror.org/02tpgw303", - "location": { - "countryCode": "US", - "countryName": "United States" - } - }, - "location": { - "countryCode": "US", - "countryName": "United States" - }, - "deprecated": false, - "deprecationDate": null + "sampleId": "PXD000865:00603_F01_P004608_B00F_A00_R1:scan:14453:SSLLDVLAAR/2", + "urlPattern": "http://proteomecentral.proteomexchange.org/usi/?usi=mzspec:{$id}" } ], - "sampleId": "PXD002255::ES_XP_Ubi_97H_HCD_349:scan:9617:LAEIYVNSSFYK/2", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "PXD002255::ES_XP_Ubi_97H_HCD_349:scan:9617:LAEIYVNSSFYK/2" }, { + "created": "2019-06-11T14:18:05.694+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Repeated CRISPR (\"clustered regularly interspaced short palindromic repeats\") elements found in archaebacteria and eubacteria are believed to defend against viral infection, potentially targeting invading DNA for degradation. CRISPRdb is a database that stores information on CRISPRs that are automatically extracted from newly released genome sequence data.", "id": 1738, - "prefix": "crisprdb", "mirId": "MIR:00000626", + "modified": "2019-06-11T14:18:05.694+0000", "name": "CRISPRdb", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]+$", - "description": "Repeated CRISPR (\"clustered regularly interspaced short palindromic repeats\") elements found in archaebacteria and eubacteria are believed to defend against viral infection, potentially targeting invading DNA for degradation. CRISPRdb is a database that stores information on CRISPRs that are automatically extracted from newly released genome sequence data.", - "created": "2019-06-11T14:18:05.694+0000", - "modified": "2019-06-11T14:18:05.694+0000", + "prefix": "crisprdb", "resources": [ { - "id": 1740, - "mirId": "MIR:00100830", - "urlPattern": "http://crispr.i2bc.paris-saclay.fr/cgi-bin/crispr/SpecieProperties_db.cgi?Taxon_id[]={$id}", - "name": "CRISPRdb", + "deprecated": false, + "deprecationDate": null, "description": "CRISPRdb", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "551115", - "resourceHomeUrl": "http://crispr.i2bc.paris-saclay.fr/", + "id": 1740, "institution": { - "id": 1739, - "name": "Université Paris-Sud, Institut de Génétique et Microbiologie, Orsay,", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1739, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Universit\u00e9 Paris-Sud, Institut de G\u00e9n\u00e9tique et Microbiologie, Orsay,", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100830", + "name": "CRISPRdb", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://crispr.i2bc.paris-saclay.fr/", + "sampleId": "551115", + "urlPattern": "http://crispr.i2bc.paris-saclay.fr/cgi-bin/crispr/SpecieProperties_db.cgi?Taxon_id[]={$id}" } ], - "sampleId": "551115", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "551115" }, { + "created": "2019-06-11T14:18:05.948+0000", + "deprecated": false, + "deprecationDate": null, + "description": "GnpIS is an integrative information system focused on plants and fungal pests. It provides both genetic (e.g. genetic maps, quantitative trait loci, markers, single nucleotide polymorphisms, germplasms and genotypes) and genomic data (e.g. genomic sequences, physical maps, genome annotation and expression data) for species of agronomical interest.", "id": 1741, - "prefix": "gnpis", "mirId": "MIR:00000627", + "modified": "2019-06-11T14:18:05.948+0000", "name": "GnpIS", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9]+$", - "description": "GnpIS is an integrative information system focused on plants and fungal pests. It provides both genetic (e.g. genetic maps, quantitative trait loci, markers, single nucleotide polymorphisms, germplasms and genotypes) and genomic data (e.g. genomic sequences, physical maps, genome annotation and expression data) for species of agronomical interest.", - "created": "2019-06-11T14:18:05.948+0000", - "modified": "2019-06-11T14:18:05.948+0000", + "prefix": "gnpis", "resources": [ { - "id": 1743, - "mirId": "MIR:00100831", - "urlPattern": "https://urgi.versailles.inra.fr/gnpis/#result/term={$id}", - "name": "GnpIS", + "deprecated": false, + "deprecationDate": null, "description": "GnpIS", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "AY109603", - "resourceHomeUrl": "https://urgi.versailles.inra.fr/gnpis/", + "id": 1743, "institution": { - "id": 1742, - "name": "URGI (Research Unit in Genomics-Info), INRA de Versailles, Route de Saint-Cyr, Versailles", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1742, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "URGI (Research Unit in Genomics-Info), INRA de Versailles, Route de Saint-Cyr, Versailles", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100831", + "name": "GnpIS", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://urgi.versailles.inra.fr/gnpis/", + "sampleId": "AY109603", + "urlPattern": "https://urgi.versailles.inra.fr/gnpis/#result/term={$id}" } ], - "sampleId": "AY109603", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AY109603" }, { + "created": "2019-06-11T14:18:06.185+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Sea lice (Lepeophtheirus salmonis and Caligus species) are the major pathogens of salmon, significantly impacting upon the global salmon farming industry. Lice control is primarily accomplished through chemotherapeutants, though emerging resistance necessitates the development of new treatment methods (biological agents, prophylactics and new drugs). LiceBase is a database for sea lice genomics, providing genome annotation of the Atlantic salmon louse Lepeophtheirus salmonis, a genome browser, and access to related high-thoughput genomics data. LiceBase also mines and stores data from related genome sequencing and functional genomics projects.", "id": 1744, - "prefix": "licebase", "mirId": "MIR:00000628", + "modified": "2019-06-11T14:18:06.185+0000", "name": "LiceBase", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9\\-\\/]+$", - "description": "Sea lice (Lepeophtheirus salmonis and Caligus species) are the major pathogens of salmon, significantly impacting upon the global salmon farming industry. Lice control is primarily accomplished through chemotherapeutants, though emerging resistance necessitates the development of new treatment methods (biological agents, prophylactics and new drugs). LiceBase is a database for sea lice genomics, providing genome annotation of the Atlantic salmon louse Lepeophtheirus salmonis, a genome browser, and access to related high-thoughput genomics data. LiceBase also mines and stores data from related genome sequencing and functional genomics projects.", - "created": "2019-06-11T14:18:06.185+0000", - "modified": "2019-06-11T14:18:06.185+0000", + "prefix": "licebase", "resources": [ { - "id": 1746, - "mirId": "MIR:00100832", - "urlPattern": "https://licebase.org/?q={$id}", - "name": "LiceBase", + "deprecated": false, + "deprecationDate": null, "description": "LiceBase", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "EMLSAT00000003403", - "resourceHomeUrl": "https://licebase.org", + "id": 1746, "institution": { - "id": 1745, - "name": "Sea Lice Research Centre (SLRC), University of Bergen", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1745, "location": { "countryCode": "NO", "countryName": "Norway" - } + }, + "name": "Sea Lice Research Centre (SLRC), University of Bergen", + "rorId": null }, "location": { "countryCode": "NO", "countryName": "Norway" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100832", + "name": "LiceBase", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://licebase.org", + "sampleId": "EMLSAT00000003403", + "urlPattern": "https://licebase.org/?q={$id}" } ], - "sampleId": "EMLSAT00000003403", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "EMLSAT00000003403" }, { + "created": "2019-06-11T14:18:06.412+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The SugarBind Database captures knowledge of glycan binding of human pathogen lectins and adhesins, where each glycan-protein binding pair is associated with at least one published reference. It provides information on the pathogen agent, the lectin/adhesin involved, and the human glycan ligand. This collection provides information on ligands.", "id": 1747, - "prefix": "sugarbind", "mirId": "MIR:00000629", + "modified": "2019-06-11T14:18:06.412+0000", "name": "SugarBind", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z]+\\/[0-9]+$", - "description": "The SugarBind Database captures knowledge of glycan binding of human pathogen lectins and adhesins, where each glycan-protein binding pair is associated with at least one published reference. It provides information on the pathogen agent, the lectin/adhesin involved, and the human glycan ligand. This collection provides information on ligands.", - "created": "2019-06-11T14:18:06.412+0000", - "modified": "2019-06-11T14:18:06.412+0000", + "prefix": "sugarbind", "resources": [ { - "id": 1749, - "mirId": "MIR:00100833", - "urlPattern": "http://sugarbind.expasy.org/{$id}", - "name": "SugarBind", + "deprecated": false, + "deprecationDate": null, "description": "SugarBind", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "lectins/172", - "resourceHomeUrl": "http://sugarbind.expasy.org/", + "id": 1749, "institution": { - "id": 1748, - "name": "Proteome Informatics Group, SIB Swiss Institute of Bioinformatics, Geneva", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1748, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "Proteome Informatics Group, SIB Swiss Institute of Bioinformatics, Geneva", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100833", + "name": "SugarBind", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://sugarbind.expasy.org/", + "sampleId": "lectins/172", + "urlPattern": "http://sugarbind.expasy.org/{$id}" } ], - "sampleId": "lectins/172", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "lectins/172" }, { + "created": "2019-06-11T14:18:06.653+0000", + "deprecated": false, + "deprecationDate": null, + "description": "RNAcentral is a public resource that offers integrated access to a comprehensive and up-to-date set of non-coding RNA sequences provided by a collaborating group of Expert Databases.", "id": 1750, - "prefix": "rnacentral", "mirId": "MIR:00000630", + "modified": "2019-06-11T14:18:06.653+0000", "name": "RNAcentral", + "namespaceEmbeddedInLui": false, "pattern": "^URS[0-9A-F]{10}(\\_\\d+)?$", - "description": "RNAcentral is a public resource that offers integrated access to a comprehensive and up-to-date set of non-coding RNA sequences provided by a collaborating group of Expert Databases.", - "created": "2019-06-11T14:18:06.653+0000", - "modified": "2019-06-11T14:18:06.653+0000", + "prefix": "rnacentral", "resources": [ { - "id": 1751, - "mirId": "MIR:00100834", - "urlPattern": "https://rnacentral.org/rna/{$id}", - "name": "RNAcentral through EMBL-EBI", + "deprecated": false, + "deprecationDate": null, "description": "RNAcentral through EMBL-EBI", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "URS0000759CF4", - "resourceHomeUrl": "https://rnacentral.org/", + "id": 1751, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100834", + "name": "RNAcentral through EMBL-EBI", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://rnacentral.org/", + "sampleId": "URS0000759CF4", + "urlPattern": "https://rnacentral.org/rna/{$id}" } ], - "sampleId": "URS0000759CF4", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "URS0000759CF4" }, { + "created": "2019-06-11T14:18:06.853+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MicroScope is an integrative resource that supports systematic and efficient revision of microbial genome annotation, data management and comparative analysis.", "id": 1752, - "prefix": "microscope", "mirId": "MIR:00000631", + "modified": "2019-06-11T14:18:06.853+0000", "name": "MicroScope", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "MicroScope is an integrative resource that supports systematic and efficient revision of microbial genome annotation, data management and comparative analysis.", - "created": "2019-06-11T14:18:06.853+0000", - "modified": "2019-06-11T14:18:06.853+0000", + "prefix": "microscope", "resources": [ { - "id": 1754, - "mirId": "MIR:00100836", - "urlPattern": "http://www.genoscope.cns.fr/agc/microscope/mage/info.php?id={$id}", - "name": "MicroScope", + "deprecated": false, + "deprecationDate": null, "description": "MicroScope", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "5601141", - "resourceHomeUrl": "http://www.genoscope.cns.fr/agc/microscope", + "id": 1754, "institution": { - "id": 1753, - "name": "Université Évry-Val-d'Essonne, CEA, Institut de Génomique - Genoscope, Laboratoire d'Analyses Bioinformatiques pour la Génomique et le Métabolisme, Evry", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1753, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Universit\u00e9 \u00c9vry-Val-d'Essonne, CEA, Institut de G\u00e9nomique - Genoscope, Laboratoire d'Analyses Bioinformatiques pour la G\u00e9nomique et le M\u00e9tabolisme, Evry", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100836", + "name": "MicroScope", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.genoscope.cns.fr/agc/microscope", + "sampleId": "5601141", + "urlPattern": "http://www.genoscope.cns.fr/agc/microscope/mage/info.php?id={$id}" } ], - "sampleId": "5601141", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "5601141" }, { + "created": "2019-06-11T14:18:07.113+0000", + "deprecated": false, + "deprecationDate": null, + "description": "A database of genome-wide annotations of regulatory sites. It contains annotations for 17 prokaryotes and 3 eukaryotes. The database frontend offers an intuitive interface showing genomic information in a graphical form.", "id": 1755, - "prefix": "swissregulon", "mirId": "MIR:00000632", + "modified": "2019-06-11T14:18:07.113+0000", "name": "SwissRegulon", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9]+$", - "description": "A database of genome-wide annotations of regulatory sites. It contains annotations for 17 prokaryotes and 3 eukaryotes. The database frontend offers an intuitive interface showing genomic information in a graphical form.", - "created": "2019-06-11T14:18:07.113+0000", - "modified": "2019-06-11T14:18:07.113+0000", + "prefix": "swissregulon", "resources": [ { - "id": 1756, - "mirId": "MIR:00100837", - "urlPattern": "http://swissregulon.unibas.ch/query/{$id}", - "name": "SwissRegulon", + "deprecated": false, + "deprecationDate": null, "description": "SwissRegulon", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "AHR", - "resourceHomeUrl": "http://swissregulon.unibas.ch", + "id": 1756, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100837", + "name": "SwissRegulon", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://swissregulon.unibas.ch", + "sampleId": "AHR", + "urlPattern": "http://swissregulon.unibas.ch/query/{$id}" } ], - "sampleId": "AHR", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "AHR" }, { + "created": "2019-06-11T14:18:07.321+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Database of validation results for ligands and non-standard residues in the Protein Data Bank.", "id": 1757, - "prefix": "validatordb", "mirId": "MIR:00000633", + "modified": "2019-06-11T14:18:07.321+0000", "name": "ValidatorDB", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9\\/]+$", - "description": "Database of validation results for ligands and non-standard residues in the Protein Data Bank.", - "created": "2019-06-11T14:18:07.321+0000", - "modified": "2019-06-11T14:18:07.321+0000", + "prefix": "validatordb", "resources": [ { - "id": 1759, - "mirId": "MIR:00100838", - "urlPattern": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/{$id}", - "name": "ValidatorDB", + "deprecated": false, + "deprecationDate": null, "description": "ValidatorDB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ByStructure/2h6o", - "resourceHomeUrl": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/", + "id": 1759, "institution": { - "id": 1758, - "name": "Central European Institute of Technology", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1758, "location": { "countryCode": "CZ", "countryName": "Czech Republic" - } + }, + "name": "Central European Institute of Technology", + "rorId": null }, "location": { "countryCode": "CZ", "countryName": "Czech Republic" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100838", + "name": "ValidatorDB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/", + "sampleId": "ByStructure/2h6o", + "urlPattern": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/{$id}" } ], - "sampleId": "ByStructure/2h6o", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ByStructure/2h6o" }, { + "created": "2019-06-11T14:18:07.548+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Database of the dielectric properties of biological tissues.", "id": 1760, - "prefix": "biominder", "mirId": "MIR:00000634", + "modified": "2019-06-11T14:18:07.548+0000", "name": "Bio-MINDER Tissue Database", + "namespaceEmbeddedInLui": false, "pattern": "^[a-z0-9\\-]+$", - "description": "Database of the dielectric properties of biological tissues.", - "created": "2019-06-11T14:18:07.548+0000", - "modified": "2019-06-11T14:18:07.548+0000", + "prefix": "biominder", "resources": [ { - "id": 1762, - "mirId": "MIR:00100839", - "urlPattern": "https://datalab.rwth-aachen.de/MINDER/resource/{$id}", - "name": "Bio-MINDER Tissue Database", + "deprecated": false, + "deprecationDate": null, "description": "Bio-MINDER Tissue Database", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "aef4c195-9cf9-46db-a12a-7cfd1ff3eec3", - "resourceHomeUrl": "https://datalab.rwth-aachen.de/MINDER", + "id": 1762, "institution": { - "id": 1761, - "name": "RWTH Aachen University / NUIG Galway", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1761, "location": { "countryCode": "IE", "countryName": "Ireland" - } + }, + "name": "RWTH Aachen University / NUIG Galway", + "rorId": null }, "location": { "countryCode": "IE", "countryName": "Ireland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100839", + "name": "Bio-MINDER Tissue Database", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://datalab.rwth-aachen.de/MINDER", + "sampleId": "aef4c195-9cf9-46db-a12a-7cfd1ff3eec3", + "urlPattern": "https://datalab.rwth-aachen.de/MINDER/resource/{$id}" } ], - "sampleId": "aef4c195-9cf9-46db-a12a-7cfd1ff3eec3", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "aef4c195-9cf9-46db-a12a-7cfd1ff3eec3" }, { + "created": "2019-06-11T14:18:07.777+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Neurovault is an online repository for statistical maps, parcellations and atlases of the brain. This collection references sets (collections) of images.", "id": 1763, - "prefix": "neurovault.collection", "mirId": "MIR:00000635", + "modified": "2019-06-11T14:18:07.777+0000", "name": "NeuroVault Collection", + "namespaceEmbeddedInLui": false, "pattern": "^[1-9][0-9]*$", - "description": "Neurovault is an online repository for statistical maps, parcellations and atlases of the brain. This collection references sets (collections) of images.", - "created": "2019-06-11T14:18:07.777+0000", - "modified": "2019-06-11T14:18:07.777+0000", + "prefix": "neurovault.collection", "resources": [ { - "id": 1764, - "mirId": "MIR:00100840", - "urlPattern": "https://neurovault.org/collections/{$id}", - "name": "NeuroVault Collection", + "deprecated": false, + "deprecationDate": null, "description": "NeuroVault Collection", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "3304", - "resourceHomeUrl": "http://neurovault.org", + "id": 1764, "institution": { - "id": 98, - "name": "Stanford University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 98, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Stanford University", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100840", + "name": "NeuroVault Collection", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://neurovault.org", + "sampleId": "3304", + "urlPattern": "https://neurovault.org/collections/{$id}" } ], - "sampleId": "3304", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "3304" }, { + "created": "2019-06-11T14:18:07.981+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Virtual Metabolic Human (VMH) is a resource that combines human and gut microbiota metabolism with nutrition and disease.", "id": 1765, - "prefix": "vmhmetabolite", "mirId": "MIR:00000636", + "modified": "2019-06-11T14:18:07.981+0000", "name": "VMH metabolite", + "namespaceEmbeddedInLui": false, "pattern": "[a-zA-Z0-9_\\(\\_\\)\\[\\]]+", - "description": "The Virtual Metabolic Human (VMH) is a resource that combines human and gut microbiota metabolism with nutrition and disease.", - "created": "2019-06-11T14:18:07.981+0000", - "modified": "2019-06-11T14:18:07.981+0000", + "prefix": "vmhmetabolite", "resources": [ { - "id": 1767, - "mirId": "MIR:00100841", - "urlPattern": "https://www.vmh.life/#metabolite/{$id}", - "name": "VMH metabolite", + "deprecated": false, + "deprecationDate": null, "description": "VMH metabolite", - "official": false, - "providerCode": "NUI", - "sampleId": "h2o", - "resourceHomeUrl": "https://www.vmh.life/", + "id": 1767, "institution": { - "id": 2496, - "name": "National University of Ireland, Galway", - "homeUrl": "http://www.nuigalway.ie/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03bea9k73' with Wikidata IDs [Q644478], and ISNI IDs [0000 0004 0488 0789]", - "rorId": null, + "homeUrl": "http://www.nuigalway.ie/", + "id": 2496, "location": { "countryCode": "IE", "countryName": "Ireland" - } + }, + "name": "National University of Ireland, Galway", + "rorId": null }, "location": { "countryCode": "IE", "countryName": "Ireland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100841", + "name": "VMH metabolite", + "official": false, + "providerCode": "NUI", + "resourceHomeUrl": "https://www.vmh.life/", + "sampleId": "h2o", + "urlPattern": "https://www.vmh.life/#metabolite/{$id}" } ], - "sampleId": "h2o", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "h2o" }, { + "created": "2019-06-11T14:18:08.710+0000", + "deprecated": false, + "deprecationDate": null, + "description": "nmrCV is a controlled vocabulary to deliver standardized descriptors for the open mark-up language for NMR raw and spectrum data, sanctioned by the metabolomics standards initiative msi.", "id": 1773, - "prefix": "nmr", "mirId": "MIR:00000639", + "modified": "2019-06-11T14:18:08.710+0000", "name": "Nuclear Magnetic Resonance Controlled Vocabulary", + "namespaceEmbeddedInLui": true, "pattern": "^NMR:\\d+$", - "description": "nmrCV is a controlled vocabulary to deliver standardized descriptors for the open mark-up language for NMR raw and spectrum data, sanctioned by the metabolomics standards initiative msi.", - "created": "2019-06-11T14:18:08.710+0000", - "modified": "2019-06-11T14:18:08.710+0000", + "prefix": "nmr", "resources": [ { - "id": 1774, - "mirId": "MIR:00100844", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/nmrcv/terms?short_form=NMR:{$id}", - "name": "NMR through OLS", + "deprecated": false, + "deprecationDate": null, "description": "NMR through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "1000003", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/nmrcv", + "id": 1774, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100844", + "name": "NMR through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/nmrcv", + "sampleId": "1000003", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/nmrcv/terms?short_form=NMR:{$id}" } ], - "sampleId": "1000003", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "1000003" }, { + "created": "2019-06-11T14:18:08.921+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Virtual Metabolic Human (VMH) is a resource that combines human and gut microbiota metabolism with nutrition and disease.", "id": 1775, - "prefix": "vmhreaction", "mirId": "MIR:00000640", + "modified": "2019-06-11T14:18:08.921+0000", "name": "VMH reaction", + "namespaceEmbeddedInLui": false, "pattern": "[a-zA-Z0-9_\\(\\_\\)\\[\\]]+", - "description": "The Virtual Metabolic Human (VMH) is a resource that combines human and gut microbiota metabolism with nutrition and disease.", - "created": "2019-06-11T14:18:08.921+0000", - "modified": "2019-06-11T14:18:08.921+0000", + "prefix": "vmhreaction", "resources": [ { - "id": 1776, - "mirId": "MIR:00100845", - "urlPattern": "https://www.vmh.life/#reaction/{$id}", - "name": "VMH reaction", + "deprecated": false, + "deprecationDate": null, "description": "VMH reaction", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "HEX1", - "resourceHomeUrl": "https://www.vmh.life/", + "id": 1776, "institution": { - "id": 2496, - "name": "National University of Ireland, Galway", - "homeUrl": "http://www.nuigalway.ie/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03bea9k73' with Wikidata IDs [Q644478], and ISNI IDs [0000 0004 0488 0789]", - "rorId": null, + "homeUrl": "http://www.nuigalway.ie/", + "id": 2496, "location": { "countryCode": "IE", "countryName": "Ireland" - } + }, + "name": "National University of Ireland, Galway", + "rorId": null }, "location": { "countryCode": "IE", "countryName": "Ireland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100845", + "name": "VMH reaction", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.vmh.life/", + "sampleId": "HEX1", + "urlPattern": "https://www.vmh.life/#reaction/{$id}" } ], - "sampleId": "HEX1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "HEX1" }, { + "created": "2019-06-11T14:18:09.136+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Astrophysics Source Code Library (ASCL) is a free online registry for software that have been used in research that has appeared in, or been submitted to, peer-reviewed publications. The ASCL is indexed by the SAO/NASA Astrophysics Data System (ADS) and Web of Science's Data Citation Index (WoS DCI), and is citable by using the unique ascl ID assigned to each code. The ascl ID can be used to link to the code entry by prefacing the number with ascl.net (i.e., ascl.net/1201.001).", "id": 1777, - "prefix": "ascl", "mirId": "MIR:00000641", + "modified": "2019-06-11T14:18:09.136+0000", "name": "Astrophysics Source Code Library", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9\\.]+$", - "description": "The Astrophysics Source Code Library (ASCL) is a free online registry for software that have been used in research that has appeared in, or been submitted to, peer-reviewed publications. The ASCL is indexed by the SAO/NASA Astrophysics Data System (ADS) and Web of Science's Data Citation Index (WoS DCI), and is citable by using the unique ascl ID assigned to each code. The ascl ID can be used to link to the code entry by prefacing the number with ascl.net (i.e., ascl.net/1201.001).", - "created": "2019-06-11T14:18:09.136+0000", - "modified": "2019-06-11T14:18:09.136+0000", + "prefix": "ascl", "resources": [ { - "id": 1779, - "mirId": "MIR:00100846", - "urlPattern": "http://ascl.net/{$id}", - "name": "Astrophysics Source Code Library", + "deprecated": false, + "deprecationDate": null, "description": "Astrophysics Source Code Library", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1801.012", - "resourceHomeUrl": "http://ascl.net/", + "id": 1779, "institution": { - "id": 1778, - "name": "Astrophysics Source Code Library", - "homeUrl": "http://ascl.net/", "description": "The Astrophysics Source Code Library (ASCL), founded in 1999 by Robert Nemiroff and John Wallin, takes an active approach to sharing astrophysical source code.", - "rorId": null, + "homeUrl": "http://ascl.net/", + "id": 1778, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Astrophysics Source Code Library", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100846", + "name": "Astrophysics Source Code Library", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://ascl.net/", + "sampleId": "1801.012", + "urlPattern": "http://ascl.net/{$id}" } ], - "sampleId": "1801.012", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1801.012" }, { + "created": "2019-06-11T14:18:09.365+0000", + "deprecated": false, + "deprecationDate": null, + "description": "FaceBase is a collaborative NIDCR-funded consortium to generate data in support of advancing research into craniofacial development and malformation. It serves as a community resource by generating large datasets of a variety of types and making them available to the wider research community via this website. Practices emphasize a comprehensive and multidisciplinary approach to understanding the developmental processes that create the face. The data offered spotlights high-throughput genetic, molecular, biological, imaging and computational techniques. One of the missions of this consortium is to facilitate cooperation and collaboration between projects.", "id": 1780, - "prefix": "facebase", "mirId": "MIR:00000642", + "modified": "2019-06-11T14:18:09.365+0000", "name": "FaceBase Data Repository", + "namespaceEmbeddedInLui": false, "pattern": "^FB\\d{8}$", - "description": "FaceBase is a collaborative NIDCR-funded consortium to generate data in support of advancing research into craniofacial development and malformation. It serves as a community resource by generating large datasets of a variety of types and making them available to the wider research community via this website. Practices emphasize a comprehensive and multidisciplinary approach to understanding the developmental processes that create the face. The data offered spotlights high-throughput genetic, molecular, biological, imaging and computational techniques. One of the missions of this consortium is to facilitate cooperation and collaboration between projects.", - "created": "2019-06-11T14:18:09.365+0000", - "modified": "2019-06-11T14:18:09.365+0000", + "prefix": "facebase", "resources": [ { - "id": 1782, - "mirId": "MIR:00100847", - "urlPattern": "https://www.facebase.org/data/record/#1/isa:dataset/accession={$id}", - "name": "FaceBase Data Repository", + "deprecated": false, + "deprecationDate": null, "description": "FaceBase Data Repository", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "FB00000917", - "resourceHomeUrl": "https://www.facebase.org", + "id": 1782, "institution": { - "id": 1781, - "name": "University of Southern California", + "description": "The University of Southern California is a leading private research university located in Los Angeles \u2014 a global center for arts, technology and international business. It is home to the College of Letters, Arts and Sciences and 21 exceptional academic schools and units. USC\u2019s Health Sciences campus houses renowned specialized care and research in cancer, stem cell and regenerative medicine, orthopedics and sports medicine. The university is the largest private sector employer in the city of Los Angeles, responsible for $8 billion annually in economic activity in the region.", "homeUrl": "https://www.usc.edu/", - "description": "The University of Southern California is a leading private research university located in Los Angeles — a global center for arts, technology and international business. It is home to the College of Letters, Arts and Sciences and 21 exceptional academic schools and units. USC’s Health Sciences campus houses renowned specialized care and research in cancer, stem cell and regenerative medicine, orthopedics and sports medicine. The university is the largest private sector employer in the city of Los Angeles, responsible for $8 billion annually in economic activity in the region.", - "rorId": "https://ror.org/03taz7m60", + "id": 1781, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Southern California", + "rorId": "https://ror.org/03taz7m60" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100847", + "name": "FaceBase Data Repository", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.facebase.org", + "sampleId": "FB00000917", + "urlPattern": "https://www.facebase.org/data/record/#1/isa:dataset/accession={$id}" } ], - "sampleId": "FB00000917", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "FB00000917" }, { + "created": "2019-06-11T14:18:09.598+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The GenitoUrinary Development Molecular Anatomy Project (GUDMAP) is a consortium of laboratories working to provide the scientific and medical community with tools to facilitate research on the GenitoUrinary (GU) tract.", "id": 1783, - "prefix": "gudmap", "mirId": "MIR:00000643", + "modified": "2019-06-11T14:18:09.598+0000", "name": "GUDMAP", + "namespaceEmbeddedInLui": false, "pattern": "^[-0-9a-zA-Z]+(@[-0-9a-zA-Z]+)?$", - "description": "The GenitoUrinary Development Molecular Anatomy Project (GUDMAP) is a consortium of laboratories working to provide the scientific and medical community with tools to facilitate research on the GenitoUrinary (GU) tract.", - "created": "2019-06-11T14:18:09.598+0000", - "modified": "2019-06-11T14:18:09.598+0000", + "prefix": "gudmap", "resources": [ { - "id": 1785, - "mirId": "MIR:00100848", - "urlPattern": "https://gudmap.org/id/{$id}", - "name": "GUDMAP", + "deprecated": false, + "deprecationDate": null, "description": "GUDMAP", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Q-2958", - "resourceHomeUrl": "http://www.gudmap.org/", + "id": 1785, "institution": { - "id": 1784, - "name": "GenitoUrinary Development Molecular Anatomy Project (GUDMAP) Consortium", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1784, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "GenitoUrinary Development Molecular Anatomy Project (GUDMAP) Consortium", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100848", + "name": "GUDMAP", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.gudmap.org/", + "sampleId": "Q-2958", + "urlPattern": "https://gudmap.org/id/{$id}" } ], - "sampleId": "Q-2958", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Q-2958" }, { + "created": "2019-06-11T14:18:09.859+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The JRC Data Catalogue gives access to the multidisciplinary data produced and maintained by the Joint Research Centre, the European Commission's in-house science service providing independent scientific advice and support to policies of the European Union.", "id": 1786, - "prefix": "eu89h", "mirId": "MIR:00000644", + "modified": "2019-06-11T14:18:09.859+0000", "name": "JRC Data Catalogue", + "namespaceEmbeddedInLui": false, "pattern": "^[a-z0-9\\-_]+$", - "description": "The JRC Data Catalogue gives access to the multidisciplinary data produced and maintained by the Joint Research Centre, the European Commission's in-house science service providing independent scientific advice and support to policies of the European Union.", - "created": "2019-06-11T14:18:09.859+0000", - "modified": "2019-06-11T14:18:09.859+0000", + "prefix": "eu89h", "resources": [ { - "id": 1788, - "mirId": "MIR:00100849", - "urlPattern": "http://data.europa.eu/89h/{$id}", - "name": "JRC Data Catalogue", + "deprecated": false, + "deprecationDate": null, "description": "JRC Data Catalogue", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "jrc-eurl-ecvam-chemagora", - "resourceHomeUrl": "http://data.jrc.ec.europa.eu/", + "id": 1788, "institution": { - "id": 1787, - "name": "European Commission, Joint Research Centre (JRC)", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1787, "location": { "countryCode": "BE", "countryName": "Belgium" - } + }, + "name": "European Commission, Joint Research Centre (JRC)", + "rorId": null }, "location": { "countryCode": "BE", "countryName": "Belgium" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100849", + "name": "JRC Data Catalogue", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://data.jrc.ec.europa.eu/", + "sampleId": "jrc-eurl-ecvam-chemagora", + "urlPattern": "http://data.europa.eu/89h/{$id}" } ], - "sampleId": "jrc-eurl-ecvam-chemagora", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "jrc-eurl-ecvam-chemagora" }, { + "created": "2019-06-11T14:18:10.316+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Metabolomics Workbench stores metabolomics data for small and large studies on cells, tissues and organisms for the Metabolomics Consortium Data Repository and Coordinating Center (DRCC).", "id": 1792, - "prefix": "mw.study", "mirId": "MIR:00000646", + "modified": "2019-06-11T14:18:10.316+0000", "name": "Metabolomics Workbench Study", + "namespaceEmbeddedInLui": false, "pattern": "^ST[0-9]{6}$", - "description": "Metabolomics Workbench stores metabolomics data for small and large studies on cells, tissues and organisms for the Metabolomics Consortium Data Repository and Coordinating Center (DRCC).", - "created": "2019-06-11T14:18:10.316+0000", - "modified": "2019-06-11T14:18:10.316+0000", + "prefix": "mw.study", "resources": [ { - "id": 1795, - "mirId": "MIR:00100860", - "urlPattern": "https://www.omicsdi.org/dataset/metabolomics_workbench/{$id}", - "name": "Metabolomics Workbench Study through OmicsDI", + "deprecated": false, + "deprecationDate": null, "description": "Metabolomics Workbench Study through OmicsDI", - "official": false, - "providerCode": "omicsdi", - "sampleId": "ST000900", - "resourceHomeUrl": "https://www.omicsdi.org/", + "id": 1795, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100860", + "name": "Metabolomics Workbench Study through OmicsDI", + "official": false, + "providerCode": "omicsdi", + "resourceHomeUrl": "https://www.omicsdi.org/", + "sampleId": "ST000900", + "urlPattern": "https://www.omicsdi.org/dataset/metabolomics_workbench/{$id}" }, { - "id": 1794, - "mirId": "MIR:00100859", - "urlPattern": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Study&StudyID={$id}", - "name": "Metabolomics Workbench Study", + "deprecated": false, + "deprecationDate": null, "description": "Metabolomics Workbench Study", - "official": true, - "providerCode": "ucsd", - "sampleId": "ST000900", - "resourceHomeUrl": "http://www.metabolomicsworkbench.org/", + "id": 1794, "institution": { - "id": 190, - "name": "University of California, San Diego", - "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", - "rorId": "https://ror.org/0168r3w48", + "homeUrl": "https://ucsd.edu/", + "id": 190, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of California, San Diego", + "rorId": "https://ror.org/0168r3w48" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100859", + "name": "Metabolomics Workbench Study", + "official": true, + "providerCode": "ucsd", + "resourceHomeUrl": "http://www.metabolomicsworkbench.org/", + "sampleId": "ST000900", + "urlPattern": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Study&StudyID={$id}" } ], - "sampleId": "ST000900", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ST000900" }, { + "created": "2019-06-11T14:18:10.677+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Metabolomics Workbench stores metabolomics data for small and large studies on cells, tissues and organisms for the Metabolomics Consortium Data Repository and Coordinating Center (DRCC).", "id": 1796, - "prefix": "mw.project", "mirId": "MIR:00000647", + "modified": "2019-06-11T14:18:10.677+0000", "name": "Metabolomics Workbench Project", + "namespaceEmbeddedInLui": false, "pattern": "^PR[0-9]{6}$", - "description": "Metabolomics Workbench stores metabolomics data for small and large studies on cells, tissues and organisms for the Metabolomics Consortium Data Repository and Coordinating Center (DRCC).", - "created": "2019-06-11T14:18:10.677+0000", - "modified": "2019-06-11T14:18:10.677+0000", + "prefix": "mw.project", "resources": [ { - "id": 1797, - "mirId": "MIR:00100861", - "urlPattern": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Project&ProjectID={$id}", - "name": "Metabolomics Workbench Project", + "deprecated": false, + "deprecationDate": null, "description": "Metabolomics Workbench Project", - "official": true, - "providerCode": "ucsd", - "sampleId": "PR000001", - "resourceHomeUrl": "http://www.metabolomicsworkbench.org/", + "id": 1797, "institution": { - "id": 190, - "name": "University of California, San Diego", - "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", - "rorId": "https://ror.org/0168r3w48", + "homeUrl": "https://ucsd.edu/", + "id": 190, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of California, San Diego", + "rorId": "https://ror.org/0168r3w48" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100861", + "name": "Metabolomics Workbench Project", + "official": true, + "providerCode": "ucsd", + "resourceHomeUrl": "http://www.metabolomicsworkbench.org/", + "sampleId": "PR000001", + "urlPattern": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Project&ProjectID={$id}" } ], - "sampleId": "PR000001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PR000001" }, { + "created": "2019-06-11T14:18:10.861+0000", + "deprecated": false, + "deprecationDate": null, + "description": "A public place to process, interpret and share GC/MS metabolomics datasets.", "id": 1798, - "prefix": "mex", "mirId": "MIR:00000648", + "modified": "2019-06-11T14:18:10.861+0000", "name": "Metabolome Express", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "A public place to process, interpret and share GC/MS metabolomics datasets.", - "created": "2019-06-11T14:18:10.861+0000", - "modified": "2019-06-11T14:18:10.861+0000", + "prefix": "mex", "resources": [ { - "id": 1800, - "mirId": "MIR:00100862", - "urlPattern": "https://www.metabolome-express.org/datasetview.php?datasetid={$id}", - "name": "Metabolome Express", + "deprecated": false, + "deprecationDate": null, "description": "Metabolome Express", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "36", - "resourceHomeUrl": "https://www.metabolome-express.org/", + "id": 1800, "institution": { - "id": 1799, - "name": "Centre of Excellence in Plant Energy Biology", - "homeUrl": "https://plantenergy.edu.au/", "description": "The Australian Research Council Centre of Excellence in Plant Energy Biology (PEB) is a cutting-edge research centre focused on better understanding the ways plants capture, convert and use energy in response to environmental change, with a view towards improved plant energy efficiency.", - "rorId": "https://ror.org/01a1mq059", + "homeUrl": "https://plantenergy.edu.au/", + "id": 1799, "location": { "countryCode": "AU", "countryName": "Australia" - } + }, + "name": "Centre of Excellence in Plant Energy Biology", + "rorId": "https://ror.org/01a1mq059" }, "location": { "countryCode": "AU", "countryName": "Australia" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100862", + "name": "Metabolome Express", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.metabolome-express.org/", + "sampleId": "36", + "urlPattern": "https://www.metabolome-express.org/datasetview.php?datasetid={$id}" }, { - "id": 1801, - "mirId": "MIR:00100863", - "urlPattern": "https://www.omicsdi.org/dataset/metabolome_express/MEX{$id}", - "name": "Metabolome Express through OmicsDI", + "deprecated": false, + "deprecationDate": null, "description": "Metabolome Express through OmicsDI", - "official": false, - "providerCode": "omicsdi", - "sampleId": "36", - "resourceHomeUrl": "https://www.omicsdi.org/", + "id": 1801, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100863", + "name": "Metabolome Express through OmicsDI", + "official": false, + "providerCode": "omicsdi", + "resourceHomeUrl": "https://www.omicsdi.org/", + "sampleId": "36", + "urlPattern": "https://www.omicsdi.org/dataset/metabolome_express/MEX{$id}" } ], - "sampleId": "36", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "36" }, { + "created": "2019-06-11T14:18:11.249+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Global Proteome Machine Database was constructed to utilize the information obtained by GPM servers to aid in the difficult process of validating peptide MS/MS spectra as well as protein coverage patterns.", "id": 1802, - "prefix": "gpmdb", "mirId": "MIR:00000649", + "modified": "2019-06-11T14:18:11.249+0000", "name": "GPMDB", + "namespaceEmbeddedInLui": false, "pattern": "^GPM\\d+$", - "description": "The Global Proteome Machine Database was constructed to utilize the information obtained by GPM servers to aid in the difficult process of validating peptide MS/MS spectra as well as protein coverage patterns.", - "created": "2019-06-11T14:18:11.249+0000", - "modified": "2019-06-11T14:18:11.249+0000", + "prefix": "gpmdb", "resources": [ { - "id": 1804, - "mirId": "MIR:00100864", - "urlPattern": "http://gpmdb.thegpm.org/~/dblist_gpmnum/gpmnum={$id}", - "name": "GPMDB", + "deprecated": false, + "deprecationDate": null, "description": "GPMDB", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "GPM32310002988", - "resourceHomeUrl": "http://gpmdb.thegpm.org/", + "id": 1804, "institution": { - "id": 1803, - "name": "The Global Proteome Machine Organization", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1803, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "The Global Proteome Machine Organization", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100864", + "name": "GPMDB", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://gpmdb.thegpm.org/", + "sampleId": "GPM32310002988", + "urlPattern": "http://gpmdb.thegpm.org/~/dblist_gpmnum/gpmnum={$id}" }, { - "id": 1805, - "mirId": "MIR:00100865", - "urlPattern": "https://www.omicsdi.org/dataset/gpmdb/{$id}", - "name": "GPMDB through OmicsDI", + "deprecated": false, + "deprecationDate": null, "description": "GPMDB through OmicsDI", - "official": false, - "providerCode": "omicsdi", - "sampleId": "GPM32310002988", - "resourceHomeUrl": "https://www.omicsdi.org/", + "id": 1805, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100865", + "name": "GPMDB through OmicsDI", + "official": false, + "providerCode": "omicsdi", + "resourceHomeUrl": "https://www.omicsdi.org/", + "sampleId": "GPM32310002988", + "urlPattern": "https://www.omicsdi.org/dataset/gpmdb/{$id}" } ], - "sampleId": "GPM32310002988", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "GPM32310002988" }, { + "created": "2019-06-11T14:18:11.594+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MassIVE is a community resource developed by the NIH-funded Center for Computational Mass Spectrometry to promote the global, free exchange of mass spectrometry data.", "id": 1806, - "prefix": "massive", "mirId": "MIR:00000650", + "modified": "2019-06-11T14:18:11.594+0000", "name": "MassIVE", + "namespaceEmbeddedInLui": false, "pattern": "^MSV\\d+$", - "description": "MassIVE is a community resource developed by the NIH-funded Center for Computational Mass Spectrometry to promote the global, free exchange of mass spectrometry data.", - "created": "2019-06-11T14:18:11.594+0000", - "modified": "2019-06-11T14:18:11.594+0000", + "prefix": "massive", "resources": [ { - "id": 1807, - "mirId": "MIR:00100866", - "urlPattern": "https://massive.ucsd.edu/ProteoSAFe/QueryMSV?id={$id}", - "name": "MassIVE", + "deprecated": false, + "deprecationDate": null, "description": "MassIVE", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MSV000082131", - "resourceHomeUrl": "https://massive.ucsd.edu/ProteoSAFe/static/massive.jsp", + "id": 1807, "institution": { - "id": 190, - "name": "University of California, San Diego", - "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", - "rorId": "https://ror.org/0168r3w48", + "homeUrl": "https://ucsd.edu/", + "id": 190, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of California, San Diego", + "rorId": "https://ror.org/0168r3w48" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100866", + "name": "MassIVE", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://massive.ucsd.edu/ProteoSAFe/static/massive.jsp", + "sampleId": "MSV000082131", + "urlPattern": "https://massive.ucsd.edu/ProteoSAFe/QueryMSV?id={$id}" }, { - "id": 1808, - "mirId": "MIR:00100867", - "urlPattern": "https://www.omicsdi.org/dataset/massive/{$id}", - "name": "MassIVE through OmicsDI", + "deprecated": false, + "deprecationDate": null, "description": "MassIVE through OmicsDI", - "official": false, - "providerCode": "omicsdi", - "sampleId": "MSV000082131", - "resourceHomeUrl": "https://www.omicsdi.org/", + "id": 1808, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100867", + "name": "MassIVE through OmicsDI", + "official": false, + "providerCode": "omicsdi", + "resourceHomeUrl": "https://www.omicsdi.org/", + "sampleId": "MSV000082131", + "urlPattern": "https://www.omicsdi.org/dataset/massive/{$id}" } ], - "sampleId": "MSV000082131", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MSV000082131" }, { + "created": "2019-06-11T14:18:11.924+0000", + "deprecated": false, + "deprecationDate": null, + "description": "FamPlex is a collection of resources for grounding biological entities from text and describing their hierarchical relationships.", "id": 1809, - "prefix": "fplx", "mirId": "MIR:00000651", + "modified": "2019-06-11T14:18:11.924+0000", "name": "FamPlex", + "namespaceEmbeddedInLui": false, "pattern": "^[a-zA-Z0-9][A-Za-z0-9_]+$", - "description": "FamPlex is a collection of resources for grounding biological entities from text and describing their hierarchical relationships.", - "created": "2019-06-11T14:18:11.924+0000", - "modified": "2019-06-11T14:18:11.924+0000", + "prefix": "fplx", "resources": [ { - "id": 1810, - "mirId": "MIR:00100869", - "urlPattern": "http://bioportal.bioontology.org/ontologies/FPLX/?p=classes&conceptid=http%3A%2F%2Fpurl.obolibrary.org%2Fobo%2FFPLX_{$id}", - "name": "FPLX through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "FPLX through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "RAS", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/FPLX/", + "id": 1810, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100869", + "name": "FPLX through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/FPLX/", + "sampleId": "RAS", + "urlPattern": "http://bioportal.bioontology.org/ontologies/FPLX/?p=classes&conceptid=http%3A%2F%2Fpurl.obolibrary.org%2Fobo%2FFPLX_{$id}" } ], - "sampleId": "RAS", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "RAS" }, { + "created": "2019-06-11T14:18:12.154+0000", + "deprecated": false, + "deprecationDate": null, + "description": "International repository of Adverse Outcome Pathways.", "id": 1811, - "prefix": "aop.events", "mirId": "MIR:00000652", + "modified": "2019-06-11T14:18:12.154+0000", "name": "AOPWiki (Key Event)", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "International repository of Adverse Outcome Pathways.", - "created": "2019-06-11T14:18:12.154+0000", - "modified": "2019-06-11T14:18:12.154+0000", + "prefix": "aop.events", "resources": [ { - "id": 1812, - "mirId": "MIR:00100870", - "urlPattern": "https://aopwiki.org/events/{$id}", - "name": "AOPWiki (Key Event)", + "deprecated": false, + "deprecationDate": null, "description": "AOPWiki (Key Event)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "3", - "resourceHomeUrl": "https://aopwiki.org/", + "id": 1812, "institution": { - "id": 1713, - "name": "European Commision - DG Joint Research Centre and U.S Environmental Protection Agency", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1713, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "European Commision - DG Joint Research Centre and U.S Environmental Protection Agency", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100870", + "name": "AOPWiki (Key Event)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://aopwiki.org/", + "sampleId": "3", + "urlPattern": "https://aopwiki.org/events/{$id}" } ], - "sampleId": "3", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "3" }, { + "created": "2019-06-11T14:18:12.357+0000", + "deprecated": false, + "deprecationDate": null, + "description": "International repository of Adverse Outcome Pathways.", "id": 1813, - "prefix": "aop.relationships", "mirId": "MIR:00000653", + "modified": "2019-06-11T14:18:12.357+0000", "name": "AOPWiki (Key Event Relationship)", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "International repository of Adverse Outcome Pathways.", - "created": "2019-06-11T14:18:12.357+0000", - "modified": "2019-06-11T14:18:12.357+0000", + "prefix": "aop.relationships", "resources": [ { - "id": 1814, - "mirId": "MIR:00100871", - "urlPattern": "https://aopwiki.org/relationships/{$id}", - "name": "AOPWiki (Key Event Relationship)", + "deprecated": false, + "deprecationDate": null, "description": "AOPWiki (Key Event Relationship)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "5", - "resourceHomeUrl": "https://aopwiki.org/", + "id": 1814, "institution": { - "id": 1713, - "name": "European Commision - DG Joint Research Centre and U.S Environmental Protection Agency", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1713, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "European Commision - DG Joint Research Centre and U.S Environmental Protection Agency", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100871", + "name": "AOPWiki (Key Event Relationship)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://aopwiki.org/", + "sampleId": "5", + "urlPattern": "https://aopwiki.org/relationships/{$id}" } ], - "sampleId": "5", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "5" }, { + "created": "2019-06-11T14:18:12.557+0000", + "deprecated": false, + "deprecationDate": null, + "description": "International repository of Adverse Outcome Pathways.", "id": 1815, - "prefix": "aop.stressor", "mirId": "MIR:00000654", + "modified": "2019-06-11T14:18:12.557+0000", "name": "AOPWiki (Stressor)", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "International repository of Adverse Outcome Pathways.", - "created": "2019-06-11T14:18:12.557+0000", - "modified": "2019-06-11T14:18:12.557+0000", + "prefix": "aop.stressor", "resources": [ { - "id": 1816, - "mirId": "MIR:00100872", - "urlPattern": "https://aopwiki.org/stressors/{$id}", - "name": "AOPWiki (Stressor)", + "deprecated": false, + "deprecationDate": null, "description": "AOPWiki (Stressor)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "9", - "resourceHomeUrl": "https://aopwiki.org/", + "id": 1816, "institution": { - "id": 1713, - "name": "European Commision - DG Joint Research Centre and U.S Environmental Protection Agency", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1713, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "European Commision - DG Joint Research Centre and U.S Environmental Protection Agency", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100872", + "name": "AOPWiki (Stressor)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://aopwiki.org/", + "sampleId": "9", + "urlPattern": "https://aopwiki.org/stressors/{$id}" } ], - "sampleId": "9", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "9" }, { + "created": "2019-06-11T14:18:12.998+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Assists in resolving data across cloud resources.", "id": 1820, - "prefix": "dev.ga4ghdos", "mirId": "MIR:00000656", + "modified": "2019-06-11T14:18:12.998+0000", "name": "Development Data Object Service", + "namespaceEmbeddedInLui": false, "pattern": "^[a-zA-Z0-9\\-:#\\.]+$", - "description": "Assists in resolving data across cloud resources.", - "created": "2019-06-11T14:18:12.998+0000", - "modified": "2019-06-11T14:18:12.998+0000", + "prefix": "dev.ga4ghdos", "resources": [ { - "id": 1822, - "mirId": "MIR:00100874", - "urlPattern": "https://dos-gdc.ucsc-cgp-dev.org/ga4gh/dos/v1/dataobjects/{$id}", - "name": "Data Object Service", + "deprecated": false, + "deprecationDate": null, "description": "Data Object Service", - "official": false, - "providerCode": "ucsd", - "sampleId": "23fa7b4b-9d68-429b-aece-658b11124bb3#2017-03-24T18:43:16.886826-05:00", - "resourceHomeUrl": "http://github.com/ga4gh/data-object-service-schemas", + "id": 1822, "institution": { - "id": 190, - "name": "University of California, San Diego", - "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", - "rorId": "https://ror.org/0168r3w48", + "homeUrl": "https://ucsd.edu/", + "id": 190, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of California, San Diego", + "rorId": "https://ror.org/0168r3w48" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100874", + "name": "Data Object Service", + "official": false, + "providerCode": "ucsd", + "resourceHomeUrl": "http://github.com/ga4gh/data-object-service-schemas", + "sampleId": "23fa7b4b-9d68-429b-aece-658b11124bb3#2017-03-24T18:43:16.886826-05:00", + "urlPattern": "https://dos-gdc.ucsc-cgp-dev.org/ga4gh/dos/v1/dataobjects/{$id}" } ], - "sampleId": "23fa7b4b-9d68-429b-aece-658b11124bb3#2017-03-24T18:43:16.886826-05:00", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "23fa7b4b-9d68-429b-aece-658b11124bb3#2017-03-24T18:43:16.886826-05:00" }, { + "created": "2019-06-11T14:18:13.254+0000", + "deprecated": false, + "deprecationDate": null, + "description": "A database that describes manually curated macromolecular complexes and provides links to details about these complexes in other databases.", "id": 1823, - "prefix": "complexportal", "mirId": "MIR:00000657", - "name": "Complex Portal", - "pattern": "^CPX-[0-9]+$", - "description": "A database that describes manually curated macromolecular complexes and provides links to details about these complexes in other databases.", - "created": "2019-06-11T14:18:13.254+0000", "modified": "2019-06-11T14:18:13.254+0000", + "name": "Complex Portal", + "namespaceEmbeddedInLui": false, + "pattern": "^CPX-[0-9]+$", + "prefix": "complexportal", "resources": [ { - "id": 1824, - "mirId": "MIR:00100875", - "urlPattern": "https://www.ebi.ac.uk/complexportal/complex/{$id}", - "name": "Complex Portal", + "deprecated": false, + "deprecationDate": null, "description": "Complex Portal", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "CPX-2158", - "resourceHomeUrl": "https://www.ebi.ac.uk/complexportal", + "id": 1824, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100875", + "name": "Complex Portal", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.ebi.ac.uk/complexportal", + "sampleId": "CPX-2158", + "urlPattern": "https://www.ebi.ac.uk/complexportal/complex/{$id}" } ], - "sampleId": "CPX-2158", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CPX-2158" }, { + "created": "2019-06-11T14:18:13.452+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Chemistry Dashboard is a part of a suite of databases and web applications developed by the US Environmental Protection Agency's Chemical Safety for Sustainability Research Program. These databases and apps support EPA's computational toxicology research efforts to develop innovative methods to change how chemicals are currently evaluated for potential health risks.", "id": 1825, - "prefix": "comptox", "mirId": "MIR:00000658", + "modified": "2019-06-11T14:18:13.452+0000", "name": "CompTox Chemistry Dashboard", + "namespaceEmbeddedInLui": false, "pattern": "^DTXSID\\d+$", - "description": "The Chemistry Dashboard is a part of a suite of databases and web applications developed by the US Environmental Protection Agency's Chemical Safety for Sustainability Research Program. These databases and apps support EPA's computational toxicology research efforts to develop innovative methods to change how chemicals are currently evaluated for potential health risks.", - "created": "2019-06-11T14:18:13.452+0000", - "modified": "2019-06-11T14:18:13.452+0000", + "prefix": "comptox", "resources": [ { - "id": 1827, - "mirId": "MIR:00100876", - "urlPattern": "https://comptox.epa.gov/dashboard/{$id}", - "name": "CompTox Chemistry Dashboard", + "deprecated": false, + "deprecationDate": null, "description": "CompTox Chemistry Dashboard", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "DTXSID2021028", - "resourceHomeUrl": "https://comptox.epa.gov/dashboard", + "id": 1827, "institution": { - "id": 1826, - "name": "Environmental Protection Agency", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1826, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Environmental Protection Agency", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100876", + "name": "CompTox Chemistry Dashboard", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://comptox.epa.gov/dashboard", + "sampleId": "DTXSID2021028", + "urlPattern": "https://comptox.epa.gov/dashboard/{$id}" } ], - "sampleId": "DTXSID2021028", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "DTXSID2021028" }, { + "created": "2019-06-11T14:18:13.721+0000", + "deprecated": false, + "deprecationDate": null, + "description": "(Re)Building a Kidney is an NIDDK-funded consortium of research projects working to optimize approaches for the isolation, expansion, and differentiation of appropriate kidney cell types and their integration into complex structures that replicate human kidney function.", "id": 1828, - "prefix": "rbk", "mirId": "MIR:00000659", + "modified": "2019-06-11T14:18:13.721+0000", "name": "Rebuilding a Kidney", + "namespaceEmbeddedInLui": false, "pattern": "^[-0-9a-zA-Z]+(@[-0-9a-zA-Z]+)?$", - "description": "(Re)Building a Kidney is an NIDDK-funded consortium of research projects working to optimize approaches for the isolation, expansion, and differentiation of appropriate kidney cell types and their integration into complex structures that replicate human kidney function.", - "created": "2019-06-11T14:18:13.721+0000", - "modified": "2019-06-11T14:18:13.721+0000", + "prefix": "rbk", "resources": [ { - "id": 1830, - "mirId": "MIR:00100877", - "urlPattern": "https://www.rebuildingakidney.org/id/{$id}", - "name": "Rebuilding a Kidney", + "deprecated": false, + "deprecationDate": null, "description": "Rebuilding a Kidney", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Q-2958", - "resourceHomeUrl": "https://www.rebuildingakidney.org/", + "id": 1830, "institution": { - "id": 1829, - "name": "National Institute Of Diabetes and Digestive and Kidney Diseases (NIDDK)", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1829, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Institute Of Diabetes and Digestive and Kidney Diseases (NIDDK)", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100877", + "name": "Rebuilding a Kidney", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.rebuildingakidney.org/", + "sampleId": "Q-2958", + "urlPattern": "https://www.rebuildingakidney.org/id/{$id}" } ], - "sampleId": "Q-2958", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Q-2958" }, { + "created": "2019-06-11T14:18:19.416+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Ligandbook is a public repository for force field parameters with a special emphasis on small molecules and known ligands of proteins. It acts as a warehouse for parameter files that are supplied by the community.", "id": 1887, - "prefix": "ligandbook", "mirId": "MIR:00000681", + "modified": "2019-06-11T14:18:19.416+0000", "name": "LigandBook", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]+$", - "description": "Ligandbook is a public repository for force field parameters with a special emphasis on small molecules and known ligands of proteins. It acts as a warehouse for parameter files that are supplied by the community.", - "created": "2019-06-11T14:18:19.416+0000", - "modified": "2019-06-11T14:18:19.416+0000", + "prefix": "ligandbook", "resources": [ { - "id": 1889, - "mirId": "MIR:00100912", - "urlPattern": "https://ligandbook.org/package/{$id}", - "name": "LigandBook", + "deprecated": false, + "deprecationDate": null, "description": "LigandBook", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "785", - "resourceHomeUrl": "https://ligandbook.org/", + "id": 1889, "institution": { - "id": 1888, - "name": "Institut de Chimie des Substances Naturelles", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1888, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "Institut de Chimie des Substances Naturelles", + "rorId": null }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100912", + "name": "LigandBook", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://ligandbook.org/", + "sampleId": "785", + "urlPattern": "https://ligandbook.org/package/{$id}" } ], - "sampleId": "785", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "785" }, { + "created": "2019-06-11T14:18:19.662+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Kaggle is a platform for sharing data, performing reproducible analyses, interactive data analysis tutorials, and machine learning competitions.", "id": 1890, - "prefix": "kaggle", "mirId": "MIR:00000682", + "modified": "2019-06-11T14:18:19.662+0000", "name": "Kaggle", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9a-zA-Z\\-]+\\/[0-9a-zA-Z\\-]+$", - "description": "Kaggle is a platform for sharing data, performing reproducible analyses, interactive data analysis tutorials, and machine learning competitions.", - "created": "2019-06-11T14:18:19.662+0000", - "modified": "2019-06-11T14:18:19.662+0000", + "prefix": "kaggle", "resources": [ { - "id": 1892, - "mirId": "MIR:00100913", - "urlPattern": "https://www.kaggle.com/{$id}", - "name": "Kaggle", + "deprecated": false, + "deprecationDate": null, "description": "Kaggle", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "nasa/kepler-exoplanet-search-results", - "resourceHomeUrl": "https://kaggle.com", + "id": 1892, "institution": { - "id": 1891, - "name": "Google LLC", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1891, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Google LLC", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100913", + "name": "Kaggle", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://kaggle.com", + "sampleId": "nasa/kepler-exoplanet-search-results", + "urlPattern": "https://www.kaggle.com/{$id}" } ], - "sampleId": "nasa/kepler-exoplanet-search-results", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "nasa/kepler-exoplanet-search-results" }, { + "created": "2019-06-11T14:18:19.905+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Identifiers.org Ontology", "id": 1893, - "prefix": "idoo", "mirId": "MIR:00000683", + "modified": "2019-06-11T14:18:19.905+0000", "name": "Identifiers.org Ontology", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9a-zA-Z]+$", - "description": "Identifiers.org Ontology", - "created": "2019-06-11T14:18:19.905+0000", - "modified": "2019-06-11T14:18:19.905+0000", + "prefix": "idoo", "resources": [ { - "id": 1894, - "mirId": "MIR:00100914", - "urlPattern": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology#{$id}", - "name": "Identifiers.org Ontology", + "deprecated": false, + "deprecationDate": null, "description": "Identifiers.org Ontology", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "DataCollection", - "resourceHomeUrl": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology", + "id": 1894, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100914", + "name": "Identifiers.org Ontology", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology", + "sampleId": "DataCollection", + "urlPattern": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology#{$id}" } ], - "sampleId": "DataCollection", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "DataCollection" }, { + "created": "2019-06-11T14:18:12.760+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Software Heritage is the universal archive of software source code.", "id": 1817, - "prefix": "swh", "mirId": "MIR:00000655", + "modified": "2020-11-27T10:57:55.228+0000", "name": "Software Heritage", + "namespaceEmbeddedInLui": true, "pattern": "^swh:[1-9]:(cnt|dir|rel|rev|snp):[0-9a-f]+(;(origin|visit|anchor|path|lines)=\\S+)*$", - "description": "Software Heritage is the universal archive of software source code.", - "created": "2019-06-11T14:18:12.760+0000", - "modified": "2020-11-27T10:57:55.228+0000", + "prefix": "swh", "resources": [ { - "id": 1819, - "mirId": "MIR:00100873", - "urlPattern": "https://archive.softwareheritage.org/browse/swh:{$id}", - "name": "Software Heritage", + "deprecated": false, + "deprecationDate": null, "description": "Software Heritage", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1:rev:309cf2674ee7a0749978cf8265ab91a60aea0f7d", - "resourceHomeUrl": "https://archive.softwareheritage.org", + "id": 1819, "institution": { - "id": 1818, - "name": "INRIA", - "homeUrl": "https://www.inria.fr/en", "description": "No description provided", - "rorId": "https://ror.org/02kvxyf05", + "homeUrl": "https://www.inria.fr/en", + "id": 1818, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "INRIA", + "rorId": "https://ror.org/02kvxyf05" }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100873", + "name": "Software Heritage", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://archive.softwareheritage.org", + "sampleId": "1:rev:309cf2674ee7a0749978cf8265ab91a60aea0f7d", + "urlPattern": "https://archive.softwareheritage.org/browse/swh:{$id}" } ], - "sampleId": "1:rev:309cf2674ee7a0749978cf8265ab91a60aea0f7d", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "1:rev:309cf2674ee7a0749978cf8265ab91a60aea0f7d" }, { + "created": "2019-06-11T14:18:13.968+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Each OCI (Open Citation Identifier) has a simple structure: oci:number-number, where \u201coci:\u201d is the identifier prefix, and is used to identify a citation as a first-class data entitiy - see https://opencitations.wordpress.com/2018/02/19/citations-as-first-class-data-entities-introduction/ for additional information.\r\n\r\nOCIs for citations stored within the OpenCitations Corpus are constructed by combining the OpenCitations Corpus local identifiers for the citing and cited bibliographic resources, separating them with a dash. For example, oci:2544384-7295288 is a valid OCI for the citation between two papers stored within the OpenCitations Corpus.\r\n\r\nOCIs can also be created for bibliographic resources described in an external bibliographic database, if they are similarly identified there by identifiers having a unique numerical part. For example, the OCI for the citation that exists between Wikidata resources Q27931310 and Q22252312 is oci:01027931310\u201301022252312.\r\n\r\nOCIs can also be created for bibliographic resources described in external bibliographic database such as Crossref or DataCite where they are identified by alphanumeric Digital Object Identifiers (DOIs), rather than purely numerical strings.", "id": 1831, - "prefix": "oci", "mirId": "MIR:00000660", + "modified": "2019-06-11T14:18:13.968+0000", "name": "OCI", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]+-[0-9]+$", - "description": "Each OCI (Open Citation Identifier) has a simple structure: oci:number-number, where “oci:” is the identifier prefix, and is used to identify a citation as a first-class data entitiy - see https://opencitations.wordpress.com/2018/02/19/citations-as-first-class-data-entities-introduction/ for additional information.\r\n\r\nOCIs for citations stored within the OpenCitations Corpus are constructed by combining the OpenCitations Corpus local identifiers for the citing and cited bibliographic resources, separating them with a dash. For example, oci:2544384-7295288 is a valid OCI for the citation between two papers stored within the OpenCitations Corpus.\r\n\r\nOCIs can also be created for bibliographic resources described in an external bibliographic database, if they are similarly identified there by identifiers having a unique numerical part. For example, the OCI for the citation that exists between Wikidata resources Q27931310 and Q22252312 is oci:01027931310–01022252312.\r\n\r\nOCIs can also be created for bibliographic resources described in external bibliographic database such as Crossref or DataCite where they are identified by alphanumeric Digital Object Identifiers (DOIs), rather than purely numerical strings.", - "created": "2019-06-11T14:18:13.968+0000", - "modified": "2019-06-11T14:18:13.968+0000", + "prefix": "oci", "resources": [ { - "id": 1833, - "mirId": "MIR:00100878", - "urlPattern": "https://w3id.org/oc/oci/{$id}", - "name": "OpenCitations", + "deprecated": false, + "deprecationDate": null, "description": "OpenCitations", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1-18", - "resourceHomeUrl": "http://opencitations.net", + "id": 1833, "institution": { - "id": 1832, - "name": "University of Bologna", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1832, "location": { "countryCode": "IT", "countryName": "Italy" - } + }, + "name": "University of Bologna", + "rorId": null }, "location": { "countryCode": "IT", "countryName": "Italy" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100878", + "name": "OpenCitations", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://opencitations.net", + "sampleId": "1-18", + "urlPattern": "https://w3id.org/oc/oci/{$id}" } ], - "sampleId": "1-18", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1-18" }, { + "created": "2019-06-11T14:18:14.340+0000", + "deprecated": false, + "deprecationDate": null, + "description": "FoodOn is a comprehensive and easily accessible global farm-to-fork ontology about food that accurately and consistently describes foods commonly known in cultures from around the world. It is a consortium-driven project built to interoperate with the The Open Biological and Biomedical Ontology Foundry library of ontologies.", "id": 1834, - "prefix": "foodon", "mirId": "MIR:00000661", + "modified": "2019-06-11T14:18:14.340+0000", "name": "FoodOn Food Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^FOODON:[0-9]{8}$", - "description": "FoodOn is a comprehensive and easily accessible global farm-to-fork ontology about food that accurately and consistently describes foods commonly known in cultures from around the world. It is a consortium-driven project built to interoperate with the The Open Biological and Biomedical Ontology Foundry library of ontologies.", - "created": "2019-06-11T14:18:14.340+0000", - "modified": "2019-06-11T14:18:14.340+0000", + "prefix": "foodon", "resources": [ { - "id": 1835, - "mirId": "MIR:00100879", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/foodon/terms?obo_id=FOODON:{$id}", - "name": "FoodOn Food Ontology through OLS", + "deprecated": false, + "deprecationDate": null, "description": "FoodOn Food Ontology through OLS", - "official": false, - "providerCode": "ebi", - "sampleId": "03307879", - "resourceHomeUrl": "https://foodon.org", + "id": 1835, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100879", + "name": "FoodOn Food Ontology through OLS", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://foodon.org", + "sampleId": "03307879", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/foodon/terms?obo_id=FOODON:{$id}" } ], - "sampleId": "03307879", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "03307879" }, { + "created": "2019-06-11T14:18:14.565+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The ENCODE Consortium is integrating multiple technologies and approaches in a collective effort to discover and define the functional elements encoded in the human genome, including genes, transcripts, and transcriptional regulatory regions, together with their attendant chromatin states and DNA methylation patterns.", "id": 1836, - "prefix": "encode", "mirId": "MIR:00000662", + "modified": "2019-06-11T14:18:14.565+0000", "name": "ENCODE: Encyclopedia of DNA Elements", + "namespaceEmbeddedInLui": false, "pattern": "^ENC[A-Za-z]{2}[0-9]{3}[A-Za-z]{3}$", - "description": "The ENCODE Consortium is integrating multiple technologies and approaches in a collective effort to discover and define the functional elements encoded in the human genome, including genes, transcripts, and transcriptional regulatory regions, together with their attendant chromatin states and DNA methylation patterns.", - "created": "2019-06-11T14:18:14.565+0000", - "modified": "2019-06-11T14:18:14.565+0000", + "prefix": "encode", "resources": [ { - "id": 1838, - "mirId": "MIR:00100880", - "urlPattern": "https://www.encodeproject.org/{$id}", - "name": "ENCODE: Encyclopedia of DNA Elements", + "deprecated": false, + "deprecationDate": null, "description": "ENCODE: Encyclopedia of DNA Elements", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "ENCSR163RYW", - "resourceHomeUrl": "www.encodeproject.org", + "id": 1838, "institution": { - "id": 1837, - "name": "ENCODE Consortium", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1837, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "ENCODE Consortium", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100880", + "name": "ENCODE: Encyclopedia of DNA Elements", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "www.encodeproject.org", + "sampleId": "ENCSR163RYW", + "urlPattern": "https://www.encodeproject.org/{$id}" } ], - "sampleId": "ENCSR163RYW", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ENCSR163RYW" }, { + "created": "2019-06-11T14:18:14.830+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Genotype-Tissue Expression (GTEx) project aims to provide to the scientific community a resource with which to study human gene expression and regulation and its relationship to genetic variation.", "id": 1839, - "prefix": "gtex", "mirId": "MIR:00000663", + "modified": "2019-06-11T14:18:14.830+0000", "name": "GTEx", + "namespaceEmbeddedInLui": false, "pattern": "^\\w.+$", - "description": "The Genotype-Tissue Expression (GTEx) project aims to provide to the scientific community a resource with which to study human gene expression and regulation and its relationship to genetic variation.", - "created": "2019-06-11T14:18:14.830+0000", - "modified": "2019-06-11T14:18:14.830+0000", + "prefix": "gtex", "resources": [ { - "id": 1841, - "mirId": "MIR:00100881", - "urlPattern": "https://www.gtexportal.org/home/gene/{$id}", - "name": "The GTEx Project", + "deprecated": false, + "deprecationDate": null, "description": "The GTEx Project", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "BRIP1", - "resourceHomeUrl": "https://www.gtexportal.org", + "id": 1841, "institution": { - "id": 1840, - "name": "The Broad Institute of MIT and Harvard", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1840, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Broad Institute of MIT and Harvard", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100881", + "name": "The GTEx Project", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.gtexportal.org", + "sampleId": "BRIP1", + "urlPattern": "https://www.gtexportal.org/home/gene/{$id}" } ], - "sampleId": "BRIP1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "BRIP1" }, { + "created": "2019-06-11T14:18:15.139+0000", + "deprecated": false, + "deprecationDate": null, + "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", "id": 1842, - "prefix": "ricenetdb.gene", "mirId": "MIR:00000664", + "modified": "2019-06-11T14:18:15.139+0000", "name": "RiceNetDB Gene", + "namespaceEmbeddedInLui": false, "pattern": "^LOC\\_Os\\d{1,2}g\\d{5}\\.\\d$", - "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", - "created": "2019-06-11T14:18:15.139+0000", - "modified": "2019-06-11T14:18:15.139+0000", + "prefix": "ricenetdb.gene", "resources": [ { - "id": 1844, - "mirId": "MIR:00100882", - "urlPattern": "http://bis.zju.edu.cn/ricenetdb/genedetails.php?ID={$id}", - "name": "RiceNetDB", + "deprecated": false, + "deprecationDate": null, "description": "RiceNetDB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "LOC_Os01g49190.1", - "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb/", + "id": 1844, "institution": { - "id": 1843, - "name": "College of Life Sciences, Zhejiang University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1843, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "College of Life Sciences, Zhejiang University", + "rorId": null }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100882", + "name": "RiceNetDB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb/", + "sampleId": "LOC_Os01g49190.1", + "urlPattern": "http://bis.zju.edu.cn/ricenetdb/genedetails.php?ID={$id}" } ], - "sampleId": "LOC_Os01g49190.1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "LOC_Os01g49190.1" }, { + "created": "2019-06-11T14:18:15.429+0000", + "deprecated": false, + "deprecationDate": null, + "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", "id": 1845, - "prefix": "ricenetdb.protein", "mirId": "MIR:00000665", + "modified": "2019-06-11T14:18:15.429+0000", "name": "RiceNetDB Protein", + "namespaceEmbeddedInLui": false, "pattern": "^LOC\\_Os\\d{1,2}g\\d{5}$", - "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", - "created": "2019-06-11T14:18:15.429+0000", - "modified": "2019-06-11T14:18:15.429+0000", + "prefix": "ricenetdb.protein", "resources": [ { - "id": 1846, - "mirId": "MIR:00100883", - "urlPattern": "http://bis.zju.edu.cn/ricenetdb/proteindetails.php?ID={$id}", - "name": "RiceNetDB", + "deprecated": false, + "deprecationDate": null, "description": "RiceNetDB", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "LOC_Os01g49190", - "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb/", + "id": 1846, "institution": { - "id": 1843, - "name": "College of Life Sciences, Zhejiang University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1843, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "College of Life Sciences, Zhejiang University", + "rorId": null }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100883", + "name": "RiceNetDB", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb/", + "sampleId": "LOC_Os01g49190", + "urlPattern": "http://bis.zju.edu.cn/ricenetdb/proteindetails.php?ID={$id}" } ], - "sampleId": "LOC_Os01g49190", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "LOC_Os01g49190" }, { + "created": "2019-06-11T14:18:15.639+0000", + "deprecated": false, + "deprecationDate": null, + "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", "id": 1847, - "prefix": "ricenetdb.compound", "mirId": "MIR:00000666", + "modified": "2019-06-11T14:18:15.639+0000", "name": "RiceNetDB Compound", + "namespaceEmbeddedInLui": false, "pattern": "^OSC\\d{4}$", - "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", - "created": "2019-06-11T14:18:15.639+0000", - "modified": "2019-06-11T14:18:15.639+0000", + "prefix": "ricenetdb.compound", "resources": [ { - "id": 1848, - "mirId": "MIR:00100884", - "urlPattern": "http://bis.zju.edu.cn/ricenetdb/compounddetails.php?ID={$id}", - "name": "RiceNetDB Compound", + "deprecated": false, + "deprecationDate": null, "description": "RiceNetDB Compound", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "OSC1416", - "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb", + "id": 1848, "institution": { - "id": 1843, - "name": "College of Life Sciences, Zhejiang University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1843, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "College of Life Sciences, Zhejiang University", + "rorId": null }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100884", + "name": "RiceNetDB Compound", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb", + "sampleId": "OSC1416", + "urlPattern": "http://bis.zju.edu.cn/ricenetdb/compounddetails.php?ID={$id}" } ], - "sampleId": "OSC1416", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "OSC1416" }, { + "created": "2019-06-11T14:18:15.856+0000", + "deprecated": false, + "deprecationDate": null, + "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", "id": 1849, - "prefix": "ricenetdb.reaction", "mirId": "MIR:00000667", + "modified": "2019-06-11T14:18:15.856+0000", "name": "RiceNetDB Reaction", + "namespaceEmbeddedInLui": false, "pattern": "^OSR\\d{4}$", - "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", - "created": "2019-06-11T14:18:15.856+0000", - "modified": "2019-06-11T14:18:15.856+0000", + "prefix": "ricenetdb.reaction", "resources": [ { - "id": 1850, - "mirId": "MIR:00100885", - "urlPattern": "http://bis.zju.edu.cn/ricenetdb/reactiondetails.php?ID={$id}", - "name": "RiceNetDB Reaction", + "deprecated": false, + "deprecationDate": null, "description": "RiceNetDB Reaction", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "OSR0818", - "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb", + "id": 1850, "institution": { - "id": 1843, - "name": "College of Life Sciences, Zhejiang University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1843, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "College of Life Sciences, Zhejiang University", + "rorId": null }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100885", + "name": "RiceNetDB Reaction", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb", + "sampleId": "OSR0818", + "urlPattern": "http://bis.zju.edu.cn/ricenetdb/reactiondetails.php?ID={$id}" } ], - "sampleId": "OSR0818", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "OSR0818" }, { + "created": "2019-06-11T14:18:16.076+0000", + "deprecated": false, + "deprecationDate": null, + "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", "id": 1851, - "prefix": "ricenetdb.mirna", "mirId": "MIR:00000668", + "modified": "2019-06-11T14:18:16.076+0000", "name": "RiceNetDB miRNA", + "namespaceEmbeddedInLui": false, "pattern": "^osa-miR\\d{3,5}[a-z]{0,1}$", - "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", - "created": "2019-06-11T14:18:16.076+0000", - "modified": "2019-06-11T14:18:16.076+0000", + "prefix": "ricenetdb.mirna", "resources": [ { - "id": 1852, - "mirId": "MIR:00100886", - "urlPattern": "http://bis.zju.edu.cn/ricenetdb/miRNAdetails.php?ID={$id}", - "name": "RiceNetDB miRNA", + "deprecated": false, + "deprecationDate": null, "description": "RiceNetDB miRNA", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "osa-miR446", - "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb", + "id": 1852, "institution": { - "id": 1843, - "name": "College of Life Sciences, Zhejiang University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1843, "location": { "countryCode": "CN", "countryName": "China" - } + }, + "name": "College of Life Sciences, Zhejiang University", + "rorId": null }, "location": { "countryCode": "CN", "countryName": "China" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100886", + "name": "RiceNetDB miRNA", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb", + "sampleId": "osa-miR446", + "urlPattern": "http://bis.zju.edu.cn/ricenetdb/miRNAdetails.php?ID={$id}" } ], - "sampleId": "osa-miR446", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "osa-miR446" }, { + "created": "2019-06-11T14:18:16.344+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The global library cooperative OCLC maintains WorldCat. WorldCat is the world's largest network of library content and services. WorldCat libraries are dedicated to providing access to their resources on the Web, where most people start their search for information.", "id": 1853, - "prefix": "oclc", "mirId": "MIR:00000669", + "modified": "2019-06-11T14:18:16.344+0000", "name": "Online Computer Library Center (OCLC) WorldCat", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]+$", - "description": "The global library cooperative OCLC maintains WorldCat. WorldCat is the world's largest network of library content and services. WorldCat libraries are dedicated to providing access to their resources on the Web, where most people start their search for information.", - "created": "2019-06-11T14:18:16.344+0000", - "modified": "2019-06-11T14:18:16.344+0000", + "prefix": "oclc", "resources": [ { - "id": 1855, - "mirId": "MIR:00100887", - "urlPattern": "https://www.worldcat.org/oclc/{$id}", - "name": "Online Computer Library Center (OCLC) WorldCat", + "deprecated": false, + "deprecationDate": null, "description": "Online Computer Library Center (OCLC) WorldCat", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "634515043", - "resourceHomeUrl": "https://www.oclc.org/en/about.html", + "id": 1855, "institution": { - "id": 1854, - "name": "Online Computer Library Center (OCLC), Dublin, Ohio", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1854, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Online Computer Library Center (OCLC), Dublin, Ohio", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100887", + "name": "Online Computer Library Center (OCLC) WorldCat", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.oclc.org/en/about.html", + "sampleId": "634515043", + "urlPattern": "https://www.worldcat.org/oclc/{$id}" } ], - "sampleId": "634515043", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "634515043" }, { + "created": "2019-06-11T14:18:16.611+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Almost every product on our site has its own ASIN, a unique code we use to identify it. For books, the ASIN is the same as the ISBN number, but for all other products a new ASIN is created when the item is uploaded to our catalogue.", "id": 1856, - "prefix": "asin", "mirId": "MIR:00000670", + "modified": "2019-06-11T14:18:16.611+0000", "name": "Amazon Standard Identification Number (ASIN)", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]{10}$", - "description": "Almost every product on our site has its own ASIN, a unique code we use to identify it. For books, the ASIN is the same as the ISBN number, but for all other products a new ASIN is created when the item is uploaded to our catalogue.", - "created": "2019-06-11T14:18:16.611+0000", - "modified": "2019-06-11T14:18:16.611+0000", + "prefix": "asin", "resources": [ { - "id": 1858, - "mirId": "MIR:00100888", - "urlPattern": "https://amzn.com/{$id}", - "name": "Amazon Standard Identification Number (ASIN)", + "deprecated": false, + "deprecationDate": null, "description": "Amazon Standard Identification Number (ASIN)", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0471491039", - "resourceHomeUrl": "https://www.amazon.co.uk/gp/help/customer/display.html/277-3416785-8259466?ie=UTF8&nodeId=898182", + "id": 1858, "institution": { - "id": 1857, - "name": "Amazon", - "homeUrl": "https://amazon.com", "description": "is an American multinational technology company based in Seattle, Washington, that focuses on e-commerce, cloud computing, digital streaming, and artificial intelligence", - "rorId": "https://ror.org/04mv4n011", + "homeUrl": "https://amazon.com", + "id": 1857, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Amazon", + "rorId": "https://ror.org/04mv4n011" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100888", + "name": "Amazon Standard Identification Number (ASIN)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.amazon.co.uk/gp/help/customer/display.html/277-3416785-8259466?ie=UTF8&nodeId=898182", + "sampleId": "0471491039", + "urlPattern": "https://amzn.com/{$id}" } ], - "sampleId": "0471491039", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "0471491039" }, { + "created": "2019-06-11T14:18:16.879+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Assists in resolving data across cloud resources.", "id": 1859, - "prefix": "ga4ghdos", "mirId": "MIR:00000671", + "modified": "2019-06-11T14:18:16.879+0000", "name": "Data Object Service", + "namespaceEmbeddedInLui": false, "pattern": "^[a-zA-Z0-9\\-:#/\\.]+$", - "description": "Assists in resolving data across cloud resources.", - "created": "2019-06-11T14:18:16.879+0000", - "modified": "2019-06-11T14:18:16.879+0000", + "prefix": "ga4ghdos", "resources": [ { - "id": 1860, - "mirId": "MIR:00100895", - "urlPattern": "https://dataguids.org/ga4gh/dos/v1/dataobjects/{$id}", - "name": "Data Object Service", + "deprecated": false, + "deprecationDate": null, "description": "Data Object Service", - "official": false, - "providerCode": "ucsd", - "sampleId": "dg.4503/01b048d0-e128-4cb0-94e9-b2d2cab7563d", - "resourceHomeUrl": "http://github.com/ga4gh/data-object-service-schemas", + "id": 1860, "institution": { - "id": 190, - "name": "University of California, San Diego", - "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", - "rorId": "https://ror.org/0168r3w48", + "homeUrl": "https://ucsd.edu/", + "id": 190, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of California, San Diego", + "rorId": "https://ror.org/0168r3w48" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100895", + "name": "Data Object Service", + "official": false, + "providerCode": "ucsd", + "resourceHomeUrl": "http://github.com/ga4gh/data-object-service-schemas", + "sampleId": "dg.4503/01b048d0-e128-4cb0-94e9-b2d2cab7563d", + "urlPattern": "https://dataguids.org/ga4gh/dos/v1/dataobjects/{$id}" } ], - "sampleId": "dg.4503/01b048d0-e128-4cb0-94e9-b2d2cab7563d", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "dg.4503/01b048d0-e128-4cb0-94e9-b2d2cab7563d" }, { + "created": "2019-06-11T14:18:17.129+0000", + "deprecated": false, + "deprecationDate": null, + "description": "FlowRepository is a database of flow cytometry experiments where you can query and download data collected and annotated according to the MIFlowCyt standard. It is primarily used as a data deposition place for experimental findings published in peer-reviewed journals in the flow cytometry field.", "id": 1861, - "prefix": "flowrepository", "mirId": "MIR:00000672", + "modified": "2019-06-11T14:18:17.129+0000", "name": "FlowRepository", + "namespaceEmbeddedInLui": false, "pattern": "^FR\\-FCM\\-\\w{4}$", - "description": "FlowRepository is a database of flow cytometry experiments where you can query and download data collected and annotated according to the MIFlowCyt standard. It is primarily used as a data deposition place for experimental findings published in peer-reviewed journals in the flow cytometry field.", - "created": "2019-06-11T14:18:17.129+0000", - "modified": "2019-06-11T14:18:17.129+0000", + "prefix": "flowrepository", "resources": [ { - "id": 1863, - "mirId": "MIR:00100896", - "urlPattern": "https://flowrepository.org/id/{$id}", - "name": "FlowRepository", + "deprecated": false, + "deprecationDate": null, "description": "FlowRepository", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "FR-FCM-ZYGW", - "resourceHomeUrl": "https://flowrepository.org/", + "id": 1863, "institution": { - "id": 1862, - "name": "Terry Fox Laboratory", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1862, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "Terry Fox Laboratory", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100896", + "name": "FlowRepository", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://flowrepository.org/", + "sampleId": "FR-FCM-ZYGW", + "urlPattern": "https://flowrepository.org/id/{$id}" } ], - "sampleId": "FR-FCM-ZYGW", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "FR-FCM-ZYGW" }, { + "created": "2019-06-11T14:18:17.389+0000", + "deprecated": false, + "deprecationDate": null, + "description": "OIDs provide a persistent identification of objects based on a hierarchical structure of Registration Authorities (RA), where each parent has an object identifier and allocates object identifiers to child nodes.", "id": 1864, - "prefix": "oid", "mirId": "MIR:00000673", + "modified": "2019-06-11T14:18:17.389+0000", "name": "OID Repository", + "namespaceEmbeddedInLui": false, "pattern": "^[\\d.]+$", - "description": "OIDs provide a persistent identification of objects based on a hierarchical structure of Registration Authorities (RA), where each parent has an object identifier and allocates object identifiers to child nodes.", - "created": "2019-06-11T14:18:17.389+0000", - "modified": "2019-06-11T14:18:17.389+0000", + "prefix": "oid", "resources": [ { - "id": 1866, - "mirId": "MIR:00100897", - "urlPattern": "http://www.oid-info.com/cgi-bin/display?oid={$id}&submit=Display&action=display", - "name": "OID Repository", + "deprecated": false, + "deprecationDate": null, "description": "OID Repository", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "2.16.840", - "resourceHomeUrl": "http://www.oid-info.com/introduction.htm", + "id": 1866, "institution": { - "id": 1865, - "name": "Orange SA", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1865, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Orange SA", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100897", + "name": "OID Repository", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.oid-info.com/introduction.htm", + "sampleId": "2.16.840", + "urlPattern": "http://www.oid-info.com/cgi-bin/display?oid={$id}&submit=Display&action=display" } ], - "sampleId": "2.16.840", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2.16.840" }, { + "created": "2019-06-11T14:18:17.630+0000", + "deprecated": false, + "deprecationDate": null, + "description": "hPSCreg is a freely accessible global registry for human pluripotent stem cell lines (hPSC-lines).", "id": 1867, - "prefix": "hpscreg", "mirId": "MIR:00000674", + "modified": "2019-06-11T14:18:17.630+0000", "name": "Human Pluripotent Stem Cell Registry", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z]{2,6}(e|i)[A-Za-z0-9]{3}-[A-Z]{1,2}(-[A-Za-z0-9]{1,2})?$", - "description": "hPSCreg is a freely accessible global registry for human pluripotent stem cell lines (hPSC-lines).", - "created": "2019-06-11T14:18:17.630+0000", - "modified": "2019-06-11T14:18:17.630+0000", + "prefix": "hpscreg", "resources": [ { - "id": 1869, - "mirId": "MIR:00100898", - "urlPattern": "https://hpscreg.eu/cell-line/{$id}", - "name": "Human Pluripotent Stem Cell Registry", + "deprecated": false, + "deprecationDate": null, "description": "Human Pluripotent Stem Cell Registry", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "BCRTi001-A", - "resourceHomeUrl": "https://hpscreg.eu/", + "id": 1869, "institution": { - "id": 1868, - "name": "Charité Berlin", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1868, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Charit\u00e9 Berlin", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100898", + "name": "Human Pluripotent Stem Cell Registry", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://hpscreg.eu/", + "sampleId": "BCRTi001-A", + "urlPattern": "https://hpscreg.eu/cell-line/{$id}" } ], - "sampleId": "BCRTi001-A", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "BCRTi001-A" }, { + "created": "2019-06-11T14:18:17.878+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Addgene is a non-profit plasmid repository. Addgene facilitates the exchange of genetic material between laboratories by offering plasmids and their associated cloning data to not-for-profit laboratories around the world.", "id": 1870, - "prefix": "addgene", "mirId": "MIR:00000675", + "modified": "2019-06-11T14:18:17.878+0000", "name": "Addgene Plasmid Repository", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]{5}(-[a-zA-Z0-9-]{0,7})?$|^[0-9]{10}$", - "description": "Addgene is a non-profit plasmid repository. Addgene facilitates the exchange of genetic material between laboratories by offering plasmids and their associated cloning data to not-for-profit laboratories around the world.", - "created": "2019-06-11T14:18:17.878+0000", - "modified": "2019-06-11T14:18:17.878+0000", + "prefix": "addgene", "resources": [ { - "id": 1872, - "mirId": "MIR:00100899", - "urlPattern": "http://addgene.org/{$id}", - "name": "Addgene Plasmid Repository", + "deprecated": false, + "deprecationDate": null, "description": "Addgene Plasmid Repository", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "50943", - "resourceHomeUrl": "http://addgene.org/", + "id": 1872, "institution": { - "id": 1871, - "name": "Addgene", - "homeUrl": "https://www.addgene.org", "description": "Addgene is a global, nonprofit repository that was created to help scientists share plasmids. Plasmids are DNA-based research reagents commonly used in the life sciences. When scientists publish research papers, they deposit their associated plasmids at Addgene. Then, when other scientists read the publication, they have easy access to the plasmids needed to conduct future experiments.", - "rorId": "https://ror.org/01nn1pw54", + "homeUrl": "https://www.addgene.org", + "id": 1871, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Addgene", + "rorId": "https://ror.org/01nn1pw54" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100899", + "name": "Addgene Plasmid Repository", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://addgene.org/", + "sampleId": "50943", + "urlPattern": "http://addgene.org/{$id}" } ], - "sampleId": "50943", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "50943" }, { + "created": "2019-06-11T14:18:18.125+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BacDive\u2014the Bacterial Diversity Metadatabase merges detailed strain-linked information on the different aspects of bacterial and archaeal biodiversity.", "id": 1873, - "prefix": "bacdive", "mirId": "MIR:00000676", + "modified": "2019-06-11T14:18:18.125+0000", "name": "Bacterial Diversity Metadatabase", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]+$", - "description": "BacDive—the Bacterial Diversity Metadatabase merges detailed strain-linked information on the different aspects of bacterial and archaeal biodiversity.", - "created": "2019-06-11T14:18:18.125+0000", - "modified": "2019-06-11T14:18:18.125+0000", + "prefix": "bacdive", "resources": [ { - "id": 1875, - "mirId": "MIR:00100900", - "urlPattern": "https://bacdive.dsmz.de/strain/{$id}", - "name": "Bacterial Diversity Metadatabase", + "deprecated": false, + "deprecationDate": null, "description": "Bacterial Diversity Metadatabase", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "131392", - "resourceHomeUrl": "https://bacdive.dsmz.de/", + "id": 1875, "institution": { - "id": 1874, - "name": "Leibniz-Institut DSMZ-Deutsche Sammlung von Mikroorganismen und Zellkulturen", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1874, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Leibniz-Institut DSMZ-Deutsche Sammlung von Mikroorganismen und Zellkulturen", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100900", + "name": "Bacterial Diversity Metadatabase", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://bacdive.dsmz.de/", + "sampleId": "131392", + "urlPattern": "https://bacdive.dsmz.de/strain/{$id}" } ], - "sampleId": "131392", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "131392" }, { + "created": "2019-06-11T14:18:18.372+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Infectious Disease Ontology holds entities relevant to both biomedical and clinical aspects of most infectious diseases.", "id": 1876, - "prefix": "ido", "mirId": "MIR:00000677", + "modified": "2019-06-11T14:18:18.372+0000", "name": "Infectious Disease Ontology", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]+$", - "description": "Infectious Disease Ontology holds entities relevant to both biomedical and clinical aspects of most infectious diseases.", - "created": "2019-06-11T14:18:18.372+0000", - "modified": "2019-06-11T14:18:18.372+0000", + "prefix": "ido", "resources": [ { - "id": 1877, - "mirId": "MIR:00100907", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ido/terms?obo_id=IDO:{$id}", - "name": "IDO through OLS", + "deprecated": false, + "deprecationDate": null, "description": "IDO through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0000504", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ido", + "id": 1877, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100907", + "name": "IDO through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ido", + "sampleId": "0000504", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ido/terms?obo_id=IDO:{$id}" } ], - "sampleId": "0000504", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "0000504" }, { + "created": "2019-06-11T14:18:18.593+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Genomics of Drug Sensitivity in Cancer (GDSC) database is designed to facilitate an increased understanding of the molecular features that influence drug response in cancer cells and which will enable the design of improved cancer therapies.", "id": 1878, - "prefix": "gdsc", "mirId": "MIR:00000678", + "modified": "2019-06-11T14:18:18.593+0000", "name": "Genomics of Drug Sensitivity in Cancer", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]+$", - "description": "The Genomics of Drug Sensitivity in Cancer (GDSC) database is designed to facilitate an increased understanding of the molecular features that influence drug response in cancer cells and which will enable the design of improved cancer therapies.", - "created": "2019-06-11T14:18:18.593+0000", - "modified": "2019-06-11T14:18:18.593+0000", + "prefix": "gdsc", "resources": [ { - "id": 1880, - "mirId": "MIR:00100908", - "urlPattern": "https://www.cancerrxgene.org/translation/Drug/{$id}", - "name": "Genomics of Drug Sensitivity in Cancer", + "deprecated": false, + "deprecationDate": null, "description": "Genomics of Drug Sensitivity in Cancer", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "1242", - "resourceHomeUrl": "https://www.cancerrxgene.org", + "id": 1880, "institution": { - "id": 1879, - "name": "Wellcome Sanger Institute and the Center for Molecular Therapeutics and Massachusetts General Hospital Cancer Center", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1879, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Wellcome Sanger Institute and the Center for Molecular Therapeutics and Massachusetts General Hospital Cancer Center", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100908", + "name": "Genomics of Drug Sensitivity in Cancer", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.cancerrxgene.org", + "sampleId": "1242", + "urlPattern": "https://www.cancerrxgene.org/translation/Drug/{$id}" } ], - "sampleId": "1242", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "1242" }, { + "created": "2019-06-11T14:18:20.121+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ISNI is the ISO certified global standard number for identifying the millions of contributors to creative works and those active in their distribution, including researchers, inventors, writers, artists, visual creators, performers, producers, publishers, aggregators, and more. It is part of a family of international standard identifiers that includes identifiers of works, recordings, products and right holders in all repertoires, e.g. DOI, ISAN, ISBN, ISRC, ISSN, ISTC, and ISWC.\r\n\r\nThe mission of the ISNI International Authority (ISNI-IA) is to assign to the public name(s) of a researcher, inventor, writer, artist, performer, publisher, etc. a persistent unique identifying number in order to resolve the problem of name ambiguity in search and discovery; and diffuse each assigned ISNI across all repertoires in the global supply chain so that every published work can be unambiguously attributed to its creator wherever that work is described.", "id": 1895, - "prefix": "isni", "mirId": "MIR:00000684", + "modified": "2019-06-11T14:18:20.121+0000", "name": "International Standard Name Identifier", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]{15}[0-9X]{1}$", - "description": "ISNI is the ISO certified global standard number for identifying the millions of contributors to creative works and those active in their distribution, including researchers, inventors, writers, artists, visual creators, performers, producers, publishers, aggregators, and more. It is part of a family of international standard identifiers that includes identifiers of works, recordings, products and right holders in all repertoires, e.g. DOI, ISAN, ISBN, ISRC, ISSN, ISTC, and ISWC.\r\n\r\nThe mission of the ISNI International Authority (ISNI-IA) is to assign to the public name(s) of a researcher, inventor, writer, artist, performer, publisher, etc. a persistent unique identifying number in order to resolve the problem of name ambiguity in search and discovery; and diffuse each assigned ISNI across all repertoires in the global supply chain so that every published work can be unambiguously attributed to its creator wherever that work is described.", - "created": "2019-06-11T14:18:20.121+0000", - "modified": "2019-06-11T14:18:20.121+0000", + "prefix": "isni", "resources": [ { - "id": 1897, - "mirId": "MIR:00100915", - "urlPattern": "http://www.isni.org/isni/{$id}", - "name": "International Standard Name Identifier", + "deprecated": false, + "deprecationDate": null, "description": "International Standard Name Identifier", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "000000012281955X", - "resourceHomeUrl": "http://www.isni.org", + "id": 1897, "institution": { - "id": 1896, - "name": "ISNI International Authority", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1896, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "ISNI International Authority", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100915", + "name": "International Standard Name Identifier", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.isni.org", + "sampleId": "000000012281955X", + "urlPattern": "http://www.isni.org/isni/{$id}" } ], - "sampleId": "000000012281955X", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "000000012281955X" }, { + "created": "2019-06-11T14:18:20.364+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The VIAF\u00ae (Virtual International Authority File) combines multiple name authority files into a single OCLC-hosted name authority service. The goal of the service is to lower the cost and increase the utility of library authority files by matching and linking widely-used authority files and making that information available on the Web.", "id": 1898, - "prefix": "viaf", "mirId": "MIR:00000685", + "modified": "2019-06-11T14:18:20.364+0000", "name": "Virtual International Authority File", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The VIAF® (Virtual International Authority File) combines multiple name authority files into a single OCLC-hosted name authority service. The goal of the service is to lower the cost and increase the utility of library authority files by matching and linking widely-used authority files and making that information available on the Web.", - "created": "2019-06-11T14:18:20.364+0000", - "modified": "2019-06-11T14:18:20.364+0000", + "prefix": "viaf", "resources": [ { - "id": 1900, - "mirId": "MIR:00100916", - "urlPattern": "http://viaf.org/viaf/{$id}", - "name": "Virtual International Authority File", + "deprecated": false, + "deprecationDate": null, "description": "Virtual International Authority File", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "75121530", - "resourceHomeUrl": "http://viaf.org", + "id": 1900, "institution": { - "id": 1899, - "name": "Online Computer Library Center, Incorporated, Dublin, Ohio", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1899, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Online Computer Library Center, Incorporated, Dublin, Ohio", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100916", + "name": "Virtual International Authority File", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://viaf.org", + "sampleId": "75121530", + "urlPattern": "http://viaf.org/viaf/{$id}" } ], - "sampleId": "75121530", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "75121530" }, { + "created": "2019-06-11T14:18:20.599+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Established by the Financial Stability Board in June 2014, the Global Legal Entity Identifier Foundation (GLEIF) is tasked to support the implementation and use of the Legal Entity Identifier (LEI). The foundation is backed and overseen by the LEI Regulatory Oversight Committee, representing public authorities from around the globe that have come together to jointly drive forward transparency within the global financial markets. GLEIF is a supra-national not-for-profit organization headquartered in Basel, Switzerland.", "id": 1901, - "prefix": "lei", "mirId": "MIR:00000686", + "modified": "2019-06-11T14:18:20.599+0000", "name": "Global LEI Index", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9A-Z]{4}[0-9A-Z]{14}[0-9A-Z]{2}$", - "description": "Established by the Financial Stability Board in June 2014, the Global Legal Entity Identifier Foundation (GLEIF) is tasked to support the implementation and use of the Legal Entity Identifier (LEI). The foundation is backed and overseen by the LEI Regulatory Oversight Committee, representing public authorities from around the globe that have come together to jointly drive forward transparency within the global financial markets. GLEIF is a supra-national not-for-profit organization headquartered in Basel, Switzerland.", - "created": "2019-06-11T14:18:20.599+0000", - "modified": "2019-06-11T14:18:20.599+0000", + "prefix": "lei", "resources": [ { - "id": 1903, - "mirId": "MIR:00100917", - "urlPattern": "https://www.gleif.org/lei/{$id}", - "name": "Global LEI Index", + "deprecated": false, + "deprecationDate": null, "description": "Global LEI Index", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "HWUPKR0MPOU8FGXBT394", - "resourceHomeUrl": "https://www.gleif.org/", + "id": 1903, "institution": { - "id": 1902, - "name": "Global Legal Entity Identifier Foundation, St. Alban-Vorstadt 5, 4052 Basel", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1902, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "Global Legal Entity Identifier Foundation, St. Alban-Vorstadt 5, 4052 Basel", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100917", + "name": "Global LEI Index", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.gleif.org/", + "sampleId": "HWUPKR0MPOU8FGXBT394", + "urlPattern": "https://www.gleif.org/lei/{$id}" } ], - "sampleId": "HWUPKR0MPOU8FGXBT394", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "HWUPKR0MPOU8FGXBT394" }, { + "created": "2019-06-11T14:18:20.855+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The SPDX License List is a list of commonly found licenses and exceptions used in free and open source and other collaborative software or documentation. The purpose of the SPDX License List is to enable easy and efficient identification of such licenses and exceptions in an SPDX document, in source files or elsewhere. The SPDX License List includes a standardized short identifier, full name, vetted license text including matching guidelines markup as appropriate, and a canonical permanent URL for each license and exception.", "id": 1904, - "prefix": "spdx", "mirId": "MIR:00000687", + "modified": "2019-06-11T14:18:20.855+0000", "name": "SPDX License List", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9A-Za-z\\-.]+$", - "description": "The SPDX License List is a list of commonly found licenses and exceptions used in free and open source and other collaborative software or documentation. The purpose of the SPDX License List is to enable easy and efficient identification of such licenses and exceptions in an SPDX document, in source files or elsewhere. The SPDX License List includes a standardized short identifier, full name, vetted license text including matching guidelines markup as appropriate, and a canonical permanent URL for each license and exception.", - "created": "2019-06-11T14:18:20.855+0000", - "modified": "2019-06-11T14:18:20.855+0000", + "prefix": "spdx", "resources": [ { - "id": 1906, - "mirId": "MIR:00100918", - "urlPattern": "https://spdx.org/licenses/{$id}", - "name": "SPDX License List", + "deprecated": false, + "deprecationDate": null, "description": "SPDX License List", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "CC-BY-1.0", - "resourceHomeUrl": "https://spdx.org", + "id": 1906, "institution": { - "id": 1905, - "name": "SPDX Workgroup a Linux Foundation Project", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1905, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "SPDX Workgroup a Linux Foundation Project", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100918", + "name": "SPDX License List", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://spdx.org", + "sampleId": "CC-BY-1.0", + "urlPattern": "https://spdx.org/licenses/{$id}" } ], - "sampleId": "CC-BY-1.0", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CC-BY-1.0" }, { + "created": "2019-06-11T14:18:21.119+0000", + "deprecated": false, + "deprecationDate": null, + "description": "SABIO-RK is a relational database system that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. The compound data set provides information regarding the reactions in which a compound participates as substrate, product or modifier (e.g. inhibitor, cofactor), and links to further information.", "id": 1907, - "prefix": "sabiork.compound", "mirId": "MIR:00000688", + "modified": "2019-06-11T14:18:21.119+0000", "name": "SABIO-RK Compound", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "SABIO-RK is a relational database system that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. The compound data set provides information regarding the reactions in which a compound participates as substrate, product or modifier (e.g. inhibitor, cofactor), and links to further information.", - "created": "2019-06-11T14:18:21.119+0000", - "modified": "2019-06-11T14:18:21.119+0000", + "prefix": "sabiork.compound", "resources": [ { - "id": 1908, - "mirId": "MIR:00100919", - "urlPattern": "http://sabiork.h-its.org/newSearch?q={$id}", - "name": "SABIO-RK Compound", + "deprecated": false, + "deprecationDate": null, "description": "SABIO-RK Compound", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "75", - "resourceHomeUrl": "http://sabiork.h-its.org/", + "id": 1908, "institution": { - "id": 408, - "name": "Heidelberg Institute for Theoretical Studies (HITS gGmbH)", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 408, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Heidelberg Institute for Theoretical Studies (HITS gGmbH)", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100919", + "name": "SABIO-RK Compound", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://sabiork.h-its.org/", + "sampleId": "75", + "urlPattern": "http://sabiork.h-its.org/newSearch?q={$id}" } ], - "sampleId": "75", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "75" }, { + "created": "2019-06-11T14:18:21.361+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Oryzabase is a comprehensive rice science database established in 2000 by rice researcher's committee in Japan.", "id": 1909, - "prefix": "oryzabase.reference", "mirId": "MIR:00000689", + "modified": "2019-06-11T14:18:21.361+0000", "name": "Oryzabase", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Oryzabase is a comprehensive rice science database established in 2000 by rice researcher's committee in Japan.", - "created": "2019-06-11T14:18:21.361+0000", - "modified": "2019-06-11T14:18:21.361+0000", + "prefix": "oryzabase.reference", "resources": [ { - "id": 1910, - "mirId": "MIR:00100920", - "urlPattern": "https://shigen.nig.ac.jp/rice/oryzabase/reference/detail/{$id}", - "name": "Oryzabase", + "deprecated": false, + "deprecationDate": null, "description": "Oryzabase", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "42840", - "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "id": 1910, "institution": { - "id": 1371, - "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1371, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100920", + "name": "Oryzabase", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "sampleId": "42840", + "urlPattern": "https://shigen.nig.ac.jp/rice/oryzabase/reference/detail/{$id}" } ], - "sampleId": "42840", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "42840" }, { + "created": "2019-06-11T14:18:21.571+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Experiment details about PeptideAtlas entries. Each PASS entry provides direct access to the data files submitted to PeptideAtlas.", "id": 1911, - "prefix": "peptideatlas.dataset", "mirId": "MIR:00000690", + "modified": "2019-06-11T14:18:21.571+0000", "name": "PeptideAtlas Dataset", + "namespaceEmbeddedInLui": false, "pattern": "^PASS\\d{5}$", - "description": "Experiment details about PeptideAtlas entries. Each PASS entry provides direct access to the data files submitted to PeptideAtlas.", - "created": "2019-06-11T14:18:21.571+0000", - "modified": "2019-06-11T14:18:21.571+0000", + "prefix": "peptideatlas.dataset", "resources": [ { - "id": 1912, - "mirId": "MIR:00100921", - "urlPattern": "http://www.peptideatlas.org/PASS/{$id}", - "name": "PeptideAtlas Dataset", + "deprecated": false, + "deprecationDate": null, "description": "PeptideAtlas Dataset", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PASS01237", - "resourceHomeUrl": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/PASS_Summary", + "id": 1912, "institution": { - "id": 193, - "name": "Institute for Systems Biology", - "homeUrl": "https://isbscience.org/", "description": "ISB was created in 2000 as the first-ever institute dedicated to systems biology.", - "rorId": "https://ror.org/02tpgw303", + "homeUrl": "https://isbscience.org/", + "id": 193, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Institute for Systems Biology", + "rorId": "https://ror.org/02tpgw303" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100921", + "name": "PeptideAtlas Dataset", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/PASS_Summary", + "sampleId": "PASS01237", + "urlPattern": "http://www.peptideatlas.org/PASS/{$id}" } ], - "sampleId": "PASS01237", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PASS01237" }, { + "created": "2019-06-11T14:18:21.755+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DIDs are an effort by the W3C Credentials Community Group and the wider Internet identity community to define identifiers that can be registered, updated, resolved, and revoked without any dependency on a central authority or intermediary.", "id": 1913, - "prefix": "did", "mirId": "MIR:00000691", + "modified": "2019-06-11T14:18:21.755+0000", "name": "Decentralized Identifiers (DIDs)", + "namespaceEmbeddedInLui": true, "pattern": "^did:[a-z0-9]+:[A-Za-z0-9.\\-:]+$", - "description": "DIDs are an effort by the W3C Credentials Community Group and the wider Internet identity community to define identifiers that can be registered, updated, resolved, and revoked without any dependency on a central authority or intermediary.", - "created": "2019-06-11T14:18:21.755+0000", - "modified": "2019-06-11T14:18:21.755+0000", + "prefix": "did", "resources": [ { - "id": 1915, - "mirId": "MIR:00100922", - "urlPattern": "https://uniresolver.io/#did:{$id}", - "name": "Decentralized Identifiers (DIDs)", + "deprecated": false, + "deprecationDate": null, "description": "Decentralized Identifiers (DIDs)", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "sov:WRfXPg8dantKVubE3HX8pw", - "resourceHomeUrl": "https://w3c-ccg.github.io/did-spec/", + "id": 1915, "institution": { - "id": 1914, - "name": "W3C Credentials Community Group", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1914, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "W3C Credentials Community Group", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100922", + "name": "Decentralized Identifiers (DIDs)", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://w3c-ccg.github.io/did-spec/", + "sampleId": "sov:WRfXPg8dantKVubE3HX8pw", + "urlPattern": "https://uniresolver.io/#did:{$id}" } ], - "sampleId": "sov:WRfXPg8dantKVubE3HX8pw", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "sov:WRfXPg8dantKVubE3HX8pw" }, { + "created": "2019-06-11T14:18:21.981+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ModelSEED is a platform for creating genome-scale metabolic network reconstructions for microbes and plants. As part of the platform, a biochemistry database is managed that contains reactions unique to ModelSEED as well as reactions aggregated from other databases or from manually-curated genome-scale metabolic network reconstructions.", "id": 1916, - "prefix": "seed.reaction", "mirId": "MIR:00000692", + "modified": "2019-06-11T14:18:21.981+0000", "name": "SEED Reactions", + "namespaceEmbeddedInLui": false, "pattern": "^rxn\\d+$", - "description": "ModelSEED is a platform for creating genome-scale metabolic network reconstructions for microbes and plants. As part of the platform, a biochemistry database is managed that contains reactions unique to ModelSEED as well as reactions aggregated from other databases or from manually-curated genome-scale metabolic network reconstructions.", - "created": "2019-06-11T14:18:21.981+0000", - "modified": "2019-06-11T14:18:21.981+0000", + "prefix": "seed.reaction", "resources": [ { - "id": 1917, - "mirId": "MIR:00100923", - "urlPattern": "http://modelseed.org/biochem/reactions/{$id}", - "name": "SEED Reactions", + "deprecated": false, + "deprecationDate": null, "description": "SEED Reactions", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "rxn00001", - "resourceHomeUrl": "http://modelseed.org/biochem/reactions/", + "id": 1917, "institution": { - "id": 1546, - "name": "Argonne National Laboratory", - "homeUrl": "https://www.anl.gov", "description": "Argonne is a multidisciplinary science and engineering research center, where talented scientists and engineers work together to answer the biggest questions facing humanity, from how to obtain affordable clean energy to protecting ourselves and our environment.", - "rorId": "https://ror.org/05gvnxz63", + "homeUrl": "https://www.anl.gov", + "id": 1546, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Argonne National Laboratory", + "rorId": "https://ror.org/05gvnxz63" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100923", + "name": "SEED Reactions", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://modelseed.org/biochem/reactions/", + "sampleId": "rxn00001", + "urlPattern": "http://modelseed.org/biochem/reactions/{$id}" } ], - "sampleId": "rxn00001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "rxn00001" }, { + "created": "2019-06-11T14:18:22.186+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The OpenCitations Corpus is open repository of scholarly citation data made available under a Creative Commons public domain dedication (CC0), which provides accurate bibliographic references harvested from the scholarly literature that others may freely build upon, enhance and reuse for any purpose, without restriction under copyright or database law.", "id": 1918, - "prefix": "occ", "mirId": "MIR:00000693", + "modified": "2019-06-11T14:18:22.186+0000", "name": "OpenCitations Corpus", + "namespaceEmbeddedInLui": false, "pattern": "^[a-z][a-z]/[0-9]+$", - "description": "The OpenCitations Corpus is open repository of scholarly citation data made available under a Creative Commons public domain dedication (CC0), which provides accurate bibliographic references harvested from the scholarly literature that others may freely build upon, enhance and reuse for any purpose, without restriction under copyright or database law.", - "created": "2019-06-11T14:18:22.186+0000", - "modified": "2019-06-11T14:18:22.186+0000", + "prefix": "occ", "resources": [ { - "id": 1920, - "mirId": "MIR:00100925", - "urlPattern": "https://w3id.org/oc/corpus/{$id}", - "name": "OpenCitations Corpus", + "deprecated": false, + "deprecationDate": null, "description": "OpenCitations Corpus", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "br/1", - "resourceHomeUrl": "https://w3id.org/oc/corpus", + "id": 1920, "institution": { - "id": 1919, - "name": "OpenCitations", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1919, "location": { "countryCode": "IT", "countryName": "Italy" - } + }, + "name": "OpenCitations", + "rorId": null }, "location": { "countryCode": "IT", "countryName": "Italy" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100925", + "name": "OpenCitations Corpus", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://w3id.org/oc/corpus", + "sampleId": "br/1", + "urlPattern": "https://w3id.org/oc/corpus/{$id}" } ], - "sampleId": "br/1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "br/1" }, { + "created": "2019-06-11T14:18:22.448+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The BioStudies database holds descriptions of biological studies, links to data from these studies in other databases at EMBL-EBI or outside, as well as data that do not fit in the structured archives at EMBL-EBI. The database can accept a wide range of types of studies described via a simple format. It also enables manuscript authors to submit supplementary information and link to it from the publication.", "id": 1921, - "prefix": "biostudies", "mirId": "MIR:00000694", + "modified": "2019-06-11T14:18:22.448+0000", "name": "BioStudies database", + "namespaceEmbeddedInLui": false, "pattern": "^S-[A-Z]{4}[A-Z\\d\\-]+$", - "description": "The BioStudies database holds descriptions of biological studies, links to data from these studies in other databases at EMBL-EBI or outside, as well as data that do not fit in the structured archives at EMBL-EBI. The database can accept a wide range of types of studies described via a simple format. It also enables manuscript authors to submit supplementary information and link to it from the publication.", - "created": "2019-06-11T14:18:22.448+0000", - "modified": "2019-06-11T14:18:22.448+0000", + "prefix": "biostudies", "resources": [ { - "id": 1922, - "mirId": "MIR:00100926", - "urlPattern": "https://www.ebi.ac.uk/biostudies/studies/{$id}", - "name": "BioStudies database", + "deprecated": false, + "deprecationDate": null, "description": "BioStudies database", - "official": true, - "providerCode": "ebi", - "sampleId": "S-EPMC6266652", - "resourceHomeUrl": "https://www.ebi.ac.uk/biostudies/", + "id": 1922, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100926", + "name": "BioStudies database", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/biostudies/", + "sampleId": "S-EPMC6266652", + "urlPattern": "https://www.ebi.ac.uk/biostudies/studies/{$id}" } ], - "sampleId": "S-EPMC6266652", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "S-EPMC6266652" }, { + "created": "2019-06-11T14:18:22.646+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The US National Cancer Institute (NCI) maintains and administers data elements, forms, models, and components of these items in a metadata registry referred to as the Cancer Data Standards Registry and Repository, or caDSR.", "id": 1923, - "prefix": "cadsr", "mirId": "MIR:00000695", + "modified": "2019-06-11T14:18:22.646+0000", "name": "Cancer Data Standards Registry and Repository", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]*$", - "description": "The US National Cancer Institute (NCI) maintains and administers data elements, forms, models, and components of these items in a metadata registry referred to as the Cancer Data Standards Registry and Repository, or caDSR.", - "created": "2019-06-11T14:18:22.646+0000", - "modified": "2019-06-11T14:18:22.646+0000", + "prefix": "cadsr", "resources": [ { - "id": 1925, - "mirId": "MIR:00100928", - "urlPattern": "https://cadsrapi.nci.nih.gov/cadsrapi4/GetXML?query=DataElement[@publicId={$id}]", - "name": "Cancer Data Standards Registry and Repository", + "deprecated": false, + "deprecationDate": null, "description": "Cancer Data Standards Registry and Repository", - "official": true, - "providerCode": "CURATOR_REVIEW", - "sampleId": "3771992", - "resourceHomeUrl": "https://wiki.nci.nih.gov/display/caDSR/caDSR+Wiki", + "id": 1925, "institution": { - "id": 1924, - "name": "National Cancer Institute, National Institutes of Health, Bethesda, MD", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1924, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Cancer Institute, National Institutes of Health, Bethesda, MD", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100928", + "name": "Cancer Data Standards Registry and Repository", + "official": true, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://wiki.nci.nih.gov/display/caDSR/caDSR+Wiki", + "sampleId": "3771992", + "urlPattern": "https://cadsrapi.nci.nih.gov/cadsrapi4/GetXML?query=DataElement[@publicId={$id}]" } ], - "sampleId": "3771992", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "3771992" }, { + "created": "2019-06-19T15:38:51.382+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The European Registry of Materials is a simple registry with the sole purpose to mint material identifiers to be used by research projects throughout the life cycle of their project.", "id": 1942, - "prefix": "erm", "mirId": "MIR:00000763", + "modified": "2019-06-19T15:38:51.382+0000", "name": "European Registry of Materials", + "namespaceEmbeddedInLui": false, "pattern": "^ERM[0-9]{8}$", - "description": "The European Registry of Materials is a simple registry with the sole purpose to mint material identifiers to be used by research projects throughout the life cycle of their project.", - "created": "2019-06-19T15:38:51.382+0000", - "modified": "2019-06-19T15:38:51.382+0000", + "prefix": "erm", "resources": [ - { - "id": 1943, - "mirId": "MIR:00000711", - "urlPattern": "https://nanocommons.github.io/identifiers/registry#{$id}", - "name": "European Registry of Materials", + { + "deprecated": false, + "deprecationDate": null, "description": "The European Registry of Materials is a simple registry with the sole purpose to mint material identifiers to be used by research projects throughout the life cycle of their project.", - "official": true, - "providerCode": "erm", - "sampleId": "ERM00000044", - "resourceHomeUrl": "https://nanocommons.github.io/identifiers/", + "id": 1943, "institution": { - "id": 283, - "name": "Maastricht University", - "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", - "rorId": "https://ror.org/02jz4aj89", + "homeUrl": "https://www.maastrichtuniversity.nl", + "id": 283, "location": { "countryCode": "NL", "countryName": "Netherlands" - } + }, + "name": "Maastricht University", + "rorId": "https://ror.org/02jz4aj89" }, "location": { "countryCode": "NL", "countryName": "Netherlands" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000711", + "name": "European Registry of Materials", + "official": true, + "providerCode": "erm", + "resourceHomeUrl": "https://nanocommons.github.io/identifiers/", + "sampleId": "ERM00000044", + "urlPattern": "https://nanocommons.github.io/identifiers/registry#{$id}" } ], - "sampleId": "ERM00000044", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "ERM00000044" }, { + "created": "2019-09-05T11:46:36.162+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ClassyFire is a web-based application for automated structural classification of chemical entities. This application uses a rule-based approach that relies on a comprehensible, comprehensive, and computable chemical taxonomy. ClassyFire provides a hierarchical chemical classification of chemical entities (mostly small molecules and short peptide sequences), as well as a structure-based textual description, based on a chemical taxonomy named ChemOnt, which covers 4825 chemical classes of organic and inorganic compounds. Moreover, ClassyFire allows for text-based search via its web interface. It can be accessed via the web interface or via the ClassyFire API.", "id": 1977, - "prefix": "classyfire", "mirId": "MIR:00000770", + "modified": "2019-09-05T11:46:36.162+0000", "name": "ClassyFire", + "namespaceEmbeddedInLui": false, "pattern": "^C[0-9]{7}$", - "description": "ClassyFire is a web-based application for automated structural classification of chemical entities. This application uses a rule-based approach that relies on a comprehensible, comprehensive, and computable chemical taxonomy. ClassyFire provides a hierarchical chemical classification of chemical entities (mostly small molecules and short peptide sequences), as well as a structure-based textual description, based on a chemical taxonomy named ChemOnt, which covers 4825 chemical classes of organic and inorganic compounds. Moreover, ClassyFire allows for text-based search via its web interface. It can be accessed via the web interface or via the ClassyFire API.", - "created": "2019-09-05T11:46:36.162+0000", - "modified": "2019-09-05T11:46:36.162+0000", + "prefix": "classyfire", "resources": [ { + "deprecated": false, + "deprecationDate": null, + "description": "Dr. David Wishart (PhD Yale, 1991) is a Professor in the Departments of Biological Sciences and Computing Science at the University of Alberta. He is also a senior research officer and the director of the Nano Life Science program at the NRC\u2019s National Institute for Nanotechnology (NINT). He has been with the University of Alberta since 1995. Dr. Wishart has active research programs in Ua Colour structural biology, nanobiology, synthetic biology, prion biology, bioinformatics and metabolomics. Some of his lab's most significant contributions have been in the area of protein chemical shift analysis and the prediction of protein structure.", "id": 1978, - "mirId": "MIR:00000710", - "urlPattern": "http://classyfire.wishartlab.com/tax_nodes/{$id}", - "name": "The Wishart Research Group, University of Alberta, Edmonton, Alberta, Canada", - "description": "Dr. David Wishart (PhD Yale, 1991) is a Professor in the Departments of Biological Sciences and Computing Science at the University of Alberta. He is also a senior research officer and the director of the Nano Life Science program at the NRC’s National Institute for Nanotechnology (NINT). He has been with the University of Alberta since 1995. Dr. Wishart has active research programs in Ua Colour structural biology, nanobiology, synthetic biology, prion biology, bioinformatics and metabolomics. Some of his lab's most significant contributions have been in the area of protein chemical shift analysis and the prediction of protein structure.", - "official": true, - "providerCode": "classyfire", - "sampleId": "C0004828", - "resourceHomeUrl": "http://classyfire.wishartlab.com/", "institution": { - "id": 1976, - "name": "The Wishart Research Group, University of Alberta, Edmonton, Alberta, Canada", + "description": "Dr. David Wishart (PhD Yale, 1991) is a Professor in the Departments of Biological Sciences and Computing Science at the University of Alberta. He is also a senior research officer and the director of the Nano Life Science program at the NRC\u2019s National Institute for Nanotechnology (NINT). He has been with the University of Alberta since 1995. Dr. Wishart has active research programs in Ua Colour structural biology, nanobiology, synthetic biology, prion biology, bioinformatics and metabolomics. Some of his lab's most significant contributions have been in the area of protein chemical shift analysis and the prediction of protein structure.", "homeUrl": "http://www.wishartlab.com/", - "description": "Dr. David Wishart (PhD Yale, 1991) is a Professor in the Departments of Biological Sciences and Computing Science at the University of Alberta. He is also a senior research officer and the director of the Nano Life Science program at the NRC’s National Institute for Nanotechnology (NINT). He has been with the University of Alberta since 1995. Dr. Wishart has active research programs in Ua Colour structural biology, nanobiology, synthetic biology, prion biology, bioinformatics and metabolomics. Some of his lab's most significant contributions have been in the area of protein chemical shift analysis and the prediction of protein structure.", - "rorId": null, + "id": 1976, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "The Wishart Research Group, University of Alberta, Edmonton, Alberta, Canada", + "rorId": null }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000710", + "name": "The Wishart Research Group, University of Alberta, Edmonton, Alberta, Canada", + "official": true, + "providerCode": "classyfire", + "resourceHomeUrl": "http://classyfire.wishartlab.com/", + "sampleId": "C0004828", + "urlPattern": "http://classyfire.wishartlab.com/tax_nodes/{$id}" } ], - "sampleId": "C0004828", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "C0004828" }, { + "created": "2019-09-10T09:27:59.693+0000", + "deprecated": false, + "deprecationDate": null, + "description": "'ocid' stands for \"Ontology Concept Identifiers\" and are 12 digit long integers covering IDs in topical ontologies from anatomy up to toxicology.", "id": 1989, - "prefix": "ocid", "mirId": "MIR:00000738", + "modified": "2019-09-10T09:27:59.693+0000", "name": "Ontology Concept Identifiers", + "namespaceEmbeddedInLui": true, "pattern": "ocid:[0-9]{12}", - "description": "'ocid' stands for \"Ontology Concept Identifiers\" and are 12 digit long integers covering IDs in topical ontologies from anatomy up to toxicology.", - "created": "2019-09-10T09:27:59.693+0000", - "modified": "2019-09-10T09:27:59.693+0000", + "prefix": "ocid", "resources": [ { - "id": 1990, - "mirId": "MIR:00000706", - "urlPattern": "https://www.sciwalker.com/sciwalker/faces/ociddata.xhtml?ocid={$id}", - "name": "SciWalker Open Data", + "deprecated": false, + "deprecationDate": null, "description": "SciWalker is an open access ontology based search tool for annotated data and extracted knowledge from scientific databases, patents and scientific documents.", - "official": true, - "providerCode": "oc", - "sampleId": "190000021540", - "resourceHomeUrl": "https://www.sciwalker.com", + "id": 1990, "institution": { - "id": 1988, - "name": "OntoChem GmbH", - "homeUrl": "https://www.ontochem.com", "description": "OntoChem develops and uses ontologies and semantic NLP software to annotate, analyze, extract and predict knowledge from scientific databases, patents, scientific articles or general private documents.", - "rorId": null, + "homeUrl": "https://www.ontochem.com", + "id": 1988, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "OntoChem GmbH", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000706", + "name": "SciWalker Open Data", + "official": true, + "providerCode": "oc", + "resourceHomeUrl": "https://www.sciwalker.com", + "sampleId": "190000021540", + "urlPattern": "https://www.sciwalker.com/sciwalker/faces/ociddata.xhtml?ocid={$id}" } ], - "sampleId": "190000021540", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "190000021540" }, { + "created": "2019-09-10T10:50:49.547+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MarFun is manually curated database for marine fungi which is a part of the MAR databases.", "id": 1997, - "prefix": "mmp.fun", "mirId": "MIR:00000729", + "modified": "2019-09-10T10:50:49.547+0000", "name": "MarFun", + "namespaceEmbeddedInLui": false, "pattern": "^MMP\\d+.\\d+$", - "description": "MarFun is manually curated database for marine fungi which is a part of the MAR databases.", - "created": "2019-09-10T10:50:49.547+0000", - "modified": "2019-09-10T10:50:49.547+0000", + "prefix": "mmp.fun", "resources": [ { - "id": 1998, - "mirId": "MIR:00000713", - "urlPattern": "https://mmp.sfb.uit.no/databases/marfun/#/records/{$id}", - "name": "MarFun through SfB", + "deprecated": false, + "deprecationDate": null, "description": "MarFun through SfB", - "official": true, - "providerCode": "mmp", - "sampleId": "MMP3888430", - "resourceHomeUrl": "https://mmp.sfb.uit.no/databases/marfun", + "id": 1998, "institution": { - "id": 1996, - "name": "Centre for bioinformatics (SfB), UiT The Arctic university of Norway", - "homeUrl": "https://uit.no", "description": "The Centre for bioinformatics at UiT is a part of ELIXIR Norway dedicated to services.", - "rorId": null, + "homeUrl": "https://uit.no", + "id": 1996, "location": { "countryCode": "NO", "countryName": "Norway" - } + }, + "name": "Centre for bioinformatics (SfB), UiT The Arctic university of Norway", + "rorId": null }, "location": { "countryCode": "NO", "countryName": "Norway" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000713", + "name": "MarFun through SfB", + "official": true, + "providerCode": "mmp", + "resourceHomeUrl": "https://mmp.sfb.uit.no/databases/marfun", + "sampleId": "MMP3888430", + "urlPattern": "https://mmp.sfb.uit.no/databases/marfun/#/records/{$id}" } ], - "sampleId": "MMP3888430", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MMP3888430" }, { + "created": "2019-09-10T12:51:24.637+0000", + "deprecated": false, + "deprecationDate": null, + "description": "E-cyanobacterium experiments is a repository of wet-lab experiments related to cyanobacteria. The emphasis is placed on annotation via mapping to local database of biological knowledge and mathematical models along with the complete experimental setup supporting the reproducibility of the experiments.", "id": 2003, - "prefix": "ecyano.experiment", "mirId": "MIR:00000760", + "modified": "2019-09-10T12:51:24.637+0000", "name": "E-cyanobacterium Experimental Data", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "E-cyanobacterium experiments is a repository of wet-lab experiments related to cyanobacteria. The emphasis is placed on annotation via mapping to local database of biological knowledge and mathematical models along with the complete experimental setup supporting the reproducibility of the experiments.", - "created": "2019-09-10T12:51:24.637+0000", - "modified": "2019-09-10T12:51:24.637+0000", + "prefix": "ecyano.experiment", "resources": [ { + "deprecated": false, + "deprecationDate": null, + "description": "E-cyanobacterium is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction \u2014 as biochemical reaction networks or ordinary differential equations. It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references wet-lab experiments.", "id": 2004, - "mirId": "MIR:00000754", - "urlPattern": "https://www.e-cyanobacterium.org/experiments-repository/?action=detail&id={$id}", - "name": "E-cyanobacterium", - "description": "E-cyanobacterium is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction — as biochemical reaction networks or ordinary differential equations. It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references wet-lab experiments.", - "official": true, - "providerCode": "ecyano", - "sampleId": "18", - "resourceHomeUrl": "https://www.e-cyanobacterium.org/experiments-repository/", "institution": { - "id": 1629, - "name": "Systems Biology Laboratory, Faculty of Informatics, Masaryk University Brno", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1629, "location": { "countryCode": "CZ", "countryName": "Czech Republic" - } + }, + "name": "Systems Biology Laboratory, Faculty of Informatics, Masaryk University Brno", + "rorId": null }, "location": { "countryCode": "CZ", "countryName": "Czech Republic" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000754", + "name": "E-cyanobacterium", + "official": true, + "providerCode": "ecyano", + "resourceHomeUrl": "https://www.e-cyanobacterium.org/experiments-repository/", + "sampleId": "18", + "urlPattern": "https://www.e-cyanobacterium.org/experiments-repository/?action=detail&id={$id}" } ], - "sampleId": "18", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "18" }, { + "created": "2019-09-24T11:03:08.927+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DOULIX lab-tested standard biological parts, in this case, full length constructs.", "id": 2022, - "prefix": "dlxc", "mirId": "MIR:00000742", + "modified": "2019-09-24T11:03:08.927+0000", "name": "Circular double stranded DNA sequences composed", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z0-9]{6,7}$", - "description": "DOULIX lab-tested standard biological parts, in this case, full length constructs.", - "created": "2019-09-24T11:03:08.927+0000", - "modified": "2019-09-24T11:03:08.927+0000", + "prefix": "dlxc", "resources": [ { - "id": 2023, - "mirId": "MIR:00000734", - "urlPattern": "https://doulix.com/constructs/{$id}/", - "name": "Doulix DNA repository", + "deprecated": false, + "deprecationDate": null, "description": "Doulix DNA repository provides a FAIR-compliant database of DNA sequences for synthetic biology. Doulix allows user to retrieve, inspect and manipulate DNA sequences while ensuring data traceability and integrity.", - "official": true, - "providerCode": "dlxc", - "sampleId": "M77F7JM", - "resourceHomeUrl": "https://doulix.com", + "id": 2023, "institution": { - "id": 2021, - "name": "Double Helix Technologies (DOULIX)", - "homeUrl": "https://doulix.com", "description": "Double Helix Technologies (DOULIX) is currently an operative unit of Explora Biotech (https://www.explora-biotech). ", - "rorId": null, + "homeUrl": "https://doulix.com", + "id": 2021, "location": { "countryCode": "IT", "countryName": "Italy" - } + }, + "name": "Double Helix Technologies (DOULIX)", + "rorId": null }, "location": { "countryCode": "IT", "countryName": "Italy" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000734", + "name": "Doulix DNA repository", + "official": true, + "providerCode": "dlxc", + "resourceHomeUrl": "https://doulix.com", + "sampleId": "M77F7JM", + "urlPattern": "https://doulix.com/constructs/{$id}/" } ], - "sampleId": "M77F7JM", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "M77F7JM" }, { + "created": "2019-10-01T11:40:36.666+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DOULIX lab-tested standard biological parts, in this case linear double stranded DNA sequences.", "id": 2026, - "prefix": "dlxb", "mirId": "MIR:00000747", + "modified": "2019-10-01T11:40:36.666+0000", "name": "Linear double stranded DNA sequences", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z0-9]{6,7}$", - "description": "DOULIX lab-tested standard biological parts, in this case linear double stranded DNA sequences.", - "created": "2019-10-01T11:40:36.666+0000", - "modified": "2019-10-01T11:40:36.666+0000", + "prefix": "dlxb", "resources": [ { - "id": 2027, - "mirId": "MIR:00000717", - "urlPattern": "https://doulix.com/biomodules/{$id}/", - "name": "Doulix DNA repository", + "deprecated": false, + "deprecationDate": null, "description": "Doulix DNA repository provides a FAIR-compliant database of DNA sequences for synthetic biology. Doulix allows user to retrieve, inspect and manipulate DNA sequences while ensuring data traceability and integrity.", - "official": true, - "providerCode": "dlxb", - "sampleId": "6VDC956", - "resourceHomeUrl": "https://doulix.com", + "id": 2027, "institution": { - "id": 2025, - "name": "Doulix Helix Technologies (DOULIX)", - "homeUrl": "https://doulix.com", "description": "Double Helix Technologies (DOULIX) is currently an operative unit of Explora Biotech (https://www.explora-biotech.com). ", - "rorId": null, + "homeUrl": "https://doulix.com", + "id": 2025, "location": { "countryCode": "IT", "countryName": "Italy" - } + }, + "name": "Doulix Helix Technologies (DOULIX)", + "rorId": null }, "location": { "countryCode": "IT", "countryName": "Italy" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000717", + "name": "Doulix DNA repository", + "official": true, + "providerCode": "dlxb", + "resourceHomeUrl": "https://doulix.com", + "sampleId": "6VDC956", + "urlPattern": "https://doulix.com/biomodules/{$id}/" } ], - "sampleId": "6VDC956", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "6VDC956" }, { + "created": "2019-06-11T14:18:04.976+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The goal of the CAMEO (Continuous Automated Model EvaluatiOn) community project is to continuously evaluate the accuracy and reliability of protein structure prediction servers, offering scores on tertiary and quaternary structure prediction, model quality estimation, accessible surface area prediction, ligand binding site residue prediction and contact prediction services in a fully automated manner. These predictions are regularly compared against reference structures from PDB.", "id": 1729, - "prefix": "cameo", "mirId": "MIR:00000623", + "modified": "2019-10-01T11:46:06.302+0000", "name": "CAMEO", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9\\-_]+$", - "description": "The goal of the CAMEO (Continuous Automated Model EvaluatiOn) community project is to continuously evaluate the accuracy and reliability of protein structure prediction servers, offering scores on tertiary and quaternary structure prediction, model quality estimation, accessible surface area prediction, ligand binding site residue prediction and contact prediction services in a fully automated manner. These predictions are regularly compared against reference structures from PDB.", - "created": "2019-06-11T14:18:04.976+0000", - "modified": "2019-10-01T11:46:06.302+0000", + "prefix": "cameo", "resources": [ { - "id": 1731, - "mirId": "MIR:00100827", - "urlPattern": "https://www.cameo3d.org/sp/targets/target/{$id}", - "name": "CAMEO", + "deprecated": false, + "deprecationDate": null, "description": "CAMEO", - "official": false, - "providerCode": "sib", - "sampleId": "2019-08-03_00000089_1", - "resourceHomeUrl": "https://cameo3d.org", + "id": 1731, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100827", + "name": "CAMEO", + "official": false, + "providerCode": "sib", + "resourceHomeUrl": "https://cameo3d.org", + "sampleId": "2019-08-03_00000089_1", + "urlPattern": "https://www.cameo3d.org/sp/targets/target/{$id}" } ], - "sampleId": "2019-08-03_00000089_1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2019-08-03_00000089_1" }, { + "created": "2019-09-19T13:46:35.999+0000", + "deprecated": false, + "deprecationDate": null, + "description": "This namespace is about Neuroscience Multi-Omic data, specially focused on that data generated from the BRAIN Initiative and related brain research projects.", "id": 2013, - "prefix": "nemo", "mirId": "MIR:00000744", + "modified": "2019-10-02T08:18:15.555+0000", "name": "Neuroscience Multi-Omic BRAIN Initiative Data", + "namespaceEmbeddedInLui": false, "pattern": "[a-z]{3}-[a-km-z0-9]{7}", - "description": "This namespace is about Neuroscience Multi-Omic data, specially focused on that data generated from the BRAIN Initiative and related brain research projects.", - "created": "2019-09-19T13:46:35.999+0000", - "modified": "2019-10-02T08:18:15.555+0000", + "prefix": "nemo", "resources": [ { - "id": 2014, - "mirId": "MIR:00000790", - "urlPattern": "https://assets.nemoarchive.org/{$id}", - "name": "The NeMO Archive", + "deprecated": false, + "deprecationDate": null, "description": "The Neuroscience Multi-Omic Archive (NeMO Archive) is a data repository specifically focused on the storage and dissemination of omic data generated from the BRAIN Initiative and related brain research projects.", - "official": true, - "providerCode": "igs", - "sampleId": "smp-m3w9hbe", - "resourceHomeUrl": "https://www.nemoarchive.org", + "id": 2014, "institution": { - "id": 2012, - "name": "The Institute for Genome Sciences", - "homeUrl": "http://www.igs.umaryland.edu", "description": "Formed in May 2007, the Institute for Genome Sciences (IGS) is part of the University of Maryland School of Medicine and is on the University of Maryland Baltimore campus. Members of the IGS team have helped revolutionize genomic discoveries in medicine, agriculture, environmental science and biodefense.", - "rorId": null, + "homeUrl": "http://www.igs.umaryland.edu", + "id": 2012, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Institute for Genome Sciences", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000790", + "name": "The NeMO Archive", + "official": true, + "providerCode": "igs", + "resourceHomeUrl": "https://www.nemoarchive.org", + "sampleId": "smp-m3w9hbe", + "urlPattern": "https://assets.nemoarchive.org/{$id}" } ], - "sampleId": "smp-m3w9hbe", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "smp-m3w9hbe" }, { + "created": "2019-11-07T10:59:42.032+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Signaling Pathways Project is an integrated 'omics knowledgebase based upon public, manually curated transcriptomic and cistromic (ChIP-Seq) datasets involving genetic and small molecule manipulations of cellular receptors, enzymes and transcription factors. Our goal is to create a resource where scientists can routinely generate research hypotheses or validate bench data relevant to cellular signaling pathways.", "id": 2037, - "prefix": "spp", "mirId": "MIR:00000726", + "modified": "2019-11-07T10:59:42.032+0000", "name": "Signaling Pathways Project", + "namespaceEmbeddedInLui": false, "pattern": "^10.\\w{4}/\\w{10}$", - "description": "The Signaling Pathways Project is an integrated 'omics knowledgebase based upon public, manually curated transcriptomic and cistromic (ChIP-Seq) datasets involving genetic and small molecule manipulations of cellular receptors, enzymes and transcription factors. Our goal is to create a resource where scientists can routinely generate research hypotheses or validate bench data relevant to cellular signaling pathways.", - "created": "2019-11-07T10:59:42.032+0000", - "modified": "2019-11-07T10:59:42.032+0000", + "prefix": "spp", "resources": [ { - "id": 2038, - "mirId": "MIR:00000730", - "urlPattern": "https://www.signalingpathways.org/datasets/dataset.jsf?doi={$id}", - "name": "Signaling Pathways Project", + "deprecated": false, + "deprecationDate": null, "description": "The Signaling Pathways Project is an integrated 'omics knowledgebase based upon public, manually curated transcriptomic and cistromic (ChIP-Seq) datasets involving genetic and small molecule manipulations of cellular receptors, enzymes and transcription factors. Our goal is to create a resource where scientists can routinely generate research hypotheses or validate bench data relevant to cellular signaling pathways.", - "official": true, - "providerCode": "spp", - "sampleId": "10.1621/vwN2g2HaX3", - "resourceHomeUrl": "https://www.signalingpathways.org/index.jsf", + "id": 2038, "institution": { - "id": 485, - "name": "Baylor College of Medicine", - "homeUrl": "https://www.bcm.edu", "description": "Baylor College of Medicine is a health sciences university that creates knowledge and applies science and discoveries to further education, healthcare and community service locally and globally.", - "rorId": "https://ror.org/02pttbw34", + "homeUrl": "https://www.bcm.edu", + "id": 485, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Baylor College of Medicine", + "rorId": "https://ror.org/02pttbw34" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000730", + "name": "Signaling Pathways Project", + "official": true, + "providerCode": "spp", + "resourceHomeUrl": "https://www.signalingpathways.org/index.jsf", + "sampleId": "10.1621/vwN2g2HaX3", + "urlPattern": "https://www.signalingpathways.org/datasets/dataset.jsf?doi={$id}" } ], - "sampleId": "10.1621/vwN2g2HaX3", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "10.1621/vwN2g2HaX3" }, { + "created": "2019-12-09T15:05:02.665+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BMRB collects, annotates, archives, and disseminates (worldwide in the public domain) the important spectral and quantitative data derived from NMR spectroscopic investigations of biological macromolecules and metabolites. The goal is to empower scientists in their analysis of the structure, dynamics, and chemistry of biological systems and to support further development of the field of biomolecular NMR spectroscopy.", "id": 2055, - "prefix": "bmrb", "mirId": "MIR:00000716", + "modified": "2019-12-09T15:05:02.665+0000", "name": "Biological Magnetic Resonance Data Bank", + "namespaceEmbeddedInLui": false, "pattern": "^(bmr|bmse|bmst)?[0-9]{1,6}$", - "description": "BMRB collects, annotates, archives, and disseminates (worldwide in the public domain) the important spectral and quantitative data derived from NMR spectroscopic investigations of biological macromolecules and metabolites. The goal is to empower scientists in their analysis of the structure, dynamics, and chemistry of biological systems and to support further development of the field of biomolecular NMR spectroscopy.", - "created": "2019-12-09T15:05:02.665+0000", - "modified": "2019-12-09T15:05:02.665+0000", + "prefix": "bmrb", "resources": [ { - "id": 2056, - "mirId": "MIR:00000735", - "urlPattern": "http://rest.bmrb.wisc.edu/bmrb/{$id}/html", - "name": "Biological Magnetic Resonance Data Bank", + "deprecated": false, + "deprecationDate": null, "description": "BMRB collects, annotates, archives, and disseminates (worldwide in the public domain) the important spectral and quantitative data derived from NMR spectroscopic investigations of biological macromolecules and metabolites. The goal is to empower scientists in their analysis of the structure, dynamics, and chemistry of biological systems and to support further development of the field of biomolecular NMR spectroscopy.", - "official": true, - "providerCode": "bmrb", - "sampleId": "15000", - "resourceHomeUrl": "http://www.bmrb.wisc.edu/", + "id": 2056, "institution": { - "id": 2054, - "name": "University of Wisconsin-Madison", + "description": "The University of Wisconsin\u2013Madison is a public research university in Madison, Wisconsin. Founded when Wisconsin achieved statehood in 1848, UW\u2013Madison is the official state university of Wisconsin, and the flagship campus of the University of Wisconsin System.\nIt was the first public university established in Wisconsin and remains the oldest and largest public university in the state. It became a land-grant institution in 1866.\nThe 933-acre (378 ha) main campus, located on the shores of Lake Mendota, includes four National Historic Landmarks.\nThe University also owns and operates a historic 1,200-acre (486 ha) arboretum established in 1932, located 4 miles (6.4 km) south of the main campus.", "homeUrl": "https://www.wisc.edu/", - "description": "The University of Wisconsin–Madison is a public research university in Madison, Wisconsin. Founded when Wisconsin achieved statehood in 1848, UW–Madison is the official state university of Wisconsin, and the flagship campus of the University of Wisconsin System.\nIt was the first public university established in Wisconsin and remains the oldest and largest public university in the state. It became a land-grant institution in 1866.\nThe 933-acre (378 ha) main campus, located on the shores of Lake Mendota, includes four National Historic Landmarks.\nThe University also owns and operates a historic 1,200-acre (486 ha) arboretum established in 1932, located 4 miles (6.4 km) south of the main campus.", - "rorId": "https://ror.org/01y2jtd41", + "id": 2054, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Wisconsin-Madison", + "rorId": "https://ror.org/01y2jtd41" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000735", + "name": "Biological Magnetic Resonance Data Bank", + "official": true, + "providerCode": "bmrb", + "resourceHomeUrl": "http://www.bmrb.wisc.edu/", + "sampleId": "15000", + "urlPattern": "http://rest.bmrb.wisc.edu/bmrb/{$id}/html" } ], - "sampleId": "15000", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "15000" }, { + "created": "2019-12-09T15:18:31.130+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DisProt is a database of intrisically disordered proteins and protein disordered regions, manually curated from literature.", "id": 2061, - "prefix": "disprot.region", "mirId": "MIR:00000745", + "modified": "2019-12-09T15:18:31.130+0000", "name": "DisProt region", + "namespaceEmbeddedInLui": false, "pattern": "^DP\\d{5}r\\d{3}$", - "description": "DisProt is a database of intrisically disordered proteins and protein disordered regions, manually curated from literature.", - "created": "2019-12-09T15:18:31.130+0000", - "modified": "2019-12-09T15:18:31.130+0000", + "prefix": "disprot.region", "resources": [ { - "id": 2062, - "mirId": "MIR:00000756", - "urlPattern": "https://www.disprot.org/{$id}", - "name": "DisProt region", + "deprecated": false, + "deprecationDate": null, "description": "DisProt is a database of intrinsically disordered proteins and protein disordered regions, manually curated from literature.", - "official": true, - "providerCode": "disprot.region", - "sampleId": "DP00086r013", - "resourceHomeUrl": "https://www.disprot.org", + "id": 2062, "institution": { - "id": 1769, - "name": "University of Padua", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1769, "location": { "countryCode": "IT", "countryName": "Italy" - } + }, + "name": "University of Padua", + "rorId": null }, "location": { "countryCode": "IT", "countryName": "Italy" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000756", + "name": "DisProt region", + "official": true, + "providerCode": "disprot.region", + "resourceHomeUrl": "https://www.disprot.org", + "sampleId": "DP00086r013", + "urlPattern": "https://www.disprot.org/{$id}" } ], - "sampleId": "DP00086r013", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "DP00086r013" }, { + "created": "2020-01-24T13:57:43.399+0000", + "deprecated": false, + "deprecationDate": null, + "description": "VegBank is the vegetation plot database of the Ecological Society of America's Panel on Vegetation Classification. VegBank consists of three linked databases that contain (1) vegetation plot records, (2) vegetation types recognized in the U.S. National Vegetation Classification and other vegetation types submitted by users, and (3) all plant taxa recognized by ITIS/USDA as well as all other plant taxa recorded in plot records. Vegetation records, community types and plant taxa may be submitted to VegBank and may be subsequently searched, viewed, annotated, revised, interpreted, downloaded, and cited. ", "id": 2072, - "prefix": "vegbank", "mirId": "MIR:00000723", + "modified": "2020-01-24T13:57:43.399+0000", "name": "VegBank", + "namespaceEmbeddedInLui": false, "pattern": "^VB\\.[A-Za-z][A-Za-z]\\..*$", - "description": "VegBank is the vegetation plot database of the Ecological Society of America's Panel on Vegetation Classification. VegBank consists of three linked databases that contain (1) vegetation plot records, (2) vegetation types recognized in the U.S. National Vegetation Classification and other vegetation types submitted by users, and (3) all plant taxa recognized by ITIS/USDA as well as all other plant taxa recorded in plot records. Vegetation records, community types and plant taxa may be submitted to VegBank and may be subsequently searched, viewed, annotated, revised, interpreted, downloaded, and cited. ", - "created": "2020-01-24T13:57:43.399+0000", - "modified": "2020-01-24T13:57:43.399+0000", + "prefix": "vegbank", "resources": [ { - "id": 2073, - "mirId": "MIR:00000751", - "urlPattern": "http://vegbank.org/cite/{$id}", - "name": "VegBank", + "deprecated": false, + "deprecationDate": null, "description": "VegBank is the vegetation plot database of the Ecological Society of America's Panel on Vegetation Classification.", - "official": true, - "providerCode": "vegbank", - "sampleId": "VB.Ob.3736.GRSM125", - "resourceHomeUrl": "http://vegbank.org/", + "id": 2073, "institution": { - "id": 2071, - "name": "National Center for Ecological Analysis and Synthesis", - "homeUrl": "https://nceas.ucsb.edu/", "description": "NCEAS works to accelerate scientific discoveries that will enhance our understanding of the world and benefit people and nature, as well as to transform the scientific culture to be more open, efficient, and collaborative.", - "rorId": null, + "homeUrl": "https://nceas.ucsb.edu/", + "id": 2071, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Ecological Analysis and Synthesis", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000751", + "name": "VegBank", + "official": true, + "providerCode": "vegbank", + "resourceHomeUrl": "http://vegbank.org/", + "sampleId": "VB.Ob.3736.GRSM125", + "urlPattern": "http://vegbank.org/cite/{$id}" } ], - "sampleId": "VB.Ob.3736.GRSM125", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "VB.Ob.3736.GRSM125" }, { + "created": "2020-02-25T11:14:38.686+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Minid are identifiers used to provide robust reference to intermediate data generated during the course of a research investigation. This is a prefix for referencing identifiers in the minid test namespace. ", "id": 2085, - "prefix": "minid.test", "mirId": "MIR:00000707", + "modified": "2020-02-28T10:24:36.137+0000", "name": "MINID Test", + "namespaceEmbeddedInLui": false, "pattern": "[A-Za-z0-9]+$", - "description": "Minid are identifiers used to provide robust reference to intermediate data generated during the course of a research investigation. This is a prefix for referencing identifiers in the minid test namespace. ", - "created": "2020-02-25T11:14:38.686+0000", - "modified": "2020-02-28T10:24:36.137+0000", + "prefix": "minid.test", "resources": [ { - "id": 2086, - "mirId": "MIR:00000724", - "urlPattern": "https://hdl.handle.net/hdl:20.500.12633/{$id}", - "name": "FAIR Research", + "deprecated": false, + "deprecationDate": null, "description": "FAIR Research is a collaboration of the Informatics Systems Research Division at the Information Sciences Institute of University of Southern California and the Computational Systems Division at the University of Chicago.", - "official": true, - "providerCode": "fair", - "sampleId": "3SBPLMKKVEVR", - "resourceHomeUrl": "https://fair-research.org", + "id": 2086, "institution": { - "id": 1781, - "name": "University of Southern California", + "description": "The University of Southern California is a leading private research university located in Los Angeles \u2014 a global center for arts, technology and international business. It is home to the College of Letters, Arts and Sciences and 21 exceptional academic schools and units. USC\u2019s Health Sciences campus houses renowned specialized care and research in cancer, stem cell and regenerative medicine, orthopedics and sports medicine. The university is the largest private sector employer in the city of Los Angeles, responsible for $8 billion annually in economic activity in the region.", "homeUrl": "https://www.usc.edu/", - "description": "The University of Southern California is a leading private research university located in Los Angeles — a global center for arts, technology and international business. It is home to the College of Letters, Arts and Sciences and 21 exceptional academic schools and units. USC’s Health Sciences campus houses renowned specialized care and research in cancer, stem cell and regenerative medicine, orthopedics and sports medicine. The university is the largest private sector employer in the city of Los Angeles, responsible for $8 billion annually in economic activity in the region.", - "rorId": "https://ror.org/03taz7m60", + "id": 1781, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Southern California", + "rorId": "https://ror.org/03taz7m60" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000724", + "name": "FAIR Research", + "official": true, + "providerCode": "fair", + "resourceHomeUrl": "https://fair-research.org", + "sampleId": "3SBPLMKKVEVR", + "urlPattern": "https://hdl.handle.net/hdl:20.500.12633/{$id}" } ], - "sampleId": "3SBPLMKKVEVR", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "3SBPLMKKVEVR" }, { + "created": "2020-03-02T17:27:03.688+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Image Data Resource (IDR) is an online, public data repository that seeks to store, integrate and serve image datasets from published scientific studies. We have collected and are continuing to receive existing and newly created \u201creference image\" datasets that are valuable resources for a broad community of users, either because they will be frequently accessed and cited or because they can serve as a basis for re-analysis and the development of new computational tools.", "id": 2108, - "prefix": "idr", "mirId": "MIR:00000743", + "modified": "2020-03-02T17:27:03.688+0000", "name": "Image Data Resource", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]{4}$", - "description": "Image Data Resource (IDR) is an online, public data repository that seeks to store, integrate and serve image datasets from published scientific studies. We have collected and are continuing to receive existing and newly created “reference image\" datasets that are valuable resources for a broad community of users, either because they will be frequently accessed and cited or because they can serve as a basis for re-analysis and the development of new computational tools.", - "created": "2020-03-02T17:27:03.688+0000", - "modified": "2020-03-02T17:27:03.688+0000", + "prefix": "idr", "resources": [ { - "id": 2109, - "mirId": "MIR:00000705", - "urlPattern": "https://idr.openmicroscopy.org/search/?query=Name:idr{$id}", - "name": "Open Microscopy Environment", + "deprecated": false, + "deprecationDate": null, "description": "OME is a consortium of universities, research labs, industry and developers producing open-source software and format standards for microscopy data.", - "official": true, - "providerCode": "ome", - "sampleId": "0001", - "resourceHomeUrl": "https://idr.openmicroscopy.org", + "id": 2109, "institution": { - "id": 2107, - "name": "University of Dundee", - "homeUrl": "https://www.dundee.ac.uk/", "description": "The University of Dundee is a public research university in Dundee, Scotland. Founded in 1881 the institution was, for most of its early existence, a constituent college of the University of St Andrews alongside United College and St Mary's College located in the town of St Andrews itself. Following significant expansion, the University of Dundee gained independent university status in 1967 while retaining much of its ancient heritage and governance structure.", - "rorId": null, + "homeUrl": "https://www.dundee.ac.uk/", + "id": 2107, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "University of Dundee", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000705", + "name": "Open Microscopy Environment", + "official": true, + "providerCode": "ome", + "resourceHomeUrl": "https://idr.openmicroscopy.org", + "sampleId": "0001", + "urlPattern": "https://idr.openmicroscopy.org/search/?query=Name:idr{$id}" } ], - "sampleId": "0001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "0001" }, { + "created": "2020-02-28T10:48:52.126+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Transport Systems Tracker (TranSyT) is a tool to identify transport systems and the compounds carried across membranes.", "id": 2096, - "prefix": "transyt", "mirId": "MIR:00000736", + "modified": "2020-03-03T05:45:40.200+0000", "name": "TranSyT", + "namespaceEmbeddedInLui": false, "pattern": "T[A-Z]\\d{7}", - "description": "The Transport Systems Tracker (TranSyT) is a tool to identify transport systems and the compounds carried across membranes.", - "created": "2020-02-28T10:48:52.126+0000", - "modified": "2020-03-03T05:45:40.200+0000", + "prefix": "transyt", "resources": [ { - "id": 2097, - "mirId": "MIR:00000731", - "urlPattern": "https://transyt.bio.di.uminho.pt/reactions/{$id}", - "name": "BIOSYSTEMS Research Group", + "deprecated": false, + "deprecationDate": null, "description": "The BIOSYSTEMS Research Group is a research group at CEB, using competences in systems biotechnology and bioengineering to foster the development of a knowledge-based bio-economy, leading to new added-value products and processes.", - "official": true, - "providerCode": "transyt", - "sampleId": "TR0000001", - "resourceHomeUrl": "https://www.bio.di.uminho.pt/", + "id": 2097, "institution": { - "id": 2095, - "name": "Centre of Biological Engineering", + "description": "The Centre of Biological Engineering (CEB), designated as \u201cExcellent\u201d by FCT, is a research unit located at University of Minho (ROR:037wpkx04) that develops its activities on interdisciplinary thrust areas covering molecular, cellular and process scales, corresponding to 4 thematic strands: Industrial, Food, Environmental, and Health Biotechnology and Bioengineering.", "homeUrl": "https://www.ceb.uminho.pt", - "description": "The Centre of Biological Engineering (CEB), designated as “Excellent” by FCT, is a research unit located at University of Minho (ROR:037wpkx04) that develops its activities on interdisciplinary thrust areas covering molecular, cellular and process scales, corresponding to 4 thematic strands: Industrial, Food, Environmental, and Health Biotechnology and Bioengineering.", - "rorId": null, + "id": 2095, "location": { "countryCode": "PT", "countryName": "Portugal" - } + }, + "name": "Centre of Biological Engineering", + "rorId": null }, "location": { "countryCode": "PT", "countryName": "Portugal" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000731", + "name": "BIOSYSTEMS Research Group", + "official": true, + "providerCode": "transyt", + "resourceHomeUrl": "https://www.bio.di.uminho.pt/", + "sampleId": "TR0000001", + "urlPattern": "https://transyt.bio.di.uminho.pt/reactions/{$id}" } ], - "sampleId": "TR0000001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "TR0000001" }, { + "created": "2019-06-11T14:18:01.236+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The genome assembly database contains detailed information about genome assemblies for eukaryota, bacteria and archaea. The scope of the genome collections database does not extend to viruses, viroids and bacteriophage.", "id": 1685, - "prefix": "insdc.gca", "mirId": "MIR:00000607", + "modified": "2020-03-31T12:32:16.941+0000", "name": "Genome assembly database", + "namespaceEmbeddedInLui": false, "pattern": "^GC[AF]_[0-9]{9}\\.[0-9]+$", - "description": "The genome assembly database contains detailed information about genome assemblies for eukaryota, bacteria and archaea. The scope of the genome collections database does not extend to viruses, viroids and bacteriophage.", - "created": "2019-06-11T14:18:01.236+0000", - "modified": "2020-03-31T12:32:16.941+0000", + "prefix": "insdc.gca", "resources": [ { - "id": 1686, - "mirId": "MIR:00100810", - "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", - "name": "Genome assembly database through ENA", + "deprecated": false, + "deprecationDate": null, "description": "Genome assembly database through ENA", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "GCA_000155495.1", - "resourceHomeUrl": "https://www.ebi.ac.uk/ena/browse/genome-assembly-database", + "id": 1686, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100810", + "name": "Genome assembly database through ENA", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.ebi.ac.uk/ena/browse/genome-assembly-database", + "sampleId": "GCA_000155495.1", + "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}" }, { - "id": 1687, - "mirId": "MIR:00100811", - "urlPattern": "https://www.ncbi.nlm.nih.gov/assembly/{$id}", - "name": "Genome assembly database NCBI", + "deprecated": false, + "deprecationDate": null, "description": "Genome assembly database NCBI", - "official": false, - "providerCode": "ncbi", - "sampleId": "GCA_000155495.1", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/assembly/", + "id": 1687, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100811", + "name": "Genome assembly database NCBI", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/assembly/", + "sampleId": "GCA_000155495.1", + "urlPattern": "https://www.ncbi.nlm.nih.gov/assembly/{$id}" } ], - "sampleId": "GCA_000155495.1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "GCA_000155495.1" }, { + "created": "2019-06-11T14:17:46.314+0000", + "deprecated": false, + "deprecationDate": null, + "description": "SwissLipids is a curated resource that provides information about known lipids, including lipid structure, metabolism, interactions, and subcellular and tissue localization. Information is curated from peer-reviewed literature and referenced using established ontologies, and provided with full provenance and evidence codes for curated assertions.", "id": 1539, - "prefix": "slm", "mirId": "MIR:00000550", + "modified": "2020-05-01T09:59:44.482+0000", "name": "SwissLipids", + "namespaceEmbeddedInLui": true, "pattern": "^SLM:\\d+$", - "description": "SwissLipids is a curated resource that provides information about known lipids, including lipid structure, metabolism, interactions, and subcellular and tissue localization. Information is curated from peer-reviewed literature and referenced using established ontologies, and provided with full provenance and evidence codes for curated assertions.", - "created": "2019-06-11T14:17:46.314+0000", - "modified": "2020-05-01T09:59:44.482+0000", + "prefix": "slm", "resources": [ { - "id": 1541, - "mirId": "MIR:00100727", - "urlPattern": "http://www.swisslipids.org/#/entity/SLM:{$id}/", - "name": "SwissLipids at Swiss Institute of Bioinformatics", + "deprecated": false, + "deprecationDate": null, "description": "SwissLipids at Swiss Institute of Bioinformatics", - "official": false, - "providerCode": "sib", - "sampleId": "000048885", - "resourceHomeUrl": "http://www.swisslipids.org/#/", + "id": 1541, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100727", + "name": "SwissLipids at Swiss Institute of Bioinformatics", + "official": false, + "providerCode": "sib", + "resourceHomeUrl": "http://www.swisslipids.org/#/", + "sampleId": "000048885", + "urlPattern": "http://www.swisslipids.org/#/entity/SLM:{$id}/" } ], - "sampleId": "000048885", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "000048885" }, { + "created": "2020-05-12T14:08:31.024+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Vertebrate Gene Nomenclature Committee (VGNC) is an extension of the established HGNC (HUGO Gene Nomenclature Committee) project that names human genes. VGNC is responsible for assigning standardized names to genes in vertebrate species that currently lack a nomenclature committee.", "id": 2222, - "prefix": "vgnc", "mirId": "MIR:00000765", + "modified": "2020-05-12T14:08:31.024+0000", "name": "VGNC", + "namespaceEmbeddedInLui": false, "pattern": "^((VGNC|vgnc):)?\\d{1,9}$", - "description": "The Vertebrate Gene Nomenclature Committee (VGNC) is an extension of the established HGNC (HUGO Gene Nomenclature Committee) project that names human genes. VGNC is responsible for assigning standardized names to genes in vertebrate species that currently lack a nomenclature committee.", - "created": "2020-05-12T14:08:31.024+0000", - "modified": "2020-05-12T14:08:31.024+0000", + "prefix": "vgnc", "resources": [ { - "id": 2223, - "mirId": "MIR:00000752", - "urlPattern": "https://vertebrate.genenames.org/data/gene-symbol-report/#!/vgnc_id/{$id}", - "name": "VGNC", + "deprecated": false, + "deprecationDate": null, "description": "The Vertebrate Gene Nomenclature Committee (VGNC) is an extension of the established HGNC (HUGO Gene Nomenclature Committee) project that names human genes. VGNC is responsible for assigning standardized names to genes in vertebrate species that currently lack a nomenclature committee. ", - "official": true, - "providerCode": "vgnc", - "sampleId": "VGNC:3792", - "resourceHomeUrl": "https://vertebrate.genenames.org", + "id": 2223, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000752", + "name": "VGNC", + "official": true, + "providerCode": "vgnc", + "resourceHomeUrl": "https://vertebrate.genenames.org", + "sampleId": "VGNC:3792", + "urlPattern": "https://vertebrate.genenames.org/data/gene-symbol-report/#!/vgnc_id/{$id}" } ], - "sampleId": "VGNC:3792", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "VGNC:3792" }, { + "created": "2020-05-22T09:04:15.866+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Datanator is an integrated database of genomic and biochemical data designed to help investigators find data about specific molecules and reactions in specific organisms and specific environments for meta-analyses and mechanistic models. Datanator currently includes metabolite concentrations, RNA modifications and half-lives, protein abundances and modifications, and reaction kinetics integrated from several databases and numerous publications. The Datanator website and REST API provide tools for extracting clouds of data about specific molecules and reactions in specific organisms and specific environments, as well as data about similar molecules and reactions in taxonomically similar organisms.", "id": 2248, - "prefix": "datanator.metabolite", "mirId": "MIR:00000718", + "modified": "2020-05-22T09:04:15.866+0000", "name": "Datanator Metabolite", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z\\-]+$", - "description": "Datanator is an integrated database of genomic and biochemical data designed to help investigators find data about specific molecules and reactions in specific organisms and specific environments for meta-analyses and mechanistic models. Datanator currently includes metabolite concentrations, RNA modifications and half-lives, protein abundances and modifications, and reaction kinetics integrated from several databases and numerous publications. The Datanator website and REST API provide tools for extracting clouds of data about specific molecules and reactions in specific organisms and specific environments, as well as data about similar molecules and reactions in taxonomically similar organisms.", - "created": "2020-05-22T09:04:15.866+0000", - "modified": "2020-05-22T09:04:15.866+0000", + "prefix": "datanator.metabolite", "resources": [ { - "id": 2249, - "mirId": "MIR:00000772", - "urlPattern": "https://www.datanator.info/metabolite/{$id}", - "name": "Icahn School of Medicine at Mount Sinai", + "deprecated": false, + "deprecationDate": null, "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", - "official": true, - "providerCode": "icahn", - "sampleId": "OUYCCCASQSFEME-MRVPVSSYSA-N", - "resourceHomeUrl": "https://datanator.info/", + "id": 2249, "institution": { - "id": 2247, - "name": "Icahn School of Medicine at Mount Sinai", - "homeUrl": "https://icahn.mssm.edu/", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", - "rorId": null, + "homeUrl": "https://icahn.mssm.edu/", + "id": 2247, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Icahn School of Medicine at Mount Sinai", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000772", + "name": "Icahn School of Medicine at Mount Sinai", + "official": true, + "providerCode": "icahn", + "resourceHomeUrl": "https://datanator.info/", + "sampleId": "OUYCCCASQSFEME-MRVPVSSYSA-N", + "urlPattern": "https://www.datanator.info/metabolite/{$id}" } ], - "sampleId": "OUYCCCASQSFEME-MRVPVSSYSA-N", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "OUYCCCASQSFEME-MRVPVSSYSA-N" }, { + "created": "2019-06-11T14:17:48.275+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Research Resource Identification Initiative provides RRIDs to 4 main classes of resources: Antibodies, Cell Lines, Model Organisms, and Databases / Software tools.: Antibodies, Model Organisms, and Databases / Software tools.\r\nThe initiative works with participating journals to intercept manuscripts in the publication process that use these resources, and allows publication authors to incorporate RRIDs within the methods sections. It also provides resolver services that access curated data from 10 data sources: the antibody registry (a curated catalog of antibodies), the SciCrunch registry (a curated catalog of software tools and databases), and model organism nomenclature authority databases (MGI, FlyBase, WormBase, RGD), as well as various stock centers. These RRIDs are aggregated and can be searched through SciCrunch.", "id": 1559, - "prefix": "rrid", "mirId": "MIR:00000558", + "modified": "2020-03-11T14:52:15.242+0000", "name": "RRID", + "namespaceEmbeddedInLui": true, "pattern": "^RRID:[a-zA-Z]+.+$", - "description": "The Research Resource Identification Initiative provides RRIDs to 4 main classes of resources: Antibodies, Cell Lines, Model Organisms, and Databases / Software tools.: Antibodies, Model Organisms, and Databases / Software tools.\r\nThe initiative works with participating journals to intercept manuscripts in the publication process that use these resources, and allows publication authors to incorporate RRIDs within the methods sections. It also provides resolver services that access curated data from 10 data sources: the antibody registry (a curated catalog of antibodies), the SciCrunch registry (a curated catalog of software tools and databases), and model organism nomenclature authority databases (MGI, FlyBase, WormBase, RGD), as well as various stock centers. These RRIDs are aggregated and can be searched through SciCrunch.", - "created": "2019-06-11T14:17:48.275+0000", - "modified": "2020-03-11T14:52:15.242+0000", + "prefix": "rrid", "resources": [ { - "id": 1560, - "mirId": "MIR:00100735", - "urlPattern": "https://scicrunch.org/resolver/RRID:{$id}", - "name": "RRID at SciCrunch", + "deprecated": false, + "deprecationDate": null, "description": "RRID at SciCrunch", - "official": false, - "providerCode": "ucsd", - "sampleId": "AB_262044", - "resourceHomeUrl": "https://scicrunch.org/resolver", + "id": 1560, "institution": { - "id": 190, - "name": "University of California, San Diego", - "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", - "rorId": "https://ror.org/0168r3w48", + "homeUrl": "https://ucsd.edu/", + "id": 190, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of California, San Diego", + "rorId": "https://ror.org/0168r3w48" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100735", + "name": "RRID at SciCrunch", + "official": false, + "providerCode": "ucsd", + "resourceHomeUrl": "https://scicrunch.org/resolver", + "sampleId": "AB_262044", + "urlPattern": "https://scicrunch.org/resolver/RRID:{$id}" } ], - "sampleId": "AB_262044", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "AB_262044" }, { + "created": "2019-06-11T14:16:11.083+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The PRotein Ontology (PRO) has been designed to describe the relationships of proteins and protein evolutionary classes, to delineate the multiple protein forms of a gene locus (ontology for protein forms), and to interconnect existing ontologies.", "id": 447, - "prefix": "pr", "mirId": "MIR:00000141", + "modified": "2020-03-16T08:35:08.949+0000", "name": "Protein Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^PR:P?\\d+$", - "description": "The PRotein Ontology (PRO) has been designed to describe the relationships of proteins and protein evolutionary classes, to delineate the multiple protein forms of a gene locus (ontology for protein forms), and to interconnect existing ontologies.", - "created": "2019-06-11T14:16:11.083+0000", - "modified": "2020-03-16T08:35:08.949+0000", + "prefix": "pr", "resources": [ { - "id": 448, - "mirId": "MIR:00100184", - "urlPattern": "https://proconsortium.org/app/entry/PR:{$id}", - "name": "Protein Ontology at Georgetown", + "deprecated": false, + "deprecationDate": null, "description": "Protein Ontology at Georgetown", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "000000024", - "resourceHomeUrl": "https://proconsortium.org/", + "id": 448, "institution": { - "id": 173, - "name": "Georgetown University Medical Center, Washington", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 173, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Georgetown University Medical Center, Washington", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100184", + "name": "Protein Ontology at Georgetown", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://proconsortium.org/", + "sampleId": "000000024", + "urlPattern": "https://proconsortium.org/app/entry/PR:{$id}" }, { - "id": 449, - "mirId": "MIR:00100240", - "urlPattern": "http://purl.bioontology.org/ontology/PR/PR:{$id}", - "name": "Protein Ontology through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "Protein Ontology through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "000000024", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PR", + "id": 449, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100240", + "name": "Protein Ontology through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PR", + "sampleId": "000000024", + "urlPattern": "http://purl.bioontology.org/ontology/PR/PR:{$id}" }, { - "id": 450, - "mirId": "MIR:00100755", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/pr/terms?obo_id=PR:{$id}", - "name": "Protein Ontology through OLS", + "deprecated": false, + "deprecationDate": null, "description": "Protein Ontology through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "000000024", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/pr", + "id": 450, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100755", + "name": "Protein Ontology through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/pr", + "sampleId": "000000024", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/pr/terms?obo_id=PR:{$id}" } ], - "sampleId": "000000024", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "000000024" }, { + "created": "2020-03-17T08:03:56.077+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Genomes OnLine Database (GOLD) catalogues genome and metagenome sequencing projects from around the world, along with their associated metadata. Information in GOLD is organized into four levels: Study, Biosample/Organism, Sequencing Project and Analysis Project.", "id": 2129, - "prefix": "gold", "mirId": "MIR:00000733", + "modified": "2020-03-17T08:03:56.077+0000", "name": "Genomes OnLine Database (GOLD)", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z][a-z][0-9]+$", - "description": "The Genomes OnLine Database (GOLD) catalogues genome and metagenome sequencing projects from around the world, along with their associated metadata. Information in GOLD is organized into four levels: Study, Biosample/Organism, Sequencing Project and Analysis Project.", - "created": "2020-03-17T08:03:56.077+0000", - "modified": "2020-03-17T08:03:56.077+0000", + "prefix": "gold", "resources": [ { - "id": 2130, - "mirId": "MIR:00000757", - "urlPattern": "https://gold.jgi.doe.gov/resolver?id={$id}", - "name": "Genomes OnLine Database (GOLD)", + "deprecated": false, + "deprecationDate": null, "description": "The Genomes OnLine Database (GOLD) is a centralized resource for cataloguing genome and metagenome sequencing projects from around the world, along with their associated metadata. Information in GOLD is organized into four levels: Study, Biosample/Organism, Sequencing Project and Analysis Project. \nStudy is an umbrella Project that broadly defines the overall goal of a research proposal. It consists of sequencing projects along with corresponding organism or Biosample information as well as any analysis done on the sequencing projects.\nE.g., Gs0016050: Human Microbiome Project (HMP), Gs0000008: A Genomic Encyclopedia of Bacteria and Archaea (GEBA) study.\nBiosample is the description of the environment from where the DNA/RNA sample was collected. Currently GOLD Biosample entities are defined for all metagenome and metatranscriptomes projects, i.e. for non-isolate genomes. E.g., Gb0055733\nOrganism is an individual living thing. It can be a bacterium, plant, fungus etc. In GOLD, all isolate or single cell genome sequencing projects are associated with an organism. Additionally, GOLD Organisms are also created for genomes assembled from metagenome sequences(MAGs). E.g., Go0003442\nSequencing Project represents the procedures undertaken for generating sequencing output from an individual Organism or Biosample. An individual genome project may be composed of more than one sequencing reactions and/or sequencing technologies. A Sequencing Project may be an isolate genome, or a metagenome, transcriptome, or metatranscriptome etc.\nE.g., Gp0003442\nAnalysis Project represents the computational processing of sequencing data generated by a sequencing project. It describes how the assembly and annotation of a Sequencing Project were performed. \nE.g., Ga0027275", - "official": true, - "providerCode": "jgi", - "sampleId": "Gs0000008", - "resourceHomeUrl": "https://gold.jgi.doe.gov/", + "id": 2130, "institution": { - "id": 2128, - "name": "Joint Genome Institute", - "homeUrl": "https://gold.jgi.doe.gov/", "description": "The mission of the U.S. Department of Energy (DOE) Joint Genome Institute (JGI), a DOE Office of Science User Facility of Lawrence Berkeley National Laboratory (Berkeley Lab) and part of the Biosciences Area, is to advance genomics in support of the DOE missions related to clean energy generation and environmental characterization and cleanup.", - "rorId": null, + "homeUrl": "https://gold.jgi.doe.gov/", + "id": 2128, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Joint Genome Institute", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000757", + "name": "Genomes OnLine Database (GOLD)", + "official": true, + "providerCode": "jgi", + "resourceHomeUrl": "https://gold.jgi.doe.gov/", + "sampleId": "Gs0000008", + "urlPattern": "https://gold.jgi.doe.gov/resolver?id={$id}" } ], - "sampleId": "Gs0000008", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Gs0000008" }, { + "created": "2020-03-17T12:41:40.413+0000", + "deprecated": false, + "deprecationDate": null, + "description": "NMR database for organic structures and their nuclear magnetic resonance (nmr) spectra. It allows for spectrum prediction (13C, 1H and other nuclei) as well as for searching spectra, structures and other properties.", "id": 2140, - "prefix": "nmrshiftdb2", "mirId": "MIR:00000748", + "modified": "2020-03-17T12:43:18.460+0000", "name": "NMR Shift Database", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]+$", - "description": "NMR database for organic structures and their nuclear magnetic resonance (nmr) spectra. It allows for spectrum prediction (13C, 1H and other nuclei) as well as for searching spectra, structures and other properties.", - "created": "2020-03-17T12:41:40.413+0000", - "modified": "2020-03-17T12:43:18.460+0000", + "prefix": "nmrshiftdb2", "resources": [ { - "id": 2141, - "mirId": "MIR:00000719", - "urlPattern": "https://nmrshiftdb.nmr.uni-koeln.de/molecule/{$id}", - "name": "NMRShiftDB", + "deprecated": false, + "deprecationDate": null, "description": "NMR database (web database) for organic structures and their nuclear magnetic resonance (nmr) spectra. It allows for spectrum prediction (13C, 1H and other nuclei) as well as for searching spectra, structures and other properties. Last not least, it features peer-reviewed submission of datasets by its users. The NMRShiftDB software is open source, the data is published under an open content license.", - "official": true, - "providerCode": "uoc", - "sampleId": "234", - "resourceHomeUrl": "https://nmrshiftdb.nmr.uni-koeln.de", + "id": 2141, "institution": { - "id": 2139, - "name": "University of Cologne", - "homeUrl": "https://www.portal.uni-koeln.de/uoc_home.html?&L=1", "description": "The University of Cologne is one of the oldest and largest universities in Europe. Due to its outstanding scientific achievements and the high quality and diversity of its degree programmes, it enjoys an excellent international reputation.", - "rorId": null, + "homeUrl": "https://www.portal.uni-koeln.de/uoc_home.html?&L=1", + "id": 2139, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "University of Cologne", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000719", + "name": "NMRShiftDB", + "official": true, + "providerCode": "uoc", + "resourceHomeUrl": "https://nmrshiftdb.nmr.uni-koeln.de", + "sampleId": "234", + "urlPattern": "https://nmrshiftdb.nmr.uni-koeln.de/molecule/{$id}" } ], - "sampleId": "234", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "234" }, { + "created": "2019-06-11T14:18:10.091+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Minid are identifiers used to provide robust reference to intermediate data generated during the course of a research investigation.", "id": 1789, - "prefix": "minid", "mirId": "MIR:00000645", + "modified": "2020-03-20T09:37:38.029+0000", "name": "Minimal Viable Identifier", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9]+$", - "description": "Minid are identifiers used to provide robust reference to intermediate data generated during the course of a research investigation.", - "created": "2019-06-11T14:18:10.091+0000", - "modified": "2020-03-20T09:37:38.029+0000", + "prefix": "minid", "resources": [ { - "id": 1791, - "mirId": "MIR:00100850", - "urlPattern": "https://hdl.handle.net/hdl:20.500.12582/{$id}", - "name": "FAIR Research", + "deprecated": false, + "deprecationDate": null, "description": "FAIR Research is a collaboration of the Informatics Systems Research Division at the Information Sciences Institute of University of Southern California and the Computational Systems Division at the University of Chicago.", - "official": false, - "providerCode": "fair", - "sampleId": "r8059v", - "resourceHomeUrl": "https://fair-research.org", + "id": 1791, "institution": { - "id": 1781, - "name": "University of Southern California", + "description": "The University of Southern California is a leading private research university located in Los Angeles \u2014 a global center for arts, technology and international business. It is home to the College of Letters, Arts and Sciences and 21 exceptional academic schools and units. USC\u2019s Health Sciences campus houses renowned specialized care and research in cancer, stem cell and regenerative medicine, orthopedics and sports medicine. The university is the largest private sector employer in the city of Los Angeles, responsible for $8 billion annually in economic activity in the region.", "homeUrl": "https://www.usc.edu/", - "description": "The University of Southern California is a leading private research university located in Los Angeles — a global center for arts, technology and international business. It is home to the College of Letters, Arts and Sciences and 21 exceptional academic schools and units. USC’s Health Sciences campus houses renowned specialized care and research in cancer, stem cell and regenerative medicine, orthopedics and sports medicine. The university is the largest private sector employer in the city of Los Angeles, responsible for $8 billion annually in economic activity in the region.", - "rorId": "https://ror.org/03taz7m60", + "id": 1781, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Southern California", + "rorId": "https://ror.org/03taz7m60" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100850", + "name": "FAIR Research", + "official": false, + "providerCode": "fair", + "resourceHomeUrl": "https://fair-research.org", + "sampleId": "r8059v", + "urlPattern": "https://hdl.handle.net/hdl:20.500.12582/{$id}" } ], - "sampleId": "b97957", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "b97957" }, { + "created": "2020-03-20T12:58:53.045+0000", + "deprecated": false, + "deprecationDate": null, + "description": "SNP2TFBS is aimed at studying variations (SNPs/indels) that affect transcription factor binding (TFB) in the Human genome.", "id": 2152, - "prefix": "snp2tfbs", "mirId": "MIR:00000766", + "modified": "2020-03-20T12:58:53.045+0000", "name": "SNP2TFBS", + "namespaceEmbeddedInLui": false, "pattern": "^rs[0-9]+$", - "description": "SNP2TFBS is aimed at studying variations (SNPs/indels) that affect transcription factor binding (TFB) in the Human genome.", - "created": "2020-03-20T12:58:53.045+0000", - "modified": "2020-03-20T12:58:53.045+0000", + "prefix": "snp2tfbs", "resources": [ { - "id": 2153, - "mirId": "MIR:00000737", - "urlPattern": "https://ccg.epfl.ch/cgi-bin/snp2tfbs/snpviewer_form_parser.cgi?snpid={$id}", - "name": "SNP2TFBS", + "deprecated": false, + "deprecationDate": null, "description": "SNP2TFBS is a Web interface aimed at studying variations (SNPs/indels) that affect transcription factor binding (TFB) in the Human genome.", - "official": true, - "providerCode": "sib", - "sampleId": "rs11603840", - "resourceHomeUrl": "https://ccg.epfl.ch/snp2tfbs/", + "id": 2153, "institution": { - "id": 1730, - "name": "SIB Swiss Institute of Bioinformatics", - "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", - "rorId": "https://ror.org/002n09z45", + "homeUrl": "https://www.sib.swiss", + "id": 1730, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "SIB Swiss Institute of Bioinformatics", + "rorId": "https://ror.org/002n09z45" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000737", + "name": "SNP2TFBS", + "official": true, + "providerCode": "sib", + "resourceHomeUrl": "https://ccg.epfl.ch/snp2tfbs/", + "sampleId": "rs11603840", + "urlPattern": "https://ccg.epfl.ch/cgi-bin/snp2tfbs/snpviewer_form_parser.cgi?snpid={$id}" } ], - "sampleId": "rs11603840", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "rs11603840" }, { + "created": "2020-03-20T15:04:54.734+0000", + "deprecated": false, + "deprecationDate": null, + "description": "A high level datamodel of biological entities (genes, diseases, phenotypes, pathways, individuals, substances, etc) and their associations.", "id": 2160, - "prefix": "biolink", "mirId": "MIR:00000782", + "modified": "2020-03-20T15:04:54.734+0000", "name": "BioLink Model", + "namespaceEmbeddedInLui": false, "pattern": "^\\S+$", - "description": "A high level datamodel of biological entities (genes, diseases, phenotypes, pathways, individuals, substances, etc) and their associations.", - "created": "2020-03-20T15:04:54.734+0000", - "modified": "2020-03-20T15:04:54.734+0000", + "prefix": "biolink", "resources": [ { - "id": 2161, - "mirId": "MIR:00000778", - "urlPattern": "https://w3id.org/biolink/vocab/{$id}", - "name": "BioLink GitHub Organization", + "deprecated": false, + "deprecationDate": null, "description": "This resource is not backed by a physical institution. The resource is managed and deployed on GitHub, and is maintained by a broad community of develops", - "official": true, - "providerCode": "biolinkgithub", - "sampleId": "Gene", - "resourceHomeUrl": "https://biolink.github.io/biolink-model", + "id": 2161, "institution": { - "id": 2159, - "name": "BioLink GitHub Organization", - "homeUrl": "https://biolink.github.io/biolink-model", "description": "This resource is not backed by a physical institution. The resource is managed and deployed on GitHub, and is maintained by a broad community of develops", - "rorId": null, + "homeUrl": "https://biolink.github.io/biolink-model", + "id": 2159, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "BioLink GitHub Organization", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000778", + "name": "BioLink GitHub Organization", + "official": true, + "providerCode": "biolinkgithub", + "resourceHomeUrl": "https://biolink.github.io/biolink-model", + "sampleId": "Gene", + "urlPattern": "https://w3id.org/biolink/vocab/{$id}" } ], - "sampleId": "Gene", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Gene" }, { + "created": "2020-03-24T05:11:19.658+0000", + "deprecated": false, + "deprecationDate": null, + "description": "DANDI works with BICCN and other BRAIN Initiative awardees to curate data using community data standards such as NWB and BIDS, and to make data and software for cellular neurophysiology FAIR (Findable, Accessible, Interoperable, and Reusable).\nDANDI references electrical and optical cellular neurophysiology recordings and associated MRI and/or optical imaging data.\nThese data will help scientists uncover and understand cellular level mechanisms of brain function. Scientists will study the formation of neural networks, how cells and networks enable functions such as learning and memory, and how these functions are disrupted in neurological disorders.", "id": 2168, - "prefix": "dandi", "mirId": "MIR:00000786", + "modified": "2020-03-24T05:11:19.658+0000", "name": "DANDI: Distributed Archives for Neurophysiology Data Integration", + "namespaceEmbeddedInLui": false, "pattern": "^\\d{6}(/\\d+\\.\\d+\\.\\d+)?$", - "description": "DANDI works with BICCN and other BRAIN Initiative awardees to curate data using community data standards such as NWB and BIDS, and to make data and software for cellular neurophysiology FAIR (Findable, Accessible, Interoperable, and Reusable).\nDANDI references electrical and optical cellular neurophysiology recordings and associated MRI and/or optical imaging data.\nThese data will help scientists uncover and understand cellular level mechanisms of brain function. Scientists will study the formation of neural networks, how cells and networks enable functions such as learning and memory, and how these functions are disrupted in neurological disorders.", - "created": "2020-03-24T05:11:19.658+0000", - "modified": "2020-03-24T05:11:19.658+0000", + "prefix": "dandi", "resources": [ { - "id": 2169, - "mirId": "MIR:00000750", - "urlPattern": "https://dandiarchive.org/dandiset/{$id}", - "name": "DANDI: Distributed Archives for Neurophysiology Data Integration", + "deprecated": false, + "deprecationDate": null, "description": "DANDI is a Web platform for scientists to share, collaborate, and process data from cellular neurophysiology experiments. DANDI works with BICCN and other BRAIN Initiative awardees to curate data using community data standards such as NWB and BIDS, and to make data and software for cellular neurophysiology FAIR (Findable, Accessible, Interoperable, and Reusable). DANDI will store electrical and optical cellular neurophysiology recordings and associated MRI and/or optical imaging data. DANDI will provide: 1) A cloud platform for neurophysiology data storage for the purposes of collaboration and dissemination of data; 2) Easy to use tools for neurophysiology data submission, visualization, and access in the archive; and 3) Standardized applications for data ingestion, visualization and processing, which facilitate adoption of NWB and other standards. These data will help scientists uncover and understand cellular level mechanisms of brain function. Scientists will study the formation of neural networks, how cells and networks enable functions such as learning and memory, and how these functions are disrupted in neurological disorders.", - "official": true, - "providerCode": "dandi", - "sampleId": "000017", - "resourceHomeUrl": "https://dandiarchive.org/", + "id": 2169, "institution": { - "id": 2167, - "name": "Massachusetts Institute of Technology", + "description": "Founded to accelerate the nation\u2019s industrial revolution, MIT is profoundly American. With ingenuity and drive, our graduates have invented fundamental technologies, launched new industries, and created millions of American jobs. At the same time, and without the slightest sense of contradiction, MIT is profoundly global(opens in new window). Our community gains tremendous strength as a magnet for talent from around the world. Through teaching, research, and innovation, MIT\u2019s exceptional community pursues its mission of service to the nation and the world.", "homeUrl": "http://web.mit.edu/", - "description": "Founded to accelerate the nation’s industrial revolution, MIT is profoundly American. With ingenuity and drive, our graduates have invented fundamental technologies, launched new industries, and created millions of American jobs. At the same time, and without the slightest sense of contradiction, MIT is profoundly global(opens in new window). Our community gains tremendous strength as a magnet for talent from around the world. Through teaching, research, and innovation, MIT’s exceptional community pursues its mission of service to the nation and the world.", - "rorId": null, + "id": 2167, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Massachusetts Institute of Technology", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000750", + "name": "DANDI: Distributed Archives for Neurophysiology Data Integration", + "official": true, + "providerCode": "dandi", + "resourceHomeUrl": "https://dandiarchive.org/", + "sampleId": "000017", + "urlPattern": "https://dandiarchive.org/dandiset/{$id}" } ], - "sampleId": "000017", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "000017" }, { + "created": "2020-03-24T06:40:28.546+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Rice Annotation Project Database (RAP-DB) is a primary rice (Oryza sativa) annotation database established in 2004 upon the completion of the Oryza sativa ssp. japonica cv. Nipponbare genome sequencing by the International Rice Genome Sequencing Project. RAP-DB provides comprehensive resources (e.g. genome annotation, gene expression, DNA markers, genetic diversity, etc.) for biological and agricultural research communities. This collection provides transcript information in RAP-DB.", "id": 2184, - "prefix": "rapdb.transcript", "mirId": "MIR:00000762", + "modified": "2020-03-24T06:40:28.546+0000", "name": "RAP-DB Transcript", + "namespaceEmbeddedInLui": false, "pattern": "^Os\\S+t\\d{7}-\\d{2}$", - "description": "Rice Annotation Project Database (RAP-DB) is a primary rice (Oryza sativa) annotation database established in 2004 upon the completion of the Oryza sativa ssp. japonica cv. Nipponbare genome sequencing by the International Rice Genome Sequencing Project. RAP-DB provides comprehensive resources (e.g. genome annotation, gene expression, DNA markers, genetic diversity, etc.) for biological and agricultural research communities. This collection provides transcript information in RAP-DB.", - "created": "2020-03-24T06:40:28.546+0000", - "modified": "2020-03-24T06:40:28.546+0000", + "prefix": "rapdb.transcript", "resources": [ { - "id": 2185, - "mirId": "MIR:00000773", - "urlPattern": "https://rapdb.dna.affrc.go.jp/viewer/gene_detail/irgsp1?name={$id}", - "name": "RAP-DB", + "deprecated": false, + "deprecationDate": null, "description": "The Rice Annotation Project (RAP) was conceptualized in 2004 upon the completion of the Oryza sativa ssp. japonica cv. Nipponbare genome sequencing by the International Rice Genome Sequencing Project with the aim of providing the scientific community with an accurate and timely annotation of the rice genome sequence.", - "official": true, - "providerCode": "rapdb", - "sampleId": "Os01t0883800-02", - "resourceHomeUrl": "https://rapdb.dna.affrc.go.jp/", + "id": 2185, "institution": { - "id": 2183, - "name": "The National Agriculture and Food Research Organization (NARO)", - "homeUrl": "http://www.naro.affrc.go.jp/english/index.html", "description": "The National Agriculture and Food Research Organization or NARO is the core institute in Japan for conducting research and development on agriculture and food.", - "rorId": "https://ror.org/023v4bd62", + "homeUrl": "http://www.naro.affrc.go.jp/english/index.html", + "id": 2183, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "The National Agriculture and Food Research Organization (NARO)", + "rorId": "https://ror.org/023v4bd62" }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000773", + "name": "RAP-DB", + "official": true, + "providerCode": "rapdb", + "resourceHomeUrl": "https://rapdb.dna.affrc.go.jp/", + "sampleId": "Os01t0883800-02", + "urlPattern": "https://rapdb.dna.affrc.go.jp/viewer/gene_detail/irgsp1?name={$id}" } ], - "sampleId": "Os01t0883800-02", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Os01t0883800-02" }, { + "created": "2020-03-24T06:41:41.433+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Rice Annotation Project Database (RAP-DB) is a primary rice (Oryza sativa) annotation database established in 2004 upon the completion of the Oryza sativa ssp. japonica cv. Nipponbare genome sequencing by the International Rice Genome Sequencing Project. RAP-DB provides comprehensive resources (e.g. genome annotation, gene expression, DNA markers, genetic diversity, etc.) for biological and agricultural research communities. This collection provides locus information in RAP-DB.", "id": 2187, - "prefix": "rapdb.locus", "mirId": "MIR:00000702", - "name": "RAP-DB Locus", - "pattern": "^Os\\S+g\\d{7}$", - "description": "Rice Annotation Project Database (RAP-DB) is a primary rice (Oryza sativa) annotation database established in 2004 upon the completion of the Oryza sativa ssp. japonica cv. Nipponbare genome sequencing by the International Rice Genome Sequencing Project. RAP-DB provides comprehensive resources (e.g. genome annotation, gene expression, DNA markers, genetic diversity, etc.) for biological and agricultural research communities. This collection provides locus information in RAP-DB.", - "created": "2020-03-24T06:41:41.433+0000", "modified": "2020-03-24T06:41:41.433+0000", + "name": "RAP-DB Locus", + "namespaceEmbeddedInLui": false, + "pattern": "^Os\\S+g\\d{7}$", + "prefix": "rapdb.locus", "resources": [ { - "id": 2188, - "mirId": "MIR:00000741", - "urlPattern": "https://rapdb.dna.affrc.go.jp/viewer/gbrowse_details/irgsp1?name={$id}", - "name": "RAP-DB, Rice Annotation Project Database", + "deprecated": false, + "deprecationDate": null, "description": "The Rice Annotation Project (RAP) was conceptualized in 2004 upon the completion of the Oryza sativa ssp. japonica cv. Nipponbare genome sequencing by the International Rice Genome Sequencing Project with the aim of providing the scientific community with an accurate and timely annotation of the rice genome sequence.", - "official": true, - "providerCode": "rapdb", - "sampleId": "Os01g0883800", - "resourceHomeUrl": "https://rapdb.dna.affrc.go.jp/", + "id": 2188, "institution": { - "id": 2183, - "name": "The National Agriculture and Food Research Organization (NARO)", - "homeUrl": "http://www.naro.affrc.go.jp/english/index.html", "description": "The National Agriculture and Food Research Organization or NARO is the core institute in Japan for conducting research and development on agriculture and food.", - "rorId": "https://ror.org/023v4bd62", + "homeUrl": "http://www.naro.affrc.go.jp/english/index.html", + "id": 2183, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "The National Agriculture and Food Research Organization (NARO)", + "rorId": "https://ror.org/023v4bd62" }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000741", + "name": "RAP-DB, Rice Annotation Project Database", + "official": true, + "providerCode": "rapdb", + "resourceHomeUrl": "https://rapdb.dna.affrc.go.jp/", + "sampleId": "Os01g0883800", + "urlPattern": "https://rapdb.dna.affrc.go.jp/viewer/gbrowse_details/irgsp1?name={$id}" } ], - "sampleId": "Os01g0883800", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Os01g0883800" }, { + "created": "2020-03-24T07:50:16.285+0000", + "deprecated": false, + "deprecationDate": null, + "description": "enviPath is a database and prediction system for the microbial biotransformation of organic environmental contaminants. The database provides the possibility to store and view experimentally observed biotransformation pathways. The pathway prediction system provides different relative reasoning models to predict likely biotransformation pathways and products.", "id": 2198, - "prefix": "envipath", "mirId": "MIR:00000727", + "modified": "2020-03-24T07:50:16.285+0000", "name": "enviPath", + "namespaceEmbeddedInLui": false, "pattern": "^[\\w^_]{8}-[\\w^_]{4}-[\\w^_]{4}-[\\w^_]{4}-[\\w^_]{12}\\/[\\w-]+\\/[\\w^_]{8}-[\\w^_]{4}-[\\w^_]{4}-[\\w^_]{4}-[\\w^_]{12}$", - "description": "enviPath is a database and prediction system for the microbial biotransformation of organic environmental contaminants. The database provides the possibility to store and view experimentally observed biotransformation pathways. The pathway prediction system provides different relative reasoning models to predict likely biotransformation pathways and products.", - "created": "2020-03-24T07:50:16.285+0000", - "modified": "2020-03-24T07:50:16.285+0000", + "prefix": "envipath", "resources": [ { - "id": 2199, - "mirId": "MIR:00000776", - "urlPattern": "https://envipath.org/package/{$id}", - "name": "enviPath", + "deprecated": false, + "deprecationDate": null, "description": "enviPath is a database and prediction system for the microbial biotransformation of organic environmental contaminants. The database provides the possibility to store and view experimentally observed biotransformation pathways. The pathway prediction system provides different relative reasoning models to predict likely biotransformation pathways and products.", - "official": true, - "providerCode": "envipathug", - "sampleId": "32de3cf4-e3e6-4168-956e-32fa5ddb0ce1/compound/b545cabc-8c9e-4b20-8848-efa015b481ea", - "resourceHomeUrl": "https://envipath.org/", + "id": 2199, "institution": { - "id": 2197, - "name": "enviPath UG & Co. KG", - "homeUrl": "https://envipath.org/", "description": "We currently have no more details on this institution / organization, for more information, please see https://envipath.com/imprint/", - "rorId": null, + "homeUrl": "https://envipath.org/", + "id": 2197, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "enviPath UG & Co. KG", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000776", + "name": "enviPath", + "official": true, + "providerCode": "envipathug", + "resourceHomeUrl": "https://envipath.org/", + "sampleId": "32de3cf4-e3e6-4168-956e-32fa5ddb0ce1/compound/b545cabc-8c9e-4b20-8848-efa015b481ea", + "urlPattern": "https://envipath.org/package/{$id}" } ], - "sampleId": "32de3cf4-e3e6-4168-956e-32fa5ddb0ce1/compound/b545cabc-8c9e-4b20-8848-efa015b481ea", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "32de3cf4-e3e6-4168-956e-32fa5ddb0ce1/compound/b545cabc-8c9e-4b20-8848-efa015b481ea" }, { + "created": "2019-06-11T14:17:12.564+0000", + "deprecated": false, + "deprecationDate": null, + "description": "- DEPRECATION NOTE -\nPlease, keep in mind that this namespace has been superseeded by \u2018gold\u2019 prefix at https://registry.identifiers.org/registry/gold, and this namespace is kept here for support to already existing citations, new ones would need to use the pointed \u2018gold\u2019 namespace. \n\nThe GOLD (Genomes OnLine Database)is a resource for centralized monitoring of genome and metagenome projects worldwide. It stores information on complete and ongoing projects, along with their associated metadata. This collection references metadata associated with samples.", "id": 1167, - "prefix": "gold.meta", "mirId": "MIR:00000402", + "modified": "2020-03-26T09:38:38.398+0000", "name": "GOLD metadata", + "namespaceEmbeddedInLui": false, "pattern": "^Gm\\d+$", - "description": "- DEPRECATION NOTE -\nPlease, keep in mind that this namespace has been superseeded by ‘gold’ prefix at https://registry.identifiers.org/registry/gold, and this namespace is kept here for support to already existing citations, new ones would need to use the pointed ‘gold’ namespace. \n\nThe GOLD (Genomes OnLine Database)is a resource for centralized monitoring of genome and metagenome projects worldwide. It stores information on complete and ongoing projects, along with their associated metadata. This collection references metadata associated with samples.", - "created": "2019-06-11T14:17:12.564+0000", - "modified": "2020-03-26T09:38:38.398+0000", + "prefix": "gold.meta", "resources": [ { - "id": 1168, - "mirId": "MIR:00100522", - "urlPattern": "http://genomesonline.org/cgi-bin/GOLD/bin/GOLDCards.cgi?goldstamp={$id}", - "name": "GOLD metadata at Department of Energy Joint Genome Institute", + "deprecated": false, + "deprecationDate": null, "description": "GOLD metadata at Department of Energy Joint Genome Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Gm00047", - "resourceHomeUrl": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", + "id": 1168, "institution": { - "id": 1165, - "name": "Department of Energy Joint Genome Institute, Microbial Genomics and Metagenomics Program, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1165, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Energy Joint Genome Institute, Microbial Genomics and Metagenomics Program, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100522", + "name": "GOLD metadata at Department of Energy Joint Genome Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", + "sampleId": "Gm00047", + "urlPattern": "http://genomesonline.org/cgi-bin/GOLD/bin/GOLDCards.cgi?goldstamp={$id}" } ], - "sampleId": "Gm00047", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Gm00047" }, { + "created": "2019-06-11T14:15:43.085+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Reference Sequence (RefSeq) collection aims to provide a comprehensive, integrated, non-redundant set of sequences, including genomic DNA, transcript (RNA), and protein products.", "id": 153, - "prefix": "refseq", "mirId": "MIR:00000039", + "modified": "2020-03-31T09:55:28.774+0000", "name": "RefSeq", + "namespaceEmbeddedInLui": false, "pattern": "^(((AC|AP|NC|NG|NM|NP|NR|NT|NW|XM|XP|XR|YP|ZP)_\\d+)|(NZ\\_[A-Z]{2,4}\\d+))(\\.\\d+)?$", - "description": "The Reference Sequence (RefSeq) collection aims to provide a comprehensive, integrated, non-redundant set of sequences, including genomic DNA, transcript (RNA), and protein products.", - "created": "2019-06-11T14:15:43.085+0000", - "modified": "2020-03-31T09:55:28.774+0000", + "prefix": "refseq", "resources": [ { - "id": 155, - "mirId": "MIR:00100067", - "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}", - "name": "The NCBI Reference Sequence database", + "deprecated": false, + "deprecationDate": null, "description": "The NCBI Reference Sequence database", - "official": false, - "providerCode": "ncbi", - "sampleId": "NP_012345", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/projects/RefSeq/", + "id": 155, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100067", + "name": "The NCBI Reference Sequence database", + "official": false, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/projects/RefSeq/", + "sampleId": "NP_012345", + "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}" } ], - "sampleId": "NP_012345", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "NP_012345" }, { + "created": "2019-06-11T14:17:12.343+0000", + "deprecated": false, + "deprecationDate": null, + "description": "- DEPRECATION NOTE -\nPlease, keep in mind that this namespace has been superseeded by \u2018gold\u2019 prefix at https://registry.identifiers.org/registry/gold, and this namespace is kept here for support to already existing citations, new ones would need to use the pointed \u2018gold\u2019 namespace.\n\nThe GOLD (Genomes OnLine Database)is a resource for centralised monitoring of genome and metagenome projects worldwide. It stores information on complete and ongoing projects, along with their associated metadata. This collection references the sequencing status of individual genomes.", "id": 1164, - "prefix": "gold.genome", "mirId": "MIR:00000401", + "modified": "2020-03-26T09:37:26.767+0000", "name": "GOLD genome", + "namespaceEmbeddedInLui": false, "pattern": "^(Gi|Gc)\\d+$", - "description": "- DEPRECATION NOTE -\nPlease, keep in mind that this namespace has been superseeded by ‘gold’ prefix at https://registry.identifiers.org/registry/gold, and this namespace is kept here for support to already existing citations, new ones would need to use the pointed ‘gold’ namespace.\n\nThe GOLD (Genomes OnLine Database)is a resource for centralised monitoring of genome and metagenome projects worldwide. It stores information on complete and ongoing projects, along with their associated metadata. This collection references the sequencing status of individual genomes.", - "created": "2019-06-11T14:17:12.343+0000", - "modified": "2020-03-26T09:37:26.767+0000", + "prefix": "gold.genome", "resources": [ { - "id": 1166, - "mirId": "MIR:00100521", - "urlPattern": "http://www.genomesonline.org/cgi-bin/GOLD/GOLDCards.cgi?goldstamp={$id}", - "name": "GOLD genome at Department of Energy Joint Genome Institute", + "deprecated": false, + "deprecationDate": null, "description": "GOLD genome at Department of Energy Joint Genome Institute", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "Gi07796", - "resourceHomeUrl": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", + "id": 1166, "institution": { - "id": 1165, - "name": "Department of Energy Joint Genome Institute, Microbial Genomics and Metagenomics Program, California", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1165, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Department of Energy Joint Genome Institute, Microbial Genomics and Metagenomics Program, California", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100521", + "name": "GOLD genome at Department of Energy Joint Genome Institute", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", + "sampleId": "Gi07796", + "urlPattern": "http://www.genomesonline.org/cgi-bin/GOLD/GOLDCards.cgi?goldstamp={$id}" } ], - "sampleId": "Gi07796", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "Gi07796" }, { + "created": "2019-06-11T14:16:41.635+0000", + "deprecated": false, + "deprecationDate": null, + "description": "KNApSAcK provides information on metabolites and the\ntaxonomic class with which they are associated.", "id": 794, - "prefix": "knapsack", "mirId": "MIR:00000271", + "modified": "2020-04-22T09:28:07.963+0000", "name": "KNApSAcK", + "namespaceEmbeddedInLui": false, "pattern": "^C\\d{8}", - "description": "KNApSAcK provides information on metabolites and the\ntaxonomic class with which they are associated.", - "created": "2019-06-11T14:16:41.635+0000", - "modified": "2020-04-22T09:28:07.963+0000", + "prefix": "knapsack", "resources": [ { - "id": 796, - "mirId": "MIR:00100350", - "urlPattern": "http://www.knapsackfamily.com/knapsack_core/information.php?word={$id}", - "name": "KNApSAcK at NAIST", + "deprecated": false, + "deprecationDate": null, "description": "KNApSAcK at NAIST", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "C00000001", - "resourceHomeUrl": "http://www.knapsackfamily.com/KNApSAcK/", + "id": 796, "institution": { - "id": 795, - "name": "Nara Institute of Science and Technology", - "homeUrl": "https://www.naist.jp/en/", "description": "Nara Institute of Science and Technology (NAIST) is a Japanese national university located in Kansai Science City, a border region between Nara, Osaka, and Kyoto. Founded in 1991, NAIST consisted of graduate schools in three integrated areas: information science, biological sciences, and materials science.", - "rorId": "https://ror.org/05bhada84", + "homeUrl": "https://www.naist.jp/en/", + "id": 795, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Nara Institute of Science and Technology", + "rorId": "https://ror.org/05bhada84" }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100350", + "name": "KNApSAcK at NAIST", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.knapsackfamily.com/KNApSAcK/", + "sampleId": "C00000001", + "urlPattern": "http://www.knapsackfamily.com/knapsack_core/information.php?word={$id}" } ], - "sampleId": "C00000001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "C00000001" }, { + "created": "2020-04-22T09:46:18.729+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Polygenic Score (PGS) Catalog is an open database of PGS and the relevant metadata required for accurate application and evaluation.", "id": 2215, - "prefix": "pgs", "mirId": "MIR:00000753", + "modified": "2020-04-22T09:46:18.729+0000", "name": "Polygenic Score Catalog", + "namespaceEmbeddedInLui": false, "pattern": "^PGS[0-9]{6}$", - "description": "The Polygenic Score (PGS) Catalog is an open database of PGS and the relevant metadata required for accurate application and evaluation.", - "created": "2020-04-22T09:46:18.729+0000", - "modified": "2020-04-22T09:46:18.729+0000", + "prefix": "pgs", "resources": [ { - "id": 2216, - "mirId": "MIR:00000755", - "urlPattern": "https://www.pgscatalog.org/pgs/{$id}/", - "name": "PGS Catalog", + "deprecated": false, + "deprecationDate": null, "description": "The Polygenic Score (PGS) Catalog is an open database of PGS and the relevant metadata required for accurate application and evaluation.\n\nDeveloped in collaboration with the NHGRI-EBI GWAS Catalog and Health Data Research UK/", - "official": true, - "providerCode": "pgs", - "sampleId": "PGS000018", - "resourceHomeUrl": "http://pgscatalog.org", + "id": 2216, "institution": { - "id": 2214, - "name": "University of Cambridge", - "homeUrl": "https://www.cam.ac.uk/", "description": "The University of Cambridge is a collegiate public research university in Cambridge, United Kingdom. Founded in 1209 and granted a royal charter by King Henry III in 1231, Cambridge is the second-oldest university in the English-speaking world and the world's fourth-oldest surviving university.", - "rorId": null, + "homeUrl": "https://www.cam.ac.uk/", + "id": 2214, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "University of Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000755", + "name": "PGS Catalog", + "official": true, + "providerCode": "pgs", + "resourceHomeUrl": "http://pgscatalog.org", + "sampleId": "PGS000018", + "urlPattern": "https://www.pgscatalog.org/pgs/{$id}/" } ], - "sampleId": "PGS000018", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PGS000018" }, { + "created": "2020-05-22T09:05:34.813+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Datanator is an integrated database of genomic and biochemical data designed to help investigators find data about specific molecules and reactions in specific organisms and specific environments for meta-analyses and mechanistic models. Datanator currently includes metabolite concentrations, RNA modifications and half-lives, protein abundances and modifications, and reaction kinetics integrated from several databases and numerous publications. The Datanator website and REST API provide tools for extracting clouds of data about specific molecules and reactions in specific organisms and specific environments, as well as data about similar molecules and reactions in taxonomically similar organisms.", "id": 2251, - "prefix": "datanator.gene", "mirId": "MIR:00000720", + "modified": "2020-05-22T09:05:34.813+0000", "name": "Datanator Gene", + "namespaceEmbeddedInLui": false, "pattern": "^K[0-9]+$", - "description": "Datanator is an integrated database of genomic and biochemical data designed to help investigators find data about specific molecules and reactions in specific organisms and specific environments for meta-analyses and mechanistic models. Datanator currently includes metabolite concentrations, RNA modifications and half-lives, protein abundances and modifications, and reaction kinetics integrated from several databases and numerous publications. The Datanator website and REST API provide tools for extracting clouds of data about specific molecules and reactions in specific organisms and specific environments, as well as data about similar molecules and reactions in taxonomically similar organisms.", - "created": "2020-05-22T09:05:34.813+0000", - "modified": "2020-05-22T09:05:34.813+0000", + "prefix": "datanator.gene", "resources": [ { - "id": 2252, - "mirId": "MIR:00000740", - "urlPattern": "https://www.datanator.info/gene/{$id}", - "name": "Icahn School of Medicine at Mount Sinai", + "deprecated": false, + "deprecationDate": null, "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", - "official": true, - "providerCode": "icahn", - "sampleId": "K00973", - "resourceHomeUrl": "https://datanator.info/", + "id": 2252, "institution": { - "id": 2247, - "name": "Icahn School of Medicine at Mount Sinai", - "homeUrl": "https://icahn.mssm.edu/", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", - "rorId": null, + "homeUrl": "https://icahn.mssm.edu/", + "id": 2247, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Icahn School of Medicine at Mount Sinai", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000740", + "name": "Icahn School of Medicine at Mount Sinai", + "official": true, + "providerCode": "icahn", + "resourceHomeUrl": "https://datanator.info/", + "sampleId": "K00973", + "urlPattern": "https://www.datanator.info/gene/{$id}" } ], - "sampleId": "K00973", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "K00973" }, { + "created": "2019-06-11T14:17:05.115+0000", + "deprecated": false, + "deprecationDate": null, + "description": "A Locus Reference Genomic (LRG) is a manually curated record that contains stable genomic, transcript and protein reference sequences for reporting clinically relevant sequence variants. All LRGs are generated and maintained by the NCBI and EMBL-EBI.", "id": 1078, - "prefix": "lrg", "mirId": "MIR:00000376", + "modified": "2020-05-22T10:35:39.544+0000", "name": "Locus Reference Genomic", + "namespaceEmbeddedInLui": false, "pattern": "^LRG_\\d+$", - "description": "A Locus Reference Genomic (LRG) is a manually curated record that contains stable genomic, transcript and protein reference sequences for reporting clinically relevant sequence variants. All LRGs are generated and maintained by the NCBI and EMBL-EBI.", - "created": "2019-06-11T14:17:05.115+0000", - "modified": "2020-05-22T10:35:39.544+0000", + "prefix": "lrg", "resources": [ { - "id": 1082, - "mirId": "MIR:00100627", - "urlPattern": "http://www.ensembl.org/Homo_sapiens/LRG/Summary?lrg={$id}", - "name": "Locus Reference Genomic through Ensembl", + "deprecated": false, + "deprecationDate": null, "description": "Locus Reference Genomic through Ensembl", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "LRG_1", - "resourceHomeUrl": "http://www.ensembl.org/", + "id": 1082, "institution": { - "id": 1081, - "name": "EnSembl, Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1081, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "EnSembl, Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 1083, - "mirId": "MIR:00100629", - "urlPattern": "http://asia.ensembl.org/Homo_sapiens/LRG/Summary?lrg={$id}", - "name": "Locus Reference Genomic through Ensembl mirror (asia)", - "description": "Locus Reference Genomic through Ensembl mirror (asia)", + "mirId": "MIR:00100627", + "name": "Locus Reference Genomic through Ensembl", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.ensembl.org/", "sampleId": "LRG_1", - "resourceHomeUrl": "http://asia.ensembl.org/", + "urlPattern": "http://www.ensembl.org/Homo_sapiens/LRG/Summary?lrg={$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "Locus Reference Genomic through Ensembl mirror (asia)", + "id": 1083, "institution": { - "id": 1081, - "name": "EnSembl, Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1081, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "EnSembl, Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", + "rorId": null }, "location": { "countryCode": "SG", "countryName": "Singapore" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 1084, - "mirId": "MIR:00100630", - "urlPattern": "http://uswest.ensembl.org/Homo_sapiens/LRG/Summary?lrg={$id}", - "name": "Locus Reference Genomic through Ensembl mirror (US west)", - "description": "Locus Reference Genomic through Ensembl mirror (US west)", + "mirId": "MIR:00100629", + "name": "Locus Reference Genomic through Ensembl mirror (asia)", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://asia.ensembl.org/", "sampleId": "LRG_1", - "resourceHomeUrl": "http://uswest.ensembl.org/", + "urlPattern": "http://asia.ensembl.org/Homo_sapiens/LRG/Summary?lrg={$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "Locus Reference Genomic through Ensembl mirror (US west)", + "id": 1084, "institution": { - "id": 1081, - "name": "EnSembl, Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1081, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "EnSembl, Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null - }, - { - "id": 1085, - "mirId": "MIR:00100631", - "urlPattern": "http://useast.ensembl.org/Homo_sapiens/LRG/Summary?lrg={$id}", - "name": "Locus Reference Genomic through Ensembl mirror (US east)", - "description": "Locus Reference Genomic through Ensembl mirror (US east)", + "mirId": "MIR:00100630", + "name": "Locus Reference Genomic through Ensembl mirror (US west)", "official": false, "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://uswest.ensembl.org/", "sampleId": "LRG_1", - "resourceHomeUrl": "http://useast.ensembl.org/", + "urlPattern": "http://uswest.ensembl.org/Homo_sapiens/LRG/Summary?lrg={$id}" + }, + { + "deprecated": false, + "deprecationDate": null, + "description": "Locus Reference Genomic through Ensembl mirror (US east)", + "id": 1085, "institution": { - "id": 1081, - "name": "EnSembl, Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1081, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "EnSembl, Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100631", + "name": "Locus Reference Genomic through Ensembl mirror (US east)", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://useast.ensembl.org/", + "sampleId": "LRG_1", + "urlPattern": "http://useast.ensembl.org/Homo_sapiens/LRG/Summary?lrg={$id}" }, { - "id": 1080, - "mirId": "MIR:00100478", - "urlPattern": "ftp://ftp.ebi.ac.uk/pub/databases/lrgex/{$id}.xml", - "name": "Locus Reference Genomic", + "deprecated": false, + "deprecationDate": null, "description": "Locus Reference Genomic", - "official": true, - "providerCode": "ebi", - "sampleId": "LRG_1", - "resourceHomeUrl": "http://www.lrg-sequence.org/", + "id": 1080, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100478", + "name": "Locus Reference Genomic", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "http://www.lrg-sequence.org/", + "sampleId": "LRG_1", + "urlPattern": "ftp://ftp.ebi.ac.uk/pub/databases/lrgex/{$id}.xml" } ], - "sampleId": "LRG_1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "LRG_1" }, { + "created": "2019-06-11T14:15:31.442+0000", + "deprecated": true, + "deprecationDate": "2020-06-04T11:17:21.453+0000", + "description": "MIRIAM Registry is an online resource created to catalogue collections (Gene Ontology, Taxonomy or PubMed are some examples) and the corresponding resources (physical locations) providing access to those data collections. The Registry provides unique and perennial URIs for each entity of those data collections.", "id": 41, - "prefix": "miriam.collection", "mirId": "MIR:00000008", + "modified": "2020-06-04T11:17:21.456+0000", "name": "MIRIAM Registry collection", + "namespaceEmbeddedInLui": false, "pattern": "^MIR:000\\d{5}$", - "description": "MIRIAM Registry is an online resource created to catalogue collections (Gene Ontology, Taxonomy or PubMed are some examples) and the corresponding resources (physical locations) providing access to those data collections. The Registry provides unique and perennial URIs for each entity of those data collections.", - "created": "2019-06-11T14:15:31.442+0000", - "modified": "2020-06-04T11:17:21.456+0000", + "prefix": "miriam.collection", "resources": [ { - "id": 42, - "mirId": "MIR:00100005", - "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100005/{$id}", - "name": "MIRIAM Resources (data collection)", + "deprecated": true, + "deprecationDate": "2020-06-04T10:00:30.300+0000", "description": "MIRIAM Resources (data collection)", - "official": false, - "providerCode": "ebi", - "sampleId": "MIR:00000008", - "resourceHomeUrl": "https://www.ebi.ac.uk/miriam/", + "id": 42, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": true, - "deprecationDate": "2020-06-04T10:00:30.300+0000" + "mirId": "MIR:00100005", + "name": "MIRIAM Resources (data collection)", + "official": false, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/miriam/", + "sampleId": "MIR:00000008", + "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100005/{$id}" } ], - "sampleId": "MIR:00000008", - "namespaceEmbeddedInLui": false, - "deprecated": true, - "deprecationDate": "2020-06-04T11:17:21.453+0000" + "sampleId": "MIR:00000008" }, { + "created": "2019-06-11T14:16:21.651+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Xenbase is the model organism database for Xenopus laevis and X. (Silurana) tropicalis. It contains genomic, development data and community information for Xenopus research. it includes gene expression patterns that incorporates image data from the literature, large scale screens and community submissions.", "id": 567, - "prefix": "xenbase", "mirId": "MIR:00000186", + "modified": "2020-06-09T19:30:57.158+0000", "name": "Xenbase", + "namespaceEmbeddedInLui": false, "pattern": "^XB\\-\\w+\\-\\d+$", - "description": "Xenbase is the model organism database for Xenopus laevis and X. (Silurana) tropicalis. It contains genomic, development data and community information for Xenopus research. it includes gene expression patterns that incorporates image data from the literature, large scale screens and community submissions.", - "created": "2019-06-11T14:16:21.651+0000", - "modified": "2020-06-09T19:30:57.158+0000", + "prefix": "xenbase", "resources": [ { - "id": 569, - "mirId": "MIR:00100232", - "urlPattern": "https://www.xenbase.org/common/xsearch.do?exactSearch=true&searchIn=7&searchValue={$id}", - "name": "Xenbase at University of Calgary", + "deprecated": false, + "deprecationDate": null, "description": "Xenbase at University of Calgary", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "XB-GENE-922462", - "resourceHomeUrl": "https://www.xenbase.org/", + "id": 569, "institution": { - "id": 568, - "name": "University of Calgary", + "description": "The University of Calgary is one of Canada\u2019s top comprehensive research universities, combining the best of university tradition with the city of Calgary\u2019s vibrant energy and diversity.", "homeUrl": "https://www.ucalgary.ca/", - "description": "The University of Calgary is one of Canada’s top comprehensive research universities, combining the best of university tradition with the city of Calgary’s vibrant energy and diversity.", - "rorId": "https://ror.org/03yjb2x39", + "id": 568, "location": { "countryCode": "CA", "countryName": "Canada" - } + }, + "name": "University of Calgary", + "rorId": "https://ror.org/03yjb2x39" }, "location": { "countryCode": "CA", "countryName": "Canada" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100232", + "name": "Xenbase at University of Calgary", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.xenbase.org/", + "sampleId": "XB-GENE-922462", + "urlPattern": "https://www.xenbase.org/common/xsearch.do?exactSearch=true&searchIn=7&searchValue={$id}" } ], - "sampleId": "XB-GENE-922462", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "XB-GENE-922462" }, { + "created": "2020-06-09T20:12:07.077+0000", + "deprecated": false, + "deprecationDate": null, + "description": "This collection is a subset of UniProtKB that provides a means to reference the proteolytic cleavage products of a precursor protein.", "id": 2265, - "prefix": "uniprot.chain", "mirId": "MIR:00000739", + "modified": "2020-06-26T08:48:10.292+0000", "name": "UniProt Chain", + "namespaceEmbeddedInLui": false, "pattern": "^PRO_[0-9]{10}$", - "description": "This collection is a subset of UniProtKB that provides a means to reference the proteolytic cleavage products of a precursor protein.", - "created": "2020-06-09T20:12:07.077+0000", - "modified": "2020-06-26T08:48:10.292+0000", + "prefix": "uniprot.chain", "resources": [ { - "id": 2266, - "mirId": "MIR:00000728", - "urlPattern": "http://purl.uniprot.org/annotation/{$id}", - "name": "UniProt Chain through Universal Protein Resource", + "deprecated": false, + "deprecationDate": null, "description": "The UniProt Knowledgebase (UniProtKB) is a comprehensive resource for protein sequence and functional information with extensive cross-references to more than 120 external databases. This collection is a subset of UniProtKB that provides a means to reference the proteolytic cleavage products of a precursor protein.\n", - "official": true, - "providerCode": "upr", - "sampleId": "PRO_0000016681", - "resourceHomeUrl": "https://www.uniprot.org", + "id": 2266, "institution": { - "id": 24, - "name": "UniProt Consortium", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 24, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "UniProt Consortium", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000728", + "name": "UniProt Chain through Universal Protein Resource", + "official": true, + "providerCode": "upr", + "resourceHomeUrl": "https://www.uniprot.org", + "sampleId": "PRO_0000016681", + "urlPattern": "http://purl.uniprot.org/annotation/{$id}" } ], - "sampleId": "PRO_0000016681", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PRO_0000016681" }, { + "created": "2019-06-11T14:16:01.860+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Molecular Interactions (MI) ontology forms a structured controlled vocabulary for the annotation of experiments concerned with protein-protein interactions. MI is developed by the HUPO Proteomics Standards Initiative.", "id": 350, - "prefix": "mi", "mirId": "MIR:00000109", + "modified": "2020-06-26T10:17:31.752+0000", "name": "Molecular Interactions Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^MI:\\d{4}$", - "description": "The Molecular Interactions (MI) ontology forms a structured controlled vocabulary for the annotation of experiments concerned with protein-protein interactions. MI is developed by the HUPO Proteomics Standards Initiative.", - "created": "2019-06-11T14:16:01.860+0000", - "modified": "2020-06-26T10:17:31.752+0000", + "prefix": "mi", "resources": [ { - "id": 351, - "mirId": "MIR:00100142", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/mi/terms?obo_id=MI:{$id}", - "name": "Molecular Interactions Ontology through OLS", + "deprecated": false, + "deprecationDate": null, "description": "Molecular Interactions Ontology through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0308", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/mi", + "id": 351, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100142", + "name": "Molecular Interactions Ontology through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/mi", + "sampleId": "0308", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/mi/terms?obo_id=MI:{$id}" } ], - "sampleId": "0308", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0308" }, { + "created": "2020-07-03T09:30:53.125+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MolMeDB is an open chemistry database about interactions of molecules with membranes. We collect information on how chemicals interact with individual membranes either from experiment or from simulations. ", "id": 2277, - "prefix": "molmedb", "mirId": "MIR:00000768", + "modified": "2020-07-03T09:30:53.125+0000", "name": "MolMeDB", + "namespaceEmbeddedInLui": false, "pattern": "^[m,M]{2}[0-9]{5}[0-9]*$", - "description": "MolMeDB is an open chemistry database about interactions of molecules with membranes. We collect information on how chemicals interact with individual membranes either from experiment or from simulations. ", - "created": "2020-07-03T09:30:53.125+0000", - "modified": "2020-07-03T09:30:53.125+0000", + "prefix": "molmedb", "resources": [ { + "deprecated": false, + "deprecationDate": null, + "description": "Palack\u00fd University Olomouc is a university with long-standing tradition. Founded in the 16th century, it is the oldest university in Moravia and the second-oldest university in the Czech Republic. Today it is a modern higher education facility with a wide range of study programmes and copious scientific and research activities. In 2019, more than 22 000 students studied in accredited study programmes, exchange programmes and lifelong learning programmes at eight faculties. Palack\u00fd University Olomouc is one of the very top Czech universities, and ranks among the best universities in the world, according to international rankings.", "id": 2278, - "mirId": "MIR:00000749", - "urlPattern": "https://molmedb.upol.cz/mol/{$id}", - "name": "Palacký University, Olomouc", - "description": "Palacký University Olomouc is a university with long-standing tradition. Founded in the 16th century, it is the oldest university in Moravia and the second-oldest university in the Czech Republic. Today it is a modern higher education facility with a wide range of study programmes and copious scientific and research activities. In 2019, more than 22 000 students studied in accredited study programmes, exchange programmes and lifelong learning programmes at eight faculties. Palacký University Olomouc is one of the very top Czech universities, and ranks among the best universities in the world, according to international rankings.", - "official": true, - "providerCode": "upol", - "sampleId": "MM00040", - "resourceHomeUrl": "http://www.upol.cz/en/", "institution": { - "id": 2276, - "name": "Palacký University, Olomouc", + "description": "Palack\u00fd University Olomouc is a university with long-standing tradition. Founded in the 16th century, it is the oldest university in Moravia and the second-oldest university in the Czech Republic. Today it is a modern higher education facility with a wide range of study programmes and copious scientific and research activities. In 2019, more than 22 000 students studied in accredited study programmes, exchange programmes and lifelong learning programmes at eight faculties. Palack\u00fd University Olomouc is one of the very top Czech universities, and ranks among the best universities in the world, according to international rankings.", "homeUrl": "http://www.upol.cz/en/", - "description": "Palacký University Olomouc is a university with long-standing tradition. Founded in the 16th century, it is the oldest university in Moravia and the second-oldest university in the Czech Republic. Today it is a modern higher education facility with a wide range of study programmes and copious scientific and research activities. In 2019, more than 22 000 students studied in accredited study programmes, exchange programmes and lifelong learning programmes at eight faculties. Palacký University Olomouc is one of the very top Czech universities, and ranks among the best universities in the world, according to international rankings.", - "rorId": null, + "id": 2276, "location": { "countryCode": "CZ", "countryName": "Czech Republic" - } + }, + "name": "Palack\u00fd University, Olomouc", + "rorId": null }, "location": { "countryCode": "CZ", "countryName": "Czech Republic" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000749", + "name": "Palack\u00fd University, Olomouc", + "official": true, + "providerCode": "upol", + "resourceHomeUrl": "http://www.upol.cz/en/", + "sampleId": "MM00040", + "urlPattern": "https://molmedb.upol.cz/mol/{$id}" } ], - "sampleId": "MM00040", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MM00040" }, { + "created": "2020-07-08T15:12:19.317+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Experimental data table management software to make research data accessible and available for reuse with minimal effort on the part of the data provider. Designed to manage experimental data tables in an easy way for users, ODAM provides a model for structuring both data and metadata that facilitates data handling and analysis. It also encourages data dissemination according to FAIR principles by making the data interoperable and reusable by both humans and machines, allowing the dataset to be explored and then extracted in whole or in part as needed.", "id": 2293, - "prefix": "odam", "mirId": "MIR:00000722", + "modified": "2020-07-08T15:12:19.317+0000", "name": "Open Data for Access and Mining", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Za-z0-9]+$", - "description": "Experimental data table management software to make research data accessible and available for reuse with minimal effort on the part of the data provider. Designed to manage experimental data tables in an easy way for users, ODAM provides a model for structuring both data and metadata that facilitates data handling and analysis. It also encourages data dissemination according to FAIR principles by making the data interoperable and reusable by both humans and machines, allowing the dataset to be explored and then extracted in whole or in part as needed.", - "created": "2020-07-08T15:12:19.317+0000", - "modified": "2020-07-08T15:12:19.317+0000", + "prefix": "odam", "resources": [ { - "id": 2294, - "mirId": "MIR:00000759", - "urlPattern": "http://pmb-bordeaux.fr/getdata/json/{$id}/datapackage?links=1", - "name": "INRA", + "deprecated": false, + "deprecationDate": null, "description": "Bordeaux Metabolome Facility provides equipments and expertise for the study of metabolome, lipidome and metabolic fluxes.", - "official": true, - "providerCode": "bmf", - "sampleId": "frim1", - "resourceHomeUrl": "https://metabolome.cgfb.u-bordeaux.fr/", + "id": 2294, "institution": { - "id": 2292, - "name": "National Research Institute for Agriculture, Food and Environment", - "homeUrl": "https://www.inrae.fr/", "description": "INRAE is France's new National Research Institute for Agriculture, Food and Environment, created on January 1, 2020, It was formed by the merger of INRA, the National Institute for Agricultural Research, and IRSTEA, the National Research Institute of Science and Technology for the Environment and Agriculture.", - "rorId": "https://ror.org/003vg9w96", + "homeUrl": "https://www.inrae.fr/", + "id": 2292, "location": { "countryCode": "FR", "countryName": "France" - } + }, + "name": "National Research Institute for Agriculture, Food and Environment", + "rorId": "https://ror.org/003vg9w96" }, "location": { "countryCode": "FR", "countryName": "France" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000759", + "name": "INRA", + "official": true, + "providerCode": "bmf", + "resourceHomeUrl": "https://metabolome.cgfb.u-bordeaux.fr/", + "sampleId": "frim1", + "urlPattern": "http://pmb-bordeaux.fr/getdata/json/{$id}/datapackage?links=1" } ], - "sampleId": "frim1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "frim1" }, { + "created": "2019-06-11T14:17:39.700+0000", + "deprecated": true, + "deprecationDate": "2020-07-16T06:11:33.734+0000", + "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. In addition, HGNC also provides symbols for both structural and functional gene families. This collection refers to records using the HGNC family symbol.", "id": 1468, - "prefix": "hgnc.family", "mirId": "MIR:00000520", + "modified": "2020-07-16T06:11:33.736+0000", "name": "HGNC Family", + "namespaceEmbeddedInLui": false, "pattern": "^[A-Z0-9-]+(#[A-Z0-9-]+)?$", - "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. In addition, HGNC also provides symbols for both structural and functional gene families. This collection refers to records using the HGNC family symbol.", - "created": "2019-06-11T14:17:39.700+0000", - "modified": "2020-07-16T06:11:33.736+0000", + "prefix": "hgnc.family", "resources": [ { - "id": 1469, - "mirId": "MIR:00100671", - "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100671/{$id}", - "name": "HGNC Family at HUGO Genome Nomenclature Committee", + "deprecated": true, + "deprecationDate": "2020-07-16T06:11:29.395+0000", "description": "HGNC Family at HUGO Genome Nomenclature Committee", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "PADI", - "resourceHomeUrl": "https://www.genenames.org/", + "id": 1469, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": true, - "deprecationDate": "2020-07-16T06:11:29.395+0000" + "mirId": "MIR:00100671", + "name": "HGNC Family at HUGO Genome Nomenclature Committee", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.genenames.org/", + "sampleId": "PADI", + "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100671/{$id}" } ], - "sampleId": "PADI", - "namespaceEmbeddedInLui": false, - "deprecated": true, - "deprecationDate": "2020-07-16T06:11:33.734+0000" + "sampleId": "PADI" }, { + "created": "2020-07-16T06:20:43.698+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. In addition, HGNC also provides a unique numerical ID to identify gene families, providing a display of curated hierarchical relationships between families.", "id": 2306, - "prefix": "hgnc.genegroup", "mirId": "MIR:00000709", + "modified": "2020-07-16T06:20:43.698+0000", "name": "HGNC Gene Group", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. In addition, HGNC also provides a unique numerical ID to identify gene families, providing a display of curated hierarchical relationships between families.", - "created": "2020-07-16T06:20:43.698+0000", - "modified": "2020-07-16T06:20:43.698+0000", + "prefix": "hgnc.genegroup", "resources": [ { - "id": 2307, - "mirId": "MIR:00000703", - "urlPattern": "https://www.genenames.org/cgi-bin/genefamilies/set/{$id}", - "name": "HGNC Gene Group at HUGO Genome Nomenclature Committee", + "deprecated": false, + "deprecationDate": null, "description": "HGNC Gene Group at HUGO Genome Nomenclature Committee", - "official": true, - "providerCode": "ebi", - "sampleId": "141", - "resourceHomeUrl": "https://www.genenames.org", + "id": 2307, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000703", + "name": "HGNC Gene Group at HUGO Genome Nomenclature Committee", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.genenames.org", + "sampleId": "141", + "urlPattern": "https://www.genenames.org/cgi-bin/genefamilies/set/{$id}" } ], - "sampleId": "141", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "141" }, { + "created": "2019-06-11T14:16:32.719+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Disease Ontology has been developed as a standardized ontology for human disease with the purpose of providing the biomedical community with consistent, reusable and sustainable descriptions of human disease terms, phenotype characteristics and related medical vocabulary disease concepts.", "id": 689, - "prefix": "doid", "mirId": "MIR:00000233", + "modified": "2020-07-20T14:34:20.285+0000", "name": "Human Disease Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^DOID:\\d+$", - "description": "The Disease Ontology has been developed as a standardized ontology for human disease with the purpose of providing the biomedical community with consistent, reusable and sustainable descriptions of human disease terms, phenotype characteristics and related medical vocabulary disease concepts.", - "created": "2019-06-11T14:16:32.719+0000", - "modified": "2020-07-20T14:34:20.285+0000", + "prefix": "doid", "resources": [ { - "id": 690, - "mirId": "MIR:00100292", - "urlPattern": "http://purl.bioontology.org/ontology/DOID/DOID:{$id}", - "name": "Human Disease Ontology through BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "Human Disease Ontology through BioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "11337", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/DOID", + "id": 690, "institution": { - "id": 571, - "name": "National Center for Biomedical Ontology, Stanford University", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 571, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford University", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100292", + "name": "Human Disease Ontology through BioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/DOID", + "sampleId": "11337", + "urlPattern": "http://purl.bioontology.org/ontology/DOID/DOID:{$id}" }, { - "id": 693, - "mirId": "MIR:00100297", - "urlPattern": "http://disease-ontology.org/term/DOID:{$id}", - "name": "Human Disease Ontology at Northwestern University", + "deprecated": false, + "deprecationDate": null, "description": "Human Disease Ontology at Northwestern University", - "official": false, - "providerCode": "hdo", - "sampleId": "11337", - "resourceHomeUrl": "http://disease-ontology.org/", + "id": 693, "institution": { - "id": 692, - "name": "University of Maryland (Maryland) and Northwestern University (Illinois)", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 692, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Maryland (Maryland) and Northwestern University (Illinois)", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100297", + "name": "Human Disease Ontology at Northwestern University", + "official": false, + "providerCode": "hdo", + "resourceHomeUrl": "http://disease-ontology.org/", + "sampleId": "11337", + "urlPattern": "http://disease-ontology.org/term/DOID:{$id}" }, { - "id": 691, - "mirId": "MIR:00100293", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/doid/terms?obo_id=DOID:{$id}", - "name": "Human Disease Ontology through OLS", + "deprecated": false, + "deprecationDate": null, "description": "Human Disease Ontology through OLS", - "official": true, - "providerCode": "ols", - "sampleId": "11337", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/doid", + "id": 691, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100293", + "name": "Human Disease Ontology through OLS", + "official": true, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/doid", + "sampleId": "11337", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/doid/terms?obo_id=DOID:{$id}" } ], - "sampleId": "11337", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "11337" }, { + "created": "2019-06-11T14:17:23.452+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The GO reference collection is a set of abstracts that can be cited in the GO ontologies (e.g. as dbxrefs for term definitions) and annotation files (in the Reference column). It provides two types of reference; It can be used to provide details of why specific Evidence codes (see http://identifiers.org/eco/) are assigned, or to present abstract-style descriptions of \"GO content\" meetings at which substantial changes in the ontologies are discussed and made.", "id": 1292, - "prefix": "go_ref", "mirId": "MIR:00000450", + "modified": "2020-07-30T07:27:34.233+0000", "name": "Gene Ontology Reference", + "namespaceEmbeddedInLui": true, "pattern": "^GO_REF:\\d{7}$", - "description": "The GO reference collection is a set of abstracts that can be cited in the GO ontologies (e.g. as dbxrefs for term definitions) and annotation files (in the Reference column). It provides two types of reference; It can be used to provide details of why specific Evidence codes (see http://identifiers.org/eco/) are assigned, or to present abstract-style descriptions of \"GO content\" meetings at which substantial changes in the ontologies are discussed and made.", - "created": "2019-06-11T14:17:23.452+0000", - "modified": "2020-07-30T07:27:34.233+0000", + "prefix": "go_ref", "resources": [ { - "id": 1293, - "mirId": "MIR:00100584", - "urlPattern": "https://github.com/geneontology/go-site/blob/master/metadata/gorefs/goref-{$id}.md", - "name": "Gene Ontology Reference at The Gene Ontology Consortium", + "deprecated": false, + "deprecationDate": null, "description": "Gene Ontology Reference at The Gene Ontology Consortium", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "0000041", - "resourceHomeUrl": "http://www.geneontology.org/cgi-bin/references.cgi", + "id": 1293, "institution": { - "id": 89, - "name": "The Gene Ontology Consortium", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 89, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "The Gene Ontology Consortium", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100584", + "name": "Gene Ontology Reference at The Gene Ontology Consortium", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.geneontology.org/cgi-bin/references.cgi", + "sampleId": "0000041", + "urlPattern": "https://github.com/geneontology/go-site/blob/master/metadata/gorefs/goref-{$id}.md" } ], - "sampleId": "0000041", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0000041" }, { + "created": "2019-06-17T12:55:17.868+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The GWAS Catalog provides a consistent, searchable, visualisable and freely available database of published SNP-trait associations, which can be easily integrated with other resources, and is accessed by scientists, clinicians and other users worldwide.", "id": 1934, - "prefix": "gcst", "mirId": "MIR:00000715", + "modified": "2020-09-23T11:03:41.882+0000", "name": "GWAS Catalog", + "namespaceEmbeddedInLui": false, "pattern": "^GCST\\d{6}\\d*$", - "description": "The GWAS Catalog provides a consistent, searchable, visualisable and freely available database of published SNP-trait associations, which can be easily integrated with other resources, and is accessed by scientists, clinicians and other users worldwide.", - "created": "2019-06-17T12:55:17.868+0000", - "modified": "2020-09-23T11:03:41.882+0000", + "prefix": "gcst", "resources": [ { - "id": 1935, - "mirId": "MIR:00000775", - "urlPattern": "https://www.ebi.ac.uk/gwas/studies/{$id}", - "name": "European Bioinformatics Institute", + "deprecated": false, + "deprecationDate": null, "description": "The European Bioinformatics Institute (EMBL-EBI) helps scientists realise the potential of 'big data' in biology, exploiting complex information to make discoveries that benefit humankind.", - "official": true, - "providerCode": "ebi", - "sampleId": "GCST000035", - "resourceHomeUrl": "https://www.ebi.ac.uk", + "id": 1935, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000775", + "name": "European Bioinformatics Institute", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk", + "sampleId": "GCST000035", + "urlPattern": "https://www.ebi.ac.uk/gwas/studies/{$id}" } ], - "sampleId": "GCST000035", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "GCST000035" }, { + "created": "2020-10-07T10:25:14.491+0000", + "deprecated": false, + "deprecationDate": null, + "description": "PK-DB an open database for pharmacokinetics information from clinical trials as well as pre-clinical research. The focus of PK-DB is to provide high-quality pharmacokinetics data enriched with the required meta-information for computational modeling and data integration. ", "id": 2370, - "prefix": "pkdb", "mirId": "MIR:00000708", + "modified": "2020-10-07T10:25:14.491+0000", "name": "PK-DB", + "namespaceEmbeddedInLui": false, "pattern": "^PKDB[0-9]{5}$", - "description": "PK-DB an open database for pharmacokinetics information from clinical trials as well as pre-clinical research. The focus of PK-DB is to provide high-quality pharmacokinetics data enriched with the required meta-information for computational modeling and data integration. ", - "created": "2020-10-07T10:25:14.491+0000", - "modified": "2020-10-07T10:25:14.491+0000", + "prefix": "pkdb", "resources": [ { - "id": 2371, - "mirId": "MIR:00000714", - "urlPattern": "https://pk-db.com/data/{$id}", - "name": "Humboldt University of Berlin", + "deprecated": false, + "deprecationDate": null, "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01hcx6992' with Wikidata IDs [Q152087], and ISNI IDs [0000 0001 2248 7639]", - "official": true, - "providerCode": "pkdb", - "sampleId": "PKDB00198", - "resourceHomeUrl": "https://www.hu-berlin.de/?set_language=en&cl=en", + "id": 2371, "institution": { - "id": 2369, - "name": "Humboldt University of Berlin", + "description": "Humboldt University of Berlin is a university in the central borough of Mitte in Berlin, Germany. It was established by Frederick William III on the initiative of Wilhelm von Humboldt, Johann Gottlieb Fichte and Friedrich Ernst Daniel Schleiermacher as the University of Berlin (Universit\u00e4t zu Berlin) in 1809, and opened in 1810.", "homeUrl": "https://www.hu-berlin.de/?set_language=en&cl=en", - "description": "Humboldt University of Berlin is a university in the central borough of Mitte in Berlin, Germany. It was established by Frederick William III on the initiative of Wilhelm von Humboldt, Johann Gottlieb Fichte and Friedrich Ernst Daniel Schleiermacher as the University of Berlin (Universität zu Berlin) in 1809, and opened in 1810.", - "rorId": null, + "id": 2369, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "Humboldt University of Berlin", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000714", + "name": "Humboldt University of Berlin", + "official": true, + "providerCode": "pkdb", + "resourceHomeUrl": "https://www.hu-berlin.de/?set_language=en&cl=en", + "sampleId": "PKDB00198", + "urlPattern": "https://pk-db.com/data/{$id}" } ], - "sampleId": "PKDB00198", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PKDB00198" }, { + "created": "2020-10-07T10:43:05.918+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Morpheus model repository is an open-access data resource to store, search and retrieve unpublished and published computational models of spatio-temporal and multicellular biological systems, encoded in the MorpheusML language and readily executable with the Morpheus software.\n", "id": 2377, - "prefix": "morpheus", "mirId": "MIR:00000725", + "modified": "2020-10-07T10:43:05.918+0000", "name": "Morpheus model repository", + "namespaceEmbeddedInLui": false, "pattern": "^M[0-9]{4,}$", - "description": "The Morpheus model repository is an open-access data resource to store, search and retrieve unpublished and published computational models of spatio-temporal and multicellular biological systems, encoded in the MorpheusML language and readily executable with the Morpheus software.\n", - "created": "2020-10-07T10:43:05.918+0000", - "modified": "2020-10-07T10:43:05.918+0000", + "prefix": "morpheus", "resources": [ { + "deprecated": false, + "deprecationDate": null, + "description": "Morpheus.lab is affiliated with the Center for Information Services and High Performance Computing (ZIH)\nat Technische Universit\u00e4t Dresden, Germany. Morpheus.lab develops and maintains the open-source software Morpheus, the domain-specific language MorpheusML, online courses, a user forum and the model repository.", "id": 2378, - "mirId": "MIR:00000700", - "urlPattern": "https://morpheus.gitlab.io/models/{$id}", - "name": "Morpheus.lab", - "description": "Morpheus.lab is affiliated with the Center for Information Services and High Performance Computing (ZIH)\nat Technische Universität Dresden, Germany. Morpheus.lab develops and maintains the open-source software Morpheus, the domain-specific language MorpheusML, online courses, a user forum and the model repository.", - "official": true, - "providerCode": "morpheus.lab", - "sampleId": "M0001", - "resourceHomeUrl": "https://morpheus.gitlab.io/", "institution": { - "id": 2376, - "name": "TU Dresden", + "description": "The Technische Universit\u00e4t Dresden (TUD) is one of the largest \u201cTechnische Universit\u00e4ten\u201d in Germany and one of the leading and most dynamic universities in Germany. As a full-curriculum university with 17 faculties in five schools it offers a broad variety of 124 disciplines and covers a wide research spectrum. Its focuses Health Sciences, Biomedicine & Bioengineering, Information Technology & Microelectronics, Smart Materials & Structures, Energy, Mobility & Environment as well as Culture & Societal Change are considered exemplary in Germany and throughout Europe.", "homeUrl": "https://tu-dresden.de/?set_language=en", - "description": "The Technische Universität Dresden (TUD) is one of the largest “Technische Universitäten” in Germany and one of the leading and most dynamic universities in Germany. As a full-curriculum university with 17 faculties in five schools it offers a broad variety of 124 disciplines and covers a wide research spectrum. Its focuses Health Sciences, Biomedicine & Bioengineering, Information Technology & Microelectronics, Smart Materials & Structures, Energy, Mobility & Environment as well as Culture & Societal Change are considered exemplary in Germany and throughout Europe.", - "rorId": null, + "id": 2376, "location": { "countryCode": "DE", "countryName": "Germany" - } + }, + "name": "TU Dresden", + "rorId": null }, "location": { "countryCode": "DE", "countryName": "Germany" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000700", + "name": "Morpheus.lab", + "official": true, + "providerCode": "morpheus.lab", + "resourceHomeUrl": "https://morpheus.gitlab.io/", + "sampleId": "M0001", + "urlPattern": "https://morpheus.gitlab.io/models/{$id}" } ], - "sampleId": "M0001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "M0001" }, { + "created": "2020-10-08T09:25:59.424+0000", + "deprecated": false, + "deprecationDate": null, + "description": "GlycoPOST is a mass spectrometry data repository for glycomics and glycoproteomics. Users can release their \"raw/processed\" data via this site with a unique identifier number for the paper publication. Submission conditions are in accordance with the Minimum Information Required for a Glycomics Experiment (MIRAGE) guidelines.", "id": 2384, - "prefix": "glycopost", "mirId": "MIR:00000721", + "modified": "2020-10-08T09:25:59.424+0000", "name": "GlycoPOST", + "namespaceEmbeddedInLui": false, "pattern": "^GPST[0-9]{6}$", - "description": "GlycoPOST is a mass spectrometry data repository for glycomics and glycoproteomics. Users can release their \"raw/processed\" data via this site with a unique identifier number for the paper publication. Submission conditions are in accordance with the Minimum Information Required for a Glycomics Experiment (MIRAGE) guidelines.", - "created": "2020-10-08T09:25:59.424+0000", - "modified": "2020-10-08T09:25:59.424+0000", + "prefix": "glycopost", "resources": [ { - "id": 2385, - "mirId": "MIR:00000704", - "urlPattern": "https://glycopost.glycosmos.org/entry/{$id}", - "name": "Niigata University", + "deprecated": false, + "deprecationDate": null, "description": "Niigata University has a long institutional history, with origins going back some 150 years. Since its inauguration as a national university in 1949 under the new university system, it has played an important role in higher education and research in Japan. Over the years, it has grown into a large-scale comprehensive university offering bachelor's, master's, and doctoral degree programs under ten faculties and five graduate schools in a wide range of disciplines spanning the humanities, education, law, economics, science, engineering, agriculture, medicine, health sciences, and dentistry. With a student body of approximately 13,000 and 3,000 academic and administrative staff members, and as a research-oriented university, it boasts several world-leading research institutes, including the Brain Research Institute and the Research Institute for Natural Hazards and Disaster Recovery as well as a university hospital providing high-level medical care as an advanced treatment hospital for the region.", - "official": true, - "providerCode": "glycopost", - "sampleId": "GPST000024", - "resourceHomeUrl": "https://glycopost.glycosmos.org", + "id": 2385, "institution": { - "id": 2383, - "name": "Niigata University", - "homeUrl": "https://www.niigata-u.ac.jp/", "description": "Niigata University has a long institutional history, with origins going back some 150 years. Since its inauguration as a national university in 1949 under the new university system, it has played an important role in higher education and research in Japan. Over the years, it has grown into a large-scale comprehensive university offering bachelor's, master's, and doctoral degree programs under ten faculties and five graduate schools in a wide range of disciplines spanning the humanities, education, law, economics, science, engineering, agriculture, medicine, health sciences, and dentistry. With a student body of approximately 13,000 and 3,000 academic and administrative staff members, and as a research-oriented university, it boasts several world-leading research institutes, including the Brain Research Institute and the Research Institute for Natural Hazards and Disaster Recovery as well as a university hospital providing high-level medical care as an advanced treatment hospital for the region.", - "rorId": null, + "homeUrl": "https://www.niigata-u.ac.jp/", + "id": 2383, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Niigata University", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000704", + "name": "Niigata University", + "official": true, + "providerCode": "glycopost", + "resourceHomeUrl": "https://glycopost.glycosmos.org", + "sampleId": "GPST000024", + "urlPattern": "https://glycopost.glycosmos.org/entry/{$id}" } ], - "sampleId": "GPST000024", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "GPST000024" }, { + "created": "2019-06-11T14:17:22.433+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Uberon is an integrated cross-species anatomy ontology representing a variety of entities classified according to traditional anatomical criteria such as structure, function and developmental lineage. The ontology includes comprehensive relationships to taxon-specific anatomical ontologies, allowing integration of functional, phenotype and expression data.", "id": 1280, - "prefix": "uberon", "mirId": "MIR:00000446", + "modified": "2021-02-27T10:19:43.666+0000", "name": "UBERON", + "namespaceEmbeddedInLui": true, "pattern": "^UBERON:\\d+$", - "description": "Uberon is an integrated cross-species anatomy ontology representing a variety of entities classified according to traditional anatomical criteria such as structure, function and developmental lineage. The ontology includes comprehensive relationships to taxon-specific anatomical ontologies, allowing integration of functional, phenotype and expression data.", - "created": "2019-06-11T14:17:22.433+0000", - "modified": "2021-02-27T10:19:43.666+0000", + "prefix": "uberon", "resources": [ { - "id": 1281, - "mirId": "MIR:00100579", - "urlPattern": "http://purl.bioontology.org/ontology/UBERON/UBERON:{$id}", - "name": "UBERON through bioPortal", + "deprecated": false, + "deprecationDate": null, "description": "UBERON through bioPortal", - "official": false, - "providerCode": "bptl", - "sampleId": "0008203", - "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/UBERON", + "id": 1281, "institution": { - "id": 5, - "name": "National Center for Biomedical Ontology, Stanford", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 5, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biomedical Ontology, Stanford", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100579", + "name": "UBERON through bioPortal", + "official": false, + "providerCode": "bptl", + "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/UBERON", + "sampleId": "0008203", + "urlPattern": "http://purl.bioontology.org/ontology/UBERON/UBERON:{$id}" }, { - "id": 1282, - "mirId": "MIR:00100580", - "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/uberon/terms?obo_id=UBERON:{$id}", - "name": "UBERON through OLS", + "deprecated": false, + "deprecationDate": null, "description": "UBERON through OLS", - "official": false, - "providerCode": "ols", - "sampleId": "0008203", - "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/uberon", + "id": 1282, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100580", + "name": "UBERON through OLS", + "official": false, + "providerCode": "ols", + "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/uberon", + "sampleId": "0008203", + "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/uberon/terms?obo_id=UBERON:{$id}" } ], - "sampleId": "0008203", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "0008203" }, { + "created": "2021-02-17T18:06:52.762+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Protein Ensemble Database is an open access database for the deposition of structural ensembles, including intrinsically disordered proteins.", "id": 2524, - "prefix": "ped.ensemble", "mirId": "MIR:00000795", + "modified": "2021-02-17T18:06:52.762+0000", "name": "Protein Ensemble Database ensemble", + "namespaceEmbeddedInLui": false, "pattern": "^PED\\d{5}e\\d{3}$", - "description": "The Protein Ensemble Database is an open access database for the deposition of structural ensembles, including intrinsically disordered proteins.", - "created": "2021-02-17T18:06:52.762+0000", - "modified": "2021-02-17T18:06:52.762+0000", + "prefix": "ped.ensemble", "resources": [ { - "id": 2525, - "mirId": "MIR:00000791", - "urlPattern": "https://proteinensemble.org/{$id}", - "name": "PED - Protein Ensemble Database", + "deprecated": false, + "deprecationDate": null, "description": "The Protein Ensemble Database (PED) is an open access database for the deposition of structural ensembles, including intrinsically disordered proteins.", - "official": true, - "providerCode": "ped.ensemble", - "sampleId": "PED00017e001", - "resourceHomeUrl": "https://proteinensemble.org/", + "id": 2525, "institution": { - "id": 1769, - "name": "University of Padua", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1769, "location": { "countryCode": "IT", "countryName": "Italy" - } + }, + "name": "University of Padua", + "rorId": null }, "location": { "countryCode": "IT", "countryName": "Italy" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000791", + "name": "PED - Protein Ensemble Database", + "official": true, + "providerCode": "ped.ensemble", + "resourceHomeUrl": "https://proteinensemble.org/", + "sampleId": "PED00017e001", + "urlPattern": "https://proteinensemble.org/{$id}" } ], - "sampleId": "PED00017e001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PED00017e001" }, { + "created": "2021-02-17T18:09:04.420+0000", + "deprecated": false, + "deprecationDate": null, + "description": "RepeatsDB is a database of annotated tandem repeat protein structures. This collection references structural entries in the database.", "id": 2527, - "prefix": "repeatsdb.structure", "mirId": "MIR:00000764", + "modified": "2021-02-17T18:09:04.420+0000", "name": "RepeatsDB Structure", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9][A-Za-z0-9]{3}[A-Za-z0-9][A-Za-z0-9]?[0-9]?[0-9]?$", - "description": "RepeatsDB is a database of annotated tandem repeat protein structures. This collection references structural entries in the database.", - "created": "2021-02-17T18:09:04.420+0000", - "modified": "2021-02-17T18:09:04.420+0000", + "prefix": "repeatsdb.structure", "resources": [ { - "id": 2528, - "mirId": "MIR:00000780", - "urlPattern": "https://repeatsdb.org/structure/{$id}", - "name": "RepeatsDB", + "deprecated": false, + "deprecationDate": null, "description": "RepeatsDB is a database of annotated tandem repeat protein structures. This collection references structural entries in the database.", - "official": true, - "providerCode": "repeatsdb.structure", - "sampleId": "2gc4E", - "resourceHomeUrl": "https://repeatsdb.org/", + "id": 2528, "institution": { - "id": 1769, - "name": "University of Padua", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1769, "location": { "countryCode": "IT", "countryName": "Italy" - } + }, + "name": "University of Padua", + "rorId": null }, "location": { "countryCode": "IT", "countryName": "Italy" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000780", + "name": "RepeatsDB", + "official": true, + "providerCode": "repeatsdb.structure", + "resourceHomeUrl": "https://repeatsdb.org/", + "sampleId": "2gc4E", + "urlPattern": "https://repeatsdb.org/structure/{$id}" } ], - "sampleId": "2gc4E", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "2gc4E" }, { + "created": "2020-10-22T01:16:20.744+0000", + "deprecated": false, + "deprecationDate": null, + "description": "BioSimulators is a registry of containerized simulation tools that support a common interface. The containers in BioSimulators support a range of modeling frameworks (e.g., logical, constraint-based, continuous kinetic, discrete kinetic), simulation algorithms (e.g., CVODE, FBA, SSA), and modeling formats (e.g., BGNL, SBML, SED-ML).", "id": 2416, - "prefix": "biosimulators", "mirId": "MIR:00000767", + "modified": "2020-10-22T01:16:20.744+0000", "name": "BioSimulators", + "namespaceEmbeddedInLui": false, "pattern": "[a-zA-Z0-9-_]+", - "description": "BioSimulators is a registry of containerized simulation tools that support a common interface. The containers in BioSimulators support a range of modeling frameworks (e.g., logical, constraint-based, continuous kinetic, discrete kinetic), simulation algorithms (e.g., CVODE, FBA, SSA), and modeling formats (e.g., BGNL, SBML, SED-ML).", - "created": "2020-10-22T01:16:20.744+0000", - "modified": "2020-10-22T01:16:20.744+0000", + "prefix": "biosimulators", "resources": [ { - "id": 2417, - "mirId": "MIR:00000746", - "urlPattern": "https://biosimulators.org/simulators/{$id}", - "name": "BioSimulators", + "deprecated": false, + "deprecationDate": null, "description": "The BioSimulators project aims to make it easier for the research community to reuse biosimulation tools through standards and a registry of simulation tools.", - "official": true, - "providerCode": "icahn", - "sampleId": "vcell", - "resourceHomeUrl": "https://biosimulators.org/", + "id": 2417, "institution": { - "id": 2247, - "name": "Icahn School of Medicine at Mount Sinai", - "homeUrl": "https://icahn.mssm.edu/", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", - "rorId": null, + "homeUrl": "https://icahn.mssm.edu/", + "id": 2247, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Icahn School of Medicine at Mount Sinai", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000746", + "name": "BioSimulators", + "official": true, + "providerCode": "icahn", + "resourceHomeUrl": "https://biosimulators.org/", + "sampleId": "vcell", + "urlPattern": "https://biosimulators.org/simulators/{$id}" } ], - "sampleId": "vcell", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "vcell" }, { + "created": "2020-11-05T10:42:17.722+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Gender, Sex, and Sexual Orientation (GSSO) ontology is an interdisciplinary ontology connecting terms from biology, medicine, psychology, sociology, and gender studies, aiming to bridge gaps between linguistic variations inside and outside of the health care environment. A large focus of the ontology is its consideration of LGBTQIA+ terminology.", "id": 2423, - "prefix": "gsso", "mirId": "MIR:00000712", + "modified": "2020-11-05T10:59:53.808+0000", "name": "Gender, Sex, and Sexual Orientation (GSSO) Ontology", + "namespaceEmbeddedInLui": true, "pattern": "^GSSO:\\d{6}$", - "description": "The Gender, Sex, and Sexual Orientation (GSSO) ontology is an interdisciplinary ontology connecting terms from biology, medicine, psychology, sociology, and gender studies, aiming to bridge gaps between linguistic variations inside and outside of the health care environment. A large focus of the ontology is its consideration of LGBTQIA+ terminology.", - "created": "2020-11-05T10:42:17.722+0000", - "modified": "2020-11-05T10:59:53.808+0000", + "prefix": "gsso", "resources": [ { - "id": 2424, - "mirId": "MIR:00000758", - "urlPattern": "http://purl.obolibrary.org/obo/GSSO_{$id}", - "name": "National Center for Biomedical Ontology (NCBO) BioPortal", + "deprecated": false, + "deprecationDate": null, "description": "One of the National Centers for Biomedical Computing, and is funded by the NIH. Among the goals of the NCBO are to provide tools for discovery and access of biomedical ontologies, which are a type of controlled vocabulary designed to allow the expression of complex relationships in machine-readable form.", - "official": true, - "providerCode": "bioportal", - "sampleId": "002368", - "resourceHomeUrl": "https://bioportal.bioontology.org/", + "id": 2424, "institution": { - "id": 2422, - "name": "University of Cincinnati", - "homeUrl": "https://www.uc.edu/", "description": "UC is a public research university with an enrollment of more than 46,000 students and has been named \"Among the top tier of the Best National Universities,\" according to U.S. News & World Report.", - "rorId": "https://ror.org/01e3m7079", + "homeUrl": "https://www.uc.edu/", + "id": 2422, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "University of Cincinnati", + "rorId": "https://ror.org/01e3m7079" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000758", + "name": "National Center for Biomedical Ontology (NCBO) BioPortal", + "official": true, + "providerCode": "bioportal", + "resourceHomeUrl": "https://bioportal.bioontology.org/", + "sampleId": "002368", + "urlPattern": "http://purl.obolibrary.org/obo/GSSO_{$id}" } ], - "sampleId": "002368", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "002368" }, { + "created": "2019-06-11T14:17:28.979+0000", + "deprecated": false, + "deprecationDate": null, + "description": "LigandBox is a database of 3D compound structures. Compound information is collected from the catalogues of various commercial suppliers, with approved drugs and biochemical compounds taken from KEGG and PDB databases. Each chemical compound in the database has several 3D conformers with hydrogen atoms and atomic charges, which are ready to be docked into receptors using docking programs. Various physical properties, such as aqueous solubility (LogS) and carcinogenicity have also been calculated to characterize the ADME-Tox properties of the compounds.", "id": 1357, - "prefix": "ligandbox", "mirId": "MIR:00000477", + "modified": "2020-11-20T10:55:30.526+0000", "name": "LigandBox", + "namespaceEmbeddedInLui": false, "pattern": "^(HTS|KSH)[0-9]{4}-[0-9]{8}|PDB_[0-9,A-Z]{2,3}|[CD][0-9]{5}$", - "description": "LigandBox is a database of 3D compound structures. Compound information is collected from the catalogues of various commercial suppliers, with approved drugs and biochemical compounds taken from KEGG and PDB databases. Each chemical compound in the database has several 3D conformers with hydrogen atoms and atomic charges, which are ready to be docked into receptors using docking programs. Various physical properties, such as aqueous solubility (LogS) and carcinogenicity have also been calculated to characterize the ADME-Tox properties of the compounds.", - "created": "2019-06-11T14:17:28.979+0000", - "modified": "2020-11-20T10:55:30.526+0000", + "prefix": "ligandbox", "resources": [ { - "id": 1359, - "mirId": "MIR:00100612", - "urlPattern": "http://www.mypresto5.com/ligandbox/cgi-bin/liginf.cgi?id={$id}", - "name": "LigandBox at N2PC", + "deprecated": false, + "deprecationDate": null, "description": "LigandBox at N2PC", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "D00001", - "resourceHomeUrl": "http://www.mypresto5.com/ligandbox/cgi-bin/index.cgi?LANG=en", + "id": 1359, "institution": { - "id": 1358, - "name": "Next generation Natural Products Chemistry", - "homeUrl": "https://www.natprodchem.jp/", "description": "https://www.natprodchem.jp/files/english.pdf", - "rorId": null, + "homeUrl": "https://www.natprodchem.jp/", + "id": 1358, "location": { "countryCode": "JP", "countryName": "Japan" - } + }, + "name": "Next generation Natural Products Chemistry", + "rorId": null }, "location": { "countryCode": "JP", "countryName": "Japan" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100612", + "name": "LigandBox at N2PC", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "http://www.mypresto5.com/ligandbox/cgi-bin/index.cgi?LANG=en", + "sampleId": "D00001", + "urlPattern": "http://www.mypresto5.com/ligandbox/cgi-bin/liginf.cgi?id={$id}" } ], - "sampleId": "D00001", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "D00001" }, { + "created": "2019-06-11T14:17:59.445+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Progenetix database provides an overview of mutation data in cancer, with a focus on copy number abnormalities (CNV / CNA), for all types of human malignancies. The resource contains genome profiles of more than 130'000 individual samples and represents about 700 cancer types, according to the NCIt \"neoplasm\" classification. Additionally to this genome profiles and associated metadata, the website present information about thousands of publications referring to cancer genome profiling experiments, and services for mapping cancer classifications and accessing supplementary data through its APIs.", "id": 1666, - "prefix": "pgx", "mirId": "MIR:00000600", + "modified": "2020-11-25T15:01:33.103+0000", "name": "Progenetix", + "namespaceEmbeddedInLui": false, "pattern": "^\\w{3,15}[-_]\\w[\\w.-]{3,128}$", - "description": "The Progenetix database provides an overview of mutation data in cancer, with a focus on copy number abnormalities (CNV / CNA), for all types of human malignancies. The resource contains genome profiles of more than 130'000 individual samples and represents about 700 cancer types, according to the NCIt \"neoplasm\" classification. Additionally to this genome profiles and associated metadata, the website present information about thousands of publications referring to cancer genome profiling experiments, and services for mapping cancer classifications and accessing supplementary data through its APIs.", - "created": "2019-06-11T14:17:59.445+0000", - "modified": "2020-11-25T15:01:33.103+0000", + "prefix": "pgx", "resources": [ { - "id": 1668, - "mirId": "MIR:00100801", - "urlPattern": "https://progenetix.org/services/ids/{$id}", - "name": "Progenetix", + "deprecated": false, + "deprecationDate": null, "description": "Progenetix", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "pgxbs-kftva5zv", - "resourceHomeUrl": "https://progenetix.org/", + "id": 1668, "institution": { - "id": 1667, - "name": "University of Zurich", - "homeUrl": "https://www.uzh.ch/en.html", "description": "No description available", - "rorId": "https://ror.org/02crff812", + "homeUrl": "https://www.uzh.ch/en.html", + "id": 1667, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "University of Zurich", + "rorId": "https://ror.org/02crff812" }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100801", + "name": "Progenetix", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://progenetix.org/", + "sampleId": "pgxbs-kftva5zv", + "urlPattern": "https://progenetix.org/services/ids/{$id}" } ], - "sampleId": "pgxbs-kftva5zv", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "pgxbs-kftva5zv" }, { + "created": "2020-12-14T12:49:56.333+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Curated contextual database gathering samples related to SARS-CoV-2 virus and covid-19 disease.", "id": 2477, - "prefix": "covid19", "mirId": "MIR:00000789", + "modified": "2020-12-14T12:49:56.333+0000", "name": "SARS-CoV-2", + "namespaceEmbeddedInLui": false, "pattern": "^\\w+_COVID19_[-\\w]+$", - "description": "Curated contextual database gathering samples related to SARS-CoV-2 virus and covid-19 disease.", - "created": "2020-12-14T12:49:56.333+0000", - "modified": "2020-12-14T12:49:56.333+0000", + "prefix": "covid19", "resources": [ { - "id": 2478, - "mirId": "MIR:00000787", - "urlPattern": "https://covid19.sfb.uit.no/api/records/{$id}", - "name": "Elixir@UiT", + "deprecated": false, + "deprecationDate": null, "description": "Elixir@UiT is the local branch of ELIXIR-NO node based at UiT.", - "official": true, - "providerCode": "sfb", - "sampleId": "SFB_COVID19_MW286762", - "resourceHomeUrl": "https://covid19.sfb.uit.no", + "id": 2478, "institution": { - "id": 2476, - "name": "University of Tromsø - The Arctic University of Norway", - "homeUrl": "https://uit.no/startsida", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/00wge5k78' with Wikidata IDs [Q279724], and ISNI IDs [0000000122595234]", - "rorId": null, + "homeUrl": "https://uit.no/startsida", + "id": 2476, "location": { "countryCode": "NO", "countryName": "Norway" - } + }, + "name": "University of Troms\u00f8 - The Arctic University of Norway", + "rorId": null }, "location": { "countryCode": "NO", "countryName": "Norway" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000787", + "name": "Elixir@UiT", + "official": true, + "providerCode": "sfb", + "resourceHomeUrl": "https://covid19.sfb.uit.no", + "sampleId": "SFB_COVID19_MW286762", + "urlPattern": "https://covid19.sfb.uit.no/api/records/{$id}" } ], - "sampleId": "SFB_COVID19_MW286762", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "SFB_COVID19_MW286762" }, { + "created": "2020-12-14T12:57:54.560+0000", + "deprecated": false, + "deprecationDate": null, + "description": "Hierarchical orthologous groups predicted by OMA (Orthologous MAtrix) database. Hierarchical orthologous groups are sets of genes that have started diverging from a single common ancestor gene at a certain taxonomic level of reference. ", "id": 2484, - "prefix": "oma.hog", "mirId": "MIR:00000785", + "modified": "2020-12-14T12:57:54.560+0000", "name": "OMA HOGs", + "namespaceEmbeddedInLui": true, "pattern": "^HOG:[0-9]{7}(\\.[0-9a-z.]+)?(_[0-9]+)?$", - "description": "Hierarchical orthologous groups predicted by OMA (Orthologous MAtrix) database. Hierarchical orthologous groups are sets of genes that have started diverging from a single common ancestor gene at a certain taxonomic level of reference. ", - "created": "2020-12-14T12:57:54.560+0000", - "modified": "2020-12-14T12:57:54.560+0000", + "prefix": "oma.hog", "resources": [ { - "id": 2485, - "mirId": "MIR:00000761", - "urlPattern": "https://omabrowser.org/oma/hog/resolve/HOG:{$id}/", - "name": "ETH Zurich", + "deprecated": false, + "deprecationDate": null, "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05a28rw58' with Wikidata IDs [Q11942], and ISNI IDs [0000 0001 2156 2780]", - "official": true, - "providerCode": "oma", - "sampleId": "HOG:0459895", - "resourceHomeUrl": "https://omabrowser.org", + "id": 2485, "institution": { - "id": 2483, - "name": "ETH Zurich", - "homeUrl": "https://ethz.ch/en.html", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05a28rw58' with Wikidata IDs [Q11942], and ISNI IDs [0000 0001 2156 2780]", - "rorId": null, + "homeUrl": "https://ethz.ch/en.html", + "id": 2483, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "ETH Zurich", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000761", + "name": "ETH Zurich", + "official": true, + "providerCode": "oma", + "resourceHomeUrl": "https://omabrowser.org", + "sampleId": "HOG:0459895", + "urlPattern": "https://omabrowser.org/oma/hog/resolve/HOG:{$id}/" } ], - "sampleId": "HOG:0459895", - "namespaceEmbeddedInLui": true, - "deprecated": false, - "deprecationDate": null + "sampleId": "HOG:0459895" }, { + "created": "2021-02-01T15:47:59.756+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Virtual Metabolic Human (VMH) is a resource that combines human and gut microbiota metabolism with nutrition and disease.", "id": 2497, - "prefix": "vmhgene", "mirId": "MIR:00000774", + "modified": "2021-02-01T15:47:59.756+0000", "name": "VMH Gene", + "namespaceEmbeddedInLui": false, "pattern": "^[0-9]+\\.[0-9]+", - "description": "The Virtual Metabolic Human (VMH) is a resource that combines human and gut microbiota metabolism with nutrition and disease.", - "created": "2021-02-01T15:47:59.756+0000", - "modified": "2021-02-01T15:47:59.756+0000", + "prefix": "vmhgene", "resources": [ { - "id": 2498, - "mirId": "MIR:00000794", - "urlPattern": "https://www.vmh.life/#gene/{$id}", - "name": "VMH Gene", + "deprecated": false, + "deprecationDate": null, "description": "VMH Gene, provided by Thiele Group, NUI Galway. \nThe VMH database captures information on human and gut microbial metabolism and links this information to hundreds of diseases and nutritional data.", - "official": true, - "providerCode": "NUI", - "sampleId": "8639.1", - "resourceHomeUrl": "https://www.vmh.life/", + "id": 2498, "institution": { - "id": 2496, - "name": "National University of Ireland, Galway", - "homeUrl": "http://www.nuigalway.ie/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03bea9k73' with Wikidata IDs [Q644478], and ISNI IDs [0000 0004 0488 0789]", - "rorId": null, + "homeUrl": "http://www.nuigalway.ie/", + "id": 2496, "location": { "countryCode": "IE", "countryName": "Ireland" - } + }, + "name": "National University of Ireland, Galway", + "rorId": null }, "location": { "countryCode": "IE", "countryName": "Ireland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000794", + "name": "VMH Gene", + "official": true, + "providerCode": "NUI", + "resourceHomeUrl": "https://www.vmh.life/", + "sampleId": "8639.1", + "urlPattern": "https://www.vmh.life/#gene/{$id}" } ], - "sampleId": "8639.1", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "8639.1" }, { + "created": "2019-06-11T14:17:44.698+0000", + "deprecated": false, + "deprecationDate": null, + "description": "GWAS Central (previously the Human Genome Variation database of Genotype-to-Phenotype information) is a database of summary level findings from genetic association studies, both large and small. It gathers datasets from public domain projects, and accepts direct data submission. It is based upon Marker information encompassing SNP and variant information from public databases, to which allele and genotype frequency data, and genetic association findings are additionally added. A Study (most generic level) contains one or more Experiments, one or more Sample Panels of test subjects, and one or more Phenotypes. This collection references a GWAS Central Phenotype.", "id": 1523, - "prefix": "gwascentral.phenotype", "mirId": "MIR:00000543", + "modified": "2021-02-01T16:43:30.697+0000", "name": "GWAS Central Phenotype", + "namespaceEmbeddedInLui": false, "pattern": "^HGVPM\\d+$", - "description": "GWAS Central (previously the Human Genome Variation database of Genotype-to-Phenotype information) is a database of summary level findings from genetic association studies, both large and small. It gathers datasets from public domain projects, and accepts direct data submission. It is based upon Marker information encompassing SNP and variant information from public databases, to which allele and genotype frequency data, and genetic association findings are additionally added. A Study (most generic level) contains one or more Experiments, one or more Sample Panels of test subjects, and one or more Phenotypes. This collection references a GWAS Central Phenotype.", - "created": "2019-06-11T14:17:44.698+0000", - "modified": "2021-02-01T16:43:30.697+0000", + "prefix": "gwascentral.phenotype", "resources": [ { - "id": 1524, - "mirId": "MIR:00100720", - "urlPattern": "https://www.gwascentral.org/phenotype/{$id}", - "name": "GWAS Central Phenotype at University of Leicester", + "deprecated": false, + "deprecationDate": null, "description": "GWAS Central Phenotype at University of Leicester", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "HGVPM623", - "resourceHomeUrl": "https://www.gwascentral.org/phenotypes", + "id": 1524, "institution": { - "id": 1079, - "name": "Department of Genetics, University of Leicester, Leicester", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1079, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Department of Genetics, University of Leicester, Leicester", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100720", + "name": "GWAS Central Phenotype at University of Leicester", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.gwascentral.org/phenotypes", + "sampleId": "HGVPM623", + "urlPattern": "https://www.gwascentral.org/phenotype/{$id}" } ], - "sampleId": "HGVPM623", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "HGVPM623" }, { + "created": "2021-02-17T17:56:14.329+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ClinVar archives reports of relationships among medically important variants and phenotypes. It records human variation, interpretations of the relationship specific variations to human health, and supporting evidence for each interpretation. Each ClinVar record (RCV identifier) represents an aggregated view of interpretations of the same variation and condition from one or more submitters (Submitter IDs). Submissions for individual variation/phenotype combinations (SCV identifier) are also collected and made available separately. This collection references submitters (submitter ids) that submit the submissions (SCVs).", "id": 2518, - "prefix": "clinvar.submitter", "mirId": "MIR:00000769", + "modified": "2021-02-17T17:56:14.329+0000", "name": "ClinVar Submitter", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "ClinVar archives reports of relationships among medically important variants and phenotypes. It records human variation, interpretations of the relationship specific variations to human health, and supporting evidence for each interpretation. Each ClinVar record (RCV identifier) represents an aggregated view of interpretations of the same variation and condition from one or more submitters (Submitter IDs). Submissions for individual variation/phenotype combinations (SCV identifier) are also collected and made available separately. This collection references submitters (submitter ids) that submit the submissions (SCVs).", - "created": "2021-02-17T17:56:14.329+0000", - "modified": "2021-02-17T17:56:14.329+0000", + "prefix": "clinvar.submitter", "resources": [ { - "id": 2519, - "mirId": "MIR:00000783", - "urlPattern": "https://www.ncbi.nlm.nih.gov/clinvar/submitters/{$id}", - "name": "ClinVar Submitter at NCBI", + "deprecated": false, + "deprecationDate": null, "description": "ClinVar Submitter ids are assigned by NCBI for all authorized submitters of clinvar submissions (SCVs)", - "official": true, - "providerCode": "ncbi", - "sampleId": "26957", - "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/clinvar/", + "id": 2519, "institution": { - "id": 26, - "name": "National Center for Biotechnology Information", - "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", - "rorId": "https://ror.org/02meqm098", + "homeUrl": "https://www.ncbi.nlm.nih.gov/", + "id": 26, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "National Center for Biotechnology Information", + "rorId": "https://ror.org/02meqm098" }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000783", + "name": "ClinVar Submitter at NCBI", + "official": true, + "providerCode": "ncbi", + "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/clinvar/", + "sampleId": "26957", + "urlPattern": "https://www.ncbi.nlm.nih.gov/clinvar/submitters/{$id}" } ], - "sampleId": "26957", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "26957" }, { + "created": "2021-02-17T18:02:05.160+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Protein Ensemble Database is an open access database for the deposition of structural ensembles, including intrinsically disordered proteins.", "id": 2521, - "prefix": "ped", "mirId": "MIR:00000777", + "modified": "2021-02-17T18:02:05.160+0000", "name": "Protein Ensemble Database", + "namespaceEmbeddedInLui": false, "pattern": "^PED\\d{5}$", - "description": "The Protein Ensemble Database is an open access database for the deposition of structural ensembles, including intrinsically disordered proteins.", - "created": "2021-02-17T18:02:05.160+0000", - "modified": "2021-02-17T18:02:05.160+0000", + "prefix": "ped", "resources": [ { - "id": 2522, - "mirId": "MIR:00000784", - "urlPattern": "https://proteinensemble.org/{$id}", - "name": "PED - Protein Ensemble Database", + "deprecated": false, + "deprecationDate": null, "description": "The Protein Ensemble Database (PED) is an open access database for the deposition of structural ensembles, including intrinsically disordered proteins.", - "official": true, - "providerCode": "ped", - "sampleId": "PED00037", - "resourceHomeUrl": "https://proteinensemble.org/", + "id": 2522, "institution": { - "id": 1769, - "name": "University of Padua", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1769, "location": { "countryCode": "IT", "countryName": "Italy" - } + }, + "name": "University of Padua", + "rorId": null }, "location": { "countryCode": "IT", "countryName": "Italy" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000784", + "name": "PED - Protein Ensemble Database", + "official": true, + "providerCode": "ped", + "resourceHomeUrl": "https://proteinensemble.org/", + "sampleId": "PED00037", + "urlPattern": "https://proteinensemble.org/{$id}" } ], - "sampleId": "PED00037", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "PED00037" }, { + "created": "2021-02-17T18:11:07.592+0000", + "deprecated": false, + "deprecationDate": null, + "description": "RepeatsDB is a database of annotated tandem repeat protein structures. This collection references protein entries in the database.", "id": 2532, - "prefix": "repeatsdb.protein", "mirId": "MIR:00000792", + "modified": "2021-02-17T18:11:07.592+0000", "name": "RepeatsDB Protein", + "namespaceEmbeddedInLui": false, "pattern": "^[OPQopq][0-9][A-Za-z0-9]{3}[0-9]|[A-Na-nR-Zr-z][0-9]([A-Za-z][A-Za-z0-9]{2}[0-9]){1,2}$", - "description": "RepeatsDB is a database of annotated tandem repeat protein structures. This collection references protein entries in the database.", - "created": "2021-02-17T18:11:07.592+0000", - "modified": "2021-02-17T18:11:07.592+0000", + "prefix": "repeatsdb.protein", "resources": [ { - "id": 2533, - "mirId": "MIR:00000699", - "urlPattern": "https://repeatsdb.org/protein/{$id}", - "name": "RepeatsDB", + "deprecated": false, + "deprecationDate": null, "description": "RepeatsDB is a database of annotated tandem repeat protein structures. This collection references structural entries in the database.", - "official": true, - "providerCode": "", - "sampleId": "P29894", - "resourceHomeUrl": "https://repeatsdb.org/", + "id": 2533, "institution": { - "id": 1769, - "name": "University of Padua", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1769, "location": { "countryCode": "IT", "countryName": "Italy" - } + }, + "name": "University of Padua", + "rorId": null }, "location": { "countryCode": "IT", "countryName": "Italy" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000699", + "name": "RepeatsDB", + "official": true, + "providerCode": "", + "resourceHomeUrl": "https://repeatsdb.org/", + "sampleId": "P29894", + "urlPattern": "https://repeatsdb.org/protein/{$id}" } ], - "sampleId": "P29894", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "P29894" }, { + "created": "2021-02-26T07:35:34.234+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Health Data Research Innovation Gateway (the 'Gateway') provides a common entry point to discover and enquire about access to UK health datasets for research and innovation. It provides detailed information about the datasets, which are held by members of the UK Health Data Research Alliance, such as a description, size of the population, and the legal basis for access.", "id": 2548, - "prefix": "gateway", "mirId": "MIR:00000796", + "modified": "2021-02-26T07:35:34.234+0000", "name": "gateway", + "namespaceEmbeddedInLui": false, "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "description": "The Health Data Research Innovation Gateway (the 'Gateway') provides a common entry point to discover and enquire about access to UK health datasets for research and innovation. It provides detailed information about the datasets, which are held by members of the UK Health Data Research Alliance, such as a description, size of the population, and the legal basis for access.", - "created": "2021-02-26T07:35:34.234+0000", - "modified": "2021-02-26T07:35:34.234+0000", + "prefix": "gateway", "resources": [ { - "id": 2549, - "mirId": "MIR:00000697", - "urlPattern": "https://web.www.healthdatagateway.org/dataset/{$id}", - "name": "Health Data Research UK", + "deprecated": false, + "deprecationDate": null, "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04rtjaj74' with no Wikidata information, and no ISNI information", - "official": true, - "providerCode": "hdruk", - "sampleId": "fd8d0743-344a-4758-bb97-f8ad84a37357", - "resourceHomeUrl": "https://www.hdruk.ac.uk", + "id": 2549, "institution": { - "id": 2547, - "name": "Health Data Research UK", - "homeUrl": "https://www.hdruk.ac.uk", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04rtjaj74' with no Wikidata information, and no ISNI information", - "rorId": null, + "homeUrl": "https://www.hdruk.ac.uk", + "id": 2547, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "Health Data Research UK", + "rorId": null }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000697", + "name": "Health Data Research UK", + "official": true, + "providerCode": "hdruk", + "resourceHomeUrl": "https://www.hdruk.ac.uk", + "sampleId": "fd8d0743-344a-4758-bb97-f8ad84a37357", + "urlPattern": "https://web.www.healthdatagateway.org/dataset/{$id}" } ], - "sampleId": "fd8d0743-344a-4758-bb97-f8ad84a37357", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "fd8d0743-344a-4758-bb97-f8ad84a37357" }, { + "created": "2019-06-11T14:17:50.805+0000", + "deprecated": false, + "deprecationDate": null, + "description": "MetaNetX/MNXref integrates various information from genome-scale metabolic network reconstructions such as information on reactions, metabolites and compartments. This information undergoes a reconciliation process to minimise for discrepancies between different data sources, and makes the data accessible under a common namespace. This collection references cellular compartments.", "id": 1585, - "prefix": "metanetx.compartment", "mirId": "MIR:00000569", + "modified": "2021-02-26T09:49:03.051+0000", "name": "MetaNetX compartment", + "namespaceEmbeddedInLui": false, "pattern": "^(MNX[CD]\\d+|BOUNDARY|IN|OUT)$", - "description": "MetaNetX/MNXref integrates various information from genome-scale metabolic network reconstructions such as information on reactions, metabolites and compartments. This information undergoes a reconciliation process to minimise for discrepancies between different data sources, and makes the data accessible under a common namespace. This collection references cellular compartments.", - "created": "2019-06-11T14:17:50.805+0000", - "modified": "2021-02-26T09:49:03.051+0000", + "prefix": "metanetx.compartment", "resources": [ { - "id": 1586, - "mirId": "MIR:00100750", - "urlPattern": "https://www.metanetx.org/comp_info/{$id}", - "name": "MetaNetX compartment at SIB Swiss Institute of Bioinformatics", + "deprecated": false, + "deprecationDate": null, "description": "MetaNetX compartment at SIB Swiss Institute of Bioinformatics", - "official": false, - "providerCode": "CURATOR_REVIEW", - "sampleId": "MNXC15", - "resourceHomeUrl": "https://www.metanetx.org/", + "id": 1586, "institution": { - "id": 1581, - "name": "Vital-IT group, SIB Swiss Institute of Bioinformatics, Lausanne", - "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", - "rorId": null, + "homeUrl": "CURATOR_REVIEW", + "id": 1581, "location": { "countryCode": "CH", "countryName": "Switzerland" - } + }, + "name": "Vital-IT group, SIB Swiss Institute of Bioinformatics, Lausanne", + "rorId": null }, "location": { "countryCode": "CH", "countryName": "Switzerland" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00100750", + "name": "MetaNetX compartment at SIB Swiss Institute of Bioinformatics", + "official": false, + "providerCode": "CURATOR_REVIEW", + "resourceHomeUrl": "https://www.metanetx.org/", + "sampleId": "MNXC15", + "urlPattern": "https://www.metanetx.org/comp_info/{$id}" } ], - "sampleId": "MNXC15", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "MNXC15" }, { + "created": "2021-02-26T10:27:01.032+0000", + "deprecated": false, + "deprecationDate": null, + "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection is species-independent.", "id": 2559, - "prefix": "qtldb", "mirId": "MIR:00000798", + "modified": "2021-02-26T10:27:01.032+0000", "name": "Animal Genome QTL", + "namespaceEmbeddedInLui": false, "pattern": "^\\d+$", - "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection is species-independent.", - "created": "2021-02-26T10:27:01.032+0000", - "modified": "2021-02-26T10:27:01.032+0000", + "prefix": "qtldb", "resources": [ { - "id": 2560, - "mirId": "MIR:00000797", - "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}", - "name": "Animal QTL DB at Iowa State University", + "deprecated": false, + "deprecationDate": null, "description": "Animal QTL DB at Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University", - "official": true, - "providerCode": "iastate", - "sampleId": "4685", - "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", + "id": 2560, "institution": { - "id": 2558, - "name": "Iowa State University", - "homeUrl": "https://www.iastate.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04rswrd78' with Wikidata IDs [Q1136919], and ISNI IDs [0000 0004 1936 7312]", - "rorId": null, + "homeUrl": "https://www.iastate.edu/", + "id": 2558, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Iowa State University", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000797", + "name": "Animal QTL DB at Iowa State University", + "official": true, + "providerCode": "iastate", + "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", + "sampleId": "4685", + "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}" } ], - "sampleId": "4685", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "4685" }, { + "created": "2021-02-28T15:53:07.380+0000", + "deprecated": false, + "deprecationDate": null, + "description": "runBioSimulations is a platform for sharing simulation experiments and their results. runBioSimulations enables investigators to use a wide range of simulation tools to execute a wide range of simulations. runBioSimulations permanently saves the results of these simulations, and investigators can share results by sharing URLs similar to sharing URLs for files with DropBox and Google Drive.", "id": 2565, - "prefix": "runbiosimulations", "mirId": "MIR:00000897", + "modified": "2021-02-28T15:53:07.380+0000", "name": "runBioSimulations", + "namespaceEmbeddedInLui": false, "pattern": "[0-9a-z]{24,24}", - "description": "runBioSimulations is a platform for sharing simulation experiments and their results. runBioSimulations enables investigators to use a wide range of simulation tools to execute a wide range of simulations. runBioSimulations permanently saves the results of these simulations, and investigators can share results by sharing URLs similar to sharing URLs for files with DropBox and Google Drive.", - "created": "2021-02-28T15:53:07.380+0000", - "modified": "2021-02-28T15:53:07.380+0000", + "prefix": "runbiosimulations", "resources": [ { - "id": 2566, - "mirId": "MIR:00000898", - "urlPattern": "https://run.biosimulations.org/simulations/{$id}", - "name": "Icahn School of Medicine at Mount Sinai", + "deprecated": false, + "deprecationDate": null, "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04a9tmd77' with Wikidata IDs [Q1950740], and ISNI IDs [0000 0001 0670 2351]", - "official": true, - "providerCode": "icahn", - "sampleId": "5fde96bdc5f1aa9ff0cce18a", - "resourceHomeUrl": "https://icahn.mssm.edu/", + "id": 2566, "institution": { - "id": 2247, - "name": "Icahn School of Medicine at Mount Sinai", - "homeUrl": "https://icahn.mssm.edu/", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", - "rorId": null, + "homeUrl": "https://icahn.mssm.edu/", + "id": 2247, "location": { "countryCode": "US", "countryName": "United States" - } + }, + "name": "Icahn School of Medicine at Mount Sinai", + "rorId": null }, "location": { "countryCode": "US", "countryName": "United States" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000898", + "name": "Icahn School of Medicine at Mount Sinai", + "official": true, + "providerCode": "icahn", + "resourceHomeUrl": "https://icahn.mssm.edu/", + "sampleId": "5fde96bdc5f1aa9ff0cce18a", + "urlPattern": "https://run.biosimulations.org/simulations/{$id}" } ], - "sampleId": "5fde96bdc5f1aa9ff0cce18a", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "5fde96bdc5f1aa9ff0cce18a" }, { + "created": "2021-02-28T16:13:04.331+0000", + "deprecated": false, + "deprecationDate": null, + "description": "ChEMBL is a database of bioactive compounds, their quantitative properties and bioactivities (binding constants, pharmacology and ADMET, etc). The data is abstracted and curated from the primary scientific literature.", "id": 2571, - "prefix": "chembl", "mirId": "MIR:00000799", + "modified": "2021-02-28T16:13:04.331+0000", "name": "ChEMBL", + "namespaceEmbeddedInLui": false, "pattern": "^CHEMBL\\d+$", - "description": "ChEMBL is a database of bioactive compounds, their quantitative properties and bioactivities (binding constants, pharmacology and ADMET, etc). The data is abstracted and curated from the primary scientific literature.", - "created": "2021-02-28T16:13:04.331+0000", - "modified": "2021-02-28T16:13:04.331+0000", + "prefix": "chembl", "resources": [ { - "id": 2572, - "mirId": "MIR:00000800", - "urlPattern": "https://www.ebi.ac.uk/chembl/entity/{$id}", - "name": "European Bioinformatics Institute", + "deprecated": false, + "deprecationDate": null, "description": "ChEMBL is a database of bioactive compounds, their quantitative properties and bioactivities (binding constants, pharmacology and ADMET, etc). The data is abstracted and curated from the primary scientific literature.", - "official": true, - "providerCode": "ebi", - "sampleId": "CHEMBL4303805", - "resourceHomeUrl": "https://www.ebi.ac.uk/chembl", + "id": 2572, "institution": { - "id": 2, - "name": "European Bioinformatics Institute", + "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "homeUrl": "https://www.ebi.ac.uk", - "description": "At EMBL-EBI, we make the world’s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", - "rorId": "https://ror.org/02catss52", + "id": 2, "location": { "countryCode": "GB", "countryName": "United Kingdom" - } + }, + "name": "European Bioinformatics Institute", + "rorId": "https://ror.org/02catss52" }, "location": { "countryCode": "GB", "countryName": "United Kingdom" }, - "deprecated": false, - "deprecationDate": null + "mirId": "MIR:00000800", + "name": "European Bioinformatics Institute", + "official": true, + "providerCode": "ebi", + "resourceHomeUrl": "https://www.ebi.ac.uk/chembl", + "sampleId": "CHEMBL4303805", + "urlPattern": "https://www.ebi.ac.uk/chembl/entity/{$id}" } ], - "sampleId": "CHEMBL4303805", - "namespaceEmbeddedInLui": false, - "deprecated": false, - "deprecationDate": null + "sampleId": "CHEMBL4303805" } ] } diff --git a/fuji_server/data/jsonldcontext.json b/fuji_server/data/jsonldcontext.json index 4d9e9b8a..29aeea08 100644 --- a/fuji_server/data/jsonldcontext.json +++ b/fuji_server/data/jsonldcontext.json @@ -1,2634 +1,7988 @@ { "@context": { - "type": "@type", - "id": "@id", - "HTML": { "@id": "rdf:HTML" }, - - "@vocab": "http://schema.org/", - "xml": "http://www.w3.org/XML/1998/namespace", - "foaf": "http://xmlns.com/foaf/0.1/", - "eli": "http://data.europa.eu/eli/ontology#", - "snomed": "http://purl.bioontology.org/ontology/SNOMEDCT/", - "bibo": "http://purl.org/ontology/bibo/", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "void": "http://rdfs.org/ns/void#", - "dc": "http://purl.org/dc/elements/1.1/", - "dctype": "http://purl.org/dc/dcmitype/", - "schema": "http://schema.org/", - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "dcat": "http://www.w3.org/ns/dcat#", - "rdfa": "http://www.w3.org/ns/rdfa#", - "xsd": "http://www.w3.org/2001/XMLSchema#", - "dct": "http://purl.org/dc/terms/", - "dcterms": "http://purl.org/dc/terms/", - "owl": "http://www.w3.org/2002/07/owl#", - "3DModel": {"@id": "schema:3DModel"}, - "AMRadioChannel": {"@id": "schema:AMRadioChannel"}, - "APIReference": {"@id": "schema:APIReference"}, - "Abdomen": {"@id": "schema:Abdomen"}, - "AboutPage": {"@id": "schema:AboutPage"}, - "AcceptAction": {"@id": "schema:AcceptAction"}, - "Accommodation": {"@id": "schema:Accommodation"}, - "AccountingService": {"@id": "schema:AccountingService"}, - "AchieveAction": {"@id": "schema:AchieveAction"}, - "Action": {"@id": "schema:Action"}, - "ActionAccessSpecification": {"@id": "schema:ActionAccessSpecification"}, - "ActionStatusType": {"@id": "schema:ActionStatusType"}, - "ActivateAction": {"@id": "schema:ActivateAction"}, - "ActiveActionStatus": {"@id": "schema:ActiveActionStatus"}, - "ActiveNotRecruiting": {"@id": "schema:ActiveNotRecruiting"}, - "AddAction": {"@id": "schema:AddAction"}, - "AdministrativeArea": {"@id": "schema:AdministrativeArea"}, - "AdultEntertainment": {"@id": "schema:AdultEntertainment"}, - "AdvertiserContentArticle": {"@id": "schema:AdvertiserContentArticle"}, - "AerobicActivity": {"@id": "schema:AerobicActivity"}, - "AggregateOffer": {"@id": "schema:AggregateOffer"}, - "AggregateRating": {"@id": "schema:AggregateRating"}, - "AgreeAction": {"@id": "schema:AgreeAction"}, - "Airline": {"@id": "schema:Airline"}, - "Airport": {"@id": "schema:Airport"}, - "AlbumRelease": {"@id": "schema:AlbumRelease"}, - "AlignmentObject": {"@id": "schema:AlignmentObject"}, - "AllWheelDriveConfiguration": {"@id": "schema:AllWheelDriveConfiguration"}, - "AllocateAction": {"@id": "schema:AllocateAction"}, - "AmusementPark": {"@id": "schema:AmusementPark"}, - "AnaerobicActivity": {"@id": "schema:AnaerobicActivity"}, - "AnalysisNewsArticle": {"@id": "schema:AnalysisNewsArticle"}, - "AnatomicalStructure": {"@id": "schema:AnatomicalStructure"}, - "AnatomicalSystem": {"@id": "schema:AnatomicalSystem"}, - "Anesthesia": {"@id": "schema:Anesthesia"}, - "AnimalShelter": {"@id": "schema:AnimalShelter"}, - "Answer": {"@id": "schema:Answer"}, - "Apartment": {"@id": "schema:Apartment"}, - "ApartmentComplex": {"@id": "schema:ApartmentComplex"}, - "Appearance": {"@id": "schema:Appearance"}, - "AppendAction": {"@id": "schema:AppendAction"}, - "ApplyAction": {"@id": "schema:ApplyAction"}, - "ApprovedIndication": {"@id": "schema:ApprovedIndication"}, - "Aquarium": {"@id": "schema:Aquarium"}, - "ArchiveComponent": {"@id": "schema:ArchiveComponent"}, - "ArchiveOrganization": {"@id": "schema:ArchiveOrganization"}, - "ArriveAction": {"@id": "schema:ArriveAction"}, - "ArtGallery": {"@id": "schema:ArtGallery"}, - "Artery": {"@id": "schema:Artery"}, - "Article": {"@id": "schema:Article"}, - "AskAction": {"@id": "schema:AskAction"}, - "AskPublicNewsArticle": {"@id": "schema:AskPublicNewsArticle"}, - "AssessAction": {"@id": "schema:AssessAction"}, - "AssignAction": {"@id": "schema:AssignAction"}, - "Atlas": {"@id": "schema:Atlas"}, - "Attorney": {"@id": "schema:Attorney"}, - "Audience": {"@id": "schema:Audience"}, - "AudioObject": {"@id": "schema:AudioObject"}, - "Audiobook": {"@id": "schema:Audiobook"}, - "AudiobookFormat": {"@id": "schema:AudiobookFormat"}, - "AuthenticContent": {"@id": "schema:AuthenticContent"}, - "AuthoritativeLegalValue": {"@id": "schema:AuthoritativeLegalValue"}, - "AuthorizeAction": {"@id": "schema:AuthorizeAction"}, - "AutoBodyShop": {"@id": "schema:AutoBodyShop"}, - "AutoDealer": {"@id": "schema:AutoDealer"}, - "AutoPartsStore": {"@id": "schema:AutoPartsStore"}, - "AutoRental": {"@id": "schema:AutoRental"}, - "AutoRepair": {"@id": "schema:AutoRepair"}, - "AutoWash": {"@id": "schema:AutoWash"}, - "AutomatedTeller": {"@id": "schema:AutomatedTeller"}, - "AutomotiveBusiness": {"@id": "schema:AutomotiveBusiness"}, - "Ayurvedic": {"@id": "schema:Ayurvedic"}, - "BackgroundNewsArticle": {"@id": "schema:BackgroundNewsArticle"}, - "Bacteria": {"@id": "schema:Bacteria"}, - "Bakery": {"@id": "schema:Bakery"}, - "Balance": {"@id": "schema:Balance"}, - "BankAccount": {"@id": "schema:BankAccount"}, - "BankOrCreditUnion": {"@id": "schema:BankOrCreditUnion"}, - "BarOrPub": {"@id": "schema:BarOrPub"}, - "Barcode": {"@id": "schema:Barcode"}, - "BasicIncome": {"@id": "schema:BasicIncome"}, - "Beach": {"@id": "schema:Beach"}, - "BeautySalon": {"@id": "schema:BeautySalon"}, - "BedAndBreakfast": {"@id": "schema:BedAndBreakfast"}, - "BedDetails": {"@id": "schema:BedDetails"}, - "BedType": {"@id": "schema:BedType"}, - "BefriendAction": {"@id": "schema:BefriendAction"}, - "BenefitsHealthAspect": {"@id": "schema:BenefitsHealthAspect"}, - "BikeStore": {"@id": "schema:BikeStore"}, - "Blog": {"@id": "schema:Blog"}, - "BlogPosting": {"@id": "schema:BlogPosting"}, - "BloodTest": {"@id": "schema:BloodTest"}, - "BoardingPolicyType": {"@id": "schema:BoardingPolicyType"}, - "BoatReservation": {"@id": "schema:BoatReservation"}, - "BoatTerminal": {"@id": "schema:BoatTerminal"}, - "BoatTrip": {"@id": "schema:BoatTrip"}, - "BodyOfWater": {"@id": "schema:BodyOfWater"}, - "Bone": {"@id": "schema:Bone"}, - "Book": {"@id": "schema:Book"}, - "BookFormatType": {"@id": "schema:BookFormatType"}, - "BookSeries": {"@id": "schema:BookSeries"}, - "BookStore": {"@id": "schema:BookStore"}, - "BookmarkAction": {"@id": "schema:BookmarkAction"}, - "Boolean": {"@id": "schema:Boolean"}, - "BorrowAction": {"@id": "schema:BorrowAction"}, - "BowlingAlley": {"@id": "schema:BowlingAlley"}, - "BrainStructure": {"@id": "schema:BrainStructure"}, - "Brand": {"@id": "schema:Brand"}, - "BreadcrumbList": {"@id": "schema:BreadcrumbList"}, - "Brewery": {"@id": "schema:Brewery"}, - "Bridge": {"@id": "schema:Bridge"}, - "BroadcastChannel": {"@id": "schema:BroadcastChannel"}, - "BroadcastEvent": {"@id": "schema:BroadcastEvent"}, - "BroadcastFrequencySpecification": {"@id": "schema:BroadcastFrequencySpecification"}, - "BroadcastRelease": {"@id": "schema:BroadcastRelease"}, - "BroadcastService": {"@id": "schema:BroadcastService"}, - "BrokerageAccount": {"@id": "schema:BrokerageAccount"}, - "BuddhistTemple": {"@id": "schema:BuddhistTemple"}, - "BusOrCoach": {"@id": "schema:BusOrCoach"}, - "BusReservation": {"@id": "schema:BusReservation"}, - "BusStation": {"@id": "schema:BusStation"}, - "BusStop": {"@id": "schema:BusStop"}, - "BusTrip": {"@id": "schema:BusTrip"}, - "BusinessAudience": {"@id": "schema:BusinessAudience"}, - "BusinessEntityType": {"@id": "schema:BusinessEntityType"}, - "BusinessEvent": {"@id": "schema:BusinessEvent"}, - "BusinessFunction": {"@id": "schema:BusinessFunction"}, - "BusinessSupport": {"@id": "schema:BusinessSupport"}, - "BuyAction": {"@id": "schema:BuyAction"}, - "CDCPMDRecord": {"@id": "schema:CDCPMDRecord"}, - "CDFormat": {"@id": "schema:CDFormat"}, - "CT": {"@id": "schema:CT"}, - "CableOrSatelliteService": {"@id": "schema:CableOrSatelliteService"}, - "CafeOrCoffeeShop": {"@id": "schema:CafeOrCoffeeShop"}, - "Campground": {"@id": "schema:Campground"}, - "CampingPitch": {"@id": "schema:CampingPitch"}, - "Canal": {"@id": "schema:Canal"}, - "CancelAction": {"@id": "schema:CancelAction"}, - "Car": {"@id": "schema:Car"}, - "CarUsageType": {"@id": "schema:CarUsageType"}, - "Cardiovascular": {"@id": "schema:Cardiovascular"}, - "CardiovascularExam": {"@id": "schema:CardiovascularExam"}, - "CaseSeries": {"@id": "schema:CaseSeries"}, - "Casino": {"@id": "schema:Casino"}, - "CassetteFormat": {"@id": "schema:CassetteFormat"}, - "CategoryCode": {"@id": "schema:CategoryCode"}, - "CategoryCodeSet": {"@id": "schema:CategoryCodeSet"}, - "CatholicChurch": {"@id": "schema:CatholicChurch"}, - "CausesHealthAspect": {"@id": "schema:CausesHealthAspect"}, - "Cemetery": {"@id": "schema:Cemetery"}, - "Chapter": {"@id": "schema:Chapter"}, - "CharitableIncorporatedOrganization": {"@id": "schema:CharitableIncorporatedOrganization"}, - "CheckAction": {"@id": "schema:CheckAction"}, - "CheckInAction": {"@id": "schema:CheckInAction"}, - "CheckOutAction": {"@id": "schema:CheckOutAction"}, - "CheckoutPage": {"@id": "schema:CheckoutPage"}, - "ChildCare": {"@id": "schema:ChildCare"}, - "ChildrensEvent": {"@id": "schema:ChildrensEvent"}, - "Chiropractic": {"@id": "schema:Chiropractic"}, - "ChooseAction": {"@id": "schema:ChooseAction"}, - "Church": {"@id": "schema:Church"}, - "City": {"@id": "schema:City"}, - "CityHall": {"@id": "schema:CityHall"}, - "CivicStructure": {"@id": "schema:CivicStructure"}, - "Claim": {"@id": "schema:Claim"}, - "ClaimReview": {"@id": "schema:ClaimReview"}, - "Class": {"@id": "schema:Class"}, - "Clinician": {"@id": "schema:Clinician"}, - "Clip": {"@id": "schema:Clip"}, - "ClothingStore": {"@id": "schema:ClothingStore"}, - "CoOp": {"@id": "schema:CoOp"}, - "Code": {"@id": "schema:Code"}, - "CohortStudy": {"@id": "schema:CohortStudy"}, - "Collection": {"@id": "schema:Collection"}, - "CollectionPage": {"@id": "schema:CollectionPage"}, - "CollegeOrUniversity": {"@id": "schema:CollegeOrUniversity"}, - "ComedyClub": {"@id": "schema:ComedyClub"}, - "ComedyEvent": {"@id": "schema:ComedyEvent"}, - "ComicCoverArt": {"@id": "schema:ComicCoverArt"}, - "ComicIssue": {"@id": "schema:ComicIssue"}, - "ComicSeries": {"@id": "schema:ComicSeries"}, - "ComicStory": {"@id": "schema:ComicStory"}, - "Comment": {"@id": "schema:Comment"}, - "CommentAction": {"@id": "schema:CommentAction"}, - "CommentPermission": {"@id": "schema:CommentPermission"}, - "CommunicateAction": {"@id": "schema:CommunicateAction"}, - "CommunityHealth": {"@id": "schema:CommunityHealth"}, - "CompilationAlbum": {"@id": "schema:CompilationAlbum"}, - "CompleteDataFeed": {"@id": "schema:CompleteDataFeed"}, - "Completed": {"@id": "schema:Completed"}, - "CompletedActionStatus": {"@id": "schema:CompletedActionStatus"}, - "CompoundPriceSpecification": {"@id": "schema:CompoundPriceSpecification"}, - "ComputerLanguage": {"@id": "schema:ComputerLanguage"}, - "ComputerStore": {"@id": "schema:ComputerStore"}, - "ConfirmAction": {"@id": "schema:ConfirmAction"}, - "Consortium": {"@id": "schema:Consortium"}, - "ConsumeAction": {"@id": "schema:ConsumeAction"}, - "ContactPage": {"@id": "schema:ContactPage"}, - "ContactPoint": {"@id": "schema:ContactPoint"}, - "ContactPointOption": {"@id": "schema:ContactPointOption"}, - "ContagiousnessHealthAspect": {"@id": "schema:ContagiousnessHealthAspect"}, - "Continent": {"@id": "schema:Continent"}, - "ControlAction": {"@id": "schema:ControlAction"}, - "ConvenienceStore": {"@id": "schema:ConvenienceStore"}, - "Conversation": {"@id": "schema:Conversation"}, - "CookAction": {"@id": "schema:CookAction"}, - "Corporation": {"@id": "schema:Corporation"}, - "CorrectionComment": {"@id": "schema:CorrectionComment"}, - "Country": {"@id": "schema:Country"}, - "Course": {"@id": "schema:Course"}, - "CourseInstance": {"@id": "schema:CourseInstance"}, - "Courthouse": {"@id": "schema:Courthouse"}, - "CoverArt": {"@id": "schema:CoverArt"}, - "CovidTestingFacility": {"@id": "schema:CovidTestingFacility"}, - "CreateAction": {"@id": "schema:CreateAction"}, - "CreativeWork": {"@id": "schema:CreativeWork"}, - "CreativeWorkSeason": {"@id": "schema:CreativeWorkSeason"}, - "CreativeWorkSeries": {"@id": "schema:CreativeWorkSeries"}, - "CreditCard": {"@id": "schema:CreditCard"}, - "Crematorium": {"@id": "schema:Crematorium"}, - "CriticReview": {"@id": "schema:CriticReview"}, - "CrossSectional": {"@id": "schema:CrossSectional"}, - "CssSelectorType": {"@id": "schema:CssSelectorType"}, - "CurrencyConversionService": {"@id": "schema:CurrencyConversionService"}, - "DDxElement": {"@id": "schema:DDxElement"}, - "DJMixAlbum": {"@id": "schema:DJMixAlbum"}, - "DVDFormat": {"@id": "schema:DVDFormat"}, - "DamagedCondition": {"@id": "schema:DamagedCondition"}, - "DanceEvent": {"@id": "schema:DanceEvent"}, - "DanceGroup": {"@id": "schema:DanceGroup"}, - "DataCatalog": {"@id": "schema:DataCatalog"}, - "DataDownload": {"@id": "schema:DataDownload"}, - "DataFeed": {"@id": "schema:DataFeed"}, - "DataFeedItem": {"@id": "schema:DataFeedItem"}, - "DataType": {"@id": "schema:DataType"}, - "Dataset": {"@id": "schema:Dataset"}, - "Date": {"@id": "schema:Date"}, - "DateTime": {"@id": "schema:DateTime"}, - "DatedMoneySpecification": {"@id": "schema:DatedMoneySpecification"}, - "DayOfWeek": {"@id": "schema:DayOfWeek"}, - "DaySpa": {"@id": "schema:DaySpa"}, - "DeactivateAction": {"@id": "schema:DeactivateAction"}, - "DefenceEstablishment": {"@id": "schema:DefenceEstablishment"}, - "DefinedRegion": {"@id": "schema:DefinedRegion"}, - "DefinedTerm": {"@id": "schema:DefinedTerm"}, - "DefinedTermSet": {"@id": "schema:DefinedTermSet"}, - "DefinitiveLegalValue": {"@id": "schema:DefinitiveLegalValue"}, - "DeleteAction": {"@id": "schema:DeleteAction"}, - "DeliveryChargeSpecification": {"@id": "schema:DeliveryChargeSpecification"}, - "DeliveryEvent": {"@id": "schema:DeliveryEvent"}, - "DeliveryMethod": {"@id": "schema:DeliveryMethod"}, - "DeliveryTimeSettings": {"@id": "schema:DeliveryTimeSettings"}, - "Demand": {"@id": "schema:Demand"}, - "DemoAlbum": {"@id": "schema:DemoAlbum"}, - "Dentist": {"@id": "schema:Dentist"}, - "Dentistry": {"@id": "schema:Dentistry"}, - "DepartAction": {"@id": "schema:DepartAction"}, - "DepartmentStore": {"@id": "schema:DepartmentStore"}, - "DepositAccount": {"@id": "schema:DepositAccount"}, - "Dermatologic": {"@id": "schema:Dermatologic"}, - "Dermatology": {"@id": "schema:Dermatology"}, - "DiabeticDiet": {"@id": "schema:DiabeticDiet"}, - "Diagnostic": {"@id": "schema:Diagnostic"}, - "DiagnosticLab": {"@id": "schema:DiagnosticLab"}, - "DiagnosticProcedure": {"@id": "schema:DiagnosticProcedure"}, - "Diet": {"@id": "schema:Diet"}, - "DietNutrition": {"@id": "schema:DietNutrition"}, - "DietarySupplement": {"@id": "schema:DietarySupplement"}, - "DigitalAudioTapeFormat": {"@id": "schema:DigitalAudioTapeFormat"}, - "DigitalDocument": {"@id": "schema:DigitalDocument"}, - "DigitalDocumentPermission": {"@id": "schema:DigitalDocumentPermission"}, - "DigitalDocumentPermissionType": {"@id": "schema:DigitalDocumentPermissionType"}, - "DigitalFormat": {"@id": "schema:DigitalFormat"}, - "DisabilitySupport": {"@id": "schema:DisabilitySupport"}, - "DisagreeAction": {"@id": "schema:DisagreeAction"}, - "Discontinued": {"@id": "schema:Discontinued"}, - "DiscoverAction": {"@id": "schema:DiscoverAction"}, - "DiscussionForumPosting": {"@id": "schema:DiscussionForumPosting"}, - "DislikeAction": {"@id": "schema:DislikeAction"}, - "Distance": {"@id": "schema:Distance"}, - "Distillery": {"@id": "schema:Distillery"}, - "DonateAction": {"@id": "schema:DonateAction"}, - "DoseSchedule": {"@id": "schema:DoseSchedule"}, - "DoubleBlindedTrial": {"@id": "schema:DoubleBlindedTrial"}, - "DownloadAction": {"@id": "schema:DownloadAction"}, - "DrawAction": {"@id": "schema:DrawAction"}, - "Drawing": {"@id": "schema:Drawing"}, - "DrinkAction": {"@id": "schema:DrinkAction"}, - "DriveWheelConfigurationValue": {"@id": "schema:DriveWheelConfigurationValue"}, - "DrivingSchoolVehicleUsage": {"@id": "schema:DrivingSchoolVehicleUsage"}, - "Drug": {"@id": "schema:Drug"}, - "DrugClass": {"@id": "schema:DrugClass"}, - "DrugCost": {"@id": "schema:DrugCost"}, - "DrugCostCategory": {"@id": "schema:DrugCostCategory"}, - "DrugLegalStatus": {"@id": "schema:DrugLegalStatus"}, - "DrugPregnancyCategory": {"@id": "schema:DrugPregnancyCategory"}, - "DrugPrescriptionStatus": {"@id": "schema:DrugPrescriptionStatus"}, - "DrugStrength": {"@id": "schema:DrugStrength"}, - "DryCleaningOrLaundry": {"@id": "schema:DryCleaningOrLaundry"}, - "Duration": {"@id": "schema:Duration"}, - "EBook": {"@id": "schema:EBook"}, - "EPRelease": {"@id": "schema:EPRelease"}, - "EUEnergyEfficiencyCategoryA": {"@id": "schema:EUEnergyEfficiencyCategoryA"}, - "EUEnergyEfficiencyCategoryA1Plus": {"@id": "schema:EUEnergyEfficiencyCategoryA1Plus"}, - "EUEnergyEfficiencyCategoryA2Plus": {"@id": "schema:EUEnergyEfficiencyCategoryA2Plus"}, - "EUEnergyEfficiencyCategoryA3Plus": {"@id": "schema:EUEnergyEfficiencyCategoryA3Plus"}, - "EUEnergyEfficiencyCategoryB": {"@id": "schema:EUEnergyEfficiencyCategoryB"}, - "EUEnergyEfficiencyCategoryC": {"@id": "schema:EUEnergyEfficiencyCategoryC"}, - "EUEnergyEfficiencyCategoryD": {"@id": "schema:EUEnergyEfficiencyCategoryD"}, - "EUEnergyEfficiencyCategoryE": {"@id": "schema:EUEnergyEfficiencyCategoryE"}, - "EUEnergyEfficiencyCategoryF": {"@id": "schema:EUEnergyEfficiencyCategoryF"}, - "EUEnergyEfficiencyCategoryG": {"@id": "schema:EUEnergyEfficiencyCategoryG"}, - "EUEnergyEfficiencyEnumeration": {"@id": "schema:EUEnergyEfficiencyEnumeration"}, - "Ear": {"@id": "schema:Ear"}, - "EatAction": {"@id": "schema:EatAction"}, - "EducationEvent": {"@id": "schema:EducationEvent"}, - "EducationalAudience": {"@id": "schema:EducationalAudience"}, - "EducationalOccupationalCredential": {"@id": "schema:EducationalOccupationalCredential"}, - "EducationalOccupationalProgram": {"@id": "schema:EducationalOccupationalProgram"}, - "EducationalOrganization": {"@id": "schema:EducationalOrganization"}, - "Electrician": {"@id": "schema:Electrician"}, - "ElectronicsStore": {"@id": "schema:ElectronicsStore"}, - "ElementarySchool": {"@id": "schema:ElementarySchool"}, - "EmailMessage": {"@id": "schema:EmailMessage"}, - "Embassy": {"@id": "schema:Embassy"}, - "Emergency": {"@id": "schema:Emergency"}, - "EmergencyService": {"@id": "schema:EmergencyService"}, - "EmployeeRole": {"@id": "schema:EmployeeRole"}, - "EmployerAggregateRating": {"@id": "schema:EmployerAggregateRating"}, - "EmployerReview": {"@id": "schema:EmployerReview"}, - "EmploymentAgency": {"@id": "schema:EmploymentAgency"}, - "Endocrine": {"@id": "schema:Endocrine"}, - "EndorseAction": {"@id": "schema:EndorseAction"}, - "EndorsementRating": {"@id": "schema:EndorsementRating"}, - "Energy": {"@id": "schema:Energy"}, - "EnergyConsumptionDetails": {"@id": "schema:EnergyConsumptionDetails"}, - "EnergyEfficiencyEnumeration": {"@id": "schema:EnergyEfficiencyEnumeration"}, - "EnergyStarCertified": {"@id": "schema:EnergyStarCertified"}, - "EnergyStarEnergyEfficiencyEnumeration": {"@id": "schema:EnergyStarEnergyEfficiencyEnumeration"}, - "EngineSpecification": {"@id": "schema:EngineSpecification"}, - "EnrollingByInvitation": {"@id": "schema:EnrollingByInvitation"}, - "EntertainmentBusiness": {"@id": "schema:EntertainmentBusiness"}, - "EntryPoint": {"@id": "schema:EntryPoint"}, - "Enumeration": {"@id": "schema:Enumeration"}, - "Episode": {"@id": "schema:Episode"}, - "Event": {"@id": "schema:Event"}, - "EventAttendanceModeEnumeration": {"@id": "schema:EventAttendanceModeEnumeration"}, - "EventCancelled": {"@id": "schema:EventCancelled"}, - "EventMovedOnline": {"@id": "schema:EventMovedOnline"}, - "EventPostponed": {"@id": "schema:EventPostponed"}, - "EventRescheduled": {"@id": "schema:EventRescheduled"}, - "EventReservation": {"@id": "schema:EventReservation"}, - "EventScheduled": {"@id": "schema:EventScheduled"}, - "EventSeries": {"@id": "schema:EventSeries"}, - "EventStatusType": {"@id": "schema:EventStatusType"}, - "EventVenue": {"@id": "schema:EventVenue"}, - "EvidenceLevelA": {"@id": "schema:EvidenceLevelA"}, - "EvidenceLevelB": {"@id": "schema:EvidenceLevelB"}, - "EvidenceLevelC": {"@id": "schema:EvidenceLevelC"}, - "ExchangeRateSpecification": {"@id": "schema:ExchangeRateSpecification"}, - "ExchangeRefund": {"@id": "schema:ExchangeRefund"}, - "ExerciseAction": {"@id": "schema:ExerciseAction"}, - "ExerciseGym": {"@id": "schema:ExerciseGym"}, - "ExercisePlan": {"@id": "schema:ExercisePlan"}, - "ExhibitionEvent": {"@id": "schema:ExhibitionEvent"}, - "Eye": {"@id": "schema:Eye"}, - "FAQPage": {"@id": "schema:FAQPage"}, - "FDAcategoryA": {"@id": "schema:FDAcategoryA"}, - "FDAcategoryB": {"@id": "schema:FDAcategoryB"}, - "FDAcategoryC": {"@id": "schema:FDAcategoryC"}, - "FDAcategoryD": {"@id": "schema:FDAcategoryD"}, - "FDAcategoryX": {"@id": "schema:FDAcategoryX"}, - "FDAnotEvaluated": {"@id": "schema:FDAnotEvaluated"}, - "FMRadioChannel": {"@id": "schema:FMRadioChannel"}, - "FailedActionStatus": {"@id": "schema:FailedActionStatus"}, - "False": {"@id": "schema:False"}, - "FastFoodRestaurant": {"@id": "schema:FastFoodRestaurant"}, - "Female": {"@id": "schema:Female"}, - "Festival": {"@id": "schema:Festival"}, - "FilmAction": {"@id": "schema:FilmAction"}, - "FinancialProduct": {"@id": "schema:FinancialProduct"}, - "FinancialService": {"@id": "schema:FinancialService"}, - "FindAction": {"@id": "schema:FindAction"}, - "FireStation": {"@id": "schema:FireStation"}, - "Flexibility": {"@id": "schema:Flexibility"}, - "Flight": {"@id": "schema:Flight"}, - "FlightReservation": {"@id": "schema:FlightReservation"}, - "Float": {"@id": "schema:Float"}, - "FloorPlan": {"@id": "schema:FloorPlan"}, - "Florist": {"@id": "schema:Florist"}, - "FollowAction": {"@id": "schema:FollowAction"}, - "FoodEstablishment": {"@id": "schema:FoodEstablishment"}, - "FoodEstablishmentReservation": {"@id": "schema:FoodEstablishmentReservation"}, - "FoodEvent": {"@id": "schema:FoodEvent"}, - "FoodService": {"@id": "schema:FoodService"}, - "FourWheelDriveConfiguration": {"@id": "schema:FourWheelDriveConfiguration"}, - "Friday": {"@id": "schema:Friday"}, - "FrontWheelDriveConfiguration": {"@id": "schema:FrontWheelDriveConfiguration"}, - "FullRefund": {"@id": "schema:FullRefund"}, - "FundingAgency": {"@id": "schema:FundingAgency"}, - "FundingScheme": {"@id": "schema:FundingScheme"}, - "Fungus": {"@id": "schema:Fungus"}, - "FurnitureStore": {"@id": "schema:FurnitureStore"}, - "Game": {"@id": "schema:Game"}, - "GamePlayMode": {"@id": "schema:GamePlayMode"}, - "GameServer": {"@id": "schema:GameServer"}, - "GameServerStatus": {"@id": "schema:GameServerStatus"}, - "GardenStore": {"@id": "schema:GardenStore"}, - "GasStation": {"@id": "schema:GasStation"}, - "Gastroenterologic": {"@id": "schema:Gastroenterologic"}, - "GatedResidenceCommunity": {"@id": "schema:GatedResidenceCommunity"}, - "GenderType": {"@id": "schema:GenderType"}, - "GeneralContractor": {"@id": "schema:GeneralContractor"}, - "Genetic": {"@id": "schema:Genetic"}, - "Genitourinary": {"@id": "schema:Genitourinary"}, - "GeoCircle": {"@id": "schema:GeoCircle"}, - "GeoCoordinates": {"@id": "schema:GeoCoordinates"}, - "GeoShape": {"@id": "schema:GeoShape"}, - "GeospatialGeometry": {"@id": "schema:GeospatialGeometry"}, - "Geriatric": {"@id": "schema:Geriatric"}, - "GiveAction": {"@id": "schema:GiveAction"}, - "GlutenFreeDiet": {"@id": "schema:GlutenFreeDiet"}, - "GolfCourse": {"@id": "schema:GolfCourse"}, - "GovernmentBenefitsType": {"@id": "schema:GovernmentBenefitsType"}, - "GovernmentBuilding": {"@id": "schema:GovernmentBuilding"}, - "GovernmentOffice": {"@id": "schema:GovernmentOffice"}, - "GovernmentOrganization": {"@id": "schema:GovernmentOrganization"}, - "GovernmentPermit": {"@id": "schema:GovernmentPermit"}, - "GovernmentService": {"@id": "schema:GovernmentService"}, - "Grant": {"@id": "schema:Grant"}, - "GraphicNovel": {"@id": "schema:GraphicNovel"}, - "GroceryStore": {"@id": "schema:GroceryStore"}, - "GroupBoardingPolicy": {"@id": "schema:GroupBoardingPolicy"}, - "Guide": {"@id": "schema:Guide"}, - "Gynecologic": {"@id": "schema:Gynecologic"}, - "HVACBusiness": {"@id": "schema:HVACBusiness"}, - "Hackathon": {"@id": "schema:Hackathon"}, - "HairSalon": {"@id": "schema:HairSalon"}, - "HalalDiet": {"@id": "schema:HalalDiet"}, - "Hardcover": {"@id": "schema:Hardcover"}, - "HardwareStore": {"@id": "schema:HardwareStore"}, - "Head": {"@id": "schema:Head"}, - "HealthAndBeautyBusiness": {"@id": "schema:HealthAndBeautyBusiness"}, - "HealthAspectEnumeration": {"@id": "schema:HealthAspectEnumeration"}, - "HealthCare": {"@id": "schema:HealthCare"}, - "HealthClub": {"@id": "schema:HealthClub"}, - "HealthInsurancePlan": {"@id": "schema:HealthInsurancePlan"}, - "HealthPlanCostSharingSpecification": {"@id": "schema:HealthPlanCostSharingSpecification"}, - "HealthPlanFormulary": {"@id": "schema:HealthPlanFormulary"}, - "HealthPlanNetwork": {"@id": "schema:HealthPlanNetwork"}, - "HealthTopicContent": {"@id": "schema:HealthTopicContent"}, - "HearingImpairedSupported": {"@id": "schema:HearingImpairedSupported"}, - "Hematologic": {"@id": "schema:Hematologic"}, - "HighSchool": {"@id": "schema:HighSchool"}, - "HinduDiet": {"@id": "schema:HinduDiet"}, - "HinduTemple": {"@id": "schema:HinduTemple"}, - "HobbyShop": {"@id": "schema:HobbyShop"}, - "HomeAndConstructionBusiness": {"@id": "schema:HomeAndConstructionBusiness"}, - "HomeGoodsStore": {"@id": "schema:HomeGoodsStore"}, - "Homeopathic": {"@id": "schema:Homeopathic"}, - "Hospital": {"@id": "schema:Hospital"}, - "Hostel": {"@id": "schema:Hostel"}, - "Hotel": {"@id": "schema:Hotel"}, - "HotelRoom": {"@id": "schema:HotelRoom"}, - "House": {"@id": "schema:House"}, - "HousePainter": {"@id": "schema:HousePainter"}, - "HowOrWhereHealthAspect": {"@id": "schema:HowOrWhereHealthAspect"}, - "HowTo": {"@id": "schema:HowTo"}, - "HowToDirection": {"@id": "schema:HowToDirection"}, - "HowToItem": {"@id": "schema:HowToItem"}, - "HowToSection": {"@id": "schema:HowToSection"}, - "HowToStep": {"@id": "schema:HowToStep"}, - "HowToSupply": {"@id": "schema:HowToSupply"}, - "HowToTip": {"@id": "schema:HowToTip"}, - "HowToTool": {"@id": "schema:HowToTool"}, - "IceCreamShop": {"@id": "schema:IceCreamShop"}, - "IgnoreAction": {"@id": "schema:IgnoreAction"}, - "ImageGallery": {"@id": "schema:ImageGallery"}, - "ImageObject": {"@id": "schema:ImageObject"}, - "ImagingTest": {"@id": "schema:ImagingTest"}, - "InForce": {"@id": "schema:InForce"}, - "InStock": {"@id": "schema:InStock"}, - "InStoreOnly": {"@id": "schema:InStoreOnly"}, - "IndividualProduct": {"@id": "schema:IndividualProduct"}, - "Infectious": {"@id": "schema:Infectious"}, - "InfectiousAgentClass": {"@id": "schema:InfectiousAgentClass"}, - "InfectiousDisease": {"@id": "schema:InfectiousDisease"}, - "InformAction": {"@id": "schema:InformAction"}, - "InsertAction": {"@id": "schema:InsertAction"}, - "InstallAction": {"@id": "schema:InstallAction"}, - "InsuranceAgency": {"@id": "schema:InsuranceAgency"}, - "Intangible": {"@id": "schema:Intangible"}, - "Integer": {"@id": "schema:Integer"}, - "InteractAction": {"@id": "schema:InteractAction"}, - "InteractionCounter": {"@id": "schema:InteractionCounter"}, - "InternationalTrial": {"@id": "schema:InternationalTrial"}, - "InternetCafe": {"@id": "schema:InternetCafe"}, - "InvestmentFund": {"@id": "schema:InvestmentFund"}, - "InvestmentOrDeposit": {"@id": "schema:InvestmentOrDeposit"}, - "InviteAction": {"@id": "schema:InviteAction"}, - "Invoice": {"@id": "schema:Invoice"}, - "ItemAvailability": {"@id": "schema:ItemAvailability"}, - "ItemList": {"@id": "schema:ItemList"}, - "ItemListOrderAscending": {"@id": "schema:ItemListOrderAscending"}, - "ItemListOrderDescending": {"@id": "schema:ItemListOrderDescending"}, - "ItemListOrderType": {"@id": "schema:ItemListOrderType"}, - "ItemListUnordered": {"@id": "schema:ItemListUnordered"}, - "ItemPage": {"@id": "schema:ItemPage"}, - "JewelryStore": {"@id": "schema:JewelryStore"}, - "JobPosting": {"@id": "schema:JobPosting"}, - "JoinAction": {"@id": "schema:JoinAction"}, - "Joint": {"@id": "schema:Joint"}, - "KosherDiet": {"@id": "schema:KosherDiet"}, - "LaboratoryScience": {"@id": "schema:LaboratoryScience"}, - "LakeBodyOfWater": {"@id": "schema:LakeBodyOfWater"}, - "Landform": {"@id": "schema:Landform"}, - "LandmarksOrHistoricalBuildings": {"@id": "schema:LandmarksOrHistoricalBuildings"}, - "Language": {"@id": "schema:Language"}, - "LaserDiscFormat": {"@id": "schema:LaserDiscFormat"}, - "LearningResource": {"@id": "schema:LearningResource"}, - "LeaveAction": {"@id": "schema:LeaveAction"}, - "LeftHandDriving": {"@id": "schema:LeftHandDriving"}, - "LegalForceStatus": {"@id": "schema:LegalForceStatus"}, - "LegalService": {"@id": "schema:LegalService"}, - "LegalValueLevel": {"@id": "schema:LegalValueLevel"}, - "Legislation": {"@id": "schema:Legislation"}, - "LegislationObject": {"@id": "schema:LegislationObject"}, - "LegislativeBuilding": {"@id": "schema:LegislativeBuilding"}, - "LeisureTimeActivity": {"@id": "schema:LeisureTimeActivity"}, - "LendAction": {"@id": "schema:LendAction"}, - "Library": {"@id": "schema:Library"}, - "LibrarySystem": {"@id": "schema:LibrarySystem"}, - "LifestyleModification": {"@id": "schema:LifestyleModification"}, - "Ligament": {"@id": "schema:Ligament"}, - "LikeAction": {"@id": "schema:LikeAction"}, - "LimitedAvailability": {"@id": "schema:LimitedAvailability"}, - "LimitedByGuaranteeCharity": {"@id": "schema:LimitedByGuaranteeCharity"}, - "LinkRole": {"@id": "schema:LinkRole"}, - "LiquorStore": {"@id": "schema:LiquorStore"}, - "ListItem": {"@id": "schema:ListItem"}, - "ListenAction": {"@id": "schema:ListenAction"}, - "LiteraryEvent": {"@id": "schema:LiteraryEvent"}, - "LiveAlbum": {"@id": "schema:LiveAlbum"}, - "LiveBlogPosting": {"@id": "schema:LiveBlogPosting"}, - "LivingWithHealthAspect": {"@id": "schema:LivingWithHealthAspect"}, - "LoanOrCredit": {"@id": "schema:LoanOrCredit"}, - "LocalBusiness": {"@id": "schema:LocalBusiness"}, - "LocationFeatureSpecification": {"@id": "schema:LocationFeatureSpecification"}, - "LockerDelivery": {"@id": "schema:LockerDelivery"}, - "Locksmith": {"@id": "schema:Locksmith"}, - "LodgingBusiness": {"@id": "schema:LodgingBusiness"}, - "LodgingReservation": {"@id": "schema:LodgingReservation"}, - "Longitudinal": {"@id": "schema:Longitudinal"}, - "LoseAction": {"@id": "schema:LoseAction"}, - "LowCalorieDiet": {"@id": "schema:LowCalorieDiet"}, - "LowFatDiet": {"@id": "schema:LowFatDiet"}, - "LowLactoseDiet": {"@id": "schema:LowLactoseDiet"}, - "LowSaltDiet": {"@id": "schema:LowSaltDiet"}, - "Lung": {"@id": "schema:Lung"}, - "LymphaticVessel": {"@id": "schema:LymphaticVessel"}, - "MRI": {"@id": "schema:MRI"}, - "Male": {"@id": "schema:Male"}, - "Manuscript": {"@id": "schema:Manuscript"}, - "Map": {"@id": "schema:Map"}, - "MapCategoryType": {"@id": "schema:MapCategoryType"}, - "MarryAction": {"@id": "schema:MarryAction"}, - "Mass": {"@id": "schema:Mass"}, - "MaximumDoseSchedule": {"@id": "schema:MaximumDoseSchedule"}, - "MayTreatHealthAspect": {"@id": "schema:MayTreatHealthAspect"}, - "MediaGallery": {"@id": "schema:MediaGallery"}, - "MediaManipulationRatingEnumeration": {"@id": "schema:MediaManipulationRatingEnumeration"}, - "MediaObject": {"@id": "schema:MediaObject"}, - "MediaReview": {"@id": "schema:MediaReview"}, - "MediaSubscription": {"@id": "schema:MediaSubscription"}, - "MedicalAudience": {"@id": "schema:MedicalAudience"}, - "MedicalAudienceType": {"@id": "schema:MedicalAudienceType"}, - "MedicalBusiness": {"@id": "schema:MedicalBusiness"}, - "MedicalCause": {"@id": "schema:MedicalCause"}, - "MedicalClinic": {"@id": "schema:MedicalClinic"}, - "MedicalCode": {"@id": "schema:MedicalCode"}, - "MedicalCondition": {"@id": "schema:MedicalCondition"}, - "MedicalConditionStage": {"@id": "schema:MedicalConditionStage"}, - "MedicalContraindication": {"@id": "schema:MedicalContraindication"}, - "MedicalDevice": {"@id": "schema:MedicalDevice"}, - "MedicalDevicePurpose": {"@id": "schema:MedicalDevicePurpose"}, - "MedicalEntity": {"@id": "schema:MedicalEntity"}, - "MedicalEnumeration": {"@id": "schema:MedicalEnumeration"}, - "MedicalEvidenceLevel": {"@id": "schema:MedicalEvidenceLevel"}, - "MedicalGuideline": {"@id": "schema:MedicalGuideline"}, - "MedicalGuidelineContraindication": {"@id": "schema:MedicalGuidelineContraindication"}, - "MedicalGuidelineRecommendation": {"@id": "schema:MedicalGuidelineRecommendation"}, - "MedicalImagingTechnique": {"@id": "schema:MedicalImagingTechnique"}, - "MedicalIndication": {"@id": "schema:MedicalIndication"}, - "MedicalIntangible": {"@id": "schema:MedicalIntangible"}, - "MedicalObservationalStudy": {"@id": "schema:MedicalObservationalStudy"}, - "MedicalObservationalStudyDesign": {"@id": "schema:MedicalObservationalStudyDesign"}, - "MedicalOrganization": {"@id": "schema:MedicalOrganization"}, - "MedicalProcedure": {"@id": "schema:MedicalProcedure"}, - "MedicalProcedureType": {"@id": "schema:MedicalProcedureType"}, - "MedicalResearcher": {"@id": "schema:MedicalResearcher"}, - "MedicalRiskCalculator": {"@id": "schema:MedicalRiskCalculator"}, - "MedicalRiskEstimator": {"@id": "schema:MedicalRiskEstimator"}, - "MedicalRiskFactor": {"@id": "schema:MedicalRiskFactor"}, - "MedicalRiskScore": {"@id": "schema:MedicalRiskScore"}, - "MedicalScholarlyArticle": {"@id": "schema:MedicalScholarlyArticle"}, - "MedicalSign": {"@id": "schema:MedicalSign"}, - "MedicalSignOrSymptom": {"@id": "schema:MedicalSignOrSymptom"}, - "MedicalSpecialty": {"@id": "schema:MedicalSpecialty"}, - "MedicalStudy": {"@id": "schema:MedicalStudy"}, - "MedicalStudyStatus": {"@id": "schema:MedicalStudyStatus"}, - "MedicalSymptom": {"@id": "schema:MedicalSymptom"}, - "MedicalTest": {"@id": "schema:MedicalTest"}, - "MedicalTestPanel": {"@id": "schema:MedicalTestPanel"}, - "MedicalTherapy": {"@id": "schema:MedicalTherapy"}, - "MedicalTrial": {"@id": "schema:MedicalTrial"}, - "MedicalTrialDesign": {"@id": "schema:MedicalTrialDesign"}, - "MedicalWebPage": {"@id": "schema:MedicalWebPage"}, - "MedicineSystem": {"@id": "schema:MedicineSystem"}, - "MeetingRoom": {"@id": "schema:MeetingRoom"}, - "MensClothingStore": {"@id": "schema:MensClothingStore"}, - "Menu": {"@id": "schema:Menu"}, - "MenuItem": {"@id": "schema:MenuItem"}, - "MenuSection": {"@id": "schema:MenuSection"}, - "MerchantReturnEnumeration": {"@id": "schema:MerchantReturnEnumeration"}, - "MerchantReturnFiniteReturnWindow": {"@id": "schema:MerchantReturnFiniteReturnWindow"}, - "MerchantReturnNotPermitted": {"@id": "schema:MerchantReturnNotPermitted"}, - "MerchantReturnPolicy": {"@id": "schema:MerchantReturnPolicy"}, - "MerchantReturnUnlimitedWindow": {"@id": "schema:MerchantReturnUnlimitedWindow"}, - "MerchantReturnUnspecified": {"@id": "schema:MerchantReturnUnspecified"}, - "Message": {"@id": "schema:Message"}, - "MiddleSchool": {"@id": "schema:MiddleSchool"}, - "Midwifery": {"@id": "schema:Midwifery"}, - "MisconceptionsHealthAspect": {"@id": "schema:MisconceptionsHealthAspect"}, - "MissingContext": {"@id": "schema:MissingContext"}, - "MixedEventAttendanceMode": {"@id": "schema:MixedEventAttendanceMode"}, - "MixtapeAlbum": {"@id": "schema:MixtapeAlbum"}, - "MobileApplication": {"@id": "schema:MobileApplication"}, - "MobilePhoneStore": {"@id": "schema:MobilePhoneStore"}, - "Monday": {"@id": "schema:Monday"}, - "MonetaryAmount": {"@id": "schema:MonetaryAmount"}, - "MonetaryAmountDistribution": {"@id": "schema:MonetaryAmountDistribution"}, - "MonetaryGrant": {"@id": "schema:MonetaryGrant"}, - "MoneyTransfer": {"@id": "schema:MoneyTransfer"}, - "MortgageLoan": {"@id": "schema:MortgageLoan"}, - "Mosque": {"@id": "schema:Mosque"}, - "Motel": {"@id": "schema:Motel"}, - "Motorcycle": {"@id": "schema:Motorcycle"}, - "MotorcycleDealer": {"@id": "schema:MotorcycleDealer"}, - "MotorcycleRepair": {"@id": "schema:MotorcycleRepair"}, - "MotorizedBicycle": {"@id": "schema:MotorizedBicycle"}, - "Mountain": {"@id": "schema:Mountain"}, - "MoveAction": {"@id": "schema:MoveAction"}, - "Movie": {"@id": "schema:Movie"}, - "MovieClip": {"@id": "schema:MovieClip"}, - "MovieRentalStore": {"@id": "schema:MovieRentalStore"}, - "MovieSeries": {"@id": "schema:MovieSeries"}, - "MovieTheater": {"@id": "schema:MovieTheater"}, - "MovingCompany": {"@id": "schema:MovingCompany"}, - "MultiCenterTrial": {"@id": "schema:MultiCenterTrial"}, - "MultiPlayer": {"@id": "schema:MultiPlayer"}, - "MulticellularParasite": {"@id": "schema:MulticellularParasite"}, - "Muscle": {"@id": "schema:Muscle"}, - "Musculoskeletal": {"@id": "schema:Musculoskeletal"}, - "MusculoskeletalExam": {"@id": "schema:MusculoskeletalExam"}, - "Museum": {"@id": "schema:Museum"}, - "MusicAlbum": {"@id": "schema:MusicAlbum"}, - "MusicAlbumProductionType": {"@id": "schema:MusicAlbumProductionType"}, - "MusicAlbumReleaseType": {"@id": "schema:MusicAlbumReleaseType"}, - "MusicComposition": {"@id": "schema:MusicComposition"}, - "MusicEvent": {"@id": "schema:MusicEvent"}, - "MusicGroup": {"@id": "schema:MusicGroup"}, - "MusicPlaylist": {"@id": "schema:MusicPlaylist"}, - "MusicRecording": {"@id": "schema:MusicRecording"}, - "MusicRelease": {"@id": "schema:MusicRelease"}, - "MusicReleaseFormatType": {"@id": "schema:MusicReleaseFormatType"}, - "MusicStore": {"@id": "schema:MusicStore"}, - "MusicVenue": {"@id": "schema:MusicVenue"}, - "MusicVideoObject": {"@id": "schema:MusicVideoObject"}, - "NGO": {"@id": "schema:NGO"}, - "NLNonprofitType": {"@id": "schema:NLNonprofitType"}, - "NailSalon": {"@id": "schema:NailSalon"}, - "Neck": {"@id": "schema:Neck"}, - "Nerve": {"@id": "schema:Nerve"}, - "Neuro": {"@id": "schema:Neuro"}, - "Neurologic": {"@id": "schema:Neurologic"}, - "NewCondition": {"@id": "schema:NewCondition"}, - "NewsArticle": {"@id": "schema:NewsArticle"}, - "NewsMediaOrganization": {"@id": "schema:NewsMediaOrganization"}, - "Newspaper": {"@id": "schema:Newspaper"}, - "NightClub": {"@id": "schema:NightClub"}, - "NoninvasiveProcedure": {"@id": "schema:NoninvasiveProcedure"}, - "Nonprofit501a": {"@id": "schema:Nonprofit501a"}, - "Nonprofit501c1": {"@id": "schema:Nonprofit501c1"}, - "Nonprofit501c10": {"@id": "schema:Nonprofit501c10"}, - "Nonprofit501c11": {"@id": "schema:Nonprofit501c11"}, - "Nonprofit501c12": {"@id": "schema:Nonprofit501c12"}, - "Nonprofit501c13": {"@id": "schema:Nonprofit501c13"}, - "Nonprofit501c14": {"@id": "schema:Nonprofit501c14"}, - "Nonprofit501c15": {"@id": "schema:Nonprofit501c15"}, - "Nonprofit501c16": {"@id": "schema:Nonprofit501c16"}, - "Nonprofit501c17": {"@id": "schema:Nonprofit501c17"}, - "Nonprofit501c18": {"@id": "schema:Nonprofit501c18"}, - "Nonprofit501c19": {"@id": "schema:Nonprofit501c19"}, - "Nonprofit501c2": {"@id": "schema:Nonprofit501c2"}, - "Nonprofit501c20": {"@id": "schema:Nonprofit501c20"}, - "Nonprofit501c21": {"@id": "schema:Nonprofit501c21"}, - "Nonprofit501c22": {"@id": "schema:Nonprofit501c22"}, - "Nonprofit501c23": {"@id": "schema:Nonprofit501c23"}, - "Nonprofit501c24": {"@id": "schema:Nonprofit501c24"}, - "Nonprofit501c25": {"@id": "schema:Nonprofit501c25"}, - "Nonprofit501c26": {"@id": "schema:Nonprofit501c26"}, - "Nonprofit501c27": {"@id": "schema:Nonprofit501c27"}, - "Nonprofit501c28": {"@id": "schema:Nonprofit501c28"}, - "Nonprofit501c3": {"@id": "schema:Nonprofit501c3"}, - "Nonprofit501c4": {"@id": "schema:Nonprofit501c4"}, - "Nonprofit501c5": {"@id": "schema:Nonprofit501c5"}, - "Nonprofit501c6": {"@id": "schema:Nonprofit501c6"}, - "Nonprofit501c7": {"@id": "schema:Nonprofit501c7"}, - "Nonprofit501c8": {"@id": "schema:Nonprofit501c8"}, - "Nonprofit501c9": {"@id": "schema:Nonprofit501c9"}, - "Nonprofit501d": {"@id": "schema:Nonprofit501d"}, - "Nonprofit501e": {"@id": "schema:Nonprofit501e"}, - "Nonprofit501f": {"@id": "schema:Nonprofit501f"}, - "Nonprofit501k": {"@id": "schema:Nonprofit501k"}, - "Nonprofit501n": {"@id": "schema:Nonprofit501n"}, - "Nonprofit501q": {"@id": "schema:Nonprofit501q"}, - "Nonprofit527": {"@id": "schema:Nonprofit527"}, - "NonprofitANBI": {"@id": "schema:NonprofitANBI"}, - "NonprofitSBBI": {"@id": "schema:NonprofitSBBI"}, - "NonprofitType": {"@id": "schema:NonprofitType"}, - "Nose": {"@id": "schema:Nose"}, - "NotInForce": {"@id": "schema:NotInForce"}, - "NotYetRecruiting": {"@id": "schema:NotYetRecruiting"}, - "Notary": {"@id": "schema:Notary"}, - "NoteDigitalDocument": {"@id": "schema:NoteDigitalDocument"}, - "Number": {"@id": "schema:Number"}, - "Nursing": {"@id": "schema:Nursing"}, - "NutritionInformation": {"@id": "schema:NutritionInformation"}, - "OTC": {"@id": "schema:OTC"}, - "Observation": {"@id": "schema:Observation"}, - "Observational": {"@id": "schema:Observational"}, - "Obstetric": {"@id": "schema:Obstetric"}, - "Occupation": {"@id": "schema:Occupation"}, - "OccupationalActivity": {"@id": "schema:OccupationalActivity"}, - "OccupationalTherapy": {"@id": "schema:OccupationalTherapy"}, - "OceanBodyOfWater": {"@id": "schema:OceanBodyOfWater"}, - "Offer": {"@id": "schema:Offer"}, - "OfferCatalog": {"@id": "schema:OfferCatalog"}, - "OfferForLease": {"@id": "schema:OfferForLease"}, - "OfferForPurchase": {"@id": "schema:OfferForPurchase"}, - "OfferItemCondition": {"@id": "schema:OfferItemCondition"}, - "OfferShippingDetails": {"@id": "schema:OfferShippingDetails"}, - "OfficeEquipmentStore": {"@id": "schema:OfficeEquipmentStore"}, - "OfficialLegalValue": {"@id": "schema:OfficialLegalValue"}, - "OfflineEventAttendanceMode": {"@id": "schema:OfflineEventAttendanceMode"}, - "OfflinePermanently": {"@id": "schema:OfflinePermanently"}, - "OfflineTemporarily": {"@id": "schema:OfflineTemporarily"}, - "OnDemandEvent": {"@id": "schema:OnDemandEvent"}, - "OnSitePickup": {"@id": "schema:OnSitePickup"}, - "Oncologic": {"@id": "schema:Oncologic"}, - "OneTimePayments": {"@id": "schema:OneTimePayments"}, - "Online": {"@id": "schema:Online"}, - "OnlineEventAttendanceMode": {"@id": "schema:OnlineEventAttendanceMode"}, - "OnlineFull": {"@id": "schema:OnlineFull"}, - "OnlineOnly": {"@id": "schema:OnlineOnly"}, - "OpenTrial": {"@id": "schema:OpenTrial"}, - "OpeningHoursSpecification": {"@id": "schema:OpeningHoursSpecification"}, - "OpinionNewsArticle": {"@id": "schema:OpinionNewsArticle"}, - "Optician": {"@id": "schema:Optician"}, - "Optometric": {"@id": "schema:Optometric"}, - "Order": {"@id": "schema:Order"}, - "OrderAction": {"@id": "schema:OrderAction"}, - "OrderCancelled": {"@id": "schema:OrderCancelled"}, - "OrderDelivered": {"@id": "schema:OrderDelivered"}, - "OrderInTransit": {"@id": "schema:OrderInTransit"}, - "OrderItem": {"@id": "schema:OrderItem"}, - "OrderPaymentDue": {"@id": "schema:OrderPaymentDue"}, - "OrderPickupAvailable": {"@id": "schema:OrderPickupAvailable"}, - "OrderProblem": {"@id": "schema:OrderProblem"}, - "OrderProcessing": {"@id": "schema:OrderProcessing"}, - "OrderReturned": {"@id": "schema:OrderReturned"}, - "OrderStatus": {"@id": "schema:OrderStatus"}, - "Organization": {"@id": "schema:Organization"}, - "OrganizationRole": {"@id": "schema:OrganizationRole"}, - "OrganizeAction": {"@id": "schema:OrganizeAction"}, - "OriginalShippingFees": {"@id": "schema:OriginalShippingFees"}, - "Osteopathic": {"@id": "schema:Osteopathic"}, - "Otolaryngologic": {"@id": "schema:Otolaryngologic"}, - "OutOfStock": {"@id": "schema:OutOfStock"}, - "OutletStore": {"@id": "schema:OutletStore"}, - "OverviewHealthAspect": {"@id": "schema:OverviewHealthAspect"}, - "OwnershipInfo": {"@id": "schema:OwnershipInfo"}, - "PET": {"@id": "schema:PET"}, - "PaidLeave": {"@id": "schema:PaidLeave"}, - "PaintAction": {"@id": "schema:PaintAction"}, - "Painting": {"@id": "schema:Painting"}, - "PalliativeProcedure": {"@id": "schema:PalliativeProcedure"}, - "Paperback": {"@id": "schema:Paperback"}, - "ParcelDelivery": {"@id": "schema:ParcelDelivery"}, - "ParcelService": {"@id": "schema:ParcelService"}, - "ParentAudience": {"@id": "schema:ParentAudience"}, - "ParentalSupport": {"@id": "schema:ParentalSupport"}, - "Park": {"@id": "schema:Park"}, - "ParkingFacility": {"@id": "schema:ParkingFacility"}, - "ParkingMap": {"@id": "schema:ParkingMap"}, - "PartiallyInForce": {"@id": "schema:PartiallyInForce"}, - "Pathology": {"@id": "schema:Pathology"}, - "PathologyTest": {"@id": "schema:PathologyTest"}, - "Patient": {"@id": "schema:Patient"}, - "PatientExperienceHealthAspect": {"@id": "schema:PatientExperienceHealthAspect"}, - "PawnShop": {"@id": "schema:PawnShop"}, - "PayAction": {"@id": "schema:PayAction"}, - "PaymentAutomaticallyApplied": {"@id": "schema:PaymentAutomaticallyApplied"}, - "PaymentCard": {"@id": "schema:PaymentCard"}, - "PaymentChargeSpecification": {"@id": "schema:PaymentChargeSpecification"}, - "PaymentComplete": {"@id": "schema:PaymentComplete"}, - "PaymentDeclined": {"@id": "schema:PaymentDeclined"}, - "PaymentDue": {"@id": "schema:PaymentDue"}, - "PaymentMethod": {"@id": "schema:PaymentMethod"}, - "PaymentPastDue": {"@id": "schema:PaymentPastDue"}, - "PaymentService": {"@id": "schema:PaymentService"}, - "PaymentStatusType": {"@id": "schema:PaymentStatusType"}, - "Pediatric": {"@id": "schema:Pediatric"}, - "PeopleAudience": {"@id": "schema:PeopleAudience"}, - "PercutaneousProcedure": {"@id": "schema:PercutaneousProcedure"}, - "PerformAction": {"@id": "schema:PerformAction"}, - "PerformanceRole": {"@id": "schema:PerformanceRole"}, - "PerformingArtsTheater": {"@id": "schema:PerformingArtsTheater"}, - "PerformingGroup": {"@id": "schema:PerformingGroup"}, - "Periodical": {"@id": "schema:Periodical"}, - "Permit": {"@id": "schema:Permit"}, - "Person": {"@id": "schema:Person"}, - "PetStore": {"@id": "schema:PetStore"}, - "Pharmacy": {"@id": "schema:Pharmacy"}, - "PharmacySpecialty": {"@id": "schema:PharmacySpecialty"}, - "Photograph": {"@id": "schema:Photograph"}, - "PhotographAction": {"@id": "schema:PhotographAction"}, - "PhysicalActivity": {"@id": "schema:PhysicalActivity"}, - "PhysicalActivityCategory": {"@id": "schema:PhysicalActivityCategory"}, - "PhysicalExam": {"@id": "schema:PhysicalExam"}, - "PhysicalTherapy": {"@id": "schema:PhysicalTherapy"}, - "Physician": {"@id": "schema:Physician"}, - "Physiotherapy": {"@id": "schema:Physiotherapy"}, - "Place": {"@id": "schema:Place"}, - "PlaceOfWorship": {"@id": "schema:PlaceOfWorship"}, - "PlaceboControlledTrial": {"@id": "schema:PlaceboControlledTrial"}, - "PlanAction": {"@id": "schema:PlanAction"}, - "PlasticSurgery": {"@id": "schema:PlasticSurgery"}, - "Play": {"@id": "schema:Play"}, - "PlayAction": {"@id": "schema:PlayAction"}, - "Playground": {"@id": "schema:Playground"}, - "Plumber": {"@id": "schema:Plumber"}, - "PodcastEpisode": {"@id": "schema:PodcastEpisode"}, - "PodcastSeason": {"@id": "schema:PodcastSeason"}, - "PodcastSeries": {"@id": "schema:PodcastSeries"}, - "Podiatric": {"@id": "schema:Podiatric"}, - "PoliceStation": {"@id": "schema:PoliceStation"}, - "Pond": {"@id": "schema:Pond"}, - "PostOffice": {"@id": "schema:PostOffice"}, - "PostalAddress": {"@id": "schema:PostalAddress"}, - "PostalCodeRangeSpecification": {"@id": "schema:PostalCodeRangeSpecification"}, - "Poster": {"@id": "schema:Poster"}, - "PotentialActionStatus": {"@id": "schema:PotentialActionStatus"}, - "PreOrder": {"@id": "schema:PreOrder"}, - "PreOrderAction": {"@id": "schema:PreOrderAction"}, - "PreSale": {"@id": "schema:PreSale"}, - "PrependAction": {"@id": "schema:PrependAction"}, - "Preschool": {"@id": "schema:Preschool"}, - "PrescriptionOnly": {"@id": "schema:PrescriptionOnly"}, - "PresentationDigitalDocument": {"@id": "schema:PresentationDigitalDocument"}, - "PreventionHealthAspect": {"@id": "schema:PreventionHealthAspect"}, - "PreventionIndication": {"@id": "schema:PreventionIndication"}, - "PriceSpecification": {"@id": "schema:PriceSpecification"}, - "PrimaryCare": {"@id": "schema:PrimaryCare"}, - "Prion": {"@id": "schema:Prion"}, - "Product": {"@id": "schema:Product"}, - "ProductCollection": {"@id": "schema:ProductCollection"}, - "ProductGroup": {"@id": "schema:ProductGroup"}, - "ProductModel": {"@id": "schema:ProductModel"}, - "ProductReturnEnumeration": {"@id": "schema:ProductReturnEnumeration"}, - "ProductReturnFiniteReturnWindow": {"@id": "schema:ProductReturnFiniteReturnWindow"}, - "ProductReturnNotPermitted": {"@id": "schema:ProductReturnNotPermitted"}, - "ProductReturnPolicy": {"@id": "schema:ProductReturnPolicy"}, - "ProductReturnUnlimitedWindow": {"@id": "schema:ProductReturnUnlimitedWindow"}, - "ProductReturnUnspecified": {"@id": "schema:ProductReturnUnspecified"}, - "ProfessionalService": {"@id": "schema:ProfessionalService"}, - "ProfilePage": {"@id": "schema:ProfilePage"}, - "PrognosisHealthAspect": {"@id": "schema:PrognosisHealthAspect"}, - "ProgramMembership": {"@id": "schema:ProgramMembership"}, - "Project": {"@id": "schema:Project"}, - "PronounceableText": {"@id": "schema:PronounceableText"}, - "Property": {"@id": "schema:Property"}, - "PropertyValue": {"@id": "schema:PropertyValue"}, - "PropertyValueSpecification": {"@id": "schema:PropertyValueSpecification"}, - "Protozoa": {"@id": "schema:Protozoa"}, - "Psychiatric": {"@id": "schema:Psychiatric"}, - "PsychologicalTreatment": {"@id": "schema:PsychologicalTreatment"}, - "PublicHealth": {"@id": "schema:PublicHealth"}, - "PublicHolidays": {"@id": "schema:PublicHolidays"}, - "PublicSwimmingPool": {"@id": "schema:PublicSwimmingPool"}, - "PublicToilet": {"@id": "schema:PublicToilet"}, - "PublicationEvent": {"@id": "schema:PublicationEvent"}, - "PublicationIssue": {"@id": "schema:PublicationIssue"}, - "PublicationVolume": {"@id": "schema:PublicationVolume"}, - "Pulmonary": {"@id": "schema:Pulmonary"}, - "QAPage": {"@id": "schema:QAPage"}, - "QualitativeValue": {"@id": "schema:QualitativeValue"}, - "QuantitativeValue": {"@id": "schema:QuantitativeValue"}, - "QuantitativeValueDistribution": {"@id": "schema:QuantitativeValueDistribution"}, - "Quantity": {"@id": "schema:Quantity"}, - "Question": {"@id": "schema:Question"}, - "Quiz": {"@id": "schema:Quiz"}, - "Quotation": {"@id": "schema:Quotation"}, - "QuoteAction": {"@id": "schema:QuoteAction"}, - "RVPark": {"@id": "schema:RVPark"}, - "RadiationTherapy": {"@id": "schema:RadiationTherapy"}, - "RadioBroadcastService": {"@id": "schema:RadioBroadcastService"}, - "RadioChannel": {"@id": "schema:RadioChannel"}, - "RadioClip": {"@id": "schema:RadioClip"}, - "RadioEpisode": {"@id": "schema:RadioEpisode"}, - "RadioSeason": {"@id": "schema:RadioSeason"}, - "RadioSeries": {"@id": "schema:RadioSeries"}, - "RadioStation": {"@id": "schema:RadioStation"}, - "Radiography": {"@id": "schema:Radiography"}, - "RandomizedTrial": {"@id": "schema:RandomizedTrial"}, - "Rating": {"@id": "schema:Rating"}, - "ReactAction": {"@id": "schema:ReactAction"}, - "ReadAction": {"@id": "schema:ReadAction"}, - "ReadPermission": {"@id": "schema:ReadPermission"}, - "RealEstateAgent": {"@id": "schema:RealEstateAgent"}, - "RealEstateListing": {"@id": "schema:RealEstateListing"}, - "RearWheelDriveConfiguration": {"@id": "schema:RearWheelDriveConfiguration"}, - "ReceiveAction": {"@id": "schema:ReceiveAction"}, - "Recipe": {"@id": "schema:Recipe"}, - "Recommendation": {"@id": "schema:Recommendation"}, - "RecommendedDoseSchedule": {"@id": "schema:RecommendedDoseSchedule"}, - "Recruiting": {"@id": "schema:Recruiting"}, - "RecyclingCenter": {"@id": "schema:RecyclingCenter"}, - "RefundTypeEnumeration": {"@id": "schema:RefundTypeEnumeration"}, - "RefurbishedCondition": {"@id": "schema:RefurbishedCondition"}, - "RegisterAction": {"@id": "schema:RegisterAction"}, - "Registry": {"@id": "schema:Registry"}, - "ReimbursementCap": {"@id": "schema:ReimbursementCap"}, - "RejectAction": {"@id": "schema:RejectAction"}, - "RelatedTopicsHealthAspect": {"@id": "schema:RelatedTopicsHealthAspect"}, - "RemixAlbum": {"@id": "schema:RemixAlbum"}, - "Renal": {"@id": "schema:Renal"}, - "RentAction": {"@id": "schema:RentAction"}, - "RentalCarReservation": {"@id": "schema:RentalCarReservation"}, - "RentalVehicleUsage": {"@id": "schema:RentalVehicleUsage"}, - "RepaymentSpecification": {"@id": "schema:RepaymentSpecification"}, - "ReplaceAction": {"@id": "schema:ReplaceAction"}, - "ReplyAction": {"@id": "schema:ReplyAction"}, - "Report": {"@id": "schema:Report"}, - "ReportageNewsArticle": {"@id": "schema:ReportageNewsArticle"}, - "ReportedDoseSchedule": {"@id": "schema:ReportedDoseSchedule"}, - "ResearchProject": {"@id": "schema:ResearchProject"}, - "Researcher": {"@id": "schema:Researcher"}, - "Reservation": {"@id": "schema:Reservation"}, - "ReservationCancelled": {"@id": "schema:ReservationCancelled"}, - "ReservationConfirmed": {"@id": "schema:ReservationConfirmed"}, - "ReservationHold": {"@id": "schema:ReservationHold"}, - "ReservationPackage": {"@id": "schema:ReservationPackage"}, - "ReservationPending": {"@id": "schema:ReservationPending"}, - "ReservationStatusType": {"@id": "schema:ReservationStatusType"}, - "ReserveAction": {"@id": "schema:ReserveAction"}, - "Reservoir": {"@id": "schema:Reservoir"}, - "Residence": {"@id": "schema:Residence"}, - "Resort": {"@id": "schema:Resort"}, - "RespiratoryTherapy": {"@id": "schema:RespiratoryTherapy"}, - "Restaurant": {"@id": "schema:Restaurant"}, - "RestockingFees": {"@id": "schema:RestockingFees"}, - "RestrictedDiet": {"@id": "schema:RestrictedDiet"}, - "ResultsAvailable": {"@id": "schema:ResultsAvailable"}, - "ResultsNotAvailable": {"@id": "schema:ResultsNotAvailable"}, - "ResumeAction": {"@id": "schema:ResumeAction"}, - "Retail": {"@id": "schema:Retail"}, - "ReturnAction": {"@id": "schema:ReturnAction"}, - "ReturnFeesEnumeration": {"@id": "schema:ReturnFeesEnumeration"}, - "ReturnShippingFees": {"@id": "schema:ReturnShippingFees"}, - "Review": {"@id": "schema:Review"}, - "ReviewAction": {"@id": "schema:ReviewAction"}, - "ReviewNewsArticle": {"@id": "schema:ReviewNewsArticle"}, - "Rheumatologic": {"@id": "schema:Rheumatologic"}, - "RightHandDriving": {"@id": "schema:RightHandDriving"}, - "RisksOrComplicationsHealthAspect": {"@id": "schema:RisksOrComplicationsHealthAspect"}, - "RiverBodyOfWater": {"@id": "schema:RiverBodyOfWater"}, - "Role": {"@id": "schema:Role"}, - "RoofingContractor": {"@id": "schema:RoofingContractor"}, - "Room": {"@id": "schema:Room"}, - "RsvpAction": {"@id": "schema:RsvpAction"}, - "RsvpResponseMaybe": {"@id": "schema:RsvpResponseMaybe"}, - "RsvpResponseNo": {"@id": "schema:RsvpResponseNo"}, - "RsvpResponseType": {"@id": "schema:RsvpResponseType"}, - "RsvpResponseYes": {"@id": "schema:RsvpResponseYes"}, - "SaleEvent": {"@id": "schema:SaleEvent"}, - "SatiricalArticle": {"@id": "schema:SatiricalArticle"}, - "Saturday": {"@id": "schema:Saturday"}, - "Schedule": {"@id": "schema:Schedule"}, - "ScheduleAction": {"@id": "schema:ScheduleAction"}, - "ScholarlyArticle": {"@id": "schema:ScholarlyArticle"}, - "School": {"@id": "schema:School"}, - "SchoolDistrict": {"@id": "schema:SchoolDistrict"}, - "ScreeningEvent": {"@id": "schema:ScreeningEvent"}, - "ScreeningHealthAspect": {"@id": "schema:ScreeningHealthAspect"}, - "Sculpture": {"@id": "schema:Sculpture"}, - "SeaBodyOfWater": {"@id": "schema:SeaBodyOfWater"}, - "SearchAction": {"@id": "schema:SearchAction"}, - "SearchResultsPage": {"@id": "schema:SearchResultsPage"}, - "Season": {"@id": "schema:Season"}, - "Seat": {"@id": "schema:Seat"}, - "SeatingMap": {"@id": "schema:SeatingMap"}, - "SeeDoctorHealthAspect": {"@id": "schema:SeeDoctorHealthAspect"}, - "SelfCareHealthAspect": {"@id": "schema:SelfCareHealthAspect"}, - "SelfStorage": {"@id": "schema:SelfStorage"}, - "SellAction": {"@id": "schema:SellAction"}, - "SendAction": {"@id": "schema:SendAction"}, - "Series": {"@id": "schema:Series"}, - "Service": {"@id": "schema:Service"}, - "ServiceChannel": {"@id": "schema:ServiceChannel"}, - "ShareAction": {"@id": "schema:ShareAction"}, - "SheetMusic": {"@id": "schema:SheetMusic"}, - "ShippingDeliveryTime": {"@id": "schema:ShippingDeliveryTime"}, - "ShippingRateSettings": {"@id": "schema:ShippingRateSettings"}, - "ShoeStore": {"@id": "schema:ShoeStore"}, - "ShoppingCenter": {"@id": "schema:ShoppingCenter"}, - "ShortStory": {"@id": "schema:ShortStory"}, - "SideEffectsHealthAspect": {"@id": "schema:SideEffectsHealthAspect"}, - "SingleBlindedTrial": {"@id": "schema:SingleBlindedTrial"}, - "SingleCenterTrial": {"@id": "schema:SingleCenterTrial"}, - "SingleFamilyResidence": {"@id": "schema:SingleFamilyResidence"}, - "SinglePlayer": {"@id": "schema:SinglePlayer"}, - "SingleRelease": {"@id": "schema:SingleRelease"}, - "SiteNavigationElement": {"@id": "schema:SiteNavigationElement"}, - "SkiResort": {"@id": "schema:SkiResort"}, - "Skin": {"@id": "schema:Skin"}, - "SocialEvent": {"@id": "schema:SocialEvent"}, - "SocialMediaPosting": {"@id": "schema:SocialMediaPosting"}, - "SoftwareApplication": {"@id": "schema:SoftwareApplication"}, - "SoftwareSourceCode": {"@id": "schema:SoftwareSourceCode"}, - "SoldOut": {"@id": "schema:SoldOut"}, - "SomeProducts": {"@id": "schema:SomeProducts"}, - "SoundtrackAlbum": {"@id": "schema:SoundtrackAlbum"}, - "SpeakableSpecification": {"@id": "schema:SpeakableSpecification"}, - "SpecialAnnouncement": {"@id": "schema:SpecialAnnouncement"}, - "Specialty": {"@id": "schema:Specialty"}, - "SpeechPathology": {"@id": "schema:SpeechPathology"}, - "SpokenWordAlbum": {"@id": "schema:SpokenWordAlbum"}, - "SportingGoodsStore": {"@id": "schema:SportingGoodsStore"}, - "SportsActivityLocation": {"@id": "schema:SportsActivityLocation"}, - "SportsClub": {"@id": "schema:SportsClub"}, - "SportsEvent": {"@id": "schema:SportsEvent"}, - "SportsOrganization": {"@id": "schema:SportsOrganization"}, - "SportsTeam": {"@id": "schema:SportsTeam"}, - "SpreadsheetDigitalDocument": {"@id": "schema:SpreadsheetDigitalDocument"}, - "StadiumOrArena": {"@id": "schema:StadiumOrArena"}, - "StagesHealthAspect": {"@id": "schema:StagesHealthAspect"}, - "State": {"@id": "schema:State"}, - "StatisticalPopulation": {"@id": "schema:StatisticalPopulation"}, - "StatusEnumeration": {"@id": "schema:StatusEnumeration"}, - "SteeringPositionValue": {"@id": "schema:SteeringPositionValue"}, - "Store": {"@id": "schema:Store"}, - "StoreCreditRefund": {"@id": "schema:StoreCreditRefund"}, - "StrengthTraining": {"@id": "schema:StrengthTraining"}, - "StructuredValue": {"@id": "schema:StructuredValue"}, - "StudioAlbum": {"@id": "schema:StudioAlbum"}, - "StupidType": {"@id": "schema:StupidType"}, - "SubscribeAction": {"@id": "schema:SubscribeAction"}, - "Substance": {"@id": "schema:Substance"}, - "SubwayStation": {"@id": "schema:SubwayStation"}, - "Suite": {"@id": "schema:Suite"}, - "Sunday": {"@id": "schema:Sunday"}, - "SuperficialAnatomy": {"@id": "schema:SuperficialAnatomy"}, - "Surgical": {"@id": "schema:Surgical"}, - "SurgicalProcedure": {"@id": "schema:SurgicalProcedure"}, - "SuspendAction": {"@id": "schema:SuspendAction"}, - "Suspended": {"@id": "schema:Suspended"}, - "SymptomsHealthAspect": {"@id": "schema:SymptomsHealthAspect"}, - "Synagogue": {"@id": "schema:Synagogue"}, - "TVClip": {"@id": "schema:TVClip"}, - "TVEpisode": {"@id": "schema:TVEpisode"}, - "TVSeason": {"@id": "schema:TVSeason"}, - "TVSeries": {"@id": "schema:TVSeries"}, - "Table": {"@id": "schema:Table"}, - "TakeAction": {"@id": "schema:TakeAction"}, - "TattooParlor": {"@id": "schema:TattooParlor"}, - "Taxi": {"@id": "schema:Taxi"}, - "TaxiReservation": {"@id": "schema:TaxiReservation"}, - "TaxiService": {"@id": "schema:TaxiService"}, - "TaxiStand": {"@id": "schema:TaxiStand"}, - "TaxiVehicleUsage": {"@id": "schema:TaxiVehicleUsage"}, - "TechArticle": {"@id": "schema:TechArticle"}, - "TelevisionChannel": {"@id": "schema:TelevisionChannel"}, - "TelevisionStation": {"@id": "schema:TelevisionStation"}, - "TennisComplex": {"@id": "schema:TennisComplex"}, - "Terminated": {"@id": "schema:Terminated"}, - "Text": {"@id": "schema:Text"}, - "TextDigitalDocument": {"@id": "schema:TextDigitalDocument"}, - "TheaterEvent": {"@id": "schema:TheaterEvent"}, - "TheaterGroup": {"@id": "schema:TheaterGroup"}, - "Therapeutic": {"@id": "schema:Therapeutic"}, - "TherapeuticProcedure": {"@id": "schema:TherapeuticProcedure"}, - "Thesis": {"@id": "schema:Thesis"}, - "Thing": {"@id": "schema:Thing"}, - "Throat": {"@id": "schema:Throat"}, - "Thursday": {"@id": "schema:Thursday"}, - "Ticket": {"@id": "schema:Ticket"}, - "TieAction": {"@id": "schema:TieAction"}, - "Time": {"@id": "schema:Time"}, - "TipAction": {"@id": "schema:TipAction"}, - "TireShop": {"@id": "schema:TireShop"}, - "TollFree": {"@id": "schema:TollFree"}, - "TouristAttraction": {"@id": "schema:TouristAttraction"}, - "TouristDestination": {"@id": "schema:TouristDestination"}, - "TouristInformationCenter": {"@id": "schema:TouristInformationCenter"}, - "TouristTrip": {"@id": "schema:TouristTrip"}, - "Toxicologic": {"@id": "schema:Toxicologic"}, - "ToyStore": {"@id": "schema:ToyStore"}, - "TrackAction": {"@id": "schema:TrackAction"}, - "TradeAction": {"@id": "schema:TradeAction"}, - "TraditionalChinese": {"@id": "schema:TraditionalChinese"}, - "TrainReservation": {"@id": "schema:TrainReservation"}, - "TrainStation": {"@id": "schema:TrainStation"}, - "TrainTrip": {"@id": "schema:TrainTrip"}, - "TransferAction": {"@id": "schema:TransferAction"}, - "TransitMap": {"@id": "schema:TransitMap"}, - "TravelAction": {"@id": "schema:TravelAction"}, - "TravelAgency": {"@id": "schema:TravelAgency"}, - "TreatmentIndication": {"@id": "schema:TreatmentIndication"}, - "TreatmentsHealthAspect": {"@id": "schema:TreatmentsHealthAspect"}, - "Trip": {"@id": "schema:Trip"}, - "TripleBlindedTrial": {"@id": "schema:TripleBlindedTrial"}, - "True": {"@id": "schema:True"}, - "Tuesday": {"@id": "schema:Tuesday"}, - "TypeAndQuantityNode": {"@id": "schema:TypeAndQuantityNode"}, - "TypesHealthAspect": {"@id": "schema:TypesHealthAspect"}, - "UKNonprofitType": {"@id": "schema:UKNonprofitType"}, - "UKTrust": {"@id": "schema:UKTrust"}, - "URL": {"@id": "schema:URL"}, - "USNonprofitType": {"@id": "schema:USNonprofitType"}, - "Ultrasound": {"@id": "schema:Ultrasound"}, - "UnRegisterAction": {"@id": "schema:UnRegisterAction"}, - "UnemploymentSupport": {"@id": "schema:UnemploymentSupport"}, - "UnincorporatedAssociationCharity": {"@id": "schema:UnincorporatedAssociationCharity"}, - "UnitPriceSpecification": {"@id": "schema:UnitPriceSpecification"}, - "UnofficialLegalValue": {"@id": "schema:UnofficialLegalValue"}, - "UpdateAction": {"@id": "schema:UpdateAction"}, - "Urologic": {"@id": "schema:Urologic"}, - "UsageOrScheduleHealthAspect": {"@id": "schema:UsageOrScheduleHealthAspect"}, - "UseAction": {"@id": "schema:UseAction"}, - "UsedCondition": {"@id": "schema:UsedCondition"}, - "UserBlocks": {"@id": "schema:UserBlocks"}, - "UserCheckins": {"@id": "schema:UserCheckins"}, - "UserComments": {"@id": "schema:UserComments"}, - "UserDownloads": {"@id": "schema:UserDownloads"}, - "UserInteraction": {"@id": "schema:UserInteraction"}, - "UserLikes": {"@id": "schema:UserLikes"}, - "UserPageVisits": {"@id": "schema:UserPageVisits"}, - "UserPlays": {"@id": "schema:UserPlays"}, - "UserPlusOnes": {"@id": "schema:UserPlusOnes"}, - "UserReview": {"@id": "schema:UserReview"}, - "UserTweets": {"@id": "schema:UserTweets"}, - "VeganDiet": {"@id": "schema:VeganDiet"}, - "VegetarianDiet": {"@id": "schema:VegetarianDiet"}, - "Vehicle": {"@id": "schema:Vehicle"}, - "Vein": {"@id": "schema:Vein"}, - "VenueMap": {"@id": "schema:VenueMap"}, - "Vessel": {"@id": "schema:Vessel"}, - "VeterinaryCare": {"@id": "schema:VeterinaryCare"}, - "VideoGallery": {"@id": "schema:VideoGallery"}, - "VideoGame": {"@id": "schema:VideoGame"}, - "VideoGameClip": {"@id": "schema:VideoGameClip"}, - "VideoGameSeries": {"@id": "schema:VideoGameSeries"}, - "VideoObject": {"@id": "schema:VideoObject"}, - "ViewAction": {"@id": "schema:ViewAction"}, - "VinylFormat": {"@id": "schema:VinylFormat"}, - "VirtualLocation": {"@id": "schema:VirtualLocation"}, - "Virus": {"@id": "schema:Virus"}, - "VisualArtsEvent": {"@id": "schema:VisualArtsEvent"}, - "VisualArtwork": {"@id": "schema:VisualArtwork"}, - "VitalSign": {"@id": "schema:VitalSign"}, - "Volcano": {"@id": "schema:Volcano"}, - "VoteAction": {"@id": "schema:VoteAction"}, - "WPAdBlock": {"@id": "schema:WPAdBlock"}, - "WPFooter": {"@id": "schema:WPFooter"}, - "WPHeader": {"@id": "schema:WPHeader"}, - "WPSideBar": {"@id": "schema:WPSideBar"}, - "WantAction": {"@id": "schema:WantAction"}, - "WarrantyPromise": {"@id": "schema:WarrantyPromise"}, - "WarrantyScope": {"@id": "schema:WarrantyScope"}, - "WatchAction": {"@id": "schema:WatchAction"}, - "Waterfall": {"@id": "schema:Waterfall"}, - "WearAction": {"@id": "schema:WearAction"}, - "WebAPI": {"@id": "schema:WebAPI"}, - "WebApplication": {"@id": "schema:WebApplication"}, - "WebContent": {"@id": "schema:WebContent"}, - "WebPage": {"@id": "schema:WebPage"}, - "WebPageElement": {"@id": "schema:WebPageElement"}, - "WebSite": {"@id": "schema:WebSite"}, - "Wednesday": {"@id": "schema:Wednesday"}, - "WesternConventional": {"@id": "schema:WesternConventional"}, - "Wholesale": {"@id": "schema:Wholesale"}, - "WholesaleStore": {"@id": "schema:WholesaleStore"}, - "WinAction": {"@id": "schema:WinAction"}, - "Winery": {"@id": "schema:Winery"}, - "Withdrawn": {"@id": "schema:Withdrawn"}, - "WorkBasedProgram": {"@id": "schema:WorkBasedProgram"}, - "WorkersUnion": {"@id": "schema:WorkersUnion"}, - "WriteAction": {"@id": "schema:WriteAction"}, - "WritePermission": {"@id": "schema:WritePermission"}, - "XPathType": {"@id": "schema:XPathType"}, - "XRay": {"@id": "schema:XRay"}, - "ZoneBoardingPolicy": {"@id": "schema:ZoneBoardingPolicy"}, - "Zoo": {"@id": "schema:Zoo"}, - "about": { "@id": "schema:about"}, - "abridged": { "@id": "schema:abridged"}, - "abstract": { "@id": "schema:abstract"}, - "accelerationTime": { "@id": "schema:accelerationTime"}, - "acceptedAnswer": { "@id": "schema:acceptedAnswer"}, - "acceptedOffer": { "@id": "schema:acceptedOffer"}, - "acceptedPaymentMethod": { "@id": "schema:acceptedPaymentMethod"}, - "acceptsReservations": { "@id": "schema:acceptsReservations"}, - "accessCode": { "@id": "schema:accessCode"}, - "accessMode": { "@id": "schema:accessMode"}, - "accessModeSufficient": { "@id": "schema:accessModeSufficient"}, - "accessibilityAPI": { "@id": "schema:accessibilityAPI"}, - "accessibilityControl": { "@id": "schema:accessibilityControl"}, - "accessibilityFeature": { "@id": "schema:accessibilityFeature"}, - "accessibilityHazard": { "@id": "schema:accessibilityHazard"}, - "accessibilitySummary": { "@id": "schema:accessibilitySummary"}, - "accommodationCategory": { "@id": "schema:accommodationCategory"}, - "accommodationFloorPlan": { "@id": "schema:accommodationFloorPlan"}, - "accountId": { "@id": "schema:accountId"}, - "accountMinimumInflow": { "@id": "schema:accountMinimumInflow"}, - "accountOverdraftLimit": { "@id": "schema:accountOverdraftLimit"}, - "accountablePerson": { "@id": "schema:accountablePerson"}, - "acquireLicensePage": { "@id": "schema:acquireLicensePage", "@type": "@id"}, - "acquiredFrom": { "@id": "schema:acquiredFrom"}, - "acrissCode": { "@id": "schema:acrissCode"}, - "actionAccessibilityRequirement": { "@id": "schema:actionAccessibilityRequirement"}, - "actionApplication": { "@id": "schema:actionApplication"}, - "actionOption": { "@id": "schema:actionOption"}, - "actionPlatform": { "@id": "schema:actionPlatform"}, - "actionStatus": { "@id": "schema:actionStatus"}, - "actionableFeedbackPolicy": { "@id": "schema:actionableFeedbackPolicy", "@type": "@id"}, - "activeIngredient": { "@id": "schema:activeIngredient"}, - "activityDuration": { "@id": "schema:activityDuration"}, - "activityFrequency": { "@id": "schema:activityFrequency"}, - "actor": { "@id": "schema:actor"}, - "actors": { "@id": "schema:actors"}, - "addOn": { "@id": "schema:addOn"}, - "additionalName": { "@id": "schema:additionalName"}, - "additionalNumberOfGuests": { "@id": "schema:additionalNumberOfGuests"}, - "additionalProperty": { "@id": "schema:additionalProperty"}, - "additionalType": { "@id": "schema:additionalType", "@type": "@id"}, - "additionalVariable": { "@id": "schema:additionalVariable"}, - "address": { "@id": "schema:address"}, - "addressCountry": { "@id": "schema:addressCountry"}, - "addressLocality": { "@id": "schema:addressLocality"}, - "addressRegion": { "@id": "schema:addressRegion"}, - "administrationRoute": { "@id": "schema:administrationRoute"}, - "advanceBookingRequirement": { "@id": "schema:advanceBookingRequirement"}, - "adverseOutcome": { "@id": "schema:adverseOutcome"}, - "affectedBy": { "@id": "schema:affectedBy"}, - "affiliation": { "@id": "schema:affiliation"}, - "afterMedia": { "@id": "schema:afterMedia", "@type": "@id"}, - "agent": { "@id": "schema:agent"}, - "aggregateRating": { "@id": "schema:aggregateRating"}, - "aircraft": { "@id": "schema:aircraft"}, - "album": { "@id": "schema:album"}, - "albumProductionType": { "@id": "schema:albumProductionType"}, - "albumRelease": { "@id": "schema:albumRelease"}, - "albumReleaseType": { "@id": "schema:albumReleaseType"}, - "albums": { "@id": "schema:albums"}, - "alcoholWarning": { "@id": "schema:alcoholWarning"}, - "algorithm": { "@id": "schema:algorithm"}, - "alignmentType": { "@id": "schema:alignmentType"}, - "alternateName": { "@id": "schema:alternateName"}, - "alternativeHeadline": { "@id": "schema:alternativeHeadline"}, - "alumni": { "@id": "schema:alumni"}, - "alumniOf": { "@id": "schema:alumniOf"}, - "amenityFeature": { "@id": "schema:amenityFeature"}, - "amount": { "@id": "schema:amount"}, - "amountOfThisGood": { "@id": "schema:amountOfThisGood"}, - "announcementLocation": { "@id": "schema:announcementLocation"}, - "annualPercentageRate": { "@id": "schema:annualPercentageRate"}, - "answerCount": { "@id": "schema:answerCount"}, - "answerExplanation": { "@id": "schema:answerExplanation"}, - "antagonist": { "@id": "schema:antagonist"}, - "appearance": { "@id": "schema:appearance"}, - "applicableLocation": { "@id": "schema:applicableLocation"}, - "applicantLocationRequirements": { "@id": "schema:applicantLocationRequirements"}, - "application": { "@id": "schema:application"}, - "applicationCategory": { "@id": "schema:applicationCategory"}, - "applicationContact": { "@id": "schema:applicationContact"}, - "applicationDeadline": { "@id": "schema:applicationDeadline", "@type": "Date"}, - "applicationStartDate": { "@id": "schema:applicationStartDate", "@type": "Date"}, - "applicationSubCategory": { "@id": "schema:applicationSubCategory"}, - "applicationSuite": { "@id": "schema:applicationSuite"}, - "appliesToDeliveryMethod": { "@id": "schema:appliesToDeliveryMethod"}, - "appliesToPaymentMethod": { "@id": "schema:appliesToPaymentMethod"}, - "archiveHeld": { "@id": "schema:archiveHeld"}, - "area": { "@id": "schema:area"}, - "areaServed": { "@id": "schema:areaServed"}, - "arrivalAirport": { "@id": "schema:arrivalAirport"}, - "arrivalBoatTerminal": { "@id": "schema:arrivalBoatTerminal"}, - "arrivalBusStop": { "@id": "schema:arrivalBusStop"}, - "arrivalGate": { "@id": "schema:arrivalGate"}, - "arrivalPlatform": { "@id": "schema:arrivalPlatform"}, - "arrivalStation": { "@id": "schema:arrivalStation"}, - "arrivalTerminal": { "@id": "schema:arrivalTerminal"}, - "arrivalTime": { "@id": "schema:arrivalTime", "@type": "DateTime"}, - "artEdition": { "@id": "schema:artEdition"}, - "artMedium": { "@id": "schema:artMedium"}, - "arterialBranch": { "@id": "schema:arterialBranch"}, - "artform": { "@id": "schema:artform"}, - "articleBody": { "@id": "schema:articleBody"}, - "articleSection": { "@id": "schema:articleSection"}, - "artist": { "@id": "schema:artist"}, - "artworkSurface": { "@id": "schema:artworkSurface"}, - "aspect": { "@id": "schema:aspect"}, - "assembly": { "@id": "schema:assembly"}, - "assemblyVersion": { "@id": "schema:assemblyVersion"}, - "assesses": { "@id": "schema:assesses"}, - "associatedAnatomy": { "@id": "schema:associatedAnatomy"}, - "associatedArticle": { "@id": "schema:associatedArticle"}, - "associatedMedia": { "@id": "schema:associatedMedia"}, - "associatedPathophysiology": { "@id": "schema:associatedPathophysiology"}, - "athlete": { "@id": "schema:athlete"}, - "attendee": { "@id": "schema:attendee"}, - "attendees": { "@id": "schema:attendees"}, - "audience": { "@id": "schema:audience"}, - "audienceType": { "@id": "schema:audienceType"}, - "audio": { "@id": "schema:audio"}, - "authenticator": { "@id": "schema:authenticator"}, - "author": { "@id": "schema:author"}, - "availability": { "@id": "schema:availability"}, - "availabilityEnds": { "@id": "schema:availabilityEnds", "@type": "Date"}, - "availabilityStarts": { "@id": "schema:availabilityStarts", "@type": "Date"}, - "availableAtOrFrom": { "@id": "schema:availableAtOrFrom"}, - "availableChannel": { "@id": "schema:availableChannel"}, - "availableDeliveryMethod": { "@id": "schema:availableDeliveryMethod"}, - "availableFrom": { "@id": "schema:availableFrom", "@type": "DateTime"}, - "availableIn": { "@id": "schema:availableIn"}, - "availableLanguage": { "@id": "schema:availableLanguage"}, - "availableOnDevice": { "@id": "schema:availableOnDevice"}, - "availableService": { "@id": "schema:availableService"}, - "availableStrength": { "@id": "schema:availableStrength"}, - "availableTest": { "@id": "schema:availableTest"}, - "availableThrough": { "@id": "schema:availableThrough", "@type": "DateTime"}, - "award": { "@id": "schema:award"}, - "awards": { "@id": "schema:awards"}, - "awayTeam": { "@id": "schema:awayTeam"}, - "backstory": { "@id": "schema:backstory"}, - "bankAccountType": { "@id": "schema:bankAccountType"}, - "baseSalary": { "@id": "schema:baseSalary"}, - "bccRecipient": { "@id": "schema:bccRecipient"}, - "bed": { "@id": "schema:bed"}, - "beforeMedia": { "@id": "schema:beforeMedia", "@type": "@id"}, - "beneficiaryBank": { "@id": "schema:beneficiaryBank"}, - "benefits": { "@id": "schema:benefits"}, - "benefitsSummaryUrl": { "@id": "schema:benefitsSummaryUrl", "@type": "@id"}, - "bestRating": { "@id": "schema:bestRating"}, - "billingAddress": { "@id": "schema:billingAddress"}, - "billingIncrement": { "@id": "schema:billingIncrement"}, - "billingPeriod": { "@id": "schema:billingPeriod"}, - "biomechnicalClass": { "@id": "schema:biomechnicalClass"}, - "birthDate": { "@id": "schema:birthDate", "@type": "Date"}, - "birthPlace": { "@id": "schema:birthPlace"}, - "bitrate": { "@id": "schema:bitrate"}, - "blogPost": { "@id": "schema:blogPost"}, - "blogPosts": { "@id": "schema:blogPosts"}, - "bloodSupply": { "@id": "schema:bloodSupply"}, - "boardingGroup": { "@id": "schema:boardingGroup"}, - "boardingPolicy": { "@id": "schema:boardingPolicy"}, - "bodyLocation": { "@id": "schema:bodyLocation"}, - "bodyType": { "@id": "schema:bodyType"}, - "bookEdition": { "@id": "schema:bookEdition"}, - "bookFormat": { "@id": "schema:bookFormat"}, - "bookingAgent": { "@id": "schema:bookingAgent"}, - "bookingTime": { "@id": "schema:bookingTime", "@type": "DateTime"}, - "borrower": { "@id": "schema:borrower"}, - "box": { "@id": "schema:box"}, - "branch": { "@id": "schema:branch"}, - "branchCode": { "@id": "schema:branchCode"}, - "branchOf": { "@id": "schema:branchOf"}, - "brand": { "@id": "schema:brand"}, - "breadcrumb": { "@id": "schema:breadcrumb"}, - "breastfeedingWarning": { "@id": "schema:breastfeedingWarning"}, - "broadcastAffiliateOf": { "@id": "schema:broadcastAffiliateOf"}, - "broadcastChannelId": { "@id": "schema:broadcastChannelId"}, - "broadcastDisplayName": { "@id": "schema:broadcastDisplayName"}, - "broadcastFrequency": { "@id": "schema:broadcastFrequency"}, - "broadcastFrequencyValue": { "@id": "schema:broadcastFrequencyValue"}, - "broadcastOfEvent": { "@id": "schema:broadcastOfEvent"}, - "broadcastServiceTier": { "@id": "schema:broadcastServiceTier"}, - "broadcastSignalModulation": { "@id": "schema:broadcastSignalModulation"}, - "broadcastSubChannel": { "@id": "schema:broadcastSubChannel"}, - "broadcastTimezone": { "@id": "schema:broadcastTimezone"}, - "broadcaster": { "@id": "schema:broadcaster"}, - "broker": { "@id": "schema:broker"}, - "browserRequirements": { "@id": "schema:browserRequirements"}, - "busName": { "@id": "schema:busName"}, - "busNumber": { "@id": "schema:busNumber"}, - "businessDays": { "@id": "schema:businessDays"}, - "businessFunction": { "@id": "schema:businessFunction"}, - "buyer": { "@id": "schema:buyer"}, - "byArtist": { "@id": "schema:byArtist"}, - "byDay": { "@id": "schema:byDay"}, - "byMonth": { "@id": "schema:byMonth"}, - "byMonthDay": { "@id": "schema:byMonthDay"}, - "byMonthWeek": { "@id": "schema:byMonthWeek"}, - "callSign": { "@id": "schema:callSign"}, - "calories": { "@id": "schema:calories"}, - "candidate": { "@id": "schema:candidate"}, - "caption": { "@id": "schema:caption"}, - "carbohydrateContent": { "@id": "schema:carbohydrateContent"}, - "cargoVolume": { "@id": "schema:cargoVolume"}, - "carrier": { "@id": "schema:carrier"}, - "carrierRequirements": { "@id": "schema:carrierRequirements"}, - "cashBack": { "@id": "schema:cashBack"}, - "catalog": { "@id": "schema:catalog"}, - "catalogNumber": { "@id": "schema:catalogNumber"}, - "category": { "@id": "schema:category"}, - "causeOf": { "@id": "schema:causeOf"}, - "ccRecipient": { "@id": "schema:ccRecipient"}, - "character": { "@id": "schema:character"}, - "characterAttribute": { "@id": "schema:characterAttribute"}, - "characterName": { "@id": "schema:characterName"}, - "cheatCode": { "@id": "schema:cheatCode"}, - "checkinTime": { "@id": "schema:checkinTime", "@type": "DateTime"}, - "checkoutTime": { "@id": "schema:checkoutTime", "@type": "DateTime"}, - "childMaxAge": { "@id": "schema:childMaxAge"}, - "childMinAge": { "@id": "schema:childMinAge"}, - "children": { "@id": "schema:children"}, - "cholesterolContent": { "@id": "schema:cholesterolContent"}, - "circle": { "@id": "schema:circle"}, - "citation": { "@id": "schema:citation"}, - "claimReviewed": { "@id": "schema:claimReviewed"}, - "clincalPharmacology": { "@id": "schema:clincalPharmacology"}, - "clinicalPharmacology": { "@id": "schema:clinicalPharmacology"}, - "clipNumber": { "@id": "schema:clipNumber"}, - "closes": { "@id": "schema:closes"}, - "coach": { "@id": "schema:coach"}, - "code": { "@id": "schema:code"}, - "codeRepository": { "@id": "schema:codeRepository", "@type": "@id"}, - "codeSampleType": { "@id": "schema:codeSampleType"}, - "codeValue": { "@id": "schema:codeValue"}, - "codingSystem": { "@id": "schema:codingSystem"}, - "colleague": { "@id": "schema:colleague", "@type": "@id"}, - "colleagues": { "@id": "schema:colleagues"}, - "collection": { "@id": "schema:collection"}, - "collectionSize": { "@id": "schema:collectionSize"}, - "color": { "@id": "schema:color"}, - "colorist": { "@id": "schema:colorist"}, - "comment": { "@id": "schema:comment"}, - "commentCount": { "@id": "schema:commentCount"}, - "commentText": { "@id": "schema:commentText"}, - "commentTime": { "@id": "schema:commentTime", "@type": "Date"}, - "competencyRequired": { "@id": "schema:competencyRequired"}, - "competitor": { "@id": "schema:competitor"}, - "composer": { "@id": "schema:composer"}, - "comprisedOf": { "@id": "schema:comprisedOf"}, - "conditionsOfAccess": { "@id": "schema:conditionsOfAccess"}, - "confirmationNumber": { "@id": "schema:confirmationNumber"}, - "connectedTo": { "@id": "schema:connectedTo"}, - "constrainingProperty": { "@id": "schema:constrainingProperty"}, - "contactOption": { "@id": "schema:contactOption"}, - "contactPoint": { "@id": "schema:contactPoint"}, - "contactPoints": { "@id": "schema:contactPoints"}, - "contactType": { "@id": "schema:contactType"}, - "contactlessPayment": { "@id": "schema:contactlessPayment"}, - "containedIn": { "@id": "schema:containedIn"}, - "containedInPlace": { "@id": "schema:containedInPlace"}, - "containsPlace": { "@id": "schema:containsPlace"}, - "containsSeason": { "@id": "schema:containsSeason"}, - "contentLocation": { "@id": "schema:contentLocation"}, - "contentRating": { "@id": "schema:contentRating"}, - "contentReferenceTime": { "@id": "schema:contentReferenceTime", "@type": "DateTime"}, - "contentSize": { "@id": "schema:contentSize"}, - "contentType": { "@id": "schema:contentType"}, - "contentUrl": { "@id": "schema:contentUrl", "@type": "@id"}, - "contraindication": { "@id": "schema:contraindication"}, - "contributor": { "@id": "schema:contributor"}, - "cookTime": { "@id": "schema:cookTime"}, - "cookingMethod": { "@id": "schema:cookingMethod"}, - "copyrightHolder": { "@id": "schema:copyrightHolder"}, - "copyrightYear": { "@id": "schema:copyrightYear"}, - "correction": { "@id": "schema:correction"}, - "correctionsPolicy": { "@id": "schema:correctionsPolicy", "@type": "@id"}, - "costCategory": { "@id": "schema:costCategory"}, - "costCurrency": { "@id": "schema:costCurrency"}, - "costOrigin": { "@id": "schema:costOrigin"}, - "costPerUnit": { "@id": "schema:costPerUnit"}, - "countriesNotSupported": { "@id": "schema:countriesNotSupported"}, - "countriesSupported": { "@id": "schema:countriesSupported"}, - "countryOfOrigin": { "@id": "schema:countryOfOrigin"}, - "course": { "@id": "schema:course"}, - "courseCode": { "@id": "schema:courseCode"}, - "courseMode": { "@id": "schema:courseMode"}, - "coursePrerequisites": { "@id": "schema:coursePrerequisites"}, - "courseWorkload": { "@id": "schema:courseWorkload"}, - "coverageEndTime": { "@id": "schema:coverageEndTime", "@type": "DateTime"}, - "coverageStartTime": { "@id": "schema:coverageStartTime", "@type": "DateTime"}, - "creativeWorkStatus": { "@id": "schema:creativeWorkStatus"}, - "creator": { "@id": "schema:creator"}, - "credentialCategory": { "@id": "schema:credentialCategory"}, - "creditedTo": { "@id": "schema:creditedTo"}, - "cssSelector": { "@id": "schema:cssSelector"}, - "currenciesAccepted": { "@id": "schema:currenciesAccepted"}, - "currency": { "@id": "schema:currency"}, - "currentExchangeRate": { "@id": "schema:currentExchangeRate"}, - "customer": { "@id": "schema:customer"}, - "cutoffTime": { "@id": "schema:cutoffTime"}, - "cvdCollectionDate": { "@id": "schema:cvdCollectionDate"}, - "cvdFacilityCounty": { "@id": "schema:cvdFacilityCounty"}, - "cvdFacilityId": { "@id": "schema:cvdFacilityId"}, - "cvdNumBeds": { "@id": "schema:cvdNumBeds"}, - "cvdNumBedsOcc": { "@id": "schema:cvdNumBedsOcc"}, - "cvdNumC19Died": { "@id": "schema:cvdNumC19Died"}, - "cvdNumC19HOPats": { "@id": "schema:cvdNumC19HOPats"}, - "cvdNumC19HospPats": { "@id": "schema:cvdNumC19HospPats"}, - "cvdNumC19MechVentPats": { "@id": "schema:cvdNumC19MechVentPats"}, - "cvdNumC19OFMechVentPats": { "@id": "schema:cvdNumC19OFMechVentPats"}, - "cvdNumC19OverflowPats": { "@id": "schema:cvdNumC19OverflowPats"}, - "cvdNumICUBeds": { "@id": "schema:cvdNumICUBeds"}, - "cvdNumICUBedsOcc": { "@id": "schema:cvdNumICUBedsOcc"}, - "cvdNumTotBeds": { "@id": "schema:cvdNumTotBeds"}, - "cvdNumVent": { "@id": "schema:cvdNumVent"}, - "cvdNumVentUse": { "@id": "schema:cvdNumVentUse"}, - "dataFeedElement": { "@id": "schema:dataFeedElement"}, - "dataset": { "@id": "schema:dataset"}, - "datasetTimeInterval": { "@id": "schema:datasetTimeInterval", "@type": "DateTime"}, - "dateCreated": { "@id": "schema:dateCreated", "@type": "Date"}, - "dateDeleted": { "@id": "schema:dateDeleted", "@type": "Date"}, - "dateIssued": { "@id": "schema:dateIssued", "@type": "Date"}, - "dateModified": { "@id": "schema:dateModified", "@type": "Date"}, - "datePosted": { "@id": "schema:datePosted", "@type": "Date"}, - "datePublished": { "@id": "schema:datePublished", "@type": "Date"}, - "dateRead": { "@id": "schema:dateRead", "@type": "Date"}, - "dateReceived": { "@id": "schema:dateReceived", "@type": "DateTime"}, - "dateSent": { "@id": "schema:dateSent", "@type": "DateTime"}, - "dateVehicleFirstRegistered": { "@id": "schema:dateVehicleFirstRegistered", "@type": "Date"}, - "dateline": { "@id": "schema:dateline"}, - "dayOfWeek": { "@id": "schema:dayOfWeek"}, - "deathDate": { "@id": "schema:deathDate", "@type": "Date"}, - "deathPlace": { "@id": "schema:deathPlace"}, - "defaultValue": { "@id": "schema:defaultValue"}, - "deliveryAddress": { "@id": "schema:deliveryAddress"}, - "deliveryLeadTime": { "@id": "schema:deliveryLeadTime"}, - "deliveryMethod": { "@id": "schema:deliveryMethod"}, - "deliveryStatus": { "@id": "schema:deliveryStatus"}, - "deliveryTime": { "@id": "schema:deliveryTime"}, - "department": { "@id": "schema:department"}, - "departureAirport": { "@id": "schema:departureAirport"}, - "departureBoatTerminal": { "@id": "schema:departureBoatTerminal"}, - "departureBusStop": { "@id": "schema:departureBusStop"}, - "departureGate": { "@id": "schema:departureGate"}, - "departurePlatform": { "@id": "schema:departurePlatform"}, - "departureStation": { "@id": "schema:departureStation"}, - "departureTerminal": { "@id": "schema:departureTerminal"}, - "departureTime": { "@id": "schema:departureTime", "@type": "DateTime"}, - "dependencies": { "@id": "schema:dependencies"}, - "depth": { "@id": "schema:depth"}, - "description": { "@id": "schema:description"}, - "device": { "@id": "schema:device"}, - "diagnosis": { "@id": "schema:diagnosis"}, - "diagram": { "@id": "schema:diagram"}, - "diet": { "@id": "schema:diet"}, - "dietFeatures": { "@id": "schema:dietFeatures"}, - "differentialDiagnosis": { "@id": "schema:differentialDiagnosis"}, - "director": { "@id": "schema:director"}, - "directors": { "@id": "schema:directors"}, - "disambiguatingDescription": { "@id": "schema:disambiguatingDescription"}, - "discount": { "@id": "schema:discount"}, - "discountCode": { "@id": "schema:discountCode"}, - "discountCurrency": { "@id": "schema:discountCurrency"}, - "discusses": { "@id": "schema:discusses"}, - "discussionUrl": { "@id": "schema:discussionUrl", "@type": "@id"}, - "diseasePreventionInfo": { "@id": "schema:diseasePreventionInfo", "@type": "@id"}, - "diseaseSpreadStatistics": { "@id": "schema:diseaseSpreadStatistics", "@type": "@id"}, - "dissolutionDate": { "@id": "schema:dissolutionDate", "@type": "Date"}, - "distance": { "@id": "schema:distance"}, - "distinguishingSign": { "@id": "schema:distinguishingSign"}, - "distribution": { "@id": "schema:distribution"}, - "diversityPolicy": { "@id": "schema:diversityPolicy", "@type": "@id"}, - "diversityStaffingReport": { "@id": "schema:diversityStaffingReport", "@type": "@id"}, - "documentation": { "@id": "schema:documentation", "@type": "@id"}, - "doesNotShip": { "@id": "schema:doesNotShip"}, - "domainIncludes": { "@id": "schema:domainIncludes"}, - "domiciledMortgage": { "@id": "schema:domiciledMortgage"}, - "doorTime": { "@id": "schema:doorTime", "@type": "DateTime"}, - "dosageForm": { "@id": "schema:dosageForm"}, - "doseSchedule": { "@id": "schema:doseSchedule"}, - "doseUnit": { "@id": "schema:doseUnit"}, - "doseValue": { "@id": "schema:doseValue"}, - "downPayment": { "@id": "schema:downPayment"}, - "downloadUrl": { "@id": "schema:downloadUrl", "@type": "@id"}, - "downvoteCount": { "@id": "schema:downvoteCount"}, - "drainsTo": { "@id": "schema:drainsTo"}, - "driveWheelConfiguration": { "@id": "schema:driveWheelConfiguration"}, - "dropoffLocation": { "@id": "schema:dropoffLocation"}, - "dropoffTime": { "@id": "schema:dropoffTime", "@type": "DateTime"}, - "drug": { "@id": "schema:drug"}, - "drugClass": { "@id": "schema:drugClass"}, - "drugUnit": { "@id": "schema:drugUnit"}, - "duns": { "@id": "schema:duns"}, - "duplicateTherapy": { "@id": "schema:duplicateTherapy"}, - "duration": { "@id": "schema:duration"}, - "durationOfWarranty": { "@id": "schema:durationOfWarranty"}, - "duringMedia": { "@id": "schema:duringMedia", "@type": "@id"}, - "earlyPrepaymentPenalty": { "@id": "schema:earlyPrepaymentPenalty"}, - "editEIDR": { "@id": "schema:editEIDR"}, - "editor": { "@id": "schema:editor"}, - "eduQuestionType": { "@id": "schema:eduQuestionType"}, - "educationRequirements": { "@id": "schema:educationRequirements"}, - "educationalAlignment": { "@id": "schema:educationalAlignment"}, - "educationalCredentialAwarded": { "@id": "schema:educationalCredentialAwarded"}, - "educationalFramework": { "@id": "schema:educationalFramework"}, - "educationalLevel": { "@id": "schema:educationalLevel"}, - "educationalProgramMode": { "@id": "schema:educationalProgramMode"}, - "educationalRole": { "@id": "schema:educationalRole"}, - "educationalUse": { "@id": "schema:educationalUse"}, - "elevation": { "@id": "schema:elevation"}, - "eligibilityToWorkRequirement": { "@id": "schema:eligibilityToWorkRequirement"}, - "eligibleCustomerType": { "@id": "schema:eligibleCustomerType"}, - "eligibleDuration": { "@id": "schema:eligibleDuration"}, - "eligibleQuantity": { "@id": "schema:eligibleQuantity"}, - "eligibleRegion": { "@id": "schema:eligibleRegion"}, - "eligibleTransactionVolume": { "@id": "schema:eligibleTransactionVolume"}, - "email": { "@id": "schema:email"}, - "embedUrl": { "@id": "schema:embedUrl", "@type": "@id"}, - "emissionsCO2": { "@id": "schema:emissionsCO2"}, - "employee": { "@id": "schema:employee"}, - "employees": { "@id": "schema:employees"}, - "employerOverview": { "@id": "schema:employerOverview"}, - "employmentType": { "@id": "schema:employmentType"}, - "employmentUnit": { "@id": "schema:employmentUnit"}, - "encodesCreativeWork": { "@id": "schema:encodesCreativeWork"}, - "encoding": { "@id": "schema:encoding"}, - "encodingFormat": { "@id": "schema:encodingFormat"}, - "encodingType": { "@id": "schema:encodingType"}, - "encodings": { "@id": "schema:encodings"}, - "endDate": { "@id": "schema:endDate", "@type": "Date"}, - "endOffset": { "@id": "schema:endOffset"}, - "endTime": { "@id": "schema:endTime", "@type": "DateTime"}, - "endorsee": { "@id": "schema:endorsee"}, - "endorsers": { "@id": "schema:endorsers"}, - "energyEfficiencyScaleMax": { "@id": "schema:energyEfficiencyScaleMax"}, - "energyEfficiencyScaleMin": { "@id": "schema:energyEfficiencyScaleMin"}, - "engineDisplacement": { "@id": "schema:engineDisplacement"}, - "enginePower": { "@id": "schema:enginePower"}, - "engineType": { "@id": "schema:engineType"}, - "entertainmentBusiness": { "@id": "schema:entertainmentBusiness"}, - "epidemiology": { "@id": "schema:epidemiology"}, - "episode": { "@id": "schema:episode"}, - "episodeNumber": { "@id": "schema:episodeNumber"}, - "episodes": { "@id": "schema:episodes"}, - "equal": { "@id": "schema:equal"}, - "error": { "@id": "schema:error"}, - "estimatedCost": { "@id": "schema:estimatedCost"}, - "estimatedFlightDuration": { "@id": "schema:estimatedFlightDuration"}, - "estimatedSalary": { "@id": "schema:estimatedSalary"}, - "estimatesRiskOf": { "@id": "schema:estimatesRiskOf"}, - "ethicsPolicy": { "@id": "schema:ethicsPolicy", "@type": "@id"}, - "event": { "@id": "schema:event"}, - "eventAttendanceMode": { "@id": "schema:eventAttendanceMode"}, - "eventSchedule": { "@id": "schema:eventSchedule"}, - "eventStatus": { "@id": "schema:eventStatus"}, - "events": { "@id": "schema:events"}, - "evidenceLevel": { "@id": "schema:evidenceLevel"}, - "evidenceOrigin": { "@id": "schema:evidenceOrigin"}, - "exampleOfWork": { "@id": "schema:exampleOfWork"}, - "exceptDate": { "@id": "schema:exceptDate", "@type": "Date"}, - "exchangeRateSpread": { "@id": "schema:exchangeRateSpread"}, - "executableLibraryName": { "@id": "schema:executableLibraryName"}, - "exerciseCourse": { "@id": "schema:exerciseCourse"}, - "exercisePlan": { "@id": "schema:exercisePlan"}, - "exerciseRelatedDiet": { "@id": "schema:exerciseRelatedDiet"}, - "exerciseType": { "@id": "schema:exerciseType"}, - "exifData": { "@id": "schema:exifData"}, - "expectedArrivalFrom": { "@id": "schema:expectedArrivalFrom", "@type": "Date"}, - "expectedArrivalUntil": { "@id": "schema:expectedArrivalUntil", "@type": "Date"}, - "expectedPrognosis": { "@id": "schema:expectedPrognosis"}, - "expectsAcceptanceOf": { "@id": "schema:expectsAcceptanceOf"}, - "experienceRequirements": { "@id": "schema:experienceRequirements"}, - "expertConsiderations": { "@id": "schema:expertConsiderations"}, - "expires": { "@id": "schema:expires", "@type": "Date"}, - "familyName": { "@id": "schema:familyName"}, - "fatContent": { "@id": "schema:fatContent"}, - "faxNumber": { "@id": "schema:faxNumber"}, - "featureList": { "@id": "schema:featureList"}, - "feesAndCommissionsSpecification": { "@id": "schema:feesAndCommissionsSpecification"}, - "fiberContent": { "@id": "schema:fiberContent"}, - "fileFormat": { "@id": "schema:fileFormat"}, - "fileSize": { "@id": "schema:fileSize"}, - "financialAidEligible": { "@id": "schema:financialAidEligible"}, - "firstAppearance": { "@id": "schema:firstAppearance"}, - "firstPerformance": { "@id": "schema:firstPerformance"}, - "flightDistance": { "@id": "schema:flightDistance"}, - "flightNumber": { "@id": "schema:flightNumber"}, - "floorLevel": { "@id": "schema:floorLevel"}, - "floorLimit": { "@id": "schema:floorLimit"}, - "floorSize": { "@id": "schema:floorSize"}, - "followee": { "@id": "schema:followee"}, - "follows": { "@id": "schema:follows"}, - "followup": { "@id": "schema:followup"}, - "foodEstablishment": { "@id": "schema:foodEstablishment"}, - "foodEvent": { "@id": "schema:foodEvent"}, - "foodWarning": { "@id": "schema:foodWarning"}, - "founder": { "@id": "schema:founder"}, - "founders": { "@id": "schema:founders"}, - "foundingDate": { "@id": "schema:foundingDate", "@type": "Date"}, - "foundingLocation": { "@id": "schema:foundingLocation"}, - "free": { "@id": "schema:free"}, - "freeShippingThreshold": { "@id": "schema:freeShippingThreshold"}, - "frequency": { "@id": "schema:frequency"}, - "fromLocation": { "@id": "schema:fromLocation"}, - "fuelCapacity": { "@id": "schema:fuelCapacity"}, - "fuelConsumption": { "@id": "schema:fuelConsumption"}, - "fuelEfficiency": { "@id": "schema:fuelEfficiency"}, - "fuelType": { "@id": "schema:fuelType"}, - "functionalClass": { "@id": "schema:functionalClass"}, - "fundedItem": { "@id": "schema:fundedItem"}, - "funder": { "@id": "schema:funder"}, - "game": { "@id": "schema:game"}, - "gameItem": { "@id": "schema:gameItem"}, - "gameLocation": { "@id": "schema:gameLocation", "@type": "@id"}, - "gamePlatform": { "@id": "schema:gamePlatform"}, - "gameServer": { "@id": "schema:gameServer"}, - "gameTip": { "@id": "schema:gameTip"}, - "gender": { "@id": "schema:gender"}, - "genre": { "@id": "schema:genre"}, - "geo": { "@id": "schema:geo"}, - "geoContains": { "@id": "schema:geoContains"}, - "geoCoveredBy": { "@id": "schema:geoCoveredBy"}, - "geoCovers": { "@id": "schema:geoCovers"}, - "geoCrosses": { "@id": "schema:geoCrosses"}, - "geoDisjoint": { "@id": "schema:geoDisjoint"}, - "geoEquals": { "@id": "schema:geoEquals"}, - "geoIntersects": { "@id": "schema:geoIntersects"}, - "geoMidpoint": { "@id": "schema:geoMidpoint"}, - "geoOverlaps": { "@id": "schema:geoOverlaps"}, - "geoRadius": { "@id": "schema:geoRadius"}, - "geoTouches": { "@id": "schema:geoTouches"}, - "geoWithin": { "@id": "schema:geoWithin"}, - "geographicArea": { "@id": "schema:geographicArea"}, - "gettingTestedInfo": { "@id": "schema:gettingTestedInfo", "@type": "@id"}, - "givenName": { "@id": "schema:givenName"}, - "globalLocationNumber": { "@id": "schema:globalLocationNumber"}, - "governmentBenefitsInfo": { "@id": "schema:governmentBenefitsInfo"}, - "gracePeriod": { "@id": "schema:gracePeriod"}, - "grantee": { "@id": "schema:grantee"}, - "greater": { "@id": "schema:greater"}, - "greaterOrEqual": { "@id": "schema:greaterOrEqual"}, - "gtin": { "@id": "schema:gtin"}, - "gtin12": { "@id": "schema:gtin12"}, - "gtin13": { "@id": "schema:gtin13"}, - "gtin14": { "@id": "schema:gtin14"}, - "gtin8": { "@id": "schema:gtin8"}, - "guideline": { "@id": "schema:guideline"}, - "guidelineDate": { "@id": "schema:guidelineDate", "@type": "Date"}, - "guidelineSubject": { "@id": "schema:guidelineSubject"}, - "handlingTime": { "@id": "schema:handlingTime"}, - "hasBroadcastChannel": { "@id": "schema:hasBroadcastChannel"}, - "hasCategoryCode": { "@id": "schema:hasCategoryCode"}, - "hasCourse": { "@id": "schema:hasCourse"}, - "hasCourseInstance": { "@id": "schema:hasCourseInstance"}, - "hasCredential": { "@id": "schema:hasCredential"}, - "hasDefinedTerm": { "@id": "schema:hasDefinedTerm"}, - "hasDeliveryMethod": { "@id": "schema:hasDeliveryMethod"}, - "hasDigitalDocumentPermission": { "@id": "schema:hasDigitalDocumentPermission"}, - "hasDriveThroughService": { "@id": "schema:hasDriveThroughService"}, - "hasEnergyConsumptionDetails": { "@id": "schema:hasEnergyConsumptionDetails"}, - "hasEnergyEfficiencyCategory": { "@id": "schema:hasEnergyEfficiencyCategory"}, - "hasHealthAspect": { "@id": "schema:hasHealthAspect"}, - "hasMap": { "@id": "schema:hasMap", "@type": "@id"}, - "hasMenu": { "@id": "schema:hasMenu"}, - "hasMenuItem": { "@id": "schema:hasMenuItem"}, - "hasMenuSection": { "@id": "schema:hasMenuSection"}, - "hasMerchantReturnPolicy": { "@id": "schema:hasMerchantReturnPolicy"}, - "hasOccupation": { "@id": "schema:hasOccupation"}, - "hasOfferCatalog": { "@id": "schema:hasOfferCatalog"}, - "hasPOS": { "@id": "schema:hasPOS"}, - "hasPart": { "@id": "schema:hasPart"}, - "hasProductReturnPolicy": { "@id": "schema:hasProductReturnPolicy"}, - "hasVariant": { "@id": "schema:hasVariant"}, - "headline": { "@id": "schema:headline"}, - "healthCondition": { "@id": "schema:healthCondition"}, - "healthPlanCoinsuranceOption": { "@id": "schema:healthPlanCoinsuranceOption"}, - "healthPlanCoinsuranceRate": { "@id": "schema:healthPlanCoinsuranceRate"}, - "healthPlanCopay": { "@id": "schema:healthPlanCopay"}, - "healthPlanCopayOption": { "@id": "schema:healthPlanCopayOption"}, - "healthPlanCostSharing": { "@id": "schema:healthPlanCostSharing"}, - "healthPlanDrugOption": { "@id": "schema:healthPlanDrugOption"}, - "healthPlanDrugTier": { "@id": "schema:healthPlanDrugTier"}, - "healthPlanId": { "@id": "schema:healthPlanId"}, - "healthPlanMarketingUrl": { "@id": "schema:healthPlanMarketingUrl", "@type": "@id"}, - "healthPlanNetworkId": { "@id": "schema:healthPlanNetworkId"}, - "healthPlanNetworkTier": { "@id": "schema:healthPlanNetworkTier"}, - "healthPlanPharmacyCategory": { "@id": "schema:healthPlanPharmacyCategory"}, - "healthcareReportingData": { "@id": "schema:healthcareReportingData"}, - "height": { "@id": "schema:height"}, - "highPrice": { "@id": "schema:highPrice"}, - "hiringOrganization": { "@id": "schema:hiringOrganization"}, - "holdingArchive": { "@id": "schema:holdingArchive"}, - "homeLocation": { "@id": "schema:homeLocation"}, - "homeTeam": { "@id": "schema:homeTeam"}, - "honorificPrefix": { "@id": "schema:honorificPrefix"}, - "honorificSuffix": { "@id": "schema:honorificSuffix"}, - "hospitalAffiliation": { "@id": "schema:hospitalAffiliation"}, - "hostingOrganization": { "@id": "schema:hostingOrganization"}, - "hoursAvailable": { "@id": "schema:hoursAvailable"}, - "howPerformed": { "@id": "schema:howPerformed"}, - "iataCode": { "@id": "schema:iataCode"}, - "icaoCode": { "@id": "schema:icaoCode"}, - "identifier": { "@id": "schema:identifier"}, - "identifyingExam": { "@id": "schema:identifyingExam"}, - "identifyingTest": { "@id": "schema:identifyingTest"}, - "illustrator": { "@id": "schema:illustrator"}, - "image": { "@id": "schema:image", "@type": "@id"}, - "imagingTechnique": { "@id": "schema:imagingTechnique"}, - "inAlbum": { "@id": "schema:inAlbum"}, - "inBroadcastLineup": { "@id": "schema:inBroadcastLineup"}, - "inCodeSet": { "@id": "schema:inCodeSet", "@type": "@id"}, - "inDefinedTermSet": { "@id": "schema:inDefinedTermSet", "@type": "@id"}, - "inLanguage": { "@id": "schema:inLanguage"}, - "inPlaylist": { "@id": "schema:inPlaylist"}, - "inProductGroupWithID": { "@id": "schema:inProductGroupWithID"}, - "inStoreReturnsOffered": { "@id": "schema:inStoreReturnsOffered"}, - "inSupportOf": { "@id": "schema:inSupportOf"}, - "incentiveCompensation": { "@id": "schema:incentiveCompensation"}, - "incentives": { "@id": "schema:incentives"}, - "includedComposition": { "@id": "schema:includedComposition"}, - "includedDataCatalog": { "@id": "schema:includedDataCatalog"}, - "includedInDataCatalog": { "@id": "schema:includedInDataCatalog"}, - "includedInHealthInsurancePlan": { "@id": "schema:includedInHealthInsurancePlan"}, - "includedRiskFactor": { "@id": "schema:includedRiskFactor"}, - "includesAttraction": { "@id": "schema:includesAttraction"}, - "includesHealthPlanFormulary": { "@id": "schema:includesHealthPlanFormulary"}, - "includesHealthPlanNetwork": { "@id": "schema:includesHealthPlanNetwork"}, - "includesObject": { "@id": "schema:includesObject"}, - "increasesRiskOf": { "@id": "schema:increasesRiskOf"}, - "industry": { "@id": "schema:industry"}, - "ineligibleRegion": { "@id": "schema:ineligibleRegion"}, - "infectiousAgent": { "@id": "schema:infectiousAgent"}, - "infectiousAgentClass": { "@id": "schema:infectiousAgentClass"}, - "ingredients": { "@id": "schema:ingredients"}, - "inker": { "@id": "schema:inker"}, - "insertion": { "@id": "schema:insertion"}, - "installUrl": { "@id": "schema:installUrl", "@type": "@id"}, - "instructor": { "@id": "schema:instructor"}, - "instrument": { "@id": "schema:instrument"}, - "intensity": { "@id": "schema:intensity"}, - "interactingDrug": { "@id": "schema:interactingDrug"}, - "interactionCount": { "@id": "schema:interactionCount"}, - "interactionService": { "@id": "schema:interactionService"}, - "interactionStatistic": { "@id": "schema:interactionStatistic"}, - "interactionType": { "@id": "schema:interactionType"}, - "interactivityType": { "@id": "schema:interactivityType"}, - "interestRate": { "@id": "schema:interestRate"}, - "inventoryLevel": { "@id": "schema:inventoryLevel"}, - "inverseOf": { "@id": "schema:inverseOf"}, - "isAcceptingNewPatients": { "@id": "schema:isAcceptingNewPatients"}, - "isAccessibleForFree": { "@id": "schema:isAccessibleForFree"}, - "isAccessoryOrSparePartFor": { "@id": "schema:isAccessoryOrSparePartFor"}, - "isAvailableGenerically": { "@id": "schema:isAvailableGenerically"}, - "isBasedOn": { "@id": "schema:isBasedOn", "@type": "@id"}, - "isBasedOnUrl": { "@id": "schema:isBasedOnUrl", "@type": "@id"}, - "isConsumableFor": { "@id": "schema:isConsumableFor"}, - "isFamilyFriendly": { "@id": "schema:isFamilyFriendly"}, - "isGift": { "@id": "schema:isGift"}, - "isLiveBroadcast": { "@id": "schema:isLiveBroadcast"}, - "isPartOf": { "@id": "schema:isPartOf", "@type": "@id"}, - "isPlanForApartment": { "@id": "schema:isPlanForApartment"}, - "isProprietary": { "@id": "schema:isProprietary"}, - "isRelatedTo": { "@id": "schema:isRelatedTo"}, - "isResizable": { "@id": "schema:isResizable"}, - "isSimilarTo": { "@id": "schema:isSimilarTo"}, - "isUnlabelledFallback": { "@id": "schema:isUnlabelledFallback"}, - "isVariantOf": { "@id": "schema:isVariantOf"}, - "isbn": { "@id": "schema:isbn"}, - "isicV4": { "@id": "schema:isicV4"}, - "isrcCode": { "@id": "schema:isrcCode"}, - "issn": { "@id": "schema:issn"}, - "issueNumber": { "@id": "schema:issueNumber"}, - "issuedBy": { "@id": "schema:issuedBy"}, - "issuedThrough": { "@id": "schema:issuedThrough"}, - "iswcCode": { "@id": "schema:iswcCode"}, - "item": { "@id": "schema:item"}, - "itemCondition": { "@id": "schema:itemCondition"}, - "itemListElement": { "@id": "schema:itemListElement"}, - "itemListOrder": { "@id": "schema:itemListOrder"}, - "itemLocation": { "@id": "schema:itemLocation"}, - "itemOffered": { "@id": "schema:itemOffered"}, - "itemReviewed": { "@id": "schema:itemReviewed"}, - "itemShipped": { "@id": "schema:itemShipped"}, - "itinerary": { "@id": "schema:itinerary"}, - "jobBenefits": { "@id": "schema:jobBenefits"}, - "jobImmediateStart": { "@id": "schema:jobImmediateStart"}, - "jobLocation": { "@id": "schema:jobLocation"}, - "jobLocationType": { "@id": "schema:jobLocationType"}, - "jobStartDate": { "@id": "schema:jobStartDate"}, - "jobTitle": { "@id": "schema:jobTitle"}, - "jurisdiction": { "@id": "schema:jurisdiction"}, - "keywords": { "@id": "schema:keywords"}, - "knownVehicleDamages": { "@id": "schema:knownVehicleDamages"}, - "knows": { "@id": "schema:knows"}, - "knowsAbout": { "@id": "schema:knowsAbout"}, - "knowsLanguage": { "@id": "schema:knowsLanguage"}, - "labelDetails": { "@id": "schema:labelDetails", "@type": "@id"}, - "landlord": { "@id": "schema:landlord"}, - "language": { "@id": "schema:language"}, - "lastReviewed": { "@id": "schema:lastReviewed", "@type": "Date"}, - "latitude": { "@id": "schema:latitude"}, - "layoutImage": { "@id": "schema:layoutImage", "@type": "@id"}, - "learningResourceType": { "@id": "schema:learningResourceType"}, - "leaseLength": { "@id": "schema:leaseLength"}, - "legalName": { "@id": "schema:legalName"}, - "legalStatus": { "@id": "schema:legalStatus"}, - "legislationApplies": { "@id": "schema:legislationApplies"}, - "legislationChanges": { "@id": "schema:legislationChanges"}, - "legislationConsolidates": { "@id": "schema:legislationConsolidates"}, - "legislationDate": { "@id": "schema:legislationDate", "@type": "Date"}, - "legislationDateVersion": { "@id": "schema:legislationDateVersion", "@type": "Date"}, - "legislationIdentifier": { "@id": "schema:legislationIdentifier"}, - "legislationJurisdiction": { "@id": "schema:legislationJurisdiction"}, - "legislationLegalForce": { "@id": "schema:legislationLegalForce"}, - "legislationLegalValue": { "@id": "schema:legislationLegalValue"}, - "legislationPassedBy": { "@id": "schema:legislationPassedBy"}, - "legislationResponsible": { "@id": "schema:legislationResponsible"}, - "legislationTransposes": { "@id": "schema:legislationTransposes"}, - "legislationType": { "@id": "schema:legislationType"}, - "leiCode": { "@id": "schema:leiCode"}, - "lender": { "@id": "schema:lender"}, - "lesser": { "@id": "schema:lesser"}, - "lesserOrEqual": { "@id": "schema:lesserOrEqual"}, - "letterer": { "@id": "schema:letterer"}, - "license": { "@id": "schema:license", "@type": "@id"}, - "line": { "@id": "schema:line"}, - "linkRelationship": { "@id": "schema:linkRelationship"}, - "liveBlogUpdate": { "@id": "schema:liveBlogUpdate"}, - "loanMortgageMandateAmount": { "@id": "schema:loanMortgageMandateAmount"}, - "loanPaymentAmount": { "@id": "schema:loanPaymentAmount"}, - "loanPaymentFrequency": { "@id": "schema:loanPaymentFrequency"}, - "loanRepaymentForm": { "@id": "schema:loanRepaymentForm"}, - "loanTerm": { "@id": "schema:loanTerm"}, - "loanType": { "@id": "schema:loanType"}, - "location": { "@id": "schema:location"}, - "locationCreated": { "@id": "schema:locationCreated"}, - "lodgingUnitDescription": { "@id": "schema:lodgingUnitDescription"}, - "lodgingUnitType": { "@id": "schema:lodgingUnitType"}, - "logo": { "@id": "schema:logo", "@type": "@id"}, - "longitude": { "@id": "schema:longitude"}, - "loser": { "@id": "schema:loser"}, - "lowPrice": { "@id": "schema:lowPrice"}, - "lyricist": { "@id": "schema:lyricist"}, - "lyrics": { "@id": "schema:lyrics"}, - "mainContentOfPage": { "@id": "schema:mainContentOfPage"}, - "mainEntity": { "@id": "schema:mainEntity"}, - "mainEntityOfPage": { "@id": "schema:mainEntityOfPage", "@type": "@id"}, - "maintainer": { "@id": "schema:maintainer"}, - "makesOffer": { "@id": "schema:makesOffer"}, - "manufacturer": { "@id": "schema:manufacturer"}, - "map": { "@id": "schema:map", "@type": "@id"}, - "mapType": { "@id": "schema:mapType"}, - "maps": { "@id": "schema:maps", "@type": "@id"}, - "marginOfError": { "@id": "schema:marginOfError", "@type": "DateTime"}, - "masthead": { "@id": "schema:masthead", "@type": "@id"}, - "material": { "@id": "schema:material"}, - "materialExtent": { "@id": "schema:materialExtent"}, - "maxPrice": { "@id": "schema:maxPrice"}, - "maxValue": { "@id": "schema:maxValue"}, - "maximumAttendeeCapacity": { "@id": "schema:maximumAttendeeCapacity"}, - "maximumEnrollment": { "@id": "schema:maximumEnrollment"}, - "maximumIntake": { "@id": "schema:maximumIntake"}, - "maximumPhysicalAttendeeCapacity": { "@id": "schema:maximumPhysicalAttendeeCapacity"}, - "maximumVirtualAttendeeCapacity": { "@id": "schema:maximumVirtualAttendeeCapacity"}, - "mealService": { "@id": "schema:mealService"}, - "measuredProperty": { "@id": "schema:measuredProperty"}, - "measuredValue": { "@id": "schema:measuredValue"}, - "measurementTechnique": { "@id": "schema:measurementTechnique"}, - "mechanismOfAction": { "@id": "schema:mechanismOfAction"}, - "mediaAuthenticityCategory": { "@id": "schema:mediaAuthenticityCategory"}, - "median": { "@id": "schema:median"}, - "medicalAudience": { "@id": "schema:medicalAudience"}, - "medicalSpecialty": { "@id": "schema:medicalSpecialty"}, - "medicineSystem": { "@id": "schema:medicineSystem"}, - "meetsEmissionStandard": { "@id": "schema:meetsEmissionStandard"}, - "member": { "@id": "schema:member"}, - "memberOf": { "@id": "schema:memberOf"}, - "members": { "@id": "schema:members"}, - "membershipNumber": { "@id": "schema:membershipNumber"}, - "membershipPointsEarned": { "@id": "schema:membershipPointsEarned"}, - "memoryRequirements": { "@id": "schema:memoryRequirements"}, - "mentions": { "@id": "schema:mentions"}, - "menu": { "@id": "schema:menu"}, - "menuAddOn": { "@id": "schema:menuAddOn"}, - "merchant": { "@id": "schema:merchant"}, - "merchantReturnDays": { "@id": "schema:merchantReturnDays"}, - "merchantReturnLink": { "@id": "schema:merchantReturnLink", "@type": "@id"}, - "messageAttachment": { "@id": "schema:messageAttachment"}, - "mileageFromOdometer": { "@id": "schema:mileageFromOdometer"}, - "minPrice": { "@id": "schema:minPrice"}, - "minValue": { "@id": "schema:minValue"}, - "minimumPaymentDue": { "@id": "schema:minimumPaymentDue"}, - "missionCoveragePrioritiesPolicy": { "@id": "schema:missionCoveragePrioritiesPolicy", "@type": "@id"}, - "model": { "@id": "schema:model"}, - "modelDate": { "@id": "schema:modelDate", "@type": "Date"}, - "modifiedTime": { "@id": "schema:modifiedTime", "@type": "DateTime"}, - "monthlyMinimumRepaymentAmount": { "@id": "schema:monthlyMinimumRepaymentAmount"}, - "mpn": { "@id": "schema:mpn"}, - "multipleValues": { "@id": "schema:multipleValues"}, - "muscleAction": { "@id": "schema:muscleAction"}, - "musicArrangement": { "@id": "schema:musicArrangement"}, - "musicBy": { "@id": "schema:musicBy"}, - "musicCompositionForm": { "@id": "schema:musicCompositionForm"}, - "musicGroupMember": { "@id": "schema:musicGroupMember"}, - "musicReleaseFormat": { "@id": "schema:musicReleaseFormat"}, - "musicalKey": { "@id": "schema:musicalKey"}, - "naics": { "@id": "schema:naics"}, - "name": { "@id": "schema:name"}, - "namedPosition": { "@id": "schema:namedPosition"}, - "nationality": { "@id": "schema:nationality"}, - "naturalProgression": { "@id": "schema:naturalProgression"}, - "nerve": { "@id": "schema:nerve"}, - "nerveMotor": { "@id": "schema:nerveMotor"}, - "netWorth": { "@id": "schema:netWorth"}, - "newsUpdatesAndGuidelines": { "@id": "schema:newsUpdatesAndGuidelines", "@type": "@id"}, - "nextItem": { "@id": "schema:nextItem"}, - "noBylinesPolicy": { "@id": "schema:noBylinesPolicy", "@type": "@id"}, - "nonEqual": { "@id": "schema:nonEqual"}, - "nonProprietaryName": { "@id": "schema:nonProprietaryName"}, - "nonprofitStatus": { "@id": "schema:nonprofitStatus"}, - "normalRange": { "@id": "schema:normalRange"}, - "nsn": { "@id": "schema:nsn"}, - "numAdults": { "@id": "schema:numAdults"}, - "numChildren": { "@id": "schema:numChildren"}, - "numConstraints": { "@id": "schema:numConstraints"}, - "numTracks": { "@id": "schema:numTracks"}, - "numberOfAccommodationUnits": { "@id": "schema:numberOfAccommodationUnits"}, - "numberOfAirbags": { "@id": "schema:numberOfAirbags"}, - "numberOfAvailableAccommodationUnits": { "@id": "schema:numberOfAvailableAccommodationUnits"}, - "numberOfAxles": { "@id": "schema:numberOfAxles"}, - "numberOfBathroomsTotal": { "@id": "schema:numberOfBathroomsTotal"}, - "numberOfBedrooms": { "@id": "schema:numberOfBedrooms"}, - "numberOfBeds": { "@id": "schema:numberOfBeds"}, - "numberOfCredits": { "@id": "schema:numberOfCredits"}, - "numberOfDoors": { "@id": "schema:numberOfDoors"}, - "numberOfEmployees": { "@id": "schema:numberOfEmployees"}, - "numberOfEpisodes": { "@id": "schema:numberOfEpisodes"}, - "numberOfForwardGears": { "@id": "schema:numberOfForwardGears"}, - "numberOfFullBathrooms": { "@id": "schema:numberOfFullBathrooms"}, - "numberOfItems": { "@id": "schema:numberOfItems"}, - "numberOfLoanPayments": { "@id": "schema:numberOfLoanPayments"}, - "numberOfPages": { "@id": "schema:numberOfPages"}, - "numberOfPartialBathrooms": { "@id": "schema:numberOfPartialBathrooms"}, - "numberOfPlayers": { "@id": "schema:numberOfPlayers"}, - "numberOfPreviousOwners": { "@id": "schema:numberOfPreviousOwners"}, - "numberOfRooms": { "@id": "schema:numberOfRooms"}, - "numberOfSeasons": { "@id": "schema:numberOfSeasons"}, - "numberedPosition": { "@id": "schema:numberedPosition"}, - "nutrition": { "@id": "schema:nutrition"}, - "object": { "@id": "schema:object"}, - "observationDate": { "@id": "schema:observationDate", "@type": "DateTime"}, - "observedNode": { "@id": "schema:observedNode"}, - "occupancy": { "@id": "schema:occupancy"}, - "occupationLocation": { "@id": "schema:occupationLocation"}, - "occupationalCategory": { "@id": "schema:occupationalCategory"}, - "occupationalCredentialAwarded": { "@id": "schema:occupationalCredentialAwarded"}, - "offerCount": { "@id": "schema:offerCount"}, - "offeredBy": { "@id": "schema:offeredBy"}, - "offers": { "@id": "schema:offers"}, - "offersPrescriptionByMail": { "@id": "schema:offersPrescriptionByMail"}, - "openingHours": { "@id": "schema:openingHours"}, - "openingHoursSpecification": { "@id": "schema:openingHoursSpecification"}, - "opens": { "@id": "schema:opens"}, - "operatingSystem": { "@id": "schema:operatingSystem"}, - "opponent": { "@id": "schema:opponent"}, - "option": { "@id": "schema:option"}, - "orderDate": { "@id": "schema:orderDate", "@type": "Date"}, - "orderDelivery": { "@id": "schema:orderDelivery"}, - "orderItemNumber": { "@id": "schema:orderItemNumber"}, - "orderItemStatus": { "@id": "schema:orderItemStatus"}, - "orderNumber": { "@id": "schema:orderNumber"}, - "orderQuantity": { "@id": "schema:orderQuantity"}, - "orderStatus": { "@id": "schema:orderStatus"}, - "orderedItem": { "@id": "schema:orderedItem"}, - "organizer": { "@id": "schema:organizer"}, - "originAddress": { "@id": "schema:originAddress"}, - "originatesFrom": { "@id": "schema:originatesFrom"}, - "overdosage": { "@id": "schema:overdosage"}, - "ownedFrom": { "@id": "schema:ownedFrom", "@type": "DateTime"}, - "ownedThrough": { "@id": "schema:ownedThrough", "@type": "DateTime"}, - "ownershipFundingInfo": { "@id": "schema:ownershipFundingInfo"}, - "owns": { "@id": "schema:owns"}, - "pageEnd": { "@id": "schema:pageEnd"}, - "pageStart": { "@id": "schema:pageStart"}, - "pagination": { "@id": "schema:pagination"}, - "parent": { "@id": "schema:parent"}, - "parentItem": { "@id": "schema:parentItem"}, - "parentOrganization": { "@id": "schema:parentOrganization"}, - "parentService": { "@id": "schema:parentService"}, - "parents": { "@id": "schema:parents"}, - "partOfEpisode": { "@id": "schema:partOfEpisode"}, - "partOfInvoice": { "@id": "schema:partOfInvoice"}, - "partOfOrder": { "@id": "schema:partOfOrder"}, - "partOfSeason": { "@id": "schema:partOfSeason"}, - "partOfSeries": { "@id": "schema:partOfSeries"}, - "partOfSystem": { "@id": "schema:partOfSystem"}, - "partOfTVSeries": { "@id": "schema:partOfTVSeries"}, - "partOfTrip": { "@id": "schema:partOfTrip"}, - "participant": { "@id": "schema:participant"}, - "partySize": { "@id": "schema:partySize"}, - "passengerPriorityStatus": { "@id": "schema:passengerPriorityStatus"}, - "passengerSequenceNumber": { "@id": "schema:passengerSequenceNumber"}, - "pathophysiology": { "@id": "schema:pathophysiology"}, - "pattern": { "@id": "schema:pattern"}, - "payload": { "@id": "schema:payload"}, - "paymentAccepted": { "@id": "schema:paymentAccepted"}, - "paymentDue": { "@id": "schema:paymentDue", "@type": "DateTime"}, - "paymentDueDate": { "@id": "schema:paymentDueDate", "@type": "Date"}, - "paymentMethod": { "@id": "schema:paymentMethod"}, - "paymentMethodId": { "@id": "schema:paymentMethodId"}, - "paymentStatus": { "@id": "schema:paymentStatus"}, - "paymentUrl": { "@id": "schema:paymentUrl", "@type": "@id"}, - "penciler": { "@id": "schema:penciler"}, - "percentile10": { "@id": "schema:percentile10"}, - "percentile25": { "@id": "schema:percentile25"}, - "percentile75": { "@id": "schema:percentile75"}, - "percentile90": { "@id": "schema:percentile90"}, - "performTime": { "@id": "schema:performTime"}, - "performer": { "@id": "schema:performer"}, - "performerIn": { "@id": "schema:performerIn"}, - "performers": { "@id": "schema:performers"}, - "permissionType": { "@id": "schema:permissionType"}, - "permissions": { "@id": "schema:permissions"}, - "permitAudience": { "@id": "schema:permitAudience"}, - "permittedUsage": { "@id": "schema:permittedUsage"}, - "petsAllowed": { "@id": "schema:petsAllowed"}, - "phoneticText": { "@id": "schema:phoneticText"}, - "photo": { "@id": "schema:photo"}, - "photos": { "@id": "schema:photos"}, - "physicalRequirement": { "@id": "schema:physicalRequirement"}, - "physiologicalBenefits": { "@id": "schema:physiologicalBenefits"}, - "pickupLocation": { "@id": "schema:pickupLocation"}, - "pickupTime": { "@id": "schema:pickupTime", "@type": "DateTime"}, - "playMode": { "@id": "schema:playMode"}, - "playerType": { "@id": "schema:playerType"}, - "playersOnline": { "@id": "schema:playersOnline"}, - "polygon": { "@id": "schema:polygon"}, - "populationType": { "@id": "schema:populationType"}, - "position": { "@id": "schema:position"}, - "possibleComplication": { "@id": "schema:possibleComplication"}, - "possibleTreatment": { "@id": "schema:possibleTreatment"}, - "postOfficeBoxNumber": { "@id": "schema:postOfficeBoxNumber"}, - "postOp": { "@id": "schema:postOp"}, - "postalCode": { "@id": "schema:postalCode"}, - "postalCodeBegin": { "@id": "schema:postalCodeBegin"}, - "postalCodeEnd": { "@id": "schema:postalCodeEnd"}, - "postalCodePrefix": { "@id": "schema:postalCodePrefix"}, - "postalCodeRange": { "@id": "schema:postalCodeRange"}, - "potentialAction": { "@id": "schema:potentialAction"}, - "preOp": { "@id": "schema:preOp"}, - "predecessorOf": { "@id": "schema:predecessorOf"}, - "pregnancyCategory": { "@id": "schema:pregnancyCategory"}, - "pregnancyWarning": { "@id": "schema:pregnancyWarning"}, - "prepTime": { "@id": "schema:prepTime"}, - "preparation": { "@id": "schema:preparation"}, - "prescribingInfo": { "@id": "schema:prescribingInfo", "@type": "@id"}, - "prescriptionStatus": { "@id": "schema:prescriptionStatus"}, - "previousItem": { "@id": "schema:previousItem"}, - "previousStartDate": { "@id": "schema:previousStartDate", "@type": "Date"}, - "price": { "@id": "schema:price"}, - "priceComponent": { "@id": "schema:priceComponent"}, - "priceCurrency": { "@id": "schema:priceCurrency"}, - "priceRange": { "@id": "schema:priceRange"}, - "priceSpecification": { "@id": "schema:priceSpecification"}, - "priceType": { "@id": "schema:priceType"}, - "priceValidUntil": { "@id": "schema:priceValidUntil", "@type": "Date"}, - "primaryImageOfPage": { "@id": "schema:primaryImageOfPage"}, - "primaryPrevention": { "@id": "schema:primaryPrevention"}, - "printColumn": { "@id": "schema:printColumn"}, - "printEdition": { "@id": "schema:printEdition"}, - "printPage": { "@id": "schema:printPage"}, - "printSection": { "@id": "schema:printSection"}, - "procedure": { "@id": "schema:procedure"}, - "procedureType": { "@id": "schema:procedureType"}, - "processingTime": { "@id": "schema:processingTime"}, - "processorRequirements": { "@id": "schema:processorRequirements"}, - "producer": { "@id": "schema:producer"}, - "produces": { "@id": "schema:produces"}, - "productGroupID": { "@id": "schema:productGroupID"}, - "productID": { "@id": "schema:productID"}, - "productReturnDays": { "@id": "schema:productReturnDays"}, - "productReturnLink": { "@id": "schema:productReturnLink", "@type": "@id"}, - "productSupported": { "@id": "schema:productSupported"}, - "productionCompany": { "@id": "schema:productionCompany"}, - "productionDate": { "@id": "schema:productionDate", "@type": "Date"}, - "proficiencyLevel": { "@id": "schema:proficiencyLevel"}, - "programMembershipUsed": { "@id": "schema:programMembershipUsed"}, - "programName": { "@id": "schema:programName"}, - "programPrerequisites": { "@id": "schema:programPrerequisites"}, - "programType": { "@id": "schema:programType"}, - "programmingLanguage": { "@id": "schema:programmingLanguage"}, - "programmingModel": { "@id": "schema:programmingModel"}, - "propertyID": { "@id": "schema:propertyID"}, - "proprietaryName": { "@id": "schema:proprietaryName"}, - "proteinContent": { "@id": "schema:proteinContent"}, - "provider": { "@id": "schema:provider"}, - "providerMobility": { "@id": "schema:providerMobility"}, - "providesBroadcastService": { "@id": "schema:providesBroadcastService"}, - "providesService": { "@id": "schema:providesService"}, - "publicAccess": { "@id": "schema:publicAccess"}, - "publicTransportClosuresInfo": { "@id": "schema:publicTransportClosuresInfo", "@type": "@id"}, - "publication": { "@id": "schema:publication"}, - "publicationType": { "@id": "schema:publicationType"}, - "publishedBy": { "@id": "schema:publishedBy"}, - "publishedOn": { "@id": "schema:publishedOn"}, - "publisher": { "@id": "schema:publisher"}, - "publisherImprint": { "@id": "schema:publisherImprint"}, - "publishingPrinciples": { "@id": "schema:publishingPrinciples", "@type": "@id"}, - "purchaseDate": { "@id": "schema:purchaseDate", "@type": "Date"}, - "qualifications": { "@id": "schema:qualifications"}, - "quarantineGuidelines": { "@id": "schema:quarantineGuidelines", "@type": "@id"}, - "query": { "@id": "schema:query"}, - "quest": { "@id": "schema:quest"}, - "question": { "@id": "schema:question"}, - "rangeIncludes": { "@id": "schema:rangeIncludes"}, - "ratingCount": { "@id": "schema:ratingCount"}, - "ratingExplanation": { "@id": "schema:ratingExplanation"}, - "ratingValue": { "@id": "schema:ratingValue"}, - "readBy": { "@id": "schema:readBy"}, - "readonlyValue": { "@id": "schema:readonlyValue"}, - "realEstateAgent": { "@id": "schema:realEstateAgent"}, - "recipe": { "@id": "schema:recipe"}, - "recipeCategory": { "@id": "schema:recipeCategory"}, - "recipeCuisine": { "@id": "schema:recipeCuisine"}, - "recipeIngredient": { "@id": "schema:recipeIngredient"}, - "recipeInstructions": { "@id": "schema:recipeInstructions"}, - "recipeYield": { "@id": "schema:recipeYield"}, - "recipient": { "@id": "schema:recipient"}, - "recognizedBy": { "@id": "schema:recognizedBy"}, - "recognizingAuthority": { "@id": "schema:recognizingAuthority"}, - "recommendationStrength": { "@id": "schema:recommendationStrength"}, - "recommendedIntake": { "@id": "schema:recommendedIntake"}, - "recordLabel": { "@id": "schema:recordLabel"}, - "recordedAs": { "@id": "schema:recordedAs"}, - "recordedAt": { "@id": "schema:recordedAt"}, - "recordedIn": { "@id": "schema:recordedIn"}, - "recordingOf": { "@id": "schema:recordingOf"}, - "recourseLoan": { "@id": "schema:recourseLoan"}, - "referenceQuantity": { "@id": "schema:referenceQuantity"}, - "referencesOrder": { "@id": "schema:referencesOrder"}, - "refundType": { "@id": "schema:refundType"}, - "regionDrained": { "@id": "schema:regionDrained"}, - "regionsAllowed": { "@id": "schema:regionsAllowed"}, - "relatedAnatomy": { "@id": "schema:relatedAnatomy"}, - "relatedCondition": { "@id": "schema:relatedCondition"}, - "relatedDrug": { "@id": "schema:relatedDrug"}, - "relatedLink": { "@id": "schema:relatedLink", "@type": "@id"}, - "relatedStructure": { "@id": "schema:relatedStructure"}, - "relatedTherapy": { "@id": "schema:relatedTherapy"}, - "relatedTo": { "@id": "schema:relatedTo"}, - "releaseDate": { "@id": "schema:releaseDate", "@type": "Date"}, - "releaseNotes": { "@id": "schema:releaseNotes"}, - "releaseOf": { "@id": "schema:releaseOf"}, - "releasedEvent": { "@id": "schema:releasedEvent"}, - "relevantOccupation": { "@id": "schema:relevantOccupation"}, - "relevantSpecialty": { "@id": "schema:relevantSpecialty"}, - "remainingAttendeeCapacity": { "@id": "schema:remainingAttendeeCapacity"}, - "renegotiableLoan": { "@id": "schema:renegotiableLoan"}, - "repeatCount": { "@id": "schema:repeatCount"}, - "repeatFrequency": { "@id": "schema:repeatFrequency"}, - "repetitions": { "@id": "schema:repetitions"}, - "replacee": { "@id": "schema:replacee"}, - "replacer": { "@id": "schema:replacer"}, - "replyToUrl": { "@id": "schema:replyToUrl", "@type": "@id"}, - "reportNumber": { "@id": "schema:reportNumber"}, - "representativeOfPage": { "@id": "schema:representativeOfPage"}, - "requiredCollateral": { "@id": "schema:requiredCollateral"}, - "requiredGender": { "@id": "schema:requiredGender"}, - "requiredMaxAge": { "@id": "schema:requiredMaxAge"}, - "requiredMinAge": { "@id": "schema:requiredMinAge"}, - "requiredQuantity": { "@id": "schema:requiredQuantity"}, - "requirements": { "@id": "schema:requirements"}, - "requiresSubscription": { "@id": "schema:requiresSubscription"}, - "reservationFor": { "@id": "schema:reservationFor"}, - "reservationId": { "@id": "schema:reservationId"}, - "reservationStatus": { "@id": "schema:reservationStatus"}, - "reservedTicket": { "@id": "schema:reservedTicket"}, - "responsibilities": { "@id": "schema:responsibilities"}, - "restPeriods": { "@id": "schema:restPeriods"}, - "result": { "@id": "schema:result"}, - "resultComment": { "@id": "schema:resultComment"}, - "resultReview": { "@id": "schema:resultReview"}, - "returnFees": { "@id": "schema:returnFees"}, - "returnPolicyCategory": { "@id": "schema:returnPolicyCategory"}, - "review": { "@id": "schema:review"}, - "reviewAspect": { "@id": "schema:reviewAspect"}, - "reviewBody": { "@id": "schema:reviewBody"}, - "reviewCount": { "@id": "schema:reviewCount"}, - "reviewRating": { "@id": "schema:reviewRating"}, - "reviewedBy": { "@id": "schema:reviewedBy"}, - "reviews": { "@id": "schema:reviews"}, - "riskFactor": { "@id": "schema:riskFactor"}, - "risks": { "@id": "schema:risks"}, - "roleName": { "@id": "schema:roleName"}, - "roofLoad": { "@id": "schema:roofLoad"}, - "rsvpResponse": { "@id": "schema:rsvpResponse"}, - "runsTo": { "@id": "schema:runsTo"}, - "runtime": { "@id": "schema:runtime"}, - "runtimePlatform": { "@id": "schema:runtimePlatform"}, - "rxcui": { "@id": "schema:rxcui"}, - "safetyConsideration": { "@id": "schema:safetyConsideration"}, - "salaryCurrency": { "@id": "schema:salaryCurrency"}, - "salaryUponCompletion": { "@id": "schema:salaryUponCompletion"}, - "sameAs": { "@id": "schema:sameAs", "@type": "@id"}, - "sampleType": { "@id": "schema:sampleType"}, - "saturatedFatContent": { "@id": "schema:saturatedFatContent"}, - "scheduleTimezone": { "@id": "schema:scheduleTimezone"}, - "scheduledPaymentDate": { "@id": "schema:scheduledPaymentDate", "@type": "Date"}, - "scheduledTime": { "@id": "schema:scheduledTime", "@type": "DateTime"}, - "schemaVersion": { "@id": "schema:schemaVersion"}, - "schoolClosuresInfo": { "@id": "schema:schoolClosuresInfo", "@type": "@id"}, - "screenCount": { "@id": "schema:screenCount"}, - "screenshot": { "@id": "schema:screenshot", "@type": "@id"}, - "sdDatePublished": { "@id": "schema:sdDatePublished", "@type": "Date"}, - "sdLicense": { "@id": "schema:sdLicense", "@type": "@id"}, - "sdPublisher": { "@id": "schema:sdPublisher"}, - "season": { "@id": "schema:season", "@type": "@id"}, - "seasonNumber": { "@id": "schema:seasonNumber"}, - "seasons": { "@id": "schema:seasons"}, - "seatNumber": { "@id": "schema:seatNumber"}, - "seatRow": { "@id": "schema:seatRow"}, - "seatSection": { "@id": "schema:seatSection"}, - "seatingCapacity": { "@id": "schema:seatingCapacity"}, - "seatingType": { "@id": "schema:seatingType"}, - "secondaryPrevention": { "@id": "schema:secondaryPrevention"}, - "securityClearanceRequirement": { "@id": "schema:securityClearanceRequirement"}, - "securityScreening": { "@id": "schema:securityScreening"}, - "seeks": { "@id": "schema:seeks"}, - "seller": { "@id": "schema:seller"}, - "sender": { "@id": "schema:sender"}, - "sensoryRequirement": { "@id": "schema:sensoryRequirement"}, - "sensoryUnit": { "@id": "schema:sensoryUnit"}, - "serialNumber": { "@id": "schema:serialNumber"}, - "seriousAdverseOutcome": { "@id": "schema:seriousAdverseOutcome"}, - "serverStatus": { "@id": "schema:serverStatus"}, - "servesCuisine": { "@id": "schema:servesCuisine"}, - "serviceArea": { "@id": "schema:serviceArea"}, - "serviceAudience": { "@id": "schema:serviceAudience"}, - "serviceLocation": { "@id": "schema:serviceLocation"}, - "serviceOperator": { "@id": "schema:serviceOperator"}, - "serviceOutput": { "@id": "schema:serviceOutput"}, - "servicePhone": { "@id": "schema:servicePhone"}, - "servicePostalAddress": { "@id": "schema:servicePostalAddress"}, - "serviceSmsNumber": { "@id": "schema:serviceSmsNumber"}, - "serviceType": { "@id": "schema:serviceType"}, - "serviceUrl": { "@id": "schema:serviceUrl", "@type": "@id"}, - "servingSize": { "@id": "schema:servingSize"}, - "sharedContent": { "@id": "schema:sharedContent"}, - "shippingDestination": { "@id": "schema:shippingDestination"}, - "shippingDetails": { "@id": "schema:shippingDetails"}, - "shippingLabel": { "@id": "schema:shippingLabel"}, - "shippingRate": { "@id": "schema:shippingRate"}, - "shippingSettingsLink": { "@id": "schema:shippingSettingsLink", "@type": "@id"}, - "sibling": { "@id": "schema:sibling"}, - "siblings": { "@id": "schema:siblings"}, - "signDetected": { "@id": "schema:signDetected"}, - "signOrSymptom": { "@id": "schema:signOrSymptom"}, - "significance": { "@id": "schema:significance"}, - "significantLink": { "@id": "schema:significantLink", "@type": "@id"}, - "significantLinks": { "@id": "schema:significantLinks", "@type": "@id"}, - "size": { "@id": "schema:size"}, - "skills": { "@id": "schema:skills"}, - "sku": { "@id": "schema:sku"}, - "slogan": { "@id": "schema:slogan"}, - "smokingAllowed": { "@id": "schema:smokingAllowed"}, - "sodiumContent": { "@id": "schema:sodiumContent"}, - "softwareAddOn": { "@id": "schema:softwareAddOn"}, - "softwareHelp": { "@id": "schema:softwareHelp"}, - "softwareRequirements": { "@id": "schema:softwareRequirements"}, - "softwareVersion": { "@id": "schema:softwareVersion"}, - "sourceOrganization": { "@id": "schema:sourceOrganization"}, - "sourcedFrom": { "@id": "schema:sourcedFrom"}, - "spatial": { "@id": "schema:spatial"}, - "spatialCoverage": { "@id": "schema:spatialCoverage"}, - "speakable": { "@id": "schema:speakable", "@type": "@id"}, - "specialCommitments": { "@id": "schema:specialCommitments"}, - "specialOpeningHoursSpecification": { "@id": "schema:specialOpeningHoursSpecification"}, - "specialty": { "@id": "schema:specialty"}, - "speechToTextMarkup": { "@id": "schema:speechToTextMarkup"}, - "speed": { "@id": "schema:speed"}, - "spokenByCharacter": { "@id": "schema:spokenByCharacter"}, - "sponsor": { "@id": "schema:sponsor"}, - "sport": { "@id": "schema:sport"}, - "sportsActivityLocation": { "@id": "schema:sportsActivityLocation"}, - "sportsEvent": { "@id": "schema:sportsEvent"}, - "sportsTeam": { "@id": "schema:sportsTeam"}, - "spouse": { "@id": "schema:spouse"}, - "stage": { "@id": "schema:stage"}, - "stageAsNumber": { "@id": "schema:stageAsNumber"}, - "starRating": { "@id": "schema:starRating"}, - "startDate": { "@id": "schema:startDate", "@type": "Date"}, - "startOffset": { "@id": "schema:startOffset"}, - "startTime": { "@id": "schema:startTime", "@type": "DateTime"}, - "status": { "@id": "schema:status"}, - "steeringPosition": { "@id": "schema:steeringPosition"}, - "step": { "@id": "schema:step"}, - "stepValue": { "@id": "schema:stepValue"}, - "steps": { "@id": "schema:steps"}, - "storageRequirements": { "@id": "schema:storageRequirements"}, - "streetAddress": { "@id": "schema:streetAddress"}, - "strengthUnit": { "@id": "schema:strengthUnit"}, - "strengthValue": { "@id": "schema:strengthValue"}, - "structuralClass": { "@id": "schema:structuralClass"}, - "study": { "@id": "schema:study"}, - "studyDesign": { "@id": "schema:studyDesign"}, - "studyLocation": { "@id": "schema:studyLocation"}, - "studySubject": { "@id": "schema:studySubject"}, - "stupidProperty": { "@id": "schema:stupidProperty"}, - "subEvent": { "@id": "schema:subEvent"}, - "subEvents": { "@id": "schema:subEvents"}, - "subOrganization": { "@id": "schema:subOrganization"}, - "subReservation": { "@id": "schema:subReservation"}, - "subStageSuffix": { "@id": "schema:subStageSuffix"}, - "subStructure": { "@id": "schema:subStructure"}, - "subTest": { "@id": "schema:subTest"}, - "subTrip": { "@id": "schema:subTrip"}, - "subjectOf": { "@id": "schema:subjectOf"}, - "subtitleLanguage": { "@id": "schema:subtitleLanguage"}, - "successorOf": { "@id": "schema:successorOf"}, - "sugarContent": { "@id": "schema:sugarContent"}, - "suggestedAnswer": { "@id": "schema:suggestedAnswer"}, - "suggestedGender": { "@id": "schema:suggestedGender"}, - "suggestedMaxAge": { "@id": "schema:suggestedMaxAge"}, - "suggestedMinAge": { "@id": "schema:suggestedMinAge"}, - "suitableForDiet": { "@id": "schema:suitableForDiet"}, - "superEvent": { "@id": "schema:superEvent"}, - "supersededBy": { "@id": "schema:supersededBy"}, - "supply": { "@id": "schema:supply"}, - "supplyTo": { "@id": "schema:supplyTo"}, - "supportingData": { "@id": "schema:supportingData"}, - "surface": { "@id": "schema:surface"}, - "target": { "@id": "schema:target"}, - "targetCollection": { "@id": "schema:targetCollection"}, - "targetDescription": { "@id": "schema:targetDescription"}, - "targetName": { "@id": "schema:targetName"}, - "targetPlatform": { "@id": "schema:targetPlatform"}, - "targetPopulation": { "@id": "schema:targetPopulation"}, - "targetProduct": { "@id": "schema:targetProduct"}, - "targetUrl": { "@id": "schema:targetUrl", "@type": "@id"}, - "taxID": { "@id": "schema:taxID"}, - "teaches": { "@id": "schema:teaches"}, - "telephone": { "@id": "schema:telephone"}, - "temporal": { "@id": "schema:temporal"}, - "temporalCoverage": { "@id": "schema:temporalCoverage"}, - "termCode": { "@id": "schema:termCode"}, - "termDuration": { "@id": "schema:termDuration"}, - "termsOfService": { "@id": "schema:termsOfService"}, - "termsPerYear": { "@id": "schema:termsPerYear"}, - "text": { "@id": "schema:text"}, - "textValue": { "@id": "schema:textValue"}, - "thumbnail": { "@id": "schema:thumbnail"}, - "thumbnailUrl": { "@id": "schema:thumbnailUrl", "@type": "@id"}, - "tickerSymbol": { "@id": "schema:tickerSymbol"}, - "ticketNumber": { "@id": "schema:ticketNumber"}, - "ticketToken": { "@id": "schema:ticketToken"}, - "ticketedSeat": { "@id": "schema:ticketedSeat"}, - "timeOfDay": { "@id": "schema:timeOfDay"}, - "timeRequired": { "@id": "schema:timeRequired"}, - "timeToComplete": { "@id": "schema:timeToComplete"}, - "tissueSample": { "@id": "schema:tissueSample"}, - "title": { "@id": "schema:title"}, - "titleEIDR": { "@id": "schema:titleEIDR"}, - "toLocation": { "@id": "schema:toLocation"}, - "toRecipient": { "@id": "schema:toRecipient"}, - "tongueWeight": { "@id": "schema:tongueWeight"}, - "tool": { "@id": "schema:tool"}, - "torque": { "@id": "schema:torque"}, - "totalJobOpenings": { "@id": "schema:totalJobOpenings"}, - "totalPaymentDue": { "@id": "schema:totalPaymentDue"}, - "totalPrice": { "@id": "schema:totalPrice"}, - "totalTime": { "@id": "schema:totalTime"}, - "tourBookingPage": { "@id": "schema:tourBookingPage", "@type": "@id"}, - "touristType": { "@id": "schema:touristType"}, - "track": { "@id": "schema:track"}, - "trackingNumber": { "@id": "schema:trackingNumber"}, - "trackingUrl": { "@id": "schema:trackingUrl", "@type": "@id"}, - "tracks": { "@id": "schema:tracks"}, - "trailer": { "@id": "schema:trailer"}, - "trailerWeight": { "@id": "schema:trailerWeight"}, - "trainName": { "@id": "schema:trainName"}, - "trainNumber": { "@id": "schema:trainNumber"}, - "trainingSalary": { "@id": "schema:trainingSalary"}, - "transFatContent": { "@id": "schema:transFatContent"}, - "transcript": { "@id": "schema:transcript"}, - "transitTime": { "@id": "schema:transitTime"}, - "transitTimeLabel": { "@id": "schema:transitTimeLabel"}, - "translationOfWork": { "@id": "schema:translationOfWork"}, - "translator": { "@id": "schema:translator"}, - "transmissionMethod": { "@id": "schema:transmissionMethod"}, - "travelBans": { "@id": "schema:travelBans", "@type": "@id"}, - "trialDesign": { "@id": "schema:trialDesign"}, - "tributary": { "@id": "schema:tributary"}, - "typeOfBed": { "@id": "schema:typeOfBed"}, - "typeOfGood": { "@id": "schema:typeOfGood"}, - "typicalAgeRange": { "@id": "schema:typicalAgeRange"}, - "typicalCreditsPerTerm": { "@id": "schema:typicalCreditsPerTerm"}, - "typicalTest": { "@id": "schema:typicalTest"}, - "underName": { "@id": "schema:underName"}, - "unitCode": { "@id": "schema:unitCode"}, - "unitText": { "@id": "schema:unitText"}, - "unnamedSourcesPolicy": { "@id": "schema:unnamedSourcesPolicy", "@type": "@id"}, - "unsaturatedFatContent": { "@id": "schema:unsaturatedFatContent"}, - "uploadDate": { "@id": "schema:uploadDate", "@type": "Date"}, - "upvoteCount": { "@id": "schema:upvoteCount"}, - "url": { "@id": "schema:url", "@type": "@id"}, - "urlTemplate": { "@id": "schema:urlTemplate"}, - "usageInfo": { "@id": "schema:usageInfo", "@type": "@id"}, - "usedToDiagnose": { "@id": "schema:usedToDiagnose"}, - "userInteractionCount": { "@id": "schema:userInteractionCount"}, - "usesDevice": { "@id": "schema:usesDevice"}, - "usesHealthPlanIdStandard": { "@id": "schema:usesHealthPlanIdStandard"}, - "validFor": { "@id": "schema:validFor"}, - "validFrom": { "@id": "schema:validFrom", "@type": "Date"}, - "validIn": { "@id": "schema:validIn"}, - "validThrough": { "@id": "schema:validThrough", "@type": "Date"}, - "validUntil": { "@id": "schema:validUntil", "@type": "Date"}, - "value": { "@id": "schema:value"}, - "valueAddedTaxIncluded": { "@id": "schema:valueAddedTaxIncluded"}, - "valueMaxLength": { "@id": "schema:valueMaxLength"}, - "valueMinLength": { "@id": "schema:valueMinLength"}, - "valueName": { "@id": "schema:valueName"}, - "valuePattern": { "@id": "schema:valuePattern"}, - "valueReference": { "@id": "schema:valueReference"}, - "valueRequired": { "@id": "schema:valueRequired"}, - "variableMeasured": { "@id": "schema:variableMeasured"}, - "variablesMeasured": { "@id": "schema:variablesMeasured"}, - "variantCover": { "@id": "schema:variantCover"}, - "variesBy": { "@id": "schema:variesBy"}, - "vatID": { "@id": "schema:vatID"}, - "vehicleConfiguration": { "@id": "schema:vehicleConfiguration"}, - "vehicleEngine": { "@id": "schema:vehicleEngine"}, - "vehicleIdentificationNumber": { "@id": "schema:vehicleIdentificationNumber"}, - "vehicleInteriorColor": { "@id": "schema:vehicleInteriorColor"}, - "vehicleInteriorType": { "@id": "schema:vehicleInteriorType"}, - "vehicleModelDate": { "@id": "schema:vehicleModelDate", "@type": "Date"}, - "vehicleSeatingCapacity": { "@id": "schema:vehicleSeatingCapacity"}, - "vehicleSpecialUsage": { "@id": "schema:vehicleSpecialUsage"}, - "vehicleTransmission": { "@id": "schema:vehicleTransmission"}, - "vendor": { "@id": "schema:vendor"}, - "verificationFactCheckingPolicy": { "@id": "schema:verificationFactCheckingPolicy", "@type": "@id"}, - "version": { "@id": "schema:version"}, - "video": { "@id": "schema:video"}, - "videoFormat": { "@id": "schema:videoFormat"}, - "videoFrameSize": { "@id": "schema:videoFrameSize"}, - "videoQuality": { "@id": "schema:videoQuality"}, - "volumeNumber": { "@id": "schema:volumeNumber"}, - "warning": { "@id": "schema:warning"}, - "warranty": { "@id": "schema:warranty"}, - "warrantyPromise": { "@id": "schema:warrantyPromise"}, - "warrantyScope": { "@id": "schema:warrantyScope"}, - "webCheckinTime": { "@id": "schema:webCheckinTime", "@type": "DateTime"}, - "webFeed": { "@id": "schema:webFeed", "@type": "@id"}, - "weight": { "@id": "schema:weight"}, - "weightTotal": { "@id": "schema:weightTotal"}, - "wheelbase": { "@id": "schema:wheelbase"}, - "width": { "@id": "schema:width"}, - "winner": { "@id": "schema:winner"}, - "wordCount": { "@id": "schema:wordCount"}, - "workExample": { "@id": "schema:workExample"}, - "workFeatured": { "@id": "schema:workFeatured"}, - "workHours": { "@id": "schema:workHours"}, - "workLocation": { "@id": "schema:workLocation"}, - "workPerformed": { "@id": "schema:workPerformed"}, - "workPresented": { "@id": "schema:workPresented"}, - "workTranslation": { "@id": "schema:workTranslation"}, - "workload": { "@id": "schema:workload"}, - "worksFor": { "@id": "schema:worksFor"}, - "worstRating": { "@id": "schema:worstRating"}, - "xpath": { "@id": "schema:xpath"}, - "yearBuilt": { "@id": "schema:yearBuilt"}, - "yearlyRevenue": { "@id": "schema:yearlyRevenue"}, - "yearsInOperation": { "@id": "schema:yearsInOperation"}, - "yield": { "@id": "schema:yield"}, - "http://publications.europa.eu/mdr/eli/index.html": {"@id": "http://publications.europa.eu/mdr/eli/index.html"}, - "httpMethod": { "@id": "schema:httpMethod"}, - "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group": {"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"}, - "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO": {"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"}, - "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#GLEIF": {"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#GLEIF"}, - "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it": {"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"}, - "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ": {"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"}, - "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism": {"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"}, - "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass": {"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass"}, - "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass": {"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass"}, - "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass": {"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"}, - "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms": {"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"}, - "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass": {"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass"}, - "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange": {"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange"}, - "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc": {"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc"}, - "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex": {"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"}, - "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews": {"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"}, - "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology": {"@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"}, - "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP": {"@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"}, - "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP-draws": {"@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP-draws"} + "3DModel": { + "@id": "schema:3DModel" + }, + "@vocab": "http://schema.org/", + "AMRadioChannel": { + "@id": "schema:AMRadioChannel" + }, + "APIReference": { + "@id": "schema:APIReference" + }, + "Abdomen": { + "@id": "schema:Abdomen" + }, + "AboutPage": { + "@id": "schema:AboutPage" + }, + "AcceptAction": { + "@id": "schema:AcceptAction" + }, + "Accommodation": { + "@id": "schema:Accommodation" + }, + "AccountingService": { + "@id": "schema:AccountingService" + }, + "AchieveAction": { + "@id": "schema:AchieveAction" + }, + "Action": { + "@id": "schema:Action" + }, + "ActionAccessSpecification": { + "@id": "schema:ActionAccessSpecification" + }, + "ActionStatusType": { + "@id": "schema:ActionStatusType" + }, + "ActivateAction": { + "@id": "schema:ActivateAction" + }, + "ActiveActionStatus": { + "@id": "schema:ActiveActionStatus" + }, + "ActiveNotRecruiting": { + "@id": "schema:ActiveNotRecruiting" + }, + "AddAction": { + "@id": "schema:AddAction" + }, + "AdministrativeArea": { + "@id": "schema:AdministrativeArea" + }, + "AdultEntertainment": { + "@id": "schema:AdultEntertainment" + }, + "AdvertiserContentArticle": { + "@id": "schema:AdvertiserContentArticle" + }, + "AerobicActivity": { + "@id": "schema:AerobicActivity" + }, + "AggregateOffer": { + "@id": "schema:AggregateOffer" + }, + "AggregateRating": { + "@id": "schema:AggregateRating" + }, + "AgreeAction": { + "@id": "schema:AgreeAction" + }, + "Airline": { + "@id": "schema:Airline" + }, + "Airport": { + "@id": "schema:Airport" + }, + "AlbumRelease": { + "@id": "schema:AlbumRelease" + }, + "AlignmentObject": { + "@id": "schema:AlignmentObject" + }, + "AllWheelDriveConfiguration": { + "@id": "schema:AllWheelDriveConfiguration" + }, + "AllocateAction": { + "@id": "schema:AllocateAction" + }, + "AmusementPark": { + "@id": "schema:AmusementPark" + }, + "AnaerobicActivity": { + "@id": "schema:AnaerobicActivity" + }, + "AnalysisNewsArticle": { + "@id": "schema:AnalysisNewsArticle" + }, + "AnatomicalStructure": { + "@id": "schema:AnatomicalStructure" + }, + "AnatomicalSystem": { + "@id": "schema:AnatomicalSystem" + }, + "Anesthesia": { + "@id": "schema:Anesthesia" + }, + "AnimalShelter": { + "@id": "schema:AnimalShelter" + }, + "Answer": { + "@id": "schema:Answer" + }, + "Apartment": { + "@id": "schema:Apartment" + }, + "ApartmentComplex": { + "@id": "schema:ApartmentComplex" + }, + "Appearance": { + "@id": "schema:Appearance" + }, + "AppendAction": { + "@id": "schema:AppendAction" + }, + "ApplyAction": { + "@id": "schema:ApplyAction" + }, + "ApprovedIndication": { + "@id": "schema:ApprovedIndication" + }, + "Aquarium": { + "@id": "schema:Aquarium" + }, + "ArchiveComponent": { + "@id": "schema:ArchiveComponent" + }, + "ArchiveOrganization": { + "@id": "schema:ArchiveOrganization" + }, + "ArriveAction": { + "@id": "schema:ArriveAction" + }, + "ArtGallery": { + "@id": "schema:ArtGallery" + }, + "Artery": { + "@id": "schema:Artery" + }, + "Article": { + "@id": "schema:Article" + }, + "AskAction": { + "@id": "schema:AskAction" + }, + "AskPublicNewsArticle": { + "@id": "schema:AskPublicNewsArticle" + }, + "AssessAction": { + "@id": "schema:AssessAction" + }, + "AssignAction": { + "@id": "schema:AssignAction" + }, + "Atlas": { + "@id": "schema:Atlas" + }, + "Attorney": { + "@id": "schema:Attorney" + }, + "Audience": { + "@id": "schema:Audience" + }, + "AudioObject": { + "@id": "schema:AudioObject" + }, + "Audiobook": { + "@id": "schema:Audiobook" + }, + "AudiobookFormat": { + "@id": "schema:AudiobookFormat" + }, + "AuthenticContent": { + "@id": "schema:AuthenticContent" + }, + "AuthoritativeLegalValue": { + "@id": "schema:AuthoritativeLegalValue" + }, + "AuthorizeAction": { + "@id": "schema:AuthorizeAction" + }, + "AutoBodyShop": { + "@id": "schema:AutoBodyShop" + }, + "AutoDealer": { + "@id": "schema:AutoDealer" + }, + "AutoPartsStore": { + "@id": "schema:AutoPartsStore" + }, + "AutoRental": { + "@id": "schema:AutoRental" + }, + "AutoRepair": { + "@id": "schema:AutoRepair" + }, + "AutoWash": { + "@id": "schema:AutoWash" + }, + "AutomatedTeller": { + "@id": "schema:AutomatedTeller" + }, + "AutomotiveBusiness": { + "@id": "schema:AutomotiveBusiness" + }, + "Ayurvedic": { + "@id": "schema:Ayurvedic" + }, + "BackgroundNewsArticle": { + "@id": "schema:BackgroundNewsArticle" + }, + "Bacteria": { + "@id": "schema:Bacteria" + }, + "Bakery": { + "@id": "schema:Bakery" + }, + "Balance": { + "@id": "schema:Balance" + }, + "BankAccount": { + "@id": "schema:BankAccount" + }, + "BankOrCreditUnion": { + "@id": "schema:BankOrCreditUnion" + }, + "BarOrPub": { + "@id": "schema:BarOrPub" + }, + "Barcode": { + "@id": "schema:Barcode" + }, + "BasicIncome": { + "@id": "schema:BasicIncome" + }, + "Beach": { + "@id": "schema:Beach" + }, + "BeautySalon": { + "@id": "schema:BeautySalon" + }, + "BedAndBreakfast": { + "@id": "schema:BedAndBreakfast" + }, + "BedDetails": { + "@id": "schema:BedDetails" + }, + "BedType": { + "@id": "schema:BedType" + }, + "BefriendAction": { + "@id": "schema:BefriendAction" + }, + "BenefitsHealthAspect": { + "@id": "schema:BenefitsHealthAspect" + }, + "BikeStore": { + "@id": "schema:BikeStore" + }, + "Blog": { + "@id": "schema:Blog" + }, + "BlogPosting": { + "@id": "schema:BlogPosting" + }, + "BloodTest": { + "@id": "schema:BloodTest" + }, + "BoardingPolicyType": { + "@id": "schema:BoardingPolicyType" + }, + "BoatReservation": { + "@id": "schema:BoatReservation" + }, + "BoatTerminal": { + "@id": "schema:BoatTerminal" + }, + "BoatTrip": { + "@id": "schema:BoatTrip" + }, + "BodyOfWater": { + "@id": "schema:BodyOfWater" + }, + "Bone": { + "@id": "schema:Bone" + }, + "Book": { + "@id": "schema:Book" + }, + "BookFormatType": { + "@id": "schema:BookFormatType" + }, + "BookSeries": { + "@id": "schema:BookSeries" + }, + "BookStore": { + "@id": "schema:BookStore" + }, + "BookmarkAction": { + "@id": "schema:BookmarkAction" + }, + "Boolean": { + "@id": "schema:Boolean" + }, + "BorrowAction": { + "@id": "schema:BorrowAction" + }, + "BowlingAlley": { + "@id": "schema:BowlingAlley" + }, + "BrainStructure": { + "@id": "schema:BrainStructure" + }, + "Brand": { + "@id": "schema:Brand" + }, + "BreadcrumbList": { + "@id": "schema:BreadcrumbList" + }, + "Brewery": { + "@id": "schema:Brewery" + }, + "Bridge": { + "@id": "schema:Bridge" + }, + "BroadcastChannel": { + "@id": "schema:BroadcastChannel" + }, + "BroadcastEvent": { + "@id": "schema:BroadcastEvent" + }, + "BroadcastFrequencySpecification": { + "@id": "schema:BroadcastFrequencySpecification" + }, + "BroadcastRelease": { + "@id": "schema:BroadcastRelease" + }, + "BroadcastService": { + "@id": "schema:BroadcastService" + }, + "BrokerageAccount": { + "@id": "schema:BrokerageAccount" + }, + "BuddhistTemple": { + "@id": "schema:BuddhistTemple" + }, + "BusOrCoach": { + "@id": "schema:BusOrCoach" + }, + "BusReservation": { + "@id": "schema:BusReservation" + }, + "BusStation": { + "@id": "schema:BusStation" + }, + "BusStop": { + "@id": "schema:BusStop" + }, + "BusTrip": { + "@id": "schema:BusTrip" + }, + "BusinessAudience": { + "@id": "schema:BusinessAudience" + }, + "BusinessEntityType": { + "@id": "schema:BusinessEntityType" + }, + "BusinessEvent": { + "@id": "schema:BusinessEvent" + }, + "BusinessFunction": { + "@id": "schema:BusinessFunction" + }, + "BusinessSupport": { + "@id": "schema:BusinessSupport" + }, + "BuyAction": { + "@id": "schema:BuyAction" + }, + "CDCPMDRecord": { + "@id": "schema:CDCPMDRecord" + }, + "CDFormat": { + "@id": "schema:CDFormat" + }, + "CT": { + "@id": "schema:CT" + }, + "CableOrSatelliteService": { + "@id": "schema:CableOrSatelliteService" + }, + "CafeOrCoffeeShop": { + "@id": "schema:CafeOrCoffeeShop" + }, + "Campground": { + "@id": "schema:Campground" + }, + "CampingPitch": { + "@id": "schema:CampingPitch" + }, + "Canal": { + "@id": "schema:Canal" + }, + "CancelAction": { + "@id": "schema:CancelAction" + }, + "Car": { + "@id": "schema:Car" + }, + "CarUsageType": { + "@id": "schema:CarUsageType" + }, + "Cardiovascular": { + "@id": "schema:Cardiovascular" + }, + "CardiovascularExam": { + "@id": "schema:CardiovascularExam" + }, + "CaseSeries": { + "@id": "schema:CaseSeries" + }, + "Casino": { + "@id": "schema:Casino" + }, + "CassetteFormat": { + "@id": "schema:CassetteFormat" + }, + "CategoryCode": { + "@id": "schema:CategoryCode" + }, + "CategoryCodeSet": { + "@id": "schema:CategoryCodeSet" + }, + "CatholicChurch": { + "@id": "schema:CatholicChurch" + }, + "CausesHealthAspect": { + "@id": "schema:CausesHealthAspect" + }, + "Cemetery": { + "@id": "schema:Cemetery" + }, + "Chapter": { + "@id": "schema:Chapter" + }, + "CharitableIncorporatedOrganization": { + "@id": "schema:CharitableIncorporatedOrganization" + }, + "CheckAction": { + "@id": "schema:CheckAction" + }, + "CheckInAction": { + "@id": "schema:CheckInAction" + }, + "CheckOutAction": { + "@id": "schema:CheckOutAction" + }, + "CheckoutPage": { + "@id": "schema:CheckoutPage" + }, + "ChildCare": { + "@id": "schema:ChildCare" + }, + "ChildrensEvent": { + "@id": "schema:ChildrensEvent" + }, + "Chiropractic": { + "@id": "schema:Chiropractic" + }, + "ChooseAction": { + "@id": "schema:ChooseAction" + }, + "Church": { + "@id": "schema:Church" + }, + "City": { + "@id": "schema:City" + }, + "CityHall": { + "@id": "schema:CityHall" + }, + "CivicStructure": { + "@id": "schema:CivicStructure" + }, + "Claim": { + "@id": "schema:Claim" + }, + "ClaimReview": { + "@id": "schema:ClaimReview" + }, + "Class": { + "@id": "schema:Class" + }, + "Clinician": { + "@id": "schema:Clinician" + }, + "Clip": { + "@id": "schema:Clip" + }, + "ClothingStore": { + "@id": "schema:ClothingStore" + }, + "CoOp": { + "@id": "schema:CoOp" + }, + "Code": { + "@id": "schema:Code" + }, + "CohortStudy": { + "@id": "schema:CohortStudy" + }, + "Collection": { + "@id": "schema:Collection" + }, + "CollectionPage": { + "@id": "schema:CollectionPage" + }, + "CollegeOrUniversity": { + "@id": "schema:CollegeOrUniversity" + }, + "ComedyClub": { + "@id": "schema:ComedyClub" + }, + "ComedyEvent": { + "@id": "schema:ComedyEvent" + }, + "ComicCoverArt": { + "@id": "schema:ComicCoverArt" + }, + "ComicIssue": { + "@id": "schema:ComicIssue" + }, + "ComicSeries": { + "@id": "schema:ComicSeries" + }, + "ComicStory": { + "@id": "schema:ComicStory" + }, + "Comment": { + "@id": "schema:Comment" + }, + "CommentAction": { + "@id": "schema:CommentAction" + }, + "CommentPermission": { + "@id": "schema:CommentPermission" + }, + "CommunicateAction": { + "@id": "schema:CommunicateAction" + }, + "CommunityHealth": { + "@id": "schema:CommunityHealth" + }, + "CompilationAlbum": { + "@id": "schema:CompilationAlbum" + }, + "CompleteDataFeed": { + "@id": "schema:CompleteDataFeed" + }, + "Completed": { + "@id": "schema:Completed" + }, + "CompletedActionStatus": { + "@id": "schema:CompletedActionStatus" + }, + "CompoundPriceSpecification": { + "@id": "schema:CompoundPriceSpecification" + }, + "ComputerLanguage": { + "@id": "schema:ComputerLanguage" + }, + "ComputerStore": { + "@id": "schema:ComputerStore" + }, + "ConfirmAction": { + "@id": "schema:ConfirmAction" + }, + "Consortium": { + "@id": "schema:Consortium" + }, + "ConsumeAction": { + "@id": "schema:ConsumeAction" + }, + "ContactPage": { + "@id": "schema:ContactPage" + }, + "ContactPoint": { + "@id": "schema:ContactPoint" + }, + "ContactPointOption": { + "@id": "schema:ContactPointOption" + }, + "ContagiousnessHealthAspect": { + "@id": "schema:ContagiousnessHealthAspect" + }, + "Continent": { + "@id": "schema:Continent" + }, + "ControlAction": { + "@id": "schema:ControlAction" + }, + "ConvenienceStore": { + "@id": "schema:ConvenienceStore" + }, + "Conversation": { + "@id": "schema:Conversation" + }, + "CookAction": { + "@id": "schema:CookAction" + }, + "Corporation": { + "@id": "schema:Corporation" + }, + "CorrectionComment": { + "@id": "schema:CorrectionComment" + }, + "Country": { + "@id": "schema:Country" + }, + "Course": { + "@id": "schema:Course" + }, + "CourseInstance": { + "@id": "schema:CourseInstance" + }, + "Courthouse": { + "@id": "schema:Courthouse" + }, + "CoverArt": { + "@id": "schema:CoverArt" + }, + "CovidTestingFacility": { + "@id": "schema:CovidTestingFacility" + }, + "CreateAction": { + "@id": "schema:CreateAction" + }, + "CreativeWork": { + "@id": "schema:CreativeWork" + }, + "CreativeWorkSeason": { + "@id": "schema:CreativeWorkSeason" + }, + "CreativeWorkSeries": { + "@id": "schema:CreativeWorkSeries" + }, + "CreditCard": { + "@id": "schema:CreditCard" + }, + "Crematorium": { + "@id": "schema:Crematorium" + }, + "CriticReview": { + "@id": "schema:CriticReview" + }, + "CrossSectional": { + "@id": "schema:CrossSectional" + }, + "CssSelectorType": { + "@id": "schema:CssSelectorType" + }, + "CurrencyConversionService": { + "@id": "schema:CurrencyConversionService" + }, + "DDxElement": { + "@id": "schema:DDxElement" + }, + "DJMixAlbum": { + "@id": "schema:DJMixAlbum" + }, + "DVDFormat": { + "@id": "schema:DVDFormat" + }, + "DamagedCondition": { + "@id": "schema:DamagedCondition" + }, + "DanceEvent": { + "@id": "schema:DanceEvent" + }, + "DanceGroup": { + "@id": "schema:DanceGroup" + }, + "DataCatalog": { + "@id": "schema:DataCatalog" + }, + "DataDownload": { + "@id": "schema:DataDownload" + }, + "DataFeed": { + "@id": "schema:DataFeed" + }, + "DataFeedItem": { + "@id": "schema:DataFeedItem" + }, + "DataType": { + "@id": "schema:DataType" + }, + "Dataset": { + "@id": "schema:Dataset" + }, + "Date": { + "@id": "schema:Date" + }, + "DateTime": { + "@id": "schema:DateTime" + }, + "DatedMoneySpecification": { + "@id": "schema:DatedMoneySpecification" + }, + "DayOfWeek": { + "@id": "schema:DayOfWeek" + }, + "DaySpa": { + "@id": "schema:DaySpa" + }, + "DeactivateAction": { + "@id": "schema:DeactivateAction" + }, + "DefenceEstablishment": { + "@id": "schema:DefenceEstablishment" + }, + "DefinedRegion": { + "@id": "schema:DefinedRegion" + }, + "DefinedTerm": { + "@id": "schema:DefinedTerm" + }, + "DefinedTermSet": { + "@id": "schema:DefinedTermSet" + }, + "DefinitiveLegalValue": { + "@id": "schema:DefinitiveLegalValue" + }, + "DeleteAction": { + "@id": "schema:DeleteAction" + }, + "DeliveryChargeSpecification": { + "@id": "schema:DeliveryChargeSpecification" + }, + "DeliveryEvent": { + "@id": "schema:DeliveryEvent" + }, + "DeliveryMethod": { + "@id": "schema:DeliveryMethod" + }, + "DeliveryTimeSettings": { + "@id": "schema:DeliveryTimeSettings" + }, + "Demand": { + "@id": "schema:Demand" + }, + "DemoAlbum": { + "@id": "schema:DemoAlbum" + }, + "Dentist": { + "@id": "schema:Dentist" + }, + "Dentistry": { + "@id": "schema:Dentistry" + }, + "DepartAction": { + "@id": "schema:DepartAction" + }, + "DepartmentStore": { + "@id": "schema:DepartmentStore" + }, + "DepositAccount": { + "@id": "schema:DepositAccount" + }, + "Dermatologic": { + "@id": "schema:Dermatologic" + }, + "Dermatology": { + "@id": "schema:Dermatology" + }, + "DiabeticDiet": { + "@id": "schema:DiabeticDiet" + }, + "Diagnostic": { + "@id": "schema:Diagnostic" + }, + "DiagnosticLab": { + "@id": "schema:DiagnosticLab" + }, + "DiagnosticProcedure": { + "@id": "schema:DiagnosticProcedure" + }, + "Diet": { + "@id": "schema:Diet" + }, + "DietNutrition": { + "@id": "schema:DietNutrition" + }, + "DietarySupplement": { + "@id": "schema:DietarySupplement" + }, + "DigitalAudioTapeFormat": { + "@id": "schema:DigitalAudioTapeFormat" + }, + "DigitalDocument": { + "@id": "schema:DigitalDocument" + }, + "DigitalDocumentPermission": { + "@id": "schema:DigitalDocumentPermission" + }, + "DigitalDocumentPermissionType": { + "@id": "schema:DigitalDocumentPermissionType" + }, + "DigitalFormat": { + "@id": "schema:DigitalFormat" + }, + "DisabilitySupport": { + "@id": "schema:DisabilitySupport" + }, + "DisagreeAction": { + "@id": "schema:DisagreeAction" + }, + "Discontinued": { + "@id": "schema:Discontinued" + }, + "DiscoverAction": { + "@id": "schema:DiscoverAction" + }, + "DiscussionForumPosting": { + "@id": "schema:DiscussionForumPosting" + }, + "DislikeAction": { + "@id": "schema:DislikeAction" + }, + "Distance": { + "@id": "schema:Distance" + }, + "Distillery": { + "@id": "schema:Distillery" + }, + "DonateAction": { + "@id": "schema:DonateAction" + }, + "DoseSchedule": { + "@id": "schema:DoseSchedule" + }, + "DoubleBlindedTrial": { + "@id": "schema:DoubleBlindedTrial" + }, + "DownloadAction": { + "@id": "schema:DownloadAction" + }, + "DrawAction": { + "@id": "schema:DrawAction" + }, + "Drawing": { + "@id": "schema:Drawing" + }, + "DrinkAction": { + "@id": "schema:DrinkAction" + }, + "DriveWheelConfigurationValue": { + "@id": "schema:DriveWheelConfigurationValue" + }, + "DrivingSchoolVehicleUsage": { + "@id": "schema:DrivingSchoolVehicleUsage" + }, + "Drug": { + "@id": "schema:Drug" + }, + "DrugClass": { + "@id": "schema:DrugClass" + }, + "DrugCost": { + "@id": "schema:DrugCost" + }, + "DrugCostCategory": { + "@id": "schema:DrugCostCategory" + }, + "DrugLegalStatus": { + "@id": "schema:DrugLegalStatus" + }, + "DrugPregnancyCategory": { + "@id": "schema:DrugPregnancyCategory" + }, + "DrugPrescriptionStatus": { + "@id": "schema:DrugPrescriptionStatus" + }, + "DrugStrength": { + "@id": "schema:DrugStrength" + }, + "DryCleaningOrLaundry": { + "@id": "schema:DryCleaningOrLaundry" + }, + "Duration": { + "@id": "schema:Duration" + }, + "EBook": { + "@id": "schema:EBook" + }, + "EPRelease": { + "@id": "schema:EPRelease" + }, + "EUEnergyEfficiencyCategoryA": { + "@id": "schema:EUEnergyEfficiencyCategoryA" + }, + "EUEnergyEfficiencyCategoryA1Plus": { + "@id": "schema:EUEnergyEfficiencyCategoryA1Plus" + }, + "EUEnergyEfficiencyCategoryA2Plus": { + "@id": "schema:EUEnergyEfficiencyCategoryA2Plus" + }, + "EUEnergyEfficiencyCategoryA3Plus": { + "@id": "schema:EUEnergyEfficiencyCategoryA3Plus" + }, + "EUEnergyEfficiencyCategoryB": { + "@id": "schema:EUEnergyEfficiencyCategoryB" + }, + "EUEnergyEfficiencyCategoryC": { + "@id": "schema:EUEnergyEfficiencyCategoryC" + }, + "EUEnergyEfficiencyCategoryD": { + "@id": "schema:EUEnergyEfficiencyCategoryD" + }, + "EUEnergyEfficiencyCategoryE": { + "@id": "schema:EUEnergyEfficiencyCategoryE" + }, + "EUEnergyEfficiencyCategoryF": { + "@id": "schema:EUEnergyEfficiencyCategoryF" + }, + "EUEnergyEfficiencyCategoryG": { + "@id": "schema:EUEnergyEfficiencyCategoryG" + }, + "EUEnergyEfficiencyEnumeration": { + "@id": "schema:EUEnergyEfficiencyEnumeration" + }, + "Ear": { + "@id": "schema:Ear" + }, + "EatAction": { + "@id": "schema:EatAction" + }, + "EducationEvent": { + "@id": "schema:EducationEvent" + }, + "EducationalAudience": { + "@id": "schema:EducationalAudience" + }, + "EducationalOccupationalCredential": { + "@id": "schema:EducationalOccupationalCredential" + }, + "EducationalOccupationalProgram": { + "@id": "schema:EducationalOccupationalProgram" + }, + "EducationalOrganization": { + "@id": "schema:EducationalOrganization" + }, + "Electrician": { + "@id": "schema:Electrician" + }, + "ElectronicsStore": { + "@id": "schema:ElectronicsStore" + }, + "ElementarySchool": { + "@id": "schema:ElementarySchool" + }, + "EmailMessage": { + "@id": "schema:EmailMessage" + }, + "Embassy": { + "@id": "schema:Embassy" + }, + "Emergency": { + "@id": "schema:Emergency" + }, + "EmergencyService": { + "@id": "schema:EmergencyService" + }, + "EmployeeRole": { + "@id": "schema:EmployeeRole" + }, + "EmployerAggregateRating": { + "@id": "schema:EmployerAggregateRating" + }, + "EmployerReview": { + "@id": "schema:EmployerReview" + }, + "EmploymentAgency": { + "@id": "schema:EmploymentAgency" + }, + "Endocrine": { + "@id": "schema:Endocrine" + }, + "EndorseAction": { + "@id": "schema:EndorseAction" + }, + "EndorsementRating": { + "@id": "schema:EndorsementRating" + }, + "Energy": { + "@id": "schema:Energy" + }, + "EnergyConsumptionDetails": { + "@id": "schema:EnergyConsumptionDetails" + }, + "EnergyEfficiencyEnumeration": { + "@id": "schema:EnergyEfficiencyEnumeration" + }, + "EnergyStarCertified": { + "@id": "schema:EnergyStarCertified" + }, + "EnergyStarEnergyEfficiencyEnumeration": { + "@id": "schema:EnergyStarEnergyEfficiencyEnumeration" + }, + "EngineSpecification": { + "@id": "schema:EngineSpecification" + }, + "EnrollingByInvitation": { + "@id": "schema:EnrollingByInvitation" + }, + "EntertainmentBusiness": { + "@id": "schema:EntertainmentBusiness" + }, + "EntryPoint": { + "@id": "schema:EntryPoint" + }, + "Enumeration": { + "@id": "schema:Enumeration" + }, + "Episode": { + "@id": "schema:Episode" + }, + "Event": { + "@id": "schema:Event" + }, + "EventAttendanceModeEnumeration": { + "@id": "schema:EventAttendanceModeEnumeration" + }, + "EventCancelled": { + "@id": "schema:EventCancelled" + }, + "EventMovedOnline": { + "@id": "schema:EventMovedOnline" + }, + "EventPostponed": { + "@id": "schema:EventPostponed" + }, + "EventRescheduled": { + "@id": "schema:EventRescheduled" + }, + "EventReservation": { + "@id": "schema:EventReservation" + }, + "EventScheduled": { + "@id": "schema:EventScheduled" + }, + "EventSeries": { + "@id": "schema:EventSeries" + }, + "EventStatusType": { + "@id": "schema:EventStatusType" + }, + "EventVenue": { + "@id": "schema:EventVenue" + }, + "EvidenceLevelA": { + "@id": "schema:EvidenceLevelA" + }, + "EvidenceLevelB": { + "@id": "schema:EvidenceLevelB" + }, + "EvidenceLevelC": { + "@id": "schema:EvidenceLevelC" + }, + "ExchangeRateSpecification": { + "@id": "schema:ExchangeRateSpecification" + }, + "ExchangeRefund": { + "@id": "schema:ExchangeRefund" + }, + "ExerciseAction": { + "@id": "schema:ExerciseAction" + }, + "ExerciseGym": { + "@id": "schema:ExerciseGym" + }, + "ExercisePlan": { + "@id": "schema:ExercisePlan" + }, + "ExhibitionEvent": { + "@id": "schema:ExhibitionEvent" + }, + "Eye": { + "@id": "schema:Eye" + }, + "FAQPage": { + "@id": "schema:FAQPage" + }, + "FDAcategoryA": { + "@id": "schema:FDAcategoryA" + }, + "FDAcategoryB": { + "@id": "schema:FDAcategoryB" + }, + "FDAcategoryC": { + "@id": "schema:FDAcategoryC" + }, + "FDAcategoryD": { + "@id": "schema:FDAcategoryD" + }, + "FDAcategoryX": { + "@id": "schema:FDAcategoryX" + }, + "FDAnotEvaluated": { + "@id": "schema:FDAnotEvaluated" + }, + "FMRadioChannel": { + "@id": "schema:FMRadioChannel" + }, + "FailedActionStatus": { + "@id": "schema:FailedActionStatus" + }, + "False": { + "@id": "schema:False" + }, + "FastFoodRestaurant": { + "@id": "schema:FastFoodRestaurant" + }, + "Female": { + "@id": "schema:Female" + }, + "Festival": { + "@id": "schema:Festival" + }, + "FilmAction": { + "@id": "schema:FilmAction" + }, + "FinancialProduct": { + "@id": "schema:FinancialProduct" + }, + "FinancialService": { + "@id": "schema:FinancialService" + }, + "FindAction": { + "@id": "schema:FindAction" + }, + "FireStation": { + "@id": "schema:FireStation" + }, + "Flexibility": { + "@id": "schema:Flexibility" + }, + "Flight": { + "@id": "schema:Flight" + }, + "FlightReservation": { + "@id": "schema:FlightReservation" + }, + "Float": { + "@id": "schema:Float" + }, + "FloorPlan": { + "@id": "schema:FloorPlan" + }, + "Florist": { + "@id": "schema:Florist" + }, + "FollowAction": { + "@id": "schema:FollowAction" + }, + "FoodEstablishment": { + "@id": "schema:FoodEstablishment" + }, + "FoodEstablishmentReservation": { + "@id": "schema:FoodEstablishmentReservation" + }, + "FoodEvent": { + "@id": "schema:FoodEvent" + }, + "FoodService": { + "@id": "schema:FoodService" + }, + "FourWheelDriveConfiguration": { + "@id": "schema:FourWheelDriveConfiguration" + }, + "Friday": { + "@id": "schema:Friday" + }, + "FrontWheelDriveConfiguration": { + "@id": "schema:FrontWheelDriveConfiguration" + }, + "FullRefund": { + "@id": "schema:FullRefund" + }, + "FundingAgency": { + "@id": "schema:FundingAgency" + }, + "FundingScheme": { + "@id": "schema:FundingScheme" + }, + "Fungus": { + "@id": "schema:Fungus" + }, + "FurnitureStore": { + "@id": "schema:FurnitureStore" + }, + "Game": { + "@id": "schema:Game" + }, + "GamePlayMode": { + "@id": "schema:GamePlayMode" + }, + "GameServer": { + "@id": "schema:GameServer" + }, + "GameServerStatus": { + "@id": "schema:GameServerStatus" + }, + "GardenStore": { + "@id": "schema:GardenStore" + }, + "GasStation": { + "@id": "schema:GasStation" + }, + "Gastroenterologic": { + "@id": "schema:Gastroenterologic" + }, + "GatedResidenceCommunity": { + "@id": "schema:GatedResidenceCommunity" + }, + "GenderType": { + "@id": "schema:GenderType" + }, + "GeneralContractor": { + "@id": "schema:GeneralContractor" + }, + "Genetic": { + "@id": "schema:Genetic" + }, + "Genitourinary": { + "@id": "schema:Genitourinary" + }, + "GeoCircle": { + "@id": "schema:GeoCircle" + }, + "GeoCoordinates": { + "@id": "schema:GeoCoordinates" + }, + "GeoShape": { + "@id": "schema:GeoShape" + }, + "GeospatialGeometry": { + "@id": "schema:GeospatialGeometry" + }, + "Geriatric": { + "@id": "schema:Geriatric" + }, + "GiveAction": { + "@id": "schema:GiveAction" + }, + "GlutenFreeDiet": { + "@id": "schema:GlutenFreeDiet" + }, + "GolfCourse": { + "@id": "schema:GolfCourse" + }, + "GovernmentBenefitsType": { + "@id": "schema:GovernmentBenefitsType" + }, + "GovernmentBuilding": { + "@id": "schema:GovernmentBuilding" + }, + "GovernmentOffice": { + "@id": "schema:GovernmentOffice" + }, + "GovernmentOrganization": { + "@id": "schema:GovernmentOrganization" + }, + "GovernmentPermit": { + "@id": "schema:GovernmentPermit" + }, + "GovernmentService": { + "@id": "schema:GovernmentService" + }, + "Grant": { + "@id": "schema:Grant" + }, + "GraphicNovel": { + "@id": "schema:GraphicNovel" + }, + "GroceryStore": { + "@id": "schema:GroceryStore" + }, + "GroupBoardingPolicy": { + "@id": "schema:GroupBoardingPolicy" + }, + "Guide": { + "@id": "schema:Guide" + }, + "Gynecologic": { + "@id": "schema:Gynecologic" + }, + "HTML": { + "@id": "rdf:HTML" + }, + "HVACBusiness": { + "@id": "schema:HVACBusiness" + }, + "Hackathon": { + "@id": "schema:Hackathon" + }, + "HairSalon": { + "@id": "schema:HairSalon" + }, + "HalalDiet": { + "@id": "schema:HalalDiet" + }, + "Hardcover": { + "@id": "schema:Hardcover" + }, + "HardwareStore": { + "@id": "schema:HardwareStore" + }, + "Head": { + "@id": "schema:Head" + }, + "HealthAndBeautyBusiness": { + "@id": "schema:HealthAndBeautyBusiness" + }, + "HealthAspectEnumeration": { + "@id": "schema:HealthAspectEnumeration" + }, + "HealthCare": { + "@id": "schema:HealthCare" + }, + "HealthClub": { + "@id": "schema:HealthClub" + }, + "HealthInsurancePlan": { + "@id": "schema:HealthInsurancePlan" + }, + "HealthPlanCostSharingSpecification": { + "@id": "schema:HealthPlanCostSharingSpecification" + }, + "HealthPlanFormulary": { + "@id": "schema:HealthPlanFormulary" + }, + "HealthPlanNetwork": { + "@id": "schema:HealthPlanNetwork" + }, + "HealthTopicContent": { + "@id": "schema:HealthTopicContent" + }, + "HearingImpairedSupported": { + "@id": "schema:HearingImpairedSupported" + }, + "Hematologic": { + "@id": "schema:Hematologic" + }, + "HighSchool": { + "@id": "schema:HighSchool" + }, + "HinduDiet": { + "@id": "schema:HinduDiet" + }, + "HinduTemple": { + "@id": "schema:HinduTemple" + }, + "HobbyShop": { + "@id": "schema:HobbyShop" + }, + "HomeAndConstructionBusiness": { + "@id": "schema:HomeAndConstructionBusiness" + }, + "HomeGoodsStore": { + "@id": "schema:HomeGoodsStore" + }, + "Homeopathic": { + "@id": "schema:Homeopathic" + }, + "Hospital": { + "@id": "schema:Hospital" + }, + "Hostel": { + "@id": "schema:Hostel" + }, + "Hotel": { + "@id": "schema:Hotel" + }, + "HotelRoom": { + "@id": "schema:HotelRoom" + }, + "House": { + "@id": "schema:House" + }, + "HousePainter": { + "@id": "schema:HousePainter" + }, + "HowOrWhereHealthAspect": { + "@id": "schema:HowOrWhereHealthAspect" + }, + "HowTo": { + "@id": "schema:HowTo" + }, + "HowToDirection": { + "@id": "schema:HowToDirection" + }, + "HowToItem": { + "@id": "schema:HowToItem" + }, + "HowToSection": { + "@id": "schema:HowToSection" + }, + "HowToStep": { + "@id": "schema:HowToStep" + }, + "HowToSupply": { + "@id": "schema:HowToSupply" + }, + "HowToTip": { + "@id": "schema:HowToTip" + }, + "HowToTool": { + "@id": "schema:HowToTool" + }, + "IceCreamShop": { + "@id": "schema:IceCreamShop" + }, + "IgnoreAction": { + "@id": "schema:IgnoreAction" + }, + "ImageGallery": { + "@id": "schema:ImageGallery" + }, + "ImageObject": { + "@id": "schema:ImageObject" + }, + "ImagingTest": { + "@id": "schema:ImagingTest" + }, + "InForce": { + "@id": "schema:InForce" + }, + "InStock": { + "@id": "schema:InStock" + }, + "InStoreOnly": { + "@id": "schema:InStoreOnly" + }, + "IndividualProduct": { + "@id": "schema:IndividualProduct" + }, + "Infectious": { + "@id": "schema:Infectious" + }, + "InfectiousAgentClass": { + "@id": "schema:InfectiousAgentClass" + }, + "InfectiousDisease": { + "@id": "schema:InfectiousDisease" + }, + "InformAction": { + "@id": "schema:InformAction" + }, + "InsertAction": { + "@id": "schema:InsertAction" + }, + "InstallAction": { + "@id": "schema:InstallAction" + }, + "InsuranceAgency": { + "@id": "schema:InsuranceAgency" + }, + "Intangible": { + "@id": "schema:Intangible" + }, + "Integer": { + "@id": "schema:Integer" + }, + "InteractAction": { + "@id": "schema:InteractAction" + }, + "InteractionCounter": { + "@id": "schema:InteractionCounter" + }, + "InternationalTrial": { + "@id": "schema:InternationalTrial" + }, + "InternetCafe": { + "@id": "schema:InternetCafe" + }, + "InvestmentFund": { + "@id": "schema:InvestmentFund" + }, + "InvestmentOrDeposit": { + "@id": "schema:InvestmentOrDeposit" + }, + "InviteAction": { + "@id": "schema:InviteAction" + }, + "Invoice": { + "@id": "schema:Invoice" + }, + "ItemAvailability": { + "@id": "schema:ItemAvailability" + }, + "ItemList": { + "@id": "schema:ItemList" + }, + "ItemListOrderAscending": { + "@id": "schema:ItemListOrderAscending" + }, + "ItemListOrderDescending": { + "@id": "schema:ItemListOrderDescending" + }, + "ItemListOrderType": { + "@id": "schema:ItemListOrderType" + }, + "ItemListUnordered": { + "@id": "schema:ItemListUnordered" + }, + "ItemPage": { + "@id": "schema:ItemPage" + }, + "JewelryStore": { + "@id": "schema:JewelryStore" + }, + "JobPosting": { + "@id": "schema:JobPosting" + }, + "JoinAction": { + "@id": "schema:JoinAction" + }, + "Joint": { + "@id": "schema:Joint" + }, + "KosherDiet": { + "@id": "schema:KosherDiet" + }, + "LaboratoryScience": { + "@id": "schema:LaboratoryScience" + }, + "LakeBodyOfWater": { + "@id": "schema:LakeBodyOfWater" + }, + "Landform": { + "@id": "schema:Landform" + }, + "LandmarksOrHistoricalBuildings": { + "@id": "schema:LandmarksOrHistoricalBuildings" + }, + "Language": { + "@id": "schema:Language" + }, + "LaserDiscFormat": { + "@id": "schema:LaserDiscFormat" + }, + "LearningResource": { + "@id": "schema:LearningResource" + }, + "LeaveAction": { + "@id": "schema:LeaveAction" + }, + "LeftHandDriving": { + "@id": "schema:LeftHandDriving" + }, + "LegalForceStatus": { + "@id": "schema:LegalForceStatus" + }, + "LegalService": { + "@id": "schema:LegalService" + }, + "LegalValueLevel": { + "@id": "schema:LegalValueLevel" + }, + "Legislation": { + "@id": "schema:Legislation" + }, + "LegislationObject": { + "@id": "schema:LegislationObject" + }, + "LegislativeBuilding": { + "@id": "schema:LegislativeBuilding" + }, + "LeisureTimeActivity": { + "@id": "schema:LeisureTimeActivity" + }, + "LendAction": { + "@id": "schema:LendAction" + }, + "Library": { + "@id": "schema:Library" + }, + "LibrarySystem": { + "@id": "schema:LibrarySystem" + }, + "LifestyleModification": { + "@id": "schema:LifestyleModification" + }, + "Ligament": { + "@id": "schema:Ligament" + }, + "LikeAction": { + "@id": "schema:LikeAction" + }, + "LimitedAvailability": { + "@id": "schema:LimitedAvailability" + }, + "LimitedByGuaranteeCharity": { + "@id": "schema:LimitedByGuaranteeCharity" + }, + "LinkRole": { + "@id": "schema:LinkRole" + }, + "LiquorStore": { + "@id": "schema:LiquorStore" + }, + "ListItem": { + "@id": "schema:ListItem" + }, + "ListenAction": { + "@id": "schema:ListenAction" + }, + "LiteraryEvent": { + "@id": "schema:LiteraryEvent" + }, + "LiveAlbum": { + "@id": "schema:LiveAlbum" + }, + "LiveBlogPosting": { + "@id": "schema:LiveBlogPosting" + }, + "LivingWithHealthAspect": { + "@id": "schema:LivingWithHealthAspect" + }, + "LoanOrCredit": { + "@id": "schema:LoanOrCredit" + }, + "LocalBusiness": { + "@id": "schema:LocalBusiness" + }, + "LocationFeatureSpecification": { + "@id": "schema:LocationFeatureSpecification" + }, + "LockerDelivery": { + "@id": "schema:LockerDelivery" + }, + "Locksmith": { + "@id": "schema:Locksmith" + }, + "LodgingBusiness": { + "@id": "schema:LodgingBusiness" + }, + "LodgingReservation": { + "@id": "schema:LodgingReservation" + }, + "Longitudinal": { + "@id": "schema:Longitudinal" + }, + "LoseAction": { + "@id": "schema:LoseAction" + }, + "LowCalorieDiet": { + "@id": "schema:LowCalorieDiet" + }, + "LowFatDiet": { + "@id": "schema:LowFatDiet" + }, + "LowLactoseDiet": { + "@id": "schema:LowLactoseDiet" + }, + "LowSaltDiet": { + "@id": "schema:LowSaltDiet" + }, + "Lung": { + "@id": "schema:Lung" + }, + "LymphaticVessel": { + "@id": "schema:LymphaticVessel" + }, + "MRI": { + "@id": "schema:MRI" + }, + "Male": { + "@id": "schema:Male" + }, + "Manuscript": { + "@id": "schema:Manuscript" + }, + "Map": { + "@id": "schema:Map" + }, + "MapCategoryType": { + "@id": "schema:MapCategoryType" + }, + "MarryAction": { + "@id": "schema:MarryAction" + }, + "Mass": { + "@id": "schema:Mass" + }, + "MaximumDoseSchedule": { + "@id": "schema:MaximumDoseSchedule" + }, + "MayTreatHealthAspect": { + "@id": "schema:MayTreatHealthAspect" + }, + "MediaGallery": { + "@id": "schema:MediaGallery" + }, + "MediaManipulationRatingEnumeration": { + "@id": "schema:MediaManipulationRatingEnumeration" + }, + "MediaObject": { + "@id": "schema:MediaObject" + }, + "MediaReview": { + "@id": "schema:MediaReview" + }, + "MediaSubscription": { + "@id": "schema:MediaSubscription" + }, + "MedicalAudience": { + "@id": "schema:MedicalAudience" + }, + "MedicalAudienceType": { + "@id": "schema:MedicalAudienceType" + }, + "MedicalBusiness": { + "@id": "schema:MedicalBusiness" + }, + "MedicalCause": { + "@id": "schema:MedicalCause" + }, + "MedicalClinic": { + "@id": "schema:MedicalClinic" + }, + "MedicalCode": { + "@id": "schema:MedicalCode" + }, + "MedicalCondition": { + "@id": "schema:MedicalCondition" + }, + "MedicalConditionStage": { + "@id": "schema:MedicalConditionStage" + }, + "MedicalContraindication": { + "@id": "schema:MedicalContraindication" + }, + "MedicalDevice": { + "@id": "schema:MedicalDevice" + }, + "MedicalDevicePurpose": { + "@id": "schema:MedicalDevicePurpose" + }, + "MedicalEntity": { + "@id": "schema:MedicalEntity" + }, + "MedicalEnumeration": { + "@id": "schema:MedicalEnumeration" + }, + "MedicalEvidenceLevel": { + "@id": "schema:MedicalEvidenceLevel" + }, + "MedicalGuideline": { + "@id": "schema:MedicalGuideline" + }, + "MedicalGuidelineContraindication": { + "@id": "schema:MedicalGuidelineContraindication" + }, + "MedicalGuidelineRecommendation": { + "@id": "schema:MedicalGuidelineRecommendation" + }, + "MedicalImagingTechnique": { + "@id": "schema:MedicalImagingTechnique" + }, + "MedicalIndication": { + "@id": "schema:MedicalIndication" + }, + "MedicalIntangible": { + "@id": "schema:MedicalIntangible" + }, + "MedicalObservationalStudy": { + "@id": "schema:MedicalObservationalStudy" + }, + "MedicalObservationalStudyDesign": { + "@id": "schema:MedicalObservationalStudyDesign" + }, + "MedicalOrganization": { + "@id": "schema:MedicalOrganization" + }, + "MedicalProcedure": { + "@id": "schema:MedicalProcedure" + }, + "MedicalProcedureType": { + "@id": "schema:MedicalProcedureType" + }, + "MedicalResearcher": { + "@id": "schema:MedicalResearcher" + }, + "MedicalRiskCalculator": { + "@id": "schema:MedicalRiskCalculator" + }, + "MedicalRiskEstimator": { + "@id": "schema:MedicalRiskEstimator" + }, + "MedicalRiskFactor": { + "@id": "schema:MedicalRiskFactor" + }, + "MedicalRiskScore": { + "@id": "schema:MedicalRiskScore" + }, + "MedicalScholarlyArticle": { + "@id": "schema:MedicalScholarlyArticle" + }, + "MedicalSign": { + "@id": "schema:MedicalSign" + }, + "MedicalSignOrSymptom": { + "@id": "schema:MedicalSignOrSymptom" + }, + "MedicalSpecialty": { + "@id": "schema:MedicalSpecialty" + }, + "MedicalStudy": { + "@id": "schema:MedicalStudy" + }, + "MedicalStudyStatus": { + "@id": "schema:MedicalStudyStatus" + }, + "MedicalSymptom": { + "@id": "schema:MedicalSymptom" + }, + "MedicalTest": { + "@id": "schema:MedicalTest" + }, + "MedicalTestPanel": { + "@id": "schema:MedicalTestPanel" + }, + "MedicalTherapy": { + "@id": "schema:MedicalTherapy" + }, + "MedicalTrial": { + "@id": "schema:MedicalTrial" + }, + "MedicalTrialDesign": { + "@id": "schema:MedicalTrialDesign" + }, + "MedicalWebPage": { + "@id": "schema:MedicalWebPage" + }, + "MedicineSystem": { + "@id": "schema:MedicineSystem" + }, + "MeetingRoom": { + "@id": "schema:MeetingRoom" + }, + "MensClothingStore": { + "@id": "schema:MensClothingStore" + }, + "Menu": { + "@id": "schema:Menu" + }, + "MenuItem": { + "@id": "schema:MenuItem" + }, + "MenuSection": { + "@id": "schema:MenuSection" + }, + "MerchantReturnEnumeration": { + "@id": "schema:MerchantReturnEnumeration" + }, + "MerchantReturnFiniteReturnWindow": { + "@id": "schema:MerchantReturnFiniteReturnWindow" + }, + "MerchantReturnNotPermitted": { + "@id": "schema:MerchantReturnNotPermitted" + }, + "MerchantReturnPolicy": { + "@id": "schema:MerchantReturnPolicy" + }, + "MerchantReturnUnlimitedWindow": { + "@id": "schema:MerchantReturnUnlimitedWindow" + }, + "MerchantReturnUnspecified": { + "@id": "schema:MerchantReturnUnspecified" + }, + "Message": { + "@id": "schema:Message" + }, + "MiddleSchool": { + "@id": "schema:MiddleSchool" + }, + "Midwifery": { + "@id": "schema:Midwifery" + }, + "MisconceptionsHealthAspect": { + "@id": "schema:MisconceptionsHealthAspect" + }, + "MissingContext": { + "@id": "schema:MissingContext" + }, + "MixedEventAttendanceMode": { + "@id": "schema:MixedEventAttendanceMode" + }, + "MixtapeAlbum": { + "@id": "schema:MixtapeAlbum" + }, + "MobileApplication": { + "@id": "schema:MobileApplication" + }, + "MobilePhoneStore": { + "@id": "schema:MobilePhoneStore" + }, + "Monday": { + "@id": "schema:Monday" + }, + "MonetaryAmount": { + "@id": "schema:MonetaryAmount" + }, + "MonetaryAmountDistribution": { + "@id": "schema:MonetaryAmountDistribution" + }, + "MonetaryGrant": { + "@id": "schema:MonetaryGrant" + }, + "MoneyTransfer": { + "@id": "schema:MoneyTransfer" + }, + "MortgageLoan": { + "@id": "schema:MortgageLoan" + }, + "Mosque": { + "@id": "schema:Mosque" + }, + "Motel": { + "@id": "schema:Motel" + }, + "Motorcycle": { + "@id": "schema:Motorcycle" + }, + "MotorcycleDealer": { + "@id": "schema:MotorcycleDealer" + }, + "MotorcycleRepair": { + "@id": "schema:MotorcycleRepair" + }, + "MotorizedBicycle": { + "@id": "schema:MotorizedBicycle" + }, + "Mountain": { + "@id": "schema:Mountain" + }, + "MoveAction": { + "@id": "schema:MoveAction" + }, + "Movie": { + "@id": "schema:Movie" + }, + "MovieClip": { + "@id": "schema:MovieClip" + }, + "MovieRentalStore": { + "@id": "schema:MovieRentalStore" + }, + "MovieSeries": { + "@id": "schema:MovieSeries" + }, + "MovieTheater": { + "@id": "schema:MovieTheater" + }, + "MovingCompany": { + "@id": "schema:MovingCompany" + }, + "MultiCenterTrial": { + "@id": "schema:MultiCenterTrial" + }, + "MultiPlayer": { + "@id": "schema:MultiPlayer" + }, + "MulticellularParasite": { + "@id": "schema:MulticellularParasite" + }, + "Muscle": { + "@id": "schema:Muscle" + }, + "Musculoskeletal": { + "@id": "schema:Musculoskeletal" + }, + "MusculoskeletalExam": { + "@id": "schema:MusculoskeletalExam" + }, + "Museum": { + "@id": "schema:Museum" + }, + "MusicAlbum": { + "@id": "schema:MusicAlbum" + }, + "MusicAlbumProductionType": { + "@id": "schema:MusicAlbumProductionType" + }, + "MusicAlbumReleaseType": { + "@id": "schema:MusicAlbumReleaseType" + }, + "MusicComposition": { + "@id": "schema:MusicComposition" + }, + "MusicEvent": { + "@id": "schema:MusicEvent" + }, + "MusicGroup": { + "@id": "schema:MusicGroup" + }, + "MusicPlaylist": { + "@id": "schema:MusicPlaylist" + }, + "MusicRecording": { + "@id": "schema:MusicRecording" + }, + "MusicRelease": { + "@id": "schema:MusicRelease" + }, + "MusicReleaseFormatType": { + "@id": "schema:MusicReleaseFormatType" + }, + "MusicStore": { + "@id": "schema:MusicStore" + }, + "MusicVenue": { + "@id": "schema:MusicVenue" + }, + "MusicVideoObject": { + "@id": "schema:MusicVideoObject" + }, + "NGO": { + "@id": "schema:NGO" + }, + "NLNonprofitType": { + "@id": "schema:NLNonprofitType" + }, + "NailSalon": { + "@id": "schema:NailSalon" + }, + "Neck": { + "@id": "schema:Neck" + }, + "Nerve": { + "@id": "schema:Nerve" + }, + "Neuro": { + "@id": "schema:Neuro" + }, + "Neurologic": { + "@id": "schema:Neurologic" + }, + "NewCondition": { + "@id": "schema:NewCondition" + }, + "NewsArticle": { + "@id": "schema:NewsArticle" + }, + "NewsMediaOrganization": { + "@id": "schema:NewsMediaOrganization" + }, + "Newspaper": { + "@id": "schema:Newspaper" + }, + "NightClub": { + "@id": "schema:NightClub" + }, + "NoninvasiveProcedure": { + "@id": "schema:NoninvasiveProcedure" + }, + "Nonprofit501a": { + "@id": "schema:Nonprofit501a" + }, + "Nonprofit501c1": { + "@id": "schema:Nonprofit501c1" + }, + "Nonprofit501c10": { + "@id": "schema:Nonprofit501c10" + }, + "Nonprofit501c11": { + "@id": "schema:Nonprofit501c11" + }, + "Nonprofit501c12": { + "@id": "schema:Nonprofit501c12" + }, + "Nonprofit501c13": { + "@id": "schema:Nonprofit501c13" + }, + "Nonprofit501c14": { + "@id": "schema:Nonprofit501c14" + }, + "Nonprofit501c15": { + "@id": "schema:Nonprofit501c15" + }, + "Nonprofit501c16": { + "@id": "schema:Nonprofit501c16" + }, + "Nonprofit501c17": { + "@id": "schema:Nonprofit501c17" + }, + "Nonprofit501c18": { + "@id": "schema:Nonprofit501c18" + }, + "Nonprofit501c19": { + "@id": "schema:Nonprofit501c19" + }, + "Nonprofit501c2": { + "@id": "schema:Nonprofit501c2" + }, + "Nonprofit501c20": { + "@id": "schema:Nonprofit501c20" + }, + "Nonprofit501c21": { + "@id": "schema:Nonprofit501c21" + }, + "Nonprofit501c22": { + "@id": "schema:Nonprofit501c22" + }, + "Nonprofit501c23": { + "@id": "schema:Nonprofit501c23" + }, + "Nonprofit501c24": { + "@id": "schema:Nonprofit501c24" + }, + "Nonprofit501c25": { + "@id": "schema:Nonprofit501c25" + }, + "Nonprofit501c26": { + "@id": "schema:Nonprofit501c26" + }, + "Nonprofit501c27": { + "@id": "schema:Nonprofit501c27" + }, + "Nonprofit501c28": { + "@id": "schema:Nonprofit501c28" + }, + "Nonprofit501c3": { + "@id": "schema:Nonprofit501c3" + }, + "Nonprofit501c4": { + "@id": "schema:Nonprofit501c4" + }, + "Nonprofit501c5": { + "@id": "schema:Nonprofit501c5" + }, + "Nonprofit501c6": { + "@id": "schema:Nonprofit501c6" + }, + "Nonprofit501c7": { + "@id": "schema:Nonprofit501c7" + }, + "Nonprofit501c8": { + "@id": "schema:Nonprofit501c8" + }, + "Nonprofit501c9": { + "@id": "schema:Nonprofit501c9" + }, + "Nonprofit501d": { + "@id": "schema:Nonprofit501d" + }, + "Nonprofit501e": { + "@id": "schema:Nonprofit501e" + }, + "Nonprofit501f": { + "@id": "schema:Nonprofit501f" + }, + "Nonprofit501k": { + "@id": "schema:Nonprofit501k" + }, + "Nonprofit501n": { + "@id": "schema:Nonprofit501n" + }, + "Nonprofit501q": { + "@id": "schema:Nonprofit501q" + }, + "Nonprofit527": { + "@id": "schema:Nonprofit527" + }, + "NonprofitANBI": { + "@id": "schema:NonprofitANBI" + }, + "NonprofitSBBI": { + "@id": "schema:NonprofitSBBI" + }, + "NonprofitType": { + "@id": "schema:NonprofitType" + }, + "Nose": { + "@id": "schema:Nose" + }, + "NotInForce": { + "@id": "schema:NotInForce" + }, + "NotYetRecruiting": { + "@id": "schema:NotYetRecruiting" + }, + "Notary": { + "@id": "schema:Notary" + }, + "NoteDigitalDocument": { + "@id": "schema:NoteDigitalDocument" + }, + "Number": { + "@id": "schema:Number" + }, + "Nursing": { + "@id": "schema:Nursing" + }, + "NutritionInformation": { + "@id": "schema:NutritionInformation" + }, + "OTC": { + "@id": "schema:OTC" + }, + "Observation": { + "@id": "schema:Observation" + }, + "Observational": { + "@id": "schema:Observational" + }, + "Obstetric": { + "@id": "schema:Obstetric" + }, + "Occupation": { + "@id": "schema:Occupation" + }, + "OccupationalActivity": { + "@id": "schema:OccupationalActivity" + }, + "OccupationalTherapy": { + "@id": "schema:OccupationalTherapy" + }, + "OceanBodyOfWater": { + "@id": "schema:OceanBodyOfWater" + }, + "Offer": { + "@id": "schema:Offer" + }, + "OfferCatalog": { + "@id": "schema:OfferCatalog" + }, + "OfferForLease": { + "@id": "schema:OfferForLease" + }, + "OfferForPurchase": { + "@id": "schema:OfferForPurchase" + }, + "OfferItemCondition": { + "@id": "schema:OfferItemCondition" + }, + "OfferShippingDetails": { + "@id": "schema:OfferShippingDetails" + }, + "OfficeEquipmentStore": { + "@id": "schema:OfficeEquipmentStore" + }, + "OfficialLegalValue": { + "@id": "schema:OfficialLegalValue" + }, + "OfflineEventAttendanceMode": { + "@id": "schema:OfflineEventAttendanceMode" + }, + "OfflinePermanently": { + "@id": "schema:OfflinePermanently" + }, + "OfflineTemporarily": { + "@id": "schema:OfflineTemporarily" + }, + "OnDemandEvent": { + "@id": "schema:OnDemandEvent" + }, + "OnSitePickup": { + "@id": "schema:OnSitePickup" + }, + "Oncologic": { + "@id": "schema:Oncologic" + }, + "OneTimePayments": { + "@id": "schema:OneTimePayments" + }, + "Online": { + "@id": "schema:Online" + }, + "OnlineEventAttendanceMode": { + "@id": "schema:OnlineEventAttendanceMode" + }, + "OnlineFull": { + "@id": "schema:OnlineFull" + }, + "OnlineOnly": { + "@id": "schema:OnlineOnly" + }, + "OpenTrial": { + "@id": "schema:OpenTrial" + }, + "OpeningHoursSpecification": { + "@id": "schema:OpeningHoursSpecification" + }, + "OpinionNewsArticle": { + "@id": "schema:OpinionNewsArticle" + }, + "Optician": { + "@id": "schema:Optician" + }, + "Optometric": { + "@id": "schema:Optometric" + }, + "Order": { + "@id": "schema:Order" + }, + "OrderAction": { + "@id": "schema:OrderAction" + }, + "OrderCancelled": { + "@id": "schema:OrderCancelled" + }, + "OrderDelivered": { + "@id": "schema:OrderDelivered" + }, + "OrderInTransit": { + "@id": "schema:OrderInTransit" + }, + "OrderItem": { + "@id": "schema:OrderItem" + }, + "OrderPaymentDue": { + "@id": "schema:OrderPaymentDue" + }, + "OrderPickupAvailable": { + "@id": "schema:OrderPickupAvailable" + }, + "OrderProblem": { + "@id": "schema:OrderProblem" + }, + "OrderProcessing": { + "@id": "schema:OrderProcessing" + }, + "OrderReturned": { + "@id": "schema:OrderReturned" + }, + "OrderStatus": { + "@id": "schema:OrderStatus" + }, + "Organization": { + "@id": "schema:Organization" + }, + "OrganizationRole": { + "@id": "schema:OrganizationRole" + }, + "OrganizeAction": { + "@id": "schema:OrganizeAction" + }, + "OriginalShippingFees": { + "@id": "schema:OriginalShippingFees" + }, + "Osteopathic": { + "@id": "schema:Osteopathic" + }, + "Otolaryngologic": { + "@id": "schema:Otolaryngologic" + }, + "OutOfStock": { + "@id": "schema:OutOfStock" + }, + "OutletStore": { + "@id": "schema:OutletStore" + }, + "OverviewHealthAspect": { + "@id": "schema:OverviewHealthAspect" + }, + "OwnershipInfo": { + "@id": "schema:OwnershipInfo" + }, + "PET": { + "@id": "schema:PET" + }, + "PaidLeave": { + "@id": "schema:PaidLeave" + }, + "PaintAction": { + "@id": "schema:PaintAction" + }, + "Painting": { + "@id": "schema:Painting" + }, + "PalliativeProcedure": { + "@id": "schema:PalliativeProcedure" + }, + "Paperback": { + "@id": "schema:Paperback" + }, + "ParcelDelivery": { + "@id": "schema:ParcelDelivery" + }, + "ParcelService": { + "@id": "schema:ParcelService" + }, + "ParentAudience": { + "@id": "schema:ParentAudience" + }, + "ParentalSupport": { + "@id": "schema:ParentalSupport" + }, + "Park": { + "@id": "schema:Park" + }, + "ParkingFacility": { + "@id": "schema:ParkingFacility" + }, + "ParkingMap": { + "@id": "schema:ParkingMap" + }, + "PartiallyInForce": { + "@id": "schema:PartiallyInForce" + }, + "Pathology": { + "@id": "schema:Pathology" + }, + "PathologyTest": { + "@id": "schema:PathologyTest" + }, + "Patient": { + "@id": "schema:Patient" + }, + "PatientExperienceHealthAspect": { + "@id": "schema:PatientExperienceHealthAspect" + }, + "PawnShop": { + "@id": "schema:PawnShop" + }, + "PayAction": { + "@id": "schema:PayAction" + }, + "PaymentAutomaticallyApplied": { + "@id": "schema:PaymentAutomaticallyApplied" + }, + "PaymentCard": { + "@id": "schema:PaymentCard" + }, + "PaymentChargeSpecification": { + "@id": "schema:PaymentChargeSpecification" + }, + "PaymentComplete": { + "@id": "schema:PaymentComplete" + }, + "PaymentDeclined": { + "@id": "schema:PaymentDeclined" + }, + "PaymentDue": { + "@id": "schema:PaymentDue" + }, + "PaymentMethod": { + "@id": "schema:PaymentMethod" + }, + "PaymentPastDue": { + "@id": "schema:PaymentPastDue" + }, + "PaymentService": { + "@id": "schema:PaymentService" + }, + "PaymentStatusType": { + "@id": "schema:PaymentStatusType" + }, + "Pediatric": { + "@id": "schema:Pediatric" + }, + "PeopleAudience": { + "@id": "schema:PeopleAudience" + }, + "PercutaneousProcedure": { + "@id": "schema:PercutaneousProcedure" + }, + "PerformAction": { + "@id": "schema:PerformAction" + }, + "PerformanceRole": { + "@id": "schema:PerformanceRole" + }, + "PerformingArtsTheater": { + "@id": "schema:PerformingArtsTheater" + }, + "PerformingGroup": { + "@id": "schema:PerformingGroup" + }, + "Periodical": { + "@id": "schema:Periodical" + }, + "Permit": { + "@id": "schema:Permit" + }, + "Person": { + "@id": "schema:Person" + }, + "PetStore": { + "@id": "schema:PetStore" + }, + "Pharmacy": { + "@id": "schema:Pharmacy" + }, + "PharmacySpecialty": { + "@id": "schema:PharmacySpecialty" + }, + "Photograph": { + "@id": "schema:Photograph" + }, + "PhotographAction": { + "@id": "schema:PhotographAction" + }, + "PhysicalActivity": { + "@id": "schema:PhysicalActivity" + }, + "PhysicalActivityCategory": { + "@id": "schema:PhysicalActivityCategory" + }, + "PhysicalExam": { + "@id": "schema:PhysicalExam" + }, + "PhysicalTherapy": { + "@id": "schema:PhysicalTherapy" + }, + "Physician": { + "@id": "schema:Physician" + }, + "Physiotherapy": { + "@id": "schema:Physiotherapy" + }, + "Place": { + "@id": "schema:Place" + }, + "PlaceOfWorship": { + "@id": "schema:PlaceOfWorship" + }, + "PlaceboControlledTrial": { + "@id": "schema:PlaceboControlledTrial" + }, + "PlanAction": { + "@id": "schema:PlanAction" + }, + "PlasticSurgery": { + "@id": "schema:PlasticSurgery" + }, + "Play": { + "@id": "schema:Play" + }, + "PlayAction": { + "@id": "schema:PlayAction" + }, + "Playground": { + "@id": "schema:Playground" + }, + "Plumber": { + "@id": "schema:Plumber" + }, + "PodcastEpisode": { + "@id": "schema:PodcastEpisode" + }, + "PodcastSeason": { + "@id": "schema:PodcastSeason" + }, + "PodcastSeries": { + "@id": "schema:PodcastSeries" + }, + "Podiatric": { + "@id": "schema:Podiatric" + }, + "PoliceStation": { + "@id": "schema:PoliceStation" + }, + "Pond": { + "@id": "schema:Pond" + }, + "PostOffice": { + "@id": "schema:PostOffice" + }, + "PostalAddress": { + "@id": "schema:PostalAddress" + }, + "PostalCodeRangeSpecification": { + "@id": "schema:PostalCodeRangeSpecification" + }, + "Poster": { + "@id": "schema:Poster" + }, + "PotentialActionStatus": { + "@id": "schema:PotentialActionStatus" + }, + "PreOrder": { + "@id": "schema:PreOrder" + }, + "PreOrderAction": { + "@id": "schema:PreOrderAction" + }, + "PreSale": { + "@id": "schema:PreSale" + }, + "PrependAction": { + "@id": "schema:PrependAction" + }, + "Preschool": { + "@id": "schema:Preschool" + }, + "PrescriptionOnly": { + "@id": "schema:PrescriptionOnly" + }, + "PresentationDigitalDocument": { + "@id": "schema:PresentationDigitalDocument" + }, + "PreventionHealthAspect": { + "@id": "schema:PreventionHealthAspect" + }, + "PreventionIndication": { + "@id": "schema:PreventionIndication" + }, + "PriceSpecification": { + "@id": "schema:PriceSpecification" + }, + "PrimaryCare": { + "@id": "schema:PrimaryCare" + }, + "Prion": { + "@id": "schema:Prion" + }, + "Product": { + "@id": "schema:Product" + }, + "ProductCollection": { + "@id": "schema:ProductCollection" + }, + "ProductGroup": { + "@id": "schema:ProductGroup" + }, + "ProductModel": { + "@id": "schema:ProductModel" + }, + "ProductReturnEnumeration": { + "@id": "schema:ProductReturnEnumeration" + }, + "ProductReturnFiniteReturnWindow": { + "@id": "schema:ProductReturnFiniteReturnWindow" + }, + "ProductReturnNotPermitted": { + "@id": "schema:ProductReturnNotPermitted" + }, + "ProductReturnPolicy": { + "@id": "schema:ProductReturnPolicy" + }, + "ProductReturnUnlimitedWindow": { + "@id": "schema:ProductReturnUnlimitedWindow" + }, + "ProductReturnUnspecified": { + "@id": "schema:ProductReturnUnspecified" + }, + "ProfessionalService": { + "@id": "schema:ProfessionalService" + }, + "ProfilePage": { + "@id": "schema:ProfilePage" + }, + "PrognosisHealthAspect": { + "@id": "schema:PrognosisHealthAspect" + }, + "ProgramMembership": { + "@id": "schema:ProgramMembership" + }, + "Project": { + "@id": "schema:Project" + }, + "PronounceableText": { + "@id": "schema:PronounceableText" + }, + "Property": { + "@id": "schema:Property" + }, + "PropertyValue": { + "@id": "schema:PropertyValue" + }, + "PropertyValueSpecification": { + "@id": "schema:PropertyValueSpecification" + }, + "Protozoa": { + "@id": "schema:Protozoa" + }, + "Psychiatric": { + "@id": "schema:Psychiatric" + }, + "PsychologicalTreatment": { + "@id": "schema:PsychologicalTreatment" + }, + "PublicHealth": { + "@id": "schema:PublicHealth" + }, + "PublicHolidays": { + "@id": "schema:PublicHolidays" + }, + "PublicSwimmingPool": { + "@id": "schema:PublicSwimmingPool" + }, + "PublicToilet": { + "@id": "schema:PublicToilet" + }, + "PublicationEvent": { + "@id": "schema:PublicationEvent" + }, + "PublicationIssue": { + "@id": "schema:PublicationIssue" + }, + "PublicationVolume": { + "@id": "schema:PublicationVolume" + }, + "Pulmonary": { + "@id": "schema:Pulmonary" + }, + "QAPage": { + "@id": "schema:QAPage" + }, + "QualitativeValue": { + "@id": "schema:QualitativeValue" + }, + "QuantitativeValue": { + "@id": "schema:QuantitativeValue" + }, + "QuantitativeValueDistribution": { + "@id": "schema:QuantitativeValueDistribution" + }, + "Quantity": { + "@id": "schema:Quantity" + }, + "Question": { + "@id": "schema:Question" + }, + "Quiz": { + "@id": "schema:Quiz" + }, + "Quotation": { + "@id": "schema:Quotation" + }, + "QuoteAction": { + "@id": "schema:QuoteAction" + }, + "RVPark": { + "@id": "schema:RVPark" + }, + "RadiationTherapy": { + "@id": "schema:RadiationTherapy" + }, + "RadioBroadcastService": { + "@id": "schema:RadioBroadcastService" + }, + "RadioChannel": { + "@id": "schema:RadioChannel" + }, + "RadioClip": { + "@id": "schema:RadioClip" + }, + "RadioEpisode": { + "@id": "schema:RadioEpisode" + }, + "RadioSeason": { + "@id": "schema:RadioSeason" + }, + "RadioSeries": { + "@id": "schema:RadioSeries" + }, + "RadioStation": { + "@id": "schema:RadioStation" + }, + "Radiography": { + "@id": "schema:Radiography" + }, + "RandomizedTrial": { + "@id": "schema:RandomizedTrial" + }, + "Rating": { + "@id": "schema:Rating" + }, + "ReactAction": { + "@id": "schema:ReactAction" + }, + "ReadAction": { + "@id": "schema:ReadAction" + }, + "ReadPermission": { + "@id": "schema:ReadPermission" + }, + "RealEstateAgent": { + "@id": "schema:RealEstateAgent" + }, + "RealEstateListing": { + "@id": "schema:RealEstateListing" + }, + "RearWheelDriveConfiguration": { + "@id": "schema:RearWheelDriveConfiguration" + }, + "ReceiveAction": { + "@id": "schema:ReceiveAction" + }, + "Recipe": { + "@id": "schema:Recipe" + }, + "Recommendation": { + "@id": "schema:Recommendation" + }, + "RecommendedDoseSchedule": { + "@id": "schema:RecommendedDoseSchedule" + }, + "Recruiting": { + "@id": "schema:Recruiting" + }, + "RecyclingCenter": { + "@id": "schema:RecyclingCenter" + }, + "RefundTypeEnumeration": { + "@id": "schema:RefundTypeEnumeration" + }, + "RefurbishedCondition": { + "@id": "schema:RefurbishedCondition" + }, + "RegisterAction": { + "@id": "schema:RegisterAction" + }, + "Registry": { + "@id": "schema:Registry" + }, + "ReimbursementCap": { + "@id": "schema:ReimbursementCap" + }, + "RejectAction": { + "@id": "schema:RejectAction" + }, + "RelatedTopicsHealthAspect": { + "@id": "schema:RelatedTopicsHealthAspect" + }, + "RemixAlbum": { + "@id": "schema:RemixAlbum" + }, + "Renal": { + "@id": "schema:Renal" + }, + "RentAction": { + "@id": "schema:RentAction" + }, + "RentalCarReservation": { + "@id": "schema:RentalCarReservation" + }, + "RentalVehicleUsage": { + "@id": "schema:RentalVehicleUsage" + }, + "RepaymentSpecification": { + "@id": "schema:RepaymentSpecification" + }, + "ReplaceAction": { + "@id": "schema:ReplaceAction" + }, + "ReplyAction": { + "@id": "schema:ReplyAction" + }, + "Report": { + "@id": "schema:Report" + }, + "ReportageNewsArticle": { + "@id": "schema:ReportageNewsArticle" + }, + "ReportedDoseSchedule": { + "@id": "schema:ReportedDoseSchedule" + }, + "ResearchProject": { + "@id": "schema:ResearchProject" + }, + "Researcher": { + "@id": "schema:Researcher" + }, + "Reservation": { + "@id": "schema:Reservation" + }, + "ReservationCancelled": { + "@id": "schema:ReservationCancelled" + }, + "ReservationConfirmed": { + "@id": "schema:ReservationConfirmed" + }, + "ReservationHold": { + "@id": "schema:ReservationHold" + }, + "ReservationPackage": { + "@id": "schema:ReservationPackage" + }, + "ReservationPending": { + "@id": "schema:ReservationPending" + }, + "ReservationStatusType": { + "@id": "schema:ReservationStatusType" + }, + "ReserveAction": { + "@id": "schema:ReserveAction" + }, + "Reservoir": { + "@id": "schema:Reservoir" + }, + "Residence": { + "@id": "schema:Residence" + }, + "Resort": { + "@id": "schema:Resort" + }, + "RespiratoryTherapy": { + "@id": "schema:RespiratoryTherapy" + }, + "Restaurant": { + "@id": "schema:Restaurant" + }, + "RestockingFees": { + "@id": "schema:RestockingFees" + }, + "RestrictedDiet": { + "@id": "schema:RestrictedDiet" + }, + "ResultsAvailable": { + "@id": "schema:ResultsAvailable" + }, + "ResultsNotAvailable": { + "@id": "schema:ResultsNotAvailable" + }, + "ResumeAction": { + "@id": "schema:ResumeAction" + }, + "Retail": { + "@id": "schema:Retail" + }, + "ReturnAction": { + "@id": "schema:ReturnAction" + }, + "ReturnFeesEnumeration": { + "@id": "schema:ReturnFeesEnumeration" + }, + "ReturnShippingFees": { + "@id": "schema:ReturnShippingFees" + }, + "Review": { + "@id": "schema:Review" + }, + "ReviewAction": { + "@id": "schema:ReviewAction" + }, + "ReviewNewsArticle": { + "@id": "schema:ReviewNewsArticle" + }, + "Rheumatologic": { + "@id": "schema:Rheumatologic" + }, + "RightHandDriving": { + "@id": "schema:RightHandDriving" + }, + "RisksOrComplicationsHealthAspect": { + "@id": "schema:RisksOrComplicationsHealthAspect" + }, + "RiverBodyOfWater": { + "@id": "schema:RiverBodyOfWater" + }, + "Role": { + "@id": "schema:Role" + }, + "RoofingContractor": { + "@id": "schema:RoofingContractor" + }, + "Room": { + "@id": "schema:Room" + }, + "RsvpAction": { + "@id": "schema:RsvpAction" + }, + "RsvpResponseMaybe": { + "@id": "schema:RsvpResponseMaybe" + }, + "RsvpResponseNo": { + "@id": "schema:RsvpResponseNo" + }, + "RsvpResponseType": { + "@id": "schema:RsvpResponseType" + }, + "RsvpResponseYes": { + "@id": "schema:RsvpResponseYes" + }, + "SaleEvent": { + "@id": "schema:SaleEvent" + }, + "SatiricalArticle": { + "@id": "schema:SatiricalArticle" + }, + "Saturday": { + "@id": "schema:Saturday" + }, + "Schedule": { + "@id": "schema:Schedule" + }, + "ScheduleAction": { + "@id": "schema:ScheduleAction" + }, + "ScholarlyArticle": { + "@id": "schema:ScholarlyArticle" + }, + "School": { + "@id": "schema:School" + }, + "SchoolDistrict": { + "@id": "schema:SchoolDistrict" + }, + "ScreeningEvent": { + "@id": "schema:ScreeningEvent" + }, + "ScreeningHealthAspect": { + "@id": "schema:ScreeningHealthAspect" + }, + "Sculpture": { + "@id": "schema:Sculpture" + }, + "SeaBodyOfWater": { + "@id": "schema:SeaBodyOfWater" + }, + "SearchAction": { + "@id": "schema:SearchAction" + }, + "SearchResultsPage": { + "@id": "schema:SearchResultsPage" + }, + "Season": { + "@id": "schema:Season" + }, + "Seat": { + "@id": "schema:Seat" + }, + "SeatingMap": { + "@id": "schema:SeatingMap" + }, + "SeeDoctorHealthAspect": { + "@id": "schema:SeeDoctorHealthAspect" + }, + "SelfCareHealthAspect": { + "@id": "schema:SelfCareHealthAspect" + }, + "SelfStorage": { + "@id": "schema:SelfStorage" + }, + "SellAction": { + "@id": "schema:SellAction" + }, + "SendAction": { + "@id": "schema:SendAction" + }, + "Series": { + "@id": "schema:Series" + }, + "Service": { + "@id": "schema:Service" + }, + "ServiceChannel": { + "@id": "schema:ServiceChannel" + }, + "ShareAction": { + "@id": "schema:ShareAction" + }, + "SheetMusic": { + "@id": "schema:SheetMusic" + }, + "ShippingDeliveryTime": { + "@id": "schema:ShippingDeliveryTime" + }, + "ShippingRateSettings": { + "@id": "schema:ShippingRateSettings" + }, + "ShoeStore": { + "@id": "schema:ShoeStore" + }, + "ShoppingCenter": { + "@id": "schema:ShoppingCenter" + }, + "ShortStory": { + "@id": "schema:ShortStory" + }, + "SideEffectsHealthAspect": { + "@id": "schema:SideEffectsHealthAspect" + }, + "SingleBlindedTrial": { + "@id": "schema:SingleBlindedTrial" + }, + "SingleCenterTrial": { + "@id": "schema:SingleCenterTrial" + }, + "SingleFamilyResidence": { + "@id": "schema:SingleFamilyResidence" + }, + "SinglePlayer": { + "@id": "schema:SinglePlayer" + }, + "SingleRelease": { + "@id": "schema:SingleRelease" + }, + "SiteNavigationElement": { + "@id": "schema:SiteNavigationElement" + }, + "SkiResort": { + "@id": "schema:SkiResort" + }, + "Skin": { + "@id": "schema:Skin" + }, + "SocialEvent": { + "@id": "schema:SocialEvent" + }, + "SocialMediaPosting": { + "@id": "schema:SocialMediaPosting" + }, + "SoftwareApplication": { + "@id": "schema:SoftwareApplication" + }, + "SoftwareSourceCode": { + "@id": "schema:SoftwareSourceCode" + }, + "SoldOut": { + "@id": "schema:SoldOut" + }, + "SomeProducts": { + "@id": "schema:SomeProducts" + }, + "SoundtrackAlbum": { + "@id": "schema:SoundtrackAlbum" + }, + "SpeakableSpecification": { + "@id": "schema:SpeakableSpecification" + }, + "SpecialAnnouncement": { + "@id": "schema:SpecialAnnouncement" + }, + "Specialty": { + "@id": "schema:Specialty" + }, + "SpeechPathology": { + "@id": "schema:SpeechPathology" + }, + "SpokenWordAlbum": { + "@id": "schema:SpokenWordAlbum" + }, + "SportingGoodsStore": { + "@id": "schema:SportingGoodsStore" + }, + "SportsActivityLocation": { + "@id": "schema:SportsActivityLocation" + }, + "SportsClub": { + "@id": "schema:SportsClub" + }, + "SportsEvent": { + "@id": "schema:SportsEvent" + }, + "SportsOrganization": { + "@id": "schema:SportsOrganization" + }, + "SportsTeam": { + "@id": "schema:SportsTeam" + }, + "SpreadsheetDigitalDocument": { + "@id": "schema:SpreadsheetDigitalDocument" + }, + "StadiumOrArena": { + "@id": "schema:StadiumOrArena" + }, + "StagesHealthAspect": { + "@id": "schema:StagesHealthAspect" + }, + "State": { + "@id": "schema:State" + }, + "StatisticalPopulation": { + "@id": "schema:StatisticalPopulation" + }, + "StatusEnumeration": { + "@id": "schema:StatusEnumeration" + }, + "SteeringPositionValue": { + "@id": "schema:SteeringPositionValue" + }, + "Store": { + "@id": "schema:Store" + }, + "StoreCreditRefund": { + "@id": "schema:StoreCreditRefund" + }, + "StrengthTraining": { + "@id": "schema:StrengthTraining" + }, + "StructuredValue": { + "@id": "schema:StructuredValue" + }, + "StudioAlbum": { + "@id": "schema:StudioAlbum" + }, + "StupidType": { + "@id": "schema:StupidType" + }, + "SubscribeAction": { + "@id": "schema:SubscribeAction" + }, + "Substance": { + "@id": "schema:Substance" + }, + "SubwayStation": { + "@id": "schema:SubwayStation" + }, + "Suite": { + "@id": "schema:Suite" + }, + "Sunday": { + "@id": "schema:Sunday" + }, + "SuperficialAnatomy": { + "@id": "schema:SuperficialAnatomy" + }, + "Surgical": { + "@id": "schema:Surgical" + }, + "SurgicalProcedure": { + "@id": "schema:SurgicalProcedure" + }, + "SuspendAction": { + "@id": "schema:SuspendAction" + }, + "Suspended": { + "@id": "schema:Suspended" + }, + "SymptomsHealthAspect": { + "@id": "schema:SymptomsHealthAspect" + }, + "Synagogue": { + "@id": "schema:Synagogue" + }, + "TVClip": { + "@id": "schema:TVClip" + }, + "TVEpisode": { + "@id": "schema:TVEpisode" + }, + "TVSeason": { + "@id": "schema:TVSeason" + }, + "TVSeries": { + "@id": "schema:TVSeries" + }, + "Table": { + "@id": "schema:Table" + }, + "TakeAction": { + "@id": "schema:TakeAction" + }, + "TattooParlor": { + "@id": "schema:TattooParlor" + }, + "Taxi": { + "@id": "schema:Taxi" + }, + "TaxiReservation": { + "@id": "schema:TaxiReservation" + }, + "TaxiService": { + "@id": "schema:TaxiService" + }, + "TaxiStand": { + "@id": "schema:TaxiStand" + }, + "TaxiVehicleUsage": { + "@id": "schema:TaxiVehicleUsage" + }, + "TechArticle": { + "@id": "schema:TechArticle" + }, + "TelevisionChannel": { + "@id": "schema:TelevisionChannel" + }, + "TelevisionStation": { + "@id": "schema:TelevisionStation" + }, + "TennisComplex": { + "@id": "schema:TennisComplex" + }, + "Terminated": { + "@id": "schema:Terminated" + }, + "Text": { + "@id": "schema:Text" + }, + "TextDigitalDocument": { + "@id": "schema:TextDigitalDocument" + }, + "TheaterEvent": { + "@id": "schema:TheaterEvent" + }, + "TheaterGroup": { + "@id": "schema:TheaterGroup" + }, + "Therapeutic": { + "@id": "schema:Therapeutic" + }, + "TherapeuticProcedure": { + "@id": "schema:TherapeuticProcedure" + }, + "Thesis": { + "@id": "schema:Thesis" + }, + "Thing": { + "@id": "schema:Thing" + }, + "Throat": { + "@id": "schema:Throat" + }, + "Thursday": { + "@id": "schema:Thursday" + }, + "Ticket": { + "@id": "schema:Ticket" + }, + "TieAction": { + "@id": "schema:TieAction" + }, + "Time": { + "@id": "schema:Time" + }, + "TipAction": { + "@id": "schema:TipAction" + }, + "TireShop": { + "@id": "schema:TireShop" + }, + "TollFree": { + "@id": "schema:TollFree" + }, + "TouristAttraction": { + "@id": "schema:TouristAttraction" + }, + "TouristDestination": { + "@id": "schema:TouristDestination" + }, + "TouristInformationCenter": { + "@id": "schema:TouristInformationCenter" + }, + "TouristTrip": { + "@id": "schema:TouristTrip" + }, + "Toxicologic": { + "@id": "schema:Toxicologic" + }, + "ToyStore": { + "@id": "schema:ToyStore" + }, + "TrackAction": { + "@id": "schema:TrackAction" + }, + "TradeAction": { + "@id": "schema:TradeAction" + }, + "TraditionalChinese": { + "@id": "schema:TraditionalChinese" + }, + "TrainReservation": { + "@id": "schema:TrainReservation" + }, + "TrainStation": { + "@id": "schema:TrainStation" + }, + "TrainTrip": { + "@id": "schema:TrainTrip" + }, + "TransferAction": { + "@id": "schema:TransferAction" + }, + "TransitMap": { + "@id": "schema:TransitMap" + }, + "TravelAction": { + "@id": "schema:TravelAction" + }, + "TravelAgency": { + "@id": "schema:TravelAgency" + }, + "TreatmentIndication": { + "@id": "schema:TreatmentIndication" + }, + "TreatmentsHealthAspect": { + "@id": "schema:TreatmentsHealthAspect" + }, + "Trip": { + "@id": "schema:Trip" + }, + "TripleBlindedTrial": { + "@id": "schema:TripleBlindedTrial" + }, + "True": { + "@id": "schema:True" + }, + "Tuesday": { + "@id": "schema:Tuesday" + }, + "TypeAndQuantityNode": { + "@id": "schema:TypeAndQuantityNode" + }, + "TypesHealthAspect": { + "@id": "schema:TypesHealthAspect" + }, + "UKNonprofitType": { + "@id": "schema:UKNonprofitType" + }, + "UKTrust": { + "@id": "schema:UKTrust" + }, + "URL": { + "@id": "schema:URL" + }, + "USNonprofitType": { + "@id": "schema:USNonprofitType" + }, + "Ultrasound": { + "@id": "schema:Ultrasound" + }, + "UnRegisterAction": { + "@id": "schema:UnRegisterAction" + }, + "UnemploymentSupport": { + "@id": "schema:UnemploymentSupport" + }, + "UnincorporatedAssociationCharity": { + "@id": "schema:UnincorporatedAssociationCharity" + }, + "UnitPriceSpecification": { + "@id": "schema:UnitPriceSpecification" + }, + "UnofficialLegalValue": { + "@id": "schema:UnofficialLegalValue" + }, + "UpdateAction": { + "@id": "schema:UpdateAction" + }, + "Urologic": { + "@id": "schema:Urologic" + }, + "UsageOrScheduleHealthAspect": { + "@id": "schema:UsageOrScheduleHealthAspect" + }, + "UseAction": { + "@id": "schema:UseAction" + }, + "UsedCondition": { + "@id": "schema:UsedCondition" + }, + "UserBlocks": { + "@id": "schema:UserBlocks" + }, + "UserCheckins": { + "@id": "schema:UserCheckins" + }, + "UserComments": { + "@id": "schema:UserComments" + }, + "UserDownloads": { + "@id": "schema:UserDownloads" + }, + "UserInteraction": { + "@id": "schema:UserInteraction" + }, + "UserLikes": { + "@id": "schema:UserLikes" + }, + "UserPageVisits": { + "@id": "schema:UserPageVisits" + }, + "UserPlays": { + "@id": "schema:UserPlays" + }, + "UserPlusOnes": { + "@id": "schema:UserPlusOnes" + }, + "UserReview": { + "@id": "schema:UserReview" + }, + "UserTweets": { + "@id": "schema:UserTweets" + }, + "VeganDiet": { + "@id": "schema:VeganDiet" + }, + "VegetarianDiet": { + "@id": "schema:VegetarianDiet" + }, + "Vehicle": { + "@id": "schema:Vehicle" + }, + "Vein": { + "@id": "schema:Vein" + }, + "VenueMap": { + "@id": "schema:VenueMap" + }, + "Vessel": { + "@id": "schema:Vessel" + }, + "VeterinaryCare": { + "@id": "schema:VeterinaryCare" + }, + "VideoGallery": { + "@id": "schema:VideoGallery" + }, + "VideoGame": { + "@id": "schema:VideoGame" + }, + "VideoGameClip": { + "@id": "schema:VideoGameClip" + }, + "VideoGameSeries": { + "@id": "schema:VideoGameSeries" + }, + "VideoObject": { + "@id": "schema:VideoObject" + }, + "ViewAction": { + "@id": "schema:ViewAction" + }, + "VinylFormat": { + "@id": "schema:VinylFormat" + }, + "VirtualLocation": { + "@id": "schema:VirtualLocation" + }, + "Virus": { + "@id": "schema:Virus" + }, + "VisualArtsEvent": { + "@id": "schema:VisualArtsEvent" + }, + "VisualArtwork": { + "@id": "schema:VisualArtwork" + }, + "VitalSign": { + "@id": "schema:VitalSign" + }, + "Volcano": { + "@id": "schema:Volcano" + }, + "VoteAction": { + "@id": "schema:VoteAction" + }, + "WPAdBlock": { + "@id": "schema:WPAdBlock" + }, + "WPFooter": { + "@id": "schema:WPFooter" + }, + "WPHeader": { + "@id": "schema:WPHeader" + }, + "WPSideBar": { + "@id": "schema:WPSideBar" + }, + "WantAction": { + "@id": "schema:WantAction" + }, + "WarrantyPromise": { + "@id": "schema:WarrantyPromise" + }, + "WarrantyScope": { + "@id": "schema:WarrantyScope" + }, + "WatchAction": { + "@id": "schema:WatchAction" + }, + "Waterfall": { + "@id": "schema:Waterfall" + }, + "WearAction": { + "@id": "schema:WearAction" + }, + "WebAPI": { + "@id": "schema:WebAPI" + }, + "WebApplication": { + "@id": "schema:WebApplication" + }, + "WebContent": { + "@id": "schema:WebContent" + }, + "WebPage": { + "@id": "schema:WebPage" + }, + "WebPageElement": { + "@id": "schema:WebPageElement" + }, + "WebSite": { + "@id": "schema:WebSite" + }, + "Wednesday": { + "@id": "schema:Wednesday" + }, + "WesternConventional": { + "@id": "schema:WesternConventional" + }, + "Wholesale": { + "@id": "schema:Wholesale" + }, + "WholesaleStore": { + "@id": "schema:WholesaleStore" + }, + "WinAction": { + "@id": "schema:WinAction" + }, + "Winery": { + "@id": "schema:Winery" + }, + "Withdrawn": { + "@id": "schema:Withdrawn" + }, + "WorkBasedProgram": { + "@id": "schema:WorkBasedProgram" + }, + "WorkersUnion": { + "@id": "schema:WorkersUnion" + }, + "WriteAction": { + "@id": "schema:WriteAction" + }, + "WritePermission": { + "@id": "schema:WritePermission" + }, + "XPathType": { + "@id": "schema:XPathType" + }, + "XRay": { + "@id": "schema:XRay" + }, + "ZoneBoardingPolicy": { + "@id": "schema:ZoneBoardingPolicy" + }, + "Zoo": { + "@id": "schema:Zoo" + }, + "about": { + "@id": "schema:about" + }, + "abridged": { + "@id": "schema:abridged" + }, + "abstract": { + "@id": "schema:abstract" + }, + "accelerationTime": { + "@id": "schema:accelerationTime" + }, + "acceptedAnswer": { + "@id": "schema:acceptedAnswer" + }, + "acceptedOffer": { + "@id": "schema:acceptedOffer" + }, + "acceptedPaymentMethod": { + "@id": "schema:acceptedPaymentMethod" + }, + "acceptsReservations": { + "@id": "schema:acceptsReservations" + }, + "accessCode": { + "@id": "schema:accessCode" + }, + "accessMode": { + "@id": "schema:accessMode" + }, + "accessModeSufficient": { + "@id": "schema:accessModeSufficient" + }, + "accessibilityAPI": { + "@id": "schema:accessibilityAPI" + }, + "accessibilityControl": { + "@id": "schema:accessibilityControl" + }, + "accessibilityFeature": { + "@id": "schema:accessibilityFeature" + }, + "accessibilityHazard": { + "@id": "schema:accessibilityHazard" + }, + "accessibilitySummary": { + "@id": "schema:accessibilitySummary" + }, + "accommodationCategory": { + "@id": "schema:accommodationCategory" + }, + "accommodationFloorPlan": { + "@id": "schema:accommodationFloorPlan" + }, + "accountId": { + "@id": "schema:accountId" + }, + "accountMinimumInflow": { + "@id": "schema:accountMinimumInflow" + }, + "accountOverdraftLimit": { + "@id": "schema:accountOverdraftLimit" + }, + "accountablePerson": { + "@id": "schema:accountablePerson" + }, + "acquireLicensePage": { + "@id": "schema:acquireLicensePage", + "@type": "@id" + }, + "acquiredFrom": { + "@id": "schema:acquiredFrom" + }, + "acrissCode": { + "@id": "schema:acrissCode" + }, + "actionAccessibilityRequirement": { + "@id": "schema:actionAccessibilityRequirement" + }, + "actionApplication": { + "@id": "schema:actionApplication" + }, + "actionOption": { + "@id": "schema:actionOption" + }, + "actionPlatform": { + "@id": "schema:actionPlatform" + }, + "actionStatus": { + "@id": "schema:actionStatus" + }, + "actionableFeedbackPolicy": { + "@id": "schema:actionableFeedbackPolicy", + "@type": "@id" + }, + "activeIngredient": { + "@id": "schema:activeIngredient" + }, + "activityDuration": { + "@id": "schema:activityDuration" + }, + "activityFrequency": { + "@id": "schema:activityFrequency" + }, + "actor": { + "@id": "schema:actor" + }, + "actors": { + "@id": "schema:actors" + }, + "addOn": { + "@id": "schema:addOn" + }, + "additionalName": { + "@id": "schema:additionalName" + }, + "additionalNumberOfGuests": { + "@id": "schema:additionalNumberOfGuests" + }, + "additionalProperty": { + "@id": "schema:additionalProperty" + }, + "additionalType": { + "@id": "schema:additionalType", + "@type": "@id" + }, + "additionalVariable": { + "@id": "schema:additionalVariable" + }, + "address": { + "@id": "schema:address" + }, + "addressCountry": { + "@id": "schema:addressCountry" + }, + "addressLocality": { + "@id": "schema:addressLocality" + }, + "addressRegion": { + "@id": "schema:addressRegion" + }, + "administrationRoute": { + "@id": "schema:administrationRoute" + }, + "advanceBookingRequirement": { + "@id": "schema:advanceBookingRequirement" + }, + "adverseOutcome": { + "@id": "schema:adverseOutcome" + }, + "affectedBy": { + "@id": "schema:affectedBy" + }, + "affiliation": { + "@id": "schema:affiliation" + }, + "afterMedia": { + "@id": "schema:afterMedia", + "@type": "@id" + }, + "agent": { + "@id": "schema:agent" + }, + "aggregateRating": { + "@id": "schema:aggregateRating" + }, + "aircraft": { + "@id": "schema:aircraft" + }, + "album": { + "@id": "schema:album" + }, + "albumProductionType": { + "@id": "schema:albumProductionType" + }, + "albumRelease": { + "@id": "schema:albumRelease" + }, + "albumReleaseType": { + "@id": "schema:albumReleaseType" + }, + "albums": { + "@id": "schema:albums" + }, + "alcoholWarning": { + "@id": "schema:alcoholWarning" + }, + "algorithm": { + "@id": "schema:algorithm" + }, + "alignmentType": { + "@id": "schema:alignmentType" + }, + "alternateName": { + "@id": "schema:alternateName" + }, + "alternativeHeadline": { + "@id": "schema:alternativeHeadline" + }, + "alumni": { + "@id": "schema:alumni" + }, + "alumniOf": { + "@id": "schema:alumniOf" + }, + "amenityFeature": { + "@id": "schema:amenityFeature" + }, + "amount": { + "@id": "schema:amount" + }, + "amountOfThisGood": { + "@id": "schema:amountOfThisGood" + }, + "announcementLocation": { + "@id": "schema:announcementLocation" + }, + "annualPercentageRate": { + "@id": "schema:annualPercentageRate" + }, + "answerCount": { + "@id": "schema:answerCount" + }, + "answerExplanation": { + "@id": "schema:answerExplanation" + }, + "antagonist": { + "@id": "schema:antagonist" + }, + "appearance": { + "@id": "schema:appearance" + }, + "applicableLocation": { + "@id": "schema:applicableLocation" + }, + "applicantLocationRequirements": { + "@id": "schema:applicantLocationRequirements" + }, + "application": { + "@id": "schema:application" + }, + "applicationCategory": { + "@id": "schema:applicationCategory" + }, + "applicationContact": { + "@id": "schema:applicationContact" + }, + "applicationDeadline": { + "@id": "schema:applicationDeadline", + "@type": "Date" + }, + "applicationStartDate": { + "@id": "schema:applicationStartDate", + "@type": "Date" + }, + "applicationSubCategory": { + "@id": "schema:applicationSubCategory" + }, + "applicationSuite": { + "@id": "schema:applicationSuite" + }, + "appliesToDeliveryMethod": { + "@id": "schema:appliesToDeliveryMethod" + }, + "appliesToPaymentMethod": { + "@id": "schema:appliesToPaymentMethod" + }, + "archiveHeld": { + "@id": "schema:archiveHeld" + }, + "area": { + "@id": "schema:area" + }, + "areaServed": { + "@id": "schema:areaServed" + }, + "arrivalAirport": { + "@id": "schema:arrivalAirport" + }, + "arrivalBoatTerminal": { + "@id": "schema:arrivalBoatTerminal" + }, + "arrivalBusStop": { + "@id": "schema:arrivalBusStop" + }, + "arrivalGate": { + "@id": "schema:arrivalGate" + }, + "arrivalPlatform": { + "@id": "schema:arrivalPlatform" + }, + "arrivalStation": { + "@id": "schema:arrivalStation" + }, + "arrivalTerminal": { + "@id": "schema:arrivalTerminal" + }, + "arrivalTime": { + "@id": "schema:arrivalTime", + "@type": "DateTime" + }, + "artEdition": { + "@id": "schema:artEdition" + }, + "artMedium": { + "@id": "schema:artMedium" + }, + "arterialBranch": { + "@id": "schema:arterialBranch" + }, + "artform": { + "@id": "schema:artform" + }, + "articleBody": { + "@id": "schema:articleBody" + }, + "articleSection": { + "@id": "schema:articleSection" + }, + "artist": { + "@id": "schema:artist" + }, + "artworkSurface": { + "@id": "schema:artworkSurface" + }, + "aspect": { + "@id": "schema:aspect" + }, + "assembly": { + "@id": "schema:assembly" + }, + "assemblyVersion": { + "@id": "schema:assemblyVersion" + }, + "assesses": { + "@id": "schema:assesses" + }, + "associatedAnatomy": { + "@id": "schema:associatedAnatomy" + }, + "associatedArticle": { + "@id": "schema:associatedArticle" + }, + "associatedMedia": { + "@id": "schema:associatedMedia" + }, + "associatedPathophysiology": { + "@id": "schema:associatedPathophysiology" + }, + "athlete": { + "@id": "schema:athlete" + }, + "attendee": { + "@id": "schema:attendee" + }, + "attendees": { + "@id": "schema:attendees" + }, + "audience": { + "@id": "schema:audience" + }, + "audienceType": { + "@id": "schema:audienceType" + }, + "audio": { + "@id": "schema:audio" + }, + "authenticator": { + "@id": "schema:authenticator" + }, + "author": { + "@id": "schema:author" + }, + "availability": { + "@id": "schema:availability" + }, + "availabilityEnds": { + "@id": "schema:availabilityEnds", + "@type": "Date" + }, + "availabilityStarts": { + "@id": "schema:availabilityStarts", + "@type": "Date" + }, + "availableAtOrFrom": { + "@id": "schema:availableAtOrFrom" + }, + "availableChannel": { + "@id": "schema:availableChannel" + }, + "availableDeliveryMethod": { + "@id": "schema:availableDeliveryMethod" + }, + "availableFrom": { + "@id": "schema:availableFrom", + "@type": "DateTime" + }, + "availableIn": { + "@id": "schema:availableIn" + }, + "availableLanguage": { + "@id": "schema:availableLanguage" + }, + "availableOnDevice": { + "@id": "schema:availableOnDevice" + }, + "availableService": { + "@id": "schema:availableService" + }, + "availableStrength": { + "@id": "schema:availableStrength" + }, + "availableTest": { + "@id": "schema:availableTest" + }, + "availableThrough": { + "@id": "schema:availableThrough", + "@type": "DateTime" + }, + "award": { + "@id": "schema:award" + }, + "awards": { + "@id": "schema:awards" + }, + "awayTeam": { + "@id": "schema:awayTeam" + }, + "backstory": { + "@id": "schema:backstory" + }, + "bankAccountType": { + "@id": "schema:bankAccountType" + }, + "baseSalary": { + "@id": "schema:baseSalary" + }, + "bccRecipient": { + "@id": "schema:bccRecipient" + }, + "bed": { + "@id": "schema:bed" + }, + "beforeMedia": { + "@id": "schema:beforeMedia", + "@type": "@id" + }, + "beneficiaryBank": { + "@id": "schema:beneficiaryBank" + }, + "benefits": { + "@id": "schema:benefits" + }, + "benefitsSummaryUrl": { + "@id": "schema:benefitsSummaryUrl", + "@type": "@id" + }, + "bestRating": { + "@id": "schema:bestRating" + }, + "bibo": "http://purl.org/ontology/bibo/", + "billingAddress": { + "@id": "schema:billingAddress" + }, + "billingIncrement": { + "@id": "schema:billingIncrement" + }, + "billingPeriod": { + "@id": "schema:billingPeriod" + }, + "biomechnicalClass": { + "@id": "schema:biomechnicalClass" + }, + "birthDate": { + "@id": "schema:birthDate", + "@type": "Date" + }, + "birthPlace": { + "@id": "schema:birthPlace" + }, + "bitrate": { + "@id": "schema:bitrate" + }, + "blogPost": { + "@id": "schema:blogPost" + }, + "blogPosts": { + "@id": "schema:blogPosts" + }, + "bloodSupply": { + "@id": "schema:bloodSupply" + }, + "boardingGroup": { + "@id": "schema:boardingGroup" + }, + "boardingPolicy": { + "@id": "schema:boardingPolicy" + }, + "bodyLocation": { + "@id": "schema:bodyLocation" + }, + "bodyType": { + "@id": "schema:bodyType" + }, + "bookEdition": { + "@id": "schema:bookEdition" + }, + "bookFormat": { + "@id": "schema:bookFormat" + }, + "bookingAgent": { + "@id": "schema:bookingAgent" + }, + "bookingTime": { + "@id": "schema:bookingTime", + "@type": "DateTime" + }, + "borrower": { + "@id": "schema:borrower" + }, + "box": { + "@id": "schema:box" + }, + "branch": { + "@id": "schema:branch" + }, + "branchCode": { + "@id": "schema:branchCode" + }, + "branchOf": { + "@id": "schema:branchOf" + }, + "brand": { + "@id": "schema:brand" + }, + "breadcrumb": { + "@id": "schema:breadcrumb" + }, + "breastfeedingWarning": { + "@id": "schema:breastfeedingWarning" + }, + "broadcastAffiliateOf": { + "@id": "schema:broadcastAffiliateOf" + }, + "broadcastChannelId": { + "@id": "schema:broadcastChannelId" + }, + "broadcastDisplayName": { + "@id": "schema:broadcastDisplayName" + }, + "broadcastFrequency": { + "@id": "schema:broadcastFrequency" + }, + "broadcastFrequencyValue": { + "@id": "schema:broadcastFrequencyValue" + }, + "broadcastOfEvent": { + "@id": "schema:broadcastOfEvent" + }, + "broadcastServiceTier": { + "@id": "schema:broadcastServiceTier" + }, + "broadcastSignalModulation": { + "@id": "schema:broadcastSignalModulation" + }, + "broadcastSubChannel": { + "@id": "schema:broadcastSubChannel" + }, + "broadcastTimezone": { + "@id": "schema:broadcastTimezone" + }, + "broadcaster": { + "@id": "schema:broadcaster" + }, + "broker": { + "@id": "schema:broker" + }, + "browserRequirements": { + "@id": "schema:browserRequirements" + }, + "busName": { + "@id": "schema:busName" + }, + "busNumber": { + "@id": "schema:busNumber" + }, + "businessDays": { + "@id": "schema:businessDays" + }, + "businessFunction": { + "@id": "schema:businessFunction" + }, + "buyer": { + "@id": "schema:buyer" + }, + "byArtist": { + "@id": "schema:byArtist" + }, + "byDay": { + "@id": "schema:byDay" + }, + "byMonth": { + "@id": "schema:byMonth" + }, + "byMonthDay": { + "@id": "schema:byMonthDay" + }, + "byMonthWeek": { + "@id": "schema:byMonthWeek" + }, + "callSign": { + "@id": "schema:callSign" + }, + "calories": { + "@id": "schema:calories" + }, + "candidate": { + "@id": "schema:candidate" + }, + "caption": { + "@id": "schema:caption" + }, + "carbohydrateContent": { + "@id": "schema:carbohydrateContent" + }, + "cargoVolume": { + "@id": "schema:cargoVolume" + }, + "carrier": { + "@id": "schema:carrier" + }, + "carrierRequirements": { + "@id": "schema:carrierRequirements" + }, + "cashBack": { + "@id": "schema:cashBack" + }, + "catalog": { + "@id": "schema:catalog" + }, + "catalogNumber": { + "@id": "schema:catalogNumber" + }, + "category": { + "@id": "schema:category" + }, + "causeOf": { + "@id": "schema:causeOf" + }, + "ccRecipient": { + "@id": "schema:ccRecipient" + }, + "character": { + "@id": "schema:character" + }, + "characterAttribute": { + "@id": "schema:characterAttribute" + }, + "characterName": { + "@id": "schema:characterName" + }, + "cheatCode": { + "@id": "schema:cheatCode" + }, + "checkinTime": { + "@id": "schema:checkinTime", + "@type": "DateTime" + }, + "checkoutTime": { + "@id": "schema:checkoutTime", + "@type": "DateTime" + }, + "childMaxAge": { + "@id": "schema:childMaxAge" + }, + "childMinAge": { + "@id": "schema:childMinAge" + }, + "children": { + "@id": "schema:children" + }, + "cholesterolContent": { + "@id": "schema:cholesterolContent" + }, + "circle": { + "@id": "schema:circle" + }, + "citation": { + "@id": "schema:citation" + }, + "claimReviewed": { + "@id": "schema:claimReviewed" + }, + "clincalPharmacology": { + "@id": "schema:clincalPharmacology" + }, + "clinicalPharmacology": { + "@id": "schema:clinicalPharmacology" + }, + "clipNumber": { + "@id": "schema:clipNumber" + }, + "closes": { + "@id": "schema:closes" + }, + "coach": { + "@id": "schema:coach" + }, + "code": { + "@id": "schema:code" + }, + "codeRepository": { + "@id": "schema:codeRepository", + "@type": "@id" + }, + "codeSampleType": { + "@id": "schema:codeSampleType" + }, + "codeValue": { + "@id": "schema:codeValue" + }, + "codingSystem": { + "@id": "schema:codingSystem" + }, + "colleague": { + "@id": "schema:colleague", + "@type": "@id" + }, + "colleagues": { + "@id": "schema:colleagues" + }, + "collection": { + "@id": "schema:collection" + }, + "collectionSize": { + "@id": "schema:collectionSize" + }, + "color": { + "@id": "schema:color" + }, + "colorist": { + "@id": "schema:colorist" + }, + "comment": { + "@id": "schema:comment" + }, + "commentCount": { + "@id": "schema:commentCount" + }, + "commentText": { + "@id": "schema:commentText" + }, + "commentTime": { + "@id": "schema:commentTime", + "@type": "Date" + }, + "competencyRequired": { + "@id": "schema:competencyRequired" + }, + "competitor": { + "@id": "schema:competitor" + }, + "composer": { + "@id": "schema:composer" + }, + "comprisedOf": { + "@id": "schema:comprisedOf" + }, + "conditionsOfAccess": { + "@id": "schema:conditionsOfAccess" + }, + "confirmationNumber": { + "@id": "schema:confirmationNumber" + }, + "connectedTo": { + "@id": "schema:connectedTo" + }, + "constrainingProperty": { + "@id": "schema:constrainingProperty" + }, + "contactOption": { + "@id": "schema:contactOption" + }, + "contactPoint": { + "@id": "schema:contactPoint" + }, + "contactPoints": { + "@id": "schema:contactPoints" + }, + "contactType": { + "@id": "schema:contactType" + }, + "contactlessPayment": { + "@id": "schema:contactlessPayment" + }, + "containedIn": { + "@id": "schema:containedIn" + }, + "containedInPlace": { + "@id": "schema:containedInPlace" + }, + "containsPlace": { + "@id": "schema:containsPlace" + }, + "containsSeason": { + "@id": "schema:containsSeason" + }, + "contentLocation": { + "@id": "schema:contentLocation" + }, + "contentRating": { + "@id": "schema:contentRating" + }, + "contentReferenceTime": { + "@id": "schema:contentReferenceTime", + "@type": "DateTime" + }, + "contentSize": { + "@id": "schema:contentSize" + }, + "contentType": { + "@id": "schema:contentType" + }, + "contentUrl": { + "@id": "schema:contentUrl", + "@type": "@id" + }, + "contraindication": { + "@id": "schema:contraindication" + }, + "contributor": { + "@id": "schema:contributor" + }, + "cookTime": { + "@id": "schema:cookTime" + }, + "cookingMethod": { + "@id": "schema:cookingMethod" + }, + "copyrightHolder": { + "@id": "schema:copyrightHolder" + }, + "copyrightYear": { + "@id": "schema:copyrightYear" + }, + "correction": { + "@id": "schema:correction" + }, + "correctionsPolicy": { + "@id": "schema:correctionsPolicy", + "@type": "@id" + }, + "costCategory": { + "@id": "schema:costCategory" + }, + "costCurrency": { + "@id": "schema:costCurrency" + }, + "costOrigin": { + "@id": "schema:costOrigin" + }, + "costPerUnit": { + "@id": "schema:costPerUnit" + }, + "countriesNotSupported": { + "@id": "schema:countriesNotSupported" + }, + "countriesSupported": { + "@id": "schema:countriesSupported" + }, + "countryOfOrigin": { + "@id": "schema:countryOfOrigin" + }, + "course": { + "@id": "schema:course" + }, + "courseCode": { + "@id": "schema:courseCode" + }, + "courseMode": { + "@id": "schema:courseMode" + }, + "coursePrerequisites": { + "@id": "schema:coursePrerequisites" + }, + "courseWorkload": { + "@id": "schema:courseWorkload" + }, + "coverageEndTime": { + "@id": "schema:coverageEndTime", + "@type": "DateTime" + }, + "coverageStartTime": { + "@id": "schema:coverageStartTime", + "@type": "DateTime" + }, + "creativeWorkStatus": { + "@id": "schema:creativeWorkStatus" + }, + "creator": { + "@id": "schema:creator" + }, + "credentialCategory": { + "@id": "schema:credentialCategory" + }, + "creditedTo": { + "@id": "schema:creditedTo" + }, + "cssSelector": { + "@id": "schema:cssSelector" + }, + "currenciesAccepted": { + "@id": "schema:currenciesAccepted" + }, + "currency": { + "@id": "schema:currency" + }, + "currentExchangeRate": { + "@id": "schema:currentExchangeRate" + }, + "customer": { + "@id": "schema:customer" + }, + "cutoffTime": { + "@id": "schema:cutoffTime" + }, + "cvdCollectionDate": { + "@id": "schema:cvdCollectionDate" + }, + "cvdFacilityCounty": { + "@id": "schema:cvdFacilityCounty" + }, + "cvdFacilityId": { + "@id": "schema:cvdFacilityId" + }, + "cvdNumBeds": { + "@id": "schema:cvdNumBeds" + }, + "cvdNumBedsOcc": { + "@id": "schema:cvdNumBedsOcc" + }, + "cvdNumC19Died": { + "@id": "schema:cvdNumC19Died" + }, + "cvdNumC19HOPats": { + "@id": "schema:cvdNumC19HOPats" + }, + "cvdNumC19HospPats": { + "@id": "schema:cvdNumC19HospPats" + }, + "cvdNumC19MechVentPats": { + "@id": "schema:cvdNumC19MechVentPats" + }, + "cvdNumC19OFMechVentPats": { + "@id": "schema:cvdNumC19OFMechVentPats" + }, + "cvdNumC19OverflowPats": { + "@id": "schema:cvdNumC19OverflowPats" + }, + "cvdNumICUBeds": { + "@id": "schema:cvdNumICUBeds" + }, + "cvdNumICUBedsOcc": { + "@id": "schema:cvdNumICUBedsOcc" + }, + "cvdNumTotBeds": { + "@id": "schema:cvdNumTotBeds" + }, + "cvdNumVent": { + "@id": "schema:cvdNumVent" + }, + "cvdNumVentUse": { + "@id": "schema:cvdNumVentUse" + }, + "dataFeedElement": { + "@id": "schema:dataFeedElement" + }, + "dataset": { + "@id": "schema:dataset" + }, + "datasetTimeInterval": { + "@id": "schema:datasetTimeInterval", + "@type": "DateTime" + }, + "dateCreated": { + "@id": "schema:dateCreated", + "@type": "Date" + }, + "dateDeleted": { + "@id": "schema:dateDeleted", + "@type": "Date" + }, + "dateIssued": { + "@id": "schema:dateIssued", + "@type": "Date" + }, + "dateModified": { + "@id": "schema:dateModified", + "@type": "Date" + }, + "datePosted": { + "@id": "schema:datePosted", + "@type": "Date" + }, + "datePublished": { + "@id": "schema:datePublished", + "@type": "Date" + }, + "dateRead": { + "@id": "schema:dateRead", + "@type": "Date" + }, + "dateReceived": { + "@id": "schema:dateReceived", + "@type": "DateTime" + }, + "dateSent": { + "@id": "schema:dateSent", + "@type": "DateTime" + }, + "dateVehicleFirstRegistered": { + "@id": "schema:dateVehicleFirstRegistered", + "@type": "Date" + }, + "dateline": { + "@id": "schema:dateline" + }, + "dayOfWeek": { + "@id": "schema:dayOfWeek" + }, + "dc": "http://purl.org/dc/elements/1.1/", + "dcat": "http://www.w3.org/ns/dcat#", + "dct": "http://purl.org/dc/terms/", + "dcterms": "http://purl.org/dc/terms/", + "dctype": "http://purl.org/dc/dcmitype/", + "deathDate": { + "@id": "schema:deathDate", + "@type": "Date" + }, + "deathPlace": { + "@id": "schema:deathPlace" + }, + "defaultValue": { + "@id": "schema:defaultValue" + }, + "deliveryAddress": { + "@id": "schema:deliveryAddress" + }, + "deliveryLeadTime": { + "@id": "schema:deliveryLeadTime" + }, + "deliveryMethod": { + "@id": "schema:deliveryMethod" + }, + "deliveryStatus": { + "@id": "schema:deliveryStatus" + }, + "deliveryTime": { + "@id": "schema:deliveryTime" + }, + "department": { + "@id": "schema:department" + }, + "departureAirport": { + "@id": "schema:departureAirport" + }, + "departureBoatTerminal": { + "@id": "schema:departureBoatTerminal" + }, + "departureBusStop": { + "@id": "schema:departureBusStop" + }, + "departureGate": { + "@id": "schema:departureGate" + }, + "departurePlatform": { + "@id": "schema:departurePlatform" + }, + "departureStation": { + "@id": "schema:departureStation" + }, + "departureTerminal": { + "@id": "schema:departureTerminal" + }, + "departureTime": { + "@id": "schema:departureTime", + "@type": "DateTime" + }, + "dependencies": { + "@id": "schema:dependencies" + }, + "depth": { + "@id": "schema:depth" + }, + "description": { + "@id": "schema:description" + }, + "device": { + "@id": "schema:device" + }, + "diagnosis": { + "@id": "schema:diagnosis" + }, + "diagram": { + "@id": "schema:diagram" + }, + "diet": { + "@id": "schema:diet" + }, + "dietFeatures": { + "@id": "schema:dietFeatures" + }, + "differentialDiagnosis": { + "@id": "schema:differentialDiagnosis" + }, + "director": { + "@id": "schema:director" + }, + "directors": { + "@id": "schema:directors" + }, + "disambiguatingDescription": { + "@id": "schema:disambiguatingDescription" + }, + "discount": { + "@id": "schema:discount" + }, + "discountCode": { + "@id": "schema:discountCode" + }, + "discountCurrency": { + "@id": "schema:discountCurrency" + }, + "discusses": { + "@id": "schema:discusses" + }, + "discussionUrl": { + "@id": "schema:discussionUrl", + "@type": "@id" + }, + "diseasePreventionInfo": { + "@id": "schema:diseasePreventionInfo", + "@type": "@id" + }, + "diseaseSpreadStatistics": { + "@id": "schema:diseaseSpreadStatistics", + "@type": "@id" + }, + "dissolutionDate": { + "@id": "schema:dissolutionDate", + "@type": "Date" + }, + "distance": { + "@id": "schema:distance" + }, + "distinguishingSign": { + "@id": "schema:distinguishingSign" + }, + "distribution": { + "@id": "schema:distribution" + }, + "diversityPolicy": { + "@id": "schema:diversityPolicy", + "@type": "@id" + }, + "diversityStaffingReport": { + "@id": "schema:diversityStaffingReport", + "@type": "@id" + }, + "documentation": { + "@id": "schema:documentation", + "@type": "@id" + }, + "doesNotShip": { + "@id": "schema:doesNotShip" + }, + "domainIncludes": { + "@id": "schema:domainIncludes" + }, + "domiciledMortgage": { + "@id": "schema:domiciledMortgage" + }, + "doorTime": { + "@id": "schema:doorTime", + "@type": "DateTime" + }, + "dosageForm": { + "@id": "schema:dosageForm" + }, + "doseSchedule": { + "@id": "schema:doseSchedule" + }, + "doseUnit": { + "@id": "schema:doseUnit" + }, + "doseValue": { + "@id": "schema:doseValue" + }, + "downPayment": { + "@id": "schema:downPayment" + }, + "downloadUrl": { + "@id": "schema:downloadUrl", + "@type": "@id" + }, + "downvoteCount": { + "@id": "schema:downvoteCount" + }, + "drainsTo": { + "@id": "schema:drainsTo" + }, + "driveWheelConfiguration": { + "@id": "schema:driveWheelConfiguration" + }, + "dropoffLocation": { + "@id": "schema:dropoffLocation" + }, + "dropoffTime": { + "@id": "schema:dropoffTime", + "@type": "DateTime" + }, + "drug": { + "@id": "schema:drug" + }, + "drugClass": { + "@id": "schema:drugClass" + }, + "drugUnit": { + "@id": "schema:drugUnit" + }, + "duns": { + "@id": "schema:duns" + }, + "duplicateTherapy": { + "@id": "schema:duplicateTherapy" + }, + "duration": { + "@id": "schema:duration" + }, + "durationOfWarranty": { + "@id": "schema:durationOfWarranty" + }, + "duringMedia": { + "@id": "schema:duringMedia", + "@type": "@id" + }, + "earlyPrepaymentPenalty": { + "@id": "schema:earlyPrepaymentPenalty" + }, + "editEIDR": { + "@id": "schema:editEIDR" + }, + "editor": { + "@id": "schema:editor" + }, + "eduQuestionType": { + "@id": "schema:eduQuestionType" + }, + "educationRequirements": { + "@id": "schema:educationRequirements" + }, + "educationalAlignment": { + "@id": "schema:educationalAlignment" + }, + "educationalCredentialAwarded": { + "@id": "schema:educationalCredentialAwarded" + }, + "educationalFramework": { + "@id": "schema:educationalFramework" + }, + "educationalLevel": { + "@id": "schema:educationalLevel" + }, + "educationalProgramMode": { + "@id": "schema:educationalProgramMode" + }, + "educationalRole": { + "@id": "schema:educationalRole" + }, + "educationalUse": { + "@id": "schema:educationalUse" + }, + "elevation": { + "@id": "schema:elevation" + }, + "eli": "http://data.europa.eu/eli/ontology#", + "eligibilityToWorkRequirement": { + "@id": "schema:eligibilityToWorkRequirement" + }, + "eligibleCustomerType": { + "@id": "schema:eligibleCustomerType" + }, + "eligibleDuration": { + "@id": "schema:eligibleDuration" + }, + "eligibleQuantity": { + "@id": "schema:eligibleQuantity" + }, + "eligibleRegion": { + "@id": "schema:eligibleRegion" + }, + "eligibleTransactionVolume": { + "@id": "schema:eligibleTransactionVolume" + }, + "email": { + "@id": "schema:email" + }, + "embedUrl": { + "@id": "schema:embedUrl", + "@type": "@id" + }, + "emissionsCO2": { + "@id": "schema:emissionsCO2" + }, + "employee": { + "@id": "schema:employee" + }, + "employees": { + "@id": "schema:employees" + }, + "employerOverview": { + "@id": "schema:employerOverview" + }, + "employmentType": { + "@id": "schema:employmentType" + }, + "employmentUnit": { + "@id": "schema:employmentUnit" + }, + "encodesCreativeWork": { + "@id": "schema:encodesCreativeWork" + }, + "encoding": { + "@id": "schema:encoding" + }, + "encodingFormat": { + "@id": "schema:encodingFormat" + }, + "encodingType": { + "@id": "schema:encodingType" + }, + "encodings": { + "@id": "schema:encodings" + }, + "endDate": { + "@id": "schema:endDate", + "@type": "Date" + }, + "endOffset": { + "@id": "schema:endOffset" + }, + "endTime": { + "@id": "schema:endTime", + "@type": "DateTime" + }, + "endorsee": { + "@id": "schema:endorsee" + }, + "endorsers": { + "@id": "schema:endorsers" + }, + "energyEfficiencyScaleMax": { + "@id": "schema:energyEfficiencyScaleMax" + }, + "energyEfficiencyScaleMin": { + "@id": "schema:energyEfficiencyScaleMin" + }, + "engineDisplacement": { + "@id": "schema:engineDisplacement" + }, + "enginePower": { + "@id": "schema:enginePower" + }, + "engineType": { + "@id": "schema:engineType" + }, + "entertainmentBusiness": { + "@id": "schema:entertainmentBusiness" + }, + "epidemiology": { + "@id": "schema:epidemiology" + }, + "episode": { + "@id": "schema:episode" + }, + "episodeNumber": { + "@id": "schema:episodeNumber" + }, + "episodes": { + "@id": "schema:episodes" + }, + "equal": { + "@id": "schema:equal" + }, + "error": { + "@id": "schema:error" + }, + "estimatedCost": { + "@id": "schema:estimatedCost" + }, + "estimatedFlightDuration": { + "@id": "schema:estimatedFlightDuration" + }, + "estimatedSalary": { + "@id": "schema:estimatedSalary" + }, + "estimatesRiskOf": { + "@id": "schema:estimatesRiskOf" + }, + "ethicsPolicy": { + "@id": "schema:ethicsPolicy", + "@type": "@id" + }, + "event": { + "@id": "schema:event" + }, + "eventAttendanceMode": { + "@id": "schema:eventAttendanceMode" + }, + "eventSchedule": { + "@id": "schema:eventSchedule" + }, + "eventStatus": { + "@id": "schema:eventStatus" + }, + "events": { + "@id": "schema:events" + }, + "evidenceLevel": { + "@id": "schema:evidenceLevel" + }, + "evidenceOrigin": { + "@id": "schema:evidenceOrigin" + }, + "exampleOfWork": { + "@id": "schema:exampleOfWork" + }, + "exceptDate": { + "@id": "schema:exceptDate", + "@type": "Date" + }, + "exchangeRateSpread": { + "@id": "schema:exchangeRateSpread" + }, + "executableLibraryName": { + "@id": "schema:executableLibraryName" + }, + "exerciseCourse": { + "@id": "schema:exerciseCourse" + }, + "exercisePlan": { + "@id": "schema:exercisePlan" + }, + "exerciseRelatedDiet": { + "@id": "schema:exerciseRelatedDiet" + }, + "exerciseType": { + "@id": "schema:exerciseType" + }, + "exifData": { + "@id": "schema:exifData" + }, + "expectedArrivalFrom": { + "@id": "schema:expectedArrivalFrom", + "@type": "Date" + }, + "expectedArrivalUntil": { + "@id": "schema:expectedArrivalUntil", + "@type": "Date" + }, + "expectedPrognosis": { + "@id": "schema:expectedPrognosis" + }, + "expectsAcceptanceOf": { + "@id": "schema:expectsAcceptanceOf" + }, + "experienceRequirements": { + "@id": "schema:experienceRequirements" + }, + "expertConsiderations": { + "@id": "schema:expertConsiderations" + }, + "expires": { + "@id": "schema:expires", + "@type": "Date" + }, + "familyName": { + "@id": "schema:familyName" + }, + "fatContent": { + "@id": "schema:fatContent" + }, + "faxNumber": { + "@id": "schema:faxNumber" + }, + "featureList": { + "@id": "schema:featureList" + }, + "feesAndCommissionsSpecification": { + "@id": "schema:feesAndCommissionsSpecification" + }, + "fiberContent": { + "@id": "schema:fiberContent" + }, + "fileFormat": { + "@id": "schema:fileFormat" + }, + "fileSize": { + "@id": "schema:fileSize" + }, + "financialAidEligible": { + "@id": "schema:financialAidEligible" + }, + "firstAppearance": { + "@id": "schema:firstAppearance" + }, + "firstPerformance": { + "@id": "schema:firstPerformance" + }, + "flightDistance": { + "@id": "schema:flightDistance" + }, + "flightNumber": { + "@id": "schema:flightNumber" + }, + "floorLevel": { + "@id": "schema:floorLevel" + }, + "floorLimit": { + "@id": "schema:floorLimit" + }, + "floorSize": { + "@id": "schema:floorSize" + }, + "foaf": "http://xmlns.com/foaf/0.1/", + "followee": { + "@id": "schema:followee" + }, + "follows": { + "@id": "schema:follows" + }, + "followup": { + "@id": "schema:followup" + }, + "foodEstablishment": { + "@id": "schema:foodEstablishment" + }, + "foodEvent": { + "@id": "schema:foodEvent" + }, + "foodWarning": { + "@id": "schema:foodWarning" + }, + "founder": { + "@id": "schema:founder" + }, + "founders": { + "@id": "schema:founders" + }, + "foundingDate": { + "@id": "schema:foundingDate", + "@type": "Date" + }, + "foundingLocation": { + "@id": "schema:foundingLocation" + }, + "free": { + "@id": "schema:free" + }, + "freeShippingThreshold": { + "@id": "schema:freeShippingThreshold" + }, + "frequency": { + "@id": "schema:frequency" + }, + "fromLocation": { + "@id": "schema:fromLocation" + }, + "fuelCapacity": { + "@id": "schema:fuelCapacity" + }, + "fuelConsumption": { + "@id": "schema:fuelConsumption" + }, + "fuelEfficiency": { + "@id": "schema:fuelEfficiency" + }, + "fuelType": { + "@id": "schema:fuelType" + }, + "functionalClass": { + "@id": "schema:functionalClass" + }, + "fundedItem": { + "@id": "schema:fundedItem" + }, + "funder": { + "@id": "schema:funder" + }, + "game": { + "@id": "schema:game" + }, + "gameItem": { + "@id": "schema:gameItem" + }, + "gameLocation": { + "@id": "schema:gameLocation", + "@type": "@id" + }, + "gamePlatform": { + "@id": "schema:gamePlatform" + }, + "gameServer": { + "@id": "schema:gameServer" + }, + "gameTip": { + "@id": "schema:gameTip" + }, + "gender": { + "@id": "schema:gender" + }, + "genre": { + "@id": "schema:genre" + }, + "geo": { + "@id": "schema:geo" + }, + "geoContains": { + "@id": "schema:geoContains" + }, + "geoCoveredBy": { + "@id": "schema:geoCoveredBy" + }, + "geoCovers": { + "@id": "schema:geoCovers" + }, + "geoCrosses": { + "@id": "schema:geoCrosses" + }, + "geoDisjoint": { + "@id": "schema:geoDisjoint" + }, + "geoEquals": { + "@id": "schema:geoEquals" + }, + "geoIntersects": { + "@id": "schema:geoIntersects" + }, + "geoMidpoint": { + "@id": "schema:geoMidpoint" + }, + "geoOverlaps": { + "@id": "schema:geoOverlaps" + }, + "geoRadius": { + "@id": "schema:geoRadius" + }, + "geoTouches": { + "@id": "schema:geoTouches" + }, + "geoWithin": { + "@id": "schema:geoWithin" + }, + "geographicArea": { + "@id": "schema:geographicArea" + }, + "gettingTestedInfo": { + "@id": "schema:gettingTestedInfo", + "@type": "@id" + }, + "givenName": { + "@id": "schema:givenName" + }, + "globalLocationNumber": { + "@id": "schema:globalLocationNumber" + }, + "governmentBenefitsInfo": { + "@id": "schema:governmentBenefitsInfo" + }, + "gracePeriod": { + "@id": "schema:gracePeriod" + }, + "grantee": { + "@id": "schema:grantee" + }, + "greater": { + "@id": "schema:greater" + }, + "greaterOrEqual": { + "@id": "schema:greaterOrEqual" + }, + "gtin": { + "@id": "schema:gtin" + }, + "gtin12": { + "@id": "schema:gtin12" + }, + "gtin13": { + "@id": "schema:gtin13" + }, + "gtin14": { + "@id": "schema:gtin14" + }, + "gtin8": { + "@id": "schema:gtin8" + }, + "guideline": { + "@id": "schema:guideline" + }, + "guidelineDate": { + "@id": "schema:guidelineDate", + "@type": "Date" + }, + "guidelineSubject": { + "@id": "schema:guidelineSubject" + }, + "handlingTime": { + "@id": "schema:handlingTime" + }, + "hasBroadcastChannel": { + "@id": "schema:hasBroadcastChannel" + }, + "hasCategoryCode": { + "@id": "schema:hasCategoryCode" + }, + "hasCourse": { + "@id": "schema:hasCourse" + }, + "hasCourseInstance": { + "@id": "schema:hasCourseInstance" + }, + "hasCredential": { + "@id": "schema:hasCredential" + }, + "hasDefinedTerm": { + "@id": "schema:hasDefinedTerm" + }, + "hasDeliveryMethod": { + "@id": "schema:hasDeliveryMethod" + }, + "hasDigitalDocumentPermission": { + "@id": "schema:hasDigitalDocumentPermission" + }, + "hasDriveThroughService": { + "@id": "schema:hasDriveThroughService" + }, + "hasEnergyConsumptionDetails": { + "@id": "schema:hasEnergyConsumptionDetails" + }, + "hasEnergyEfficiencyCategory": { + "@id": "schema:hasEnergyEfficiencyCategory" + }, + "hasHealthAspect": { + "@id": "schema:hasHealthAspect" + }, + "hasMap": { + "@id": "schema:hasMap", + "@type": "@id" + }, + "hasMenu": { + "@id": "schema:hasMenu" + }, + "hasMenuItem": { + "@id": "schema:hasMenuItem" + }, + "hasMenuSection": { + "@id": "schema:hasMenuSection" + }, + "hasMerchantReturnPolicy": { + "@id": "schema:hasMerchantReturnPolicy" + }, + "hasOccupation": { + "@id": "schema:hasOccupation" + }, + "hasOfferCatalog": { + "@id": "schema:hasOfferCatalog" + }, + "hasPOS": { + "@id": "schema:hasPOS" + }, + "hasPart": { + "@id": "schema:hasPart" + }, + "hasProductReturnPolicy": { + "@id": "schema:hasProductReturnPolicy" + }, + "hasVariant": { + "@id": "schema:hasVariant" + }, + "headline": { + "@id": "schema:headline" + }, + "healthCondition": { + "@id": "schema:healthCondition" + }, + "healthPlanCoinsuranceOption": { + "@id": "schema:healthPlanCoinsuranceOption" + }, + "healthPlanCoinsuranceRate": { + "@id": "schema:healthPlanCoinsuranceRate" + }, + "healthPlanCopay": { + "@id": "schema:healthPlanCopay" + }, + "healthPlanCopayOption": { + "@id": "schema:healthPlanCopayOption" + }, + "healthPlanCostSharing": { + "@id": "schema:healthPlanCostSharing" + }, + "healthPlanDrugOption": { + "@id": "schema:healthPlanDrugOption" + }, + "healthPlanDrugTier": { + "@id": "schema:healthPlanDrugTier" + }, + "healthPlanId": { + "@id": "schema:healthPlanId" + }, + "healthPlanMarketingUrl": { + "@id": "schema:healthPlanMarketingUrl", + "@type": "@id" + }, + "healthPlanNetworkId": { + "@id": "schema:healthPlanNetworkId" + }, + "healthPlanNetworkTier": { + "@id": "schema:healthPlanNetworkTier" + }, + "healthPlanPharmacyCategory": { + "@id": "schema:healthPlanPharmacyCategory" + }, + "healthcareReportingData": { + "@id": "schema:healthcareReportingData" + }, + "height": { + "@id": "schema:height" + }, + "highPrice": { + "@id": "schema:highPrice" + }, + "hiringOrganization": { + "@id": "schema:hiringOrganization" + }, + "holdingArchive": { + "@id": "schema:holdingArchive" + }, + "homeLocation": { + "@id": "schema:homeLocation" + }, + "homeTeam": { + "@id": "schema:homeTeam" + }, + "honorificPrefix": { + "@id": "schema:honorificPrefix" + }, + "honorificSuffix": { + "@id": "schema:honorificSuffix" + }, + "hospitalAffiliation": { + "@id": "schema:hospitalAffiliation" + }, + "hostingOrganization": { + "@id": "schema:hostingOrganization" + }, + "hoursAvailable": { + "@id": "schema:hoursAvailable" + }, + "howPerformed": { + "@id": "schema:howPerformed" + }, + "http://publications.europa.eu/mdr/eli/index.html": { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + }, + "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + }, + "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#GLEIF": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#GLEIF" + }, + "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it" + }, + "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + }, + "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism" + }, + "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass" + }, + "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass" + }, + "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + }, + "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + }, + "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass" + }, + "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange" + }, + "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc" + }, + "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex" + }, + "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews" + }, + "httpMethod": { + "@id": "schema:httpMethod" + }, + "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + }, + "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + }, + "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP-draws": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP-draws" + }, + "iataCode": { + "@id": "schema:iataCode" + }, + "icaoCode": { + "@id": "schema:icaoCode" + }, + "id": "@id", + "identifier": { + "@id": "schema:identifier" + }, + "identifyingExam": { + "@id": "schema:identifyingExam" + }, + "identifyingTest": { + "@id": "schema:identifyingTest" + }, + "illustrator": { + "@id": "schema:illustrator" + }, + "image": { + "@id": "schema:image", + "@type": "@id" + }, + "imagingTechnique": { + "@id": "schema:imagingTechnique" + }, + "inAlbum": { + "@id": "schema:inAlbum" + }, + "inBroadcastLineup": { + "@id": "schema:inBroadcastLineup" + }, + "inCodeSet": { + "@id": "schema:inCodeSet", + "@type": "@id" + }, + "inDefinedTermSet": { + "@id": "schema:inDefinedTermSet", + "@type": "@id" + }, + "inLanguage": { + "@id": "schema:inLanguage" + }, + "inPlaylist": { + "@id": "schema:inPlaylist" + }, + "inProductGroupWithID": { + "@id": "schema:inProductGroupWithID" + }, + "inStoreReturnsOffered": { + "@id": "schema:inStoreReturnsOffered" + }, + "inSupportOf": { + "@id": "schema:inSupportOf" + }, + "incentiveCompensation": { + "@id": "schema:incentiveCompensation" + }, + "incentives": { + "@id": "schema:incentives" + }, + "includedComposition": { + "@id": "schema:includedComposition" + }, + "includedDataCatalog": { + "@id": "schema:includedDataCatalog" + }, + "includedInDataCatalog": { + "@id": "schema:includedInDataCatalog" + }, + "includedInHealthInsurancePlan": { + "@id": "schema:includedInHealthInsurancePlan" + }, + "includedRiskFactor": { + "@id": "schema:includedRiskFactor" + }, + "includesAttraction": { + "@id": "schema:includesAttraction" + }, + "includesHealthPlanFormulary": { + "@id": "schema:includesHealthPlanFormulary" + }, + "includesHealthPlanNetwork": { + "@id": "schema:includesHealthPlanNetwork" + }, + "includesObject": { + "@id": "schema:includesObject" + }, + "increasesRiskOf": { + "@id": "schema:increasesRiskOf" + }, + "industry": { + "@id": "schema:industry" + }, + "ineligibleRegion": { + "@id": "schema:ineligibleRegion" + }, + "infectiousAgent": { + "@id": "schema:infectiousAgent" + }, + "infectiousAgentClass": { + "@id": "schema:infectiousAgentClass" + }, + "ingredients": { + "@id": "schema:ingredients" + }, + "inker": { + "@id": "schema:inker" + }, + "insertion": { + "@id": "schema:insertion" + }, + "installUrl": { + "@id": "schema:installUrl", + "@type": "@id" + }, + "instructor": { + "@id": "schema:instructor" + }, + "instrument": { + "@id": "schema:instrument" + }, + "intensity": { + "@id": "schema:intensity" + }, + "interactingDrug": { + "@id": "schema:interactingDrug" + }, + "interactionCount": { + "@id": "schema:interactionCount" + }, + "interactionService": { + "@id": "schema:interactionService" + }, + "interactionStatistic": { + "@id": "schema:interactionStatistic" + }, + "interactionType": { + "@id": "schema:interactionType" + }, + "interactivityType": { + "@id": "schema:interactivityType" + }, + "interestRate": { + "@id": "schema:interestRate" + }, + "inventoryLevel": { + "@id": "schema:inventoryLevel" + }, + "inverseOf": { + "@id": "schema:inverseOf" + }, + "isAcceptingNewPatients": { + "@id": "schema:isAcceptingNewPatients" + }, + "isAccessibleForFree": { + "@id": "schema:isAccessibleForFree" + }, + "isAccessoryOrSparePartFor": { + "@id": "schema:isAccessoryOrSparePartFor" + }, + "isAvailableGenerically": { + "@id": "schema:isAvailableGenerically" + }, + "isBasedOn": { + "@id": "schema:isBasedOn", + "@type": "@id" + }, + "isBasedOnUrl": { + "@id": "schema:isBasedOnUrl", + "@type": "@id" + }, + "isConsumableFor": { + "@id": "schema:isConsumableFor" + }, + "isFamilyFriendly": { + "@id": "schema:isFamilyFriendly" + }, + "isGift": { + "@id": "schema:isGift" + }, + "isLiveBroadcast": { + "@id": "schema:isLiveBroadcast" + }, + "isPartOf": { + "@id": "schema:isPartOf", + "@type": "@id" + }, + "isPlanForApartment": { + "@id": "schema:isPlanForApartment" + }, + "isProprietary": { + "@id": "schema:isProprietary" + }, + "isRelatedTo": { + "@id": "schema:isRelatedTo" + }, + "isResizable": { + "@id": "schema:isResizable" + }, + "isSimilarTo": { + "@id": "schema:isSimilarTo" + }, + "isUnlabelledFallback": { + "@id": "schema:isUnlabelledFallback" + }, + "isVariantOf": { + "@id": "schema:isVariantOf" + }, + "isbn": { + "@id": "schema:isbn" + }, + "isicV4": { + "@id": "schema:isicV4" + }, + "isrcCode": { + "@id": "schema:isrcCode" + }, + "issn": { + "@id": "schema:issn" + }, + "issueNumber": { + "@id": "schema:issueNumber" + }, + "issuedBy": { + "@id": "schema:issuedBy" + }, + "issuedThrough": { + "@id": "schema:issuedThrough" + }, + "iswcCode": { + "@id": "schema:iswcCode" + }, + "item": { + "@id": "schema:item" + }, + "itemCondition": { + "@id": "schema:itemCondition" + }, + "itemListElement": { + "@id": "schema:itemListElement" + }, + "itemListOrder": { + "@id": "schema:itemListOrder" + }, + "itemLocation": { + "@id": "schema:itemLocation" + }, + "itemOffered": { + "@id": "schema:itemOffered" + }, + "itemReviewed": { + "@id": "schema:itemReviewed" + }, + "itemShipped": { + "@id": "schema:itemShipped" + }, + "itinerary": { + "@id": "schema:itinerary" + }, + "jobBenefits": { + "@id": "schema:jobBenefits" + }, + "jobImmediateStart": { + "@id": "schema:jobImmediateStart" + }, + "jobLocation": { + "@id": "schema:jobLocation" + }, + "jobLocationType": { + "@id": "schema:jobLocationType" + }, + "jobStartDate": { + "@id": "schema:jobStartDate" + }, + "jobTitle": { + "@id": "schema:jobTitle" + }, + "jurisdiction": { + "@id": "schema:jurisdiction" + }, + "keywords": { + "@id": "schema:keywords" + }, + "knownVehicleDamages": { + "@id": "schema:knownVehicleDamages" + }, + "knows": { + "@id": "schema:knows" + }, + "knowsAbout": { + "@id": "schema:knowsAbout" + }, + "knowsLanguage": { + "@id": "schema:knowsLanguage" + }, + "labelDetails": { + "@id": "schema:labelDetails", + "@type": "@id" + }, + "landlord": { + "@id": "schema:landlord" + }, + "language": { + "@id": "schema:language" + }, + "lastReviewed": { + "@id": "schema:lastReviewed", + "@type": "Date" + }, + "latitude": { + "@id": "schema:latitude" + }, + "layoutImage": { + "@id": "schema:layoutImage", + "@type": "@id" + }, + "learningResourceType": { + "@id": "schema:learningResourceType" + }, + "leaseLength": { + "@id": "schema:leaseLength" + }, + "legalName": { + "@id": "schema:legalName" + }, + "legalStatus": { + "@id": "schema:legalStatus" + }, + "legislationApplies": { + "@id": "schema:legislationApplies" + }, + "legislationChanges": { + "@id": "schema:legislationChanges" + }, + "legislationConsolidates": { + "@id": "schema:legislationConsolidates" + }, + "legislationDate": { + "@id": "schema:legislationDate", + "@type": "Date" + }, + "legislationDateVersion": { + "@id": "schema:legislationDateVersion", + "@type": "Date" + }, + "legislationIdentifier": { + "@id": "schema:legislationIdentifier" + }, + "legislationJurisdiction": { + "@id": "schema:legislationJurisdiction" + }, + "legislationLegalForce": { + "@id": "schema:legislationLegalForce" + }, + "legislationLegalValue": { + "@id": "schema:legislationLegalValue" + }, + "legislationPassedBy": { + "@id": "schema:legislationPassedBy" + }, + "legislationResponsible": { + "@id": "schema:legislationResponsible" + }, + "legislationTransposes": { + "@id": "schema:legislationTransposes" + }, + "legislationType": { + "@id": "schema:legislationType" + }, + "leiCode": { + "@id": "schema:leiCode" + }, + "lender": { + "@id": "schema:lender" + }, + "lesser": { + "@id": "schema:lesser" + }, + "lesserOrEqual": { + "@id": "schema:lesserOrEqual" + }, + "letterer": { + "@id": "schema:letterer" + }, + "license": { + "@id": "schema:license", + "@type": "@id" + }, + "line": { + "@id": "schema:line" + }, + "linkRelationship": { + "@id": "schema:linkRelationship" + }, + "liveBlogUpdate": { + "@id": "schema:liveBlogUpdate" + }, + "loanMortgageMandateAmount": { + "@id": "schema:loanMortgageMandateAmount" + }, + "loanPaymentAmount": { + "@id": "schema:loanPaymentAmount" + }, + "loanPaymentFrequency": { + "@id": "schema:loanPaymentFrequency" + }, + "loanRepaymentForm": { + "@id": "schema:loanRepaymentForm" + }, + "loanTerm": { + "@id": "schema:loanTerm" + }, + "loanType": { + "@id": "schema:loanType" + }, + "location": { + "@id": "schema:location" + }, + "locationCreated": { + "@id": "schema:locationCreated" + }, + "lodgingUnitDescription": { + "@id": "schema:lodgingUnitDescription" + }, + "lodgingUnitType": { + "@id": "schema:lodgingUnitType" + }, + "logo": { + "@id": "schema:logo", + "@type": "@id" + }, + "longitude": { + "@id": "schema:longitude" + }, + "loser": { + "@id": "schema:loser" + }, + "lowPrice": { + "@id": "schema:lowPrice" + }, + "lyricist": { + "@id": "schema:lyricist" + }, + "lyrics": { + "@id": "schema:lyrics" + }, + "mainContentOfPage": { + "@id": "schema:mainContentOfPage" + }, + "mainEntity": { + "@id": "schema:mainEntity" + }, + "mainEntityOfPage": { + "@id": "schema:mainEntityOfPage", + "@type": "@id" + }, + "maintainer": { + "@id": "schema:maintainer" + }, + "makesOffer": { + "@id": "schema:makesOffer" + }, + "manufacturer": { + "@id": "schema:manufacturer" + }, + "map": { + "@id": "schema:map", + "@type": "@id" + }, + "mapType": { + "@id": "schema:mapType" + }, + "maps": { + "@id": "schema:maps", + "@type": "@id" + }, + "marginOfError": { + "@id": "schema:marginOfError", + "@type": "DateTime" + }, + "masthead": { + "@id": "schema:masthead", + "@type": "@id" + }, + "material": { + "@id": "schema:material" + }, + "materialExtent": { + "@id": "schema:materialExtent" + }, + "maxPrice": { + "@id": "schema:maxPrice" + }, + "maxValue": { + "@id": "schema:maxValue" + }, + "maximumAttendeeCapacity": { + "@id": "schema:maximumAttendeeCapacity" + }, + "maximumEnrollment": { + "@id": "schema:maximumEnrollment" + }, + "maximumIntake": { + "@id": "schema:maximumIntake" + }, + "maximumPhysicalAttendeeCapacity": { + "@id": "schema:maximumPhysicalAttendeeCapacity" + }, + "maximumVirtualAttendeeCapacity": { + "@id": "schema:maximumVirtualAttendeeCapacity" + }, + "mealService": { + "@id": "schema:mealService" + }, + "measuredProperty": { + "@id": "schema:measuredProperty" + }, + "measuredValue": { + "@id": "schema:measuredValue" + }, + "measurementTechnique": { + "@id": "schema:measurementTechnique" + }, + "mechanismOfAction": { + "@id": "schema:mechanismOfAction" + }, + "mediaAuthenticityCategory": { + "@id": "schema:mediaAuthenticityCategory" + }, + "median": { + "@id": "schema:median" + }, + "medicalAudience": { + "@id": "schema:medicalAudience" + }, + "medicalSpecialty": { + "@id": "schema:medicalSpecialty" + }, + "medicineSystem": { + "@id": "schema:medicineSystem" + }, + "meetsEmissionStandard": { + "@id": "schema:meetsEmissionStandard" + }, + "member": { + "@id": "schema:member" + }, + "memberOf": { + "@id": "schema:memberOf" + }, + "members": { + "@id": "schema:members" + }, + "membershipNumber": { + "@id": "schema:membershipNumber" + }, + "membershipPointsEarned": { + "@id": "schema:membershipPointsEarned" + }, + "memoryRequirements": { + "@id": "schema:memoryRequirements" + }, + "mentions": { + "@id": "schema:mentions" + }, + "menu": { + "@id": "schema:menu" + }, + "menuAddOn": { + "@id": "schema:menuAddOn" + }, + "merchant": { + "@id": "schema:merchant" + }, + "merchantReturnDays": { + "@id": "schema:merchantReturnDays" + }, + "merchantReturnLink": { + "@id": "schema:merchantReturnLink", + "@type": "@id" + }, + "messageAttachment": { + "@id": "schema:messageAttachment" + }, + "mileageFromOdometer": { + "@id": "schema:mileageFromOdometer" + }, + "minPrice": { + "@id": "schema:minPrice" + }, + "minValue": { + "@id": "schema:minValue" + }, + "minimumPaymentDue": { + "@id": "schema:minimumPaymentDue" + }, + "missionCoveragePrioritiesPolicy": { + "@id": "schema:missionCoveragePrioritiesPolicy", + "@type": "@id" + }, + "model": { + "@id": "schema:model" + }, + "modelDate": { + "@id": "schema:modelDate", + "@type": "Date" + }, + "modifiedTime": { + "@id": "schema:modifiedTime", + "@type": "DateTime" + }, + "monthlyMinimumRepaymentAmount": { + "@id": "schema:monthlyMinimumRepaymentAmount" + }, + "mpn": { + "@id": "schema:mpn" + }, + "multipleValues": { + "@id": "schema:multipleValues" + }, + "muscleAction": { + "@id": "schema:muscleAction" + }, + "musicArrangement": { + "@id": "schema:musicArrangement" + }, + "musicBy": { + "@id": "schema:musicBy" + }, + "musicCompositionForm": { + "@id": "schema:musicCompositionForm" + }, + "musicGroupMember": { + "@id": "schema:musicGroupMember" + }, + "musicReleaseFormat": { + "@id": "schema:musicReleaseFormat" + }, + "musicalKey": { + "@id": "schema:musicalKey" + }, + "naics": { + "@id": "schema:naics" + }, + "name": { + "@id": "schema:name" + }, + "namedPosition": { + "@id": "schema:namedPosition" + }, + "nationality": { + "@id": "schema:nationality" + }, + "naturalProgression": { + "@id": "schema:naturalProgression" + }, + "nerve": { + "@id": "schema:nerve" + }, + "nerveMotor": { + "@id": "schema:nerveMotor" + }, + "netWorth": { + "@id": "schema:netWorth" + }, + "newsUpdatesAndGuidelines": { + "@id": "schema:newsUpdatesAndGuidelines", + "@type": "@id" + }, + "nextItem": { + "@id": "schema:nextItem" + }, + "noBylinesPolicy": { + "@id": "schema:noBylinesPolicy", + "@type": "@id" + }, + "nonEqual": { + "@id": "schema:nonEqual" + }, + "nonProprietaryName": { + "@id": "schema:nonProprietaryName" + }, + "nonprofitStatus": { + "@id": "schema:nonprofitStatus" + }, + "normalRange": { + "@id": "schema:normalRange" + }, + "nsn": { + "@id": "schema:nsn" + }, + "numAdults": { + "@id": "schema:numAdults" + }, + "numChildren": { + "@id": "schema:numChildren" + }, + "numConstraints": { + "@id": "schema:numConstraints" + }, + "numTracks": { + "@id": "schema:numTracks" + }, + "numberOfAccommodationUnits": { + "@id": "schema:numberOfAccommodationUnits" + }, + "numberOfAirbags": { + "@id": "schema:numberOfAirbags" + }, + "numberOfAvailableAccommodationUnits": { + "@id": "schema:numberOfAvailableAccommodationUnits" + }, + "numberOfAxles": { + "@id": "schema:numberOfAxles" + }, + "numberOfBathroomsTotal": { + "@id": "schema:numberOfBathroomsTotal" + }, + "numberOfBedrooms": { + "@id": "schema:numberOfBedrooms" + }, + "numberOfBeds": { + "@id": "schema:numberOfBeds" + }, + "numberOfCredits": { + "@id": "schema:numberOfCredits" + }, + "numberOfDoors": { + "@id": "schema:numberOfDoors" + }, + "numberOfEmployees": { + "@id": "schema:numberOfEmployees" + }, + "numberOfEpisodes": { + "@id": "schema:numberOfEpisodes" + }, + "numberOfForwardGears": { + "@id": "schema:numberOfForwardGears" + }, + "numberOfFullBathrooms": { + "@id": "schema:numberOfFullBathrooms" + }, + "numberOfItems": { + "@id": "schema:numberOfItems" + }, + "numberOfLoanPayments": { + "@id": "schema:numberOfLoanPayments" + }, + "numberOfPages": { + "@id": "schema:numberOfPages" + }, + "numberOfPartialBathrooms": { + "@id": "schema:numberOfPartialBathrooms" + }, + "numberOfPlayers": { + "@id": "schema:numberOfPlayers" + }, + "numberOfPreviousOwners": { + "@id": "schema:numberOfPreviousOwners" + }, + "numberOfRooms": { + "@id": "schema:numberOfRooms" + }, + "numberOfSeasons": { + "@id": "schema:numberOfSeasons" + }, + "numberedPosition": { + "@id": "schema:numberedPosition" + }, + "nutrition": { + "@id": "schema:nutrition" + }, + "object": { + "@id": "schema:object" + }, + "observationDate": { + "@id": "schema:observationDate", + "@type": "DateTime" + }, + "observedNode": { + "@id": "schema:observedNode" + }, + "occupancy": { + "@id": "schema:occupancy" + }, + "occupationLocation": { + "@id": "schema:occupationLocation" + }, + "occupationalCategory": { + "@id": "schema:occupationalCategory" + }, + "occupationalCredentialAwarded": { + "@id": "schema:occupationalCredentialAwarded" + }, + "offerCount": { + "@id": "schema:offerCount" + }, + "offeredBy": { + "@id": "schema:offeredBy" + }, + "offers": { + "@id": "schema:offers" + }, + "offersPrescriptionByMail": { + "@id": "schema:offersPrescriptionByMail" + }, + "openingHours": { + "@id": "schema:openingHours" + }, + "openingHoursSpecification": { + "@id": "schema:openingHoursSpecification" + }, + "opens": { + "@id": "schema:opens" + }, + "operatingSystem": { + "@id": "schema:operatingSystem" + }, + "opponent": { + "@id": "schema:opponent" + }, + "option": { + "@id": "schema:option" + }, + "orderDate": { + "@id": "schema:orderDate", + "@type": "Date" + }, + "orderDelivery": { + "@id": "schema:orderDelivery" + }, + "orderItemNumber": { + "@id": "schema:orderItemNumber" + }, + "orderItemStatus": { + "@id": "schema:orderItemStatus" + }, + "orderNumber": { + "@id": "schema:orderNumber" + }, + "orderQuantity": { + "@id": "schema:orderQuantity" + }, + "orderStatus": { + "@id": "schema:orderStatus" + }, + "orderedItem": { + "@id": "schema:orderedItem" + }, + "organizer": { + "@id": "schema:organizer" + }, + "originAddress": { + "@id": "schema:originAddress" + }, + "originatesFrom": { + "@id": "schema:originatesFrom" + }, + "overdosage": { + "@id": "schema:overdosage" + }, + "owl": "http://www.w3.org/2002/07/owl#", + "ownedFrom": { + "@id": "schema:ownedFrom", + "@type": "DateTime" + }, + "ownedThrough": { + "@id": "schema:ownedThrough", + "@type": "DateTime" + }, + "ownershipFundingInfo": { + "@id": "schema:ownershipFundingInfo" + }, + "owns": { + "@id": "schema:owns" + }, + "pageEnd": { + "@id": "schema:pageEnd" + }, + "pageStart": { + "@id": "schema:pageStart" + }, + "pagination": { + "@id": "schema:pagination" + }, + "parent": { + "@id": "schema:parent" + }, + "parentItem": { + "@id": "schema:parentItem" + }, + "parentOrganization": { + "@id": "schema:parentOrganization" + }, + "parentService": { + "@id": "schema:parentService" + }, + "parents": { + "@id": "schema:parents" + }, + "partOfEpisode": { + "@id": "schema:partOfEpisode" + }, + "partOfInvoice": { + "@id": "schema:partOfInvoice" + }, + "partOfOrder": { + "@id": "schema:partOfOrder" + }, + "partOfSeason": { + "@id": "schema:partOfSeason" + }, + "partOfSeries": { + "@id": "schema:partOfSeries" + }, + "partOfSystem": { + "@id": "schema:partOfSystem" + }, + "partOfTVSeries": { + "@id": "schema:partOfTVSeries" + }, + "partOfTrip": { + "@id": "schema:partOfTrip" + }, + "participant": { + "@id": "schema:participant" + }, + "partySize": { + "@id": "schema:partySize" + }, + "passengerPriorityStatus": { + "@id": "schema:passengerPriorityStatus" + }, + "passengerSequenceNumber": { + "@id": "schema:passengerSequenceNumber" + }, + "pathophysiology": { + "@id": "schema:pathophysiology" + }, + "pattern": { + "@id": "schema:pattern" + }, + "payload": { + "@id": "schema:payload" + }, + "paymentAccepted": { + "@id": "schema:paymentAccepted" + }, + "paymentDue": { + "@id": "schema:paymentDue", + "@type": "DateTime" + }, + "paymentDueDate": { + "@id": "schema:paymentDueDate", + "@type": "Date" + }, + "paymentMethod": { + "@id": "schema:paymentMethod" + }, + "paymentMethodId": { + "@id": "schema:paymentMethodId" + }, + "paymentStatus": { + "@id": "schema:paymentStatus" + }, + "paymentUrl": { + "@id": "schema:paymentUrl", + "@type": "@id" + }, + "penciler": { + "@id": "schema:penciler" + }, + "percentile10": { + "@id": "schema:percentile10" + }, + "percentile25": { + "@id": "schema:percentile25" + }, + "percentile75": { + "@id": "schema:percentile75" + }, + "percentile90": { + "@id": "schema:percentile90" + }, + "performTime": { + "@id": "schema:performTime" + }, + "performer": { + "@id": "schema:performer" + }, + "performerIn": { + "@id": "schema:performerIn" + }, + "performers": { + "@id": "schema:performers" + }, + "permissionType": { + "@id": "schema:permissionType" + }, + "permissions": { + "@id": "schema:permissions" + }, + "permitAudience": { + "@id": "schema:permitAudience" + }, + "permittedUsage": { + "@id": "schema:permittedUsage" + }, + "petsAllowed": { + "@id": "schema:petsAllowed" + }, + "phoneticText": { + "@id": "schema:phoneticText" + }, + "photo": { + "@id": "schema:photo" + }, + "photos": { + "@id": "schema:photos" + }, + "physicalRequirement": { + "@id": "schema:physicalRequirement" + }, + "physiologicalBenefits": { + "@id": "schema:physiologicalBenefits" + }, + "pickupLocation": { + "@id": "schema:pickupLocation" + }, + "pickupTime": { + "@id": "schema:pickupTime", + "@type": "DateTime" + }, + "playMode": { + "@id": "schema:playMode" + }, + "playerType": { + "@id": "schema:playerType" + }, + "playersOnline": { + "@id": "schema:playersOnline" + }, + "polygon": { + "@id": "schema:polygon" + }, + "populationType": { + "@id": "schema:populationType" + }, + "position": { + "@id": "schema:position" + }, + "possibleComplication": { + "@id": "schema:possibleComplication" + }, + "possibleTreatment": { + "@id": "schema:possibleTreatment" + }, + "postOfficeBoxNumber": { + "@id": "schema:postOfficeBoxNumber" + }, + "postOp": { + "@id": "schema:postOp" + }, + "postalCode": { + "@id": "schema:postalCode" + }, + "postalCodeBegin": { + "@id": "schema:postalCodeBegin" + }, + "postalCodeEnd": { + "@id": "schema:postalCodeEnd" + }, + "postalCodePrefix": { + "@id": "schema:postalCodePrefix" + }, + "postalCodeRange": { + "@id": "schema:postalCodeRange" + }, + "potentialAction": { + "@id": "schema:potentialAction" + }, + "preOp": { + "@id": "schema:preOp" + }, + "predecessorOf": { + "@id": "schema:predecessorOf" + }, + "pregnancyCategory": { + "@id": "schema:pregnancyCategory" + }, + "pregnancyWarning": { + "@id": "schema:pregnancyWarning" + }, + "prepTime": { + "@id": "schema:prepTime" + }, + "preparation": { + "@id": "schema:preparation" + }, + "prescribingInfo": { + "@id": "schema:prescribingInfo", + "@type": "@id" + }, + "prescriptionStatus": { + "@id": "schema:prescriptionStatus" + }, + "previousItem": { + "@id": "schema:previousItem" + }, + "previousStartDate": { + "@id": "schema:previousStartDate", + "@type": "Date" + }, + "price": { + "@id": "schema:price" + }, + "priceComponent": { + "@id": "schema:priceComponent" + }, + "priceCurrency": { + "@id": "schema:priceCurrency" + }, + "priceRange": { + "@id": "schema:priceRange" + }, + "priceSpecification": { + "@id": "schema:priceSpecification" + }, + "priceType": { + "@id": "schema:priceType" + }, + "priceValidUntil": { + "@id": "schema:priceValidUntil", + "@type": "Date" + }, + "primaryImageOfPage": { + "@id": "schema:primaryImageOfPage" + }, + "primaryPrevention": { + "@id": "schema:primaryPrevention" + }, + "printColumn": { + "@id": "schema:printColumn" + }, + "printEdition": { + "@id": "schema:printEdition" + }, + "printPage": { + "@id": "schema:printPage" + }, + "printSection": { + "@id": "schema:printSection" + }, + "procedure": { + "@id": "schema:procedure" + }, + "procedureType": { + "@id": "schema:procedureType" + }, + "processingTime": { + "@id": "schema:processingTime" + }, + "processorRequirements": { + "@id": "schema:processorRequirements" + }, + "producer": { + "@id": "schema:producer" + }, + "produces": { + "@id": "schema:produces" + }, + "productGroupID": { + "@id": "schema:productGroupID" + }, + "productID": { + "@id": "schema:productID" + }, + "productReturnDays": { + "@id": "schema:productReturnDays" + }, + "productReturnLink": { + "@id": "schema:productReturnLink", + "@type": "@id" + }, + "productSupported": { + "@id": "schema:productSupported" + }, + "productionCompany": { + "@id": "schema:productionCompany" + }, + "productionDate": { + "@id": "schema:productionDate", + "@type": "Date" + }, + "proficiencyLevel": { + "@id": "schema:proficiencyLevel" + }, + "programMembershipUsed": { + "@id": "schema:programMembershipUsed" + }, + "programName": { + "@id": "schema:programName" + }, + "programPrerequisites": { + "@id": "schema:programPrerequisites" + }, + "programType": { + "@id": "schema:programType" + }, + "programmingLanguage": { + "@id": "schema:programmingLanguage" + }, + "programmingModel": { + "@id": "schema:programmingModel" + }, + "propertyID": { + "@id": "schema:propertyID" + }, + "proprietaryName": { + "@id": "schema:proprietaryName" + }, + "proteinContent": { + "@id": "schema:proteinContent" + }, + "provider": { + "@id": "schema:provider" + }, + "providerMobility": { + "@id": "schema:providerMobility" + }, + "providesBroadcastService": { + "@id": "schema:providesBroadcastService" + }, + "providesService": { + "@id": "schema:providesService" + }, + "publicAccess": { + "@id": "schema:publicAccess" + }, + "publicTransportClosuresInfo": { + "@id": "schema:publicTransportClosuresInfo", + "@type": "@id" + }, + "publication": { + "@id": "schema:publication" + }, + "publicationType": { + "@id": "schema:publicationType" + }, + "publishedBy": { + "@id": "schema:publishedBy" + }, + "publishedOn": { + "@id": "schema:publishedOn" + }, + "publisher": { + "@id": "schema:publisher" + }, + "publisherImprint": { + "@id": "schema:publisherImprint" + }, + "publishingPrinciples": { + "@id": "schema:publishingPrinciples", + "@type": "@id" + }, + "purchaseDate": { + "@id": "schema:purchaseDate", + "@type": "Date" + }, + "qualifications": { + "@id": "schema:qualifications" + }, + "quarantineGuidelines": { + "@id": "schema:quarantineGuidelines", + "@type": "@id" + }, + "query": { + "@id": "schema:query" + }, + "quest": { + "@id": "schema:quest" + }, + "question": { + "@id": "schema:question" + }, + "rangeIncludes": { + "@id": "schema:rangeIncludes" + }, + "ratingCount": { + "@id": "schema:ratingCount" + }, + "ratingExplanation": { + "@id": "schema:ratingExplanation" + }, + "ratingValue": { + "@id": "schema:ratingValue" + }, + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "rdfa": "http://www.w3.org/ns/rdfa#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "readBy": { + "@id": "schema:readBy" + }, + "readonlyValue": { + "@id": "schema:readonlyValue" + }, + "realEstateAgent": { + "@id": "schema:realEstateAgent" + }, + "recipe": { + "@id": "schema:recipe" + }, + "recipeCategory": { + "@id": "schema:recipeCategory" + }, + "recipeCuisine": { + "@id": "schema:recipeCuisine" + }, + "recipeIngredient": { + "@id": "schema:recipeIngredient" + }, + "recipeInstructions": { + "@id": "schema:recipeInstructions" + }, + "recipeYield": { + "@id": "schema:recipeYield" + }, + "recipient": { + "@id": "schema:recipient" + }, + "recognizedBy": { + "@id": "schema:recognizedBy" + }, + "recognizingAuthority": { + "@id": "schema:recognizingAuthority" + }, + "recommendationStrength": { + "@id": "schema:recommendationStrength" + }, + "recommendedIntake": { + "@id": "schema:recommendedIntake" + }, + "recordLabel": { + "@id": "schema:recordLabel" + }, + "recordedAs": { + "@id": "schema:recordedAs" + }, + "recordedAt": { + "@id": "schema:recordedAt" + }, + "recordedIn": { + "@id": "schema:recordedIn" + }, + "recordingOf": { + "@id": "schema:recordingOf" + }, + "recourseLoan": { + "@id": "schema:recourseLoan" + }, + "referenceQuantity": { + "@id": "schema:referenceQuantity" + }, + "referencesOrder": { + "@id": "schema:referencesOrder" + }, + "refundType": { + "@id": "schema:refundType" + }, + "regionDrained": { + "@id": "schema:regionDrained" + }, + "regionsAllowed": { + "@id": "schema:regionsAllowed" + }, + "relatedAnatomy": { + "@id": "schema:relatedAnatomy" + }, + "relatedCondition": { + "@id": "schema:relatedCondition" + }, + "relatedDrug": { + "@id": "schema:relatedDrug" + }, + "relatedLink": { + "@id": "schema:relatedLink", + "@type": "@id" + }, + "relatedStructure": { + "@id": "schema:relatedStructure" + }, + "relatedTherapy": { + "@id": "schema:relatedTherapy" + }, + "relatedTo": { + "@id": "schema:relatedTo" + }, + "releaseDate": { + "@id": "schema:releaseDate", + "@type": "Date" + }, + "releaseNotes": { + "@id": "schema:releaseNotes" + }, + "releaseOf": { + "@id": "schema:releaseOf" + }, + "releasedEvent": { + "@id": "schema:releasedEvent" + }, + "relevantOccupation": { + "@id": "schema:relevantOccupation" + }, + "relevantSpecialty": { + "@id": "schema:relevantSpecialty" + }, + "remainingAttendeeCapacity": { + "@id": "schema:remainingAttendeeCapacity" + }, + "renegotiableLoan": { + "@id": "schema:renegotiableLoan" + }, + "repeatCount": { + "@id": "schema:repeatCount" + }, + "repeatFrequency": { + "@id": "schema:repeatFrequency" + }, + "repetitions": { + "@id": "schema:repetitions" + }, + "replacee": { + "@id": "schema:replacee" + }, + "replacer": { + "@id": "schema:replacer" + }, + "replyToUrl": { + "@id": "schema:replyToUrl", + "@type": "@id" + }, + "reportNumber": { + "@id": "schema:reportNumber" + }, + "representativeOfPage": { + "@id": "schema:representativeOfPage" + }, + "requiredCollateral": { + "@id": "schema:requiredCollateral" + }, + "requiredGender": { + "@id": "schema:requiredGender" + }, + "requiredMaxAge": { + "@id": "schema:requiredMaxAge" + }, + "requiredMinAge": { + "@id": "schema:requiredMinAge" + }, + "requiredQuantity": { + "@id": "schema:requiredQuantity" + }, + "requirements": { + "@id": "schema:requirements" + }, + "requiresSubscription": { + "@id": "schema:requiresSubscription" + }, + "reservationFor": { + "@id": "schema:reservationFor" + }, + "reservationId": { + "@id": "schema:reservationId" + }, + "reservationStatus": { + "@id": "schema:reservationStatus" + }, + "reservedTicket": { + "@id": "schema:reservedTicket" + }, + "responsibilities": { + "@id": "schema:responsibilities" + }, + "restPeriods": { + "@id": "schema:restPeriods" + }, + "result": { + "@id": "schema:result" + }, + "resultComment": { + "@id": "schema:resultComment" + }, + "resultReview": { + "@id": "schema:resultReview" + }, + "returnFees": { + "@id": "schema:returnFees" + }, + "returnPolicyCategory": { + "@id": "schema:returnPolicyCategory" + }, + "review": { + "@id": "schema:review" + }, + "reviewAspect": { + "@id": "schema:reviewAspect" + }, + "reviewBody": { + "@id": "schema:reviewBody" + }, + "reviewCount": { + "@id": "schema:reviewCount" + }, + "reviewRating": { + "@id": "schema:reviewRating" + }, + "reviewedBy": { + "@id": "schema:reviewedBy" + }, + "reviews": { + "@id": "schema:reviews" + }, + "riskFactor": { + "@id": "schema:riskFactor" + }, + "risks": { + "@id": "schema:risks" + }, + "roleName": { + "@id": "schema:roleName" + }, + "roofLoad": { + "@id": "schema:roofLoad" + }, + "rsvpResponse": { + "@id": "schema:rsvpResponse" + }, + "runsTo": { + "@id": "schema:runsTo" + }, + "runtime": { + "@id": "schema:runtime" + }, + "runtimePlatform": { + "@id": "schema:runtimePlatform" + }, + "rxcui": { + "@id": "schema:rxcui" + }, + "safetyConsideration": { + "@id": "schema:safetyConsideration" + }, + "salaryCurrency": { + "@id": "schema:salaryCurrency" + }, + "salaryUponCompletion": { + "@id": "schema:salaryUponCompletion" + }, + "sameAs": { + "@id": "schema:sameAs", + "@type": "@id" + }, + "sampleType": { + "@id": "schema:sampleType" + }, + "saturatedFatContent": { + "@id": "schema:saturatedFatContent" + }, + "scheduleTimezone": { + "@id": "schema:scheduleTimezone" + }, + "scheduledPaymentDate": { + "@id": "schema:scheduledPaymentDate", + "@type": "Date" + }, + "scheduledTime": { + "@id": "schema:scheduledTime", + "@type": "DateTime" + }, + "schema": "http://schema.org/", + "schemaVersion": { + "@id": "schema:schemaVersion" + }, + "schoolClosuresInfo": { + "@id": "schema:schoolClosuresInfo", + "@type": "@id" + }, + "screenCount": { + "@id": "schema:screenCount" + }, + "screenshot": { + "@id": "schema:screenshot", + "@type": "@id" + }, + "sdDatePublished": { + "@id": "schema:sdDatePublished", + "@type": "Date" + }, + "sdLicense": { + "@id": "schema:sdLicense", + "@type": "@id" + }, + "sdPublisher": { + "@id": "schema:sdPublisher" + }, + "season": { + "@id": "schema:season", + "@type": "@id" + }, + "seasonNumber": { + "@id": "schema:seasonNumber" + }, + "seasons": { + "@id": "schema:seasons" + }, + "seatNumber": { + "@id": "schema:seatNumber" + }, + "seatRow": { + "@id": "schema:seatRow" + }, + "seatSection": { + "@id": "schema:seatSection" + }, + "seatingCapacity": { + "@id": "schema:seatingCapacity" + }, + "seatingType": { + "@id": "schema:seatingType" + }, + "secondaryPrevention": { + "@id": "schema:secondaryPrevention" + }, + "securityClearanceRequirement": { + "@id": "schema:securityClearanceRequirement" + }, + "securityScreening": { + "@id": "schema:securityScreening" + }, + "seeks": { + "@id": "schema:seeks" + }, + "seller": { + "@id": "schema:seller" + }, + "sender": { + "@id": "schema:sender" + }, + "sensoryRequirement": { + "@id": "schema:sensoryRequirement" + }, + "sensoryUnit": { + "@id": "schema:sensoryUnit" + }, + "serialNumber": { + "@id": "schema:serialNumber" + }, + "seriousAdverseOutcome": { + "@id": "schema:seriousAdverseOutcome" + }, + "serverStatus": { + "@id": "schema:serverStatus" + }, + "servesCuisine": { + "@id": "schema:servesCuisine" + }, + "serviceArea": { + "@id": "schema:serviceArea" + }, + "serviceAudience": { + "@id": "schema:serviceAudience" + }, + "serviceLocation": { + "@id": "schema:serviceLocation" + }, + "serviceOperator": { + "@id": "schema:serviceOperator" + }, + "serviceOutput": { + "@id": "schema:serviceOutput" + }, + "servicePhone": { + "@id": "schema:servicePhone" + }, + "servicePostalAddress": { + "@id": "schema:servicePostalAddress" + }, + "serviceSmsNumber": { + "@id": "schema:serviceSmsNumber" + }, + "serviceType": { + "@id": "schema:serviceType" + }, + "serviceUrl": { + "@id": "schema:serviceUrl", + "@type": "@id" + }, + "servingSize": { + "@id": "schema:servingSize" + }, + "sharedContent": { + "@id": "schema:sharedContent" + }, + "shippingDestination": { + "@id": "schema:shippingDestination" + }, + "shippingDetails": { + "@id": "schema:shippingDetails" + }, + "shippingLabel": { + "@id": "schema:shippingLabel" + }, + "shippingRate": { + "@id": "schema:shippingRate" + }, + "shippingSettingsLink": { + "@id": "schema:shippingSettingsLink", + "@type": "@id" + }, + "sibling": { + "@id": "schema:sibling" + }, + "siblings": { + "@id": "schema:siblings" + }, + "signDetected": { + "@id": "schema:signDetected" + }, + "signOrSymptom": { + "@id": "schema:signOrSymptom" + }, + "significance": { + "@id": "schema:significance" + }, + "significantLink": { + "@id": "schema:significantLink", + "@type": "@id" + }, + "significantLinks": { + "@id": "schema:significantLinks", + "@type": "@id" + }, + "size": { + "@id": "schema:size" + }, + "skills": { + "@id": "schema:skills" + }, + "skos": "http://www.w3.org/2004/02/skos/core#", + "sku": { + "@id": "schema:sku" + }, + "slogan": { + "@id": "schema:slogan" + }, + "smokingAllowed": { + "@id": "schema:smokingAllowed" + }, + "snomed": "http://purl.bioontology.org/ontology/SNOMEDCT/", + "sodiumContent": { + "@id": "schema:sodiumContent" + }, + "softwareAddOn": { + "@id": "schema:softwareAddOn" + }, + "softwareHelp": { + "@id": "schema:softwareHelp" + }, + "softwareRequirements": { + "@id": "schema:softwareRequirements" + }, + "softwareVersion": { + "@id": "schema:softwareVersion" + }, + "sourceOrganization": { + "@id": "schema:sourceOrganization" + }, + "sourcedFrom": { + "@id": "schema:sourcedFrom" + }, + "spatial": { + "@id": "schema:spatial" + }, + "spatialCoverage": { + "@id": "schema:spatialCoverage" + }, + "speakable": { + "@id": "schema:speakable", + "@type": "@id" + }, + "specialCommitments": { + "@id": "schema:specialCommitments" + }, + "specialOpeningHoursSpecification": { + "@id": "schema:specialOpeningHoursSpecification" + }, + "specialty": { + "@id": "schema:specialty" + }, + "speechToTextMarkup": { + "@id": "schema:speechToTextMarkup" + }, + "speed": { + "@id": "schema:speed" + }, + "spokenByCharacter": { + "@id": "schema:spokenByCharacter" + }, + "sponsor": { + "@id": "schema:sponsor" + }, + "sport": { + "@id": "schema:sport" + }, + "sportsActivityLocation": { + "@id": "schema:sportsActivityLocation" + }, + "sportsEvent": { + "@id": "schema:sportsEvent" + }, + "sportsTeam": { + "@id": "schema:sportsTeam" + }, + "spouse": { + "@id": "schema:spouse" + }, + "stage": { + "@id": "schema:stage" + }, + "stageAsNumber": { + "@id": "schema:stageAsNumber" + }, + "starRating": { + "@id": "schema:starRating" + }, + "startDate": { + "@id": "schema:startDate", + "@type": "Date" + }, + "startOffset": { + "@id": "schema:startOffset" + }, + "startTime": { + "@id": "schema:startTime", + "@type": "DateTime" + }, + "status": { + "@id": "schema:status" + }, + "steeringPosition": { + "@id": "schema:steeringPosition" + }, + "step": { + "@id": "schema:step" + }, + "stepValue": { + "@id": "schema:stepValue" + }, + "steps": { + "@id": "schema:steps" + }, + "storageRequirements": { + "@id": "schema:storageRequirements" + }, + "streetAddress": { + "@id": "schema:streetAddress" + }, + "strengthUnit": { + "@id": "schema:strengthUnit" + }, + "strengthValue": { + "@id": "schema:strengthValue" + }, + "structuralClass": { + "@id": "schema:structuralClass" + }, + "study": { + "@id": "schema:study" + }, + "studyDesign": { + "@id": "schema:studyDesign" + }, + "studyLocation": { + "@id": "schema:studyLocation" + }, + "studySubject": { + "@id": "schema:studySubject" + }, + "stupidProperty": { + "@id": "schema:stupidProperty" + }, + "subEvent": { + "@id": "schema:subEvent" + }, + "subEvents": { + "@id": "schema:subEvents" + }, + "subOrganization": { + "@id": "schema:subOrganization" + }, + "subReservation": { + "@id": "schema:subReservation" + }, + "subStageSuffix": { + "@id": "schema:subStageSuffix" + }, + "subStructure": { + "@id": "schema:subStructure" + }, + "subTest": { + "@id": "schema:subTest" + }, + "subTrip": { + "@id": "schema:subTrip" + }, + "subjectOf": { + "@id": "schema:subjectOf" + }, + "subtitleLanguage": { + "@id": "schema:subtitleLanguage" + }, + "successorOf": { + "@id": "schema:successorOf" + }, + "sugarContent": { + "@id": "schema:sugarContent" + }, + "suggestedAnswer": { + "@id": "schema:suggestedAnswer" + }, + "suggestedGender": { + "@id": "schema:suggestedGender" + }, + "suggestedMaxAge": { + "@id": "schema:suggestedMaxAge" + }, + "suggestedMinAge": { + "@id": "schema:suggestedMinAge" + }, + "suitableForDiet": { + "@id": "schema:suitableForDiet" + }, + "superEvent": { + "@id": "schema:superEvent" + }, + "supersededBy": { + "@id": "schema:supersededBy" + }, + "supply": { + "@id": "schema:supply" + }, + "supplyTo": { + "@id": "schema:supplyTo" + }, + "supportingData": { + "@id": "schema:supportingData" + }, + "surface": { + "@id": "schema:surface" + }, + "target": { + "@id": "schema:target" + }, + "targetCollection": { + "@id": "schema:targetCollection" + }, + "targetDescription": { + "@id": "schema:targetDescription" + }, + "targetName": { + "@id": "schema:targetName" + }, + "targetPlatform": { + "@id": "schema:targetPlatform" + }, + "targetPopulation": { + "@id": "schema:targetPopulation" + }, + "targetProduct": { + "@id": "schema:targetProduct" + }, + "targetUrl": { + "@id": "schema:targetUrl", + "@type": "@id" + }, + "taxID": { + "@id": "schema:taxID" + }, + "teaches": { + "@id": "schema:teaches" + }, + "telephone": { + "@id": "schema:telephone" + }, + "temporal": { + "@id": "schema:temporal" + }, + "temporalCoverage": { + "@id": "schema:temporalCoverage" + }, + "termCode": { + "@id": "schema:termCode" + }, + "termDuration": { + "@id": "schema:termDuration" + }, + "termsOfService": { + "@id": "schema:termsOfService" + }, + "termsPerYear": { + "@id": "schema:termsPerYear" + }, + "text": { + "@id": "schema:text" + }, + "textValue": { + "@id": "schema:textValue" + }, + "thumbnail": { + "@id": "schema:thumbnail" + }, + "thumbnailUrl": { + "@id": "schema:thumbnailUrl", + "@type": "@id" + }, + "tickerSymbol": { + "@id": "schema:tickerSymbol" + }, + "ticketNumber": { + "@id": "schema:ticketNumber" + }, + "ticketToken": { + "@id": "schema:ticketToken" + }, + "ticketedSeat": { + "@id": "schema:ticketedSeat" + }, + "timeOfDay": { + "@id": "schema:timeOfDay" + }, + "timeRequired": { + "@id": "schema:timeRequired" + }, + "timeToComplete": { + "@id": "schema:timeToComplete" + }, + "tissueSample": { + "@id": "schema:tissueSample" + }, + "title": { + "@id": "schema:title" + }, + "titleEIDR": { + "@id": "schema:titleEIDR" + }, + "toLocation": { + "@id": "schema:toLocation" + }, + "toRecipient": { + "@id": "schema:toRecipient" + }, + "tongueWeight": { + "@id": "schema:tongueWeight" + }, + "tool": { + "@id": "schema:tool" + }, + "torque": { + "@id": "schema:torque" + }, + "totalJobOpenings": { + "@id": "schema:totalJobOpenings" + }, + "totalPaymentDue": { + "@id": "schema:totalPaymentDue" + }, + "totalPrice": { + "@id": "schema:totalPrice" + }, + "totalTime": { + "@id": "schema:totalTime" + }, + "tourBookingPage": { + "@id": "schema:tourBookingPage", + "@type": "@id" + }, + "touristType": { + "@id": "schema:touristType" + }, + "track": { + "@id": "schema:track" + }, + "trackingNumber": { + "@id": "schema:trackingNumber" + }, + "trackingUrl": { + "@id": "schema:trackingUrl", + "@type": "@id" + }, + "tracks": { + "@id": "schema:tracks" + }, + "trailer": { + "@id": "schema:trailer" + }, + "trailerWeight": { + "@id": "schema:trailerWeight" + }, + "trainName": { + "@id": "schema:trainName" + }, + "trainNumber": { + "@id": "schema:trainNumber" + }, + "trainingSalary": { + "@id": "schema:trainingSalary" + }, + "transFatContent": { + "@id": "schema:transFatContent" + }, + "transcript": { + "@id": "schema:transcript" + }, + "transitTime": { + "@id": "schema:transitTime" + }, + "transitTimeLabel": { + "@id": "schema:transitTimeLabel" + }, + "translationOfWork": { + "@id": "schema:translationOfWork" + }, + "translator": { + "@id": "schema:translator" + }, + "transmissionMethod": { + "@id": "schema:transmissionMethod" + }, + "travelBans": { + "@id": "schema:travelBans", + "@type": "@id" + }, + "trialDesign": { + "@id": "schema:trialDesign" + }, + "tributary": { + "@id": "schema:tributary" + }, + "type": "@type", + "typeOfBed": { + "@id": "schema:typeOfBed" + }, + "typeOfGood": { + "@id": "schema:typeOfGood" + }, + "typicalAgeRange": { + "@id": "schema:typicalAgeRange" + }, + "typicalCreditsPerTerm": { + "@id": "schema:typicalCreditsPerTerm" + }, + "typicalTest": { + "@id": "schema:typicalTest" + }, + "underName": { + "@id": "schema:underName" + }, + "unitCode": { + "@id": "schema:unitCode" + }, + "unitText": { + "@id": "schema:unitText" + }, + "unnamedSourcesPolicy": { + "@id": "schema:unnamedSourcesPolicy", + "@type": "@id" + }, + "unsaturatedFatContent": { + "@id": "schema:unsaturatedFatContent" + }, + "uploadDate": { + "@id": "schema:uploadDate", + "@type": "Date" + }, + "upvoteCount": { + "@id": "schema:upvoteCount" + }, + "url": { + "@id": "schema:url", + "@type": "@id" + }, + "urlTemplate": { + "@id": "schema:urlTemplate" + }, + "usageInfo": { + "@id": "schema:usageInfo", + "@type": "@id" + }, + "usedToDiagnose": { + "@id": "schema:usedToDiagnose" + }, + "userInteractionCount": { + "@id": "schema:userInteractionCount" + }, + "usesDevice": { + "@id": "schema:usesDevice" + }, + "usesHealthPlanIdStandard": { + "@id": "schema:usesHealthPlanIdStandard" + }, + "validFor": { + "@id": "schema:validFor" + }, + "validFrom": { + "@id": "schema:validFrom", + "@type": "Date" + }, + "validIn": { + "@id": "schema:validIn" + }, + "validThrough": { + "@id": "schema:validThrough", + "@type": "Date" + }, + "validUntil": { + "@id": "schema:validUntil", + "@type": "Date" + }, + "value": { + "@id": "schema:value" + }, + "valueAddedTaxIncluded": { + "@id": "schema:valueAddedTaxIncluded" + }, + "valueMaxLength": { + "@id": "schema:valueMaxLength" + }, + "valueMinLength": { + "@id": "schema:valueMinLength" + }, + "valueName": { + "@id": "schema:valueName" + }, + "valuePattern": { + "@id": "schema:valuePattern" + }, + "valueReference": { + "@id": "schema:valueReference" + }, + "valueRequired": { + "@id": "schema:valueRequired" + }, + "variableMeasured": { + "@id": "schema:variableMeasured" + }, + "variablesMeasured": { + "@id": "schema:variablesMeasured" + }, + "variantCover": { + "@id": "schema:variantCover" + }, + "variesBy": { + "@id": "schema:variesBy" + }, + "vatID": { + "@id": "schema:vatID" + }, + "vehicleConfiguration": { + "@id": "schema:vehicleConfiguration" + }, + "vehicleEngine": { + "@id": "schema:vehicleEngine" + }, + "vehicleIdentificationNumber": { + "@id": "schema:vehicleIdentificationNumber" + }, + "vehicleInteriorColor": { + "@id": "schema:vehicleInteriorColor" + }, + "vehicleInteriorType": { + "@id": "schema:vehicleInteriorType" + }, + "vehicleModelDate": { + "@id": "schema:vehicleModelDate", + "@type": "Date" + }, + "vehicleSeatingCapacity": { + "@id": "schema:vehicleSeatingCapacity" + }, + "vehicleSpecialUsage": { + "@id": "schema:vehicleSpecialUsage" + }, + "vehicleTransmission": { + "@id": "schema:vehicleTransmission" + }, + "vendor": { + "@id": "schema:vendor" + }, + "verificationFactCheckingPolicy": { + "@id": "schema:verificationFactCheckingPolicy", + "@type": "@id" + }, + "version": { + "@id": "schema:version" + }, + "video": { + "@id": "schema:video" + }, + "videoFormat": { + "@id": "schema:videoFormat" + }, + "videoFrameSize": { + "@id": "schema:videoFrameSize" + }, + "videoQuality": { + "@id": "schema:videoQuality" + }, + "void": "http://rdfs.org/ns/void#", + "volumeNumber": { + "@id": "schema:volumeNumber" + }, + "warning": { + "@id": "schema:warning" + }, + "warranty": { + "@id": "schema:warranty" + }, + "warrantyPromise": { + "@id": "schema:warrantyPromise" + }, + "warrantyScope": { + "@id": "schema:warrantyScope" + }, + "webCheckinTime": { + "@id": "schema:webCheckinTime", + "@type": "DateTime" + }, + "webFeed": { + "@id": "schema:webFeed", + "@type": "@id" + }, + "weight": { + "@id": "schema:weight" + }, + "weightTotal": { + "@id": "schema:weightTotal" + }, + "wheelbase": { + "@id": "schema:wheelbase" + }, + "width": { + "@id": "schema:width" + }, + "winner": { + "@id": "schema:winner" + }, + "wordCount": { + "@id": "schema:wordCount" + }, + "workExample": { + "@id": "schema:workExample" + }, + "workFeatured": { + "@id": "schema:workFeatured" + }, + "workHours": { + "@id": "schema:workHours" + }, + "workLocation": { + "@id": "schema:workLocation" + }, + "workPerformed": { + "@id": "schema:workPerformed" + }, + "workPresented": { + "@id": "schema:workPresented" + }, + "workTranslation": { + "@id": "schema:workTranslation" + }, + "workload": { + "@id": "schema:workload" + }, + "worksFor": { + "@id": "schema:worksFor" + }, + "worstRating": { + "@id": "schema:worstRating" + }, + "xml": "http://www.w3.org/XML/1998/namespace", + "xpath": { + "@id": "schema:xpath" + }, + "xsd": "http://www.w3.org/2001/XMLSchema#", + "yearBuilt": { + "@id": "schema:yearBuilt" + }, + "yearlyRevenue": { + "@id": "schema:yearlyRevenue" + }, + "yearsInOperation": { + "@id": "schema:yearsInOperation" + }, + "yield": { + "@id": "schema:yield" } + } } diff --git a/fuji_server/data/licenses.json b/fuji_server/data/licenses.json index 40196733..320a951e 100644 --- a/fuji_server/data/licenses.json +++ b/fuji_server/data/licenses.json @@ -1,1598 +1,1599 @@ [ { - "reference": "./0BSD.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/0BSD.json", - "referenceNumber": "250", - "name": "bsd zero clause license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "0BSD", + "name": "bsd zero clause license", + "reference": "./0BSD.html", + "referenceNumber": "250", "seeAlso": [ "http://landley.net/toybox/license.html" - ], - "isOsiApproved": true + ] }, { - "reference": "./AAL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/AAL.json", - "referenceNumber": "63", - "name": "attribution assurance license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "AAL", + "name": "attribution assurance license", + "reference": "./AAL.html", + "referenceNumber": "63", "seeAlso": [ "https://opensource.org/licenses/attribution" - ], - "isOsiApproved": true + ] }, { - "reference": "./ADSL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/ADSL.json", - "referenceNumber": "227", - "name": "amazon digital services license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "ADSL", + "name": "amazon digital services license", + "reference": "./ADSL.html", + "referenceNumber": "227", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense" - ], - "isOsiApproved": false + ] }, { - "reference": "./AFL-1.1.html", + "detailsUrl": "http://spdx.org/licenses/AFL-1.1.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/AFL-1.1.json", - "referenceNumber": "29", - "name": "academic free license v1.1", + "isOsiApproved": true, "licenseId": "AFL-1.1", + "name": "academic free license v1.1", + "reference": "./AFL-1.1.html", + "referenceNumber": "29", "seeAlso": [ "http://opensource.linux-mirror.org/licenses/afl-1.1.txt", "http://wayback.archive.org/web/20021004124254/http://www.opensource.org/licenses/academic.php" - ], - "isOsiApproved": true + ] }, { - "reference": "./AFL-1.2.html", + "detailsUrl": "http://spdx.org/licenses/AFL-1.2.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/AFL-1.2.json", - "referenceNumber": "232", - "name": "academic free license v1.2", + "isOsiApproved": true, "licenseId": "AFL-1.2", + "name": "academic free license v1.2", + "reference": "./AFL-1.2.html", + "referenceNumber": "232", "seeAlso": [ "http://opensource.linux-mirror.org/licenses/afl-1.2.txt", "http://wayback.archive.org/web/20021204204652/http://www.opensource.org/licenses/academic.php" - ], - "isOsiApproved": true + ] }, { - "reference": "./AFL-2.0.html", + "detailsUrl": "http://spdx.org/licenses/AFL-2.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/AFL-2.0.json", - "referenceNumber": "358", - "name": "academic free license v2.0", + "isOsiApproved": true, "licenseId": "AFL-2.0", + "name": "academic free license v2.0", + "reference": "./AFL-2.0.html", + "referenceNumber": "358", "seeAlso": [ "http://wayback.archive.org/web/20060924134533/http://www.opensource.org/licenses/afl-2.0.txt" - ], - "isOsiApproved": true + ] }, { - "reference": "./AFL-2.1.html", + "detailsUrl": "http://spdx.org/licenses/AFL-2.1.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/AFL-2.1.json", - "referenceNumber": "261", - "name": "academic free license v2.1", + "isOsiApproved": true, "licenseId": "AFL-2.1", + "name": "academic free license v2.1", + "reference": "./AFL-2.1.html", + "referenceNumber": "261", "seeAlso": [ "http://opensource.linux-mirror.org/licenses/afl-2.1.txt" - ], - "isOsiApproved": true + ] }, { - "reference": "./AFL-3.0.html", + "detailsUrl": "http://spdx.org/licenses/AFL-3.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/AFL-3.0.json", - "referenceNumber": "380", - "name": "academic free license v3.0", + "isOsiApproved": true, "licenseId": "AFL-3.0", + "name": "academic free license v3.0", + "reference": "./AFL-3.0.html", + "referenceNumber": "380", "seeAlso": [ "http://www.rosenlaw.com/AFL3.0.htm", "https://opensource.org/licenses/afl-3.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./AGPL-1.0.html", + "detailsUrl": "http://spdx.org/licenses/AGPL-1.0.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/AGPL-1.0.json", - "referenceNumber": "180", - "name": "affero general public license v1.0", + "isOsiApproved": false, "licenseId": "AGPL-1.0", + "name": "affero general public license v1.0", + "reference": "./AGPL-1.0.html", + "referenceNumber": "180", "seeAlso": [ "http://www.affero.org/oagpl.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./AGPL-1.0-only.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/AGPL-1.0-only.json", - "referenceNumber": "74", - "name": "affero general public license v1.0 only", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "AGPL-1.0-only", + "name": "affero general public license v1.0 only", + "reference": "./AGPL-1.0-only.html", + "referenceNumber": "74", "seeAlso": [ "http://www.affero.org/oagpl.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./AGPL-1.0-or-later.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/AGPL-1.0-or-later.json", - "referenceNumber": "173", - "name": "affero general public license v1.0 or later", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "AGPL-1.0-or-later", + "name": "affero general public license v1.0 or later", + "reference": "./AGPL-1.0-or-later.html", + "referenceNumber": "173", "seeAlso": [ "http://www.affero.org/oagpl.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./AGPL-3.0.html", + "detailsUrl": "http://spdx.org/licenses/AGPL-3.0.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/AGPL-3.0.json", - "referenceNumber": "152", - "name": "gnu affero general public license v3.0", + "isOsiApproved": true, "licenseId": "AGPL-3.0", + "name": "gnu affero general public license v3.0", + "reference": "./AGPL-3.0.html", + "referenceNumber": "152", "seeAlso": [ "https://www.gnu.org/licenses/agpl.txt", "https://opensource.org/licenses/AGPL-3.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./AGPL-3.0-only.html", + "detailsUrl": "http://spdx.org/licenses/AGPL-3.0-only.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/AGPL-3.0-only.json", - "referenceNumber": "312", - "name": "gnu affero general public license v3.0 only", + "isOsiApproved": true, "licenseId": "AGPL-3.0-only", + "name": "gnu affero general public license v3.0 only", + "reference": "./AGPL-3.0-only.html", + "referenceNumber": "312", "seeAlso": [ "https://www.gnu.org/licenses/agpl.txt", "https://opensource.org/licenses/AGPL-3.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./AGPL-3.0-or-later.html", + "detailsUrl": "http://spdx.org/licenses/AGPL-3.0-or-later.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/AGPL-3.0-or-later.json", - "referenceNumber": "164", - "name": "gnu affero general public license v3.0 or later", + "isOsiApproved": true, "licenseId": "AGPL-3.0-or-later", + "name": "gnu affero general public license v3.0 or later", + "reference": "./AGPL-3.0-or-later.html", + "referenceNumber": "164", "seeAlso": [ "https://www.gnu.org/licenses/agpl.txt", "https://opensource.org/licenses/AGPL-3.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./AMDPLPA.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/AMDPLPA.json", - "referenceNumber": "137", - "name": "amd's plpa_map.c license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "AMDPLPA", + "name": "amd's plpa_map.c license", + "reference": "./AMDPLPA.html", + "referenceNumber": "137", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License" - ], - "isOsiApproved": false + ] }, { - "reference": "./AML.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/AML.json", - "referenceNumber": "161", - "name": "apple mit license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "AML", + "name": "apple mit license", + "reference": "./AML.html", + "referenceNumber": "161", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License" - ], - "isOsiApproved": false + ] }, { - "reference": "./AMPAS.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/AMPAS.json", - "referenceNumber": "140", - "name": "academy of motion picture arts and sciences bsd", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "AMPAS", + "name": "academy of motion picture arts and sciences bsd", + "reference": "./AMPAS.html", + "referenceNumber": "140", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD" - ], - "isOsiApproved": false + ] }, { - "reference": "./ANTLR-PD.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/ANTLR-PD.json", - "referenceNumber": "46", - "name": "antlr software rights notice", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "ANTLR-PD", + "name": "antlr software rights notice", + "reference": "./ANTLR-PD.html", + "referenceNumber": "46", "seeAlso": [ "http://www.antlr2.org/license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./APAFML.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/APAFML.json", - "referenceNumber": "260", - "name": "adobe postscript afm license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "APAFML", + "name": "adobe postscript afm license", + "reference": "./APAFML.html", + "referenceNumber": "260", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM" - ], - "isOsiApproved": false + ] }, { - "reference": "./APL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/APL-1.0.json", - "referenceNumber": "290", - "name": "adaptive public license 1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "APL-1.0", + "name": "adaptive public license 1.0", + "reference": "./APL-1.0.html", + "referenceNumber": "290", "seeAlso": [ "https://opensource.org/licenses/APL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./APSL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/APSL-1.0.json", - "referenceNumber": "406", - "name": "apple public source license 1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "APSL-1.0", + "name": "apple public source license 1.0", + "reference": "./APSL-1.0.html", + "referenceNumber": "406", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./APSL-1.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/APSL-1.1.json", - "referenceNumber": "355", - "name": "apple public source license 1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "APSL-1.1", + "name": "apple public source license 1.1", + "reference": "./APSL-1.1.html", + "referenceNumber": "355", "seeAlso": [ "http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE" - ], - "isOsiApproved": true + ] }, { - "reference": "./APSL-1.2.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/APSL-1.2.json", - "referenceNumber": "211", - "name": "apple public source license 1.2", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "APSL-1.2", + "name": "apple public source license 1.2", + "reference": "./APSL-1.2.html", + "referenceNumber": "211", "seeAlso": [ "http://www.samurajdata.se/opensource/mirror/licenses/apsl.php" - ], - "isOsiApproved": true + ] }, { - "reference": "./APSL-2.0.html", + "detailsUrl": "http://spdx.org/licenses/APSL-2.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/APSL-2.0.json", - "referenceNumber": "145", - "name": "apple public source license 2.0", + "isOsiApproved": true, "licenseId": "APSL-2.0", + "name": "apple public source license 2.0", + "reference": "./APSL-2.0.html", + "referenceNumber": "145", "seeAlso": [ "http://www.opensource.apple.com/license/apsl/" - ], - "isOsiApproved": true + ] }, { - "reference": "./Abstyles.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Abstyles.json", - "referenceNumber": "78", - "name": "abstyles license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Abstyles", + "name": "abstyles license", + "reference": "./Abstyles.html", + "referenceNumber": "78", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Abstyles" - ], - "isOsiApproved": false + ] }, { - "reference": "./Adobe-2006.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Adobe-2006.json", - "referenceNumber": "327", - "name": "adobe systems incorporated source code license agreement", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Adobe-2006", + "name": "adobe systems incorporated source code license agreement", + "reference": "./Adobe-2006.html", + "referenceNumber": "327", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/AdobeLicense" - ], - "isOsiApproved": false + ] }, { - "reference": "./Adobe-Glyph.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Adobe-Glyph.json", - "referenceNumber": "360", - "name": "adobe glyph list license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Adobe-Glyph", + "name": "adobe glyph list license", + "reference": "./Adobe-Glyph.html", + "referenceNumber": "360", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph" - ], - "isOsiApproved": false + ] }, { - "reference": "./Afmparse.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Afmparse.json", - "referenceNumber": "349", - "name": "afmparse license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Afmparse", + "name": "afmparse license", + "reference": "./Afmparse.html", + "referenceNumber": "349", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Afmparse" - ], - "isOsiApproved": false + ] }, { - "reference": "./Aladdin.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Aladdin.json", - "referenceNumber": "332", - "name": "aladdin free public license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Aladdin", + "name": "aladdin free public license", + "reference": "./Aladdin.html", + "referenceNumber": "332", "seeAlso": [ "http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm" - ], - "isOsiApproved": false + ] }, { - "reference": "./Apache-1.0.html", + "detailsUrl": "http://spdx.org/licenses/Apache-1.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Apache-1.0.json", - "referenceNumber": "33", - "name": "apache license 1.0", + "isOsiApproved": false, "licenseId": "Apache-1.0", + "name": "apache license 1.0", + "reference": "./Apache-1.0.html", + "referenceNumber": "33", "seeAlso": [ "http://www.apache.org/licenses/LICENSE-1.0" - ], - "isOsiApproved": false + ] }, { - "reference": "./Apache-1.1.html", + "detailsUrl": "http://spdx.org/licenses/Apache-1.1.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Apache-1.1.json", - "referenceNumber": "286", - "name": "apache license 1.1", + "isOsiApproved": true, "licenseId": "Apache-1.1", + "name": "apache license 1.1", + "reference": "./Apache-1.1.html", + "referenceNumber": "286", "seeAlso": [ "http://apache.org/licenses/LICENSE-1.1", "https://opensource.org/licenses/Apache-1.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./Apache-2.0.html", + "detailsUrl": "http://spdx.org/licenses/Apache-2.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": "385", - "name": "apache license 2.0", + "isOsiApproved": true, "licenseId": "Apache-2.0", + "name": "apache license 2.0", + "reference": "./Apache-2.0.html", + "referenceNumber": "385", "seeAlso": [ "http://www.apache.org/licenses/LICENSE-2.0", "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./Artistic-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Artistic-1.0.json", - "referenceNumber": "285", - "name": "artistic license 1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "Artistic-1.0", + "name": "artistic license 1.0", + "reference": "./Artistic-1.0.html", + "referenceNumber": "285", "seeAlso": [ "https://opensource.org/licenses/Artistic-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./Artistic-1.0-Perl.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Artistic-1.0-Perl.json", - "referenceNumber": "322", - "name": "artistic license 1.0 (perl)", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "Artistic-1.0-Perl", + "name": "artistic license 1.0 (perl)", + "reference": "./Artistic-1.0-Perl.html", + "referenceNumber": "322", "seeAlso": [ "http://dev.perl.org/licenses/artistic.html" - ], - "isOsiApproved": true + ] }, { - "reference": "./Artistic-1.0-cl8.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Artistic-1.0-cl8.json", - "referenceNumber": "240", - "name": "artistic license 1.0 w/clause 8", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "Artistic-1.0-cl8", + "name": "artistic license 1.0 w/clause 8", + "reference": "./Artistic-1.0-cl8.html", + "referenceNumber": "240", "seeAlso": [ "https://opensource.org/licenses/Artistic-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./Artistic-2.0.html", + "detailsUrl": "http://spdx.org/licenses/Artistic-2.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Artistic-2.0.json", - "referenceNumber": "81", - "name": "artistic license 2.0", + "isOsiApproved": true, "licenseId": "Artistic-2.0", + "name": "artistic license 2.0", + "reference": "./Artistic-2.0.html", + "referenceNumber": "81", "seeAlso": [ "http://www.perlfoundation.org/artistic_license_2_0", "https://opensource.org/licenses/artistic-license-2.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./BSD-1-Clause.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/BSD-1-Clause.json", - "referenceNumber": "408", - "name": "bsd 1-clause license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "BSD-1-Clause", + "name": "bsd 1-clause license", + "reference": "./BSD-1-Clause.html", + "referenceNumber": "408", "seeAlso": [ "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823" - ], - "isOsiApproved": true + ] }, { - "reference": "./BSD-2-Clause.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": "323", - "name": "bsd 2-clause \"simplified\" license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "BSD-2-Clause", + "name": "bsd 2-clause \"simplified\" license", + "reference": "./BSD-2-Clause.html", + "referenceNumber": "323", "seeAlso": [ "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true + ] }, { - "reference": "./BSD-2-Clause-FreeBSD.html", + "detailsUrl": "http://spdx.org/licenses/BSD-2-Clause-FreeBSD.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/BSD-2-Clause-FreeBSD.json", - "referenceNumber": "294", - "name": "bsd 2-clause freebsd license", + "isOsiApproved": false, "licenseId": "BSD-2-Clause-FreeBSD", + "name": "bsd 2-clause freebsd license", + "reference": "./BSD-2-Clause-FreeBSD.html", + "referenceNumber": "294", "seeAlso": [ "http://www.freebsd.org/copyright/freebsd-license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./BSD-2-Clause-NetBSD.html", - "isDeprecatedLicenseId": true, "detailsUrl": "http://spdx.org/licenses/BSD-2-Clause-NetBSD.json", - "referenceNumber": "193", - "name": "bsd 2-clause netbsd license", + "isDeprecatedLicenseId": true, + "isOsiApproved": false, "licenseId": "BSD-2-Clause-NetBSD", + "name": "bsd 2-clause netbsd license", + "reference": "./BSD-2-Clause-NetBSD.html", + "referenceNumber": "193", "seeAlso": [ "http://www.netbsd.org/about/redistribution.html#default" - ], - "isOsiApproved": false + ] }, { - "reference": "./BSD-2-Clause-Patent.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/BSD-2-Clause-Patent.json", - "referenceNumber": "381", - "name": "bsd-2-clause plus patent license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "BSD-2-Clause-Patent", + "name": "bsd-2-clause plus patent license", + "reference": "./BSD-2-Clause-Patent.html", + "referenceNumber": "381", "seeAlso": [ "https://opensource.org/licenses/BSDplusPatent" - ], - "isOsiApproved": true + ] }, { - "reference": "./BSD-2-Clause-Views.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/BSD-2-Clause-Views.json", - "referenceNumber": "291", - "name": "bsd 2-clause with views sentence", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "BSD-2-Clause-Views", + "name": "bsd 2-clause with views sentence", + "reference": "./BSD-2-Clause-Views.html", + "referenceNumber": "291", "seeAlso": [ "http://www.freebsd.org/copyright/freebsd-license.html", "https://people.freebsd.org/~ivoras/wine/patch-wine-nvidia.sh", "https://github.com/protegeproject/protege/blob/master/license.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./BSD-3-Clause.html", + "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause.json", - "referenceNumber": "212", - "name": "bsd 3-clause \"new\" or \"revised\" license", + "isOsiApproved": true, "licenseId": "BSD-3-Clause", + "name": "bsd 3-clause \"new\" or \"revised\" license", + "reference": "./BSD-3-Clause.html", + "referenceNumber": "212", "seeAlso": [ "https://opensource.org/licenses/BSD-3-Clause" - ], - "isOsiApproved": true + ] }, { - "reference": "./BSD-3-Clause-Attribution.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause-Attribution.json", - "referenceNumber": "41", - "name": "bsd with attribution", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "BSD-3-Clause-Attribution", + "name": "bsd with attribution", + "reference": "./BSD-3-Clause-Attribution.html", + "referenceNumber": "41", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution" - ], - "isOsiApproved": false + ] }, { - "reference": "./BSD-3-Clause-Clear.html", + "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause-Clear.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause-Clear.json", - "referenceNumber": "92", - "name": "bsd 3-clause clear license", + "isOsiApproved": false, "licenseId": "BSD-3-Clause-Clear", + "name": "bsd 3-clause clear license", + "reference": "./BSD-3-Clause-Clear.html", + "referenceNumber": "92", "seeAlso": [ "http://labs.metacarta.com/license-explanation.html#license" - ], - "isOsiApproved": false + ] }, { - "reference": "./BSD-3-Clause-LBNL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause-LBNL.json", - "referenceNumber": "151", - "name": "lawrence berkeley national labs bsd variant license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "BSD-3-Clause-LBNL", + "name": "lawrence berkeley national labs bsd variant license", + "reference": "./BSD-3-Clause-LBNL.html", + "referenceNumber": "151", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/LBNLBSD" - ], - "isOsiApproved": true + ] }, { - "reference": "./BSD-3-Clause-No-Nuclear-License.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.json", - "referenceNumber": "65", - "name": "bsd 3-clause no nuclear license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "BSD-3-Clause-No-Nuclear-License", + "name": "bsd 3-clause no nuclear license", + "reference": "./BSD-3-Clause-No-Nuclear-License.html", + "referenceNumber": "65", "seeAlso": [ "http://download.oracle.com/otn-pub/java/licenses/bsd.txt?AuthParam=1467140197_43d516ce1776bd08a58235a7785be1cc" - ], - "isOsiApproved": false + ] }, { - "reference": "./BSD-3-Clause-No-Nuclear-License-2014.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.json", - "referenceNumber": "359", - "name": "bsd 3-clause no nuclear license 2014", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "BSD-3-Clause-No-Nuclear-License-2014", + "name": "bsd 3-clause no nuclear license 2014", + "reference": "./BSD-3-Clause-No-Nuclear-License-2014.html", + "referenceNumber": "359", "seeAlso": [ "https://java.net/projects/javaeetutorial/pages/BerkeleyLicense" - ], - "isOsiApproved": false + ] }, { - "reference": "./BSD-3-Clause-No-Nuclear-Warranty.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.json", - "referenceNumber": "121", - "name": "bsd 3-clause no nuclear warranty", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "BSD-3-Clause-No-Nuclear-Warranty", + "name": "bsd 3-clause no nuclear warranty", + "reference": "./BSD-3-Clause-No-Nuclear-Warranty.html", + "referenceNumber": "121", "seeAlso": [ "https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./BSD-3-Clause-Open-MPI.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause-Open-MPI.json", - "referenceNumber": "224", - "name": "bsd 3-clause open mpi variant", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "BSD-3-Clause-Open-MPI", + "name": "bsd 3-clause open mpi variant", + "reference": "./BSD-3-Clause-Open-MPI.html", + "referenceNumber": "224", "seeAlso": [ "https://www.open-mpi.org/community/license.php", "http://www.netlib.org/lapack/LICENSE.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./BSD-4-Clause.html", + "detailsUrl": "http://spdx.org/licenses/BSD-4-Clause.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/BSD-4-Clause.json", - "referenceNumber": "72", - "name": "bsd 4-clause \"original\" or \"old\" license", + "isOsiApproved": false, "licenseId": "BSD-4-Clause", + "name": "bsd 4-clause \"original\" or \"old\" license", + "reference": "./BSD-4-Clause.html", + "referenceNumber": "72", "seeAlso": [ "http://directory.fsf.org/wiki/License:BSD_4Clause" - ], - "isOsiApproved": false + ] }, { - "reference": "./BSD-4-Clause-UC.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/BSD-4-Clause-UC.json", - "referenceNumber": "391", - "name": "bsd-4-clause (university of california-specific)", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "BSD-4-Clause-UC", + "name": "bsd-4-clause (university of california-specific)", + "reference": "./BSD-4-Clause-UC.html", + "referenceNumber": "391", "seeAlso": [ "http://www.freebsd.org/copyright/license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./BSD-Protection.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/BSD-Protection.json", - "referenceNumber": "419", - "name": "bsd protection license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "BSD-Protection", + "name": "bsd protection license", + "reference": "./BSD-Protection.html", + "referenceNumber": "419", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License" - ], - "isOsiApproved": false + ] }, { - "reference": "./BSD-Source-Code.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/BSD-Source-Code.json", - "referenceNumber": "174", - "name": "bsd source code attribution", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "BSD-Source-Code", + "name": "bsd source code attribution", + "reference": "./BSD-Source-Code.html", + "referenceNumber": "174", "seeAlso": [ "https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./BSL-1.0.html", + "detailsUrl": "http://spdx.org/licenses/BSL-1.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/BSL-1.0.json", - "referenceNumber": "309", - "name": "boost software license 1.0", + "isOsiApproved": true, "licenseId": "BSL-1.0", + "name": "boost software license 1.0", + "reference": "./BSL-1.0.html", + "referenceNumber": "309", "seeAlso": [ "http://www.boost.org/LICENSE_1_0.txt", "https://opensource.org/licenses/BSL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./Bahyph.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Bahyph.json", - "referenceNumber": "155", - "name": "bahyph license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Bahyph", + "name": "bahyph license", + "reference": "./Bahyph.html", + "referenceNumber": "155", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Bahyph" - ], - "isOsiApproved": false + ] }, { - "reference": "./Barr.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Barr.json", - "referenceNumber": "132", - "name": "barr license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Barr", + "name": "barr license", + "reference": "./Barr.html", + "referenceNumber": "132", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Barr" - ], - "isOsiApproved": false + ] }, { - "reference": "./Beerware.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Beerware.json", - "referenceNumber": "263", - "name": "beerware license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Beerware", + "name": "beerware license", + "reference": "./Beerware.html", + "referenceNumber": "263", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Beerware", "https://people.freebsd.org/~phk/" - ], - "isOsiApproved": false + ] }, { - "reference": "./BitTorrent-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/BitTorrent-1.0.json", - "referenceNumber": "217", - "name": "bittorrent open source license v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "BitTorrent-1.0", + "name": "bittorrent open source license v1.0", + "reference": "./BitTorrent-1.0.html", + "referenceNumber": "217", "seeAlso": [ "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s" - ], - "isOsiApproved": false + ] }, { - "reference": "./BitTorrent-1.1.html", + "detailsUrl": "http://spdx.org/licenses/BitTorrent-1.1.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/BitTorrent-1.1.json", - "referenceNumber": "196", - "name": "bittorrent open source license v1.1", + "isOsiApproved": false, "licenseId": "BitTorrent-1.1", + "name": "bittorrent open source license v1.1", + "reference": "./BitTorrent-1.1.html", + "referenceNumber": "196", "seeAlso": [ "http://directory.fsf.org/wiki/License:BitTorrentOSL1.1" - ], - "isOsiApproved": false + ] }, { - "reference": "./BlueOak-1.0.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/BlueOak-1.0.0.json", - "referenceNumber": "221", - "name": "blue oak model license 1.0.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "BlueOak-1.0.0", + "name": "blue oak model license 1.0.0", + "reference": "./BlueOak-1.0.0.html", + "referenceNumber": "221", "seeAlso": [ "https://blueoakcouncil.org/license/1.0.0" - ], - "isOsiApproved": false + ] }, { - "reference": "./Borceux.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Borceux.json", - "referenceNumber": "321", - "name": "borceux license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Borceux", + "name": "borceux license", + "reference": "./Borceux.html", + "referenceNumber": "321", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Borceux" - ], - "isOsiApproved": false + ] }, { - "reference": "./CAL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CAL-1.0.json", - "referenceNumber": "62", - "name": "cryptographic autonomy license 1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "CAL-1.0", + "name": "cryptographic autonomy license 1.0", + "reference": "./CAL-1.0.html", + "referenceNumber": "62", "seeAlso": [ "http://cryptographicautonomylicense.com/license-text.html", "https://opensource.org/licenses/CAL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./CAL-1.0-Combined-Work-Exception.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.json", - "referenceNumber": "83", - "name": "cryptographic autonomy license 1.0 (combined work exception)", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "CAL-1.0-Combined-Work-Exception", + "name": "cryptographic autonomy license 1.0 (combined work exception)", + "reference": "./CAL-1.0-Combined-Work-Exception.html", + "referenceNumber": "83", "seeAlso": [ "http://cryptographicautonomylicense.com/license-text.html", "https://opensource.org/licenses/CAL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./CATOSL-1.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CATOSL-1.1.json", - "referenceNumber": "245", - "name": "computer associates trusted open source license 1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "CATOSL-1.1", + "name": "computer associates trusted open source license 1.1", + "reference": "./CATOSL-1.1.html", + "referenceNumber": "245", "seeAlso": [ "https://opensource.org/licenses/CATOSL-1.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./CC-BY-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-1.0.json", - "referenceNumber": "24", - "name": "creative commons attribution 1.0 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-1.0", + "name": "creative commons attribution 1.0 generic", + "reference": "./CC-BY-1.0.html", + "referenceNumber": "24", "seeAlso": [ "https://creativecommons.org/licenses/by/1.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-2.0.json", - "referenceNumber": "64", - "name": "creative commons attribution 2.0 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-2.0", + "name": "creative commons attribution 2.0 generic", + "reference": "./CC-BY-2.0.html", + "referenceNumber": "64", "seeAlso": [ "https://creativecommons.org/licenses/by/2.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-2.5.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-2.5.json", - "referenceNumber": "194", - "name": "creative commons attribution 2.5 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-2.5", + "name": "creative commons attribution 2.5 generic", + "reference": "./CC-BY-2.5.html", + "referenceNumber": "194", "seeAlso": [ "https://creativecommons.org/licenses/by/2.5/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-3.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-3.0.json", - "referenceNumber": "361", - "name": "creative commons attribution 3.0 unported", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-3.0", + "name": "creative commons attribution 3.0 unported", + "reference": "./CC-BY-3.0.html", + "referenceNumber": "361", "seeAlso": [ "https://creativecommons.org/licenses/by/3.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-3.0-AT.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-3.0-AT.json", - "referenceNumber": "237", - "name": "creative commons attribution 3.0 austria", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-3.0-AT", + "name": "creative commons attribution 3.0 austria", + "reference": "./CC-BY-3.0-AT.html", + "referenceNumber": "237", "seeAlso": [ "https://creativecommons.org/licenses/by/3.0/at/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-4.0.html", + "detailsUrl": "http://spdx.org/licenses/CC-BY-4.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/CC-BY-4.0.json", - "referenceNumber": "228", - "name": "creative commons attribution 4.0 international", + "isOsiApproved": false, "licenseId": "CC-BY-4.0", + "name": "creative commons attribution 4.0 international", + "reference": "./CC-BY-4.0.html", + "referenceNumber": "228", "seeAlso": [ "https://creativecommons.org/licenses/by/4.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-NC-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-1.0.json", - "referenceNumber": "242", - "name": "creative commons attribution non commercial 1.0 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-NC-1.0", + "name": "creative commons attribution non commercial 1.0 generic", + "reference": "./CC-BY-NC-1.0.html", + "referenceNumber": "242", "seeAlso": [ "https://creativecommons.org/licenses/by-nc/1.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-NC-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-2.0.json", - "referenceNumber": "343", - "name": "creative commons attribution non commercial 2.0 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-NC-2.0", + "name": "creative commons attribution non commercial 2.0 generic", + "reference": "./CC-BY-NC-2.0.html", + "referenceNumber": "343", "seeAlso": [ "https://creativecommons.org/licenses/by-nc/2.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-NC-2.5.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-2.5.json", - "referenceNumber": "417", - "name": "creative commons attribution non commercial 2.5 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-NC-2.5", + "name": "creative commons attribution non commercial 2.5 generic", + "reference": "./CC-BY-NC-2.5.html", + "referenceNumber": "417", "seeAlso": [ "https://creativecommons.org/licenses/by-nc/2.5/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-NC-3.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-3.0.json", - "referenceNumber": "353", - "name": "creative commons attribution non commercial 3.0 unported", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-NC-3.0", + "name": "creative commons attribution non commercial 3.0 unported", + "reference": "./CC-BY-NC-3.0.html", + "referenceNumber": "353", "seeAlso": [ "https://creativecommons.org/licenses/by-nc/3.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-NC-4.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-4.0.json", - "referenceNumber": "284", - "name": "creative commons attribution non commercial 4.0 international", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-NC-4.0", + "name": "creative commons attribution non commercial 4.0 international", + "reference": "./CC-BY-NC-4.0.html", + "referenceNumber": "284", "seeAlso": [ "https://creativecommons.org/licenses/by-nc/4.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-NC-ND-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-ND-1.0.json", - "referenceNumber": "106", - "name": "creative commons attribution non commercial no derivatives 1.0 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-NC-ND-1.0", + "name": "creative commons attribution non commercial no derivatives 1.0 generic", + "reference": "./CC-BY-NC-ND-1.0.html", + "referenceNumber": "106", "seeAlso": [ "https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-NC-ND-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-ND-2.0.json", - "referenceNumber": "142", - "name": "creative commons attribution non commercial no derivatives 2.0 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-NC-ND-2.0", + "name": "creative commons attribution non commercial no derivatives 2.0 generic", + "reference": "./CC-BY-NC-ND-2.0.html", + "referenceNumber": "142", "seeAlso": [ "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-NC-ND-2.5.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-ND-2.5.json", - "referenceNumber": "31", - "name": "creative commons attribution non commercial no derivatives 2.5 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-NC-ND-2.5", + "name": "creative commons attribution non commercial no derivatives 2.5 generic", + "reference": "./CC-BY-NC-ND-2.5.html", + "referenceNumber": "31", "seeAlso": [ "https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-NC-ND-3.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-ND-3.0.json", - "referenceNumber": "43", - "name": "creative commons attribution non commercial no derivatives 3.0 unported", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-NC-ND-3.0", + "name": "creative commons attribution non commercial no derivatives 3.0 unported", + "reference": "./CC-BY-NC-ND-3.0.html", + "referenceNumber": "43", "seeAlso": [ "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-NC-ND-3.0-IGO.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.json", - "referenceNumber": "366", - "name": "creative commons attribution non commercial no derivatives 3.0 igo", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-NC-ND-3.0-IGO", + "name": "creative commons attribution non commercial no derivatives 3.0 igo", + "reference": "./CC-BY-NC-ND-3.0-IGO.html", + "referenceNumber": "366", "seeAlso": [ "https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-NC-ND-4.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-ND-4.0.json", - "referenceNumber": "177", - "name": "creative commons attribution non commercial no derivatives 4.0 international", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-NC-ND-4.0", + "name": "creative commons attribution non commercial no derivatives 4.0 international", + "reference": "./CC-BY-NC-ND-4.0.html", + "referenceNumber": "177", "seeAlso": [ "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-NC-SA-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-SA-1.0.json", - "referenceNumber": "124", - "name": "creative commons attribution non commercial share alike 1.0 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-NC-SA-1.0", + "name": "creative commons attribution non commercial share alike 1.0 generic", + "reference": "./CC-BY-NC-SA-1.0.html", + "referenceNumber": "124", "seeAlso": [ "https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-NC-SA-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-SA-2.0.json", - "referenceNumber": "431", - "name": "creative commons attribution non commercial share alike 2.0 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-NC-SA-2.0", + "name": "creative commons attribution non commercial share alike 2.0 generic", + "reference": "./CC-BY-NC-SA-2.0.html", + "referenceNumber": "431", "seeAlso": [ "https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-NC-SA-2.5.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-SA-2.5.json", - "referenceNumber": "225", - "name": "creative commons attribution non commercial share alike 2.5 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-NC-SA-2.5", + "name": "creative commons attribution non commercial share alike 2.5 generic", + "reference": "./CC-BY-NC-SA-2.5.html", + "referenceNumber": "225", "seeAlso": [ "https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-NC-SA-3.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-SA-3.0.json", - "referenceNumber": "379", - "name": "creative commons attribution non commercial share alike 3.0 unported", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-NC-SA-3.0", + "name": "creative commons attribution non commercial share alike 3.0 unported", + "reference": "./CC-BY-NC-SA-3.0.html", + "referenceNumber": "379", "seeAlso": [ "https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-NC-SA-4.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-SA-4.0.json", - "referenceNumber": "348", - "name": "creative commons attribution non commercial share alike 4.0 international", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-NC-SA-4.0", + "name": "creative commons attribution non commercial share alike 4.0 international", + "reference": "./CC-BY-NC-SA-4.0.html", + "referenceNumber": "348", "seeAlso": [ "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-ND-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-ND-1.0.json", - "referenceNumber": "98", - "name": "creative commons attribution no derivatives 1.0 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-ND-1.0", + "name": "creative commons attribution no derivatives 1.0 generic", + "reference": "./CC-BY-ND-1.0.html", + "referenceNumber": "98", "seeAlso": [ "https://creativecommons.org/licenses/by-nd/1.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-ND-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-ND-2.0.json", - "referenceNumber": "48", - "name": "creative commons attribution no derivatives 2.0 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-ND-2.0", + "name": "creative commons attribution no derivatives 2.0 generic", + "reference": "./CC-BY-ND-2.0.html", + "referenceNumber": "48", "seeAlso": [ "https://creativecommons.org/licenses/by-nd/2.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-ND-2.5.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-ND-2.5.json", - "referenceNumber": "28", - "name": "creative commons attribution no derivatives 2.5 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-ND-2.5", + "name": "creative commons attribution no derivatives 2.5 generic", + "reference": "./CC-BY-ND-2.5.html", + "referenceNumber": "28", "seeAlso": [ "https://creativecommons.org/licenses/by-nd/2.5/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-ND-3.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-ND-3.0.json", - "referenceNumber": "297", - "name": "creative commons attribution no derivatives 3.0 unported", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-ND-3.0", + "name": "creative commons attribution no derivatives 3.0 unported", + "reference": "./CC-BY-ND-3.0.html", + "referenceNumber": "297", "seeAlso": [ "https://creativecommons.org/licenses/by-nd/3.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-ND-4.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-ND-4.0.json", - "referenceNumber": "335", - "name": "creative commons attribution no derivatives 4.0 international", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-ND-4.0", + "name": "creative commons attribution no derivatives 4.0 international", + "reference": "./CC-BY-ND-4.0.html", + "referenceNumber": "335", "seeAlso": [ "https://creativecommons.org/licenses/by-nd/4.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-SA-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-SA-1.0.json", - "referenceNumber": "422", - "name": "creative commons attribution share alike 1.0 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-SA-1.0", + "name": "creative commons attribution share alike 1.0 generic", + "reference": "./CC-BY-SA-1.0.html", + "referenceNumber": "422", "seeAlso": [ "https://creativecommons.org/licenses/by-sa/1.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-SA-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-SA-2.0.json", - "referenceNumber": "386", - "name": "creative commons attribution share alike 2.0 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-SA-2.0", + "name": "creative commons attribution share alike 2.0 generic", + "reference": "./CC-BY-SA-2.0.html", + "referenceNumber": "386", "seeAlso": [ "https://creativecommons.org/licenses/by-sa/2.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-SA-2.5.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-SA-2.5.json", - "referenceNumber": "213", - "name": "creative commons attribution share alike 2.5 generic", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-SA-2.5", + "name": "creative commons attribution share alike 2.5 generic", + "reference": "./CC-BY-SA-2.5.html", + "referenceNumber": "213", "seeAlso": [ "https://creativecommons.org/licenses/by-sa/2.5/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-SA-3.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-SA-3.0.json", - "referenceNumber": "244", - "name": "creative commons attribution share alike 3.0 unported", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-SA-3.0", + "name": "creative commons attribution share alike 3.0 unported", + "reference": "./CC-BY-SA-3.0.html", + "referenceNumber": "244", "seeAlso": [ "https://creativecommons.org/licenses/by-sa/3.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-SA-3.0-AT.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-BY-SA-3.0-AT.json", - "referenceNumber": "305", - "name": "creative commons attribution-share alike 3.0 austria", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-BY-SA-3.0-AT", + "name": "creative commons attribution-share alike 3.0 austria", + "reference": "./CC-BY-SA-3.0-AT.html", + "referenceNumber": "305", "seeAlso": [ "https://creativecommons.org/licenses/by-sa/3.0/at/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-BY-SA-4.0.html", + "detailsUrl": "http://spdx.org/licenses/CC-BY-SA-4.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/CC-BY-SA-4.0.json", - "referenceNumber": "311", - "name": "creative commons attribution share alike 4.0 international", + "isOsiApproved": false, "licenseId": "CC-BY-SA-4.0", + "name": "creative commons attribution share alike 4.0 international", + "reference": "./CC-BY-SA-4.0.html", + "referenceNumber": "311", "seeAlso": [ "https://creativecommons.org/licenses/by-sa/4.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC-PDDC.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CC-PDDC.json", - "referenceNumber": "96", - "name": "creative commons public domain dedication and certification", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CC-PDDC", + "name": "creative commons public domain dedication and certification", + "reference": "./CC-PDDC.html", + "referenceNumber": "96", "seeAlso": [ "https://creativecommons.org/licenses/publicdomain/" - ], - "isOsiApproved": false + ] }, { - "reference": "./CC0-1.0.html", + "detailsUrl": "http://spdx.org/licenses/CC0-1.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/CC0-1.0.json", - "referenceNumber": "69", - "name": "creative commons zero v1.0 universal", + "isOsiApproved": false, "licenseId": "CC0-1.0", + "name": "creative commons zero v1.0 universal", + "reference": "./CC0-1.0.html", + "referenceNumber": "69", "seeAlso": [ "https://creativecommons.org/publicdomain/zero/1.0", "https://creativecommons.org/publicdomain/zero/1.0/legalcode" - ], - "isOsiApproved": false + ] }, { - "reference": "./CDDL-1.0.html", + "detailsUrl": "http://spdx.org/licenses/CDDL-1.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/CDDL-1.0.json", - "referenceNumber": "352", - "name": "common development and distribution license 1.0", + "isOsiApproved": true, "licenseId": "CDDL-1.0", + "name": "common development and distribution license 1.0", + "reference": "./CDDL-1.0.html", + "referenceNumber": "352", "seeAlso": [ "https://opensource.org/licenses/cddl1" - ], - "isOsiApproved": true + ] }, { - "reference": "./CDDL-1.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CDDL-1.1.json", - "referenceNumber": "296", - "name": "common development and distribution license 1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CDDL-1.1", + "name": "common development and distribution license 1.1", + "reference": "./CDDL-1.1.html", + "referenceNumber": "296", "seeAlso": [ "http://glassfish.java.net/public/CDDL+GPL_1_1.html", "https://javaee.github.io/glassfish/LICENSE" - ], - "isOsiApproved": false + ] }, { - "reference": "./CDLA-Permissive-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CDLA-Permissive-1.0.json", - "referenceNumber": "112", - "name": "community data license agreement permissive 1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CDLA-Permissive-1.0", + "name": "community data license agreement permissive 1.0", + "reference": "./CDLA-Permissive-1.0.html", + "referenceNumber": "112", "seeAlso": [ "https://cdla.io/permissive-1-0" - ], - "isOsiApproved": false + ] }, { - "reference": "./CDLA-Sharing-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CDLA-Sharing-1.0.json", - "referenceNumber": "184", - "name": "community data license agreement sharing 1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CDLA-Sharing-1.0", + "name": "community data license agreement sharing 1.0", + "reference": "./CDLA-Sharing-1.0.html", + "referenceNumber": "184", "seeAlso": [ "https://cdla.io/sharing-1-0" - ], - "isOsiApproved": false + ] }, { - "reference": "./CECILL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CECILL-1.0.json", - "referenceNumber": "11", - "name": "cecill free software license agreement v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CECILL-1.0", + "name": "cecill free software license agreement v1.0", + "reference": "./CECILL-1.0.html", + "referenceNumber": "11", "seeAlso": [ "http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./CECILL-1.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CECILL-1.1.json", - "referenceNumber": "139", - "name": "cecill free software license agreement v1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CECILL-1.1", + "name": "cecill free software license agreement v1.1", + "reference": "./CECILL-1.1.html", + "referenceNumber": "139", "seeAlso": [ "http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./CECILL-2.0.html", + "detailsUrl": "http://spdx.org/licenses/CECILL-2.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/CECILL-2.0.json", - "referenceNumber": "5", - "name": "cecill free software license agreement v2.0", + "isOsiApproved": false, "licenseId": "CECILL-2.0", + "name": "cecill free software license agreement v2.0", + "reference": "./CECILL-2.0.html", + "referenceNumber": "5", "seeAlso": [ "http://www.cecill.info/licences/Licence_CeCILL_V2-en.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./CECILL-2.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CECILL-2.1.json", - "referenceNumber": "149", - "name": "cecill free software license agreement v2.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "CECILL-2.1", + "name": "cecill free software license agreement v2.1", + "reference": "./CECILL-2.1.html", + "referenceNumber": "149", "seeAlso": [ "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html" - ], - "isOsiApproved": true + ] }, { - "reference": "./CECILL-B.html", + "detailsUrl": "http://spdx.org/licenses/CECILL-B.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/CECILL-B.json", - "referenceNumber": "97", - "name": "cecill-b free software license agreement", + "isOsiApproved": false, "licenseId": "CECILL-B", + "name": "cecill-b free software license agreement", + "reference": "./CECILL-B.html", + "referenceNumber": "97", "seeAlso": [ "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./CECILL-C.html", + "detailsUrl": "http://spdx.org/licenses/CECILL-C.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/CECILL-C.json", - "referenceNumber": "251", - "name": "cecill-c free software license agreement", + "isOsiApproved": false, "licenseId": "CECILL-C", + "name": "cecill-c free software license agreement", + "reference": "./CECILL-C.html", + "referenceNumber": "251", "seeAlso": [ "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./CERN-OHL-1.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CERN-OHL-1.1.json", - "referenceNumber": "127", - "name": "cern open hardware licence v1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CERN-OHL-1.1", + "name": "cern open hardware licence v1.1", + "reference": "./CERN-OHL-1.1.html", + "referenceNumber": "127", "seeAlso": [ "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1" - ], - "isOsiApproved": false + ] }, { - "reference": "./CERN-OHL-1.2.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CERN-OHL-1.2.json", - "referenceNumber": "172", - "name": "cern open hardware licence v1.2", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CERN-OHL-1.2", + "name": "cern open hardware licence v1.2", + "reference": "./CERN-OHL-1.2.html", + "referenceNumber": "172", "seeAlso": [ "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2" - ], - "isOsiApproved": false + ] }, { - "reference": "./CERN-OHL-P-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CERN-OHL-P-2.0.json", - "referenceNumber": "267", - "name": "cern open hardware licence version 2 - permissive", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CERN-OHL-P-2.0", + "name": "cern open hardware licence version 2 - permissive", + "reference": "./CERN-OHL-P-2.0.html", + "referenceNumber": "267", "seeAlso": [ "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2" - ], - "isOsiApproved": false + ] }, { - "reference": "./CERN-OHL-S-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CERN-OHL-S-2.0.json", - "referenceNumber": "49", - "name": "cern open hardware licence version 2 - strongly reciprocal", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CERN-OHL-S-2.0", + "name": "cern open hardware licence version 2 - strongly reciprocal", + "reference": "./CERN-OHL-S-2.0.html", + "referenceNumber": "49", "seeAlso": [ "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2" - ], - "isOsiApproved": false + ] }, { - "reference": "./CERN-OHL-W-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CERN-OHL-W-2.0.json", - "referenceNumber": "279", - "name": "cern open hardware licence version 2 - weakly reciprocal", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CERN-OHL-W-2.0", + "name": "cern open hardware licence version 2 - weakly reciprocal", + "reference": "./CERN-OHL-W-2.0.html", + "referenceNumber": "279", "seeAlso": [ "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2" - ], - "isOsiApproved": false + ] }, { - "reference": "./CNRI-Jython.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CNRI-Jython.json", - "referenceNumber": "80", - "name": "cnri jython license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CNRI-Jython", + "name": "cnri jython license", + "reference": "./CNRI-Jython.html", + "referenceNumber": "80", "seeAlso": [ "http://www.jython.org/license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./CNRI-Python.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CNRI-Python.json", - "referenceNumber": "100", - "name": "cnri python license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "CNRI-Python", + "name": "cnri python license", + "reference": "./CNRI-Python.html", + "referenceNumber": "100", "seeAlso": [ "https://opensource.org/licenses/CNRI-Python" - ], - "isOsiApproved": true + ] }, { - "reference": "./CNRI-Python-GPL-Compatible.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CNRI-Python-GPL-Compatible.json", - "referenceNumber": "365", - "name": "cnri python open source gpl compatible license agreement", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CNRI-Python-GPL-Compatible", + "name": "cnri python open source gpl compatible license agreement", + "reference": "./CNRI-Python-GPL-Compatible.html", + "referenceNumber": "365", "seeAlso": [ "http://www.python.org/download/releases/1.6.1/download_win/" - ], - "isOsiApproved": false + ] }, { - "reference": "./CPAL-1.0.html", + "detailsUrl": "http://spdx.org/licenses/CPAL-1.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/CPAL-1.0.json", - "referenceNumber": "298", - "name": "common public attribution license 1.0", + "isOsiApproved": true, "licenseId": "CPAL-1.0", + "name": "common public attribution license 1.0", + "reference": "./CPAL-1.0.html", + "referenceNumber": "298", "seeAlso": [ "https://opensource.org/licenses/CPAL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./CPL-1.0.html", + "detailsUrl": "http://spdx.org/licenses/CPL-1.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/CPL-1.0.json", - "referenceNumber": "247", - "name": "common public license 1.0", + "isOsiApproved": true, "licenseId": "CPL-1.0", + "name": "common public license 1.0", + "reference": "./CPL-1.0.html", + "referenceNumber": "247", "seeAlso": [ "https://opensource.org/licenses/CPL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./CPOL-1.02.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CPOL-1.02.json", - "referenceNumber": "241", - "name": "code project open license 1.02", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CPOL-1.02", + "name": "code project open license 1.02", + "reference": "./CPOL-1.02.html", + "referenceNumber": "241", "seeAlso": [ "http://www.codeproject.com/info/cpol10.aspx" - ], - "isOsiApproved": false + ] }, { - "reference": "./CUA-OPL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CUA-OPL-1.0.json", - "referenceNumber": "170", - "name": "cua office public license v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "CUA-OPL-1.0", + "name": "cua office public license v1.0", + "reference": "./CUA-OPL-1.0.html", + "referenceNumber": "170", "seeAlso": [ "https://opensource.org/licenses/CUA-OPL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./Caldera.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Caldera.json", - "referenceNumber": "262", - "name": "caldera license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Caldera", + "name": "caldera license", + "reference": "./Caldera.html", + "referenceNumber": "262", "seeAlso": [ "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf" - ], - "isOsiApproved": false + ] }, { - "reference": "./ClArtistic.html", + "detailsUrl": "http://spdx.org/licenses/ClArtistic.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/ClArtistic.json", - "referenceNumber": "257", - "name": "clarified artistic license", + "isOsiApproved": false, "licenseId": "ClArtistic", + "name": "clarified artistic license", + "reference": "./ClArtistic.html", + "referenceNumber": "257", "seeAlso": [ "http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/", "http://www.ncftp.com/ncftp/doc/LICENSE.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./Condor-1.1.html", + "detailsUrl": "http://spdx.org/licenses/Condor-1.1.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Condor-1.1.json", - "referenceNumber": "154", - "name": "condor public license v1.1", + "isOsiApproved": false, "licenseId": "Condor-1.1", + "name": "condor public license v1.1", + "reference": "./Condor-1.1.html", + "referenceNumber": "154", "seeAlso": [ "http://research.cs.wisc.edu/condor/license.html#condor", "http://web.archive.org/web/20111123062036/http://research.cs.wisc.edu/condor/license.html#condor" - ], - "isOsiApproved": false + ] }, { - "reference": "./Crossword.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Crossword.json", - "referenceNumber": "105", - "name": "crossword license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Crossword", + "name": "crossword license", + "reference": "./Crossword.html", + "referenceNumber": "105", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Crossword" - ], - "isOsiApproved": false + ] }, { - "reference": "./CrystalStacker.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/CrystalStacker.json", - "referenceNumber": "40", - "name": "crystalstacker license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "CrystalStacker", + "name": "crystalstacker license", + "reference": "./CrystalStacker.html", + "referenceNumber": "40", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker" - ], - "isOsiApproved": false + ] }, { - "reference": "./Cube.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Cube.json", - "referenceNumber": "410", - "name": "cube license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Cube", + "name": "cube license", + "reference": "./Cube.html", + "referenceNumber": "410", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Cube" - ], - "isOsiApproved": false + ] }, { - "reference": "./D-FSL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/D-FSL-1.0.json", - "referenceNumber": "376", - "name": "deutsche freie software lizenz", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "D-FSL-1.0", + "name": "deutsche freie software lizenz", + "reference": "./D-FSL-1.0.html", + "referenceNumber": "376", "seeAlso": [ "http://www.dipp.nrw.de/d-fsl/lizenzen/", "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt", @@ -1602,3957 +1603,3937 @@ "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/german-free-software-license", "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_de.txt/at_download/file", "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_en.txt/at_download/file" - ], - "isOsiApproved": false + ] }, { - "reference": "./DOC.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/DOC.json", - "referenceNumber": "287", - "name": "doc license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "DOC", + "name": "doc license", + "reference": "./DOC.html", + "referenceNumber": "287", "seeAlso": [ "http://www.cs.wustl.edu/~schmidt/ACE-copying.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./DSDP.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/DSDP.json", - "referenceNumber": "278", - "name": "dsdp license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "DSDP", + "name": "dsdp license", + "reference": "./DSDP.html", + "referenceNumber": "278", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/DSDP" - ], - "isOsiApproved": false + ] }, { - "reference": "./Dotseqn.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Dotseqn.json", - "referenceNumber": "34", - "name": "dotseqn license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Dotseqn", + "name": "dotseqn license", + "reference": "./Dotseqn.html", + "referenceNumber": "34", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Dotseqn" - ], - "isOsiApproved": false + ] }, { - "reference": "./ECL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/ECL-1.0.json", - "referenceNumber": "438", - "name": "educational community license v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "ECL-1.0", + "name": "educational community license v1.0", + "reference": "./ECL-1.0.html", + "referenceNumber": "438", "seeAlso": [ "https://opensource.org/licenses/ECL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./ECL-2.0.html", + "detailsUrl": "http://spdx.org/licenses/ECL-2.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/ECL-2.0.json", - "referenceNumber": "1", - "name": "educational community license v2.0", + "isOsiApproved": true, "licenseId": "ECL-2.0", + "name": "educational community license v2.0", + "reference": "./ECL-2.0.html", + "referenceNumber": "1", "seeAlso": [ "https://opensource.org/licenses/ECL-2.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./EFL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/EFL-1.0.json", - "referenceNumber": "79", - "name": "eiffel forum license v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "EFL-1.0", + "name": "eiffel forum license v1.0", + "reference": "./EFL-1.0.html", + "referenceNumber": "79", "seeAlso": [ "http://www.eiffel-nice.org/license/forum.txt", "https://opensource.org/licenses/EFL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./EFL-2.0.html", + "detailsUrl": "http://spdx.org/licenses/EFL-2.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/EFL-2.0.json", - "referenceNumber": "8", - "name": "eiffel forum license v2.0", + "isOsiApproved": true, "licenseId": "EFL-2.0", + "name": "eiffel forum license v2.0", + "reference": "./EFL-2.0.html", + "referenceNumber": "8", "seeAlso": [ "http://www.eiffel-nice.org/license/eiffel-forum-license-2.html", "https://opensource.org/licenses/EFL-2.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./EPICS.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/EPICS.json", - "referenceNumber": "377", - "name": "epics open license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "EPICS", + "name": "epics open license", + "reference": "./EPICS.html", + "referenceNumber": "377", "seeAlso": [ "https://epics.anl.gov/license/open.php" - ], - "isOsiApproved": false + ] }, { - "reference": "./EPL-1.0.html", + "detailsUrl": "http://spdx.org/licenses/EPL-1.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/EPL-1.0.json", - "referenceNumber": "289", - "name": "eclipse public license 1.0", + "isOsiApproved": true, "licenseId": "EPL-1.0", + "name": "eclipse public license 1.0", + "reference": "./EPL-1.0.html", + "referenceNumber": "289", "seeAlso": [ "http://www.eclipse.org/legal/epl-v10.html", "https://opensource.org/licenses/EPL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./EPL-2.0.html", + "detailsUrl": "http://spdx.org/licenses/EPL-2.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/EPL-2.0.json", - "referenceNumber": "436", - "name": "eclipse public license 2.0", + "isOsiApproved": true, "licenseId": "EPL-2.0", + "name": "eclipse public license 2.0", + "reference": "./EPL-2.0.html", + "referenceNumber": "436", "seeAlso": [ "https://www.eclipse.org/legal/epl-2.0", "https://www.opensource.org/licenses/EPL-2.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./EUDatagrid.html", + "detailsUrl": "http://spdx.org/licenses/EUDatagrid.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/EUDatagrid.json", - "referenceNumber": "275", - "name": "eu datagrid software license", + "isOsiApproved": true, "licenseId": "EUDatagrid", + "name": "eu datagrid software license", + "reference": "./EUDatagrid.html", + "referenceNumber": "275", "seeAlso": [ "http://eu-datagrid.web.cern.ch/eu-datagrid/license.html", "https://opensource.org/licenses/EUDatagrid" - ], - "isOsiApproved": true + ] }, { - "reference": "./EUPL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/EUPL-1.0.json", - "referenceNumber": "102", - "name": "european union public license 1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "EUPL-1.0", + "name": "european union public license 1.0", + "reference": "./EUPL-1.0.html", + "referenceNumber": "102", "seeAlso": [ "http://ec.europa.eu/idabc/en/document/7330.html", "http://ec.europa.eu/idabc/servlets/Doc027f.pdf?id=31096" - ], - "isOsiApproved": false + ] }, { - "reference": "./EUPL-1.1.html", + "detailsUrl": "http://spdx.org/licenses/EUPL-1.1.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/EUPL-1.1.json", - "referenceNumber": "429", - "name": "european union public license 1.1", + "isOsiApproved": true, "licenseId": "EUPL-1.1", + "name": "european union public license 1.1", + "reference": "./EUPL-1.1.html", + "referenceNumber": "429", "seeAlso": [ "https://joinup.ec.europa.eu/software/page/eupl/licence-eupl", "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl1.1.-licence-en_0.pdf", "https://opensource.org/licenses/EUPL-1.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./EUPL-1.2.html", + "detailsUrl": "http://spdx.org/licenses/EUPL-1.2.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/EUPL-1.2.json", - "referenceNumber": "283", - "name": "european union public license 1.2", + "isOsiApproved": true, "licenseId": "EUPL-1.2", + "name": "european union public license 1.2", + "reference": "./EUPL-1.2.html", + "referenceNumber": "283", "seeAlso": [ "https://joinup.ec.europa.eu/page/eupl-text-11-12", "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl_v1.2_en.pdf", "https://joinup.ec.europa.eu/sites/default/files/inline-files/EUPL%20v1_2%20EN(1).txt", "http://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX:32017D0863", "https://opensource.org/licenses/EUPL-1.2" - ], - "isOsiApproved": true + ] }, { - "reference": "./Entessa.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Entessa.json", - "referenceNumber": "405", - "name": "entessa public license v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "Entessa", + "name": "entessa public license v1.0", + "reference": "./Entessa.html", + "referenceNumber": "405", "seeAlso": [ "https://opensource.org/licenses/Entessa" - ], - "isOsiApproved": true + ] }, { - "reference": "./ErlPL-1.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/ErlPL-1.1.json", - "referenceNumber": "427", - "name": "erlang public license v1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "ErlPL-1.1", + "name": "erlang public license v1.1", + "reference": "./ErlPL-1.1.html", + "referenceNumber": "427", "seeAlso": [ "http://www.erlang.org/EPLICENSE" - ], - "isOsiApproved": false + ] }, { - "reference": "./Eurosym.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Eurosym.json", - "referenceNumber": "176", - "name": "eurosym license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Eurosym", + "name": "eurosym license", + "reference": "./Eurosym.html", + "referenceNumber": "176", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Eurosym" - ], - "isOsiApproved": false + ] }, { - "reference": "./FSFAP.html", + "detailsUrl": "http://spdx.org/licenses/FSFAP.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/FSFAP.json", - "referenceNumber": "413", - "name": "fsf all permissive license", + "isOsiApproved": false, "licenseId": "FSFAP", + "name": "fsf all permissive license", + "reference": "./FSFAP.html", + "referenceNumber": "413", "seeAlso": [ "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./FSFUL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/FSFUL.json", - "referenceNumber": "2", - "name": "fsf unlimited license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "FSFUL", + "name": "fsf unlimited license", + "reference": "./FSFUL.html", + "referenceNumber": "2", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License" - ], - "isOsiApproved": false + ] }, { - "reference": "./FSFULLR.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/FSFULLR.json", - "referenceNumber": "325", - "name": "fsf unlimited license (with license retention)", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "FSFULLR", + "name": "fsf unlimited license (with license retention)", + "reference": "./FSFULLR.html", + "referenceNumber": "325", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant" - ], - "isOsiApproved": false + ] }, { - "reference": "./FTL.html", + "detailsUrl": "http://spdx.org/licenses/FTL.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/FTL.json", - "referenceNumber": "393", - "name": "freetype project license", + "isOsiApproved": false, "licenseId": "FTL", + "name": "freetype project license", + "reference": "./FTL.html", + "referenceNumber": "393", "seeAlso": [ "http://freetype.fis.uniroma2.it/FTL.TXT", "http://git.savannah.gnu.org/cgit/freetype/freetype2.git/tree/docs/FTL.TXT" - ], - "isOsiApproved": false + ] }, { - "reference": "./Fair.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Fair.json", - "referenceNumber": "274", - "name": "fair license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "Fair", + "name": "fair license", + "reference": "./Fair.html", + "referenceNumber": "274", "seeAlso": [ "http://fairlicense.org/", "https://opensource.org/licenses/Fair" - ], - "isOsiApproved": true + ] }, { - "reference": "./Frameworx-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Frameworx-1.0.json", - "referenceNumber": "392", - "name": "frameworx open license 1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "Frameworx-1.0", + "name": "frameworx open license 1.0", + "reference": "./Frameworx-1.0.html", + "referenceNumber": "392", "seeAlso": [ "https://opensource.org/licenses/Frameworx-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./FreeImage.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/FreeImage.json", - "referenceNumber": "389", - "name": "freeimage public license v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "FreeImage", + "name": "freeimage public license v1.0", + "reference": "./FreeImage.html", + "referenceNumber": "389", "seeAlso": [ "http://freeimage.sourceforge.net/freeimage-license.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.1.html", + "detailsUrl": "http://spdx.org/licenses/GFDL-1.1.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GFDL-1.1.json", - "referenceNumber": "269", - "name": "gnu free documentation license v1.1", + "isOsiApproved": false, "licenseId": "GFDL-1.1", + "name": "gnu free documentation license v1.1", + "reference": "./GFDL-1.1.html", + "referenceNumber": "269", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.1-invariants-only.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/GFDL-1.1-invariants-only.json", - "referenceNumber": "205", - "name": "gnu free documentation license v1.1 only - invariants", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "GFDL-1.1-invariants-only", + "name": "gnu free documentation license v1.1 only - invariants", + "reference": "./GFDL-1.1-invariants-only.html", + "referenceNumber": "205", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.1-invariants-or-later.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/GFDL-1.1-invariants-or-later.json", - "referenceNumber": "85", - "name": "gnu free documentation license v1.1 or later - invariants", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "GFDL-1.1-invariants-or-later", + "name": "gnu free documentation license v1.1 or later - invariants", + "reference": "./GFDL-1.1-invariants-or-later.html", + "referenceNumber": "85", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.1-no-invariants-only.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/GFDL-1.1-no-invariants-only.json", - "referenceNumber": "7", - "name": "gnu free documentation license v1.1 only - no invariants", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "GFDL-1.1-no-invariants-only", + "name": "gnu free documentation license v1.1 only - no invariants", + "reference": "./GFDL-1.1-no-invariants-only.html", + "referenceNumber": "7", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.1-no-invariants-or-later.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.json", - "referenceNumber": "254", - "name": "gnu free documentation license v1.1 or later - no invariants", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "GFDL-1.1-no-invariants-or-later", + "name": "gnu free documentation license v1.1 or later - no invariants", + "reference": "./GFDL-1.1-no-invariants-or-later.html", + "referenceNumber": "254", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.1-only.html", + "detailsUrl": "http://spdx.org/licenses/GFDL-1.1-only.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GFDL-1.1-only.json", - "referenceNumber": "108", - "name": "gnu free documentation license v1.1 only", + "isOsiApproved": false, "licenseId": "GFDL-1.1-only", + "name": "gnu free documentation license v1.1 only", + "reference": "./GFDL-1.1-only.html", + "referenceNumber": "108", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.1-or-later.html", + "detailsUrl": "http://spdx.org/licenses/GFDL-1.1-or-later.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GFDL-1.1-or-later.json", - "referenceNumber": "128", - "name": "gnu free documentation license v1.1 or later", + "isOsiApproved": false, "licenseId": "GFDL-1.1-or-later", + "name": "gnu free documentation license v1.1 or later", + "reference": "./GFDL-1.1-or-later.html", + "referenceNumber": "128", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.2.html", + "detailsUrl": "http://spdx.org/licenses/GFDL-1.2.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GFDL-1.2.json", - "referenceNumber": "206", - "name": "gnu free documentation license v1.2", + "isOsiApproved": false, "licenseId": "GFDL-1.2", + "name": "gnu free documentation license v1.2", + "reference": "./GFDL-1.2.html", + "referenceNumber": "206", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.2-invariants-only.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/GFDL-1.2-invariants-only.json", - "referenceNumber": "208", - "name": "gnu free documentation license v1.2 only - invariants", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "GFDL-1.2-invariants-only", + "name": "gnu free documentation license v1.2 only - invariants", + "reference": "./GFDL-1.2-invariants-only.html", + "referenceNumber": "208", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.2-invariants-or-later.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/GFDL-1.2-invariants-or-later.json", - "referenceNumber": "428", - "name": "gnu free documentation license v1.2 or later - invariants", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "GFDL-1.2-invariants-or-later", + "name": "gnu free documentation license v1.2 or later - invariants", + "reference": "./GFDL-1.2-invariants-or-later.html", + "referenceNumber": "428", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.2-no-invariants-only.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/GFDL-1.2-no-invariants-only.json", - "referenceNumber": "324", - "name": "gnu free documentation license v1.2 only - no invariants", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "GFDL-1.2-no-invariants-only", + "name": "gnu free documentation license v1.2 only - no invariants", + "reference": "./GFDL-1.2-no-invariants-only.html", + "referenceNumber": "324", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.2-no-invariants-or-later.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.json", - "referenceNumber": "195", - "name": "gnu free documentation license v1.2 or later - no invariants", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "GFDL-1.2-no-invariants-or-later", + "name": "gnu free documentation license v1.2 or later - no invariants", + "reference": "./GFDL-1.2-no-invariants-or-later.html", + "referenceNumber": "195", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.2-only.html", + "detailsUrl": "http://spdx.org/licenses/GFDL-1.2-only.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GFDL-1.2-only.json", - "referenceNumber": "94", - "name": "gnu free documentation license v1.2 only", + "isOsiApproved": false, "licenseId": "GFDL-1.2-only", + "name": "gnu free documentation license v1.2 only", + "reference": "./GFDL-1.2-only.html", + "referenceNumber": "94", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.2-or-later.html", + "detailsUrl": "http://spdx.org/licenses/GFDL-1.2-or-later.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GFDL-1.2-or-later.json", - "referenceNumber": "136", - "name": "gnu free documentation license v1.2 or later", + "isOsiApproved": false, "licenseId": "GFDL-1.2-or-later", + "name": "gnu free documentation license v1.2 or later", + "reference": "./GFDL-1.2-or-later.html", + "referenceNumber": "136", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.3.html", + "detailsUrl": "http://spdx.org/licenses/GFDL-1.3.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GFDL-1.3.json", - "referenceNumber": "384", - "name": "gnu free documentation license v1.3", + "isOsiApproved": false, "licenseId": "GFDL-1.3", + "name": "gnu free documentation license v1.3", + "reference": "./GFDL-1.3.html", + "referenceNumber": "384", "seeAlso": [ "https://www.gnu.org/licenses/fdl-1.3.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.3-invariants-only.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/GFDL-1.3-invariants-only.json", - "referenceNumber": "187", - "name": "gnu free documentation license v1.3 only - invariants", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "GFDL-1.3-invariants-only", + "name": "gnu free documentation license v1.3 only - invariants", + "reference": "./GFDL-1.3-invariants-only.html", + "referenceNumber": "187", "seeAlso": [ "https://www.gnu.org/licenses/fdl-1.3.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.3-invariants-or-later.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/GFDL-1.3-invariants-or-later.json", - "referenceNumber": "319", - "name": "gnu free documentation license v1.3 or later - invariants", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "GFDL-1.3-invariants-or-later", + "name": "gnu free documentation license v1.3 or later - invariants", + "reference": "./GFDL-1.3-invariants-or-later.html", + "referenceNumber": "319", "seeAlso": [ "https://www.gnu.org/licenses/fdl-1.3.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.3-no-invariants-only.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/GFDL-1.3-no-invariants-only.json", - "referenceNumber": "183", - "name": "gnu free documentation license v1.3 only - no invariants", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "GFDL-1.3-no-invariants-only", + "name": "gnu free documentation license v1.3 only - no invariants", + "reference": "./GFDL-1.3-no-invariants-only.html", + "referenceNumber": "183", "seeAlso": [ "https://www.gnu.org/licenses/fdl-1.3.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.3-no-invariants-or-later.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.json", - "referenceNumber": "167", - "name": "gnu free documentation license v1.3 or later - no invariants", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "GFDL-1.3-no-invariants-or-later", + "name": "gnu free documentation license v1.3 or later - no invariants", + "reference": "./GFDL-1.3-no-invariants-or-later.html", + "referenceNumber": "167", "seeAlso": [ "https://www.gnu.org/licenses/fdl-1.3.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.3-only.html", + "detailsUrl": "http://spdx.org/licenses/GFDL-1.3-only.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GFDL-1.3-only.json", - "referenceNumber": "210", - "name": "gnu free documentation license v1.3 only", + "isOsiApproved": false, "licenseId": "GFDL-1.3-only", + "name": "gnu free documentation license v1.3 only", + "reference": "./GFDL-1.3-only.html", + "referenceNumber": "210", "seeAlso": [ "https://www.gnu.org/licenses/fdl-1.3.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GFDL-1.3-or-later.html", + "detailsUrl": "http://spdx.org/licenses/GFDL-1.3-or-later.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GFDL-1.3-or-later.json", - "referenceNumber": "56", - "name": "gnu free documentation license v1.3 or later", + "isOsiApproved": false, "licenseId": "GFDL-1.3-or-later", + "name": "gnu free documentation license v1.3 or later", + "reference": "./GFDL-1.3-or-later.html", + "referenceNumber": "56", "seeAlso": [ "https://www.gnu.org/licenses/fdl-1.3.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./GL2PS.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/GL2PS.json", - "referenceNumber": "331", - "name": "gl2ps license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "GL2PS", + "name": "gl2ps license", + "reference": "./GL2PS.html", + "referenceNumber": "331", "seeAlso": [ "http://www.geuz.org/gl2ps/COPYING.GL2PS" - ], - "isOsiApproved": false + ] }, { - "reference": "./GLWTPL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/GLWTPL.json", - "referenceNumber": "55", - "name": "good luck with that public license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "GLWTPL", + "name": "good luck with that public license", + "reference": "./GLWTPL.html", + "referenceNumber": "55", "seeAlso": [ "https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85" - ], - "isOsiApproved": false + ] }, { - "reference": "./GPL-1.0.html", - "isDeprecatedLicenseId": true, "detailsUrl": "http://spdx.org/licenses/GPL-1.0.json", - "referenceNumber": "347", - "name": "gnu general public license v1.0 only", + "isDeprecatedLicenseId": true, + "isOsiApproved": false, "licenseId": "GPL-1.0", + "name": "gnu general public license v1.0 only", + "reference": "./GPL-1.0.html", + "referenceNumber": "347", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./GPL-1.0+.html", - "isDeprecatedLicenseId": true, "detailsUrl": "http://spdx.org/licenses/GPL-1.0+.json", - "referenceNumber": "215", - "name": "gnu general public license v1.0 or later", + "isDeprecatedLicenseId": true, + "isOsiApproved": false, "licenseId": "GPL-1.0+", + "name": "gnu general public license v1.0 or later", + "reference": "./GPL-1.0+.html", + "referenceNumber": "215", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./GPL-1.0-only.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/GPL-1.0-only.json", - "referenceNumber": "16", - "name": "gnu general public license v1.0 only", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "GPL-1.0-only", + "name": "gnu general public license v1.0 only", + "reference": "./GPL-1.0-only.html", + "referenceNumber": "16", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./GPL-1.0-or-later.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/GPL-1.0-or-later.json", - "referenceNumber": "138", - "name": "gnu general public license v1.0 or later", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "GPL-1.0-or-later", + "name": "gnu general public license v1.0 or later", + "reference": "./GPL-1.0-or-later.html", + "referenceNumber": "138", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./GPL-2.0.html", + "detailsUrl": "http://spdx.org/licenses/GPL-2.0.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GPL-2.0.json", - "referenceNumber": "374", - "name": "gnu general public license v2.0 only", + "isOsiApproved": true, "licenseId": "GPL-2.0", + "name": "gnu general public license v2.0 only", + "reference": "./GPL-2.0.html", + "referenceNumber": "374", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "https://opensource.org/licenses/GPL-2.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./GPL-2.0+.html", + "detailsUrl": "http://spdx.org/licenses/GPL-2.0+.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GPL-2.0+.json", - "referenceNumber": "420", - "name": "gnu general public license v2.0 or later", + "isOsiApproved": true, "licenseId": "GPL-2.0+", + "name": "gnu general public license v2.0 or later", + "reference": "./GPL-2.0+.html", + "referenceNumber": "420", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "https://opensource.org/licenses/GPL-2.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./GPL-2.0-only.html", + "detailsUrl": "http://spdx.org/licenses/GPL-2.0-only.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GPL-2.0-only.json", - "referenceNumber": "246", - "name": "gnu general public license v2.0 only", + "isOsiApproved": true, "licenseId": "GPL-2.0-only", + "name": "gnu general public license v2.0 only", + "reference": "./GPL-2.0-only.html", + "referenceNumber": "246", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "https://opensource.org/licenses/GPL-2.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./GPL-2.0-or-later.html", + "detailsUrl": "http://spdx.org/licenses/GPL-2.0-or-later.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GPL-2.0-or-later.json", - "referenceNumber": "270", - "name": "gnu general public license v2.0 or later", + "isOsiApproved": true, "licenseId": "GPL-2.0-or-later", + "name": "gnu general public license v2.0 or later", + "reference": "./GPL-2.0-or-later.html", + "referenceNumber": "270", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "https://opensource.org/licenses/GPL-2.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./GPL-2.0-with-GCC-exception.html", - "isDeprecatedLicenseId": true, "detailsUrl": "http://spdx.org/licenses/GPL-2.0-with-GCC-exception.json", - "referenceNumber": "357", - "name": "gnu general public license v2.0 w/gcc runtime library exception", + "isDeprecatedLicenseId": true, + "isOsiApproved": false, "licenseId": "GPL-2.0-with-GCC-exception", + "name": "gnu general public license v2.0 w/gcc runtime library exception", + "reference": "./GPL-2.0-with-GCC-exception.html", + "referenceNumber": "357", "seeAlso": [ "https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10" - - ], - "isOsiApproved": false + ] }, { - "reference": "./GPL-2.0-with-autoconf-exception.html", - "isDeprecatedLicenseId": true, "detailsUrl": "http://spdx.org/licenses/GPL-2.0-with-autoconf-exception.json", - "referenceNumber": "37", - "name": "gnu general public license v2.0 w/autoconf exception", + "isDeprecatedLicenseId": true, + "isOsiApproved": false, "licenseId": "GPL-2.0-with-autoconf-exception", + "name": "gnu general public license v2.0 w/autoconf exception", + "reference": "./GPL-2.0-with-autoconf-exception.html", + "referenceNumber": "37", "seeAlso": [ "http://ac-archive.sourceforge.net/doc/copyright.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./GPL-2.0-with-bison-exception.html", - "isDeprecatedLicenseId": true, "detailsUrl": "http://spdx.org/licenses/GPL-2.0-with-bison-exception.json", - "referenceNumber": "390", - "name": "gnu general public license v2.0 w/bison exception", + "isDeprecatedLicenseId": true, + "isOsiApproved": false, "licenseId": "GPL-2.0-with-bison-exception", + "name": "gnu general public license v2.0 w/bison exception", + "reference": "./GPL-2.0-with-bison-exception.html", + "referenceNumber": "390", "seeAlso": [ "http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141" - ], - "isOsiApproved": false + ] }, { - "reference": "./GPL-2.0-with-classpath-exception.html", - "isDeprecatedLicenseId": true, "detailsUrl": "http://spdx.org/licenses/GPL-2.0-with-classpath-exception.json", - "referenceNumber": "238", - "name": "gnu general public license v2.0 w/classpath exception", + "isDeprecatedLicenseId": true, + "isOsiApproved": false, "licenseId": "GPL-2.0-with-classpath-exception", + "name": "gnu general public license v2.0 w/classpath exception", + "reference": "./GPL-2.0-with-classpath-exception.html", + "referenceNumber": "238", "seeAlso": [ "https://www.gnu.org/software/classpath/license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./GPL-2.0-with-font-exception.html", - "isDeprecatedLicenseId": true, "detailsUrl": "http://spdx.org/licenses/GPL-2.0-with-font-exception.json", - "referenceNumber": "25", - "name": "gnu general public license v2.0 w/font exception", + "isDeprecatedLicenseId": true, + "isOsiApproved": false, "licenseId": "GPL-2.0-with-font-exception", + "name": "gnu general public license v2.0 w/font exception", + "reference": "./GPL-2.0-with-font-exception.html", + "referenceNumber": "25", "seeAlso": [ "https://www.gnu.org/licenses/gpl-faq.html#FontException" - ], - "isOsiApproved": false + ] }, { - "reference": "./GPL-3.0.html", + "detailsUrl": "http://spdx.org/licenses/GPL-3.0.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GPL-3.0.json", - "referenceNumber": "434", - "name": "gnu general public license v3.0 only", + "isOsiApproved": true, "licenseId": "GPL-3.0", + "name": "gnu general public license v3.0 only", + "reference": "./GPL-3.0.html", + "referenceNumber": "434", "seeAlso": [ "https://www.gnu.org/licenses/gpl-3.0-standalone.html", "https://opensource.org/licenses/GPL-3.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./GPL-3.0+.html", + "detailsUrl": "http://spdx.org/licenses/GPL-3.0+.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GPL-3.0+.json", - "referenceNumber": "156", - "name": "gnu general public license v3.0 or later", + "isOsiApproved": true, "licenseId": "GPL-3.0+", + "name": "gnu general public license v3.0 or later", + "reference": "./GPL-3.0+.html", + "referenceNumber": "156", "seeAlso": [ "https://www.gnu.org/licenses/gpl-3.0-standalone.html", "https://opensource.org/licenses/GPL-3.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./GPL-3.0-only.html", + "detailsUrl": "http://spdx.org/licenses/GPL-3.0-only.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GPL-3.0-only.json", - "referenceNumber": "131", - "name": "gnu general public license v3.0 only", + "isOsiApproved": true, "licenseId": "GPL-3.0-only", + "name": "gnu general public license v3.0 only", + "reference": "./GPL-3.0-only.html", + "referenceNumber": "131", "seeAlso": [ "https://www.gnu.org/licenses/gpl-3.0-standalone.html", "https://opensource.org/licenses/GPL-3.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./GPL-3.0-or-later.html", + "detailsUrl": "http://spdx.org/licenses/GPL-3.0-or-later.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/GPL-3.0-or-later.json", - "referenceNumber": "418", - "name": "gnu general public license v3.0 or later", + "isOsiApproved": true, "licenseId": "GPL-3.0-or-later", + "name": "gnu general public license v3.0 or later", + "reference": "./GPL-3.0-or-later.html", + "referenceNumber": "418", "seeAlso": [ "https://www.gnu.org/licenses/gpl-3.0-standalone.html", "https://opensource.org/licenses/GPL-3.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./GPL-3.0-with-GCC-exception.html", - "isDeprecatedLicenseId": true, "detailsUrl": "http://spdx.org/licenses/GPL-3.0-with-GCC-exception.json", - "referenceNumber": "6", - "name": "gnu general public license v3.0 w/gcc runtime library exception", + "isDeprecatedLicenseId": true, + "isOsiApproved": true, "licenseId": "GPL-3.0-with-GCC-exception", + "name": "gnu general public license v3.0 w/gcc runtime library exception", + "reference": "./GPL-3.0-with-GCC-exception.html", + "referenceNumber": "6", "seeAlso": [ "https://www.gnu.org/licenses/gcc-exception-3.1.html" - ], - "isOsiApproved": true + ] }, { - "reference": "./GPL-3.0-with-autoconf-exception.html", - "isDeprecatedLicenseId": true, "detailsUrl": "http://spdx.org/licenses/GPL-3.0-with-autoconf-exception.json", - "referenceNumber": "9", - "name": "gnu general public license v3.0 w/autoconf exception", + "isDeprecatedLicenseId": true, + "isOsiApproved": false, "licenseId": "GPL-3.0-with-autoconf-exception", + "name": "gnu general public license v3.0 w/autoconf exception", + "reference": "./GPL-3.0-with-autoconf-exception.html", + "referenceNumber": "9", "seeAlso": [ "https://www.gnu.org/licenses/autoconf-exception-3.0.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./Giftware.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Giftware.json", - "referenceNumber": "398", - "name": "giftware license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Giftware", + "name": "giftware license", + "reference": "./Giftware.html", + "referenceNumber": "398", "seeAlso": [ "http://liballeg.org/license.html#allegro-4-the-giftware-license" - ], - "isOsiApproved": false + ] }, { - "reference": "./Glide.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Glide.json", - "referenceNumber": "125", - "name": "3dfx glide license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Glide", + "name": "3dfx glide license", + "reference": "./Glide.html", + "referenceNumber": "125", "seeAlso": [ "http://www.users.on.net/~triforce/glidexp/COPYING.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./Glulxe.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Glulxe.json", - "referenceNumber": "216", - "name": "glulxe license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Glulxe", + "name": "glulxe license", + "reference": "./Glulxe.html", + "referenceNumber": "216", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Glulxe" - ], - "isOsiApproved": false + ] }, { - "reference": "./HPND.html", + "detailsUrl": "http://spdx.org/licenses/HPND.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/HPND.json", - "referenceNumber": "158", - "name": "historical permission notice and disclaimer", + "isOsiApproved": true, "licenseId": "HPND", + "name": "historical permission notice and disclaimer", + "reference": "./HPND.html", + "referenceNumber": "158", "seeAlso": [ "https://opensource.org/licenses/HPND" - ], - "isOsiApproved": true + ] }, { - "reference": "./HPND-sell-variant.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/HPND-sell-variant.json", - "referenceNumber": "169", - "name": "historical permission notice and disclaimer - sell variant", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "HPND-sell-variant", + "name": "historical permission notice and disclaimer - sell variant", + "reference": "./HPND-sell-variant.html", + "referenceNumber": "169", "seeAlso": [ "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19" - - ], - "isOsiApproved": false + ] }, { - "reference": "./HaskellReport.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/HaskellReport.json", - "referenceNumber": "222", - "name": "haskell language report license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "HaskellReport", + "name": "haskell language report license", + "reference": "./HaskellReport.html", + "referenceNumber": "222", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License" - ], - "isOsiApproved": false + ] }, { - "reference": "./Hippocratic-2.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Hippocratic-2.1.json", - "referenceNumber": "192", - "name": "hippocratic license 2.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Hippocratic-2.1", + "name": "hippocratic license 2.1", + "reference": "./Hippocratic-2.1.html", + "referenceNumber": "192", "seeAlso": [ "https://firstdonoharm.dev/version/2/1/license.html", "https://github.com/EthicalSource/hippocratic-license/blob/58c0e646d64ff6fbee275bfe2b9492f914e3ab2a/LICENSE.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./IBM-pibs.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/IBM-pibs.json", - "referenceNumber": "252", - "name": "ibm powerpc initialization and boot software", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "IBM-pibs", + "name": "ibm powerpc initialization and boot software", + "reference": "./IBM-pibs.html", + "referenceNumber": "252", "seeAlso": [ "http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d" - - ], - "isOsiApproved": false + ] }, { - "reference": "./ICU.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/ICU.json", - "referenceNumber": "186", - "name": "icu license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "ICU", + "name": "icu license", + "reference": "./ICU.html", + "referenceNumber": "186", "seeAlso": [ "http://source.icu-project.org/repos/icu/icu/trunk/license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./IJG.html", + "detailsUrl": "http://spdx.org/licenses/IJG.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/IJG.json", - "referenceNumber": "256", - "name": "independent jpeg group license", + "isOsiApproved": false, "licenseId": "IJG", + "name": "independent jpeg group license", + "reference": "./IJG.html", + "referenceNumber": "256", "seeAlso": [ "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2" - ], - "isOsiApproved": false + ] }, { - "reference": "./IPA.html", + "detailsUrl": "http://spdx.org/licenses/IPA.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/IPA.json", - "referenceNumber": "338", - "name": "ipa font license", + "isOsiApproved": true, "licenseId": "IPA", + "name": "ipa font license", + "reference": "./IPA.html", + "referenceNumber": "338", "seeAlso": [ "https://opensource.org/licenses/IPA" - ], - "isOsiApproved": true + ] }, { - "reference": "./IPL-1.0.html", + "detailsUrl": "http://spdx.org/licenses/IPL-1.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/IPL-1.0.json", - "referenceNumber": "337", - "name": "ibm public license v1.0", + "isOsiApproved": true, "licenseId": "IPL-1.0", + "name": "ibm public license v1.0", + "reference": "./IPL-1.0.html", + "referenceNumber": "337", "seeAlso": [ "https://opensource.org/licenses/IPL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./ISC.html", + "detailsUrl": "http://spdx.org/licenses/ISC.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/ISC.json", - "referenceNumber": "383", - "name": "isc license", + "isOsiApproved": true, "licenseId": "ISC", + "name": "isc license", + "reference": "./ISC.html", + "referenceNumber": "383", "seeAlso": [ "https://www.isc.org/downloads/software-support-policy/isc-license/", "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true + ] }, { - "reference": "./ImageMagick.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/ImageMagick.json", - "referenceNumber": "354", - "name": "imagemagick license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "ImageMagick", + "name": "imagemagick license", + "reference": "./ImageMagick.html", + "referenceNumber": "354", "seeAlso": [ "http://www.imagemagick.org/script/license.php" - ], - "isOsiApproved": false + ] }, { - "reference": "./Imlib2.html", + "detailsUrl": "http://spdx.org/licenses/Imlib2.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Imlib2.json", - "referenceNumber": "144", - "name": "imlib2 license", + "isOsiApproved": false, "licenseId": "Imlib2", + "name": "imlib2 license", + "reference": "./Imlib2.html", + "referenceNumber": "144", "seeAlso": [ "http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING", "https://git.enlightenment.org/legacy/imlib2.git/tree/COPYING" - ], - "isOsiApproved": false + ] }, { - "reference": "./Info-ZIP.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Info-ZIP.json", - "referenceNumber": "308", - "name": "info-zip license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Info-ZIP", + "name": "info-zip license", + "reference": "./Info-ZIP.html", + "referenceNumber": "308", "seeAlso": [ "http://www.info-zip.org/license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./Intel.html", + "detailsUrl": "http://spdx.org/licenses/Intel.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Intel.json", - "referenceNumber": "30", - "name": "intel open source license", + "isOsiApproved": true, "licenseId": "Intel", + "name": "intel open source license", + "reference": "./Intel.html", + "referenceNumber": "30", "seeAlso": [ "https://opensource.org/licenses/Intel" - ], - "isOsiApproved": true + ] }, { - "reference": "./Intel-ACPI.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Intel-ACPI.json", - "referenceNumber": "255", - "name": "intel acpi software license agreement", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Intel-ACPI", + "name": "intel acpi software license agreement", + "reference": "./Intel-ACPI.html", + "referenceNumber": "255", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement" - ], - "isOsiApproved": false + ] }, { - "reference": "./Interbase-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Interbase-1.0.json", - "referenceNumber": "351", - "name": "interbase public license v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Interbase-1.0", + "name": "interbase public license v1.0", + "reference": "./Interbase-1.0.html", + "referenceNumber": "351", "seeAlso": [ "https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./JPNIC.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/JPNIC.json", - "referenceNumber": "344", - "name": "japan network information center license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "JPNIC", + "name": "japan network information center license", + "reference": "./JPNIC.html", + "referenceNumber": "344", "seeAlso": [ "https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366" - ], - "isOsiApproved": false + ] }, { - "reference": "./JSON.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/JSON.json", - "referenceNumber": "214", - "name": "json license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "JSON", + "name": "json license", + "reference": "./JSON.html", + "referenceNumber": "214", "seeAlso": [ "http://www.json.org/license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./JasPer-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/JasPer-2.0.json", - "referenceNumber": "84", - "name": "jasper license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "JasPer-2.0", + "name": "jasper license", + "reference": "./JasPer-2.0.html", + "referenceNumber": "84", "seeAlso": [ "http://www.ece.uvic.ca/~mdadams/jasper/LICENSE" - ], - "isOsiApproved": false + ] }, { - "reference": "./LAL-1.2.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/LAL-1.2.json", - "referenceNumber": "163", - "name": "licence art libre 1.2", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "LAL-1.2", + "name": "licence art libre 1.2", + "reference": "./LAL-1.2.html", + "referenceNumber": "163", "seeAlso": [ "http://artlibre.org/licence/lal/licence-art-libre-12/" - ], - "isOsiApproved": false + ] }, { - "reference": "./LAL-1.3.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/LAL-1.3.json", - "referenceNumber": "387", - "name": "licence art libre 1.3", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "LAL-1.3", + "name": "licence art libre 1.3", + "reference": "./LAL-1.3.html", + "referenceNumber": "387", "seeAlso": [ "https://artlibre.org/" - ], - "isOsiApproved": false + ] }, { - "reference": "./LGPL-2.0.html", - "isDeprecatedLicenseId": true, "detailsUrl": "http://spdx.org/licenses/LGPL-2.0.json", - "referenceNumber": "299", - "name": "gnu library general public license v2 only", + "isDeprecatedLicenseId": true, + "isOsiApproved": true, "licenseId": "LGPL-2.0", + "name": "gnu library general public license v2 only", + "reference": "./LGPL-2.0.html", + "referenceNumber": "299", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" - ], - "isOsiApproved": true + ] }, { - "reference": "./LGPL-2.0+.html", - "isDeprecatedLicenseId": true, "detailsUrl": "http://spdx.org/licenses/LGPL-2.0+.json", - "referenceNumber": "148", - "name": "gnu library general public license v2 or later", + "isDeprecatedLicenseId": true, + "isOsiApproved": true, "licenseId": "LGPL-2.0+", + "name": "gnu library general public license v2 or later", + "reference": "./LGPL-2.0+.html", + "referenceNumber": "148", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" - ], - "isOsiApproved": true + ] }, { - "reference": "./LGPL-2.0-only.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/LGPL-2.0-only.json", - "referenceNumber": "356", - "name": "gnu library general public license v2 only", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "LGPL-2.0-only", + "name": "gnu library general public license v2 only", + "reference": "./LGPL-2.0-only.html", + "referenceNumber": "356", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" - ], - "isOsiApproved": true + ] }, { - "reference": "./LGPL-2.0-or-later.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/LGPL-2.0-or-later.json", - "referenceNumber": "36", - "name": "gnu library general public license v2 or later", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "LGPL-2.0-or-later", + "name": "gnu library general public license v2 or later", + "reference": "./LGPL-2.0-or-later.html", + "referenceNumber": "36", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" - ], - "isOsiApproved": true + ] }, { - "reference": "./LGPL-2.1.html", + "detailsUrl": "http://spdx.org/licenses/LGPL-2.1.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/LGPL-2.1.json", - "referenceNumber": "197", - "name": "gnu lesser general public license v2.1 only", + "isOsiApproved": true, "licenseId": "LGPL-2.1", + "name": "gnu lesser general public license v2.1 only", + "reference": "./LGPL-2.1.html", + "referenceNumber": "197", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "https://opensource.org/licenses/LGPL-2.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./LGPL-2.1+.html", + "detailsUrl": "http://spdx.org/licenses/LGPL-2.1+.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/LGPL-2.1+.json", - "referenceNumber": "219", - "name": "gnu library general public license v2.1 or later", + "isOsiApproved": true, "licenseId": "LGPL-2.1+", + "name": "gnu library general public license v2.1 or later", + "reference": "./LGPL-2.1+.html", + "referenceNumber": "219", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "https://opensource.org/licenses/LGPL-2.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./LGPL-2.1-only.html", + "detailsUrl": "http://spdx.org/licenses/LGPL-2.1-only.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/LGPL-2.1-only.json", - "referenceNumber": "147", - "name": "gnu lesser general public license v2.1 only", + "isOsiApproved": true, "licenseId": "LGPL-2.1-only", + "name": "gnu lesser general public license v2.1 only", + "reference": "./LGPL-2.1-only.html", + "referenceNumber": "147", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "https://opensource.org/licenses/LGPL-2.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./LGPL-2.1-or-later.html", + "detailsUrl": "http://spdx.org/licenses/LGPL-2.1-or-later.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/LGPL-2.1-or-later.json", - "referenceNumber": "292", - "name": "gnu lesser general public license v2.1 or later", + "isOsiApproved": true, "licenseId": "LGPL-2.1-or-later", + "name": "gnu lesser general public license v2.1 or later", + "reference": "./LGPL-2.1-or-later.html", + "referenceNumber": "292", "seeAlso": [ "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "https://opensource.org/licenses/LGPL-2.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./LGPL-3.0.html", + "detailsUrl": "http://spdx.org/licenses/LGPL-3.0.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/LGPL-3.0.json", - "referenceNumber": "226", - "name": "gnu lesser general public license v3.0 only", + "isOsiApproved": true, "licenseId": "LGPL-3.0", + "name": "gnu lesser general public license v3.0 only", + "reference": "./LGPL-3.0.html", + "referenceNumber": "226", "seeAlso": [ "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", "https://opensource.org/licenses/LGPL-3.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./LGPL-3.0+.html", + "detailsUrl": "http://spdx.org/licenses/LGPL-3.0+.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/LGPL-3.0+.json", - "referenceNumber": "239", - "name": "gnu lesser general public license v3.0 or later", + "isOsiApproved": true, "licenseId": "LGPL-3.0+", + "name": "gnu lesser general public license v3.0 or later", + "reference": "./LGPL-3.0+.html", + "referenceNumber": "239", "seeAlso": [ "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", "https://opensource.org/licenses/LGPL-3.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./LGPL-3.0-only.html", + "detailsUrl": "http://spdx.org/licenses/LGPL-3.0-only.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/LGPL-3.0-only.json", - "referenceNumber": "51", - "name": "gnu lesser general public license v3.0 only", + "isOsiApproved": true, "licenseId": "LGPL-3.0-only", + "name": "gnu lesser general public license v3.0 only", + "reference": "./LGPL-3.0-only.html", + "referenceNumber": "51", "seeAlso": [ "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", "https://opensource.org/licenses/LGPL-3.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./LGPL-3.0-or-later.html", + "detailsUrl": "http://spdx.org/licenses/LGPL-3.0-or-later.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/LGPL-3.0-or-later.json", - "referenceNumber": "345", - "name": "gnu lesser general public license v3.0 or later", + "isOsiApproved": true, "licenseId": "LGPL-3.0-or-later", + "name": "gnu lesser general public license v3.0 or later", + "reference": "./LGPL-3.0-or-later.html", + "referenceNumber": "345", "seeAlso": [ "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", "https://opensource.org/licenses/LGPL-3.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./LGPLLR.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/LGPLLR.json", - "referenceNumber": "437", - "name": "lesser general public license for linguistic resources", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "LGPLLR", + "name": "lesser general public license for linguistic resources", + "reference": "./LGPLLR.html", + "referenceNumber": "437", "seeAlso": [ "http://www-igm.univ-mlv.fr/~unitex/lgpllr.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./LPL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/LPL-1.0.json", - "referenceNumber": "402", - "name": "lucent public license version 1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "LPL-1.0", + "name": "lucent public license version 1.0", + "reference": "./LPL-1.0.html", + "referenceNumber": "402", "seeAlso": [ "https://opensource.org/licenses/LPL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./LPL-1.02.html", + "detailsUrl": "http://spdx.org/licenses/LPL-1.02.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/LPL-1.02.json", - "referenceNumber": "129", - "name": "lucent public license v1.02", + "isOsiApproved": true, "licenseId": "LPL-1.02", + "name": "lucent public license v1.02", + "reference": "./LPL-1.02.html", + "referenceNumber": "129", "seeAlso": [ "http://plan9.bell-labs.com/plan9/license.html", "https://opensource.org/licenses/LPL-1.02" - ], - "isOsiApproved": true + ] }, { - "reference": "./LPPL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/LPPL-1.0.json", - "referenceNumber": "90", - "name": "latex project public license v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "LPPL-1.0", + "name": "latex project public license v1.0", + "reference": "./LPPL-1.0.html", + "referenceNumber": "90", "seeAlso": [ "http://www.latex-project.org/lppl/lppl-1-0.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./LPPL-1.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/LPPL-1.1.json", - "referenceNumber": "179", - "name": "latex project public license v1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "LPPL-1.1", + "name": "latex project public license v1.1", + "reference": "./LPPL-1.1.html", + "referenceNumber": "179", "seeAlso": [ "http://www.latex-project.org/lppl/lppl-1-1.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./LPPL-1.2.html", + "detailsUrl": "http://spdx.org/licenses/LPPL-1.2.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/LPPL-1.2.json", - "referenceNumber": "171", - "name": "latex project public license v1.2", + "isOsiApproved": false, "licenseId": "LPPL-1.2", + "name": "latex project public license v1.2", + "reference": "./LPPL-1.2.html", + "referenceNumber": "171", "seeAlso": [ "http://www.latex-project.org/lppl/lppl-1-2.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./LPPL-1.3a.html", + "detailsUrl": "http://spdx.org/licenses/LPPL-1.3a.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/LPPL-1.3a.json", - "referenceNumber": "293", - "name": "latex project public license v1.3a", + "isOsiApproved": false, "licenseId": "LPPL-1.3a", + "name": "latex project public license v1.3a", + "reference": "./LPPL-1.3a.html", + "referenceNumber": "293", "seeAlso": [ "http://www.latex-project.org/lppl/lppl-1-3a.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./LPPL-1.3c.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/LPPL-1.3c.json", - "referenceNumber": "135", - "name": "latex project public license v1.3c", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "LPPL-1.3c", + "name": "latex project public license v1.3c", + "reference": "./LPPL-1.3c.html", + "referenceNumber": "135", "seeAlso": [ "http://www.latex-project.org/lppl/lppl-1-3c.txt", "https://opensource.org/licenses/LPPL-1.3c" - ], - "isOsiApproved": true + ] }, { - "reference": "./Latex2e.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Latex2e.json", - "referenceNumber": "38", - "name": "latex2e license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Latex2e", + "name": "latex2e license", + "reference": "./Latex2e.html", + "referenceNumber": "38", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Latex2e" - ], - "isOsiApproved": false + ] }, { - "reference": "./Leptonica.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Leptonica.json", - "referenceNumber": "328", - "name": "leptonica license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Leptonica", + "name": "leptonica license", + "reference": "./Leptonica.html", + "referenceNumber": "328", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Leptonica" - ], - "isOsiApproved": false + ] }, { - "reference": "./LiLiQ-P-1.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/LiLiQ-P-1.1.json", - "referenceNumber": "87", - "name": "licence libre du qu\u00e9bec \u2013 permissive version 1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "LiLiQ-P-1.1", + "name": "licence libre du qu\u00e9bec \u2013 permissive version 1.1", + "reference": "./LiLiQ-P-1.1.html", + "referenceNumber": "87", "seeAlso": [ "https://forge.gouv.qc.ca/licence/fr/liliq-v1-1/", "http://opensource.org/licenses/LiLiQ-P-1.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./LiLiQ-R-1.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/LiLiQ-R-1.1.json", - "referenceNumber": "315", - "name": "licence libre du qu\u00e9bec \u2013 r\u00e9ciprocit\u00e9 version 1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "LiLiQ-R-1.1", + "name": "licence libre du qu\u00e9bec \u2013 r\u00e9ciprocit\u00e9 version 1.1", + "reference": "./LiLiQ-R-1.1.html", + "referenceNumber": "315", "seeAlso": [ "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/", "http://opensource.org/licenses/LiLiQ-R-1.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./LiLiQ-Rplus-1.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/LiLiQ-Rplus-1.1.json", - "referenceNumber": "363", - "name": "licence libre du qu\u00e9bec \u2013 r\u00e9ciprocit\u00e9 forte version 1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "LiLiQ-Rplus-1.1", + "name": "licence libre du qu\u00e9bec \u2013 r\u00e9ciprocit\u00e9 forte version 1.1", + "reference": "./LiLiQ-Rplus-1.1.html", + "referenceNumber": "363", "seeAlso": [ "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/", "http://opensource.org/licenses/LiLiQ-Rplus-1.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./Libpng.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Libpng.json", - "referenceNumber": "407", - "name": "libpng license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Libpng", + "name": "libpng license", + "reference": "./Libpng.html", + "referenceNumber": "407", "seeAlso": [ "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./Linux-OpenIB.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Linux-OpenIB.json", - "referenceNumber": "234", - "name": "linux kernel variant of openib.org license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Linux-OpenIB", + "name": "linux kernel variant of openib.org license", + "reference": "./Linux-OpenIB.html", + "referenceNumber": "234", "seeAlso": [ "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h" - ], - "isOsiApproved": false + ] }, { - "reference": "./MIT.html", + "detailsUrl": "http://spdx.org/licenses/MIT.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/MIT.json", - "referenceNumber": "277", - "name": "mit license", + "isOsiApproved": true, "licenseId": "MIT", + "name": "mit license", + "reference": "./MIT.html", + "referenceNumber": "277", "seeAlso": [ "https://opensource.org/licenses/MIT" - ], - "isOsiApproved": true + ] }, { - "reference": "./MIT-0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/MIT-0.json", - "referenceNumber": "82", - "name": "mit no attribution", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "MIT-0", + "name": "mit no attribution", + "reference": "./MIT-0.html", + "referenceNumber": "82", "seeAlso": [ "https://github.com/aws/mit-0", "https://romanrm.net/mit-zero", "https://github.com/awsdocs/aws-cloud9-user-guide/blob/master/LICENSE-SAMPLECODE" - ], - "isOsiApproved": true + ] }, { - "reference": "./MIT-CMU.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/MIT-CMU.json", - "referenceNumber": "373", - "name": "cmu license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "MIT-CMU", + "name": "cmu license", + "reference": "./MIT-CMU.html", + "referenceNumber": "373", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE" - ], - "isOsiApproved": false + ] }, { - "reference": "./MIT-advertising.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/MIT-advertising.json", - "referenceNumber": "209", - "name": "enlightenment license (e16)", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "MIT-advertising", + "name": "enlightenment license (e16)", + "reference": "./MIT-advertising.html", + "referenceNumber": "209", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising" - ], - "isOsiApproved": false + ] }, { - "reference": "./MIT-enna.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/MIT-enna.json", - "referenceNumber": "57", - "name": "enna license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "MIT-enna", + "name": "enna license", + "reference": "./MIT-enna.html", + "referenceNumber": "57", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/MIT#enna" - ], - "isOsiApproved": false + ] }, { - "reference": "./MIT-feh.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/MIT-feh.json", - "referenceNumber": "395", - "name": "feh license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "MIT-feh", + "name": "feh license", + "reference": "./MIT-feh.html", + "referenceNumber": "395", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/MIT#feh" - ], - "isOsiApproved": false + ] }, { - "reference": "./MITNFA.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/MITNFA.json", - "referenceNumber": "364", - "name": "mit +no-false-attribs license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "MITNFA", + "name": "mit +no-false-attribs license", + "reference": "./MITNFA.html", + "referenceNumber": "364", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/MITNFA" - ], - "isOsiApproved": false + ] }, { - "reference": "./MPL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/MPL-1.0.json", - "referenceNumber": "259", - "name": "mozilla public license 1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "MPL-1.0", + "name": "mozilla public license 1.0", + "reference": "./MPL-1.0.html", + "referenceNumber": "259", "seeAlso": [ "http://www.mozilla.org/MPL/MPL-1.0.html", "https://opensource.org/licenses/MPL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./MPL-1.1.html", + "detailsUrl": "http://spdx.org/licenses/MPL-1.1.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/MPL-1.1.json", - "referenceNumber": "426", - "name": "mozilla public license 1.1", + "isOsiApproved": true, "licenseId": "MPL-1.1", + "name": "mozilla public license 1.1", + "reference": "./MPL-1.1.html", + "referenceNumber": "426", "seeAlso": [ "http://www.mozilla.org/MPL/MPL-1.1.html", "https://opensource.org/licenses/MPL-1.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./MPL-2.0.html", + "detailsUrl": "http://spdx.org/licenses/MPL-2.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/MPL-2.0.json", - "referenceNumber": "130", - "name": "mozilla public license 2.0", + "isOsiApproved": true, "licenseId": "MPL-2.0", + "name": "mozilla public license 2.0", + "reference": "./MPL-2.0.html", + "referenceNumber": "130", "seeAlso": [ "http://www.mozilla.org/MPL/2.0/", "https://opensource.org/licenses/MPL-2.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./MPL-2.0-no-copyleft-exception.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/MPL-2.0-no-copyleft-exception.json", - "referenceNumber": "198", - "name": "mozilla public license 2.0 (no copyleft exception)", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "MPL-2.0-no-copyleft-exception", + "name": "mozilla public license 2.0 (no copyleft exception)", + "reference": "./MPL-2.0-no-copyleft-exception.html", + "referenceNumber": "198", "seeAlso": [ "http://www.mozilla.org/MPL/2.0/", "https://opensource.org/licenses/MPL-2.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./MS-PL.html", + "detailsUrl": "http://spdx.org/licenses/MS-PL.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/MS-PL.json", - "referenceNumber": "396", - "name": "microsoft public license", + "isOsiApproved": true, "licenseId": "MS-PL", + "name": "microsoft public license", + "reference": "./MS-PL.html", + "referenceNumber": "396", "seeAlso": [ "http://www.microsoft.com/opensource/licenses.mspx", "https://opensource.org/licenses/MS-PL" - ], - "isOsiApproved": true + ] }, { - "reference": "./MS-RL.html", + "detailsUrl": "http://spdx.org/licenses/MS-RL.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/MS-RL.json", - "referenceNumber": "4", - "name": "microsoft reciprocal license", + "isOsiApproved": true, "licenseId": "MS-RL", + "name": "microsoft reciprocal license", + "reference": "./MS-RL.html", + "referenceNumber": "4", "seeAlso": [ "http://www.microsoft.com/opensource/licenses.mspx", "https://opensource.org/licenses/MS-RL" - ], - "isOsiApproved": true + ] }, { - "reference": "./MTLL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/MTLL.json", - "referenceNumber": "110", - "name": "matrix template library license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "MTLL", + "name": "matrix template library license", + "reference": "./MTLL.html", + "referenceNumber": "110", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License" - ], - "isOsiApproved": false + ] }, { - "reference": "./MakeIndex.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/MakeIndex.json", - "referenceNumber": "372", - "name": "makeindex license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "MakeIndex", + "name": "makeindex license", + "reference": "./MakeIndex.html", + "referenceNumber": "372", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/MakeIndex" - ], - "isOsiApproved": false + ] }, { - "reference": "./MirOS.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/MirOS.json", - "referenceNumber": "400", - "name": "the miros licence", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "MirOS", + "name": "the miros licence", + "reference": "./MirOS.html", + "referenceNumber": "400", "seeAlso": [ "https://opensource.org/licenses/MirOS" - ], - "isOsiApproved": true + ] }, { - "reference": "./Motosoto.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Motosoto.json", - "referenceNumber": "13", - "name": "motosoto license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "Motosoto", + "name": "motosoto license", + "reference": "./Motosoto.html", + "referenceNumber": "13", "seeAlso": [ "https://opensource.org/licenses/Motosoto" - ], - "isOsiApproved": true + ] }, { - "reference": "./MulanPSL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/MulanPSL-1.0.json", - "referenceNumber": "218", - "name": "mulan permissive software license, version 1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "MulanPSL-1.0", + "name": "mulan permissive software license, version 1", + "reference": "./MulanPSL-1.0.html", + "referenceNumber": "218", "seeAlso": [ "https://license.coscl.org.cn/MulanPSL/", "https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE" - ], - "isOsiApproved": false + ] }, { - "reference": "./MulanPSL-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/MulanPSL-2.0.json", - "referenceNumber": "157", - "name": "mulan permissive software license, version 2", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "MulanPSL-2.0", + "name": "mulan permissive software license, version 2", + "reference": "./MulanPSL-2.0.html", + "referenceNumber": "157", "seeAlso": [ "https://license.coscl.org.cn/MulanPSL2/" - ], - "isOsiApproved": true + ] }, { - "reference": "./Multics.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Multics.json", - "referenceNumber": "175", - "name": "multics license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "Multics", + "name": "multics license", + "reference": "./Multics.html", + "referenceNumber": "175", "seeAlso": [ "https://opensource.org/licenses/Multics" - ], - "isOsiApproved": true + ] }, { - "reference": "./Mup.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Mup.json", - "referenceNumber": "333", - "name": "mup license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Mup", + "name": "mup license", + "reference": "./Mup.html", + "referenceNumber": "333", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Mup" - ], - "isOsiApproved": false + ] }, { - "reference": "./NASA-1.3.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/NASA-1.3.json", - "referenceNumber": "118", - "name": "nasa open source agreement 1.3", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "NASA-1.3", + "name": "nasa open source agreement 1.3", + "reference": "./NASA-1.3.html", + "referenceNumber": "118", "seeAlso": [ "http://ti.arc.nasa.gov/opensource/nosa/", "https://opensource.org/licenses/NASA-1.3" - ], - "isOsiApproved": true + ] }, { - "reference": "./NBPL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/NBPL-1.0.json", - "referenceNumber": "18", - "name": "net boolean public license v1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "NBPL-1.0", + "name": "net boolean public license v1", + "reference": "./NBPL-1.0.html", + "referenceNumber": "18", "seeAlso": [ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894" - - ], - "isOsiApproved": false + ] }, { - "reference": "./NCGL-UK-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/NCGL-UK-2.0.json", - "referenceNumber": "235", - "name": "non-commercial government licence", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "NCGL-UK-2.0", + "name": "non-commercial government licence", + "reference": "./NCGL-UK-2.0.html", + "referenceNumber": "235", "seeAlso": [ "https://github.com/spdx/license-list-XML/blob/master/src/Apache-2.0.xml" - ], - "isOsiApproved": false + ] }, { - "reference": "./NCSA.html", + "detailsUrl": "http://spdx.org/licenses/NCSA.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/NCSA.json", - "referenceNumber": "202", - "name": "university of illinois/ncsa open source license", + "isOsiApproved": true, "licenseId": "NCSA", + "name": "university of illinois/ncsa open source license", + "reference": "./NCSA.html", + "referenceNumber": "202", "seeAlso": [ "http://otm.illinois.edu/uiuc_openSource", "https://opensource.org/licenses/NCSA" - ], - "isOsiApproved": true + ] }, { - "reference": "./NGPL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/NGPL.json", - "referenceNumber": "336", - "name": "nethack general public license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "NGPL", + "name": "nethack general public license", + "reference": "./NGPL.html", + "referenceNumber": "336", "seeAlso": [ "https://opensource.org/licenses/NGPL" - ], - "isOsiApproved": true + ] }, { - "reference": "./NIST-PD.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/NIST-PD.json", - "referenceNumber": "320", - "name": "nist public domain notice", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "NIST-PD", + "name": "nist public domain notice", + "reference": "./NIST-PD.html", + "referenceNumber": "320", "seeAlso": [ "https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt", "https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md" - ], - "isOsiApproved": false + ] }, { - "reference": "./NIST-PD-fallback.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/NIST-PD-fallback.json", - "referenceNumber": "39", - "name": "nist public domain notice with license fallback", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "NIST-PD-fallback", + "name": "nist public domain notice with license fallback", + "reference": "./NIST-PD-fallback.html", + "referenceNumber": "39", "seeAlso": [ "https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE", "https://github.com/usnistgov/fipy/blob/86aaa5c2ba2c6f1be19593c5986071cf6568cc34/LICENSE.rst" - ], - "isOsiApproved": false + ] }, { - "reference": "./NLOD-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/NLOD-1.0.json", - "referenceNumber": "143", - "name": "norwegian licence for open government data", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "NLOD-1.0", + "name": "norwegian licence for open government data", + "reference": "./NLOD-1.0.html", + "referenceNumber": "143", "seeAlso": [ "http://data.norge.no/nlod/en/1.0" - ], - "isOsiApproved": false + ] }, { - "reference": "./NLPL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/NLPL.json", - "referenceNumber": "334", - "name": "no limit public license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "NLPL", + "name": "no limit public license", + "reference": "./NLPL.html", + "referenceNumber": "334", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/NLPL" - ], - "isOsiApproved": false + ] }, { - "reference": "./NOSL.html", + "detailsUrl": "http://spdx.org/licenses/NOSL.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/NOSL.json", - "referenceNumber": "411", - "name": "netizen open source license", + "isOsiApproved": false, "licenseId": "NOSL", + "name": "netizen open source license", + "reference": "./NOSL.html", + "referenceNumber": "411", "seeAlso": [ "http://bits.netizen.com.au/licenses/NOSL/nosl.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./NPL-1.0.html", + "detailsUrl": "http://spdx.org/licenses/NPL-1.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/NPL-1.0.json", - "referenceNumber": "265", - "name": "netscape public license v1.0", + "isOsiApproved": false, "licenseId": "NPL-1.0", + "name": "netscape public license v1.0", + "reference": "./NPL-1.0.html", + "referenceNumber": "265", "seeAlso": [ "http://www.mozilla.org/MPL/NPL/1.0/" - ], - "isOsiApproved": false + ] }, { - "reference": "./NPL-1.1.html", + "detailsUrl": "http://spdx.org/licenses/NPL-1.1.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/NPL-1.1.json", - "referenceNumber": "442", - "name": "netscape public license v1.1", + "isOsiApproved": false, "licenseId": "NPL-1.1", + "name": "netscape public license v1.1", + "reference": "./NPL-1.1.html", + "referenceNumber": "442", "seeAlso": [ "http://www.mozilla.org/MPL/NPL/1.1/" - ], - "isOsiApproved": false + ] }, { - "reference": "./NPOSL-3.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/NPOSL-3.0.json", - "referenceNumber": "160", - "name": "non-profit open software license 3.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "NPOSL-3.0", + "name": "non-profit open software license 3.0", + "reference": "./NPOSL-3.0.html", + "referenceNumber": "160", "seeAlso": [ "https://opensource.org/licenses/NOSL3.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./NRL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/NRL.json", - "referenceNumber": "109", - "name": "nrl license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "NRL", + "name": "nrl license", + "reference": "./NRL.html", + "referenceNumber": "109", "seeAlso": [ "http://web.mit.edu/network/isakmp/nrllicense.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./NTP.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/NTP.json", - "referenceNumber": "280", - "name": "ntp license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "NTP", + "name": "ntp license", + "reference": "./NTP.html", + "referenceNumber": "280", "seeAlso": [ "https://opensource.org/licenses/NTP" - ], - "isOsiApproved": true + ] }, { - "reference": "./NTP-0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/NTP-0.json", - "referenceNumber": "200", - "name": "ntp no attribution", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "NTP-0", + "name": "ntp no attribution", + "reference": "./NTP-0.html", + "referenceNumber": "200", "seeAlso": [ "https://github.com/tytso/e2fsprogs/blob/master/lib/et/et_name.c" - ], - "isOsiApproved": false + ] }, { - "reference": "./Naumen.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Naumen.json", - "referenceNumber": "307", - "name": "naumen public license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "Naumen", + "name": "naumen public license", + "reference": "./Naumen.html", + "referenceNumber": "307", "seeAlso": [ "https://opensource.org/licenses/Naumen" - ], - "isOsiApproved": true + ] }, { - "reference": "./Net-SNMP.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Net-SNMP.json", - "referenceNumber": "301", - "name": "net-snmp license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Net-SNMP", + "name": "net-snmp license", + "reference": "./Net-SNMP.html", + "referenceNumber": "301", "seeAlso": [ "http://net-snmp.sourceforge.net/about/license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./NetCDF.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/NetCDF.json", - "referenceNumber": "229", - "name": "netcdf license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "NetCDF", + "name": "netcdf license", + "reference": "./NetCDF.html", + "referenceNumber": "229", "seeAlso": [ "http://www.unidata.ucar.edu/software/netcdf/copyright.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./Newsletr.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Newsletr.json", - "referenceNumber": "388", - "name": "newsletr license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Newsletr", + "name": "newsletr license", + "reference": "./Newsletr.html", + "referenceNumber": "388", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Newsletr" - ], - "isOsiApproved": false + ] }, { - "reference": "./Nokia.html", + "detailsUrl": "http://spdx.org/licenses/Nokia.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Nokia.json", - "referenceNumber": "134", - "name": "nokia open source license", + "isOsiApproved": true, "licenseId": "Nokia", + "name": "nokia open source license", + "reference": "./Nokia.html", + "referenceNumber": "134", "seeAlso": [ "https://opensource.org/licenses/nokia" - ], - "isOsiApproved": true + ] }, { - "reference": "./Noweb.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Noweb.json", - "referenceNumber": "76", - "name": "noweb license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Noweb", + "name": "noweb license", + "reference": "./Noweb.html", + "referenceNumber": "76", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Noweb" - ], - "isOsiApproved": false + ] }, { - "reference": "./Nunit.html", + "detailsUrl": "http://spdx.org/licenses/Nunit.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Nunit.json", - "referenceNumber": "95", - "name": "nunit license", + "isOsiApproved": false, "licenseId": "Nunit", + "name": "nunit license", + "reference": "./Nunit.html", + "referenceNumber": "95", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Nunit" - ], - "isOsiApproved": false + ] }, { - "reference": "./O-UDA-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/O-UDA-1.0.json", - "referenceNumber": "50", - "name": "open use of data agreement v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "O-UDA-1.0", + "name": "open use of data agreement v1.0", + "reference": "./O-UDA-1.0.html", + "referenceNumber": "50", "seeAlso": [ "https://github.com/microsoft/Open-Use-of-Data-Agreement/blob/v1.0/O-UDA-1.0.md" - ], - "isOsiApproved": false + ] }, { - "reference": "./OCCT-PL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OCCT-PL.json", - "referenceNumber": "71", - "name": "open cascade technology public license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OCCT-PL", + "name": "open cascade technology public license", + "reference": "./OCCT-PL.html", + "referenceNumber": "71", "seeAlso": [ "http://www.opencascade.com/content/occt-public-license" - ], - "isOsiApproved": false + ] }, { - "reference": "./OCLC-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OCLC-2.0.json", - "referenceNumber": "370", - "name": "oclc research public license 2.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "OCLC-2.0", + "name": "oclc research public license 2.0", + "reference": "./OCLC-2.0.html", + "referenceNumber": "370", "seeAlso": [ "http://www.oclc.org/research/activities/software/license/v2final.htm", "https://opensource.org/licenses/OCLC-2.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./ODC-By-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/ODC-By-1.0.json", - "referenceNumber": "412", - "name": "open data commons attribution license v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "ODC-By-1.0", + "name": "open data commons attribution license v1.0", + "reference": "./ODC-By-1.0.html", + "referenceNumber": "412", "seeAlso": [ "https://opendatacommons.org/licenses/by/1.0/" - ], - "isOsiApproved": false + ] }, { - "reference": "./ODbL-1.0.html", + "detailsUrl": "http://spdx.org/licenses/ODbL-1.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/ODbL-1.0.json", - "referenceNumber": "369", - "name": "odc open database license v1.0", + "isOsiApproved": false, "licenseId": "ODbL-1.0", + "name": "odc open database license v1.0", + "reference": "./ODbL-1.0.html", + "referenceNumber": "369", "seeAlso": [ "http://www.opendatacommons.org/licenses/odbl/1.0/" - ], - "isOsiApproved": false + ] }, { - "reference": "./OFL-1.0.html", + "detailsUrl": "http://spdx.org/licenses/OFL-1.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/OFL-1.0.json", - "referenceNumber": "88", - "name": "sil open font license 1.0", + "isOsiApproved": false, "licenseId": "OFL-1.0", + "name": "sil open font license 1.0", + "reference": "./OFL-1.0.html", + "referenceNumber": "88", "seeAlso": [ "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web" - ], - "isOsiApproved": false + ] }, { - "reference": "./OFL-1.0-RFN.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OFL-1.0-RFN.json", - "referenceNumber": "326", - "name": "sil open font license 1.0 with reserved font name", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OFL-1.0-RFN", + "name": "sil open font license 1.0 with reserved font name", + "reference": "./OFL-1.0-RFN.html", + "referenceNumber": "326", "seeAlso": [ "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web" - ], - "isOsiApproved": false + ] }, { - "reference": "./OFL-1.0-no-RFN.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OFL-1.0-no-RFN.json", - "referenceNumber": "77", - "name": "sil open font license 1.0 with no reserved font name", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OFL-1.0-no-RFN", + "name": "sil open font license 1.0 with no reserved font name", + "reference": "./OFL-1.0-no-RFN.html", + "referenceNumber": "77", "seeAlso": [ "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web" - ], - "isOsiApproved": false + ] }, { - "reference": "./OFL-1.1.html", + "detailsUrl": "http://spdx.org/licenses/OFL-1.1.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/OFL-1.1.json", - "referenceNumber": "339", - "name": "sil open font license 1.1", + "isOsiApproved": true, "licenseId": "OFL-1.1", + "name": "sil open font license 1.1", + "reference": "./OFL-1.1.html", + "referenceNumber": "339", "seeAlso": [ "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", "https://opensource.org/licenses/OFL-1.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./OFL-1.1-RFN.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OFL-1.1-RFN.json", - "referenceNumber": "45", - "name": "sil open font license 1.1 with reserved font name", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "OFL-1.1-RFN", + "name": "sil open font license 1.1 with reserved font name", + "reference": "./OFL-1.1-RFN.html", + "referenceNumber": "45", "seeAlso": [ "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", "https://opensource.org/licenses/OFL-1.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./OFL-1.1-no-RFN.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OFL-1.1-no-RFN.json", - "referenceNumber": "258", - "name": "sil open font license 1.1 with no reserved font name", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "OFL-1.1-no-RFN", + "name": "sil open font license 1.1 with no reserved font name", + "reference": "./OFL-1.1-no-RFN.html", + "referenceNumber": "258", "seeAlso": [ "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", "https://opensource.org/licenses/OFL-1.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./OGC-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OGC-1.0.json", - "referenceNumber": "397", - "name": "ogc software license, version 1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OGC-1.0", + "name": "ogc software license, version 1.0", + "reference": "./OGC-1.0.html", + "referenceNumber": "397", "seeAlso": [ "https://www.ogc.org/ogc/software/1.0" - ], - "isOsiApproved": false + ] }, { - "reference": "./OGL-Canada-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OGL-Canada-2.0.json", - "referenceNumber": "375", - "name": "open government licence - canada", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OGL-Canada-2.0", + "name": "open government licence - canada", + "reference": "./OGL-Canada-2.0.html", + "referenceNumber": "375", "seeAlso": [ "https://open.canada.ca/en/open-government-licence-canada" - ], - "isOsiApproved": false + ] }, { - "reference": "./OGL-UK-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OGL-UK-1.0.json", - "referenceNumber": "378", - "name": "open government licence v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OGL-UK-1.0", + "name": "open government licence v1.0", + "reference": "./OGL-UK-1.0.html", + "referenceNumber": "378", "seeAlso": [ "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/" - ], - "isOsiApproved": false + ] }, { - "reference": "./OGL-UK-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OGL-UK-2.0.json", - "referenceNumber": "14", - "name": "open government licence v2.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OGL-UK-2.0", + "name": "open government licence v2.0", + "reference": "./OGL-UK-2.0.html", + "referenceNumber": "14", "seeAlso": [ "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/" - ], - "isOsiApproved": false + ] }, { - "reference": "./OGL-UK-3.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OGL-UK-3.0.json", - "referenceNumber": "22", - "name": "open government licence v3.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OGL-UK-3.0", + "name": "open government licence v3.0", + "reference": "./OGL-UK-3.0.html", + "referenceNumber": "22", "seeAlso": [ "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/" - ], - "isOsiApproved": false + ] }, { - "reference": "./OGTSL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OGTSL.json", - "referenceNumber": "27", - "name": "open group test suite license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "OGTSL", + "name": "open group test suite license", + "reference": "./OGTSL.html", + "referenceNumber": "27", "seeAlso": [ "http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt", "https://opensource.org/licenses/OGTSL" - ], - "isOsiApproved": true + ] }, { - "reference": "./OLDAP-1.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OLDAP-1.1.json", - "referenceNumber": "60", - "name": "open ldap public license v1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OLDAP-1.1", + "name": "open ldap public license v1.1", + "reference": "./OLDAP-1.1.html", + "referenceNumber": "60", "seeAlso": [ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f" - - ], - "isOsiApproved": false + ] }, { - "reference": "./OLDAP-1.2.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OLDAP-1.2.json", - "referenceNumber": "52", - "name": "open ldap public license v1.2", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OLDAP-1.2", + "name": "open ldap public license v1.2", + "reference": "./OLDAP-1.2.html", + "referenceNumber": "52", "seeAlso": [ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7" - - ], - "isOsiApproved": false + ] }, { - "reference": "./OLDAP-1.3.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OLDAP-1.3.json", - "referenceNumber": "44", - "name": "open ldap public license v1.3", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OLDAP-1.3", + "name": "open ldap public license v1.3", + "reference": "./OLDAP-1.3.html", + "referenceNumber": "44", "seeAlso": [ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1" - - ], - "isOsiApproved": false + ] }, { - "reference": "./OLDAP-1.4.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OLDAP-1.4.json", - "referenceNumber": "54", - "name": "open ldap public license v1.4", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OLDAP-1.4", + "name": "open ldap public license v1.4", + "reference": "./OLDAP-1.4.html", + "referenceNumber": "54", "seeAlso": [ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941" - - ], - "isOsiApproved": false + ] }, { - "reference": "./OLDAP-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OLDAP-2.0.json", - "referenceNumber": "26", - "name": "open ldap public license v2.0 (or possibly 2.0a and 2.0b)", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OLDAP-2.0", + "name": "open ldap public license v2.0 (or possibly 2.0a and 2.0b)", + "reference": "./OLDAP-2.0.html", + "referenceNumber": "26", "seeAlso": [ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea" - - ], - "isOsiApproved": false + ] }, { - "reference": "./OLDAP-2.0.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OLDAP-2.0.1.json", - "referenceNumber": "303", - "name": "open ldap public license v2.0.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OLDAP-2.0.1", + "name": "open ldap public license v2.0.1", + "reference": "./OLDAP-2.0.1.html", + "referenceNumber": "303", "seeAlso": [ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e" - - ], - "isOsiApproved": false + ] }, { - "reference": "./OLDAP-2.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OLDAP-2.1.json", - "referenceNumber": "433", - "name": "open ldap public license v2.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OLDAP-2.1", + "name": "open ldap public license v2.1", + "reference": "./OLDAP-2.1.html", + "referenceNumber": "433", "seeAlso": [ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715" - - ], - "isOsiApproved": false + ] }, { - "reference": "./OLDAP-2.2.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OLDAP-2.2.json", - "referenceNumber": "346", - "name": "open ldap public license v2.2", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OLDAP-2.2", + "name": "open ldap public license v2.2", + "reference": "./OLDAP-2.2.html", + "referenceNumber": "346", "seeAlso": [ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3" - - ], - "isOsiApproved": false + ] }, { - "reference": "./OLDAP-2.2.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OLDAP-2.2.1.json", - "referenceNumber": "415", - "name": "open ldap public license v2.2.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OLDAP-2.2.1", + "name": "open ldap public license v2.2.1", + "reference": "./OLDAP-2.2.1.html", + "referenceNumber": "415", "seeAlso": [ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e" - - ], - "isOsiApproved": false + ] }, { - "reference": "./OLDAP-2.2.2.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OLDAP-2.2.2.json", - "referenceNumber": "181", - "name": "open ldap public license 2.2.2", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OLDAP-2.2.2", + "name": "open ldap public license 2.2.2", + "reference": "./OLDAP-2.2.2.html", + "referenceNumber": "181", "seeAlso": [ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188" - - ], - "isOsiApproved": false + ] }, { - "reference": "./OLDAP-2.3.html", + "detailsUrl": "http://spdx.org/licenses/OLDAP-2.3.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/OLDAP-2.3.json", - "referenceNumber": "249", - "name": "open ldap public license v2.3", + "isOsiApproved": false, "licenseId": "OLDAP-2.3", + "name": "open ldap public license v2.3", + "reference": "./OLDAP-2.3.html", + "referenceNumber": "249", "seeAlso": [ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3" - - ], - "isOsiApproved": false + ] }, { - "reference": "./OLDAP-2.4.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OLDAP-2.4.json", - "referenceNumber": "123", - "name": "open ldap public license v2.4", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OLDAP-2.4", + "name": "open ldap public license v2.4", + "reference": "./OLDAP-2.4.html", + "referenceNumber": "123", "seeAlso": [ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386" - - ], - "isOsiApproved": false + ] }, { - "reference": "./OLDAP-2.5.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OLDAP-2.5.json", - "referenceNumber": "116", - "name": "open ldap public license v2.5", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OLDAP-2.5", + "name": "open ldap public license v2.5", + "reference": "./OLDAP-2.5.html", + "referenceNumber": "116", "seeAlso": [ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf" - - ], - "isOsiApproved": false + ] }, { - "reference": "./OLDAP-2.6.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OLDAP-2.6.json", - "referenceNumber": "117", - "name": "open ldap public license v2.6", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OLDAP-2.6", + "name": "open ldap public license v2.6", + "reference": "./OLDAP-2.6.html", + "referenceNumber": "117", "seeAlso": [ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205" - - ], - "isOsiApproved": false + ] }, { - "reference": "./OLDAP-2.7.html", + "detailsUrl": "http://spdx.org/licenses/OLDAP-2.7.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/OLDAP-2.7.json", - "referenceNumber": "248", - "name": "open ldap public license v2.7", + "isOsiApproved": false, "licenseId": "OLDAP-2.7", + "name": "open ldap public license v2.7", + "reference": "./OLDAP-2.7.html", + "referenceNumber": "248", "seeAlso": [ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2" - - ], - "isOsiApproved": false + ] }, { - "reference": "./OLDAP-2.8.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OLDAP-2.8.json", - "referenceNumber": "273", - "name": "open ldap public license v2.8", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OLDAP-2.8", + "name": "open ldap public license v2.8", + "reference": "./OLDAP-2.8.html", + "referenceNumber": "273", "seeAlso": [ "http://www.openldap.org/software/release/license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./OML.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OML.json", - "referenceNumber": "182", - "name": "open market license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OML", + "name": "open market license", + "reference": "./OML.html", + "referenceNumber": "182", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Open_Market_License" - ], - "isOsiApproved": false + ] }, { - "reference": "./OPL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OPL-1.0.json", - "referenceNumber": "367", - "name": "open public license v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "OPL-1.0", + "name": "open public license v1.0", + "reference": "./OPL-1.0.html", + "referenceNumber": "367", "seeAlso": [ "http://old.koalateam.com/jackaroo/OPL_1_0.TXT", "https://fedoraproject.org/wiki/Licensing/Open_Public_License" - ], - "isOsiApproved": false + ] }, { - "reference": "./OSET-PL-2.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/OSET-PL-2.1.json", - "referenceNumber": "220", - "name": "oset public license version 2.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "OSET-PL-2.1", + "name": "oset public license version 2.1", + "reference": "./OSET-PL-2.1.html", + "referenceNumber": "220", "seeAlso": [ "http://www.osetfoundation.org/public-license", "https://opensource.org/licenses/OPL-2.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./OSL-1.0.html", + "detailsUrl": "http://spdx.org/licenses/OSL-1.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/OSL-1.0.json", - "referenceNumber": "103", - "name": "open software license 1.0", + "isOsiApproved": true, "licenseId": "OSL-1.0", + "name": "open software license 1.0", + "reference": "./OSL-1.0.html", + "referenceNumber": "103", "seeAlso": [ "https://opensource.org/licenses/OSL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./OSL-1.1.html", + "detailsUrl": "http://spdx.org/licenses/OSL-1.1.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/OSL-1.1.json", - "referenceNumber": "191", - "name": "open software license 1.1", + "isOsiApproved": false, "licenseId": "OSL-1.1", + "name": "open software license 1.1", + "reference": "./OSL-1.1.html", + "referenceNumber": "191", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/OSL1.1" - ], - "isOsiApproved": false + ] }, { - "reference": "./OSL-2.0.html", + "detailsUrl": "http://spdx.org/licenses/OSL-2.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/OSL-2.0.json", - "referenceNumber": "394", - "name": "open software license 2.0", + "isOsiApproved": true, "licenseId": "OSL-2.0", + "name": "open software license 2.0", + "reference": "./OSL-2.0.html", + "referenceNumber": "394", "seeAlso": [ "http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html" - ], - "isOsiApproved": true + ] }, { - "reference": "./OSL-2.1.html", + "detailsUrl": "http://spdx.org/licenses/OSL-2.1.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/OSL-2.1.json", - "referenceNumber": "168", - "name": "open software license 2.1", + "isOsiApproved": true, "licenseId": "OSL-2.1", + "name": "open software license 2.1", + "reference": "./OSL-2.1.html", + "referenceNumber": "168", "seeAlso": [ "http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm", "https://opensource.org/licenses/OSL-2.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./OSL-3.0.html", + "detailsUrl": "http://spdx.org/licenses/OSL-3.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/OSL-3.0.json", - "referenceNumber": "159", - "name": "open software license 3.0", + "isOsiApproved": true, "licenseId": "OSL-3.0", + "name": "open software license 3.0", + "reference": "./OSL-3.0.html", + "referenceNumber": "159", "seeAlso": [ "https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm", "https://opensource.org/licenses/OSL-3.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./OpenSSL.html", + "detailsUrl": "http://spdx.org/licenses/OpenSSL.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/OpenSSL.json", - "referenceNumber": "91", - "name": "openssl license", + "isOsiApproved": false, "licenseId": "OpenSSL", + "name": "openssl license", + "reference": "./OpenSSL.html", + "referenceNumber": "91", "seeAlso": [ "http://www.openssl.org/source/license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./PDDL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/PDDL-1.0.json", - "referenceNumber": "141", - "name": "odc public domain dedication & license 1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "PDDL-1.0", + "name": "odc public domain dedication & license 1.0", + "reference": "./PDDL-1.0.html", + "referenceNumber": "141", "seeAlso": [ "http://opendatacommons.org/licenses/pddl/1.0/" - ], - "isOsiApproved": false + ] }, { - "reference": "./PHP-3.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/PHP-3.0.json", - "referenceNumber": "207", - "name": "php license v3.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "PHP-3.0", + "name": "php license v3.0", + "reference": "./PHP-3.0.html", + "referenceNumber": "207", "seeAlso": [ "http://www.php.net/license/3_0.txt", "https://opensource.org/licenses/PHP-3.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./PHP-3.01.html", + "detailsUrl": "http://spdx.org/licenses/PHP-3.01.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/PHP-3.01.json", - "referenceNumber": "3", - "name": "php license v3.01", + "isOsiApproved": true, "licenseId": "PHP-3.01", + "name": "php license v3.01", + "reference": "./PHP-3.01.html", + "referenceNumber": "3", "seeAlso": [ "http://www.php.net/license/3_01.txt" - ], - "isOsiApproved": true + ] }, { - "reference": "./PSF-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/PSF-2.0.json", - "referenceNumber": "99", - "name": "python software foundation license 2.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "PSF-2.0", + "name": "python software foundation license 2.0", + "reference": "./PSF-2.0.html", + "referenceNumber": "99", "seeAlso": [ "https://opensource.org/licenses/Python-2.0" - ], - "isOsiApproved": false + ] }, { - "reference": "./Parity-6.0.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Parity-6.0.0.json", - "referenceNumber": "439", - "name": "the parity public license 6.0.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Parity-6.0.0", + "name": "the parity public license 6.0.0", + "reference": "./Parity-6.0.0.html", + "referenceNumber": "439", "seeAlso": [ "https://paritylicense.com/versions/6.0.0.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./Parity-7.0.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Parity-7.0.0.json", - "referenceNumber": "423", - "name": "the parity public license 7.0.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Parity-7.0.0", + "name": "the parity public license 7.0.0", + "reference": "./Parity-7.0.0.html", + "referenceNumber": "423", "seeAlso": [ "https://paritylicense.com/versions/7.0.0.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./Plexus.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Plexus.json", - "referenceNumber": "166", - "name": "plexus classworlds license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Plexus", + "name": "plexus classworlds license", + "reference": "./Plexus.html", + "referenceNumber": "166", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License" - ], - "isOsiApproved": false + ] }, { - "reference": "./PolyForm-Noncommercial-1.0.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.json", - "referenceNumber": "306", - "name": "polyform noncommercial license 1.0.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "PolyForm-Noncommercial-1.0.0", + "name": "polyform noncommercial license 1.0.0", + "reference": "./PolyForm-Noncommercial-1.0.0.html", + "referenceNumber": "306", "seeAlso": [ "https://polyformproject.org/licenses/noncommercial/1.0.0" - ], - "isOsiApproved": false + ] }, { - "reference": "./PolyForm-Small-Business-1.0.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/PolyForm-Small-Business-1.0.0.json", - "referenceNumber": "126", - "name": "polyform small business license 1.0.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "PolyForm-Small-Business-1.0.0", + "name": "polyform small business license 1.0.0", + "reference": "./PolyForm-Small-Business-1.0.0.html", + "referenceNumber": "126", "seeAlso": [ "https://polyformproject.org/licenses/small-business/1.0.0" - ], - "isOsiApproved": false + ] }, { - "reference": "./PostgreSQL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/PostgreSQL.json", - "referenceNumber": "12", - "name": "postgresql license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "PostgreSQL", + "name": "postgresql license", + "reference": "./PostgreSQL.html", + "referenceNumber": "12", "seeAlso": [ "http://www.postgresql.org/about/licence", "https://opensource.org/licenses/PostgreSQL" - ], - "isOsiApproved": true + ] }, { - "reference": "./Python-2.0.html", + "detailsUrl": "http://spdx.org/licenses/Python-2.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Python-2.0.json", - "referenceNumber": "425", - "name": "python license 2.0", + "isOsiApproved": true, "licenseId": "Python-2.0", + "name": "python license 2.0", + "reference": "./Python-2.0.html", + "referenceNumber": "425", "seeAlso": [ "https://opensource.org/licenses/Python-2.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./QPL-1.0.html", + "detailsUrl": "http://spdx.org/licenses/QPL-1.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/QPL-1.0.json", - "referenceNumber": "314", - "name": "q public license 1.0", + "isOsiApproved": true, "licenseId": "QPL-1.0", + "name": "q public license 1.0", + "reference": "./QPL-1.0.html", + "referenceNumber": "314", "seeAlso": [ "http://doc.qt.nokia.com/3.3/license.html", "https://opensource.org/licenses/QPL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./Qhull.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Qhull.json", - "referenceNumber": "133", - "name": "qhull license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Qhull", + "name": "qhull license", + "reference": "./Qhull.html", + "referenceNumber": "133", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Qhull" - ], - "isOsiApproved": false + ] }, { - "reference": "./RHeCos-1.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/RHeCos-1.1.json", - "referenceNumber": "67", - "name": "red hat ecos public license v1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "RHeCos-1.1", + "name": "red hat ecos public license v1.1", + "reference": "./RHeCos-1.1.html", + "referenceNumber": "67", "seeAlso": [ "http://ecos.sourceware.org/old-license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./RPL-1.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/RPL-1.1.json", - "referenceNumber": "233", - "name": "reciprocal public license 1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "RPL-1.1", + "name": "reciprocal public license 1.1", + "reference": "./RPL-1.1.html", + "referenceNumber": "233", "seeAlso": [ "https://opensource.org/licenses/RPL-1.1" - ], - "isOsiApproved": true + ] }, { - "reference": "./RPL-1.5.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/RPL-1.5.json", - "referenceNumber": "113", - "name": "reciprocal public license 1.5", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "RPL-1.5", + "name": "reciprocal public license 1.5", + "reference": "./RPL-1.5.html", + "referenceNumber": "113", "seeAlso": [ "https://opensource.org/licenses/RPL-1.5" - ], - "isOsiApproved": true + ] }, { - "reference": "./RPSL-1.0.html", + "detailsUrl": "http://spdx.org/licenses/RPSL-1.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/RPSL-1.0.json", - "referenceNumber": "58", - "name": "realnetworks public source license v1.0", + "isOsiApproved": true, "licenseId": "RPSL-1.0", + "name": "realnetworks public source license v1.0", + "reference": "./RPSL-1.0.html", + "referenceNumber": "58", "seeAlso": [ "https://helixcommunity.org/content/rpsl", "https://opensource.org/licenses/RPSL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./RSA-MD.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/RSA-MD.json", - "referenceNumber": "302", - "name": "rsa message-digest license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "RSA-MD", + "name": "rsa message-digest license", + "reference": "./RSA-MD.html", + "referenceNumber": "302", "seeAlso": [ "http://www.faqs.org/rfcs/rfc1321.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./RSCPL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/RSCPL.json", - "referenceNumber": "368", - "name": "ricoh source code public license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "RSCPL", + "name": "ricoh source code public license", + "reference": "./RSCPL.html", + "referenceNumber": "368", "seeAlso": [ "http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml", "https://opensource.org/licenses/RSCPL" - ], - "isOsiApproved": true + ] }, { - "reference": "./Rdisc.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Rdisc.json", - "referenceNumber": "350", - "name": "rdisc license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Rdisc", + "name": "rdisc license", + "reference": "./Rdisc.html", + "referenceNumber": "350", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Rdisc_License" - ], - "isOsiApproved": false + ] }, { - "reference": "./Ruby.html", + "detailsUrl": "http://spdx.org/licenses/Ruby.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Ruby.json", - "referenceNumber": "15", - "name": "ruby license", + "isOsiApproved": false, "licenseId": "Ruby", + "name": "ruby license", + "reference": "./Ruby.html", + "referenceNumber": "15", "seeAlso": [ "http://www.ruby-lang.org/en/LICENSE.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./SAX-PD.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/SAX-PD.json", - "referenceNumber": "162", - "name": "sax public domain notice", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "SAX-PD", + "name": "sax public domain notice", + "reference": "./SAX-PD.html", + "referenceNumber": "162", "seeAlso": [ "http://www.saxproject.org/copying.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./SCEA.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/SCEA.json", - "referenceNumber": "146", - "name": "scea shared source license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "SCEA", + "name": "scea shared source license", + "reference": "./SCEA.html", + "referenceNumber": "146", "seeAlso": [ "http://research.scea.com/scea_shared_source_license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./SGI-B-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/SGI-B-1.0.json", - "referenceNumber": "204", - "name": "sgi free software license b v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "SGI-B-1.0", + "name": "sgi free software license b v1.0", + "reference": "./SGI-B-1.0.html", + "referenceNumber": "204", "seeAlso": [ "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./SGI-B-1.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/SGI-B-1.1.json", - "referenceNumber": "313", - "name": "sgi free software license b v1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "SGI-B-1.1", + "name": "sgi free software license b v1.1", + "reference": "./SGI-B-1.1.html", + "referenceNumber": "313", "seeAlso": [ "http://oss.sgi.com/projects/FreeB/" - ], - "isOsiApproved": false + ] }, { - "reference": "./SGI-B-2.0.html", + "detailsUrl": "http://spdx.org/licenses/SGI-B-2.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/SGI-B-2.0.json", - "referenceNumber": "32", - "name": "sgi free software license b v2.0", + "isOsiApproved": false, "licenseId": "SGI-B-2.0", + "name": "sgi free software license b v2.0", + "reference": "./SGI-B-2.0.html", + "referenceNumber": "32", "seeAlso": [ "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf" - ], - "isOsiApproved": false + ] }, { - "reference": "./SHL-0.5.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/SHL-0.5.json", - "referenceNumber": "53", - "name": "solderpad hardware license v0.5", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "SHL-0.5", + "name": "solderpad hardware license v0.5", + "reference": "./SHL-0.5.html", + "referenceNumber": "53", "seeAlso": [ "https://solderpad.org/licenses/SHL-0.5/" - ], - "isOsiApproved": false + ] }, { - "reference": "./SHL-0.51.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/SHL-0.51.json", - "referenceNumber": "304", - "name": "solderpad hardware license, version 0.51", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "SHL-0.51", + "name": "solderpad hardware license, version 0.51", + "reference": "./SHL-0.51.html", + "referenceNumber": "304", "seeAlso": [ "https://solderpad.org/licenses/SHL-0.51/" - ], - "isOsiApproved": false + ] }, { - "reference": "./SISSL.html", + "detailsUrl": "http://spdx.org/licenses/SISSL.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/SISSL.json", - "referenceNumber": "86", - "name": "sun industry standards source license v1.1", + "isOsiApproved": true, "licenseId": "SISSL", + "name": "sun industry standards source license v1.1", + "reference": "./SISSL.html", + "referenceNumber": "86", "seeAlso": [ "http://www.openoffice.org/licenses/sissl_license.html", "https://opensource.org/licenses/SISSL" - ], - "isOsiApproved": true + ] }, { - "reference": "./SISSL-1.2.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/SISSL-1.2.json", - "referenceNumber": "68", - "name": "sun industry standards source license v1.2", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "SISSL-1.2", + "name": "sun industry standards source license v1.2", + "reference": "./SISSL-1.2.html", + "referenceNumber": "68", "seeAlso": [ "http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./SMLNJ.html", + "detailsUrl": "http://spdx.org/licenses/SMLNJ.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/SMLNJ.json", - "referenceNumber": "236", - "name": "standard ml of new jersey license", + "isOsiApproved": false, "licenseId": "SMLNJ", + "name": "standard ml of new jersey license", + "reference": "./SMLNJ.html", + "referenceNumber": "236", "seeAlso": [ "https://www.smlnj.org/license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./SMPPL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/SMPPL.json", - "referenceNumber": "114", - "name": "secure messaging protocol public license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "SMPPL", + "name": "secure messaging protocol public license", + "reference": "./SMPPL.html", + "referenceNumber": "114", "seeAlso": [ "https://github.com/dcblake/SMP/blob/master/Documentation/License.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./SNIA.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/SNIA.json", - "referenceNumber": "330", - "name": "snia public license 1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "SNIA", + "name": "snia public license 1.1", + "reference": "./SNIA.html", + "referenceNumber": "330", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License" - ], - "isOsiApproved": false + ] }, { - "reference": "./SPL-1.0.html", + "detailsUrl": "http://spdx.org/licenses/SPL-1.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/SPL-1.0.json", - "referenceNumber": "268", - "name": "sun public license v1.0", + "isOsiApproved": true, "licenseId": "SPL-1.0", + "name": "sun public license v1.0", + "reference": "./SPL-1.0.html", + "referenceNumber": "268", "seeAlso": [ "https://opensource.org/licenses/SPL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./SSH-OpenSSH.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/SSH-OpenSSH.json", - "referenceNumber": "23", - "name": "ssh openssh license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "SSH-OpenSSH", + "name": "ssh openssh license", + "reference": "./SSH-OpenSSH.html", + "referenceNumber": "23", "seeAlso": [ "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/LICENCE#L10" - ], - "isOsiApproved": false + ] }, { - "reference": "./SSH-short.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/SSH-short.json", - "referenceNumber": "73", - "name": "ssh short notice", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "SSH-short", + "name": "ssh short notice", + "reference": "./SSH-short.html", + "referenceNumber": "73", "seeAlso": [ "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/pathnames.h", "http://web.mit.edu/kolya/.f/root/athena.mit.edu/sipb.mit.edu/project/openssh/OldFiles/src/openssh-2.9.9p2/ssh-add.1", "https://joinup.ec.europa.eu/svn/lesoll/trunk/italc/lib/src/dsa_key.cpp" - ], - "isOsiApproved": false + ] }, { - "reference": "./SSPL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/SSPL-1.0.json", - "referenceNumber": "362", - "name": "server side public license, v 1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "SSPL-1.0", + "name": "server side public license, v 1", + "reference": "./SSPL-1.0.html", + "referenceNumber": "362", "seeAlso": [ "https://www.mongodb.com/licensing/server-side-public-license" - ], - "isOsiApproved": false + ] }, { - "reference": "./SWL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/SWL.json", - "referenceNumber": "101", - "name": "scheme widget library (swl) software license agreement", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "SWL", + "name": "scheme widget library (swl) software license agreement", + "reference": "./SWL.html", + "referenceNumber": "101", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/SWL" - ], - "isOsiApproved": false + ] }, { - "reference": "./Saxpath.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Saxpath.json", - "referenceNumber": "35", - "name": "saxpath license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Saxpath", + "name": "saxpath license", + "reference": "./Saxpath.html", + "referenceNumber": "35", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Saxpath_License" - ], - "isOsiApproved": false + ] }, { - "reference": "./Sendmail.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Sendmail.json", - "referenceNumber": "318", - "name": "sendmail license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Sendmail", + "name": "sendmail license", + "reference": "./Sendmail.html", + "referenceNumber": "318", "seeAlso": [ "http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf", "https://web.archive.org/web/20160322142305/https://www.sendmail.com/pdfs/open_source/sendmail_license.pdf" - ], - "isOsiApproved": false + ] }, { - "reference": "./Sendmail-8.23.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Sendmail-8.23.json", - "referenceNumber": "189", - "name": "sendmail license 8.23", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Sendmail-8.23", + "name": "sendmail license 8.23", + "reference": "./Sendmail-8.23.html", + "referenceNumber": "189", "seeAlso": [ "https://www.proofpoint.com/sites/default/files/sendmail-license.pdf", "https://web.archive.org/web/20181003101040/https://www.proofpoint.com/sites/default/files/sendmail-license.pdf" - ], - "isOsiApproved": false + ] }, { - "reference": "./SimPL-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/SimPL-2.0.json", - "referenceNumber": "271", - "name": "simple public license 2.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "SimPL-2.0", + "name": "simple public license 2.0", + "reference": "./SimPL-2.0.html", + "referenceNumber": "271", "seeAlso": [ "https://opensource.org/licenses/SimPL-2.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./Sleepycat.html", + "detailsUrl": "http://spdx.org/licenses/Sleepycat.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Sleepycat.json", - "referenceNumber": "61", - "name": "sleepycat license", + "isOsiApproved": true, "licenseId": "Sleepycat", + "name": "sleepycat license", + "reference": "./Sleepycat.html", + "referenceNumber": "61", "seeAlso": [ "https://opensource.org/licenses/Sleepycat" - ], - "isOsiApproved": true + ] }, { - "reference": "./Spencer-86.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Spencer-86.json", - "referenceNumber": "199", - "name": "spencer license 86", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Spencer-86", + "name": "spencer license 86", + "reference": "./Spencer-86.html", + "referenceNumber": "199", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License" - ], - "isOsiApproved": false + ] }, { - "reference": "./Spencer-94.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Spencer-94.json", - "referenceNumber": "230", - "name": "spencer license 94", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Spencer-94", + "name": "spencer license 94", + "reference": "./Spencer-94.html", + "referenceNumber": "230", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License" - ], - "isOsiApproved": false + ] }, { - "reference": "./Spencer-99.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Spencer-99.json", - "referenceNumber": "70", - "name": "spencer license 99", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Spencer-99", + "name": "spencer license 99", + "reference": "./Spencer-99.html", + "referenceNumber": "70", "seeAlso": [ "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c" - ], - "isOsiApproved": false + ] }, { - "reference": "./StandardML-NJ.html", + "detailsUrl": "http://spdx.org/licenses/StandardML-NJ.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/StandardML-NJ.json", - "referenceNumber": "310", - "name": "standard ml of new jersey license", + "isOsiApproved": false, "licenseId": "StandardML-NJ", + "name": "standard ml of new jersey license", + "reference": "./StandardML-NJ.html", + "referenceNumber": "310", "seeAlso": [ "http://www.smlnj.org//license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./SugarCRM-1.1.3.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/SugarCRM-1.1.3.json", - "referenceNumber": "371", - "name": "sugarcrm public license v1.1.3", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "SugarCRM-1.1.3", + "name": "sugarcrm public license v1.1.3", + "reference": "./SugarCRM-1.1.3.html", + "referenceNumber": "371", "seeAlso": [ "http://www.sugarcrm.com/crm/SPL" - ], - "isOsiApproved": false + ] }, { - "reference": "./TAPR-OHL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/TAPR-OHL-1.0.json", - "referenceNumber": "10", - "name": "tapr open hardware license v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "TAPR-OHL-1.0", + "name": "tapr open hardware license v1.0", + "reference": "./TAPR-OHL-1.0.html", + "referenceNumber": "10", "seeAlso": [ "https://www.tapr.org/OHL" - ], - "isOsiApproved": false + ] }, { - "reference": "./TCL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/TCL.json", - "referenceNumber": "59", - "name": "tcl/tk license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "TCL", + "name": "tcl/tk license", + "reference": "./TCL.html", + "referenceNumber": "59", "seeAlso": [ "http://www.tcl.tk/software/tcltk/license.html", "https://fedoraproject.org/wiki/Licensing/TCL" - ], - "isOsiApproved": false + ] }, { - "reference": "./TCP-wrappers.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/TCP-wrappers.json", - "referenceNumber": "253", - "name": "tcp wrappers license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "TCP-wrappers", + "name": "tcp wrappers license", + "reference": "./TCP-wrappers.html", + "referenceNumber": "253", "seeAlso": [ "http://rc.quest.com/topics/openssh/license.php#tcpwrappers" - ], - "isOsiApproved": false + ] }, { - "reference": "./TMate.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/TMate.json", - "referenceNumber": "435", - "name": "tmate open source license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "TMate", + "name": "tmate open source license", + "reference": "./TMate.html", + "referenceNumber": "435", "seeAlso": [ "http://svnkit.com/license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./TORQUE-1.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/TORQUE-1.1.json", - "referenceNumber": "203", - "name": "torque v2.5+ software license v1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "TORQUE-1.1", + "name": "torque v2.5+ software license v1.1", + "reference": "./TORQUE-1.1.html", + "referenceNumber": "203", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/TORQUEv1.1" - ], - "isOsiApproved": false + ] }, { - "reference": "./TOSL.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/TOSL.json", - "referenceNumber": "272", - "name": "trusster open source license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "TOSL", + "name": "trusster open source license", + "reference": "./TOSL.html", + "referenceNumber": "272", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/TOSL" - ], - "isOsiApproved": false + ] }, { - "reference": "./TU-Berlin-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/TU-Berlin-1.0.json", - "referenceNumber": "403", - "name": "technische universitaet berlin license 1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "TU-Berlin-1.0", + "name": "technische universitaet berlin license 1.0", + "reference": "./TU-Berlin-1.0.html", + "referenceNumber": "403", "seeAlso": [ "https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT" - ], - "isOsiApproved": false + ] }, { - "reference": "./TU-Berlin-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/TU-Berlin-2.0.json", - "referenceNumber": "424", - "name": "technische universitaet berlin license 2.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "TU-Berlin-2.0", + "name": "technische universitaet berlin license 2.0", + "reference": "./TU-Berlin-2.0.html", + "referenceNumber": "424", "seeAlso": [ "https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./UCL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/UCL-1.0.json", - "referenceNumber": "316", - "name": "upstream compatibility license v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "UCL-1.0", + "name": "upstream compatibility license v1.0", + "reference": "./UCL-1.0.html", + "referenceNumber": "316", "seeAlso": [ "https://opensource.org/licenses/UCL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./UPL-1.0.html", + "detailsUrl": "http://spdx.org/licenses/UPL-1.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/UPL-1.0.json", - "referenceNumber": "153", - "name": "universal permissive license v1.0", + "isOsiApproved": true, "licenseId": "UPL-1.0", + "name": "universal permissive license v1.0", + "reference": "./UPL-1.0.html", + "referenceNumber": "153", "seeAlso": [ "https://opensource.org/licenses/UPL" - ], - "isOsiApproved": true + ] }, { - "reference": "./Unicode-DFS-2015.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Unicode-DFS-2015.json", - "referenceNumber": "282", - "name": "unicode license agreement - data files and software (2015)", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Unicode-DFS-2015", + "name": "unicode license agreement - data files and software (2015)", + "reference": "./Unicode-DFS-2015.html", + "referenceNumber": "282", "seeAlso": [ "https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./Unicode-DFS-2016.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Unicode-DFS-2016.json", - "referenceNumber": "401", - "name": "unicode license agreement - data files and software (2016)", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Unicode-DFS-2016", + "name": "unicode license agreement - data files and software (2016)", + "reference": "./Unicode-DFS-2016.html", + "referenceNumber": "401", "seeAlso": [ "http://www.unicode.org/copyright.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./Unicode-TOU.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Unicode-TOU.json", - "referenceNumber": "17", - "name": "unicode terms of use", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Unicode-TOU", + "name": "unicode terms of use", + "reference": "./Unicode-TOU.html", + "referenceNumber": "17", "seeAlso": [ "http://www.unicode.org/copyright.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./Unlicense.html", + "detailsUrl": "http://spdx.org/licenses/Unlicense.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Unlicense.json", - "referenceNumber": "185", - "name": "the unlicense", + "isOsiApproved": true, "licenseId": "Unlicense", + "name": "the unlicense", + "reference": "./Unlicense.html", + "referenceNumber": "185", "seeAlso": [ "https://unlicense.org/" - ], - "isOsiApproved": true + ] }, { - "reference": "./VOSTROM.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/VOSTROM.json", - "referenceNumber": "382", - "name": "vostrom public license for open source", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "VOSTROM", + "name": "vostrom public license for open source", + "reference": "./VOSTROM.html", + "referenceNumber": "382", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/VOSTROM" - ], - "isOsiApproved": false + ] }, { - "reference": "./VSL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/VSL-1.0.json", - "referenceNumber": "421", - "name": "vovida software license v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "VSL-1.0", + "name": "vovida software license v1.0", + "reference": "./VSL-1.0.html", + "referenceNumber": "421", "seeAlso": [ "https://opensource.org/licenses/VSL-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./Vim.html", + "detailsUrl": "http://spdx.org/licenses/Vim.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Vim.json", - "referenceNumber": "223", - "name": "vim license", + "isOsiApproved": false, "licenseId": "Vim", + "name": "vim license", + "reference": "./Vim.html", + "referenceNumber": "223", "seeAlso": [ "http://vimdoc.sourceforge.net/htmldoc/uganda.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./W3C.html", + "detailsUrl": "http://spdx.org/licenses/W3C.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/W3C.json", - "referenceNumber": "115", - "name": "w3c software notice and license (2002-12-31)", + "isOsiApproved": true, "licenseId": "W3C", + "name": "w3c software notice and license (2002-12-31)", + "reference": "./W3C.html", + "referenceNumber": "115", "seeAlso": [ "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html", "https://opensource.org/licenses/W3C" - ], - "isOsiApproved": true + ] }, { - "reference": "./W3C-19980720.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/W3C-19980720.json", - "referenceNumber": "288", - "name": "w3c software notice and license (1998-07-20)", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "W3C-19980720", + "name": "w3c software notice and license (1998-07-20)", + "reference": "./W3C-19980720.html", + "referenceNumber": "288", "seeAlso": [ "http://www.w3.org/Consortium/Legal/copyright-software-19980720.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./W3C-20150513.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/W3C-20150513.json", - "referenceNumber": "119", - "name": "w3c software notice and document license (2015-05-13)", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "W3C-20150513", + "name": "w3c software notice and document license (2015-05-13)", + "reference": "./W3C-20150513.html", + "referenceNumber": "119", "seeAlso": [ "https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" - ], - "isOsiApproved": false + ] }, { - "reference": "./WTFPL.html", + "detailsUrl": "http://spdx.org/licenses/WTFPL.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/WTFPL.json", - "referenceNumber": "21", - "name": "do what the f*ck you want to public license", + "isOsiApproved": false, "licenseId": "WTFPL", + "name": "do what the f*ck you want to public license", + "reference": "./WTFPL.html", + "referenceNumber": "21", "seeAlso": [ "http://www.wtfpl.net/about/", "http://sam.zoy.org/wtfpl/COPYING" - ], - "isOsiApproved": false + ] }, { - "reference": "./Watcom-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Watcom-1.0.json", - "referenceNumber": "150", - "name": "sybase open watcom public license 1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "Watcom-1.0", + "name": "sybase open watcom public license 1.0", + "reference": "./Watcom-1.0.html", + "referenceNumber": "150", "seeAlso": [ "https://opensource.org/licenses/Watcom-1.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./Wsuipa.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Wsuipa.json", - "referenceNumber": "276", - "name": "wsuipa license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Wsuipa", + "name": "wsuipa license", + "reference": "./Wsuipa.html", + "referenceNumber": "276", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Wsuipa" - ], - "isOsiApproved": false + ] }, { - "reference": "./X11.html", + "detailsUrl": "http://spdx.org/licenses/X11.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/X11.json", - "referenceNumber": "107", - "name": "x11 license", + "isOsiApproved": false, "licenseId": "X11", + "name": "x11 license", + "reference": "./X11.html", + "referenceNumber": "107", "seeAlso": [ "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3" - ], - "isOsiApproved": false + ] }, { - "reference": "./XFree86-1.1.html", + "detailsUrl": "http://spdx.org/licenses/XFree86-1.1.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/XFree86-1.1.json", - "referenceNumber": "165", - "name": "xfree86 license 1.1", + "isOsiApproved": false, "licenseId": "XFree86-1.1", + "name": "xfree86 license 1.1", + "reference": "./XFree86-1.1.html", + "referenceNumber": "165", "seeAlso": [ "http://www.xfree86.org/current/LICENSE4.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./XSkat.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/XSkat.json", - "referenceNumber": "89", - "name": "xskat license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "XSkat", + "name": "xskat license", + "reference": "./XSkat.html", + "referenceNumber": "89", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/XSkat_License" - ], - "isOsiApproved": false + ] }, { - "reference": "./Xerox.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Xerox.json", - "referenceNumber": "243", - "name": "xerox license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Xerox", + "name": "xerox license", + "reference": "./Xerox.html", + "referenceNumber": "243", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Xerox" - ], - "isOsiApproved": false + ] }, { - "reference": "./Xnet.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Xnet.json", - "referenceNumber": "341", - "name": "x.net license", + "isDeprecatedLicenseId": false, + "isOsiApproved": true, "licenseId": "Xnet", + "name": "x.net license", + "reference": "./Xnet.html", + "referenceNumber": "341", "seeAlso": [ "https://opensource.org/licenses/Xnet" - ], - "isOsiApproved": true + ] }, { - "reference": "./YPL-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/YPL-1.0.json", - "referenceNumber": "317", - "name": "yahoo! public license v1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "YPL-1.0", + "name": "yahoo! public license v1.0", + "reference": "./YPL-1.0.html", + "referenceNumber": "317", "seeAlso": [ "http://www.zimbra.com/license/yahoo_public_license_1.0.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./YPL-1.1.html", + "detailsUrl": "http://spdx.org/licenses/YPL-1.1.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/YPL-1.1.json", - "referenceNumber": "42", - "name": "yahoo! public license v1.1", + "isOsiApproved": false, "licenseId": "YPL-1.1", + "name": "yahoo! public license v1.1", + "reference": "./YPL-1.1.html", + "referenceNumber": "42", "seeAlso": [ "http://www.zimbra.com/license/yahoo_public_license_1.1.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./ZPL-1.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/ZPL-1.1.json", - "referenceNumber": "93", - "name": "zope public license 1.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "ZPL-1.1", + "name": "zope public license 1.1", + "reference": "./ZPL-1.1.html", + "referenceNumber": "93", "seeAlso": [ "http://old.zope.org/Resources/License/ZPL-1.1" - ], - "isOsiApproved": false + ] }, { - "reference": "./ZPL-2.0.html", + "detailsUrl": "http://spdx.org/licenses/ZPL-2.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/ZPL-2.0.json", - "referenceNumber": "120", - "name": "zope public license 2.0", + "isOsiApproved": true, "licenseId": "ZPL-2.0", + "name": "zope public license 2.0", + "reference": "./ZPL-2.0.html", + "referenceNumber": "120", "seeAlso": [ "http://old.zope.org/Resources/License/ZPL-2.0", "https://opensource.org/licenses/ZPL-2.0" - ], - "isOsiApproved": true + ] }, { - "reference": "./ZPL-2.1.html", + "detailsUrl": "http://spdx.org/licenses/ZPL-2.1.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/ZPL-2.1.json", - "referenceNumber": "399", - "name": "zope public license 2.1", + "isOsiApproved": false, "licenseId": "ZPL-2.1", + "name": "zope public license 2.1", + "reference": "./ZPL-2.1.html", + "referenceNumber": "399", "seeAlso": [ "http://old.zope.org/Resources/ZPL/" - ], - "isOsiApproved": false + ] }, { - "reference": "./Zed.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Zed.json", - "referenceNumber": "122", - "name": "zed license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Zed", + "name": "zed license", + "reference": "./Zed.html", + "referenceNumber": "122", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Zed" - ], - "isOsiApproved": false + ] }, { - "reference": "./Zend-2.0.html", + "detailsUrl": "http://spdx.org/licenses/Zend-2.0.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Zend-2.0.json", - "referenceNumber": "404", - "name": "zend license v2.0", + "isOsiApproved": false, "licenseId": "Zend-2.0", + "name": "zend license v2.0", + "reference": "./Zend-2.0.html", + "referenceNumber": "404", "seeAlso": [ "https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./Zimbra-1.3.html", + "detailsUrl": "http://spdx.org/licenses/Zimbra-1.3.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Zimbra-1.3.json", - "referenceNumber": "188", - "name": "zimbra public license v1.3", + "isOsiApproved": false, "licenseId": "Zimbra-1.3", + "name": "zimbra public license v1.3", + "reference": "./Zimbra-1.3.html", + "referenceNumber": "188", "seeAlso": [ "http://web.archive.org/web/20100302225219/http://www.zimbra.com/license/zimbra-public-license-1-3.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./Zimbra-1.4.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/Zimbra-1.4.json", - "referenceNumber": "416", - "name": "zimbra public license v1.4", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "Zimbra-1.4", + "name": "zimbra public license v1.4", + "reference": "./Zimbra-1.4.html", + "referenceNumber": "416", "seeAlso": [ "http://www.zimbra.com/legal/zimbra-public-license-1-4" - ], - "isOsiApproved": false + ] }, { - "reference": "./Zlib.html", + "detailsUrl": "http://spdx.org/licenses/Zlib.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/Zlib.json", - "referenceNumber": "47", - "name": "zlib license", + "isOsiApproved": true, "licenseId": "Zlib", + "name": "zlib license", + "reference": "./Zlib.html", + "referenceNumber": "47", "seeAlso": [ "http://www.zlib.net/zlib_license.html", "https://opensource.org/licenses/Zlib" - ], - "isOsiApproved": true + ] }, { - "reference": "./blessing.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/blessing.json", - "referenceNumber": "329", - "name": "sqlite blessing", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "blessing", + "name": "sqlite blessing", + "reference": "./blessing.html", + "referenceNumber": "329", "seeAlso": [ "https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln=4-9", "https://sqlite.org/src/artifact/df5091916dbb40e6" - ], - "isOsiApproved": false + ] }, { - "reference": "./bzip2-1.0.5.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/bzip2-1.0.5.json", - "referenceNumber": "201", - "name": "bzip2 and libbzip2 license v1.0.5", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "bzip2-1.0.5", + "name": "bzip2 and libbzip2 license v1.0.5", + "reference": "./bzip2-1.0.5.html", + "referenceNumber": "201", "seeAlso": [ "https://sourceware.org/bzip2/1.0.5/bzip2-manual-1.0.5.html", "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./bzip2-1.0.6.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/bzip2-1.0.6.json", - "referenceNumber": "75", - "name": "bzip2 and libbzip2 license v1.0.6", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "bzip2-1.0.6", + "name": "bzip2 and libbzip2 license v1.0.6", + "reference": "./bzip2-1.0.6.html", + "referenceNumber": "75", "seeAlso": [ "https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.6", "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./copyleft-next-0.3.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/copyleft-next-0.3.0.json", - "referenceNumber": "340", - "name": "copyleft-next 0.3.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "copyleft-next-0.3.0", + "name": "copyleft-next 0.3.0", + "reference": "./copyleft-next-0.3.0.html", + "referenceNumber": "340", "seeAlso": [ "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.0" - ], - "isOsiApproved": false + ] }, { - "reference": "./copyleft-next-0.3.1.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/copyleft-next-0.3.1.json", - "referenceNumber": "409", - "name": "copyleft-next 0.3.1", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "copyleft-next-0.3.1", + "name": "copyleft-next 0.3.1", + "reference": "./copyleft-next-0.3.1.html", + "referenceNumber": "409", "seeAlso": [ "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.1" - ], - "isOsiApproved": false + ] }, { - "reference": "./curl.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/curl.json", - "referenceNumber": "342", - "name": "curl license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "curl", + "name": "curl license", + "reference": "./curl.html", + "referenceNumber": "342", "seeAlso": [ "https://github.com/bagder/curl/blob/master/COPYING" - ], - "isOsiApproved": false + ] }, { - "reference": "./diffmark.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/diffmark.json", - "referenceNumber": "430", - "name": "diffmark license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "diffmark", + "name": "diffmark license", + "reference": "./diffmark.html", + "referenceNumber": "430", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/diffmark" - ], - "isOsiApproved": false + ] }, { - "reference": "./dvipdfm.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/dvipdfm.json", - "referenceNumber": "20", - "name": "dvipdfm license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "dvipdfm", + "name": "dvipdfm license", + "reference": "./dvipdfm.html", + "referenceNumber": "20", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/dvipdfm" - ], - "isOsiApproved": false + ] }, { - "reference": "./eCos-2.0.html", + "detailsUrl": "http://spdx.org/licenses/eCos-2.0.json", "isDeprecatedLicenseId": true, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/eCos-2.0.json", - "referenceNumber": "295", - "name": "ecos license version 2.0", + "isOsiApproved": false, "licenseId": "eCos-2.0", + "name": "ecos license version 2.0", + "reference": "./eCos-2.0.html", + "referenceNumber": "295", "seeAlso": [ "https://www.gnu.org/licenses/ecos-license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./eGenix.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/eGenix.json", - "referenceNumber": "231", - "name": "egenix.com public license 1.1.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "eGenix", + "name": "egenix.com public license 1.1.0", + "reference": "./eGenix.html", + "referenceNumber": "231", "seeAlso": [ "http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf", "https://fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0" - ], - "isOsiApproved": false + ] }, { - "reference": "./etalab-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/etalab-2.0.json", - "referenceNumber": "281", - "name": "etalab open license 2.0", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "etalab-2.0", + "name": "etalab open license 2.0", + "reference": "./etalab-2.0.html", + "referenceNumber": "281", "seeAlso": [ "https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf", "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE" - ], - "isOsiApproved": false + ] }, { - "reference": "./gSOAP-1.3b.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/gSOAP-1.3b.json", - "referenceNumber": "178", - "name": "gsoap public license v1.3b", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "gSOAP-1.3b", + "name": "gsoap public license v1.3b", + "reference": "./gSOAP-1.3b.html", + "referenceNumber": "178", "seeAlso": [ "http://www.cs.fsu.edu/~engelen/license.html" - ], - "isOsiApproved": false + ] }, { - "reference": "./gnuplot.html", + "detailsUrl": "http://spdx.org/licenses/gnuplot.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/gnuplot.json", - "referenceNumber": "414", - "name": "gnuplot license", + "isOsiApproved": false, "licenseId": "gnuplot", + "name": "gnuplot license", + "reference": "./gnuplot.html", + "referenceNumber": "414", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Gnuplot" - ], - "isOsiApproved": false + ] }, { - "reference": "./iMatix.html", + "detailsUrl": "http://spdx.org/licenses/iMatix.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/iMatix.json", - "referenceNumber": "190", - "name": "imatix standard function library agreement", + "isOsiApproved": false, "licenseId": "iMatix", + "name": "imatix standard function library agreement", + "reference": "./iMatix.html", + "referenceNumber": "190", "seeAlso": [ "http://legacy.imatix.com/html/sfl/sfl4.htm#license" - ], - "isOsiApproved": false + ] }, { - "reference": "./libpng-2.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/libpng-2.0.json", - "referenceNumber": "111", - "name": "png reference library version 2", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "libpng-2.0", + "name": "png reference library version 2", + "reference": "./libpng-2.0.html", + "referenceNumber": "111", "seeAlso": [ "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt" - ], - "isOsiApproved": false + ] }, { - "reference": "./libselinux-1.0.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/libselinux-1.0.json", - "referenceNumber": "19", - "name": "libselinux public domain notice", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "libselinux-1.0", + "name": "libselinux public domain notice", + "reference": "./libselinux-1.0.html", + "referenceNumber": "19", "seeAlso": [ "https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE" - ], - "isOsiApproved": false + ] }, { - "reference": "./libtiff.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/libtiff.json", - "referenceNumber": "440", - "name": "libtiff license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "libtiff", + "name": "libtiff license", + "reference": "./libtiff.html", + "referenceNumber": "440", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/libtiff" - ], - "isOsiApproved": false + ] }, { - "reference": "./mpich2.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/mpich2.json", - "referenceNumber": "66", - "name": "mpich2 license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "mpich2", + "name": "mpich2 license", + "reference": "./mpich2.html", + "referenceNumber": "66", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/MIT" - ], - "isOsiApproved": false + ] }, { - "reference": "./psfrag.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/psfrag.json", - "referenceNumber": "441", - "name": "psfrag license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "psfrag", + "name": "psfrag license", + "reference": "./psfrag.html", + "referenceNumber": "441", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/psfrag" - ], - "isOsiApproved": false + ] }, { - "reference": "./psutils.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/psutils.json", - "referenceNumber": "300", - "name": "psutils license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "psutils", + "name": "psutils license", + "reference": "./psutils.html", + "referenceNumber": "300", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/psutils" - ], - "isOsiApproved": false + ] }, { - "reference": "./wxWindows.html", - "isDeprecatedLicenseId": true, "detailsUrl": "http://spdx.org/licenses/wxWindows.json", - "referenceNumber": "264", - "name": "wxwindows library license", + "isDeprecatedLicenseId": true, + "isOsiApproved": false, "licenseId": "wxWindows", + "name": "wxwindows library license", + "reference": "./wxWindows.html", + "referenceNumber": "264", "seeAlso": [ "https://opensource.org/licenses/WXwindows" - ], - "isOsiApproved": false + ] }, { - "reference": "./xinetd.html", + "detailsUrl": "http://spdx.org/licenses/xinetd.json", "isDeprecatedLicenseId": false, "isFsfLibre": true, - "detailsUrl": "http://spdx.org/licenses/xinetd.json", - "referenceNumber": "432", - "name": "xinetd license", + "isOsiApproved": false, "licenseId": "xinetd", + "name": "xinetd license", + "reference": "./xinetd.html", + "referenceNumber": "432", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/Xinetd_License" - ], - "isOsiApproved": false + ] }, { - "reference": "./xpp.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/xpp.json", - "referenceNumber": "104", - "name": "xpp license", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "xpp", + "name": "xpp license", + "reference": "./xpp.html", + "referenceNumber": "104", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/xpp" - ], - "isOsiApproved": false + ] }, { - "reference": "./zlib-acknowledgement.html", - "isDeprecatedLicenseId": false, "detailsUrl": "http://spdx.org/licenses/zlib-acknowledgement.json", - "referenceNumber": "266", - "name": "zlib/libpng license with acknowledgement", + "isDeprecatedLicenseId": false, + "isOsiApproved": false, "licenseId": "zlib-acknowledgement", + "name": "zlib/libpng license with acknowledgement", + "reference": "./zlib-acknowledgement.html", + "referenceNumber": "266", "seeAlso": [ "https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement" - ], - "isOsiApproved": false + ] } ] diff --git a/fuji_server/data/linked_vocab.json b/fuji_server/data/linked_vocab.json index 62705b69..34f49637 100644 --- a/fuji_server/data/linked_vocab.json +++ b/fuji_server/data/linked_vocab.json @@ -1,6284 +1,6284 @@ [ { - "title": "SAN (Semantic Actuator Network)", "namespace": "http://www.irit.fr/recherches/MELODI/ontologies/SAN#", - "uri": "http://www.irit.fr/recherches/MELODI/ontologies/SAN", - "prefix": "SAN" + "prefix": "SAN", + "title": "SAN (Semantic Actuator Network)", + "uri": "http://www.irit.fr/recherches/MELODI/ontologies/SAN" }, { - "title": "Location Ontology (ArCo network)", "namespace": "https://w3id.org/arco/ontology/location/", - "uri": "https://w3id.org/arco/ontology/location", - "prefix": "a-loc" + "prefix": "a-loc", + "title": "Location Ontology (ArCo network)", + "uri": "https://w3id.org/arco/ontology/location" }, { - "title": "Accomodation Ontology", "namespace": "http://purl.org/acco/ns#", - "uri": "http://purl.org/acco/ns", - "prefix": "acco" + "prefix": "acco", + "title": "Accomodation Ontology", + "uri": "http://purl.org/acco/ns" }, { - "title": "Basic Access Control ontology", "namespace": "http://www.w3.org/ns/auth/acl#", - "uri": "http://www.w3.org/ns/auth/acl", - "prefix": "acl" + "prefix": "acl", + "title": "Basic Access Control ontology", + "uri": "http://www.w3.org/ns/auth/acl" }, { - "title": "ACM Classification Ontology", "namespace": "http://acm.rkbexplorer.com/ontologies/acm#", - "uri": "http://www.rkbexplorer.com/ontologies/acm", - "prefix": "acm" + "prefix": "acm", + "title": "ACM Classification Ontology", + "uri": "http://www.rkbexplorer.com/ontologies/acm" }, { - "title": "Agent Certification Ontology", "namespace": "http://privatealpha.com/ontology/certification/1#", - "uri": "http://privatealpha.com/ontology/certification/1#", - "prefix": "acrt" + "prefix": "acrt", + "title": "Agent Certification Ontology", + "uri": "http://privatealpha.com/ontology/certification/1#" }, { - "title": "Asset Description Metadata Schema", "namespace": "http://www.w3.org/ns/adms#", - "uri": "http://www.w3.org/ns/adms", - "prefix": "adms" + "prefix": "adms", + "title": "Asset Description Metadata Schema", + "uri": "http://www.w3.org/ns/adms" }, { - "title": "Audio Features Ontology", "namespace": "http://purl.org/ontology/af/", - "uri": "http://purl.org/ontology/af/", - "prefix": "af" + "prefix": "af", + "title": "Audio Features Ontology", + "uri": "http://purl.org/ontology/af/" }, { - "title": "AGLS Metadata Terms", "namespace": "http://www.agls.gov.au/agls/terms/", - "uri": "http://www.agls.gov.au/agls/terms", - "prefix": "agls" + "prefix": "agls", + "title": "AGLS Metadata Terms", + "uri": "http://www.agls.gov.au/agls/terms" }, { - "title": "Agreements ontology", "namespace": "http://promsns.org/def/agr#", - "uri": "http://promsns.org/def/agr", - "prefix": "agr" + "prefix": "agr", + "title": "Agreements ontology", + "uri": "http://promsns.org/def/agr" }, { - "title": "Agent Relationship Ontology", "namespace": "http://d-nb.info/standards/elementset/agrelon#", - "uri": "http://d-nb.info/standards/elementset/agrelon", - "prefix": "agrelon" + "prefix": "agrelon", + "title": "Agent Relationship Ontology", + "uri": "http://d-nb.info/standards/elementset/agrelon" }, { - "title": "Academic Institution Internal Structure Ontology", "namespace": "http://purl.org/vocab/aiiso/schema#", - "uri": "http://purl.org/vocab/aiiso/schema", - "prefix": "aiiso" + "prefix": "aiiso", + "title": "Academic Institution Internal Structure Ontology", + "uri": "http://purl.org/vocab/aiiso/schema" }, { - "title": "Alliance of Information and Referral Services (AIRS) Vocabulary", "namespace": "https://raw.githubusercontent.com/airs-linked-data/lov/latest/src/airs_vocabulary.ttl#", - "uri": "https://raw.githubusercontent.com/airs-linked-data/lov/latest/src/airs_vocabulary.ttl#", - "prefix": "airs" + "prefix": "airs", + "title": "Alliance of Information and Referral Services (AIRS) Vocabulary", + "uri": "https://raw.githubusercontent.com/airs-linked-data/lov/latest/src/airs_vocabulary.ttl#" }, { - "title": "Algorithms Ontology", "namespace": "http://securitytoolbox.appspot.com/securityAlgorithms#", - "uri": "http://securitytoolbox.appspot.com/securityAlgorithms#", - "prefix": "algo" + "prefix": "algo", + "title": "Algorithms Ontology", + "uri": "http://securitytoolbox.appspot.com/securityAlgorithms#" }, { - "title": "OSLC Asset Management Vocabulary", "namespace": "http://open-services.net/ns/asset#", - "uri": "http://open-services.net/ns/asset#", - "prefix": "am" + "prefix": "am", + "title": "OSLC Asset Management Vocabulary", + "uri": "http://open-services.net/ns/asset#" }, { - "title": "AutomationML Ontology", "namespace": "https://w3id.org/i40/aml#", - "uri": "https://w3id.org/i40/aml", - "prefix": "aml" + "prefix": "aml", + "title": "AutomationML Ontology", + "uri": "https://w3id.org/i40/aml" }, { - "title": "AMLO-core vocabulary", "namespace": "http://w3id.org/amlo/core#", - "uri": "http://w3id.org/amlo/core", - "prefix": "amlo-core" + "prefix": "amlo-core", + "title": "AMLO-core vocabulary", + "uri": "http://w3id.org/amlo/core" }, { - "title": "Association Ontology", "namespace": "http://purl.org/ontology/ao/core#", - "uri": "http://purl.org/ontology/ao/core#", - "prefix": "ao" + "prefix": "ao", + "title": "Association Ontology", + "uri": "http://purl.org/ontology/ao/core#" }, { - "title": "Linked Data API Vocabulary", "namespace": "http://purl.org/linked-data/api/vocab#", - "uri": "http://purl.org/linked-data/api/vocab#", - "prefix": "api" + "prefix": "api", + "title": "Linked Data API Vocabulary", + "uri": "http://purl.org/linked-data/api/vocab#" }, { - "title": "The vocabulary for Co-creation Events based on Open Data", "namespace": "http://semweb.mmlab.be/ns/apps4X#", - "uri": "http://semweb.mmlab.be/ns/apps4X", - "prefix": "apps4X" + "prefix": "apps4X", + "title": "The vocabulary for Co-creation Events based on Open Data", + "uri": "http://semweb.mmlab.be/ns/apps4X" }, { - "title": "Archival collections ontology", "namespace": "http://purl.org/archival/vocab/arch#", - "uri": "http://purl.org/archival/vocab/arch", - "prefix": "arch" + "prefix": "arch", + "title": "Archival collections ontology", + "uri": "http://purl.org/archival/vocab/arch" }, { - "title": "Core Ontology (ArCo network)", "namespace": "https://w3id.org/arco/ontology/core/", - "uri": "https://w3id.org/arco/ontology/core", - "prefix": "arco" + "prefix": "arco", + "title": "Core Ontology (ArCo network)", + "uri": "https://w3id.org/arco/ontology/core" }, { - "title": "Arpenteur Ontology", "namespace": "http://www.arpenteur.org/ontology/Arpenteur.owl#", - "uri": "http://www.arpenteur.org/ontology/Arpenteur.owl", - "prefix": "arp" + "prefix": "arp", + "title": "Arpenteur Ontology", + "uri": "http://www.arpenteur.org/ontology/Arpenteur.owl" }, { - "title": "Atom Syndication Ontology", "namespace": "http://bblfish.net/work/atom-owl/2006-06-06/#", - "uri": "http://bblfish.net/work/atom-owl/2006-06-06/", - "prefix": "awol" + "prefix": "awol", + "title": "Atom Syndication Ontology", + "uri": "http://bblfish.net/work/atom-owl/2006-06-06/" }, { - "title": "Ontology for Meteorological sensors", "namespace": "http://purl.oclc.org/NET/ssnx/meteo/aws#", - "uri": "http://purl.oclc.org/NET/ssnx/meteo/aws", - "prefix": "aws" + "prefix": "aws", + "title": "Ontology for Meteorological sensors", + "uri": "http://purl.oclc.org/NET/ssnx/meteo/aws" }, { - "title": "Vocabulary for the Dutch base registration of buildings and addresses (BAG)", "namespace": "http://bag.basisregistraties.overheid.nl/def/bag#", - "uri": "http://bag.basisregistraties.overheid.nl/def/bag", - "prefix": "bag" + "prefix": "bag", + "title": "Vocabulary for the Dutch base registration of buildings and addresses (BAG)", + "uri": "http://bag.basisregistraties.overheid.nl/def/bag" }, { - "title": "BBC Ontology", "namespace": "http://www.bbc.co.uk/ontologies/bbc/", - "uri": "http://www.bbc.co.uk/ontologies/bbc", - "prefix": "bbc" + "prefix": "bbc", + "title": "BBC Ontology", + "uri": "http://www.bbc.co.uk/ontologies/bbc" }, { - "title": "BBC CMS Ontology", "namespace": "http://www.bbc.co.uk/ontologies/cms/", - "uri": "http://www.bbc.co.uk/ontologies/cms", - "prefix": "bbccms" + "prefix": "bbccms", + "title": "BBC CMS Ontology", + "uri": "http://www.bbc.co.uk/ontologies/cms" }, { - "title": "BBC Core Concepts", "namespace": "http://www.bbc.co.uk/ontologies/coreconcepts/", - "uri": "http://www.bbc.co.uk/ontologies/coreconcepts", - "prefix": "bbccore" + "prefix": "bbccore", + "title": "BBC Core Concepts", + "uri": "http://www.bbc.co.uk/ontologies/coreconcepts" }, { - "title": "BBC Provenance Ontology", "namespace": "http://www.bbc.co.uk/ontologies/provenance/", - "uri": "http://www.bbc.co.uk/ontologies/provenance", - "prefix": "bbcprov" + "prefix": "bbcprov", + "title": "BBC Provenance Ontology", + "uri": "http://www.bbc.co.uk/ontologies/provenance" }, { - "title": "Brain Computing Interface (BCI) Ontology", "namespace": "https://w3id.org/BCI-ontology#", - "uri": "https://w3id.org/BCI-ontology", - "prefix": "bci" + "prefix": "bci", + "title": "Brain Computing Interface (BCI) Ontology", + "uri": "https://w3id.org/BCI-ontology" }, { - "title": "BEVON: Beverage Ontology", "namespace": "http://rdfs.co/bevon/", - "uri": "http://rdfs.co/bevon/", - "prefix": "bevon" + "prefix": "bevon", + "title": "BEVON: Beverage Ontology", + "uri": "http://rdfs.co/bevon/" }, { - "title": "BIBFRAME Vocabulary", "namespace": "http://id.loc.gov/ontologies/bibframe/", - "uri": "http://id.loc.gov/ontologies/bibframe/", - "prefix": "bf" + "prefix": "bf", + "title": "BIBFRAME Vocabulary", + "uri": "http://id.loc.gov/ontologies/bibframe/" }, { - "title": "The Bibliographic Ontology", "namespace": "http://purl.org/ontology/bibo/", - "uri": "http://purl.org/ontology/bibo/", - "prefix": "bibo" + "prefix": "bibo", + "title": "The Bibliographic Ontology", + "uri": "http://purl.org/ontology/bibo/" }, { - "title": "BibTeX ontology", "namespace": "http://purl.org/net/nknouf/ns/bibtex#", - "uri": "http://purl.org/net/nknouf/ns/bibtex", - "prefix": "bibtex" + "prefix": "bibtex", + "title": "BibTeX ontology", + "uri": "http://purl.org/net/nknouf/ns/bibtex" }, { - "title": "Occupancy Profile ontology", "namespace": "http://bimerr.iot.linkeddata.es/def/occupancy-profile#", - "uri": "http://bimerr.iot.linkeddata.es/def/occupancy-profile#", - "prefix": "bimerr-op" + "prefix": "bimerr-op", + "title": "Occupancy Profile ontology", + "uri": "http://bimerr.iot.linkeddata.es/def/occupancy-profile#" }, { - "title": "BIO: A vocabulary for biographical information", "namespace": "http://purl.org/vocab/bio/0.1/", - "uri": "http://purl.org/vocab/bio/0.1/", - "prefix": "bio" + "prefix": "bio", + "title": "BIO: A vocabulary for biographical information", + "uri": "http://purl.org/vocab/bio/0.1/" }, { - "title": "Biological Taxonomy Vocabulary 0.2 (Core)", "namespace": "http://purl.org/NET/biol/ns#", - "uri": "http://purl.org/NET/biol/ns#", - "prefix": "biol" + "prefix": "biol", + "title": "Biological Taxonomy Vocabulary 0.2 (Core)", + "uri": "http://purl.org/NET/biol/ns#" }, { - "title": "BioPAX Level 3 ontology", "namespace": "http://www.biopax.org/release/biopax-level3.owl#", - "uri": "http://www.biopax.org/release/biopax-level3.owl", - "prefix": "biopax" + "prefix": "biopax", + "title": "BioPAX Level 3 ontology", + "uri": "http://www.biopax.org/release/biopax-level3.owl" }, { - "title": "BioTop", "namespace": "http://purl.org/biotop/biotop.owl#", - "uri": "http://purl.org/biotop/biotop.owl", - "prefix": "biotop" + "prefix": "biotop", + "title": "BioTop", + "uri": "http://purl.org/biotop/biotop.owl" }, { - "title": "The Bibliographic Reference Ontology", "namespace": "http://purl.org/spar/biro/", - "uri": "http://purl.org/spar/biro", - "prefix": "biro" + "prefix": "biro", + "title": "The Bibliographic Reference Ontology", + "uri": "http://purl.org/spar/biro" }, { - "title": "British Library Terms RDF schema", "namespace": "http://www.bl.uk/schemas/bibliographic/blterms#", - "uri": "http://www.bl.uk/schemas/bibliographic/blterms", - "prefix": "blt" + "prefix": "blt", + "title": "British Library Terms RDF schema", + "uri": "http://www.bl.uk/schemas/bibliographic/blterms" }, { - "title": "BotDCAT-AP - Data Catalogue vocabulary Application Profile for chatbots", "namespace": "http://swa.cefriel.it/ontologies/botdcat-ap#", - "uri": "http://swa.cefriel.it/ontologies/botdcat-ap", - "prefix": "bot" + "prefix": "bot", + "title": "BotDCAT-AP - Data Catalogue vocabulary Application Profile for chatbots", + "uri": "http://swa.cefriel.it/ontologies/botdcat-ap" }, { - "title": "Biological Taxonomy Vocabulary 0.2 (Botany)", "namespace": "http://purl.org/NET/biol/botany#", - "uri": "http://purl.org/NET/biol/botany#", - "prefix": "botany" + "prefix": "botany", + "title": "Biological Taxonomy Vocabulary 0.2 (Botany)", + "uri": "http://purl.org/NET/biol/botany#" }, { - "title": "Person", "namespace": "http://data.vlaanderen.be/ns/persoon#", - "uri": "http://data.vlaanderen.be/ns/persoon", - "prefix": "bperson" + "prefix": "bperson", + "title": "Person", + "uri": "http://data.vlaanderen.be/ns/persoon" }, { - "title": "Brainstorm Ontology", "namespace": "http://vocab.deri.ie/br#", - "uri": "http://vocab.deri.ie/br", - "prefix": "br" + "prefix": "br", + "title": "Brainstorm Ontology", + "uri": "http://vocab.deri.ie/br" }, { - "title": "Key Register Cadastre (BRK) vocabulary", "namespace": "http://brk.basisregistraties.overheid.nl/def/brk#", - "uri": "http://brk.basisregistraties.overheid.nl/def/brk", - "prefix": "brk" + "prefix": "brk", + "title": "Key Register Cadastre (BRK) vocabulary", + "uri": "http://brk.basisregistraties.overheid.nl/def/brk" }, { - "title": "Key Register Topography (BRT) vocabulary", "namespace": "http://brt.basisregistraties.overheid.nl/def/top10nl#", - "uri": "http://brt.basisregistraties.overheid.nl/def/top10nl", - "prefix": "brt" + "prefix": "brt", + "title": "Key Register Topography (BRT) vocabulary", + "uri": "http://brt.basisregistraties.overheid.nl/def/top10nl" }, { - "title": "BOT: Building Topology Ontology", "namespace": "https://w3id.org/bot#", - "uri": "https://w3id.org/bot", - "prefix": "bto" + "prefix": "bto", + "title": "BOT: Building Topology Ontology", + "uri": "https://w3id.org/bot" }, { - "title": "Call for Anything vocabulary", "namespace": "http://vocab.deri.ie/c4n#", - "uri": "http://vocab.deri.ie/c4n", - "prefix": "c4n" + "prefix": "c4n", + "title": "Call for Anything vocabulary", + "uri": "http://vocab.deri.ie/c4n" }, { - "title": "C4O, the Citation Counting and Context Characterization Ontology", "namespace": "http://purl.org/spar/c4o/", - "uri": "http://purl.org/spar/c4o", - "prefix": "c4o" + "prefix": "c4o", + "title": "C4O, the Citation Counting and Context Characterization Ontology", + "uri": "http://purl.org/spar/c4o" }, { - "title": "Internet Calendaring and Scheduling Core Object Specification", "namespace": "http://www.w3.org/2002/12/cal/ical#", - "uri": "http://www.w3.org/2002/12/cal/ical", - "prefix": "cal" + "prefix": "cal", + "title": "Internet Calendaring and Scheduling Core Object Specification", + "uri": "http://www.w3.org/2002/12/cal/ical" }, { - "title": "CARESSES Ontology", "namespace": "http://caressesrobot.org/ontology#", - "uri": "http://caressesrobot.org/ontology", - "prefix": "caresses" + "prefix": "caresses", + "title": "CARESSES Ontology", + "uri": "http://caressesrobot.org/ontology" }, { - "title": "cartCoordOnt", "namespace": "http://purl.org/net/cartCoord#", - "uri": "http://purl.org/net/cartCoord#", - "prefix": "cart" + "prefix": "cart", + "title": "cartCoordOnt", + "uri": "http://purl.org/net/cartCoord#" }, { - "title": "Comic Book Ontology", "namespace": "http://comicmeta.org/cbo/", - "uri": "http://comicmeta.org/cbo/", - "prefix": "cbo" + "prefix": "cbo", + "title": "Comic Book Ontology", + "uri": "http://comicmeta.org/cbo/" }, { - "title": "Creative Commons Rights Expression Language", "namespace": "http://creativecommons.org/ns#", - "uri": "http://creativecommons.org/ns", - "prefix": "cc" + "prefix": "cc", + "title": "Creative Commons Rights Expression Language", + "uri": "http://creativecommons.org/ns" }, { - "title": "Ontology for Cloud Computing instances", "namespace": "http://cookingbigdata.com/linkeddata/ccinstances#", - "uri": "http://cookingbigdata.com/linkeddata/ccinstances", - "prefix": "cci" + "prefix": "cci", + "title": "Ontology for Cloud Computing instances", + "uri": "http://cookingbigdata.com/linkeddata/ccinstances" }, { - "title": "Cognitive Characteristics Ontology", "namespace": "http://purl.org/ontology/cco/core#", - "uri": "http://purl.org/ontology/cco/core#", - "prefix": "cco" + "prefix": "cco", + "title": "Cognitive Characteristics Ontology", + "uri": "http://purl.org/ontology/cco/core#" }, { - "title": "Vocabulary for prices options in Cloud Computing Services", "namespace": "http://cookingbigdata.com/linkeddata/ccpricing#", - "uri": "http://cookingbigdata.com/linkeddata/ccpricing", - "prefix": "ccp" + "prefix": "ccp", + "title": "Vocabulary for prices options in Cloud Computing Services", + "uri": "http://cookingbigdata.com/linkeddata/ccpricing" }, { - "title": "Vocabulary for Regions and Zones on Cloud Computing", "namespace": "http://cookingbigdata.com/linkeddata/ccregions#", - "uri": "http://cookingbigdata.com/linkeddata/ccregions", - "prefix": "ccr" + "prefix": "ccr", + "title": "Vocabulary for Regions and Zones on Cloud Computing", + "uri": "http://cookingbigdata.com/linkeddata/ccregions" }, { - "title": "Service Level Agreement for Cloud Computing", "namespace": "http://cookingbigdata.com/linkeddata/ccsla#", - "uri": "http://cookingbigdata.com/linkeddata/ccsla", - "prefix": "ccsla" + "prefix": "ccsla", + "title": "Service Level Agreement for Cloud Computing", + "uri": "http://cookingbigdata.com/linkeddata/ccsla" }, { - "title": "Context Description Ontology (ArCo network)", "namespace": "https://w3id.org/arco/ontology/context-description/", - "uri": "https://w3id.org/arco/ontology/context-description", - "prefix": "cdesc" + "prefix": "cdesc", + "title": "Context Description Ontology (ArCo network)", + "uri": "https://w3id.org/arco/ontology/context-description" }, { - "title": "Conceptual Depth and Momentum", "namespace": "http://purl.org/twc/ontology/cdm.owl#", - "uri": "http://purl.org/twc/ontology/cdm.owl#", - "prefix": "cdm" + "prefix": "cdm", + "title": "Conceptual Depth and Momentum", + "uri": "http://purl.org/twc/ontology/cdm.owl#" }, { - "title": "The Collection Description Type Namespace", "namespace": "http://purl.org/cld/cdtype/", - "uri": "http://purl.org/cld/cdtype/", - "prefix": "cdtype" + "prefix": "cdtype", + "title": "The Collection Description Type Namespace", + "uri": "http://purl.org/cld/cdtype/" }, { - "title": "Consumer Electronics Ontology", "namespace": "http://www.ebusiness-unibw.org/ontologies/consumerelectronics/v1#", - "uri": "http://www.ebusiness-unibw.org/ontologies/consumerelectronics/v1", - "prefix": "ceo" + "prefix": "ceo", + "title": "Consumer Electronics Ontology", + "uri": "http://www.ebusiness-unibw.org/ontologies/consumerelectronics/v1" }, { - "title": "CERIF Ontology 1.3", "namespace": "http://www.eurocris.org/ontologies/cerif/1.3#", - "uri": "http://www.eurocris.org/ontologies/cerif/1.3", - "prefix": "cerif" + "prefix": "cerif", + "title": "CERIF Ontology 1.3", + "uri": "http://www.eurocris.org/ontologies/cerif/1.3" }, { - "title": "The Cert Ontology", "namespace": "http://www.w3.org/ns/auth/cert#", - "uri": "http://www.w3.org/ns/auth/cert#", - "prefix": "cert" + "prefix": "cert", + "title": "The Cert Ontology", + "uri": "http://www.w3.org/ns/auth/cert#" }, { - "title": "Cultural Event Ontology (ArCo network)", "namespace": "https://w3id.org/arco/ontology/cultural-event/", - "uri": "https://w3id.org/arco/ontology/cultural-event", - "prefix": "cevent" + "prefix": "cevent", + "title": "Cultural Event Ontology (ArCo network)", + "uri": "https://w3id.org/arco/ontology/cultural-event" }, { - "title": "Climate and Forecast (CF) features", "namespace": "http://purl.oclc.org/NET/ssnx/cf/cf-feature#", - "uri": "http://purl.oclc.org/NET/ssnx/cf/cf-feature", - "prefix": "cff" + "prefix": "cff", + "title": "Climate and Forecast (CF) features", + "uri": "http://purl.oclc.org/NET/ssnx/cf/cf-feature" }, { - "title": "Climate and Forecast (CF) standard names parameter vocabulary", "namespace": "http://purl.oclc.org/NET/ssnx/cf/cf-property#", - "uri": "http://purl.oclc.org/NET/ssnx/cf/cf-property", - "prefix": "cfp" + "prefix": "cfp", + "title": "Climate and Forecast (CF) standard names parameter vocabulary", + "uri": "http://purl.oclc.org/NET/ssnx/cf/cf-property" }, { - "title": "Corporate Financial Reports and Loans Ontology", "namespace": "http://linkeddata.finki.ukim.mk/lod/ontology/cfrl#", - "uri": "http://linkeddata.finki.ukim.mk/lod/ontology/cfrl#", - "prefix": "cfrl" + "prefix": "cfrl", + "title": "Corporate Financial Reports and Loans Ontology", + "uri": "http://linkeddata.finki.ukim.mk/lod/ontology/cfrl#" }, { - "title": "Central Government Ontology", "namespace": "http://reference.data.gov.uk/def/central-government/", - "uri": "http://reference.data.gov.uk/def/central-government", - "prefix": "cgov" + "prefix": "cgov", + "title": "Central Government Ontology", + "uri": "http://reference.data.gov.uk/def/central-government" }, { - "title": "The OMRAS2 Chord Ontology", "namespace": "http://purl.org/ontology/chord/", - "uri": "http://purl.org/ontology/chord/", - "prefix": "chord" + "prefix": "chord", + "title": "The OMRAS2 Chord Ontology", + "uri": "http://purl.org/ontology/chord/" }, { - "title": "A Content Inventory Vocabulary", "namespace": "https://privatealpha.com/ontology/content-inventory/1#", - "uri": "https://privatealpha.com/ontology/content-inventory/1#", - "prefix": "ci" + "prefix": "ci", + "title": "A Content Inventory Vocabulary", + "uri": "https://privatealpha.com/ontology/content-inventory/1#" }, { - "title": "Cultural-ON (Cultural ONtology): Cultural Institute/Site and Cultural Event Ontology", "namespace": "http://dati.beniculturali.it/cis/", - "uri": "http://dati.beniculturali.it/cultural-ON/cultural-ON.owl", - "prefix": "cis" + "prefix": "cis", + "title": "Cultural-ON (Cultural ONtology): Cultural Institute/Site and Cultural Event Ontology", + "uri": "http://dati.beniculturali.it/cultural-ON/cultural-ON.owl" }, { - "title": "CiTO, the Citation Typing Ontology", "namespace": "http://purl.org/spar/cito/", - "uri": "http://purl.org/spar/cito", - "prefix": "cito" + "prefix": "cito", + "title": "CiTO, the Citation Typing Ontology", + "uri": "http://purl.org/spar/cito" }, { - "title": "Functions of Citations", "namespace": "http://www.essepuntato.it/2013/03/cito-functions/", - "uri": "http://www.essepuntato.it/2013/03/cito-functions", - "prefix": "citof" + "prefix": "citof", + "title": "Functions of Citations", + "uri": "http://www.essepuntato.it/2013/03/cito-functions" }, { - "title": "Cinelab ontology", "namespace": "http://advene.org/ns/cinelab/ld#", - "uri": "http://advene.org/ns/cinelab/ld", - "prefix": "cl" + "prefix": "cl", + "title": "Cinelab ontology", + "uri": "http://advene.org/ns/cinelab/ld" }, { - "title": "The Collection Description Terms", "namespace": "http://purl.org/cld/terms/", - "uri": "http://purl.org/cld/terms/", - "prefix": "cld" + "prefix": "cld", + "title": "The Collection Description Terms", + "uri": "http://purl.org/cld/terms/" }, { - "title": "Conceptual Model Ontology", "namespace": "http://purl.org/twc/ontologies/cmo.owl#", - "uri": "http://purl.org/twc/ontologies/cmo.owl", - "prefix": "cmo" + "prefix": "cmo", + "title": "Conceptual Model Ontology", + "uri": "http://purl.org/twc/ontologies/cmo.owl" }, { - "title": "Representing Content in RDF", "namespace": "http://www.w3.org/2011/content#", - "uri": "http://www.w3.org/2011/content", - "prefix": "cnt" + "prefix": "cnt", + "title": "Representing Content in RDF", + "uri": "http://www.w3.org/2011/content" }, { - "title": "Counter Ontology", "namespace": "http://purl.org/ontology/co/core#", - "uri": "http://purl.org/ontology/co/core#", - "prefix": "co" + "prefix": "co", + "title": "Counter Ontology", + "uri": "http://purl.org/ontology/co/core#" }, { - "title": "Cochrane Core Vocabulary Ontology", "namespace": "http://data.cochrane.org/ontologies/core/", - "uri": "http://data.cochrane.org/ontologies/core/", - "prefix": "cochrane" + "prefix": "cochrane", + "title": "Cochrane Core Vocabulary Ontology", + "uri": "http://data.cochrane.org/ontologies/core/" }, { - "title": "Cloud Computing Services Ontology", "namespace": "https://w3id.org/cocoon/v1.0#", - "uri": "https://w3id.org/cocoon/v1.0", - "prefix": "cocoon" + "prefix": "cocoon", + "title": "Cloud Computing Services Ontology", + "uri": "https://w3id.org/cocoon/v1.0" }, { - "title": "COGS Vocabulary", "namespace": "http://vocab.deri.ie/cogs#", - "uri": "http://vocab.deri.ie/cogs", - "prefix": "cogs" + "prefix": "cogs", + "title": "COGS Vocabulary", + "uri": "http://vocab.deri.ie/cogs" }, { - "title": "'Configuration as Linked Data' ontology", "namespace": "http://purl.org/configurationontology#", - "uri": "http://purl.org/configurationontology", - "prefix": "cold" + "prefix": "cold", + "title": "'Configuration as Linked Data' ontology", + "uri": "http://purl.org/configurationontology" }, { - "title": "Collections Ontology", "namespace": "http://purl.org/co/", - "uri": "http://purl.org/co", - "prefix": "coll" + "prefix": "coll", + "title": "Collections Ontology", + "uri": "http://purl.org/co" }, { - "title": "Vocabulary related to incident communication", "namespace": "http://vocab.resc.info/communication#", - "uri": "http://vocab.resc.info/communication", - "prefix": "comm" + "prefix": "comm", + "title": "Vocabulary related to incident communication", + "uri": "http://vocab.resc.info/communication" }, { - "title": "The Delivery Context Ontology", "namespace": "http://www.w3.org/2007/uwa/context/common.owl#", - "uri": "http://www.w3.org/2007/uwa/context/deliverycontext.owl", - "prefix": "common" + "prefix": "common", + "title": "The Delivery Context Ontology", + "uri": "http://www.w3.org/2007/uwa/context/deliverycontext.owl" }, { - "title": "Contact", "namespace": "http://www.w3.org/2000/10/swap/pim/contact#", - "uri": "http://www.w3.org/2000/10/swap/pim/contact", - "prefix": "con" + "prefix": "con", + "title": "Contact", + "uri": "http://www.w3.org/2000/10/swap/pim/contact" }, { - "title": "Conversion Ontology", "namespace": "http://purl.org/twc/vocab/conversion/", - "uri": "http://purl.org/twc/vocab/conversion/", - "prefix": "conversion" + "prefix": "conversion", + "title": "Conversion Ontology", + "uri": "http://purl.org/twc/vocab/conversion/" }, { - "title": "Car Options Ontology", "namespace": "http://purl.org/coo/ns#", - "uri": "http://purl.org/coo/ns#", - "prefix": "coo" + "prefix": "coo", + "title": "Car Options Ontology", + "uri": "http://purl.org/coo/ns#" }, { - "title": "Content Pattern Annotations", "namespace": "http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#", - "uri": "http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl", - "prefix": "cpa" + "prefix": "cpa", + "title": "Content Pattern Annotations", + "uri": "http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl" }, { - "title": "CIDOC Conceptual Reference Model", "namespace": "http://www.cidoc-crm.org/cidoc-crm/", - "uri": "http://www.cidoc-crm.org/cidoc-crm/", - "prefix": "crm" + "prefix": "crm", + "title": "CIDOC Conceptual Reference Model", + "uri": "http://www.cidoc-crm.org/cidoc-crm/" }, { - "title": "Copyright Ontology", "namespace": "http://rhizomik.net/ontologies/copyrightonto.owl#", - "uri": "http://rhizomik.net/ontologies/copyrightonto.owl", - "prefix": "cro" + "prefix": "cro", + "title": "Copyright Ontology", + "uri": "http://rhizomik.net/ontologies/copyrightonto.owl" }, { - "title": "Changeset", "namespace": "http://purl.org/vocab/changeset/schema#", - "uri": "http://purl.org/vocab/changeset/schema", - "prefix": "cs" + "prefix": "cs", + "title": "Changeset", + "uri": "http://purl.org/vocab/changeset/schema" }, { - "title": "Constraint Satisfaction Problems Vocabulary", "namespace": "http://vocab.deri.ie/csp#", - "uri": "http://vocab.deri.ie/csp", - "prefix": "csp" + "prefix": "csp", + "title": "Constraint Satisfaction Problems Vocabulary", + "uri": "http://vocab.deri.ie/csp" }, { - "title": "CSV on the Web Vocabulary", "namespace": "http://www.w3.org/ns/csvw#", - "uri": "http://www.w3.org/ns/csvw#", - "prefix": "csvw" + "prefix": "csvw", + "title": "CSV on the Web Vocabulary", + "uri": "http://www.w3.org/ns/csvw#" }, { - "title": "Connectivity types", "namespace": "http://www.tele.pw.edu.pl/~sims-onto/ConnectivityType.owl#", - "uri": "http://www.tele.pw.edu.pl/~sims-onto/ConnectivityType.owl", - "prefix": "ct" + "prefix": "ct", + "title": "Connectivity types", + "uri": "http://www.tele.pw.edu.pl/~sims-onto/ConnectivityType.owl" }, { - "title": "Catalogue Ontology (ArCo network)", "namespace": "https://w3id.org/arco/ontology/catalogue/", - "uri": "https://w3id.org/arco/ontology/catalogue", - "prefix": "ctlog" + "prefix": "ctlog", + "title": "Catalogue Ontology (ArCo network)", + "uri": "https://w3id.org/arco/ontology/catalogue" }, { - "title": "Vocabulary for the structure of the public organizations", "namespace": "http://purl.org/ctic/infraestructuras/organizacion#", - "uri": "http://purl.org/ctic/infraestructuras/organizacion", - "prefix": "ctorg" + "prefix": "ctorg", + "title": "Vocabulary for the structure of the public organizations", + "uri": "http://purl.org/ctic/infraestructuras/organizacion" }, { - "title": "CTRLont - An ontology to formally specify the control domain", "namespace": "https://w3id.org/ibp/CTRLont#", - "uri": "https://w3id.org/ibp/CTRLont", - "prefix": "ctrl" + "prefix": "ctrl", + "title": "CTRLont - An ontology to formally specify the control domain", + "uri": "https://w3id.org/ibp/CTRLont" }, { - "title": "Context Descriptor Pattern", "namespace": "http://www.demcare.eu/ontologies/contextdescriptor.owl#", - "uri": "http://www.demcare.eu/ontologies/contextdescriptor.owl", - "prefix": "ctxdesc" + "prefix": "ctxdesc", + "title": "Context Descriptor Pattern", + "uri": "http://www.demcare.eu/ontologies/contextdescriptor.owl" }, { - "title": "Creative Workshop Management Ontology (CWMO)", "namespace": "http://purl.org/cwmo/#", - "uri": "http://purl.org/cwmo/#", - "prefix": "cwmo" + "prefix": "cwmo", + "title": "Creative Workshop Management Ontology (CWMO)", + "uri": "http://purl.org/cwmo/#" }, { - "title": "Creative Work Ontology", "namespace": "http://www.bbc.co.uk/ontologies/creativework/", - "uri": "http://www.bbc.co.uk/ontologies/creativework", - "prefix": "cwork" + "prefix": "cwork", + "title": "Creative Work Ontology", + "uri": "http://www.bbc.co.uk/ontologies/creativework" }, { - "title": "The CWRC Ontology", "namespace": "http://sparql.cwrc.ca/ontologies/cwrc#", - "uri": "http://sparql.cwrc.ca/ontologies/cwrc", - "prefix": "cwrc" + "prefix": "cwrc", + "title": "The CWRC Ontology", + "uri": "http://sparql.cwrc.ca/ontologies/cwrc" }, { - "title": "D2RQ - Language Specification", "namespace": "http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1#", - "uri": "http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1", - "prefix": "d2rq" + "prefix": "d2rq", + "title": "D2RQ - Language Specification", + "uri": "http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1" }, { - "title": "Dataset Dynamics (dady) vocabulary", "namespace": "http://purl.org/NET/dady#", - "uri": "http://vocab.deri.ie/dady", - "prefix": "dady" + "prefix": "dady", + "title": "Dataset Dynamics (dady) vocabulary", + "uri": "http://vocab.deri.ie/dady" }, { - "title": "Dataset Quality Vocabulary", "namespace": "http://purl.org/eis/vocab/daq#", - "uri": "http://purl.org/eis/vocab/daq#", - "prefix": "daq" + "prefix": "daq", + "title": "Dataset Quality Vocabulary", + "uri": "http://purl.org/eis/vocab/daq#" }, { - "title": "DataID", "namespace": "http://dataid.dbpedia.org/ns/core#", - "uri": "http://dataid.dbpedia.org/ns/core#", - "prefix": "dataid" + "prefix": "dataid", + "title": "DataID", + "uri": "http://dataid.dbpedia.org/ns/core#" }, { - "title": "Linked Datex II", "namespace": "http://vocab.datex.org/terms#", - "uri": "http://vocab.datex.org/terms#", - "prefix": "datex" + "prefix": "datex", + "title": "Linked Datex II", + "uri": "http://vocab.datex.org/terms#" }, { - "title": "Data Value Vocabulary (DaVe)", "namespace": "http://theme-e.adaptcentre.ie/dave#", - "uri": "http://theme-e.adaptcentre.ie/dave/dave.ttl", - "prefix": "dave" + "prefix": "dave", + "title": "Data Value Vocabulary (DaVe)", + "uri": "http://theme-e.adaptcentre.ie/dave/dave.ttl" }, { - "title": "DBM Ontology", "namespace": "http://purl.org/net/dbm/ontology#", - "uri": "http://purl.org/net/dbm/ontology#", - "prefix": "dbm" + "prefix": "dbm", + "title": "DBM Ontology", + "uri": "http://purl.org/net/dbm/ontology#" }, { - "title": "Relational to Ontology Mapping Primitive", "namespace": "http://ontology.cybershare.utep.edu/dbowl/relational-to-ontology-mapping-primitive.owl#", - "uri": "http://ontology.cybershare.utep.edu/dbowl", - "prefix": "dbowl" + "prefix": "dbowl", + "title": "Relational to Ontology Mapping Primitive", + "uri": "http://ontology.cybershare.utep.edu/dbowl" }, { - "title": "The DBpedia Ontology", "namespace": "http://dbpedia.org/ontology/", - "uri": "http://dbpedia.org/ontology/", - "prefix": "dbpedia-owl" + "prefix": "dbpedia-owl", + "title": "The DBpedia Ontology", + "uri": "http://dbpedia.org/ontology/" }, { - "title": "DOAP Bugs", "namespace": "http://ontologi.es/doap-bugs#", - "uri": "http://ontologi.es/doap-bugs#", - "prefix": "dbug" + "prefix": "dbug", + "title": "DOAP Bugs", + "uri": "http://ontologi.es/doap-bugs#" }, { - "title": "DCMI Abstract Model", "namespace": "http://purl.org/dc/dcam/", - "uri": "http://purl.org/dc/dcam/", - "prefix": "dcam" + "prefix": "dcam", + "title": "DCMI Abstract Model", + "uri": "http://purl.org/dc/dcam/" }, { - "title": "Data Catalog Vocabulary", "namespace": "http://www.w3.org/ns/dcat#", - "uri": "http://www.w3.org/ns/dcat", - "prefix": "dcat" + "prefix": "dcat", + "title": "Data Catalog Vocabulary", + "uri": "http://www.w3.org/ns/dcat" }, { - "title": "Dublin Core Metadata Element Set", "namespace": "http://purl.org/dc/elements/1.1/", - "uri": "http://purl.org/dc/elements/1.1/", - "prefix": "dce" + "prefix": "dce", + "title": "Dublin Core Metadata Element Set", + "uri": "http://purl.org/dc/elements/1.1/" }, { - "title": "The DataCite Ontology", "namespace": "http://purl.org/spar/datacite/", - "uri": "http://purl.org/spar/datacite", - "prefix": "dcite" + "prefix": "dcite", + "title": "The DataCite Ontology", + "uri": "http://purl.org/spar/datacite" }, { - "title": "NDL Metadata Terms", "namespace": "http://ndl.go.jp/dcndl/terms/", - "uri": "http://ndl.go.jp/dcndl/terms/", - "prefix": "dcndl" + "prefix": "dcndl", + "title": "NDL Metadata Terms", + "uri": "http://ndl.go.jp/dcndl/terms/" }, { - "title": "DCMI Metadata Terms", "namespace": "http://purl.org/dc/terms/", - "uri": "http://purl.org/dc/terms/", - "prefix": "dcterms" + "prefix": "dcterms", + "title": "DCMI Metadata Terms", + "uri": "http://purl.org/dc/terms/" }, { - "title": "DCMI Type Vocabulary", "namespace": "http://purl.org/dc/dcmitype/", - "uri": "http://purl.org/dc/dcmitype/", - "prefix": "dctype" + "prefix": "dctype", + "title": "DCMI Type Vocabulary", + "uri": "http://purl.org/dc/dcmitype/" }, { - "title": "Denotative Description Ontology (ArCo network)", "namespace": "https://w3id.org/arco/ontology/denotative-description/", - "uri": "https://w3id.org/arco/ontology/denotative-description", - "prefix": "ddesc" + "prefix": "ddesc", + "title": "Denotative Description Ontology (ArCo network)", + "uri": "https://w3id.org/arco/ontology/denotative-description" }, { - "title": "Dem@Care Lab Ontology for Dementia Assessment", "namespace": "http://www.demcare.eu/ontologies/demlab.owl#", - "uri": "http://www.demcare.eu/ontologies/demlab.owl", - "prefix": "demlab" + "prefix": "demlab", + "title": "Dem@Care Lab Ontology for Dementia Assessment", + "uri": "http://www.demcare.eu/ontologies/demlab.owl" }, { - "title": "The Discourse Elements Ontology", "namespace": "http://purl.org/spar/deo/", - "uri": "http://purl.org/spar/deo", - "prefix": "deo" + "prefix": "deo", + "title": "The Discourse Elements Ontology", + "uri": "http://purl.org/spar/deo" }, { - "title": "DOAP Dependencies", "namespace": "http://ontologi.es/doap-deps#", - "uri": "http://ontologi.es/doap-deps#", - "prefix": "deps" + "prefix": "deps", + "title": "DOAP Dependencies", + "uri": "http://ontologi.es/doap-deps#" }, { - "title": "Data Food Consortium Ontology", "namespace": "http://datafoodconsortium.org/ontologies/DFC_FullModel.owl#", - "uri": "http://datafoodconsortium.org/ontologies/DFC_FullModel.owl", - "prefix": "dfc" + "prefix": "dfc", + "title": "Data Food Consortium Ontology", + "uri": "http://datafoodconsortium.org/ontologies/DFC_FullModel.owl" }, { - "title": "DFC Business Ontology", "namespace": "http://datafoodconsortium.org/ontologies/DFC_BusinessOntology.owl#", - "uri": "http://datafoodconsortium.org/ontologies/DFC_BusinessOntology.owl", - "prefix": "dfcb" + "prefix": "dfcb", + "title": "DFC Business Ontology", + "uri": "http://datafoodconsortium.org/ontologies/DFC_BusinessOntology.owl" }, { - "title": "DINGO Ontology", "namespace": "https://w3id.org/dingo#", - "uri": "https://w3id.org/dingo/", - "prefix": "dg" + "prefix": "dg", + "title": "DINGO Ontology", + "uri": "https://w3id.org/dingo/" }, { - "title": "Healthcare metadata - DICOM ontology", "namespace": "http://purl.org/healthcarevocab/v1#", - "uri": "http://purl.org/healthcarevocab/v1", - "prefix": "dicom" + "prefix": "dicom", + "title": "Healthcare metadata - DICOM ontology", + "uri": "http://purl.org/healthcarevocab/v1" }, { - "title": "The Design Intent Ontology", "namespace": "https://w3id.org/dio#", - "uri": "https://w3id.org/dio", - "prefix": "dio" + "prefix": "dio", + "title": "The Design Intent Ontology", + "uri": "https://w3id.org/dio" }, { - "title": "DITA RDF ontology", "namespace": "http://purl.org/dita/ns#", - "uri": "http://purl.org/dita/ns#", - "prefix": "dita" + "prefix": "dita", + "title": "DITA RDF ontology", + "uri": "http://purl.org/dita/ns#" }, { - "title": "The Data Knowledge Vocabulary", "namespace": "http://www.data-knowledge.org/dk/", - "uri": "http://www.data-knowledge.org/dk/", - "prefix": "dk" + "prefix": "dk", + "title": "The Data Knowledge Vocabulary", + "uri": "http://www.data-knowledge.org/dk/" }, { - "title": "DNB Metadata Terms", "namespace": "http://d-nb.info/standards/elementset/dnb#", - "uri": "http://d-nb.info/standards/elementset/dnb", - "prefix": "dnbt" + "prefix": "dnbt", + "title": "DNB Metadata Terms", + "uri": "http://d-nb.info/standards/elementset/dnb" }, { - "title": "Description of a Project vocabulary", "namespace": "http://usefulinc.com/ns/doap#", - "uri": "http://usefulinc.com/ns/doap#", - "prefix": "doap" + "prefix": "doap", + "title": "Description of a Project vocabulary", + "uri": "http://usefulinc.com/ns/doap#" }, { - "title": "Works, licences, derivatives and dependencies", "namespace": "http://www.w3.org/2000/10/swap/pim/doc#", - "uri": "http://www.w3.org/2000/10/swap/pim/doc", - "prefix": "doc" + "prefix": "doc", + "title": "Works, licences, derivatives and dependencies", + "uri": "http://www.w3.org/2000/10/swap/pim/doc" }, { - "title": "DoCO, the Document Components Ontology", "namespace": "http://purl.org/spar/doco/", - "uri": "http://purl.org/spar/doco", - "prefix": "doco" + "prefix": "doco", + "title": "DoCO, the Document Components Ontology", + "uri": "http://purl.org/spar/doco" }, { - "title": "Document Service Ontology", "namespace": "http://purl.org/ontology/dso#", - "uri": "http://purl.org/ontology/dso", - "prefix": "docso" + "prefix": "docso", + "title": "Document Service Ontology", + "uri": "http://purl.org/ontology/dso" }, { - "title": "Ontology Modeling for Intelligent Domotic Environments", "namespace": "http://elite.polito.it/ontologies/dogont", - "uri": "http://elite.polito.it/ontologies/dogont.owl", - "prefix": "dogont" + "prefix": "dogont", + "title": "Ontology Modeling for Intelligent Domotic Environments", + "uri": "http://elite.polito.it/ontologies/dogont.owl" }, { - "title": "Dataset Ontology", "namespace": "http://reference.data.gov.au/def/ont/dataset#", - "uri": "http://reference.data.gov.au/def/ont/dataset", - "prefix": "donto" + "prefix": "donto", + "title": "Dataset Ontology", + "uri": "http://reference.data.gov.au/def/ont/dataset" }, { - "title": "Data Provider Node ontology", "namespace": "http://purl.org/dpn#", - "uri": "http://purl.org/dpn", - "prefix": "dpn" + "prefix": "dpn", + "title": "Data Provider Node ontology", + "uri": "http://purl.org/dpn" }, { - "title": "Decision Provenance ontology (DecPROV)", "namespace": "http://promsns.org/def/do#", - "uri": "http://promsns.org/def/decprov", - "prefix": "dprov" + "prefix": "dprov", + "title": "Decision Provenance ontology (DecPROV)", + "uri": "http://promsns.org/def/decprov" }, { - "title": "The Data Quality Constraints Library", "namespace": "http://semwebquality.org/ontologies/dq-constraints#", - "uri": "http://semwebquality.org/ontologies/dq-constraints", - "prefix": "dqc" + "prefix": "dqc", + "title": "The Data Quality Constraints Library", + "uri": "http://semwebquality.org/ontologies/dq-constraints" }, { - "title": "The Data Quality Management Vocabulary", "namespace": "http://purl.org/dqm-vocabulary/v1/dqm#", - "uri": "http://purl.org/dqm-vocabulary/v1/dqm", - "prefix": "dqm" + "prefix": "dqm", + "title": "The Data Quality Management Vocabulary", + "uri": "http://purl.org/dqm-vocabulary/v1/dqm" }, { - "title": "Data Quality Vocabulary", "namespace": "http://www.w3.org/ns/dqv#", - "uri": "http://www.w3.org/ns/dqv", - "prefix": "dqv" + "prefix": "dqv", + "title": "Data Quality Vocabulary", + "uri": "http://www.w3.org/ns/dqv" }, { - "title": "Discourse relationships vocabulary", "namespace": "http://purl.org/swan/2.0/discourse-relationships/", - "uri": "http://purl.org/swan/2.0/discourse-relationships/", - "prefix": "dr" + "prefix": "dr", + "title": "Discourse relationships vocabulary", + "uri": "http://purl.org/swan/2.0/discourse-relationships/" }, { - "title": "Drammar: a comprehensive ontology of drama", "namespace": "http://www.purl.org/drammar#", - "uri": "http://www.purl.org/drammar", - "prefix": "drama" + "prefix": "drama", + "title": "Drammar: a comprehensive ontology of drama", + "uri": "http://www.purl.org/drammar" }, { - "title": "Data Reference Model", "namespace": "http://vocab.data.gov/def/drm#", - "uri": "http://vocab.data.gov/def/drm", - "prefix": "drm" + "prefix": "drm", + "title": "Data Reference Model", + "uri": "http://vocab.data.gov/def/drm" }, { - "title": "Dataset Catalog Vocabulary", "namespace": "http://purl.org/ctic/dcat#", - "uri": "http://purl.org/ctic/dcat#", - "prefix": "ds" + "prefix": "ds", + "title": "Dataset Catalog Vocabulary", + "uri": "http://purl.org/ctic/dcat#" }, { - "title": "DSNotify Eventsets: A vocabulary for change events in linked data sources", "namespace": "http://purl.org/dsnotify/vocab/eventset/", - "uri": "http://purl.org/dsnotify/vocab/eventset/", - "prefix": "dsn" + "prefix": "dsn", + "title": "DSNotify Eventsets: A vocabulary for change events in linked data sources", + "uri": "http://purl.org/dsnotify/vocab/eventset/" }, { - "title": "Datatype Ontology", "namespace": "http://www.linkedmodel.org/schema/dtype#", - "uri": "http://www.linkedmodel.org/schema/dtype", - "prefix": "dtype" + "prefix": "dtype", + "title": "Datatype Ontology", + "uri": "http://www.linkedmodel.org/schema/dtype" }, { - "title": "DOLCE+DnS Ultralite", "namespace": "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#", - "uri": "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl", - "prefix": "dul" + "prefix": "dul", + "title": "DOLCE+DnS Ultralite", + "uri": "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl" }, { - "title": "Dataset Usage Vocabulary", "namespace": "http://www.w3.org/ns/duv#", - "uri": "http://www.w3.org/ns/duv", - "prefix": "duv" + "prefix": "duv", + "title": "Dataset Usage Vocabulary", + "uri": "http://www.w3.org/ns/duv" }, { - "title": "The visualization vocabulary for LOD applications", "namespace": "http://purl.org/ontology/dvia#", - "uri": "http://purl.org/ontology/dvia", - "prefix": "dvia" + "prefix": "dvia", + "title": "The visualization vocabulary for LOD applications", + "uri": "http://purl.org/ontology/dvia" }, { - "title": "EAC-CPF Descriptions Ontology for Linked Archival Data:", "namespace": "http://archivi.ibc.regione.emilia-romagna.it/ontology/eac-cpf/", - "uri": "http://archivi.ibc.regione.emilia-romagna.it/ontology/eac-cpf/", - "prefix": "eac-cpf" + "prefix": "eac-cpf", + "title": "EAC-CPF Descriptions Ontology for Linked Archival Data:", + "uri": "http://archivi.ibc.regione.emilia-romagna.it/ontology/eac-cpf/" }, { - "title": "Evaluation and Report Language", "namespace": "http://www.w3.org/ns/earl#", - "uri": "http://www.w3.org/ns/earl", - "prefix": "earl" + "prefix": "earl", + "title": "Evaluation and Report Language", + "uri": "http://www.w3.org/ns/earl" }, { - "title": "The Linked Earth Ontology", "namespace": "http://linked.earth/ontology#", - "uri": "http://linked.earth/ontology#", - "prefix": "earth" + "prefix": "earth", + "title": "The Linked Earth Ontology", + "uri": "http://linked.earth/ontology#" }, { - "title": "EBU Ontology", "namespace": "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#", - "uri": "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore", - "prefix": "ebucore" + "prefix": "ebucore", + "title": "EBU Ontology", + "uri": "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore" }, { - "title": "RDF changes and revisions vocabulary", "namespace": "https://vocab.eccenca.com/revision/", - "uri": "https://vocab.eccenca.com/revision/", - "prefix": "eccrev" + "prefix": "eccrev", + "title": "RDF changes and revisions vocabulary", + "uri": "https://vocab.eccenca.com/revision/" }, { - "title": "Enumeration and Chronology of Periodicals Ontology", "namespace": "http://purl.org/ontology/ecpo#", - "uri": "http://purl.org/ontology/ecpo", - "prefix": "ecpo" + "prefix": "ecpo", + "title": "Enumeration and Chronology of Periodicals Ontology", + "uri": "http://purl.org/ontology/ecpo" }, { - "title": "Erlangen CRM / OWL", "namespace": "http://erlangen-crm.org/current/", - "uri": "http://erlangen-crm.org/current/", - "prefix": "ecrm" + "prefix": "ecrm", + "title": "Erlangen CRM / OWL", + "uri": "http://erlangen-crm.org/current/" }, { - "title": "ELSEWeb EDAC Ontology", "namespace": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-edac.owl#", - "uri": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-edac.owl", - "prefix": "edac" + "prefix": "edac", + "title": "ELSEWeb EDAC Ontology", + "uri": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-edac.owl" }, { - "title": "Europeana Data Model vocabulary", "namespace": "http://www.europeana.eu/schemas/edm/", - "uri": "http://www.europeana.eu/schemas/edm/", - "prefix": "edm" + "prefix": "edm", + "title": "Europeana Data Model vocabulary", + "uri": "http://www.europeana.eu/schemas/edm/" }, { - "title": "Education Ontology", "namespace": "https://schema.edu.ee/", - "uri": "https://schema.edu.ee/", - "prefix": "edu" + "prefix": "edu", + "title": "Education Ontology", + "uri": "https://schema.edu.ee/" }, { - "title": "EduProgression Ontology", "namespace": "http://ns.inria.fr/semed/eduprogression#", - "uri": "http://ns.inria.fr/semed/eduprogression/", - "prefix": "edupro" + "prefix": "edupro", + "title": "EduProgression Ontology", + "uri": "http://ns.inria.fr/semed/eduprogression/" }, { - "title": "The EPCIS Event Model", "namespace": "http://purl.org/eem#", - "uri": "http://purl.org/eem", - "prefix": "eem" + "prefix": "eem", + "title": "The EPCIS Event Model", + "uri": "http://purl.org/eem" }, { - "title": "EEPSA (Energy Efficiency Prediction Semantic Assistant) Ontology", "namespace": "https://w3id.org/eepsa#", - "uri": "https://w3id.org/eepsa", - "prefix": "eepsa" + "prefix": "eepsa", + "title": "EEPSA (Energy Efficiency Prediction Semantic Assistant) Ontology", + "uri": "https://w3id.org/eepsa" }, { - "title": "Aragon Interoperable Information Structure Ontology\nEI2A", "namespace": "http://opendata.aragon.es/def/ei2a#", - "uri": "https://opendata.aragon.es/def/ei2a/ei2a.owl", - "prefix": "ei2a" + "prefix": "ei2a", + "title": "Aragon Interoperable Information Structure Ontology\nEI2A", + "uri": "https://opendata.aragon.es/def/ei2a/ei2a.owl" }, { - "title": "Vocabulary for Vote Results", "namespace": "http://purl.org/ctic/sector-publico/elecciones#", - "uri": "http://purl.org/ctic/sector-publico/elecciones", - "prefix": "elec" + "prefix": "elec", + "title": "Vocabulary for Vote Results", + "uri": "http://purl.org/ctic/sector-publico/elecciones" }, { - "title": "The European Legislation Identifier", "namespace": "http://data.europa.eu/eli/ontology#", - "uri": "http://data.europa.eu/eli/ontology", - "prefix": "eli" + "prefix": "eli", + "title": "The European Legislation Identifier", + "uri": "http://data.europa.eu/eli/ontology" }, { - "title": "Emotion Ontology for Context Awareness", "namespace": "http://ns.inria.fr/emoca#", - "uri": "http://ns.inria.fr/emoca", - "prefix": "emotion" + "prefix": "emotion", + "title": "Emotion Ontology for Context Awareness", + "uri": "http://ns.inria.fr/emoca" }, { - "title": "A vocabulary for jobs", "namespace": "http://purl.org/ctic/empleo/oferta#", - "uri": "http://purl.org/ctic/empleo/oferta", - "prefix": "emp" + "prefix": "emp", + "title": "A vocabulary for jobs", + "uri": "http://purl.org/ctic/empleo/oferta" }, { - "title": "Vocabulary of endpoint status (availability, responseTime)", "namespace": "http://labs.mondeca.com/vocab/endpointStatus#", - "uri": "http://labs.mondeca.com/vocab/endpointStatus", - "prefix": "ends" + "prefix": "ends", + "title": "Vocabulary of endpoint status (availability, responseTime)", + "uri": "http://labs.mondeca.com/vocab/endpointStatus" }, { - "title": "EPrints Ontology", "namespace": "http://eprints.org/ontology/", - "uri": "http://eprints.org/ontology/", - "prefix": "ep" + "prefix": "ep", + "title": "EPrints Ontology", + "uri": "http://eprints.org/ontology/" }, { - "title": "The EP-Plan ontology", "namespace": "https://w3id.org/ep-plan#", - "uri": "https://w3id.org/ep-plan", - "prefix": "eppl" + "prefix": "eppl", + "title": "The EP-Plan ontology", + "uri": "https://w3id.org/ep-plan" }, { - "title": "The ESCO ontology", "namespace": "http://data.europa.eu/esco/model#", - "uri": "http://data.europa.eu/esco/model", - "prefix": "esco" + "prefix": "esco", + "title": "The ESCO ontology", + "uri": "http://data.europa.eu/esco/model" }, { - "title": "ESSGlobal Vocabulary", "namespace": "http://purl.org/essglobal/vocab/", - "uri": "http://purl.org/essglobal/vocab/", - "prefix": "essglobal" + "prefix": "essglobal", + "title": "ESSGlobal Vocabulary", + "uri": "http://purl.org/essglobal/vocab/" }, { - "title": "EUPont: an ontology for End User Programming of the IoT", "namespace": "http://elite.polito.it/ontologies/eupont.owl#", - "uri": "http://elite.polito.it/ontologies/eupont.owl", - "prefix": "eupont" + "prefix": "eupont", + "title": "EUPont: an ontology for End User Programming of the IoT", + "uri": "http://elite.polito.it/ontologies/eupont.owl" }, { - "title": "The Event Ontology", "namespace": "http://purl.org/NET/c4dm/event.owl#", - "uri": "http://purl.org/NET/c4dm/event.owl", - "prefix": "event" + "prefix": "event", + "title": "The Event Ontology", + "uri": "http://purl.org/NET/c4dm/event.owl" }, { - "title": "Example vocabulary", "namespace": "http://purl.org/net/ns/ex#", - "uri": "http://purl.org/net/ns/ex", - "prefix": "ex" + "prefix": "ex", + "title": "Example vocabulary", + "uri": "http://purl.org/net/ns/ex" }, { - "title": "Exif data description vocabulary", "namespace": "http://www.w3.org/2003/12/exif/ns#", - "uri": "http://www.w3.org/2003/12/exif/ns", - "prefix": "exif" + "prefix": "exif", + "title": "Exif data description vocabulary", + "uri": "http://www.w3.org/2003/12/exif/ns" }, { - "title": "FRBR-aligned Bibliographic Ontology", "namespace": "http://purl.org/spar/fabio/", - "uri": "http://purl.org/spar/fabio", - "prefix": "fabio" + "prefix": "fabio", + "title": "FRBR-aligned Bibliographic Ontology", + "uri": "http://purl.org/spar/fabio" }, { - "title": "Feature Annotation Location Description Ontology", "namespace": "http://biohackathon.org/resource/faldo#", - "uri": "http://biohackathon.org/resource/faldo", - "prefix": "faldo" + "prefix": "faldo", + "title": "Feature Annotation Location Description Ontology", + "uri": "http://biohackathon.org/resource/faldo" }, { - "title": "Federal Enterprise Architecture Vocabulary", "namespace": "http://vocab.data.gov/def/fea#", - "uri": "http://vocab.data.gov/def/fea", - "prefix": "fea" + "prefix": "fea", + "title": "Federal Enterprise Architecture Vocabulary", + "uri": "http://vocab.data.gov/def/fea" }, { - "title": "A Fine-grained Entity Linking vocabulary", "namespace": "http://w3id.org/vcb/fel#", - "uri": "http://w3id.org/vcb/fel#", - "prefix": "fel" + "prefix": "fel", + "title": "A Fine-grained Entity Linking vocabulary", + "uri": "http://w3id.org/vcb/fel#" }, { - "title": "FIESTA-IoT Ontology", "namespace": "http://purl.org/iot/ontology/fiesta-iot#", - "uri": "http://purl.org/iot/ontology/fiesta-iot", - "prefix": "fiesta-iot" + "prefix": "fiesta-iot", + "title": "FIESTA-IoT Ontology", + "uri": "http://purl.org/iot/ontology/fiesta-iot" }, { - "title": "FIESTA-Priv Ontology", "namespace": "http://purl.org/iot/ontology/fiesta-iot#", - "uri": "http://purl.org/iot/ontology/fiesta-priv#", - "prefix": "fiesta-priv" + "prefix": "fiesta-priv", + "title": "FIESTA-Priv Ontology", + "uri": "http://purl.org/iot/ontology/fiesta-priv#" }, { - "title": "Friend of a Friend vocabulary", "namespace": "http://xmlns.com/foaf/0.1/", - "uri": "http://xmlns.com/foaf/0.1/", - "prefix": "foaf" + "prefix": "foaf", + "title": "Friend of a Friend vocabulary", + "uri": "http://xmlns.com/foaf/0.1/" }, { - "title": "FOG: File Ontology for Geometry formats", "namespace": "https://w3id.org/fog#", - "uri": "https://w3id.org/fog", - "prefix": "fog" + "prefix": "fog", + "title": "FOG: File Ontology for Geometry formats", + "uri": "https://w3id.org/fog" }, { - "title": "The SEAS Feature of Interest ontology.", "namespace": "https://w3id.org/seas/FeatureOfInterestOntology/", - "uri": "https://w3id.org/seas/FeatureOfInterestOntology", - "prefix": "foio" + "prefix": "foio", + "title": "The SEAS Feature of Interest ontology.", + "uri": "https://w3id.org/seas/FeatureOfInterestOntology" }, { - "title": "Food Ontology in OWL", "namespace": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/food#", - "uri": "http://www.w3.org/TR/2003/PR-owl-guide-20031215/food", - "prefix": "fowl" + "prefix": "fowl", + "title": "Food Ontology in OWL", + "uri": "http://www.w3.org/TR/2003/PR-owl-guide-20031215/food" }, { - "title": "Funding, Research Administration and Projects Ontology", "namespace": "http://purl.org/cerif/frapo/", - "uri": "http://purl.org/cerif/frapo/", - "prefix": "frapo" + "prefix": "frapo", + "title": "Funding, Research Administration and Projects Ontology", + "uri": "http://purl.org/cerif/frapo/" }, { - "title": "FraPPE: Frame, Pixel, Place, Event vocabulary", "namespace": "http://streamreasoning.org/ontologies/frappe#", - "uri": "http://streamreasoning.org/ontologies/frappe#", - "prefix": "frappe" + "prefix": "frappe", + "title": "FraPPE: Frame, Pixel, Place, Event vocabulary", + "uri": "http://streamreasoning.org/ontologies/frappe#" }, { - "title": "Expression of Core FRBR Concepts in RDF", "namespace": "http://purl.org/vocab/frbr/core#", - "uri": "http://purl.org/vocab/frbr/core", - "prefix": "frbr" + "prefix": "frbr", + "title": "Expression of Core FRBR Concepts in RDF", + "uri": "http://purl.org/vocab/frbr/core" }, { - "title": "Extended FRBR", "namespace": "http://purl.org/vocab/frbr/extended#", - "uri": "http://purl.org/vocab/frbr/extended", - "prefix": "frbre" + "prefix": "frbre", + "title": "Extended FRBR", + "uri": "http://purl.org/vocab/frbr/extended" }, { - "title": "Fresnel Lens and Format Core Vocabulary", "namespace": "http://www.w3.org/2004/09/fresnel#", - "uri": "http://www.w3.org/2004/09/fresnel", - "prefix": "fresnel" + "prefix": "fresnel", + "title": "Fresnel Lens and Format Core Vocabulary", + "uri": "http://www.w3.org/2004/09/fresnel" }, { - "title": "50K Gazetteer Vocabulary", "namespace": "http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/", - "uri": "http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/", - "prefix": "g50k" + "prefix": "g50k", + "title": "50K Gazetteer Vocabulary", + "uri": "http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/" }, { - "title": "TotL Game Ontology", "namespace": "http://data.totl.net/game/", - "uri": "http://data.totl.net/game/", - "prefix": "game" + "prefix": "game", + "title": "TotL Game Ontology", + "uri": "http://data.totl.net/game/" }, { - "title": "oeGOV Government Core Ontology", "namespace": "http://www.oegov.org/core/owl/gc#", - "uri": "http://www.oegov.org/core/owl/gc", - "prefix": "gc" + "prefix": "gc", + "title": "oeGOV Government Core Ontology", + "uri": "http://www.oegov.org/core/owl/gc" }, { - "title": "Global City Indicator Foundation Ontology", "namespace": "http://ontology.eil.utoronto.ca/GCI/Foundation/GCI-Foundation.owl#", - "uri": "http://ontology.eil.utoronto.ca/GCI/Foundation/GCI-Foundation.owl", - "prefix": "gci" + "prefix": "gci", + "title": "Global City Indicator Foundation Ontology", + "uri": "http://ontology.eil.utoronto.ca/GCI/Foundation/GCI-Foundation.owl" }, { - "title": "GConsent - a consent ontology based on the GDPR", "namespace": "https://w3id.org/GConsent#", - "uri": "https://w3id.org/GConsent", - "prefix": "gcon" + "prefix": "gcon", + "title": "GConsent - a consent ontology based on the GDPR", + "uri": "https://w3id.org/GConsent" }, { - "title": "Government Data Vocabulary", "namespace": "http://reference.data.gov/def/govdata/", - "uri": "http://vocab.data.gov/gd", - "prefix": "gd" + "prefix": "gd", + "title": "Government Data Vocabulary", + "uri": "http://vocab.data.gov/gd" }, { - "title": "The GDPR Provenance ontology", "namespace": "https://w3id.org/GDPRov#", - "uri": "https://w3id.org/GDPRov", - "prefix": "gdprov" + "prefix": "gdprov", + "title": "The GDPR Provenance ontology", + "uri": "https://w3id.org/GDPRov" }, { - "title": "GDPR text EXTensions", "namespace": "https://w3id.org/GDPRtEXT#", - "uri": "https://w3id.org/GDPRtEXT", - "prefix": "gdprt" + "prefix": "gdprt", + "title": "GDPR text EXTensions", + "uri": "https://w3id.org/GDPRtEXT" }, { - "title": "Vocabulary for Linked Genealogical Data", "namespace": "http://purl.org/gen/0.1#", - "uri": "http://purl.org/gen/0.1#", - "prefix": "gen" + "prefix": "gen", + "title": "Vocabulary for Linked Genealogical Data", + "uri": "http://purl.org/gen/0.1#" }, { - "title": "WGS84 Geo Positioning", "namespace": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "uri": "http://www.w3.org/2003/01/geo/wgs84_pos", - "prefix": "geo" + "prefix": "geo", + "title": "WGS84 Geo Positioning", + "uri": "http://www.w3.org/2003/01/geo/wgs84_pos" }, { - "title": "Administrative vocabulary for Norway", "namespace": "http://vocab.lenka.no/geo-deling#", - "uri": "http://vocab.lenka.no/geo-deling", - "prefix": "geod" + "prefix": "geod", + "title": "Administrative vocabulary for Norway", + "uri": "http://vocab.lenka.no/geo-deling" }, { - "title": "Ontology of administrative units at IGN-France", "namespace": "http://data.ign.fr/def/geofla#", - "uri": "http://data.ign.fr/def/geofla", - "prefix": "geofla" + "prefix": "geofla", + "title": "Ontology of administrative units at IGN-France", + "uri": "http://data.ign.fr/def/geofla" }, { - "title": "Ontology for geometry", "namespace": "http://data.ign.fr/def/geometrie#", - "uri": "http://data.ign.fr/def/geometrie", - "prefix": "geom" + "prefix": "geom", + "title": "Ontology for geometry", + "uri": "http://data.ign.fr/def/geometrie" }, { - "title": "Global Legal Entity Identifier Foundation Level 1 Ontology - Who Is Who", "namespace": "https://www.gleif.org/ontology/L1/", - "uri": "https://www.gleif.org/ontology/L1/", - "prefix": "gleif-L1" + "prefix": "gleif-L1", + "title": "Global Legal Entity Identifier Foundation Level 1 Ontology - Who Is Who", + "uri": "https://www.gleif.org/ontology/L1/" }, { - "title": "Global Legal Entity Identifier Foundation Level 2 Ontology - Who Owns Whom", "namespace": "https://www.gleif.org/ontology/L2/", - "uri": "https://www.gleif.org/ontology/L2/", - "prefix": "gleif-L2" + "prefix": "gleif-L2", + "title": "Global Legal Entity Identifier Foundation Level 2 Ontology - Who Owns Whom", + "uri": "https://www.gleif.org/ontology/L2/" }, { - "title": "Global Legal Entity Identifier Foundation Base Ontology", "namespace": "https://www.gleif.org/ontology/Base/", - "uri": "https://www.gleif.org/ontology/Base/", - "prefix": "gleif-base" + "prefix": "gleif-base", + "title": "Global Legal Entity Identifier Foundation Base Ontology", + "uri": "https://www.gleif.org/ontology/Base/" }, { - "title": "Entity Legal Form Ontology", "namespace": "https://www.gleif.org/ontology/EntityLegalForm/", - "uri": "https://www.gleif.org/ontology/EntityLegalForm/", - "prefix": "gleif-elf" + "prefix": "gleif-elf", + "title": "Entity Legal Form Ontology", + "uri": "https://www.gleif.org/ontology/EntityLegalForm/" }, { - "title": "Global Legal Entity Identifier Foundation Geocoding Ontology", "namespace": "https://www.gleif.org/ontology/Geocoding/", - "uri": "https://www.gleif.org/ontology/Geocoding/", - "prefix": "gleif-geo" + "prefix": "gleif-geo", + "title": "Global Legal Entity Identifier Foundation Geocoding Ontology", + "uri": "https://www.gleif.org/ontology/Geocoding/" }, { - "title": "Global Legal Entity Identifier Foundation Registration Authority Ontology", "namespace": "https://www.gleif.org/ontology/RegistrationAuthority/", - "uri": "https://www.gleif.org/ontology/RegistrationAuthority/", - "prefix": "gleif-ra" + "prefix": "gleif-ra", + "title": "Global Legal Entity Identifier Foundation Registration Authority Ontology", + "uri": "https://www.gleif.org/ontology/RegistrationAuthority/" }, { - "title": "Global Legal Entity Identifier Foundation Reporting Exception Ontology", "namespace": "https://www.gleif.org/ontology/ReportingException/", - "uri": "https://www.gleif.org/ontology/ReportingException/", - "prefix": "gleif-repex" + "prefix": "gleif-repex", + "title": "Global Legal Entity Identifier Foundation Reporting Exception Ontology", + "uri": "https://www.gleif.org/ontology/ReportingException/" }, { - "title": "OGC Geometry", "namespace": "http://www.opengis.net/ont/gml#", - "uri": "http://www.opengis.net/ont/gml", - "prefix": "gml" + "prefix": "gml", + "title": "OGC Geometry", + "uri": "http://www.opengis.net/ont/gml" }, { - "title": "The Geonames ontology", "namespace": "http://www.geonames.org/ontology#", - "uri": "http://www.geonames.org/ontology", - "prefix": "gn" + "prefix": "gn", + "title": "The Geonames ontology", + "uri": "http://www.geonames.org/ontology" }, { - "title": "GND Ontology", "namespace": "http://d-nb.info/standards/elementset/gnd#", - "uri": "http://d-nb.info/standards/elementset/gnd#", - "prefix": "gndo" + "prefix": "gndo", + "title": "GND Ontology", + "uri": "http://d-nb.info/standards/elementset/gnd#" }, { - "title": "General Ontology for Linguistic Description", "namespace": "http://purl.org/linguistics/gold/", - "uri": "http://purl.org/linguistics/gold", - "prefix": "gold" + "prefix": "gold", + "title": "General Ontology for Linguistic Description", + "uri": "http://purl.org/linguistics/gold" }, { - "title": "GOM: Geometry Metadata Ontology", "namespace": "https://w3id.org/gom#", - "uri": "https://w3id.org/gom", - "prefix": "gom" + "prefix": "gom", + "title": "GOM: Geometry Metadata Ontology", + "uri": "https://w3id.org/gom" }, { - "title": "Ontology for modelling historic administrative information.", "namespace": "http://gov.genealogy.net/ontology.owl#", - "uri": "http://gov.genealogy.net/ontology.owl", - "prefix": "gov" + "prefix": "gov", + "title": "Ontology for modelling historic administrative information.", + "uri": "http://gov.genealogy.net/ontology.owl" }, { - "title": "The GoodRelations Ontology for Semantic Web-based E-Commerce", "namespace": "http://purl.org/goodrelations/v1#", - "uri": "http://purl.org/goodrelations/v1", - "prefix": "gr" + "prefix": "gr", + "title": "The GoodRelations Ontology for Semantic Web-based E-Commerce", + "uri": "http://purl.org/goodrelations/v1" }, { - "title": "Gleaning Resource Descriptions from Dialects of Languages Vocabulary", "namespace": "http://www.w3.org/2003/g/data-view#", - "uri": "http://www.w3.org/2003/g/data-view", - "prefix": "grddl" + "prefix": "grddl", + "title": "Gleaning Resource Descriptions from Dialects of Languages Vocabulary", + "uri": "http://www.w3.org/2003/g/data-view" }, { - "title": "Generic Specific Ontology", "namespace": "http://www.w3.org/2006/gen/ont#", - "uri": "http://www.w3.org/2006/gen/ont", - "prefix": "gso" + "prefix": "gso", + "title": "Generic Specific Ontology", + "uri": "http://www.w3.org/2006/gen/ont" }, { - "title": "OGC GeoSPARQL", "namespace": "http://www.opengis.net/ont/geosparql#", - "uri": "http://www.opengis.net/ont/geosparql", - "prefix": "gsp" + "prefix": "gsp", + "title": "OGC GeoSPARQL", + "uri": "http://www.opengis.net/ont/geosparql" }, { - "title": "General Transit Feed Specification", "namespace": "http://vocab.gtfs.org/terms#", - "uri": "http://vocab.gtfs.org/terms#", - "prefix": "gtfs" + "prefix": "gtfs", + "title": "General Transit Feed Specification", + "uri": "http://vocab.gtfs.org/terms#" }, { - "title": "Geologic Timescale model", "namespace": "http://resource.geosciml.org/ontology/timescale/gts#", - "uri": "http://resource.geosciml.org/ontology/timescale/gts", - "prefix": "gts" + "prefix": "gts", + "title": "Geologic Timescale model", + "uri": "http://resource.geosciml.org/ontology/timescale/gts" }, { - "title": "Getty Vocabulary Program ontology", "namespace": "http://vocab.getty.edu/ontology#", - "uri": "http://vocab.getty.edu/ontology", - "prefix": "gvp" + "prefix": "gvp", + "title": "Getty Vocabulary Program ontology", + "uri": "http://vocab.getty.edu/ontology" }, { - "title": "Home Activity", "namespace": "http://sensormeasurement.appspot.com/ont/home/homeActivity#", - "uri": "http://sensormeasurement.appspot.com/ont/home/homeActivity#", - "prefix": "ha" + "prefix": "ha", + "title": "Home Activity", + "uri": "http://sensormeasurement.appspot.com/ont/home/homeActivity#" }, { - "title": "Hypermedia Controls Ontology", "namespace": "https://www.w3.org/2019/wot/hypermedia#", - "uri": "https://www.w3.org/2019/wot/hypermedia#", - "prefix": "hctl" + "prefix": "hctl", + "title": "Hypermedia Controls Ontology", + "uri": "https://www.w3.org/2019/wot/hypermedia#" }, { - "title": "HIFM Ontology", "namespace": "http://purl.org/net/hifm/ontology#", - "uri": "http://purl.org/net/hifm/ontology#", - "prefix": "hifm" + "prefix": "hifm", + "title": "HIFM Ontology", + "uri": "http://purl.org/net/hifm/ontology#" }, { - "title": "Holding Ontology", "namespace": "http://purl.org/ontology/holding#", - "uri": "http://purl.org/ontology/holding", - "prefix": "holding" + "prefix": "holding", + "title": "Holding Ontology", + "uri": "http://purl.org/ontology/holding" }, { - "title": "Hospital Vocabulary", "namespace": "http://health.data.gov/def/hospital/", - "uri": "http://vocab.data.gov/hosp", - "prefix": "hosp" + "prefix": "hosp", + "title": "Hospital Vocabulary", + "uri": "http://vocab.data.gov/hosp" }, { - "title": "Haystack Tagging Ontology", "namespace": "http://vcharpenay.github.io/hto/hto.xml#", - "uri": "http://vcharpenay.github.io/hto/hto.xml", - "prefix": "hto" + "prefix": "hto", + "title": "Haystack Tagging Ontology", + "uri": "http://vcharpenay.github.io/hto/hto.xml" }, { - "title": "HTTP in RDF", "namespace": "http://www.w3.org/2011/http#", - "uri": "http://www.w3.org/2011/http", - "prefix": "http" + "prefix": "http", + "title": "HTTP in RDF", + "uri": "http://www.w3.org/2011/http" }, { - "title": "IBIS Vocabulary", "namespace": "https://privatealpha.com/ontology/ibis/1#", - "uri": "https://privatealpha.com/ontology/ibis/1#", - "prefix": "ibis" + "prefix": "ibis", + "title": "IBIS Vocabulary", + "uri": "https://privatealpha.com/ontology/ibis/1#" }, { - "title": "International Contact Ontology: Addresses, phone numbers and emails.", "namespace": "http://ontology.eil.utoronto.ca/icontact.owl#", - "uri": "http://ontology.eil.utoronto.ca/icontact.owl", - "prefix": "ic" + "prefix": "ic", + "title": "International Contact Ontology: Addresses, phone numbers and emails.", + "uri": "http://ontology.eil.utoronto.ca/icontact.owl" }, { - "title": "Demographic ontology from the French Statistics Institute", "namespace": "http://rdf.insee.fr/def/demo#", - "uri": "http://rdf.insee.fr/def/demo", - "prefix": "idemo" + "prefix": "idemo", + "title": "Demographic ontology from the French Statistics Institute", + "uri": "http://rdf.insee.fr/def/demo" }, { - "title": "Ontology of digital identity.", "namespace": "http://www.identity.org/ontologies/identity.owl#", - "uri": "http://www.identity.org/ontologies/identity.owl", - "prefix": "identity" + "prefix": "identity", + "title": "Ontology of digital identity.", + "uri": "http://www.identity.org/ontologies/identity.owl" }, { - "title": "IFC4_ADD1", "namespace": "https://w3id.org/ifc/IFC4_ADD1#", - "uri": "https://w3id.org/ifc/IFC4_ADD1", - "prefix": "ifc" + "prefix": "ifc", + "title": "IFC4_ADD1", + "uri": "https://w3id.org/ifc/IFC4_ADD1" }, { - "title": "French Statistical ontology for geolocation", "namespace": "http://rdf.insee.fr/def/geo#", - "uri": "http://rdf.insee.fr/def/geo", - "prefix": "igeo" + "prefix": "igeo", + "title": "French Statistical ontology for geolocation", + "uri": "http://rdf.insee.fr/def/geo" }, { - "title": "Ontology of coordinates reference systems", "namespace": "http://data.ign.fr/def/ignf#", - "uri": "http://data.ign.fr/def/ignf", - "prefix": "ignf" + "prefix": "ignf", + "title": "Ontology of coordinates reference systems", + "uri": "http://data.ign.fr/def/ignf" }, { - "title": "The IMGpedia Ontology", "namespace": "http://imgpedia.dcc.uchile.cl/ontology#", - "uri": "http://imgpedia.dcc.uchile.cl/ontology", - "prefix": "imo" + "prefix": "imo", + "title": "The IMGpedia Ontology", + "uri": "http://imgpedia.dcc.uchile.cl/ontology" }, { - "title": "Vocabulary to describe incident response by emergency services", "namespace": "http://vocab.resc.info/incident#", - "uri": "http://vocab.resc.info/incident", - "prefix": "incident" + "prefix": "incident", + "title": "Vocabulary to describe incident response by emergency services", + "uri": "http://vocab.resc.info/incident" }, { - "title": "Information Realization", "namespace": "http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl#", - "uri": "http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl", - "prefix": "infor" + "prefix": "infor", + "title": "Information Realization", + "uri": "http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl" }, { - "title": "Ontology for Innovation", "namespace": "http://purl.org/innovation/ns#", - "uri": "http://purl.org/innovation/ns", - "prefix": "inno" + "prefix": "inno", + "title": "Ontology for Innovation", + "uri": "http://purl.org/innovation/ns" }, { - "title": "Intervals Ontology", "namespace": "http://reference.data.gov.uk/def/intervals/", - "uri": "http://reference.data.gov.uk/def/intervals", - "prefix": "interval" + "prefix": "interval", + "title": "Intervals Ontology", + "uri": "http://reference.data.gov.uk/def/intervals" }, { - "title": "Information Objects ontology", "namespace": "http://www.ontologydesignpatterns.org/ont/dul/IOLite.owl#", - "uri": "http://www.ontologydesignpatterns.org/ont/dul/IOLite.owl", - "prefix": "iol" + "prefix": "iol", + "title": "Information Objects ontology", + "uri": "http://www.ontologydesignpatterns.org/ont/dul/IOLite.owl" }, { - "title": "Iot-lite ontology", "namespace": "http://purl.oclc.org/NET/UNIS/fiware/iot-lite#", - "uri": "http://purl.oclc.org/NET/UNIS/fiware/iot-lite#", - "prefix": "iot-lite" + "prefix": "iot-lite", + "title": "Iot-lite ontology", + "uri": "http://purl.oclc.org/NET/UNIS/fiware/iot-lite#" }, { - "title": "IoT-O", "namespace": "http://www.irit.fr/recherches/MELODI/ontologies/IoT-O#", - "uri": "http://www.irit.fr/recherches/MELODI/ontologies/IoT-O", - "prefix": "ioto" + "prefix": "ioto", + "title": "IoT-O", + "uri": "http://www.irit.fr/recherches/MELODI/ontologies/IoT-O" }, { - "title": "The IoTTaxonomy-lite Taxonomy", "namespace": "http://purl.org/iot/vocab/iot-taxonomy-lite#", - "uri": "http://purl.org/iot/vocab/iot-taxonomy-lite#", - "prefix": "iottaxolite" + "prefix": "iottaxolite", + "title": "The IoTTaxonomy-lite Taxonomy", + "uri": "http://purl.org/iot/vocab/iot-taxonomy-lite#" }, { - "title": "IPO - Issue Procedure Ontology", "namespace": "http://purl.org/ipo/core#", - "uri": "http://purl.org/ipo/core", - "prefix": "ipo" + "prefix": "ipo", + "title": "IPO - Issue Procedure Ontology", + "uri": "http://purl.org/ipo/core" }, { - "title": "The Identity of Resources on the Web ontology", "namespace": "http://www.ontologydesignpatterns.org/ont/web/irw.owl#", - "uri": "http://www.ontologydesignpatterns.org/ont/web/irw.owl", - "prefix": "irw" + "prefix": "irw", + "title": "The Identity of Resources on the Web ontology", + "uri": "http://www.ontologydesignpatterns.org/ont/web/irw.owl" }, { - "title": "Info Service Ontology", "namespace": "http://purl.org/ontology/is/core#", - "uri": "http://purl.org/ontology/is/core#", - "prefix": "is" + "prefix": "is", + "title": "Info Service Ontology", + "uri": "http://purl.org/ontology/is/core#" }, { - "title": "ISO 25964 SKOS extension", "namespace": "http://purl.org/iso25964/skos-thes#", - "uri": "http://purl.org/iso25964/skos-thes", - "prefix": "iso-thes" + "prefix": "iso-thes", + "title": "ISO 25964 SKOS extension", + "uri": "http://purl.org/iso25964/skos-thes" }, { - "title": "ISO 37120 indicator URIs", "namespace": "http://ontology.eil.utoronto.ca/ISO37120.owl#", - "uri": "http://ontology.eil.utoronto.ca/ISO37120.owl", - "prefix": "iso37120" + "prefix": "iso37120", + "title": "ISO 37120 indicator URIs", + "uri": "http://ontology.eil.utoronto.ca/ISO37120.owl" }, { - "title": "ISO19160-1:2015 Address ontology", "namespace": "http://reference.data.gov.au/def/ont/iso19160-1-address#", - "uri": "http://reference.data.gov.au/def/ont/iso19160-1-address", - "prefix": "isoadr" + "prefix": "isoadr", + "title": "ISO19160-1:2015 Address ontology", + "uri": "http://reference.data.gov.au/def/ont/iso19160-1-address" }, { - "title": "Ispra Ontology", "namespace": "http://dati.isprambiente.it/ontology/core#", - "uri": "http://dati.isprambiente.it/ontology/core#", - "prefix": "ispra" + "prefix": "ispra", + "title": "Ispra Ontology", + "uri": "http://dati.isprambiente.it/ontology/core#" }, { - "title": "Istex ontology for scholarly documents and extracted entities", "namespace": "https://data.istex.fr/ontology/istex#", - "uri": "https://data.istex.fr/ontology/istex#", - "prefix": "istex" + "prefix": "istex", + "title": "Istex ontology for scholarly documents and extracted entities", + "uri": "https://data.istex.fr/ontology/istex#" }, { - "title": "IT Service Management Ontology", "namespace": "http://ontology.it/itsmo/v1#", - "uri": "http://ontology.it/itsmo/v1", - "prefix": "itsmo" + "prefix": "itsmo", + "title": "IT Service Management Ontology", + "uri": "http://ontology.it/itsmo/v1" }, { - "title": "JSON Schema in RDF", "namespace": "https://www.w3.org/2019/wot/json-schema#", - "uri": "https://www.w3.org/2019/wot/json-schema#", - "prefix": "jsonsc" + "prefix": "jsonsc", + "title": "JSON Schema in RDF", + "uri": "https://www.w3.org/2019/wot/json-schema#" }, { - "title": "Ontology of Building Accessibility", "namespace": "http://w3id.org/charta77/jup/", - "uri": "http://w3id.org/charta77/jup", - "prefix": "jup" + "prefix": "jup", + "title": "Ontology of Building Accessibility", + "uri": "http://w3id.org/charta77/jup" }, { - "title": "Juso Ontology", "namespace": "http://rdfs.co/juso/", - "uri": "http://rdfs.co/juso/", - "prefix": "juso" + "prefix": "juso", + "title": "Juso Ontology", + "uri": "http://rdfs.co/juso/" }, { - "title": "South Korea Extension to Juso Ontology", "namespace": "http://rdfs.co/juso/kr/", - "uri": "http://rdfs.co/juso/kr/", - "prefix": "juso.kr" + "prefix": "juso.kr", + "title": "South Korea Extension to Juso Ontology", + "uri": "http://rdfs.co/juso/kr/" }, { - "title": "KEES Ontology", "namespace": "http://linkeddata.center/kees/v1#", - "uri": "http://linkeddata.center/kees/v1", - "prefix": "kees" + "prefix": "kees", + "title": "KEES Ontology", + "uri": "http://linkeddata.center/kees/v1" }, { - "title": "Keys Ontology", "namespace": "http://purl.org/NET/c4dm/keys.owl#", - "uri": "http://purl.org/NET/c4dm/keys.owl", - "prefix": "keys" + "prefix": "keys", + "title": "Keys Ontology", + "uri": "http://purl.org/NET/c4dm/keys.owl" }, { - "title": "km4city, the DISIT Knowledge Model for City and Mobility", "namespace": "http://www.disit.org/km4city/schema#", - "uri": "http://www.disit.org/km4city/schema", - "prefix": "km4c" + "prefix": "km4c", + "title": "km4city, the DISIT Knowledge Model for City and Mobility", + "uri": "http://www.disit.org/km4city/schema" }, { - "title": "label", "namespace": "http://purl.org/net/vocab/2004/03/label#", - "uri": "http://purl.org/net/vocab/2004/03/label", - "prefix": "label" + "prefix": "label", + "title": "label", + "uri": "http://purl.org/net/vocab/2004/03/label" }, { - "title": "Linking Ancient World Data Ontology", "namespace": "http://lawd.info/ontology/", - "uri": "http://lawd.info/ontology/", - "prefix": "lawd" + "prefix": "lawd", + "title": "Linking Ancient World Data Ontology", + "uri": "http://lawd.info/ontology/" }, { - "title": "Lifecycle Schema", "namespace": "http://purl.org/vocab/lifecycle/schema#", - "uri": "http://purl.org/vocab/lifecycle/schema", - "prefix": "lcy" + "prefix": "lcy", + "title": "Lifecycle Schema", + "uri": "http://purl.org/vocab/lifecycle/schema" }, { - "title": "Linked Data Platform", "namespace": "http://www.w3.org/ns/ldp#", - "uri": "http://www.w3.org/ns/ldp#", - "prefix": "ldp" + "prefix": "ldp", + "title": "Linked Data Platform", + "uri": "http://www.w3.org/ns/ldp#" }, { - "title": "Linked Data Rights (LDR)", "namespace": "http://purl.oclc.org/NET/ldr/ns#", - "uri": "http://purl.oclc.org/NET/ldr/ns#", - "prefix": "ldr" + "prefix": "ldr", + "title": "Linked Data Rights (LDR)", + "uri": "http://purl.oclc.org/NET/ldr/ns#" }, { - "title": "Vocabulary for Linked Data Visualization Model", "namespace": "http://linked.opendata.cz/ontology/ldvm/", - "uri": "http://linked.opendata.cz/ontology/ldvm/", - "prefix": "ldvm" + "prefix": "ldvm", + "title": "Vocabulary for Linked Data Visualization Model", + "uri": "http://linked.opendata.cz/ontology/ldvm/" }, { - "title": "LExicon Model for ONtologies", "namespace": "http://lemon-model.net/lemon#", - "uri": "http://lemon-model.net/lemon", - "prefix": "lemon" + "prefix": "lemon", + "title": "LExicon Model for ONtologies", + "uri": "http://lemon-model.net/lemon" }, { - "title": "LexInfo Ontology", "namespace": "http://www.lexinfo.net/ontology/2.0/lexinfo#", - "uri": "http://www.lexinfo.net/ontology/2.0/lexinfo", - "prefix": "lexinfo" + "prefix": "lexinfo", + "title": "LexInfo Ontology", + "uri": "http://www.lexinfo.net/ontology/2.0/lexinfo" }, { - "title": "Library extension of schema.org", "namespace": "http://purl.org/library/", - "uri": "http://purl.org/library/", - "prefix": "lib" + "prefix": "lib", + "title": "Library extension of schema.org", + "uri": "http://purl.org/library/" }, { - "title": "IoT-Lifecycle", "namespace": "http://purl.org/vocab/lifecycle/schema#", - "uri": "http://www.irit.fr/recherches/MELODI/ontologies/IoT-Lifecycle", - "prefix": "lifecycle" + "prefix": "lifecycle", + "title": "IoT-Lifecycle", + "uri": "http://www.irit.fr/recherches/MELODI/ontologies/IoT-Lifecycle" }, { - "title": "Linked Statistical Models Vocabulary", "namespace": "http://purl.org/limo-ontology/limo#", - "uri": "http://purl.org/limo-ontology/limo/", - "prefix": "limo" + "prefix": "limo", + "title": "Linked Statistical Models Vocabulary", + "uri": "http://purl.org/limo-ontology/limo/" }, { - "title": "License Model Ontology", "namespace": "http://purl.org/LiMo/0.1#", - "uri": "http://purl.org/LiMo/0.1#", - "prefix": "limoo" + "prefix": "limoo", + "title": "License Model Ontology", + "uri": "http://purl.org/LiMo/0.1#" }, { - "title": "The Lingvoj Ontology", "namespace": "https://w3id.org/vocab/lingvoj#", - "uri": "https://w3id.org/vocab/lingvoj", - "prefix": "lingvo" + "prefix": "lingvo", + "title": "The Lingvoj Ontology", + "uri": "https://w3id.org/vocab/lingvoj" }, { - "title": "Lightweight Image Ontology", "namespace": "http://purl.org/net/lio#", - "uri": "http://purl.org/net/lio", - "prefix": "lio" + "prefix": "lio", + "title": "Lightweight Image Ontology", + "uri": "http://purl.org/net/lio" }, { - "title": "LinkLion - the Link Discovery Portal", "namespace": "http://www.linklion.org/ontology#", - "uri": "http://www.linklion.org/ontology", - "prefix": "llont" + "prefix": "llont", + "title": "LinkLion - the Link Discovery Portal", + "uri": "http://www.linklion.org/ontology" }, { - "title": "Lexical MetaModel Level 1", "namespace": "http://www.ontologydesignpatterns.org/ont/lmm/LMM_L1.owl#", - "uri": "http://www.ontologydesignpatterns.org/ont/lmm/LMM_L1.owl", - "prefix": "lmm1" + "prefix": "lmm1", + "title": "Lexical MetaModel Level 1", + "uri": "http://www.ontologydesignpatterns.org/ont/lmm/LMM_L1.owl" }, { - "title": "Lexical MetaModel Level 2", "namespace": "http://www.ontologydesignpatterns.org/ont/lmm/LMM_L2.owl#", - "uri": "http://www.ontologydesignpatterns.org/ont/lmm/LMM_L2.owl", - "prefix": "lmm2" + "prefix": "lmm2", + "title": "Lexical MetaModel Level 2", + "uri": "http://www.ontologydesignpatterns.org/ont/lmm/LMM_L2.owl" }, { - "title": "Location Vocabulary", "namespace": "http://purl.org/ctic/infraestructuras/localizacion#", - "uri": "http://purl.org/ctic/infraestructuras/localizacion", - "prefix": "loc" + "prefix": "loc", + "title": "Location Vocabulary", + "uri": "http://purl.org/ctic/infraestructuras/localizacion" }, { - "title": "The LOCAH RDF Vocabulary", "namespace": "http://data.archiveshub.ac.uk/def/", - "uri": "http://data.archiveshub.ac.uk/def/", - "prefix": "locah" + "prefix": "locah", + "title": "The LOCAH RDF Vocabulary", + "uri": "http://data.archiveshub.ac.uk/def/" }, { - "title": "ISA Programme Location Core Vocabulary", "namespace": "http://www.w3.org/ns/locn#", - "uri": "http://www.w3.org/ns/locn", - "prefix": "locn" + "prefix": "locn", + "title": "ISA Programme Location Core Vocabulary", + "uri": "http://www.w3.org/ns/locn" }, { - "title": "Linking Open Descriptions of Events", "namespace": "http://linkedevents.org/ontology/", - "uri": "http://linkedevents.org/ontology/", - "prefix": "lode" + "prefix": "lode", + "title": "Linking Open Descriptions of Events", + "uri": "http://linkedevents.org/ontology/" }, { - "title": "SWAP Logic Ontology", "namespace": "http://www.w3.org/2000/10/swap/log#", - "uri": "http://www.w3.org/2000/10/swap/log", - "prefix": "log" + "prefix": "log", + "title": "SWAP Logic Ontology", + "uri": "http://www.w3.org/2000/10/swap/log" }, { - "title": "Learning Object Metadata Ontology", "namespace": "http://data.opendiscoveryspace.eu/lom_ontology_ods.owl#", - "uri": "http://data.opendiscoveryspace.eu/lom_ontology_ods.owl", - "prefix": "lom" + "prefix": "lom", + "title": "Learning Object Metadata Ontology", + "uri": "http://data.opendiscoveryspace.eu/lom_ontology_ods.owl" }, { - "title": "Linked open specialities RF", "namespace": "http://sparql.sstu.ru:3030/speciality/", - "uri": "http://sparql.sstu.ru:3030/speciality/", - "prefix": "losp" + "prefix": "losp", + "title": "Linked open specialities RF", + "uri": "http://sparql.sstu.ru:3030/speciality/" }, { - "title": "Linked Science Core Vocabulary", "namespace": "http://linkedscience.org/lsc/ns#", - "uri": "http://linkedscience.org/lsc/ns#", - "prefix": "lsc" + "prefix": "lsc", + "title": "Linked Science Core Vocabulary", + "uri": "http://linkedscience.org/lsc/ns#" }, { - "title": "ELSEWeb Lifemapper Ontology", "namespace": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper.owl#", - "uri": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper.owl", - "prefix": "lslife" + "prefix": "lslife", + "title": "ELSEWeb Lifemapper Ontology", + "uri": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper.owl" }, { - "title": "ELSEWeb Mappings Ontology", "namespace": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-data.owl#", - "uri": "http://ontology.cybershare.utep.edu/ELSEWeb/mappings/elseweb-mappings.owl", - "prefix": "lsmap" + "prefix": "lsmap", + "title": "ELSEWeb Mappings Ontology", + "uri": "http://ontology.cybershare.utep.edu/ELSEWeb/mappings/elseweb-mappings.owl" }, { - "title": "The Linked SPARQL Queries Vocabulary (LSQ(V))", "namespace": "http://lsq.aksw.org/vocab#", - "uri": "http://lsq.aksw.org/vocab", - "prefix": "lsq" + "prefix": "lsq", + "title": "The Linked SPARQL Queries Vocabulary (LSQ(V))", + "uri": "http://lsq.aksw.org/vocab" }, { - "title": "ELSEWeb Data Ontology", "namespace": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-data.owl#", - "uri": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-data.owl", - "prefix": "lsweb" + "prefix": "lsweb", + "title": "ELSEWeb Data Ontology", + "uri": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-data.owl" }, { - "title": "ELSEWeb Modelling Ontology", "namespace": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-modelling.owl#", - "uri": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-modelling.owl", - "prefix": "lswmo" + "prefix": "lswmo", + "title": "ELSEWeb Modelling Ontology", + "uri": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-modelling.owl" }, { - "title": "ELSEWeb Lifemapper Parameters Ontology", "namespace": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper-parameters.owl#", - "uri": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper-parameters.owl", - "prefix": "lswpm" + "prefix": "lswpm", + "title": "ELSEWeb Lifemapper Parameters Ontology", + "uri": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper-parameters.owl" }, { - "title": "Ludo Ontology", "namespace": "http://ns.inria.fr/ludo", - "uri": "http://ns.inria.fr/ludo", - "prefix": "ludo" + "prefix": "ludo", + "title": "Ludo Ontology", + "uri": "http://ns.inria.fr/ludo" }, { - "title": "lobid vocab", "namespace": "http://purl.org/lobid/lv#", - "uri": "http://purl.org/lobid/lv", - "prefix": "lv" + "prefix": "lv", + "title": "lobid vocab", + "uri": "http://purl.org/lobid/lv" }, { - "title": "Linking-you vocabulary", "namespace": "http://purl.org/linkingyou/", - "uri": "http://purl.org/linkingyou/", - "prefix": "lyou" + "prefix": "lyou", + "title": "Linking-you vocabulary", + "uri": "http://purl.org/linkingyou/" }, { - "title": "The Machine-to-Machine Measurement (M3) Lite Ontology", "namespace": "http://purl.org/iot/vocab/m3-lite#", - "uri": "http://purl.org/iot/vocab/m3-lite#", - "prefix": "m3lite" + "prefix": "m3lite", + "title": "The Machine-to-Machine Measurement (M3) Lite Ontology", + "uri": "http://purl.org/iot/vocab/m3-lite#" }, { - "title": "Ontology for Media Resources", "namespace": "http://www.w3.org/ns/ma-ont#", - "uri": "http://www.w3.org/ns/ma-ont", - "prefix": "ma-ont" + "prefix": "ma-ont", + "title": "Ontology for Media Resources", + "uri": "http://www.w3.org/ns/ma-ont" }, { - "title": "Metadata Authority Description Schema", "namespace": "http://www.loc.gov/mads/rdf/v1#", - "uri": "http://www.loc.gov/mads/rdf/v1", - "prefix": "mads" + "prefix": "mads", + "title": "Metadata Authority Description Schema", + "uri": "http://www.loc.gov/mads/rdf/v1" }, { - "title": "Marl Ontology Specification", "namespace": "http://www.gsi.dit.upm.es/ontologies/marl/ns#", - "uri": "http://www.gsi.dit.upm.es/ontologies/marl/ns", - "prefix": "marl" + "prefix": "marl", + "title": "Marl Ontology Specification", + "uri": "http://www.gsi.dit.upm.es/ontologies/marl/ns" }, { - "title": "Mobile Agents Security", "namespace": "http://securitytoolbox.appspot.com/MASO#", - "uri": "http://securitytoolbox.appspot.com/MASO", - "prefix": "maso" + "prefix": "maso", + "title": "Mobile Agents Security", + "uri": "http://securitytoolbox.appspot.com/MASO" }, { - "title": "RDF vocabulary to describe a Multidimensional Interface.", "namespace": "https://w3id.org/multidimensional-interface/ontology#", - "uri": "https://w3id.org/multidimensional-interface/ontology", - "prefix": "mdi" + "prefix": "mdi", + "title": "RDF vocabulary to describe a Multidimensional Interface.", + "uri": "https://w3id.org/multidimensional-interface/ontology" }, { - "title": "The Media RDF Vocabulary", "namespace": "http://purl.org/media#", - "uri": "http://purl.org/media", - "prefix": "media" + "prefix": "media", + "title": "The Media RDF Vocabulary", + "uri": "http://purl.org/media" }, { - "title": "MedRed ontology: clinical data acquisition model", "namespace": "http://w3id.org/medred/medred#", - "uri": "http://w3id.org/medred/medred#", - "prefix": "medred" + "prefix": "medred", + "title": "MedRed ontology: clinical data acquisition model", + "uri": "http://w3id.org/medred/medred#" }, { - "title": "MEX Algorithm Ontology", "namespace": "http://mex.aksw.org/mex-algo#", - "uri": "http://mex.aksw.org/mex-algo", - "prefix": "mexalgo" + "prefix": "mexalgo", + "title": "MEX Algorithm Ontology", + "uri": "http://mex.aksw.org/mex-algo" }, { - "title": "MEX Core Vocabulary", "namespace": "http://mex.aksw.org/mex-core#", - "uri": "http://mex.aksw.org/mex-core", - "prefix": "mexcore" + "prefix": "mexcore", + "title": "MEX Core Vocabulary", + "uri": "http://mex.aksw.org/mex-core" }, { - "title": "MEX Performance Ontology", "namespace": "http://mex.aksw.org/mex-perf#", - "uri": "http://mex.aksw.org/mex-perf", - "prefix": "mexperf" + "prefix": "mexperf", + "title": "MEX Performance Ontology", + "uri": "http://mex.aksw.org/mex-perf" }, { - "title": "Machine Learning Schema", "namespace": "http://www.w3.org/ns/mls#", - "uri": "http://www.w3.org/ns/mls", - "prefix": "mls" + "prefix": "mls", + "title": "Machine Learning Schema", + "uri": "http://www.w3.org/ns/mls" }, { - "title": "Music Ontology", "namespace": "http://purl.org/ontology/mo/", - "uri": "http://purl.org/ontology/mo/", - "prefix": "mo" + "prefix": "mo", + "title": "Music Ontology", + "uri": "http://purl.org/ontology/mo/" }, { - "title": "Management of a Crisis Vocabulary", "namespace": "http://observedchange.com/moac/ns#", - "uri": "http://www.observedchange.com/moac/ns#", - "prefix": "moac" + "prefix": "moac", + "title": "Management of a Crisis Vocabulary", + "uri": "http://www.observedchange.com/moac/ns#" }, { - "title": "MOD: Metadata for Ontology Description and publication", "namespace": "http://www.isibang.ac.in/ns/mod#", - "uri": "http://www.isibang.ac.in/ns/mod", - "prefix": "mod" + "prefix": "mod", + "title": "MOD: Metadata for Ontology Description and publication", + "uri": "http://www.isibang.ac.in/ns/mod" }, { - "title": "ModSci, Modern Science Ontology.", "namespace": "https://w3id.org/skgo/modsci#", - "uri": "https://w3id.org/skgo/modsci#", - "prefix": "modsci" + "prefix": "modsci", + "title": "ModSci, Modern Science Ontology.", + "uri": "https://w3id.org/skgo/modsci#" }, { - "title": "MARC Code List for Relators", "namespace": "http://id.loc.gov/vocabulary/relators/", - "uri": "http://id.loc.gov/vocabulary/relators", - "prefix": "mrel" + "prefix": "mrel", + "title": "MARC Code List for Relators", + "uri": "http://id.loc.gov/vocabulary/relators" }, { - "title": "Minimal Service Model", "namespace": "http://iserve.kmi.open.ac.uk/ns/msm#", - "uri": "http://iserve.kmi.open.ac.uk/ns/msm", - "prefix": "msm" + "prefix": "msm", + "title": "Minimal Service Model", + "uri": "http://iserve.kmi.open.ac.uk/ns/msm" }, { - "title": "MarineTLO Ontology", "namespace": "http://www.ics.forth.gr/isl/MarineTLO/v4/marinetlo.owl#", - "uri": "http://www.ics.forth.gr/isl/MarineTLO/v4/marinetlo.owl", - "prefix": "mtlo" + "prefix": "mtlo", + "title": "MarineTLO Ontology", + "uri": "http://www.ics.forth.gr/isl/MarineTLO/v4/marinetlo.owl" }, { - "title": "Meta-Uncertainty", "namespace": "http://ns.inria.fr/munc#", - "uri": "http://ns.inria.fr/munc/", - "prefix": "munc" + "prefix": "munc", + "title": "Meta-Uncertainty", + "uri": "http://ns.inria.fr/munc/" }, { - "title": "DOREMUS is an extension of the FRBRoo model for describing the music.", "namespace": "http://data.doremus.org/ontology#", - "uri": "http://data.doremus.org/ontology#", - "prefix": "mus" + "prefix": "mus", + "title": "DOREMUS is an extension of the FRBRoo model for describing the music.", + "uri": "http://data.doremus.org/ontology#" }, { - "title": "Music Vocabulary", "namespace": "http://www.kanzaki.com/ns/music#", - "uri": "http://www.kanzaki.com/ns/music", - "prefix": "music" + "prefix": "music", + "title": "Music Vocabulary", + "uri": "http://www.kanzaki.com/ns/music" }, { - "title": "Modular Unified Tagging Ontology (MUTO)", "namespace": "http://purl.org/muto/core#", - "uri": "http://purl.org/muto/core", - "prefix": "muto" + "prefix": "muto", + "title": "Modular Unified Tagging Ontology (MUTO)", + "uri": "http://purl.org/muto/core" }, { - "title": "MobiVoc: Open Mobility Vocabulary", "namespace": "http://schema.mobivoc.org/", - "uri": "http://schema.mobivoc.org/", - "prefix": "mv" + "prefix": "mv", + "title": "MobiVoc: Open Mobility Vocabulary", + "uri": "http://schema.mobivoc.org/" }, { - "title": "Media Value Chain Ontology", "namespace": "http://purl.oclc.org/NET/mvco.owl#", - "uri": "http://purl.oclc.org/NET/mvco.owl", - "prefix": "mvco" + "prefix": "mvco", + "title": "Media Value Chain Ontology", + "uri": "http://purl.oclc.org/NET/mvco.owl" }, { - "title": "NEPOMUK Annotation Ontology", "namespace": "http://www.semanticdesktop.org/ontologies/2007/08/15/nao#", - "uri": "http://www.semanticdesktop.org/ontologies/2007/08/15/nao", - "prefix": "nao" + "prefix": "nao", + "title": "NEPOMUK Annotation Ontology", + "uri": "http://www.semanticdesktop.org/ontologies/2007/08/15/nao" }, { - "title": "NEPOMUK Calendar Ontology", "namespace": "http://www.semanticdesktop.org/ontologies/2007/04/02/ncal#", - "uri": "http://www.semanticdesktop.org/ontologies/2007/04/02/ncal", - "prefix": "ncal" + "prefix": "ncal", + "title": "NEPOMUK Calendar Ontology", + "uri": "http://www.semanticdesktop.org/ontologies/2007/04/02/ncal" }, { - "title": "NEPOMUK Contact Ontology", "namespace": "http://www.semanticdesktop.org/ontologies/2007/03/22/nco#", - "uri": "http://www.semanticdesktop.org/ontologies/2007/03/22/nco", - "prefix": "nco" + "prefix": "nco", + "title": "NEPOMUK Contact Ontology", + "uri": "http://www.semanticdesktop.org/ontologies/2007/03/22/nco" }, { - "title": "NEPOMUK File Ontology", "namespace": "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#", - "uri": "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo", - "prefix": "nfo" + "prefix": "nfo", + "title": "NEPOMUK File Ontology", + "uri": "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo" }, { - "title": "NeoGeo Geometry Ontology", "namespace": "http://geovocab.org/geometry#", - "uri": "http://geovocab.org/geometry", - "prefix": "ngeo" + "prefix": "ngeo", + "title": "NeoGeo Geometry Ontology", + "uri": "http://geovocab.org/geometry" }, { - "title": "NEPOMUK Information Element Core Ontology", "namespace": "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#", - "uri": "http://www.semanticdesktop.org/ontologies/2007/01/19/nie", - "prefix": "nie" + "prefix": "nie", + "title": "NEPOMUK Information Element Core Ontology", + "uri": "http://www.semanticdesktop.org/ontologies/2007/01/19/nie" }, { - "title": "NLP Interchange Format", "namespace": "http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#", - "uri": "http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#", - "prefix": "nif" + "prefix": "nif", + "title": "NLP Interchange Format", + "uri": "http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#" }, { - "title": "National Library of Korea Ontology", "namespace": "http://lod.nl.go.kr/ontology/", - "uri": "http://lod.nl.go.kr/ontology/", - "prefix": "nlon" + "prefix": "nlon", + "title": "National Library of Korea Ontology", + "uri": "http://lod.nl.go.kr/ontology/" }, { - "title": "The Neural Network Ontology", "namespace": "https://w3id.org/nno/ontology#", - "uri": "https://w3id.org/nno/ontology", - "prefix": "nno" + "prefix": "nno", + "title": "The Neural Network Ontology", + "uri": "https://w3id.org/nno/ontology" }, { - "title": "Nature.com Core Ontology", "namespace": "http://ns.nature.com/terms/", - "uri": "http://ns.nature.com/terms/", - "prefix": "npg" + "prefix": "npg", + "title": "Nature.com Core Ontology", + "uri": "http://ns.nature.com/terms/" }, { - "title": "NEPOMUK Representational Language", "namespace": "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#", - "uri": "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl", - "prefix": "nrl" + "prefix": "nrl", + "title": "NEPOMUK Representational Language", + "uri": "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl" }, { - "title": "Normative Requirements Vocabulary", "namespace": "http://ns.inria.fr/nrv#", - "uri": "http://ns.inria.fr/nrv", - "prefix": "nrv" + "prefix": "nrv", + "title": "Normative Requirements Vocabulary", + "uri": "http://ns.inria.fr/nrv" }, { - "title": "A News Storyline Ontology", "namespace": "http://purl.org/ontology/storyline/", - "uri": "http://purl.org/ontology/storyline", - "prefix": "nsl" + "prefix": "nsl", + "title": "A News Storyline Ontology", + "uri": "http://purl.org/ontology/storyline" }, { - "title": "Nice Tag Ontology", "namespace": "http://ns.inria.fr/nicetag/2010/09/09/voc#", - "uri": "http://ns.inria.fr/nicetag/2010/09/09/voc", - "prefix": "ntag" + "prefix": "ntag", + "title": "Nice Tag Ontology", + "uri": "http://ns.inria.fr/nicetag/2010/09/09/voc" }, { - "title": "Open Annotation Data Model", "namespace": "http://www.w3.org/ns/oa#", - "uri": "http://www.w3.org/ns/oa#", - "prefix": "oa" + "prefix": "oa", + "title": "Open Annotation Data Model", + "uri": "http://www.w3.org/ns/oa#" }, { - "title": "Ontology for archival description", "namespace": "http://culturalis.org/oad#", - "uri": "http://culturalis.org/oad#", - "prefix": "oad" + "prefix": "oad", + "title": "Ontology for archival description", + "uri": "http://culturalis.org/oad#" }, { - "title": "Open NEE Model", "namespace": "http://www.ics.forth.gr/isl/oae/core#", - "uri": "http://www.ics.forth.gr/isl/oae/core", - "prefix": "oae" + "prefix": "oae", + "title": "Open NEE Model", + "uri": "http://www.ics.forth.gr/isl/oae/core" }, { - "title": "Ontology for Biomedical Investigation", "namespace": "http://purl.obolibrary.org/obo/", - "uri": "http://purl.obolibrary.org/obo/obi.owl", - "prefix": "obo" + "prefix": "obo", + "title": "Ontology for Biomedical Investigation", + "uri": "http://purl.obolibrary.org/obo/obi.owl" }, { - "title": "Object with states ontology", "namespace": "http://delicias.dia.fi.upm.es/ontologies/ObjectWithStates.owl#", - "uri": "http://delicias.dia.fi.upm.es/ontologies/ObjectWithStates.owl", - "prefix": "obws" + "prefix": "obws", + "title": "Object with states ontology", + "uri": "http://delicias.dia.fi.upm.es/ontologies/ObjectWithStates.owl" }, { - "title": "Ontology of Italian Deputy Chamber", "namespace": "http://dati.camera.it/ocd/", - "uri": "http://dati.camera.it/ocd/", - "prefix": "ocd" + "prefix": "ocd", + "title": "Ontology of Italian Deputy Chamber", + "uri": "http://dati.camera.it/ocd/" }, { - "title": "Schema for an Open Contracting Release (OCDS)", "namespace": "http://purl.org/onto-ocds/ocds#", - "uri": "http://purl.org/onto-ocds/ocds", - "prefix": "ocds" + "prefix": "ocds", + "title": "Schema for an Open Contracting Release (OCDS)", + "uri": "http://purl.org/onto-ocds/ocds" }, { - "title": "Open Data Applications Vocabulary", "namespace": "http://vocab.deri.ie/odapp#", - "uri": "http://vocab.deri.ie/odapp", - "prefix": "odapp" + "prefix": "odapp", + "title": "Open Data Applications Vocabulary", + "uri": "http://vocab.deri.ie/odapp" }, { - "title": "The vocabulary for (L)OD ideas and applications", "namespace": "http://semweb.mmlab.be/ns/odapps#", - "uri": "http://semweb.mmlab.be/ns/odapps", - "prefix": "odapps" + "prefix": "odapps", + "title": "The vocabulary for (L)OD ideas and applications", + "uri": "http://semweb.mmlab.be/ns/odapps" }, { - "title": "Ontology Design Pattern Participation", "namespace": "http://www.ontologydesignpatterns.org/cp/owl/participation.owl#", - "uri": "http://www.ontologydesignpatterns.org/cp/owl/participation.owl", - "prefix": "odpart" + "prefix": "odpart", + "title": "Ontology Design Pattern Participation", + "uri": "http://www.ontologydesignpatterns.org/cp/owl/participation.owl" }, { - "title": "The Open Digital Rights Language (ODRL) Ontology", "namespace": "http://www.w3.org/ns/odrl/2/", - "uri": "http://www.w3.org/ns/odrl/2/", - "prefix": "odrl" + "prefix": "odrl", + "title": "The Open Digital Rights Language (ODRL) Ontology", + "uri": "http://www.w3.org/ns/odrl/2/" }, { - "title": "Open Data Rights Statement Vocabulary", "namespace": "http://schema.theodi.org/odrs#", - "uri": "http://schema.theodi.org/odrs", - "prefix": "odrs" + "prefix": "odrs", + "title": "Open Data Rights Statement Vocabulary", + "uri": "http://schema.theodi.org/odrs" }, { - "title": "Extended Creative Commons Ontology", "namespace": "http://www.oegov.org/core/owl/cc#", - "uri": "http://www.oegov.org/core/owl/cc", - "prefix": "oecc" + "prefix": "oecc", + "title": "Extended Creative Commons Ontology", + "uri": "http://www.oegov.org/core/owl/cc" }, { - "title": "Open Fridge vocabulary", "namespace": "http://owlrep.eu01.aws.af.cm/fridge#", - "uri": "http://owlrep.eu01.aws.af.cm/fridge", - "prefix": "of" + "prefix": "of", + "title": "Open Fridge vocabulary", + "uri": "http://owlrep.eu01.aws.af.cm/fridge" }, { - "title": "Fridge and Freezer Vocabulary", "namespace": "http://purl.org/opdm/refrigerator#", - "uri": "http://purl.org/opdm/refrigerator#", - "prefix": "ofrd" + "prefix": "ofrd", + "title": "Fridge and Freezer Vocabulary", + "uri": "http://purl.org/opdm/refrigerator#" }, { - "title": "Open Graph Protocol Vocabulary", "namespace": "http://ogp.me/ns#", - "uri": "http://ogp.me/ns", - "prefix": "og" + "prefix": "og", + "title": "Open Graph Protocol Vocabulary", + "uri": "http://ogp.me/ns" }, { - "title": "The Opening Hours vocabulary", "namespace": "http://semweb.mmlab.be/ns/oh#", - "uri": "http://semweb.mmlab.be/ns/oh", - "prefix": "oh" + "prefix": "oh", + "title": "The Opening Hours vocabulary", + "uri": "http://semweb.mmlab.be/ns/oh" }, { - "title": "Ontology Loose Coupling Annotation", "namespace": "https://w3id.org/vocab/olca#", - "uri": "https://w3id.org/vocab/olca", - "prefix": "olca" + "prefix": "olca", + "title": "Ontology Loose Coupling Annotation", + "uri": "https://w3id.org/vocab/olca" }, { - "title": "Ordered List Ontology", "namespace": "http://purl.org/ontology/olo/core#", - "uri": "http://purl.org/ontology/olo/core#", - "prefix": "olo" + "prefix": "olo", + "title": "Ordered List Ontology", + "uri": "http://purl.org/ontology/olo/core#" }, { - "title": "OMG: Ontology for Managing Geometry", "namespace": "https://w3id.org/omg#", - "uri": "https://w3id.org/omg", - "prefix": "omg" + "prefix": "omg", + "title": "OMG: Ontology for Managing Geometry", + "uri": "https://w3id.org/omg" }, { - "title": "Open-Multinet Upper Ontology", "namespace": "http://open-multinet.info/ontology/omn#", - "uri": "http://open-multinet.info/ontology/omn", - "prefix": "omn" + "prefix": "omn", + "title": "Open-Multinet Upper Ontology", + "uri": "http://open-multinet.info/ontology/omn" }, { - "title": "Open-Multinet Upper Federation Ontology", "namespace": "http://open-multinet.info/ontology/omn-federation#", - "uri": "http://open-multinet.info/ontology/omn-federation", - "prefix": "omnfed" + "prefix": "omnfed", + "title": "Open-Multinet Upper Federation Ontology", + "uri": "http://open-multinet.info/ontology/omn-federation" }, { - "title": "Open-Multinet Upper Lifecycle Ontology", "namespace": "http://open-multinet.info/ontology/omn-lifecycle#", - "uri": "http://open-multinet.info/ontology/omn-lifecycle", - "prefix": "omnlc" + "prefix": "omnlc", + "title": "Open-Multinet Upper Lifecycle Ontology", + "uri": "http://open-multinet.info/ontology/omn-lifecycle" }, { - "title": "Open NEE Configuration Model", "namespace": "http://www.ics.forth.gr/isl/oncm/core#", - "uri": "http://www.ics.forth.gr/isl/oncm/core", - "prefix": "onc" + "prefix": "onc", + "title": "Open NEE Configuration Model", + "uri": "http://www.ics.forth.gr/isl/oncm/core" }, { - "title": "Ontology annotation DLiser vocabulary", "namespace": "http://purl.org/net/ns/ontology-annot#", - "uri": "http://purl.org/net/ns/ontology-annot", - "prefix": "ont" + "prefix": "ont", + "title": "Ontology annotation DLiser vocabulary", + "uri": "http://purl.org/net/ns/ontology-annot" }, { - "title": "Ontopic Ontology", "namespace": "http://www.ontologydesignpatterns.org/ont/dul/ontopic.owl#", - "uri": "http://www.ontologydesignpatterns.org/ont/dul/ontopic.owl", - "prefix": "ontopic" + "prefix": "ontopic", + "title": "Ontopic Ontology", + "uri": "http://www.ontologydesignpatterns.org/ont/dul/ontopic.owl" }, { - "title": "Ontology Security", "namespace": "http://www.semanticweb.org/ontologies/2008/11/OntologySecurity.owl#", - "uri": "http://www.semanticweb.org/ontologies/2008/11/OntologySecurity.owl", - "prefix": "ontosec" + "prefix": "ontosec", + "title": "Ontology Security", + "uri": "http://www.semanticweb.org/ontologies/2008/11/OntologySecurity.owl" }, { - "title": "Onyx Emotion Ontology", "namespace": "http://www.gsi.dit.upm.es/ontologies/onyx/ns#", - "uri": "http://www.gsi.dit.upm.es/ontologies/onyx/ns", - "prefix": "onyx" + "prefix": "onyx", + "title": "Onyx Emotion Ontology", + "uri": "http://www.gsi.dit.upm.es/ontologies/onyx/ns" }, { - "title": "Observable properties", "namespace": "http://environment.data.gov.au/def/op#", - "uri": "http://environment.data.gov.au/def/op", - "prefix": "op" + "prefix": "op", + "title": "Observable properties", + "uri": "http://environment.data.gov.au/def/op" }, { - "title": "Open 311 Ontology: An Ontology for publishing a city's non-emergency events.", "namespace": "http://ontology.eil.utoronto.ca/open311#", - "uri": "http://ontology.eil.utoronto.ca/open311.owl", - "prefix": "open311" + "prefix": "open311", + "title": "Open 311 Ontology: An Ontology for publishing a city's non-emergency events.", + "uri": "http://ontology.eil.utoronto.ca/open311.owl" }, { - "title": "OPM: Ontology for Property Management", "namespace": "https://w3id.org/opm#", - "uri": "https://w3id.org/opm", - "prefix": "opm" + "prefix": "opm", + "title": "OPM: Ontology for Property Management", + "uri": "https://w3id.org/opm" }, { - "title": "Open Provenance Model", "namespace": "http://openprovenance.org/model/opmo#", - "uri": "http://openprovenance.org/model/opmo", - "prefix": "opmo" + "prefix": "opmo", + "title": "Open Provenance Model", + "uri": "http://openprovenance.org/model/opmo" }, { - "title": "Open Provenance Model Vocabulary", "namespace": "http://purl.org/net/opmv/ns#", - "uri": "http://purl.org/net/opmv/ns#", - "prefix": "opmv" + "prefix": "opmv", + "title": "Open Provenance Model Vocabulary", + "uri": "http://purl.org/net/opmv/ns#" }, { - "title": "The OPMW Ontology", "namespace": "http://www.opmw.org/ontology/", - "uri": "http://www.opmw.org/ontology/", - "prefix": "opmw" + "prefix": "opmw", + "title": "The OPMW Ontology", + "uri": "http://www.opmw.org/ontology/" }, { - "title": "orca, the Ontology of Reasoning, Certainty and Attribution", "namespace": "http://vocab.deri.ie/orca#", - "uri": "http://vocab.deri.ie/orca", - "prefix": "orca" + "prefix": "orca", + "title": "orca, the Ontology of Reasoning, Certainty and Attribution", + "uri": "http://vocab.deri.ie/orca" }, { - "title": "The OAI ORE terms vocabulary", "namespace": "http://www.openarchives.org/ore/terms/", - "uri": "http://www.openarchives.org/ore/terms/", - "prefix": "ore" + "prefix": "ore", + "title": "The OAI ORE terms vocabulary", + "uri": "http://www.openarchives.org/ore/terms/" }, { - "title": "Core organization ontology", "namespace": "http://www.w3.org/ns/org#", - "uri": "http://www.w3.org/ns/org#", - "prefix": "org" + "prefix": "org", + "title": "Core organization ontology", + "uri": "http://www.w3.org/ns/org#" }, { - "title": "Ontology about Spanish public organizations", "namespace": "http://datos.gob.es/def/sector-publico/organizacion#", - "uri": "http://datos.gob.es/def/sector-publico/organizacion#", - "prefix": "orges" + "prefix": "orges", + "title": "Ontology about Spanish public organizations", + "uri": "http://datos.gob.es/def/sector-publico/organizacion#" }, { - "title": "The administrative geography and civil voting area ontology", "namespace": "http://data.ordnancesurvey.co.uk/ontology/admingeo/", - "uri": "http://data.ordnancesurvey.co.uk/ontology/admingeo/", - "prefix": "osadm" + "prefix": "osadm", + "title": "The administrative geography and civil voting area ontology", + "uri": "http://data.ordnancesurvey.co.uk/ontology/admingeo/" }, { - "title": "Ordnance Survey Geometry Ontology", "namespace": "http://data.ordnancesurvey.co.uk/ontology/geometry/", - "uri": "http://data.ordnancesurvey.co.uk/ontology/geometry/", - "prefix": "osgeom" + "prefix": "osgeom", + "title": "Ordnance Survey Geometry Ontology", + "uri": "http://data.ordnancesurvey.co.uk/ontology/geometry/" }, { - "title": "OSLC Core Vocabulary", "namespace": "http://open-services.net/ns/core#", - "uri": "http://open-services.net/ns/core#", - "prefix": "oslc" + "prefix": "oslc", + "title": "OSLC Core Vocabulary", + "uri": "http://open-services.net/ns/core#" }, { - "title": "OSLO Exchange Standard", "namespace": "http://purl.org/oslo/ns/localgov#", - "uri": "http://purl.org/oslo/ns/localgov", - "prefix": "oslo" + "prefix": "oslo", + "title": "OSLO Exchange Standard", + "uri": "http://purl.org/oslo/ns/localgov" }, { - "title": "Spatial Relations Ontology", "namespace": "http://data.ordnancesurvey.co.uk/ontology/spatialrelations/", - "uri": "http://data.ordnancesurvey.co.uk/ontology/spatialrelations/", - "prefix": "osspr" + "prefix": "osspr", + "title": "Spatial Relations Ontology", + "uri": "http://data.ordnancesurvey.co.uk/ontology/spatialrelations/" }, { - "title": "Ordnance Survey Topography Ontology", "namespace": "http://www.ordnancesurvey.co.uk/ontology/Topography/v0.1/Topography.owl#", - "uri": "http://www.ordnancesurvey.co.uk/ontology/Topography/v0.1/Topography.owl", - "prefix": "ostop" + "prefix": "ostop", + "title": "Ordnance Survey Topography Ontology", + "uri": "http://www.ordnancesurvey.co.uk/ontology/Topography/v0.1/Topography.owl" }, { - "title": "The Open Traffic Lights ontology", "namespace": "https://w3id.org/opentrafficlights#", - "uri": "https://w3id.org/opentrafficlights", - "prefix": "otl" + "prefix": "otl", + "title": "The Open Traffic Lights ontology", + "uri": "https://w3id.org/opentrafficlights" }, { - "title": "OpenVocab", "namespace": "http://open.vocab.org/terms/", - "uri": "http://open.vocab.org/terms", - "prefix": "ov" + "prefix": "ov", + "title": "OpenVocab", + "uri": "http://open.vocab.org/terms" }, { - "title": "The OWL 2 Schema vocabulary", "namespace": "http://www.w3.org/2002/07/owl#", - "uri": "http://www.w3.org/2002/07/owl", - "prefix": "owl" + "prefix": "owl", + "title": "The OWL 2 Schema vocabulary", + "uri": "http://www.w3.org/2002/07/owl" }, { - "title": "The P-PLAN Ontology", "namespace": "http://purl.org/net/p-plan#", - "uri": "http://purl.org/net/p-plan#", - "prefix": "p-plan" + "prefix": "p-plan", + "title": "The P-PLAN Ontology", + "uri": "http://purl.org/net/p-plan#" }, { - "title": "Participation Schema", "namespace": "http://purl.org/vocab/participation/schema#", - "uri": "http://purl.org/vocab/participation/schema", - "prefix": "part" + "prefix": "part", + "title": "Participation Schema", + "uri": "http://purl.org/vocab/participation/schema" }, { - "title": "Patch Request Ontology", "namespace": "http://purl.org/hpi/patchr#", - "uri": "http://purl.org/hpi/patchr#", - "prefix": "pat" + "prefix": "pat", + "title": "Patch Request Ontology", + "uri": "http://purl.org/hpi/patchr#" }, { - "title": "The Pattern Ontology", "namespace": "http://www.essepuntato.it/2008/12/pattern#", - "uri": "http://www.essepuntato.it/2008/12/pattern", - "prefix": "pattern" + "prefix": "pattern", + "title": "The Pattern Ontology", + "uri": "http://www.essepuntato.it/2008/12/pattern" }, { - "title": "Provenance, Authoring and Versioning", "namespace": "http://purl.org/pav/", - "uri": "http://purl.org/pav/", - "prefix": "pav" + "prefix": "pav", + "title": "Provenance, Authoring and Versioning", + "uri": "http://purl.org/pav/" }, { - "title": "Play Back Ontology", "namespace": "http://purl.org/ontology/pbo/core#", - "uri": "http://purl.org/ontology/pbo/core#", - "prefix": "pbo" + "prefix": "pbo", + "title": "Play Back Ontology", + "uri": "http://purl.org/ontology/pbo/core#" }, { - "title": "Public Contracts Ontology", "namespace": "http://purl.org/procurement/public-contracts#", - "uri": "http://purl.org/procurement/public-contracts", - "prefix": "pc" + "prefix": "pc", + "title": "Public Contracts Ontology", + "uri": "http://purl.org/procurement/public-contracts" }, { - "title": "Project Documents Ontology", "namespace": "http://ontologies.smile.deri.ie/pdo#", - "uri": "http://vocab.deri.ie/pdo", - "prefix": "pdo" + "prefix": "pdo", + "title": "Project Documents Ontology", + "uri": "http://vocab.deri.ie/pdo" }, { - "title": "Process Execution ontology.", "namespace": "https://w3id.org/pep/", - "uri": "https://w3id.org/pep/", - "prefix": "pep" + "prefix": "pep", + "title": "Process Execution ontology.", + "uri": "https://w3id.org/pep/" }, { - "title": "ISA Programme Person Core Vocabulary", "namespace": "http://www.w3.org/ns/person#", - "uri": "http://www.w3.org/ns/person", - "prefix": "person" + "prefix": "person", + "title": "ISA Programme Person Core Vocabulary", + "uri": "http://www.w3.org/ns/person" }, { - "title": "PROTON Extent module", "namespace": "http://www.ontotext.com/proton/protonext#", - "uri": "http://www.ontotext.com/proton/protonext", - "prefix": "pext" + "prefix": "pext", + "title": "PROTON Extent module", + "uri": "http://www.ontotext.com/proton/protonext" }, { - "title": "The PFEEPSA Ontology.", "namespace": "https://w3id.org/pfeepsa#", - "uri": "https://w3id.org/pfeepsa#", - "prefix": "pfeepsa" + "prefix": "pfeepsa", + "title": "The PFEEPSA Ontology.", + "uri": "https://w3id.org/pfeepsa#" }, { - "title": "Cochrane PICO Ontology", "namespace": "http://data.cochrane.org/ontologies/pico/", - "uri": "http://data.cochrane.org/ontologies/pico/", - "prefix": "pico" + "prefix": "pico", + "title": "Cochrane PICO Ontology", + "uri": "http://data.cochrane.org/ontologies/pico/" }, { - "title": "The Places Ontology", "namespace": "http://purl.org/ontology/places#", - "uri": "http://purl.org/ontology/places", - "prefix": "place" + "prefix": "place", + "title": "The Places Ontology", + "uri": "http://purl.org/ontology/places" }, { - "title": "PersonLink Ontology", "namespace": "http://cedric.cnam.fr/isid/ontologies/PersonLink.owl#", - "uri": "http://cedric.cnam.fr/isid/ontologies/PersonLink.owl", - "prefix": "plink" + "prefix": "plink", + "title": "PersonLink Ontology", + "uri": "http://cedric.cnam.fr/isid/ontologies/PersonLink.owl" }, { - "title": "Playlist Ontology", "namespace": "http://purl.org/net/po#", - "uri": "http://purl.org/net/po#", - "prefix": "plo" + "prefix": "plo", + "title": "Playlist Ontology", + "uri": "http://purl.org/net/po#" }, { - "title": "Predicate Model for Ontologies (PreMOn) - FrameNet ontology module", "namespace": "http://premon.fbk.eu/ontology/fn#", - "uri": "http://premon.fbk.eu/ontology/fn", - "prefix": "pmofn" + "prefix": "pmofn", + "title": "Predicate Model for Ontologies (PreMOn) - FrameNet ontology module", + "uri": "http://premon.fbk.eu/ontology/fn" }, { - "title": "Predicate Model for Ontologies (PreMOn) - NomBank ontology module", "namespace": "http://premon.fbk.eu/ontology/nb#", - "uri": "http://premon.fbk.eu/ontology/nb", - "prefix": "pmonb" + "prefix": "pmonb", + "title": "Predicate Model for Ontologies (PreMOn) - NomBank ontology module", + "uri": "http://premon.fbk.eu/ontology/nb" }, { - "title": "Predicate Model for Ontologies (PreMOn) - PropBank ontology module", "namespace": "http://premon.fbk.eu/ontology/pb#", - "uri": "http://premon.fbk.eu/ontology/pb", - "prefix": "pmopb" + "prefix": "pmopb", + "title": "Predicate Model for Ontologies (PreMOn) - PropBank ontology module", + "uri": "http://premon.fbk.eu/ontology/pb" }, { - "title": "Predicate Model for Ontologies (PreMOn) - VerbNet ontology module", "namespace": "http://premon.fbk.eu/ontology/vn#", - "uri": "http://premon.fbk.eu/ontology/vn", - "prefix": "pmovn" + "prefix": "pmovn", + "title": "Predicate Model for Ontologies (PreMOn) - VerbNet ontology module", + "uri": "http://premon.fbk.eu/ontology/vn" }, { - "title": "Programmes ontology", "namespace": "http://purl.org/ontology/po/", - "uri": "http://purl.org/ontology/po/", - "prefix": "po" + "prefix": "po", + "title": "Programmes ontology", + "uri": "http://purl.org/ontology/po/" }, { - "title": "Poder Vocabulary", "namespace": "http://dev.poderopedia.com/vocab/", - "uri": "http://dev.poderopedia.com/vocab/schema", - "prefix": "poder" + "prefix": "poder", + "title": "Poder Vocabulary", + "uri": "http://dev.poderopedia.com/vocab/schema" }, { - "title": "Postcode Ontology", "namespace": "http://data.ordnancesurvey.co.uk/ontology/postcode/", - "uri": "http://data.ordnancesurvey.co.uk/ontology/postcode/", - "prefix": "postcode" + "prefix": "postcode", + "title": "Postcode Ontology", + "uri": "http://data.ordnancesurvey.co.uk/ontology/postcode/" }, { - "title": "Privacy Preference Ontology", "namespace": "http://vocab.deri.ie/ppo#", - "uri": "http://vocab.deri.ie/ppo", - "prefix": "ppo" + "prefix": "ppo", + "title": "Privacy Preference Ontology", + "uri": "http://vocab.deri.ie/ppo" }, { - "title": "PPROC ontology", "namespace": "http://contsem.unizar.es/def/sector-publico/pproc#", - "uri": "http://contsem.unizar.es/def/sector-publico/pproc", - "prefix": "pproc" + "prefix": "pproc", + "title": "PPROC ontology", + "uri": "http://contsem.unizar.es/def/sector-publico/pproc" }, { - "title": "Property Reification Vocabulary", "namespace": "http://purl.org/ontology/prv/core#", - "uri": "http://purl.org/ontology/prv/core#", - "prefix": "pr" + "prefix": "pr", + "title": "Property Reification Vocabulary", + "uri": "http://purl.org/ontology/prv/core#" }, { - "title": "PREMIS Ontology", "namespace": "http://www.loc.gov/premis/rdf/v1#", - "uri": "http://www.loc.gov/premis/rdf/v1", - "prefix": "premis" + "prefix": "premis", + "title": "PREMIS Ontology", + "uri": "http://www.loc.gov/premis/rdf/v1" }, { - "title": "Presentation of Resources for Interoperable Semantic and Shareable Mobile Adaptability", "namespace": "http://ns.inria.fr/prissma/v2#", - "uri": "http://ns.inria.fr/prissma/v2#", - "prefix": "prissma" + "prefix": "prissma", + "title": "Presentation of Resources for Interoperable Semantic and Shareable Mobile Adaptability", + "uri": "http://ns.inria.fr/prissma/v2#" }, { - "title": "The Publishing Roles Ontology", "namespace": "http://purl.org/spar/pro/", - "uri": "http://purl.org/spar/pro", - "prefix": "pro" + "prefix": "pro", + "title": "The Publishing Roles Ontology", + "uri": "http://purl.org/spar/pro" }, { - "title": "Profiles Vocabulary", "namespace": "http://www.w3.org/ns/dx/prof/", - "uri": "http://www.w3.org/ns/dx/prof", - "prefix": "prof" + "prefix": "prof", + "title": "Profiles Vocabulary", + "uri": "http://www.w3.org/ns/dx/prof" }, { - "title": "W3C PROVenance Interchange", "namespace": "http://www.w3.org/ns/prov#", - "uri": "http://www.w3.org/ns/prov#", - "prefix": "prov" + "prefix": "prov", + "title": "W3C PROVenance Interchange", + "uri": "http://www.w3.org/ns/prov#" }, { - "title": "Product Vocabulary", "namespace": "http://ns.inria.fr/provoc#", - "uri": "http://ns.inria.fr/provoc", - "prefix": "provoc" + "prefix": "provoc", + "title": "Product Vocabulary", + "uri": "http://ns.inria.fr/provoc" }, { - "title": "Provenance Vocabulary Core Ontology", "namespace": "http://purl.org/net/provenance/ns#", - "uri": "http://purl.org/net/provenance/ns#", - "prefix": "prv" + "prefix": "prv", + "title": "Provenance Vocabulary Core Ontology", + "uri": "http://purl.org/net/provenance/ns#" }, { - "title": "Provenance Vocabulary types", "namespace": "http://purl.org/net/provenance/types#", - "uri": "http://purl.org/net/provenance/types#", - "prefix": "prvt" + "prefix": "prvt", + "title": "Provenance Vocabulary types", + "uri": "http://purl.org/net/provenance/types#" }, { - "title": "The Publishing Status Ontology", "namespace": "http://purl.org/spar/pso/", - "uri": "http://purl.org/spar/pso", - "prefix": "pso" + "prefix": "pso", + "title": "The Publishing Status Ontology", + "uri": "http://purl.org/spar/pso" }, { - "title": "PROTON (Proto Ontology), Top Module", "namespace": "http://www.ontotext.com/proton/protontop#", - "uri": "http://www.ontotext.com/proton/protontop", - "prefix": "ptop" + "prefix": "ptop", + "title": "PROTON (Proto Ontology), Top Module", + "uri": "http://www.ontotext.com/proton/protontop" }, { - "title": "Eccenca Publish-Subscribe Vocabulary", "namespace": "https://vocab.eccenca.com/pubsub/", - "uri": "https://vocab.eccenca.com/pubsub/", - "prefix": "pubsub" + "prefix": "pubsub", + "title": "Eccenca Publish-Subscribe Vocabulary", + "uri": "https://vocab.eccenca.com/pubsub/" }, { - "title": "The Publishing Workflow Ontology", "namespace": "http://purl.org/spar/pwo/", - "uri": "http://purl.org/spar/pwo", - "prefix": "pwo" + "prefix": "pwo", + "title": "The Publishing Workflow Ontology", + "uri": "http://purl.org/spar/pwo" }, { - "title": "The data cube vocabulary", "namespace": "http://purl.org/linked-data/cube#", - "uri": "http://purl.org/linked-data/cube", - "prefix": "qb" + "prefix": "qb", + "title": "The data cube vocabulary", + "uri": "http://purl.org/linked-data/cube" }, { - "title": "Vocabulary for publishing OLAP data cubes", "namespace": "http://purl.org/qb4olap/cubes#", - "uri": "http://purl.org/qb4olap/cubes", - "prefix": "qb4o" + "prefix": "qb4o", + "title": "Vocabulary for publishing OLAP data cubes", + "uri": "http://purl.org/qb4olap/cubes" }, { - "title": "Quantity Kinds and Units", "namespace": "http://purl.oclc.org/NET/ssnx/qu/qu#", - "uri": "http://purl.oclc.org/NET/ssnx/qu/qu", - "prefix": "qu" + "prefix": "qu", + "title": "Quantity Kinds and Units", + "uri": "http://purl.oclc.org/NET/ssnx/qu/qu" }, { - "title": "Quantities, Units, Dimensions and Types", "namespace": "http://qudt.org/schema/qudt/", - "uri": "http://qudt.org/schema/qudt", - "prefix": "qudt" + "prefix": "qudt", + "title": "Quantities, Units, Dimensions and Types", + "uri": "http://qudt.org/schema/qudt" }, { - "title": "ArCo Ontology (ArCo network)", "namespace": "https://w3id.org/arco/ontology/arco/", - "uri": "https://w3id.org/arco/ontology/arco", - "prefix": "r-arco" + "prefix": "r-arco", + "title": "ArCo Ontology (ArCo network)", + "uri": "https://w3id.org/arco/ontology/arco" }, { - "title": "Relations for Reusing (R4R) Ontology", "namespace": "http://guava.iis.sinica.edu.tw/r4r/", - "uri": "http://guava.iis.sinica.edu.tw/r4r", - "prefix": "r4r" + "prefix": "r4r", + "title": "Relations for Reusing (R4R) Ontology", + "uri": "http://guava.iis.sinica.edu.tw/r4r" }, { - "title": "Repository Asset Distribution", "namespace": "http://www.w3.org/ns/radion#", - "uri": "http://www.w3.org/ns/radion#", - "prefix": "radion" + "prefix": "radion", + "title": "Repository Asset Distribution", + "uri": "http://www.w3.org/ns/radion#" }, { - "title": "rami - Reference Architecture Model", "namespace": "http://iais.fraunhofer.de/vocabs/rami#", - "uri": "https://w3id.org/i40/rami/", - "prefix": "rami" + "prefix": "rami", + "title": "rami - Reference Architecture Model", + "uri": "https://w3id.org/i40/rami/" }, { - "title": "RAUL Vocabulary", "namespace": "http://purl.org/NET/raul#", - "uri": "http://vocab.deri.ie/raul", - "prefix": "raul" + "prefix": "raul", + "title": "RAUL Vocabulary", + "uri": "http://vocab.deri.ie/raul" }, { - "title": "FRBR Entities for RDA", "namespace": "http://rdvocab.info/uri/schema/FRBRentitiesRDA/", - "uri": "http://rdvocab.info/uri/schema/FRBRentitiesRDA", - "prefix": "rdafrbr" + "prefix": "rdafrbr", + "title": "FRBR Entities for RDA", + "uri": "http://rdvocab.info/uri/schema/FRBRentitiesRDA" }, { - "title": "RDA Group 1 Elements", "namespace": "http://rdvocab.info/Elements/", - "uri": "http://rdvocab.info/Elements", - "prefix": "rdag1" + "prefix": "rdag1", + "title": "RDA Group 1 Elements", + "uri": "http://rdvocab.info/Elements" }, { - "title": "RDA Group 2 Elements", "namespace": "http://rdvocab.info/ElementsGr2/", - "uri": "http://rdvocab.info/ElementsGr2", - "prefix": "rdag2" + "prefix": "rdag2", + "title": "RDA Group 2 Elements", + "uri": "http://rdvocab.info/ElementsGr2" }, { - "title": "RDA Group 3 Elements", "namespace": "http://rdvocab.info/ElementsGr3/", - "uri": "http://rdvocab.info/ElementsGr3", - "prefix": "rdag3" + "prefix": "rdag3", + "title": "RDA Group 3 Elements", + "uri": "http://rdvocab.info/ElementsGr3" }, { - "title": "RDA Relationships for Works, Expressions, Manifestations, Items", "namespace": "http://rdvocab.info/RDARelationshipsWEMI/", - "uri": "http://rdvocab.info/RDARelationshipsWEMI", - "prefix": "rdarel" + "prefix": "rdarel", + "title": "RDA Relationships for Works, Expressions, Manifestations, Items", + "uri": "http://rdvocab.info/RDARelationshipsWEMI" }, { - "title": "RDA Relationships GR2", "namespace": "http://metadataregistry.org/uri/schema/RDARelationshipsGR2/", - "uri": "http://metadataregistry.org/uri/schema/RDARelationshipsGR2", - "prefix": "rdarel2" + "prefix": "rdarel2", + "title": "RDA Relationships GR2", + "uri": "http://metadataregistry.org/uri/schema/RDARelationshipsGR2" }, { - "title": "RDA Roles", "namespace": "http://rdvocab.info/roles/", - "uri": "http://rdvocab.info/roles", - "prefix": "rdarole" + "prefix": "rdarole", + "title": "RDA Roles", + "uri": "http://rdvocab.info/roles" }, { - "title": "The RDF Concepts Vocabulary", "namespace": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "uri": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "prefix": "rdf" + "prefix": "rdf", + "title": "The RDF Concepts Vocabulary", + "uri": "http://www.w3.org/1999/02/22-rdf-syntax-ns#" }, { - "title": "RDFa Vocabulary for Term and Prefix Assignment, and for Processor Graph Reporting", "namespace": "http://www.w3.org/ns/rdfa#", - "uri": "http://www.w3.org/ns/rdfa#", - "prefix": "rdfa" + "prefix": "rdfa", + "title": "RDFa Vocabulary for Term and Prefix Assignment, and for Processor Graph Reporting", + "uri": "http://www.w3.org/ns/rdfa#" }, { - "title": "Graph", "namespace": "http://www.w3.org/2004/03/trix/rdfg-1/", - "uri": "http://www.w3.org/2004/03/trix/rdfg-1/", - "prefix": "rdfg" + "prefix": "rdfg", + "title": "Graph", + "uri": "http://www.w3.org/2004/03/trix/rdfg-1/" }, { - "title": "The RDF Presentation ontology", "namespace": "https://w3id.org/rdfp/", - "uri": "https://w3id.org/rdfp/", - "prefix": "rdfp" + "prefix": "rdfp", + "title": "The RDF Presentation ontology", + "uri": "https://w3id.org/rdfp/" }, { - "title": "The RDF Schema vocabulary", "namespace": "http://www.w3.org/2000/01/rdf-schema#", - "uri": "http://www.w3.org/2000/01/rdf-schema#", - "prefix": "rdfs" + "prefix": "rdfs", + "title": "The RDF Schema vocabulary", + "uri": "http://www.w3.org/2000/01/rdf-schema#" }, { - "title": "Recommendation Ontology", "namespace": "http://purl.org/ontology/rec/core#", - "uri": "http://purl.org/ontology/rec/core#", - "prefix": "rec" + "prefix": "rec", + "title": "Recommendation Ontology", + "uri": "http://purl.org/ontology/rec/core#" }, { - "title": "Model of the W3C Process", "namespace": "http://www.w3.org/2001/02pd/rec54#", - "uri": "http://www.w3.org/2001/02pd/rec54#", - "prefix": "rec54" + "prefix": "rec54", + "title": "Model of the W3C Process", + "uri": "http://www.w3.org/2001/02pd/rec54#" }, { - "title": "RECommendations Ontology", "namespace": "http://purl.org/reco#", - "uri": "http://purl.org/reco#", - "prefix": "reco" + "prefix": "reco", + "title": "RECommendations Ontology", + "uri": "http://purl.org/reco#" }, { - "title": "Renewable Energy and Energy Efficiency", "namespace": "http://reegle.info/schema#", - "uri": "http://reegle.info/schema", - "prefix": "reegle" + "prefix": "reegle", + "title": "Renewable Energy and Energy Efficiency", + "uri": "http://reegle.info/schema" }, { - "title": "Relationship", "namespace": "http://purl.org/vocab/relationship/", - "uri": "http://purl.org/vocab/relationship/", - "prefix": "rel" + "prefix": "rel", + "title": "Relationship", + "uri": "http://purl.org/vocab/relationship/" }, { - "title": "ReMetCa Ontology", "namespace": "http://www.purl.org/net/remetca#", - "uri": "http://www.purl.org/net/remetca#", - "prefix": "remetca" + "prefix": "remetca", + "title": "ReMetCa Ontology", + "uri": "http://www.purl.org/net/remetca#" }, { - "title": "Review Vocabulary", "namespace": "http://purl.org/stuff/rev#", - "uri": "http://purl.org/stuff/rev#", - "prefix": "rev" + "prefix": "rev", + "title": "Review Vocabulary", + "uri": "http://purl.org/stuff/rev#" }, { - "title": "RDF Logging Ontology", "namespace": "http://persistence.uni-leipzig.org/nlp2rdf/ontologies/rlog#", - "uri": "http://persistence.uni-leipzig.org/nlp2rdf/ontologies/rlog#", - "prefix": "rlog" + "prefix": "rlog", + "title": "RDF Logging Ontology", + "uri": "http://persistence.uni-leipzig.org/nlp2rdf/ontologies/rlog#" }, { - "title": "The Research Object Ontology", "namespace": "http://purl.org/wf4ever/ro#", - "uri": "http://purl.org/wf4ever/ro", - "prefix": "ro" + "prefix": "ro", + "title": "The Research Object Ontology", + "uri": "http://purl.org/wf4ever/ro" }, { - "title": "Buildings and Rooms Vocabulary", "namespace": "http://vocab.deri.ie/rooms#", - "uri": "http://vocab.deri.ie/rooms", - "prefix": "rooms" + "prefix": "rooms", + "title": "Buildings and Rooms Vocabulary", + "uri": "http://vocab.deri.ie/rooms" }, { - "title": "Registered Organization Vocabulary", "namespace": "http://www.w3.org/ns/regorg#", - "uri": "http://www.w3.org/ns/regorg", - "prefix": "rov" + "prefix": "rov", + "title": "Registered Organization Vocabulary", + "uri": "http://www.w3.org/ns/regorg" }, { - "title": "RDB to RDF Mapping Language Schema", "namespace": "http://www.w3.org/ns/r2rml#", - "uri": "http://www.w3.org/ns/r2rml#", - "prefix": "rr" + "prefix": "rr", + "title": "RDB to RDF Mapping Language Schema", + "uri": "http://www.w3.org/ns/r2rml#" }, { - "title": "Recommender System Context", "namespace": "http://softeng.polito.it/rsctx#", - "uri": "http://softeng.polito.it/rsctx", - "prefix": "rsctx" + "prefix": "rsctx", + "title": "Recommender System Context", + "uri": "http://softeng.polito.it/rsctx" }, { - "title": "Vocabulary for Rich Site Summary (RSS) 1.0", "namespace": "http://purl.org/rss/1.0/", - "uri": "http://purl.org/rss/1.0", - "prefix": "rss" + "prefix": "rss", + "title": "Vocabulary for Rich Site Summary (RSS) 1.0", + "uri": "http://purl.org/rss/1.0" }, { - "title": "Representational Units Metadata Ontology", "namespace": "http://purl.org/imbi/ru-meta.owl#", - "uri": "http://purl.org/imbi/ru-meta.owl", - "prefix": "ru" + "prefix": "ru", + "title": "Representational Units Metadata Ontology", + "uri": "http://purl.org/imbi/ru-meta.owl" }, { - "title": "Test-Driven Data Debugging Ontology", "namespace": "http://rdfunit.aksw.org/ns/core#", - "uri": "http://rdfunit.aksw.org/ns/core#", - "prefix": "ruto" + "prefix": "ruto", + "title": "Test-Driven Data Debugging Ontology", + "uri": "http://rdfunit.aksw.org/ns/core#" }, { - "title": "Social Semantic SPARQL Security For Access Control Ontology", "namespace": "http://ns.inria.fr/s4ac/v2#", - "uri": "http://ns.inria.fr/s4ac/v2", - "prefix": "s4ac" + "prefix": "s4ac", + "title": "Social Semantic SPARQL Security For Access Control Ontology", + "uri": "http://ns.inria.fr/s4ac/v2" }, { - "title": "SAREF extension for building devices", "namespace": "https://w3id.org/def/saref4bldg#", - "uri": "https://w3id.org/def/saref4bldg", - "prefix": "s4bldg" + "prefix": "s4bldg", + "title": "SAREF extension for building devices", + "uri": "https://w3id.org/def/saref4bldg" }, { - "title": "SAREF4EE: the EEbus/Energy@home extension of SAREF", "namespace": "https://w3id.org/saref4ee#", - "uri": "https://w3id.org/saref4ee", - "prefix": "s4ee" + "prefix": "s4ee", + "title": "SAREF4EE: the EEbus/Energy@home extension of SAREF", + "uri": "https://w3id.org/saref4ee" }, { - "title": "SAN Ontologia", "namespace": "http://dati.san.beniculturali.it/SAN/", - "uri": "http://dati.san.beniculturali.it/SAN/", - "prefix": "san-lod" + "prefix": "san-lod", + "title": "SAN Ontologia", + "uri": "http://dati.san.beniculturali.it/SAN/" }, { - "title": "SAREF: the Smart Appliances REFerence ontology", "namespace": "https://w3id.org/saref#", - "uri": "https://w3id.org/saref", - "prefix": "saref" + "prefix": "saref", + "title": "SAREF: the Smart Appliances REFerence ontology", + "uri": "https://w3id.org/saref" }, { - "title": "SAREF extension for Agriculture", "namespace": "https://w3id.org/def/saref4agri#", - "uri": "https://w3id.org/def/saref4agri", - "prefix": "saref4agri" + "prefix": "saref4agri", + "title": "SAREF extension for Agriculture", + "uri": "https://w3id.org/def/saref4agri" }, { - "title": "Sharing Ancient Wisdoms Ontology", "namespace": "http://purl.org/saws/ontology#", - "uri": "http://purl.org/saws/ontology", - "prefix": "saws" + "prefix": "saws", + "title": "Sharing Ancient Wisdoms Ontology", + "uri": "http://purl.org/saws/ontology" }, { - "title": "Schema.org vocabulary", "namespace": "http://schema.org/", - "uri": "http://schema.org/", - "prefix": "schema" + "prefix": "schema", + "title": "Schema.org vocabulary", + "uri": "http://schema.org/" }, { - "title": "Scientific People Ontology", "namespace": "http://lod.taxonconcept.org/ontology/sci_people.owl#", - "uri": "http://lod.taxonconcept.org/ontology/sci_people.owl", - "prefix": "scip" + "prefix": "scip", + "title": "Scientific People Ontology", + "uri": "http://lod.taxonconcept.org/ontology/sci_people.owl" }, { - "title": "Scholarly Contributions and Roles Ontology", "namespace": "http://purl.org/spar/scoro/", - "uri": "http://purl.org/spar/scoro/", - "prefix": "scoro" + "prefix": "scoro", + "title": "Scholarly Contributions and Roles Ontology", + "uri": "http://purl.org/spar/scoro/" }, { - "title": "Social Semantic Cloud of Tags", "namespace": "http://rdfs.org/scot/ns#", - "uri": "http://rdfs.org/scot/ns#", - "prefix": "scot" + "prefix": "scot", + "title": "Social Semantic Cloud of Tags", + "uri": "http://rdfs.org/scot/ns#" }, { - "title": "The Statistical Core Vocabulary", "namespace": "http://purl.org/NET/scovo#", - "uri": "http://vocab.deri.ie/scovo", - "prefix": "scovo" + "prefix": "scovo", + "title": "The Statistical Core Vocabulary", + "uri": "http://vocab.deri.ie/scovo" }, { - "title": "Schema.org CSV", "namespace": "http://purl.org/NET/schema-org-csv#", - "uri": "http://vocab.deri.ie/scsv", - "prefix": "scsv" + "prefix": "scsv", + "title": "Schema.org CSV", + "uri": "http://vocab.deri.ie/scsv" }, { - "title": "SPARQL 1.1 Service Description", "namespace": "http://www.w3.org/ns/sparql-service-description#", - "uri": "http://www.w3.org/ns/sparql-service-description", - "prefix": "sd" + "prefix": "sd", + "title": "SPARQL 1.1 Service Description", + "uri": "http://www.w3.org/ns/sparql-service-description" }, { - "title": "SPARQL endpoint metadata", "namespace": "https://w3id.org/vocab/sdm#", - "uri": "https://w3id.org/vocab/sdm", - "prefix": "sdm" + "prefix": "sdm", + "title": "SPARQL endpoint metadata", + "uri": "https://w3id.org/vocab/sdm" }, { - "title": "SDMX-RDF vocabulary", "namespace": "http://purl.org/linked-data/sdmx#", - "uri": "http://purl.org/linked-data/sdmx", - "prefix": "sdmx" + "prefix": "sdmx", + "title": "SDMX-RDF vocabulary", + "uri": "http://purl.org/linked-data/sdmx" }, { - "title": "SDMX Code", "namespace": "http://purl.org/linked-data/sdmx/2009/code#", - "uri": "http://purl.org/linked-data/sdmx/2009/code", - "prefix": "sdmx-code" + "prefix": "sdmx-code", + "title": "SDMX Code", + "uri": "http://purl.org/linked-data/sdmx/2009/code" }, { - "title": "SDMX Dimension", "namespace": "http://purl.org/linked-data/sdmx/2009/dimension#", - "uri": "http://purl.org/linked-data/sdmx/2009/dimension", - "prefix": "sdmx-dimension" + "prefix": "sdmx-dimension", + "title": "SDMX Dimension", + "uri": "http://purl.org/linked-data/sdmx/2009/dimension" }, { - "title": "Sindice Search Vocabulary", "namespace": "http://sindice.com/vocab/search#", - "uri": "http://vocab.deri.ie/search", - "prefix": "search" + "prefix": "search", + "title": "Sindice Search Vocabulary", + "uri": "http://vocab.deri.ie/search" }, { - "title": "SEAS ontology", "namespace": "https://w3id.org/seas/", - "uri": "https://w3id.org/seas/", - "prefix": "seas" + "prefix": "seas", + "title": "SEAS ontology", + "uri": "https://w3id.org/seas/" }, { - "title": "The SEAS Evaluation ontology", "namespace": "https://w3id.org/seas/", - "uri": "https://w3id.org/seas/EvaluationOntology", - "prefix": "seas-eval" + "prefix": "seas-eval", + "title": "The SEAS Evaluation ontology", + "uri": "https://w3id.org/seas/EvaluationOntology" }, { - "title": "The SEAS Failable System ontology", "namespace": "https://w3id.org/seas/", - "uri": "https://w3id.org/seas/OperatingOntology", - "prefix": "seas-op" + "prefix": "seas-op", + "title": "The SEAS Failable System ontology", + "uri": "https://w3id.org/seas/OperatingOntology" }, { - "title": "QUDT Alignment.", "namespace": "https://w3id.org/seas/", - "uri": "https://w3id.org/seas/QUDTAlignment", - "prefix": "seas-qudt" + "prefix": "seas-qudt", + "title": "QUDT Alignment.", + "uri": "https://w3id.org/seas/QUDTAlignment" }, { - "title": "The SEAS Statistics ontology.", "namespace": "https://w3id.org/seas/", - "uri": "https://w3id.org/seas/StatisticsOntology", - "prefix": "seas-stats" + "prefix": "seas-stats", + "title": "The SEAS Statistics ontology.", + "uri": "https://w3id.org/seas/StatisticsOntology" }, { - "title": "The SEAS System ontology", "namespace": "https://w3id.org/seas/", - "uri": "https://w3id.org/seas/SystemOntology", - "prefix": "seas-sys" + "prefix": "seas-sys", + "title": "The SEAS System ontology", + "uri": "https://w3id.org/seas/SystemOntology" }, { - "title": "The SEAS Battery ontology.", "namespace": "https://w3id.org/seas/", - "uri": "https://w3id.org/seas/BatteryOntology", - "prefix": "seasb" + "prefix": "seasb", + "title": "The SEAS Battery ontology.", + "uri": "https://w3id.org/seas/BatteryOntology" }, { - "title": "The SEAS Building Ontology", "namespace": "https://w3id.org/seas/", - "uri": "https://w3id.org/seas/BuildingOntology", - "prefix": "seasbo" + "prefix": "seasbo", + "title": "The SEAS Building Ontology", + "uri": "https://w3id.org/seas/BuildingOntology" }, { - "title": "The SEAS Device ontology", "namespace": "https://w3id.org/seas/", - "uri": "https://w3id.org/seas/DeviceOntology", - "prefix": "seasd" + "prefix": "seasd", + "title": "The SEAS Device ontology", + "uri": "https://w3id.org/seas/DeviceOntology" }, { - "title": "The SEAS Forecasting ontology", "namespace": "https://w3id.org/seas/", - "uri": "https://w3id.org/seas/ForecastingOntology", - "prefix": "seasfo" + "prefix": "seasfo", + "title": "The SEAS Forecasting ontology", + "uri": "https://w3id.org/seas/ForecastingOntology" }, { - "title": "The SEAS Time Ontology.", "namespace": "https://w3id.org/seas/", - "uri": "https://w3id.org/seas/TimeOntology", - "prefix": "seast" + "prefix": "seast", + "title": "The SEAS Time Ontology.", + "uri": "https://w3id.org/seas/TimeOntology" }, { - "title": "The SEAS Trading ontology", "namespace": "https://w3id.org/seas/", - "uri": "https://w3id.org/seas/TradingOntology", - "prefix": "seasto" + "prefix": "seasto", + "title": "The SEAS Trading ontology", + "uri": "https://w3id.org/seas/TradingOntology" }, { - "title": "Security Ontology", "namespace": "http://securitytoolbox.appspot.com/securityMain#", - "uri": "http://securitytoolbox.appspot.com/securityMain", - "prefix": "security" + "prefix": "security", + "title": "Security Ontology", + "uri": "http://securitytoolbox.appspot.com/securityMain" }, { - "title": "The SEM Ontology", "namespace": "http://semanticweb.cs.vu.nl/2009/11/sem/", - "uri": "http://semanticweb.cs.vu.nl/2009/11/sem/", - "prefix": "sem" + "prefix": "sem", + "title": "The SEM Ontology", + "uri": "http://semanticweb.cs.vu.nl/2009/11/sem/" }, { - "title": "The Semantic Survey Ontology (semsur)", "namespace": "http://purl.org/SemSur/", - "uri": "http://purl.org/SemSur/", - "prefix": "semsur" + "prefix": "semsur", + "title": "The Semantic Survey Ontology (semsur)", + "uri": "http://purl.org/SemSur/" }, { - "title": "The Scientific Events Ontology", "namespace": "http://purl.org/seo/", - "uri": "http://purl.org/seo/", - "prefix": "seo" + "prefix": "seo", + "title": "The Scientific Events Ontology", + "uri": "http://purl.org/seo/" }, { - "title": "Sequence Pattern", "namespace": "http://www.ontologydesignpatterns.org/cp/owl/sequence.owl#", - "uri": "http://www.ontologydesignpatterns.org/cp/owl/sequence.owl", - "prefix": "seq" + "prefix": "seq", + "title": "Sequence Pattern", + "uri": "http://www.ontologydesignpatterns.org/cp/owl/sequence.owl" }, { - "title": "The Service Ontology", "namespace": "http://purl.org/ontology/service#", - "uri": "http://purl.org/ontology/service", - "prefix": "service" + "prefix": "service", + "title": "The Service Ontology", + "uri": "http://purl.org/ontology/service" }, { - "title": "Simplified Features Geometry", "namespace": "http://www.opengis.net/ont/sf#", - "uri": "http://www.opengis.net/ont/sf", - "prefix": "sf" + "prefix": "sf", + "title": "Simplified Features Geometry", + "uri": "http://www.opengis.net/ont/sf" }, { - "title": "W3C Shapes Constraint Language (SHACL) Vocabulary", "namespace": "http://www.w3.org/ns/shacl#", - "uri": "http://www.w3.org/ns/shacl#", - "prefix": "sh" + "prefix": "sh", + "title": "W3C Shapes Constraint Language (SHACL) Vocabulary", + "uri": "http://www.w3.org/ns/shacl#" }, { - "title": "Shoah Vocabulary Specification", "namespace": "http://dati.cdec.it/lod/shoah/", - "uri": "http://dati.cdec.it/lod/shoah/", - "prefix": "shoah" + "prefix": "shoah", + "title": "Shoah Vocabulary Specification", + "uri": "http://dati.cdec.it/lod/shoah/" }, { - "title": "Smart Home Weather", "namespace": "http://paul.staroch.name/thesis/SmartHomeWeather.owl#", - "uri": "http://paul.staroch.name/thesis/SmartHomeWeather.owl#", - "prefix": "shw" + "prefix": "shw", + "title": "Smart Home Weather", + "uri": "http://paul.staroch.name/thesis/SmartHomeWeather.owl#" }, { - "title": "The Similarity Ontology", "namespace": "http://purl.org/ontology/similarity/", - "uri": "http://purl.org/ontology/similarity/", - "prefix": "sim" + "prefix": "sim", + "title": "The Similarity Ontology", + "uri": "http://purl.org/ontology/similarity/" }, { - "title": "Semanticscience Integrated Ontology", "namespace": "http://semanticscience.org/resource/", - "uri": "http://semanticscience.org/ontology/sio.owl", - "prefix": "sio" + "prefix": "sio", + "title": "Semanticscience Integrated Ontology", + "uri": "http://semanticscience.org/ontology/sio.owl" }, { - "title": "Semantically-Interlinked Online Communities", "namespace": "http://rdfs.org/sioc/ns#", - "uri": "http://rdfs.org/sioc/ns#", - "prefix": "sioc" + "prefix": "sioc", + "title": "Semantically-Interlinked Online Communities", + "uri": "http://rdfs.org/sioc/ns#" }, { - "title": "Situation Pattern", "namespace": "http://www.ontologydesignpatterns.org/cp/owl/situation.owl#", - "uri": "http://www.ontologydesignpatterns.org/cp/owl/situation.owl", - "prefix": "situ" + "prefix": "situ", + "title": "Situation Pattern", + "uri": "http://www.ontologydesignpatterns.org/cp/owl/situation.owl" }, { - "title": "Simple Knowledge Organization System", "namespace": "http://www.w3.org/2004/02/skos/core#", - "uri": "http://www.w3.org/2004/02/skos/core", - "prefix": "skos" + "prefix": "skos", + "title": "Simple Knowledge Organization System", + "uri": "http://www.w3.org/2004/02/skos/core" }, { - "title": "SKOS eXtension for Labels", "namespace": "http://www.w3.org/2008/05/skos-xl#", - "uri": "http://www.w3.org/2008/05/skos-xl", - "prefix": "skosxl" + "prefix": "skosxl", + "title": "SKOS eXtension for Labels", + "uri": "http://www.w3.org/2008/05/skos-xl" }, { - "title": "Solid terms", "namespace": "http://www.w3.org/ns/solid/terms#", - "uri": "http://www.w3.org/ns/solid/terms", - "prefix": "solid" + "prefix": "solid", + "title": "Solid terms", + "uri": "http://www.w3.org/ns/solid/terms" }, { - "title": "SORON: Social Relationships ONtology", "namespace": "http://purl.org/net/soron/", - "uri": "http://purl.org/net/soron", - "prefix": "sor" + "prefix": "sor", + "title": "SORON: Social Relationships ONtology", + "uri": "http://purl.org/net/soron" }, { - "title": "Sensor, Observation, Sample, and Actuator (SOSA) Ontology", "namespace": "http://www.w3.org/ns/sosa/", - "uri": "http://www.w3.org/ns/sosa/", - "prefix": "sosa" + "prefix": "sosa", + "title": "Sensor, Observation, Sample, and Actuator (SOSA) Ontology", + "uri": "http://www.w3.org/ns/sosa/" }, { - "title": "SPIN SPARQL Syntax", "namespace": "http://spinrdf.org/sp#", - "uri": "http://spinrdf.org/sp", - "prefix": "sp" + "prefix": "sp", + "title": "SPIN SPARQL Syntax", + "uri": "http://spinrdf.org/sp" }, { - "title": "NeoGeo Spatial Ontology", "namespace": "http://geovocab.org/spatial#", - "uri": "http://geovocab.org/spatial", - "prefix": "spatial" + "prefix": "spatial", + "title": "NeoGeo Spatial Ontology", + "uri": "http://geovocab.org/spatial" }, { - "title": "SmartProducts Food Domain Model", "namespace": "http://kmi.open.ac.uk/projects/smartproducts/ontologies/food.owl#", - "uri": "http://kmi.open.ac.uk/projects/smartproducts/ontologies/food.owl", - "prefix": "spfood" + "prefix": "spfood", + "title": "SmartProducts Food Domain Model", + "uri": "http://kmi.open.ac.uk/projects/smartproducts/ontologies/food.owl" }, { - "title": "SPIN Inferencing Vocabulary", "namespace": "http://spinrdf.org/spin#", - "uri": "http://spinrdf.org/spin", - "prefix": "spin" + "prefix": "spin", + "title": "SPIN Inferencing Vocabulary", + "uri": "http://spinrdf.org/spin" }, { - "title": "BBC Sport Ontology", "namespace": "http://www.bbc.co.uk/ontologies/sport/", - "uri": "http://www.bbc.co.uk/ontologies/sport", - "prefix": "sport" + "prefix": "sport", + "title": "BBC Sport Ontology", + "uri": "http://www.bbc.co.uk/ontologies/sport" }, { - "title": "SPITFIRE Ontology", "namespace": "http://spitfire-project.eu/ontology/ns/", - "uri": "http://spitfire-project.eu/ontology/ns", - "prefix": "spt" + "prefix": "spt", + "title": "SPITFIRE Ontology", + "uri": "http://spitfire-project.eu/ontology/ns" }, { - "title": "SQL Abstract Syntax Trees Vocabulary", "namespace": "http://ns.inria.fr/ast/sql#", - "uri": "http://ns.inria.fr/ast/sql#", - "prefix": "sql" + "prefix": "sql", + "title": "SQL Abstract Syntax Trees Vocabulary", + "uri": "http://ns.inria.fr/ast/sql#" }, { - "title": "Semantic Sensor Network Ontology", "namespace": "http://purl.oclc.org/NET/ssnx/ssn#", - "uri": "http://www.w3.org/2005/Incubator/ssn/ssnx/ssn", - "prefix": "ssn" + "prefix": "ssn", + "title": "Semantic Sensor Network Ontology", + "uri": "http://www.w3.org/2005/Incubator/ssn/ssnx/ssn" }, { - "title": "Semantic Sensor Network Ontology", "namespace": "http://www.w3.org/ns/ssn/", - "uri": "http://www.w3.org/ns/ssn/", - "prefix": "ssno" + "prefix": "ssno", + "title": "Semantic Sensor Network Ontology", + "uri": "http://www.w3.org/ns/ssn/" }, { - "title": "Simple Service Status Ontology", "namespace": "http://purl.org/ontology/ssso#", - "uri": "http://purl.org/ontology/ssso", - "prefix": "ssso" + "prefix": "ssso", + "title": "Simple Service Status Ontology", + "uri": "http://purl.org/ontology/ssso" }, { - "title": "The Stop Times ontology", "namespace": "http://semweb.mmlab.be/ns/stoptimes#", - "uri": "http://semweb.mmlab.be/ns/stoptimes#Ontology", - "prefix": "st" + "prefix": "st", + "title": "The Stop Times ontology", + "uri": "http://semweb.mmlab.be/ns/stoptimes#Ontology" }, { - "title": "Security Toolbox : Attacks and Countermeasures", "namespace": "http://securitytoolbox.appspot.com/stac#", - "uri": "http://securitytoolbox.appspot.com/stac", - "prefix": "stac" + "prefix": "stac", + "title": "Security Toolbox : Attacks and Countermeasures", + "uri": "http://securitytoolbox.appspot.com/stac" }, { - "title": "Semantic Trajectory Episodes", "namespace": "http://purl.org/net/step#", - "uri": "http://purl.org/net/step", - "prefix": "step" + "prefix": "step", + "title": "Semantic Trajectory Episodes", + "uri": "http://purl.org/net/step" }, { - "title": "i40 Standards Lanscape Vocabulary", "namespace": "https://w3id.org/i40/sto#", - "uri": "https://w3id.org/i40/sto#", - "prefix": "sto" + "prefix": "sto", + "title": "i40 Standards Lanscape Vocabulary", + "uri": "https://w3id.org/i40/sto#" }, { - "title": "The Survey Ontology", "namespace": "https://w3id.org/survey-ontology#", - "uri": "https://www.w3id.org/survey-ontology", - "prefix": "sur" + "prefix": "sur", + "title": "The Survey Ontology", + "uri": "https://www.w3id.org/survey-ontology" }, { - "title": "SQuAP Ontology", "namespace": "https://w3id.org/squap/SoftwareQuality/", - "uri": "https://w3id.org/squap/", - "prefix": "sw-quality" + "prefix": "sw-quality", + "title": "SQuAP Ontology", + "uri": "https://w3id.org/squap/" }, { - "title": "Graph Authority", "namespace": "http://www.w3.org/2004/03/trix/swp-1/", - "uri": "http://www.w3.org/2004/03/trix/swp-1", - "prefix": "swp" + "prefix": "swp", + "title": "Graph Authority", + "uri": "http://www.w3.org/2004/03/trix/swp-1" }, { - "title": "Semantic Web for Research Communities", "namespace": "http://swrc.ontoware.org/ontology#", - "uri": "http://swrc.ontoware.org/ontology-07", - "prefix": "swrc" + "prefix": "swrc", + "title": "Semantic Web for Research Communities", + "uri": "http://swrc.ontoware.org/ontology-07" }, { - "title": "Semantic Web Rule Language", "namespace": "http://www.w3.org/2003/11/swrl#", - "uri": "http://www.w3.org/2003/11/swrl", - "prefix": "swrl" + "prefix": "swrl", + "title": "Semantic Web Rule Language", + "uri": "http://www.w3.org/2003/11/swrl" }, { - "title": "TripleAccessControl Ontology", "namespace": "http://ns.bergnet.org/tac/0.1/triple-access-control#", - "uri": "http://ns.bergnet.org/tac/0.1/triple-access-control", - "prefix": "tac" + "prefix": "tac", + "title": "TripleAccessControl Ontology", + "uri": "http://ns.bergnet.org/tac/0.1/triple-access-control" }, { - "title": "Trust Assertion Ontology", "namespace": "http://vocab.deri.ie/tao#", - "uri": "http://vocab.deri.ie/tao", - "prefix": "tao" + "prefix": "tao", + "title": "Trust Assertion Ontology", + "uri": "http://vocab.deri.ie/tao" }, { - "title": "TaxonMap Ontology", "namespace": "http://purl.org/biodiversity/taxon/", - "uri": "http://purl.org/biodiversity/taxon/", - "prefix": "taxon" + "prefix": "taxon", + "title": "TaxonMap Ontology", + "uri": "http://purl.org/biodiversity/taxon/" }, { - "title": "Timebank Ontology", "namespace": "https://w3id.org/timebank#", - "uri": "https://w3id.org/timebank", - "prefix": "tb" + "prefix": "tb", + "title": "Timebank Ontology", + "uri": "https://w3id.org/timebank" }, { - "title": "Time Entry", "namespace": "http://www.w3.org/2006/time-entry#", - "uri": "http://www.w3.org/2006/time-entry", - "prefix": "te" + "prefix": "te", + "title": "Time Entry", + "uri": "http://www.w3.org/2006/time-entry" }, { - "title": "Teaching Core Vocabulary Specification", "namespace": "http://linkedscience.org/teach/ns#", - "uri": "http://linkedscience.org/teach/ns#", - "prefix": "teach" + "prefix": "teach", + "title": "Teaching Core Vocabulary Specification", + "uri": "http://linkedscience.org/teach/ns#" }, { - "title": "Test Metadata", "namespace": "http://www.w3.org/2006/03/test-description#", - "uri": "http://www.w3.org/2006/03/test-description", - "prefix": "test" + "prefix": "test", + "title": "Test Metadata", + "uri": "http://www.w3.org/2006/03/test-description" }, { - "title": "Transformation Functions Ontology", "namespace": "https://privatealpha.com/ontology/transformation/1#", - "uri": "https://privatealpha.com/ontology/transformation/1#", - "prefix": "tfo" + "prefix": "tfo", + "title": "Transformation Functions Ontology", + "uri": "https://privatealpha.com/ontology/transformation/1#" }, { - "title": "Theatre Ontology", "namespace": "http://purl.org/theatre#", - "uri": "http://purl.org/theatre#", - "prefix": "theatre" + "prefix": "theatre", + "title": "Theatre Ontology", + "uri": "http://purl.org/theatre#" }, { - "title": "The Temporal Ordinal Reference Systems", "namespace": "http://resource.geosciml.org/ontology/timescale/thors#", - "uri": "http://resource.geosciml.org/ontology/timescale/thors", - "prefix": "thors" + "prefix": "thors", + "title": "The Temporal Ordinal Reference Systems", + "uri": "http://resource.geosciml.org/ontology/timescale/thors" }, { - "title": "The Time Interval Pattern", "namespace": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#", - "uri": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl", - "prefix": "ti" + "prefix": "ti", + "title": "The Time Interval Pattern", + "uri": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl" }, { - "title": "Time Ontology", "namespace": "http://www.w3.org/2006/time#", - "uri": "http://www.w3.org/2006/time", - "prefix": "time" + "prefix": "time", + "title": "Time Ontology", + "uri": "http://www.w3.org/2006/time" }, { - "title": "The Tickets Ontology", "namespace": "http://purl.org/tio/ns#", - "uri": "http://purl.org/tio/ns#", - "prefix": "tio" + "prefix": "tio", + "title": "The Tickets Ontology", + "uri": "http://purl.org/tio/ns#" }, { - "title": "Time Indexed Situation", "namespace": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl", - "uri": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl", - "prefix": "tis" + "prefix": "tis", + "title": "Time Indexed Situation", + "uri": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl" }, { - "title": "Open Time and Space Core Vocabulary", "namespace": "http://observedchange.com/tisc/ns#", - "uri": "http://www.observedchange.com/tisc/ns#", - "prefix": "tisc" + "prefix": "tisc", + "title": "Open Time and Space Core Vocabulary", + "uri": "http://www.observedchange.com/tisc/ns#" }, { - "title": "The Timeline Ontology", "namespace": "http://purl.org/NET/c4dm/timeline.owl#", - "uri": "http://purl.org/NET/c4dm/timeline.owl", - "prefix": "tl" + "prefix": "tl", + "title": "The Timeline Ontology", + "uri": "http://purl.org/NET/c4dm/timeline.owl" }, { - "title": "Translational Medicine Ontology", "namespace": "http://www.w3.org/2001/sw/hcls/ns/transmed/", - "uri": "http://www.w3.org/2001/sw/hcls/ns/transmed/", - "prefix": "tmo" + "prefix": "tmo", + "title": "Translational Medicine Ontology", + "uri": "http://www.w3.org/2001/sw/hcls/ns/transmed/" }, { - "title": "Toucan Ontology", "namespace": "http://purl.org/toco/", - "uri": "http://purl.org/toco/", - "prefix": "toco" + "prefix": "toco", + "title": "Toucan Ontology", + "uri": "http://purl.org/toco/" }, { - "title": "An ontology for describing territory elements an infrastructure at French Mapping Agency.", "namespace": "http://data.ign.fr/def/topo#", - "uri": "http://data.ign.fr/def/topo", - "prefix": "topo" + "prefix": "topo", + "title": "An ontology for describing territory elements an infrastructure at French Mapping Agency.", + "uri": "http://data.ign.fr/def/topo" }, { - "title": "Tourpedia Ontology", "namespace": "http://tour-pedia.org/download/tp.owl#", - "uri": "http://tour-pedia.org/download/tp.owl", - "prefix": "tp" + "prefix": "tp", + "title": "Tourpedia Ontology", + "uri": "http://tour-pedia.org/download/tp.owl" }, { - "title": "Road Traffic Management", "namespace": "http://www.sensormeasurement.appspot.com/ont/transport/traffic#", - "uri": "http://www.sensormeasurement.appspot.com/ont/transport/traffic", - "prefix": "traffic" + "prefix": "traffic", + "title": "Road Traffic Management", + "uri": "http://www.sensormeasurement.appspot.com/ont/transport/traffic" }, { - "title": "TRANSIT", "namespace": "http://vocab.org/transit/terms/", - "uri": "http://vocab.org/transit/terms/", - "prefix": "transit" + "prefix": "transit", + "title": "TRANSIT", + "uri": "http://vocab.org/transit/terms/" }, { - "title": "Transport Administration Ontology", "namespace": "http://linkeddata.finki.ukim.mk/lod/ontology/tao#", - "uri": "http://linkeddata.finki.ukim.mk/lod/ontology/tao#", - "prefix": "trao" + "prefix": "trao", + "title": "Transport Administration Ontology", + "uri": "http://linkeddata.finki.ukim.mk/lod/ontology/tao#" }, { - "title": "SIOC Types Ontology Module", "namespace": "http://rdfs.org/sioc/types#", - "uri": "http://rdfs.org/sioc/types#", - "prefix": "tsioc" + "prefix": "tsioc", + "title": "SIOC Types Ontology Module", + "uri": "http://rdfs.org/sioc/types#" }, { - "title": "Territorial Statistical Nomenclature Ontology", "namespace": "http://purl.org/net/tsn#", - "uri": "http://purl.org/net/tsn#", - "prefix": "tsn" + "prefix": "tsn", + "title": "Territorial Statistical Nomenclature Ontology", + "uri": "http://purl.org/net/tsn#" }, { - "title": "Territorial Statistical Nomenclature Change Ontology", "namespace": "http://purl.org/net/tsnchange#", - "uri": "http://purl.org/net/tsnchange#", - "prefix": "tsnc" + "prefix": "tsnc", + "title": "Territorial Statistical Nomenclature Change Ontology", + "uri": "http://purl.org/net/tsnchange#" }, { - "title": "The Time-indexed Value in Context", "namespace": "http://www.essepuntato.it/2012/04/tvc/", - "uri": "http://www.essepuntato.it/2012/04/tvc", - "prefix": "tvc" + "prefix": "tvc", + "title": "The Time-indexed Value in Context", + "uri": "http://www.essepuntato.it/2012/04/tvc" }, { - "title": "TaxonConcept Ontology", "namespace": "http://lod.taxonconcept.org/ontology/txn.owl#", - "uri": "http://lod.taxonconcept.org/ontology/txn.owl", - "prefix": "txn" + "prefix": "txn", + "title": "TaxonConcept Ontology", + "uri": "http://lod.taxonconcept.org/ontology/txn.owl" }, { - "title": "Time Zone Ontology", "namespace": "http://www.w3.org/2006/timezone#", - "uri": "http://www.w3.org/2006/timezone", - "prefix": "tzont" + "prefix": "tzont", + "title": "Time Zone Ontology", + "uri": "http://www.w3.org/2006/timezone" }, { - "title": "ubyCat.owl", "namespace": "http://purl.org/olia/ubyCat.owl#", - "uri": "http://purl.org/olia/ubyCat.owl", - "prefix": "uby" + "prefix": "uby", + "title": "ubyCat.owl", + "uri": "http://purl.org/olia/ubyCat.owl" }, { - "title": "Used Cars Ontology", "namespace": "http://purl.org/uco/ns#", - "uri": "http://purl.org/uco/ns#", - "prefix": "uco" + "prefix": "uco", + "title": "Used Cars Ontology", + "uri": "http://purl.org/uco/ns#" }, { - "title": "Units of measurement ontology", "namespace": "http://purl.oclc.org/NET/muo/ucum/", - "uri": "http://purl.oclc.org/NET/muo/ucum/", - "prefix": "ucum" + "prefix": "ucum", + "title": "Units of measurement ontology", + "uri": "http://purl.oclc.org/NET/muo/ucum/" }, { - "title": "A user interface ontology", "namespace": "http://www.w3.org/ns/ui#", - "uri": "http://www.w3.org/ns/ui", - "prefix": "ui" + "prefix": "ui", + "title": "A user interface ontology", + "uri": "http://www.w3.org/ns/ui" }, { - "title": "UNESKOS Vocabulary", "namespace": "http://purl.org/umu/uneskos#", - "uri": "http://purl.org/umu/uneskos", - "prefix": "uneskos" + "prefix": "uneskos", + "title": "UNESKOS Vocabulary", + "uri": "http://purl.org/umu/uneskos" }, { - "title": "Uniprot Core Ontology", "namespace": "http://purl.uniprot.org/core/", - "uri": "http://purl.uniprot.org/core/", - "prefix": "uniprot" + "prefix": "uniprot", + "title": "Uniprot Core Ontology", + "uri": "http://purl.uniprot.org/core/" }, { - "title": "URI Vocabulary", "namespace": "http://uri4uri.net/vocab#", - "uri": "http://uri4uri.net/vocab", - "prefix": "uri4uri" + "prefix": "uri4uri", + "title": "URI Vocabulary", + "uri": "http://uri4uri.net/vocab" }, { - "title": "Usability", "namespace": "https://w3id.org/usability#", - "uri": "https://w3id.org/usability", - "prefix": "usability" + "prefix": "usability", + "title": "Usability", + "uri": "https://w3id.org/usability" }, { - "title": "Vocabulary for Attaching Essential Metadata", "namespace": "http://www.linkedmodel.org/schema/vaem#", - "uri": "http://www.linkedmodel.org/schema/vaem", - "prefix": "vaem" + "prefix": "vaem", + "title": "Vocabulary for Attaching Essential Metadata", + "uri": "http://www.linkedmodel.org/schema/vaem" }, { - "title": "The Vagueness Ontology", "namespace": "http://www.essepuntato.it/2013/10/vagueness/", - "uri": "http://www.essepuntato.it/2013/10/vagueness", - "prefix": "vag" + "prefix": "vag", + "title": "The Vagueness Ontology", + "uri": "http://www.essepuntato.it/2013/10/vagueness" }, { - "title": "VANN: A vocabulary for annotating vocabulary descriptions", "namespace": "http://purl.org/vocab/vann/", - "uri": "http://purl.org/vocab/vann/", - "prefix": "vann" + "prefix": "vann", + "title": "VANN: A vocabulary for annotating vocabulary descriptions", + "uri": "http://purl.org/vocab/vann/" }, { - "title": "An Ontology for vCards", "namespace": "http://www.w3.org/2006/vcard/ns#", - "uri": "http://www.w3.org/2006/vcard/ns", - "prefix": "vcard" + "prefix": "vcard", + "title": "An Ontology for vCards", + "uri": "http://www.w3.org/2006/vcard/ns" }, { - "title": "Vehicle Emissions Ontology", "namespace": "http://linkeddata.finki.ukim.mk/lod/ontology/veo#", - "uri": "http://linkeddata.finki.ukim.mk/lod/ontology/veo#", - "prefix": "veo" + "prefix": "veo", + "title": "Vehicle Emissions Ontology", + "uri": "http://linkeddata.finki.ukim.mk/lod/ontology/veo#" }, { - "title": "The Video Game Ontology", "namespace": "http://purl.org/net/VideoGameOntology#", - "uri": "http://purl.org/net/VideoGameOntology", - "prefix": "vgo" + "prefix": "vgo", + "title": "The Video Game Ontology", + "uri": "http://purl.org/net/VideoGameOntology" }, { - "title": "Wine Ontology", "namespace": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#", - "uri": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine", - "prefix": "vin" + "prefix": "vin", + "title": "Wine Ontology", + "uri": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine" }, { - "title": "VIR - Visual Representation ontology", "namespace": "http://w3id.org/vir#", - "uri": "http://w3id.org/vir#", - "prefix": "vir" + "prefix": "vir", + "title": "VIR - Visual Representation ontology", + "uri": "http://w3id.org/vir#" }, { - "title": "VIVO Core Ontology", "namespace": "http://vivoweb.org/ontology/core#", - "uri": "http://vivoweb.org/ontology/core", - "prefix": "vivo" + "prefix": "vivo", + "title": "VIVO Core Ontology", + "uri": "http://vivoweb.org/ontology/core" }, { - "title": "Vocabulary of a Friend", "namespace": "http://purl.org/vocommons/voaf#", - "uri": "http://purl.org/vocommons/voaf", - "prefix": "voaf" + "prefix": "voaf", + "title": "Vocabulary of a Friend", + "uri": "http://purl.org/vocommons/voaf" }, { - "title": "VoCaLS: A Vocabulary and Catalog for Linked Streams", "namespace": "http://w3id.org/rsp/vocals#", - "uri": "http://w3id.org/rsp/vocals#", - "prefix": "vocals" + "prefix": "vocals", + "title": "VoCaLS: A Vocabulary and Catalog for Linked Streams", + "uri": "http://w3id.org/rsp/vocals#" }, { - "title": "Vocabulary of Interlinked Datasets", "namespace": "http://rdfs.org/ns/void#", - "uri": "http://vocab.deri.ie/void", - "prefix": "void" + "prefix": "void", + "title": "Vocabulary of Interlinked Datasets", + "uri": "http://vocab.deri.ie/void" }, { - "title": "Extended Vocabulary of Interlinked Datasets (VoIDext)", "namespace": "http://purl.org/query/voidext#", - "uri": "http://purl.org/query/voidext", - "prefix": "voidext" + "prefix": "voidext", + "title": "Extended Vocabulary of Interlinked Datasets (VoIDext)", + "uri": "http://purl.org/query/voidext" }, { - "title": "Void Warehouse Ontology", "namespace": "http://www.ics.forth.gr/isl/VoIDWarehouse/VoID_Extension_Schema.owl", - "uri": "http://www.ics.forth.gr/isl/VoIDWarehouse/VoID_Extension_Schema.owl", - "prefix": "voidwh" + "prefix": "voidwh", + "title": "Void Warehouse Ontology", + "uri": "http://www.ics.forth.gr/isl/VoIDWarehouse/VoID_Extension_Schema.owl" }, { - "title": "Vocabulary for Ranking", "namespace": "http://purl.org/voc/vrank#", - "uri": "http://vocab.sti2.at/vrank", - "prefix": "vrank" + "prefix": "vrank", + "title": "Vocabulary for Ranking", + "uri": "http://vocab.sti2.at/vrank" }, { - "title": "SemWeb Vocab Status ontology", "namespace": "http://www.w3.org/2003/06/sw-vocab-status/ns#", - "uri": "http://www.w3.org/2003/06/sw-vocab-status/ns", - "prefix": "vs" + "prefix": "vs", + "title": "SemWeb Vocab Status ontology", + "uri": "http://www.w3.org/2003/06/sw-vocab-status/ns" }, { - "title": "Vehicle Sales Ontology", "namespace": "http://purl.org/vso/ns#", - "uri": "http://purl.org/vso/ns", - "prefix": "vso" + "prefix": "vso", + "title": "Vehicle Sales Ontology", + "uri": "http://purl.org/vso/ns" }, { - "title": "Volkswagen Vehicles Ontology", "namespace": "http://purl.org/vvo/ns#", - "uri": "http://purl.org/vvo/ns#", - "prefix": "vvo" + "prefix": "vvo", + "title": "Volkswagen Vehicles Ontology", + "uri": "http://purl.org/vvo/ns#" }, { - "title": "Semantic Sensor Network Ontology", "namespace": "https://www.w3.org/ns/ssn/", - "uri": "https://www.w3.org/ns/ssn", - "prefix": "w3c-ssn" + "prefix": "w3c-ssn", + "title": "Semantic Sensor Network Ontology", + "uri": "https://www.w3.org/ns/ssn" }, { - "title": "Roles and Profiles Ontology", "namespace": "http://purl.org/wai#", - "uri": "http://purl.org/wai#", - "prefix": "wai" + "prefix": "wai", + "title": "Roles and Profiles Ontology", + "uri": "http://purl.org/wai#" }, { - "title": "Protocol for Web Description Resources", "namespace": "http://www.w3.org/2007/05/powder-s#", - "uri": "http://www.w3.org/2007/05/powder-s", - "prefix": "wdrs" + "prefix": "wdrs", + "title": "Protocol for Web Description Resources", + "uri": "http://www.w3.org/2007/05/powder-s" }, { - "title": "Workflow Invocation Ontology", "namespace": "http://purl.org/net/wf-invocation#", - "uri": "http://purl.org/net/wf-invocation", - "prefix": "wf-invoc" + "prefix": "wf-invoc", + "title": "Workflow Invocation Ontology", + "uri": "http://purl.org/net/wf-invocation" }, { - "title": "The Wfdesc ontology", "namespace": "http://purl.org/wf4ever/wfdesc#", - "uri": "http://purl.org/wf4ever/wfdesc", - "prefix": "wfdesc" + "prefix": "wfdesc", + "title": "The Wfdesc ontology", + "uri": "http://purl.org/wf4ever/wfdesc" }, { - "title": "The Workflow Motif Ontology", "namespace": "http://purl.org/net/wf-motifs#", - "uri": "http://purl.org/net/wf-motifs", - "prefix": "wfm" + "prefix": "wfm", + "title": "The Workflow Motif Ontology", + "uri": "http://purl.org/net/wf-motifs" }, { - "title": "The Wfprov Ontology", "namespace": "http://purl.org/wf4ever/wfprov#", - "uri": "http://purl.org/wf4ever/wfprov", - "prefix": "wfprov" + "prefix": "wfprov", + "title": "The Wfprov Ontology", + "uri": "http://purl.org/wf4ever/wfprov" }, { - "title": "Whisky Ontology", "namespace": "http://vocab.org/whisky/terms/", - "uri": "http://vocab.org/whisky/terms", - "prefix": "whisky" + "prefix": "whisky", + "title": "Whisky Ontology", + "uri": "http://vocab.org/whisky/terms" }, { - "title": "Who's who description vocabulary", "namespace": "http://www.kanzaki.com/ns/whois#", - "uri": "http://www.kanzaki.com/ns/whois", - "prefix": "whois" + "prefix": "whois", + "title": "Who's who description vocabulary", + "uri": "http://www.kanzaki.com/ns/whois" }, { - "title": "The Weighted Interests Vocabulary", "namespace": "http://purl.org/ontology/wi/core#", - "uri": "http://purl.org/ontology/wi/core#", - "prefix": "wi" + "prefix": "wi", + "title": "The Weighted Interests Vocabulary", + "uri": "http://purl.org/ontology/wi/core#" }, { - "title": "WSMO-Lite Ontology", "namespace": "http://www.wsmo.org/ns/wsmo-lite#", - "uri": "http://www.wsmo.org/ns/wsmo-lite#", - "prefix": "wl" + "prefix": "wl", + "title": "WSMO-Lite Ontology", + "uri": "http://www.wsmo.org/ns/wsmo-lite#" }, { - "title": "BBC Wildlife Ontology", "namespace": "http://purl.org/ontology/wo/", - "uri": "http://purl.org/ontology/wo/", - "prefix": "wlo" + "prefix": "wlo", + "title": "BBC Wildlife Ontology", + "uri": "http://purl.org/ontology/wo/" }, { - "title": "Weighting Ontology", "namespace": "http://purl.org/ontology/wo/core#", - "uri": "http://purl.org/ontology/wo/core#", - "prefix": "wo" + "prefix": "wo", + "title": "Weighting Ontology", + "uri": "http://purl.org/ontology/wo/core#" }, { - "title": "Web Of Trust", "namespace": "http://xmlns.com/wot/0.1/", - "uri": "http://xmlns.com/wot/0.1/", - "prefix": "wot" + "prefix": "wot", + "title": "Web Of Trust", + "uri": "http://xmlns.com/wot/0.1/" }, { - "title": "Security mechanisms for the Web of Things", "namespace": "https://www.w3.org/2019/wot/security#", - "uri": "https://www.w3.org/2019/wot/security#", - "prefix": "wotsec" + "prefix": "wotsec", + "title": "Security mechanisms for the Web of Things", + "uri": "https://www.w3.org/2019/wot/security#" }, { - "title": "xAPI Controlled Vocabulary Ontology", "namespace": "http://purl.org/xapi/ontology#", - "uri": "http://purl.org/xapi/ontology#", - "prefix": "xapi" + "prefix": "xapi", + "title": "xAPI Controlled Vocabulary Ontology", + "uri": "http://purl.org/xapi/ontology#" }, { - "title": "A lightweight XBRL vocabulary", "namespace": "https://w3id.org/vocab/xbrll#", - "uri": "https://w3id.org/vocab/xbrll", - "prefix": "xbrll" + "prefix": "xbrll", + "title": "A lightweight XBRL vocabulary", + "uri": "https://w3id.org/vocab/xbrll" }, { - "title": "XHTML Vocabulary", "namespace": "http://www.w3.org/1999/xhtml/vocab#", - "uri": "http://www.w3.org/1999/xhtml/vocab", - "prefix": "xhv" + "prefix": "xhv", + "title": "XHTML Vocabulary", + "uri": "http://www.w3.org/1999/xhtml/vocab" }, { - "title": "XML Schema", "namespace": "http://www.w3.org/2001/XMLSchema#", - "uri": "http://www.w3.org/2001/XMLSchema", - "prefix": "xsd" + "prefix": "xsd", + "title": "XML Schema", + "uri": "http://www.w3.org/2001/XMLSchema" }, { - "title": "ZBW Extensions", "namespace": "http://zbw.eu/namespaces/zbw-extensions/", - "uri": "http://zbw.eu/namespaces/zbw-extensions", - "prefix": "zbwext" + "prefix": "zbwext", + "title": "ZBW Extensions", + "uri": "http://zbw.eu/namespaces/zbw-extensions" }, { - "title": "Project Gutenberg in RDF (FU Berlin)", "namespace": "http://www4.wiwiss.fu-berlin.de/gutendata/resource/", - "uri": "http://www4.wiwiss.fu-berlin.de/gutendata/", - "prefix": "fu-berlin-project-gutenberg" + "prefix": "fu-berlin-project-gutenberg", + "title": "Project Gutenberg in RDF (FU Berlin)", + "uri": "http://www4.wiwiss.fu-berlin.de/gutendata/" }, { - "title": "COLINDA - Conference Linked Data", "namespace": "http://colinda.org/resource/", - "uri": "http://colinda.org", - "prefix": "colinda" + "prefix": "colinda", + "title": "COLINDA - Conference Linked Data", + "uri": "http://colinda.org" }, { - "title": "Gipuzkoa Demografia", "namespace": "http://datos.eurohelp.es/PruebasFinales/", - "uri": "http://datahub.io/dataset/GipuzkoaDemografia", - "prefix": "gipuzkoademografia" + "prefix": "gipuzkoademografia", + "title": "Gipuzkoa Demografia", + "uri": "http://datahub.io/dataset/GipuzkoaDemografia" }, { - "title": "Temple ov thee Lemur", "namespace": "http://data.totl.net/", - "uri": "http://data.totl.net/", - "prefix": "temple-ov-thee-lemur-datasets" + "prefix": "temple-ov-thee-lemur-datasets", + "title": "Temple ov thee Lemur", + "uri": "http://data.totl.net/" }, { - "title": "ReSIST MSc in Resilient Computing Curriculum (RKBExplorer)", "namespace": "http://curriculum.rkbexplorer.com/id/", - "uri": "http://curriculum.rkbexplorer.com", - "prefix": "rkb-explorer-curriculum" + "prefix": "rkb-explorer-curriculum", + "title": "ReSIST MSc in Resilient Computing Curriculum (RKBExplorer)", + "uri": "http://curriculum.rkbexplorer.com" }, { - "title": "Confiscations of the Czech Trade Inspection Authority", "namespace": "http://linked.opendata.cz/resource/domain/coi.cz/confiscation/", - "uri": "http://linked.opendata.cz/resource/dataset/coi.cz/zajisteni", - "prefix": "cz-ctia-confiscations" + "prefix": "cz-ctia-confiscations", + "title": "Confiscations of the Czech Trade Inspection Authority", + "uri": "http://linked.opendata.cz/resource/dataset/coi.cz/zajisteni" }, { - "title": "Requirements on the COMSODE project based on selected datasets", "namespace": "http://comsode.eu/resource/", - "uri": "http://comsode.eu/resource/dataset/COMSODE_D3.2", - "prefix": "comsode-d3-2" + "prefix": "comsode-d3-2", + "title": "Requirements on the COMSODE project based on selected datasets", + "uri": "http://comsode.eu/resource/dataset/COMSODE_D3.2" }, { - "title": "Diavgeia", "namespace": "http://diavgeia.math.auth.gr/resource/", - "uri": "http://opendata.diavgeia.gov.gr/?lang=en", - "prefix": "diavgeia" + "prefix": "diavgeia", + "title": "Diavgeia", + "uri": "http://opendata.diavgeia.gov.gr/?lang=en" }, { - "title": "Cornetto1.2", "namespace": "http://purl.org/vocabularies/cornetto/", - "uri": "http://www2.let.vu.nl/oz/cltl/cornetto/", - "prefix": "cornetto" + "prefix": "cornetto", + "title": "Cornetto1.2", + "uri": "http://www2.let.vu.nl/oz/cltl/cornetto/" }, { - "title": "France Telecom Recherche et D\u00e9veloppement (RKBExplorer)", "namespace": "http://ft.rkbexplorer.com/id/", - "uri": "http://ft.rkbexplorer.com", - "prefix": "rkb-explorer-ft" + "prefix": "rkb-explorer-ft", + "title": "France Telecom Recherche et D\u00e9veloppement (RKBExplorer)", + "uri": "http://ft.rkbexplorer.com" }, { - "title": "British Museum Collection", "namespace": "http://collection.britishmuseum.org/id/", - "uri": "http://collection.britishmuseum.org", - "prefix": "british-museum-collection" + "prefix": "british-museum-collection", + "title": "British Museum Collection", + "uri": "http://collection.britishmuseum.org" }, { - "title": "Linked Data Service der Universit\u00e4tsbibliothek Mannheim", "namespace": "http://data.bib.uni-mannheim.de/data/", - "uri": "http://data.bib.uni-mannheim.de/", - "prefix": "ub-mannheim-linked-data" + "prefix": "ub-mannheim-linked-data", + "title": "Linked Data Service der Universit\u00e4tsbibliothek Mannheim", + "uri": "http://data.bib.uni-mannheim.de/" }, { - "title": "YAGO", "namespace": "http://yago-knowledge.org/resource/", - "uri": "http://yago-knowledge.org", - "prefix": "yago" + "prefix": "yago", + "title": "YAGO", + "uri": "http://yago-knowledge.org" }, { - "title": "U.S. Securities and Exchange Commission Corporate Ownership RDF Data (rdfabout)", "namespace": "http://www.rdfabout.com/rdf/usgov/sec/id/", - "uri": "http://www.rdfabout.com/demo/sec/", - "prefix": "sec-rdfabout" + "prefix": "sec-rdfabout", + "title": "U.S. Securities and Exchange Commission Corporate Ownership RDF Data (rdfabout)", + "uri": "http://www.rdfabout.com/demo/sec/" }, { - "title": "Street level crime reports for England and Wales", "namespace": "http://crime.rkbexplorer.com/id/", - "uri": "http://crime.rkbexplorer.com/", - "prefix": "rkb-explorer-crime" + "prefix": "rkb-explorer-crime", + "title": "Street level crime reports for England and Wales", + "uri": "http://crime.rkbexplorer.com/" }, { - "title": "PanLex", "namespace": "http://ld.panlex.org/plx/", - "uri": "http://panlex.org", - "prefix": "panlex" + "prefix": "panlex", + "title": "PanLex", + "uri": "http://panlex.org" }, { - "title": "data.open.ac.uk, Linked Data from the Open University", "namespace": "http://data.open.ac.uk/resource/", - "uri": "http://data.open.ac.uk/", - "prefix": "data-open-ac-uk" + "prefix": "data-open-ac-uk", + "title": "data.open.ac.uk, Linked Data from the Open University", + "uri": "http://data.open.ac.uk/" }, { - "title": "theses.fr", "namespace": "http://www.theses.fr/", - "uri": "http://www.theses.fr", - "prefix": "thesesfr" + "prefix": "thesesfr", + "title": "theses.fr", + "uri": "http://www.theses.fr" }, { - "title": "ChEMBL-RDF (@ Uppsala University)", "namespace": "http://rdf.farmbio.uu.se/chembl/", - "uri": "https://github.com/egonw/chembl.rdf", - "prefix": "farmbio-chembl" + "prefix": "farmbio-chembl", + "title": "ChEMBL-RDF (@ Uppsala University)", + "uri": "https://github.com/egonw/chembl.rdf" }, { - "title": "EUR-Lex as Linked Data", "namespace": "http://eur-lex.publicdata.eu/ontology/", - "uri": "http://eur-lex.publicdata.eu/", - "prefix": "eur-lex-rdf" + "prefix": "eur-lex-rdf", + "title": "EUR-Lex as Linked Data", + "uri": "http://eur-lex.publicdata.eu/" }, { - "title": "NPM", "namespace": "https://linkedsoftwaredependencies.org/", - "uri": "https://github.com/LinkedSoftwareDependencies/npm-extraction-server", - "prefix": "npm" + "prefix": "npm", + "title": "NPM", + "uri": "https://github.com/LinkedSoftwareDependencies/npm-extraction-server" }, { - "title": "National Radioactivity Stat as Linked Data", "namespace": "http://www.kanzaki.com/works/2011/stat/ra/", - "uri": "http://www.kanzaki.com/works/2011/stat/ra/", - "prefix": "japan-radioactivity-stat" + "prefix": "japan-radioactivity-stat", + "title": "National Radioactivity Stat as Linked Data", + "uri": "http://www.kanzaki.com/works/2011/stat/ra/" }, { - "title": "Edinburgh University Theatre Company Productions", "namespace": "http://www.bedlamtheatre.co.uk/", - "uri": "http://www.bedlamtheatre.co.uk/", - "prefix": "eutc-productions" + "prefix": "eutc-productions", + "title": "Edinburgh University Theatre Company Productions", + "uri": "http://www.bedlamtheatre.co.uk/" }, { - "title": "Zhishi.me", "namespace": "http://zhishi.me/", - "uri": "http://zhishi.me", - "prefix": "zhishi-me" + "prefix": "zhishi-me", + "title": "Zhishi.me", + "uri": "http://zhishi.me" }, { - "title": "Ocean Drilling - Janus Age Models", "namespace": "http://chronos.org/janusamp/", - "uri": "http://chronos.org/janusAmp/", - "prefix": "oceandrilling-janusamp" + "prefix": "oceandrilling-janusamp", + "title": "Ocean Drilling - Janus Age Models", + "uri": "http://chronos.org/janusAmp/" }, { - "title": "DBpedia in Dutch", "namespace": "http://nl.dbpedia.org/resource/", - "uri": "http://nl.dbpedia.org", - "prefix": "dbpedia-nl" + "prefix": "dbpedia-nl", + "title": "DBpedia in Dutch", + "uri": "http://nl.dbpedia.org" }, { - "title": "Urban Atlas dataset", "namespace": "http://w3id.org/foodie/atlas/", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "Urban Atlas Dataset" + "prefix": "Urban Atlas Dataset", + "title": "Urban Atlas dataset", + "uri": "https://www.foodie-cloud.org/fct/" }, { - "title": "Cadastre offices from Czech land registry", "namespace": "http://ruian.linked.opendata.cz/resource/", - "uri": "http://ruian.linked.opendata.cz/resource/dataset/cuzk/pracoviste-resortu", - "prefix": "cz-cuzk-cadastre-offices" + "prefix": "cz-cuzk-cadastre-offices", + "title": "Cadastre offices from Czech land registry", + "uri": "http://ruian.linked.opendata.cz/resource/dataset/cuzk/pracoviste-resortu" }, { - "title": "Lista de Encabezamientos de Materia as Linked Open Data", "namespace": "http://id.sgcb.mcu.es/", - "uri": "http://id.sgcb.mcu.es", - "prefix": "lista-encabezamientos-materia" + "prefix": "lista-encabezamientos-materia", + "title": "Lista de Encabezamientos de Materia as Linked Open Data", + "uri": "http://id.sgcb.mcu.es" }, { - "title": "IneveryCREA Argentina, la comunidad de la creatividad educativa", "namespace": "http://ineverycrea.net/en/community/ineverycreaargentina", - "uri": "http://ineverycrea.net/en/community/ineverycreaargentina", - "prefix": "ineverycrea-argentina" + "prefix": "ineverycrea-argentina", + "title": "IneveryCREA Argentina, la comunidad de la creatividad educativa", + "uri": "http://ineverycrea.net/en/community/ineverycreaargentina" }, { - "title": "Legija", "namespace": "Americka Foka", - "uri": "http://www.facebook.com", - "prefix": "Uros Susa" + "prefix": "Uros Susa", + "title": "Legija", + "uri": "http://www.facebook.com" }, { - "title": "SNIK", "namespace": "http://www.snik.eu/ontology/", - "uri": "https://www.snik.eu", - "prefix": "snik" + "prefix": "snik", + "title": "SNIK", + "uri": "https://www.snik.eu" }, { - "title": "EUMIDA as Linked Data", "namespace": "http://eumida.publicdata.eu/data/", - "uri": "http://eumida.publicdata.eu/", - "prefix": "eumida-linked-data" + "prefix": "eumida-linked-data", + "title": "EUMIDA as Linked Data", + "uri": "http://eumida.publicdata.eu/" }, { - "title": "DrugBank", "namespace": "http://www4.wiwiss.fu-berlin.de/drugbank/resource/", - "uri": "http://www4.wiwiss.fu-berlin.de/drugbank/", - "prefix": "fu-berlin-drugbank" + "prefix": "fu-berlin-drugbank", + "title": "DrugBank", + "uri": "http://www4.wiwiss.fu-berlin.de/drugbank/" }, { - "title": "eagle-i @ Dartmouth College", "namespace": "http://dartmouth.eagle-i.net/i/", - "uri": "http://dartmouth.eagle-i.net", - "prefix": "eagle-i-dartmouth" + "prefix": "eagle-i-dartmouth", + "title": "eagle-i @ Dartmouth College", + "uri": "http://dartmouth.eagle-i.net" }, { - "title": "Yovisto - academic video search", "namespace": "http://www.yovisto.com/resource", - "uri": "http://www.yovisto.com/ontology/", - "prefix": "yovisto" + "prefix": "yovisto", + "title": "Yovisto - academic video search", + "uri": "http://www.yovisto.com/ontology/" }, { - "title": "Next Web, a global knowledge network of semantic technology and Web 3.0 (GNOSS)", "namespace": "http://gnoss.com/comunidad/nextweb", - "uri": "http://gnoss.com/comunidad/nextweb", - "prefix": "nextweb-gnoss" + "prefix": "nextweb-gnoss", + "title": "Next Web, a global knowledge network of semantic technology and Web 3.0 (GNOSS)", + "uri": "http://gnoss.com/comunidad/nextweb" }, { - "title": "Erosion-endangered soil zones dataset from Czech Republic", "namespace": "http://w3id.org/foodie/open/cz/Soil_maps_BPEJ_WGSc/", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "Soil maps" + "prefix": "Soil maps", + "title": "Erosion-endangered soil zones dataset from Czech Republic", + "uri": "https://www.foodie-cloud.org/fct/" }, { - "title": "Finnish municipalities and regional classifications", "namespace": "http://www.yso.fi/onto/kunnat/", - "uri": "http://onki.fi/en/browser/overview/kunnat", - "prefix": "finnish-municipalities" + "prefix": "finnish-municipalities", + "title": "Finnish municipalities and regional classifications", + "uri": "http://onki.fi/en/browser/overview/kunnat" }, { - "title": "Mis Museos, \u00edndice sem\u00e1ntico de museos, artistas y obras de arte (GNOSS)", "namespace": "http://mismuseos.net/", - "uri": "http://mismuseos.net/", - "prefix": "mismuseos-gnoss" + "prefix": "mismuseos-gnoss", + "title": "Mis Museos, \u00edndice sem\u00e1ntico de museos, artistas y obras de arte (GNOSS)", + "uri": "http://mismuseos.net/" }, { - "title": "Research Assessment Exercise 2001 (RKBExplorer)", "namespace": "http://rae2001.rkbexplorer.com/id/", - "uri": "http://rae2001.rkbexplorer.com", - "prefix": "rkb-explorer-rae2001" + "prefix": "rkb-explorer-rae2001", + "title": "Research Assessment Exercise 2001 (RKBExplorer)", + "uri": "http://rae2001.rkbexplorer.com" }, { - "title": "National Diet Library of Japan subject headings", "namespace": "http://id.ndl.go.jp/auth/ndlsh/", - "uri": "http://id.ndl.go.jp/auth/ndlsh", - "prefix": "national-diet-library-subject-headings" + "prefix": "national-diet-library-subject-headings", + "title": "National Diet Library of Japan subject headings", + "uri": "http://id.ndl.go.jp/auth/ndlsh" }, { - "title": "Inspections of the Czech Trade Inspection Authority", "namespace": "http://linked.opendata.cz/resource/domain/coi.cz/check-action/", - "uri": "http://linked.opendata.cz/resource/dataset/coi.cz/kontroly", - "prefix": "cz-ctia-inspections" + "prefix": "cz-ctia-inspections", + "title": "Inspections of the Czech Trade Inspection Authority", + "uri": "http://linked.opendata.cz/resource/dataset/coi.cz/kontroly" }, { - "title": "List of Czech data boxes", "namespace": "https://linked.opendata.cz/zdroj/datov\u00e1-schr\u00e1nka/", - "uri": "https://linked.opendata.cz/zdroj/datov\u00e1-sada/datov\u00e9-schr\u00e1nky", - "prefix": "cz-list-of-databoxes" + "prefix": "cz-list-of-databoxes", + "title": "List of Czech data boxes", + "uri": "https://linked.opendata.cz/zdroj/datov\u00e1-sada/datov\u00e9-schr\u00e1nky" }, { - "title": "Project Gutenberg", "namespace": "http://www.gutenberg.org/", - "uri": "http://www.gutenberg.org/", - "prefix": "gutenberg" + "prefix": "gutenberg", + "title": "Project Gutenberg", + "uri": "http://www.gutenberg.org/" }, { - "title": "Audited subjects of Supreme Audit Office of the Czech Republic", "namespace": "http://data.nku.cz/resource/", - "uri": "http://data.nku.cz/resource/dataset/audited-subjects", - "prefix": "cz-sao-audited-subjects" + "prefix": "cz-sao-audited-subjects", + "title": "Audited subjects of Supreme Audit Office of the Czech Republic", + "uri": "http://data.nku.cz/resource/dataset/audited-subjects" }, { - "title": "DBTune.org John Peel sessions RDF server", "namespace": "http://dbtune.org/bbc/peel/", - "uri": "http://dbtune.org/bbc/peel/", - "prefix": "dbtune-john-peel-sessions" + "prefix": "dbtune-john-peel-sessions", + "title": "DBTune.org John Peel sessions RDF server", + "uri": "http://dbtune.org/bbc/peel/" }, { - "title": "UN Hazardous Materials Numbers", "namespace": "http://data.kasabi.com/dataset/un-hazardous-material-numbers", - "uri": "http://kasabi.com/dataset/un-hazardous-material-numbers", - "prefix": "un-hazardous-numbers" + "prefix": "un-hazardous-numbers", + "title": "UN Hazardous Materials Numbers", + "uri": "http://kasabi.com/dataset/un-hazardous-material-numbers" }, { - "title": "Green Competitiveness (GNOSS)", "namespace": "http://red.gnoss.com/en/community/greencompetitiveness", - "uri": "http://red.gnoss.com/en/community/greencompetitiveness", - "prefix": "green-competitiveness-gnoss" + "prefix": "green-competitiveness-gnoss", + "title": "Green Competitiveness (GNOSS)", + "uri": "http://red.gnoss.com/en/community/greencompetitiveness" }, { - "title": "TheSoz Thesaurus for the Social Sciences (GESIS)", "namespace": "http://lod.gesis.org/thesoz/", - "uri": "http://lod.gesis.org/thesoz/", - "prefix": "gesis-thesoz" + "prefix": "gesis-thesoz", + "title": "TheSoz Thesaurus for the Social Sciences (GESIS)", + "uri": "http://lod.gesis.org/thesoz/" }, { - "title": "FAO ASFIS classification of biological entities", "namespace": "http://www.fao.org/aims/aos/fi/taxonomic/", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "FAO species" + "prefix": "FAO species", + "title": "FAO ASFIS classification of biological entities", + "uri": "https://www.foodie-cloud.org/fct/" }, { - "title": "JITA Classification System of Library and Information Science", "namespace": "http://aims.fao.org/aos/jita/", - "uri": "http://www.destin-informatique.com/ASKOSI/Wiki.jsp?page=JITA%20Maintenance", - "prefix": "jita" + "prefix": "jita", + "title": "JITA Classification System of Library and Information Science", + "uri": "http://www.destin-informatique.com/ASKOSI/Wiki.jsp?page=JITA%20Maintenance" }, { - "title": "AEGP, Spanish Textile and Clothing Association", "namespace": "http://red.gnoss.com/comunidad/buscaempresas", - "uri": "http://red.gnoss.com/comunidad/buscaempresas", - "prefix": "aegp-spanish-textile-and-clothing-association" + "prefix": "aegp-spanish-textile-and-clothing-association", + "title": "AEGP, Spanish Textile and Clothing Association", + "uri": "http://red.gnoss.com/comunidad/buscaempresas" }, { - "title": "YSO - General Finnish Ontology", "namespace": "http://www.yso.fi/onto/yso/", - "uri": "http://finto.fi/yso/", - "prefix": "yso" + "prefix": "yso", + "title": "YSO - General Finnish Ontology", + "uri": "http://finto.fi/yso/" }, { - "title": "OpenCorporates - The Open Database Of The Corporate World", "namespace": "http://opencorporates.com/companies", - "uri": "http://opencorporates.com/", - "prefix": "opencorporates" + "prefix": "opencorporates", + "title": "OpenCorporates - The Open Database Of The Corporate World", + "uri": "http://opencorporates.com/" }, { - "title": "eagle-i @ Morehouse School of Medicine", "namespace": "http://msm.eagle-i.net/i/", - "uri": "http://msm.eagle-i.net", - "prefix": "eagle-i-msm" + "prefix": "eagle-i-msm", + "title": "eagle-i @ Morehouse School of Medicine", + "uri": "http://msm.eagle-i.net" }, { - "title": "CORE - Semantic Similarity of Open Access publications", "namespace": "http://core.kmi.open.ac.uk/data/", - "uri": "http://core-project.kmi.open.ac.uk/", - "prefix": "core" + "prefix": "core", + "title": "CORE - Semantic Similarity of Open Access publications", + "uri": "http://core-project.kmi.open.ac.uk/" }, { - "title": "DBpedia in Japanese", "namespace": "http://ja.dbpedia.org/resource/", - "uri": "http://ja.dbpedia.org/", - "prefix": "dbpedia-ja" + "prefix": "dbpedia-ja", + "title": "DBpedia in Japanese", + "uri": "http://ja.dbpedia.org/" }, { - "title": "EEA Reporting Obligations Database", "namespace": "http://rod.eionet.europa.eu", - "uri": "http://rod.eionet.europa.eu/", - "prefix": "eea-rod" + "prefix": "eea-rod", + "title": "EEA Reporting Obligations Database", + "uri": "http://rod.eionet.europa.eu/" }, { - "title": "Deutsche Nationalbibliografie (DNB)", "namespace": "http://d-nb.info/", - "uri": "http://www.dnb.de/EN/lds", - "prefix": "deutsche-nationalbibliografie-dnb" + "prefix": "deutsche-nationalbibliografie-dnb", + "title": "Deutsche Nationalbibliografie (DNB)", + "uri": "http://www.dnb.de/EN/lds" }, { - "title": "URIBurner", "namespace": "http://linkeddata.uriburner.com/", - "uri": "http://uriburner.com/", - "prefix": "uriburner" + "prefix": "uriburner", + "title": "URIBurner", + "uri": "http://uriburner.com/" }, { - "title": "ThIST", "namespace": "http://linkeddata.ge.imati.cnr.it/resource/ThIST/", - "uri": "http://purl.org/NET/ThISTWebPage", - "prefix": "thist" + "prefix": "thist", + "title": "ThIST", + "uri": "http://purl.org/NET/ThISTWebPage" }, { - "title": "Datos.bcn.cl", "namespace": "http://datos.bcn.cl/recurso/", - "uri": "https://datos.bcn.cl/es/", - "prefix": "datos-bcn-cl" + "prefix": "datos-bcn-cl", + "title": "Datos.bcn.cl", + "uri": "https://datos.bcn.cl/es/" }, { - "title": "PreMOn", "namespace": "pm", - "uri": "http://premon.fbk.eu", - "prefix": "premon" + "prefix": "premon", + "title": "PreMOn", + "uri": "http://premon.fbk.eu" }, { - "title": "Addgene", "namespace": "http://purl.org/science/plasmid/addgene/", - "uri": "http://www.addgene.org/", - "prefix": "addgene" + "prefix": "addgene", + "title": "Addgene", + "uri": "http://www.addgene.org/" }, { - "title": "Museos de Espa\u00f1a, colecci\u00f3n de museos p\u00fablicos y privados espa\u00f1oles (GNOSS)", "namespace": "http://museos.gnoss.com/comunidad/mismuseos/", - "uri": "http://museos.gnoss.com/comunidad/mismuseos/", - "prefix": "museosespania-gnoss" + "prefix": "museosespania-gnoss", + "title": "Museos de Espa\u00f1a, colecci\u00f3n de museos p\u00fablicos y privados espa\u00f1oles (GNOSS)", + "uri": "http://museos.gnoss.com/comunidad/mismuseos/" }, { - "title": "Institutions and Bodies of the European Union", "namespace": "http://institutions.publicdata.eu/#", - "uri": "http://institutions.publicdata.eu/", - "prefix": "eu-institutions" + "prefix": "eu-institutions", + "title": "Institutions and Bodies of the European Union", + "uri": "http://institutions.publicdata.eu/" }, { - "title": "eagle-i @ Universidad Central del Caribe", "namespace": "http://uccaribe.eagle-i.net/i/", - "uri": "http://uccaribe.eagle-i.net", - "prefix": "eagle-i-uccaribe" + "prefix": "eagle-i-uccaribe", + "title": "eagle-i @ Universidad Central del Caribe", + "uri": "http://uccaribe.eagle-i.net" }, { - "title": "NAICS 2007", "namespace": "http://purl.org/weso/pscs/naics/2007/resource", - "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/", - "prefix": "naics-2007" + "prefix": "naics-2007", + "title": "NAICS 2007", + "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/" }, { - "title": "Institutions of public power of the Czech Republic", "namespace": "https://linked.opendata.cz/zdroj/ovm/", - "uri": "https://linked.opendata.cz/zdroj/datov\u00e1-sada/ovm", - "prefix": "cz-ovm" + "prefix": "cz-ovm", + "title": "Institutions of public power of the Czech Republic", + "uri": "https://linked.opendata.cz/zdroj/datov\u00e1-sada/ovm" }, { - "title": "Pali English Lexicon", "namespace": "http://data.kasabi.com/dataset/pali-english-lexicon", - "uri": "http://kasabi.com/dataset/pali-english-lexicon", - "prefix": "pali-english-lexicon" + "prefix": "pali-english-lexicon", + "title": "Pali English Lexicon", + "uri": "http://kasabi.com/dataset/pali-english-lexicon" }, { - "title": "statistics.data.gov.uk", "namespace": "http://statistics.data.gov.uk/id/", - "uri": "http://statistics.data.gov.uk/", - "prefix": "statistics-data-gov-uk" + "prefix": "statistics-data-gov-uk", + "title": "statistics.data.gov.uk", + "uri": "http://statistics.data.gov.uk/" }, { - "title": "ASN:US", "namespace": "http://purl.org/ASN/schema/core/", - "uri": "http://asn.jesandco.org", - "prefix": "asn-us" + "prefix": "asn-us", + "title": "ASN:US", + "uri": "http://asn.jesandco.org" }, { - "title": "IBM Research GmbH (RKBExplorer)", "namespace": "http://ibm.rkbexplorer.com/id/", - "uri": "http://ibm.rkbexplorer.com", - "prefix": "rkb-explorer-ibm" + "prefix": "rkb-explorer-ibm", + "title": "IBM Research GmbH (RKBExplorer)", + "uri": "http://ibm.rkbexplorer.com" }, { - "title": "Framester", "namespace": "https://w3id.org/framester", - "uri": "https://w3id.org/framester", - "prefix": "framester" + "prefix": "framester", + "title": "Framester", + "uri": "https://w3id.org/framester" }, { - "title": "ePrints3 Institutional Archive Collection (RKBExplorer)", "namespace": "http://eprints.rkbexplorer.com/id/", - "uri": "http://eprints.rkbexplorer.com/", - "prefix": "rkb-explorer-eprints" + "prefix": "rkb-explorer-eprints", + "title": "ePrints3 Institutional Archive Collection (RKBExplorer)", + "uri": "http://eprints.rkbexplorer.com/" }, { - "title": "CPA 2008", "namespace": "http://purl.org/weso/pscs/cpa/2008/resource", - "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/", - "prefix": "cpa-2008" + "prefix": "cpa-2008", + "title": "CPA 2008", + "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/" }, { - "title": "ICANE", "namespace": "http://www.icane.es", - "uri": "http://www.icane.es/semantic-web", - "prefix": "icane" + "prefix": "icane", + "title": "ICANE", + "uri": "http://www.icane.es/semantic-web" }, { - "title": "Universit\u00e9 Paul Sabatier - Toulouse 3 (RKB Explorer)", "namespace": "http://irit.rkbexplorer.com/id/", - "uri": "http://irit.rkbexplorer.com", - "prefix": "rkb-explorer-irit" + "prefix": "rkb-explorer-irit", + "title": "Universit\u00e9 Paul Sabatier - Toulouse 3 (RKB Explorer)", + "uri": "http://irit.rkbexplorer.com" }, { - "title": "TaxonConcept Knowledge Base", "namespace": "http://lod.taxonconcept.org/", - "uri": "http://lod.taxonconcept.org/", - "prefix": "taxonconcept" + "prefix": "taxonconcept", + "title": "TaxonConcept Knowledge Base", + "uri": "http://lod.taxonconcept.org/" }, { - "title": "N-Lex as Linked Data", "namespace": "http://n-lex.publicdata.eu/ontology", - "uri": "http://n-lex.publicdata.eu/", - "prefix": "n-lex-as-linked-data" + "prefix": "n-lex-as-linked-data", + "title": "N-Lex as Linked Data", + "uri": "http://n-lex.publicdata.eu/" }, { - "title": "eagle-i @ University of Texas at El Paso", "namespace": "http://utep.eagle-i.net/i/", - "uri": "http://utep.eagle-i.net", - "prefix": "eagle-i-utep" + "prefix": "eagle-i-utep", + "title": "eagle-i @ University of Texas at El Paso", + "uri": "http://utep.eagle-i.net" }, { - "title": "BibSonomy - The blue social bookmark and publication sharing system.", "namespace": "https://bibsonomy.org/", - "uri": "https://www.bibsonomy.org/", - "prefix": "BibSonomy" + "prefix": "BibSonomy", + "title": "BibSonomy - The blue social bookmark and publication sharing system.", + "uri": "https://www.bibsonomy.org/" }, { - "title": "Budapest University of Technology and Economics (RKBExplorer)", "namespace": "http://budapest.rkbexplorer.com/id/", - "uri": "http://budapest.rkbexplorer.com/", - "prefix": "rkb-explorer-budapest" + "prefix": "rkb-explorer-budapest", + "title": "Budapest University of Technology and Economics (RKBExplorer)", + "uri": "http://budapest.rkbexplorer.com/" }, { - "title": "List of laws used in inspection reports of SAO", "namespace": "http://data.nku.cz/resource/", - "uri": "http://data.nku.cz/resource/dataset/check-actions-law", - "prefix": "cz-sao-check-actions-law" + "prefix": "cz-sao-check-actions-law", + "title": "List of laws used in inspection reports of SAO", + "uri": "http://data.nku.cz/resource/dataset/check-actions-law" }, { - "title": "Linked Stage Graph", "namespace": "http://slod.fiz-karlsruhe.de", - "uri": "http://slod.fiz-karlsruhe.de/", - "prefix": "slod" + "prefix": "slod", + "title": "Linked Stage Graph", + "uri": "http://slod.fiz-karlsruhe.de/" }, { - "title": "Learning Analytics and Knowledge (LAK) Dataset", "namespace": "http://data.linkededucation.org/resource/", - "uri": "http://www.solaresearch.org/resources/lak-dataset/", - "prefix": "lak-dataset" + "prefix": "lak-dataset", + "title": "Learning Analytics and Knowledge (LAK) Dataset", + "uri": "http://www.solaresearch.org/resources/lak-dataset/" }, { - "title": "Legija Stranaca", "namespace": "Moje Ime je Legija", - "uri": "http://www.legion-etrangere.com", - "prefix": "Uros Legija Susa" + "prefix": "Uros Legija Susa", + "title": "Legija Stranaca", + "uri": "http://www.legion-etrangere.com" }, { - "title": "Muziekweb", "namespace": "https://data.muziekweb.nl/Link/", - "uri": "https://data.muziekweb.nl/", - "prefix": "muziekweb" + "prefix": "muziekweb", + "title": "Muziekweb", + "uri": "https://data.muziekweb.nl/" }, { - "title": "Sanskrit English Lexicon", "namespace": "http://data.kasabi.com/dataset/sanskrit-english-lexicon", - "uri": "http://kasabi.com/dataset/sanskrit-english-lexicon", - "prefix": "sanskrit-english-lexicon" + "prefix": "sanskrit-english-lexicon", + "title": "Sanskrit English Lexicon", + "uri": "http://kasabi.com/dataset/sanskrit-english-lexicon" }, { - "title": "World Factbook (FU Berlin)", "namespace": "http://www4.wiwiss.fu-berlin.de/factbook/resource/", - "uri": "http://www4.wiwiss.fu-berlin.de/factbook/", - "prefix": "world-factbook-fu-berlin" + "prefix": "world-factbook-fu-berlin", + "title": "World Factbook (FU Berlin)", + "uri": "http://www4.wiwiss.fu-berlin.de/factbook/" }, { - "title": "National Library of Greece Authority Records", "namespace": "http://nlg.okfn.gr/resource/authority/", - "uri": "http://nlg.okfn.gr", - "prefix": "national-library-of-greece-authority-records" + "prefix": "national-library-of-greece-authority-records", + "title": "National Library of Greece Authority Records", + "uri": "http://nlg.okfn.gr" }, { - "title": "List of prices of reimbursed medicinal products marketed in Czech republic", "namespace": "http://linked.opendata.cz/resource/sukl/medicinal-product-packaging/", - "uri": "http://linked.opendata.cz/resource/dataset/sukl/drug-prices", - "prefix": "cz-sidc-drug-prices" + "prefix": "cz-sidc-drug-prices", + "title": "List of prices of reimbursed medicinal products marketed in Czech republic", + "uri": "http://linked.opendata.cz/resource/dataset/sukl/drug-prices" }, { - "title": "CPV 2008", "namespace": "http://purl.org/weso/pscs/cpv/2008/resource", - "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/", - "prefix": "cpv-2008" + "prefix": "cpv-2008", + "title": "CPV 2008", + "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/" }, { - "title": "eagle-i @ Howard University", "namespace": "http://howard.eagle-i.net/i/", - "uri": "http://howard.eagle-i.net", - "prefix": "eagle-i-howard" + "prefix": "eagle-i-howard", + "title": "eagle-i @ Howard University", + "uri": "http://howard.eagle-i.net" }, { - "title": "Published subjects for languages in ISO 639", "namespace": "http://psi.oasis-open.org/iso/639/", - "uri": "http://psi.oasis-open.org/iso/639/", - "prefix": "iso-639-oasis" + "prefix": "iso-639-oasis", + "title": "Published subjects for languages in ISO 639", + "uri": "http://psi.oasis-open.org/iso/639/" }, { - "title": "ReSIST Resilience Mechanisms (RKBExplorer.com)", "namespace": "http://resex.rkbexplorer.com/id/", - "uri": "http://resex.rkbexplorer.com", - "prefix": "rkb-explorer-resex" + "prefix": "rkb-explorer-resex", + "title": "ReSIST Resilience Mechanisms (RKBExplorer.com)", + "uri": "http://resex.rkbexplorer.com" }, { - "title": "RAMEAU subject headings (STITCH)", "namespace": "http://stitch.cs.vu.nl/vocabularies/rameau/", - "uri": "http://stitch.cs.vu.nl/rameau/", - "prefix": "stitch-rameau" + "prefix": "stitch-rameau", + "title": "RAMEAU subject headings (STITCH)", + "uri": "http://stitch.cs.vu.nl/rameau/" }, { - "title": "OpenUpLabs COINS", "namespace": "http://finance.data.gov.uk/def/coins/", - "uri": "http://data.gov.uk/resources/coins", - "prefix": "coins-openuplabs" + "prefix": "coins-openuplabs", + "title": "OpenUpLabs COINS", + "uri": "http://data.gov.uk/resources/coins" }, { - "title": "Open Land Use", "namespace": "http://w3id.org/foodie/olu/", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "Open Land Use" + "prefix": "Open Land Use", + "title": "Open Land Use", + "uri": "https://www.foodie-cloud.org/fct/" }, { - "title": "Web NDL Authorities - National Diet Library of Japan", "namespace": "http://id.ndl.go.jp/auth/ndlna/", - "uri": "http://id.ndl.go.jp/auth/ndla", - "prefix": "national-diet-library-authorities" + "prefix": "national-diet-library-authorities", + "title": "Web NDL Authorities - National Diet Library of Japan", + "uri": "http://id.ndl.go.jp/auth/ndla" }, { - "title": "Ordnance Survey (RKBExplorer)", "namespace": "http://os.rkbexplorer.com/id/", - "uri": "http://os.rkbexplorer.com", - "prefix": "rkb-explorer-os" + "prefix": "rkb-explorer-os", + "title": "Ordnance Survey (RKBExplorer)", + "uri": "http://os.rkbexplorer.com" }, { - "title": "Amsterdam Museum as Linked Open Data in the Europeana Data Model", "namespace": "http://purl.org/collections/nl/am/", - "uri": "http://semanticweb.cs.vu.nl/lod/am/", - "prefix": "amsterdam-museum-as-edm-lod" + "prefix": "amsterdam-museum-as-edm-lod", + "title": "Amsterdam Museum as Linked Open Data in the Europeana Data Model", + "uri": "http://semanticweb.cs.vu.nl/lod/am/" }, { - "title": "Chemicals reported to the Integrated register of pollution", "namespace": "http://linked.opendata.cz/resource/domain/irz/", - "uri": "http://linked.opendata.cz/resource/dataset/cenia-irz-chemicals", - "prefix": "cz-cenia-irz-chemicals" + "prefix": "cz-cenia-irz-chemicals", + "title": "Chemicals reported to the Integrated register of pollution", + "uri": "http://linked.opendata.cz/resource/dataset/cenia-irz-chemicals" }, { - "title": "List of prices of medicinal products marketed in Kingdom of Spain", "namespace": "http://linked.opendata.cz/resource/es/msssi", - "uri": "http://linked.opendata.cz/resource/dataset/es/msssi/drug-prices", - "prefix": "es-msssi-drug-prices" + "prefix": "es-msssi-drug-prices", + "title": "List of prices of medicinal products marketed in Kingdom of Spain", + "uri": "http://linked.opendata.cz/resource/dataset/es/msssi/drug-prices" }, { - "title": "eagle-i @ University of Texas at San Antonio", "namespace": "http://utsa.eagle-i.net/i/", - "uri": "http://utsa.eagle-i.net", - "prefix": "eagle-i-utsa" + "prefix": "eagle-i-utsa", + "title": "eagle-i @ University of Texas at San Antonio", + "uri": "http://utsa.eagle-i.net" }, { - "title": "Nobel Prizes", "namespace": "http://data.nobelprize.org/resource/", - "uri": "http://www.nobelprize.org/nobel_organizations/nobelmedia/nobelprize_org/developer/manual-linkeddata/terms.html", - "prefix": "nobelprizes" + "prefix": "nobelprizes", + "title": "Nobel Prizes", + "uri": "http://www.nobelprize.org/nobel_organizations/nobelmedia/nobelprize_org/developer/manual-linkeddata/terms.html" }, { - "title": "European Commission Competition data set (FU Berlin)", "namespace": "http://www4.wiwiss.fu-berlin.de/eccompetition/resource/", - "uri": "http://www4.wiwiss.fu-berlin.de/eccompetition/", - "prefix": "fu-berlin-ec-competition" + "prefix": "fu-berlin-ec-competition", + "title": "European Commission Competition data set (FU Berlin)", + "uri": "http://www4.wiwiss.fu-berlin.de/eccompetition/" }, { - "title": "Italian public schools (LinkedOpenData.it)", "namespace": "http://data.linkedopendata.it/scuole/resource/", - "uri": "http://www.linkedopendata.it/datasets/scuole", - "prefix": "italian-public-schools-linkedopendata-it" + "prefix": "italian-public-schools-linkedopendata-it", + "title": "Italian public schools (LinkedOpenData.it)", + "uri": "http://www.linkedopendata.it/datasets/scuole" }, { - "title": "Orthology and Diseases Information - OGO", "namespace": "http:miuras.inf.um.es/ogolod/resource/Gene/67440", - "uri": "http://miuras.inf.um.es/~ogo/ogolod.html", - "prefix": "ogolod" + "prefix": "ogolod", + "title": "Orthology and Diseases Information - OGO", + "uri": "http://miuras.inf.um.es/~ogo/ogolod.html" }, { - "title": "GeoNames Semantic Web", "namespace": "http://sws.geonames.org/", - "uri": "http://www.geonames.org/ontology/", - "prefix": "geonames-semantic-web" + "prefix": "geonames-semantic-web", + "title": "GeoNames Semantic Web", + "uri": "http://www.geonames.org/ontology/" }, { - "title": "VIAF: The Virtual International Authority File", "namespace": "http://viaf.org/viaf/", - "uri": "http://viaf.org/viaf/data/", - "prefix": "viaf" + "prefix": "viaf", + "title": "VIAF: The Virtual International Authority File", + "uri": "http://viaf.org/viaf/data/" }, { - "title": "Biblioteca Escolar Digital CITA", "namespace": "http://bibliotecaescolardigital.es", - "uri": "http://red.gnoss.com/comunidad/Biblioteca-Escolar-Digital", - "prefix": "biblioteca-escolar-digital-cita" + "prefix": "biblioteca-escolar-digital-cita", + "title": "Biblioteca Escolar Digital CITA", + "uri": "http://red.gnoss.com/comunidad/Biblioteca-Escolar-Digital" }, { - "title": "R&D Projects", "namespace": "http://linked.opendata.cz/resource/domain/vavai/", - "uri": "http://linked.opendata.cz/resource/dataset/vavai/projects", - "prefix": "cz-vavai-projects" + "prefix": "cz-vavai-projects", + "title": "R&D Projects", + "uri": "http://linked.opendata.cz/resource/dataset/vavai/projects" }, { - "title": "Deusto Entrepreneurship: sharing business knowledge", "namespace": "http://deusto.gnoss.com/en/community/deustoEntrepreneurship", - "uri": "http://deusto.gnoss.com/en/community/deustoEntrepreneurship", - "prefix": "deustoentrepreneurship" + "prefix": "deustoentrepreneurship", + "title": "Deusto Entrepreneurship: sharing business knowledge", + "uri": "http://deusto.gnoss.com/en/community/deustoEntrepreneurship" }, { - "title": "Linked Life Data", "namespace": "http://linkedlifedata.com/resource/", - "uri": "http://linkedlifedata.com/", - "prefix": "linked-life-data" + "prefix": "linked-life-data", + "title": "Linked Life Data", + "uri": "http://linkedlifedata.com/" }, { - "title": "Linked Open Vocabularies (LOV)", "namespace": "http://lov.okfn.org/dataset/lov/lov#", - "uri": "http://lov.okfn.org/dataset/lov/index.html", - "prefix": "linked-open-vocabularies-lov" + "prefix": "linked-open-vocabularies-lov", + "title": "Linked Open Vocabularies (LOV)", + "uri": "http://lov.okfn.org/dataset/lov/index.html" }, { - "title": "WebIsALOD", "namespace": "http://webisa.webdatacommons.org/", - "uri": "http://webisa.webdatacommons.org", - "prefix": "webisalod" + "prefix": "webisalod", + "title": "WebIsALOD", + "uri": "http://webisa.webdatacommons.org" }, { - "title": "Between Our Worlds", "namespace": "https://betweenourworlds.org/", - "uri": "https://betweenourworlds.org", - "prefix": "betweenourworlds" + "prefix": "betweenourworlds", + "title": "Between Our Worlds", + "uri": "https://betweenourworlds.org" }, { - "title": "Medicinal products marketed in Czech Republic", "namespace": "http://linked.opendata.cz/resource/sukl/medicinal-product-packaging/", - "uri": "http://linked.opendata.cz/resource/dataset/sukl/drugs", - "prefix": "cz-sidc-drugs" + "prefix": "cz-sidc-drugs", + "title": "Medicinal products marketed in Czech Republic", + "uri": "http://linked.opendata.cz/resource/dataset/sukl/drugs" }, { - "title": "Japanese Textbook LOD", "namespace": "https://w3id.org/jp-textbook/", - "uri": "https://w3id.org/jp-textbook/", - "prefix": "jp-textbook" + "prefix": "jp-textbook", + "title": "Japanese Textbook LOD", + "uri": "https://w3id.org/jp-textbook/" }, { - "title": "Surge Radio", "namespace": "http://www.surgeradio.co.uk/", - "uri": "http://www.surgeradio.co.uk/", - "prefix": "surge-radio" + "prefix": "surge-radio", + "title": "Surge Radio", + "uri": "http://www.surgeradio.co.uk/" }, { - "title": "RDF Book Mashup", "namespace": "http://www4.wiwiss.fu-berlin.de/bookmashup/", - "uri": "http://www4.wiwiss.fu-berlin.de/bizer/bookmashup/", - "prefix": "rdf-book-mashup" + "prefix": "rdf-book-mashup", + "title": "RDF Book Mashup", + "uri": "http://www4.wiwiss.fu-berlin.de/bizer/bookmashup/" }, { - "title": "CiteSeer (Research Index) (RKBExplorer)", "namespace": "http://citeseer.rkbexplorer.com/id/", - "uri": "http://citeseer.rkbexplorer.com/", - "prefix": "rkb-explorer-citeseer" + "prefix": "rkb-explorer-citeseer", + "title": "CiteSeer (Research Index) (RKBExplorer)", + "uri": "http://citeseer.rkbexplorer.com/" }, { - "title": "data.bnf.fr - Biblioth\u00e8que nationale de France", "namespace": "http://data.bnf.fr/", - "uri": "http://data.bnf.fr", - "prefix": "data-bnf-fr" + "prefix": "data-bnf-fr", + "title": "data.bnf.fr - Biblioth\u00e8que nationale de France", + "uri": "http://data.bnf.fr" }, { - "title": "DBpedia in French", "namespace": "http://fr.dbpedia.org/resource/", - "uri": "http://fr.dbpedia.org", - "prefix": "dbpedia-fr" + "prefix": "dbpedia-fr", + "title": "DBpedia in French", + "uri": "http://fr.dbpedia.org" }, { - "title": "Active ingredients of medicinal products available in Czech Republic", "namespace": "http://linked.opendata.cz/resource/sukl/active-ingredient/", - "uri": "http://linked.opendata.cz/resource/dataset/sukl/drug-ingredients", - "prefix": "cz-sidc-drug-ingredients" + "prefix": "cz-sidc-drug-ingredients", + "title": "Active ingredients of medicinal products available in Czech Republic", + "uri": "http://linked.opendata.cz/resource/dataset/sukl/drug-ingredients" }, { - "title": "SmartLink: Linked Services Non-Functional Properties", "namespace": "http://smartlink.open.ac.uk/smartlink/resource/", - "uri": "http://purl.org/smartlink", - "prefix": "smartlink" + "prefix": "smartlink", + "title": "SmartLink: Linked Services Non-Functional Properties", + "uri": "http://purl.org/smartlink" }, { - "title": "Allie Abbreviation And Long Form Database in Life Science", "namespace": "http://purl.org/allie/", - "uri": "http://allie.dbcls.jp/", - "prefix": "allie-abbreviation-and-long-form-database-in-life-science" + "prefix": "allie-abbreviation-and-long-form-database-in-life-science", + "title": "Allie Abbreviation And Long Form Database in Life Science", + "uri": "http://allie.dbcls.jp/" }, { - "title": "digitaleconomy", "namespace": "http://digitaleconomy.rkbexplorer.com/id/", - "uri": "http://digitaleconomy.rkbexplorer.com", - "prefix": "rkb-explorer-digitaleconomy" + "prefix": "rkb-explorer-digitaleconomy", + "title": "digitaleconomy", + "uri": "http://digitaleconomy.rkbexplorer.com" }, { - "title": "GNOSS.com, a Social and Semantic Platform", "namespace": "http://gnoss.com/", - "uri": "http://gnoss.com/en/home", - "prefix": "gnoss-com-a-social-and-semantic-platform" + "prefix": "gnoss-com-a-social-and-semantic-platform", + "title": "GNOSS.com, a Social and Semantic Platform", + "uri": "http://gnoss.com/en/home" }, { - "title": "Polish Land Parcel Information System (LPIS) dataset", "namespace": "http://w3id.org/foodie/open/pl/LPIS/", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "LPIS (Poland)" + "prefix": "LPIS (Poland)", + "title": "Polish Land Parcel Information System (LPIS) dataset", + "uri": "https://www.foodie-cloud.org/fct/" }, { - "title": "English Language Books listed in Printed Book Auction Catalogues from 17th Century Holland", "namespace": "http://keithalexander.co.uk/pbac", - "uri": "http://keithalexander.co.uk/pbac", - "prefix": "printed-book-auction-catalogues" + "prefix": "printed-book-auction-catalogues", + "title": "English Language Books listed in Printed Book Auction Catalogues from 17th Century Holland", + "uri": "http://keithalexander.co.uk/pbac" }, { - "title": "Diseasome", "namespace": "http://www4.wiwiss.fu-berlin.de/diseasome/resource/", - "uri": "http://www4.wiwiss.fu-berlin.de/diseasome/", - "prefix": "fu-berlin-diseasome" + "prefix": "fu-berlin-diseasome", + "title": "Diseasome", + "uri": "http://www4.wiwiss.fu-berlin.de/diseasome/" }, { - "title": "Proyecto Apadrina, Marketing Punto de Venta", "namespace": "http://gnoss.com/comunidad/MPV-APADRINA", - "uri": "http://gnoss.com/comunidad/MPV-APADRINA", - "prefix": "proyectoapadrina" + "prefix": "proyectoapadrina", + "title": "Proyecto Apadrina, Marketing Punto de Venta", + "uri": "http://gnoss.com/comunidad/MPV-APADRINA" }, { - "title": "Eurostat RDF datasets", "namespace": "http://ec.europa.eu/eurostat/", - "uri": "http://ec.europa.eu/eurostat/ramon/rdfdata/", - "prefix": "eurostat-rdf" + "prefix": "eurostat-rdf", + "title": "Eurostat RDF datasets", + "uri": "http://ec.europa.eu/eurostat/ramon/rdfdata/" }, { - "title": "The View From", "namespace": "http://theviewfrom.org/things/", - "uri": "http://theviewfrom.org/", - "prefix": "the-view-from" + "prefix": "the-view-from", + "title": "The View From", + "uri": "http://theviewfrom.org/" }, { - "title": "Summary types of Czech institutions of public power", "namespace": "https://linked.opendata.cz/zdroj/ovm/", - "uri": "https://linked.opendata.cz/zdroj/datov\u00e1-sada/souhrnn\u00e9-typy-ovm", - "prefix": "cz-souhrnne-typy-ovm" + "prefix": "cz-souhrnne-typy-ovm", + "title": "Summary types of Czech institutions of public power", + "uri": "https://linked.opendata.cz/zdroj/datov\u00e1-sada/souhrnn\u00e9-typy-ovm" }, { - "title": "Nomenclator Asturias", "namespace": "http://purl.org/weso/nomenclator/", - "uri": "http://www.josemalvarez.es/web/2011/11/01/nomenclator-asturias-2010/", - "prefix": "nomenclator-asturias" + "prefix": "nomenclator-asturias", + "title": "Nomenclator Asturias", + "uri": "http://www.josemalvarez.es/web/2011/11/01/nomenclator-asturias-2010/" }, { - "title": "UNODC - Statistics on criminal justice", "namespace": "http://unodc.publicdata.eu/r/", - "uri": "http://unodc.publicdata.eu/", - "prefix": "unodc" + "prefix": "unodc", + "title": "UNODC - Statistics on criminal justice", + "uri": "http://unodc.publicdata.eu/" }, { - "title": "Geological Survey of Austria (GBA) - Thesaurus", "namespace": "http://resource.geolba.ac.at/", - "uri": "http://resource.geolba.ac.at/", - "prefix": "geological-survey-of-austria-thesaurus" + "prefix": "geological-survey-of-austria-thesaurus", + "title": "Geological Survey of Austria (GBA) - Thesaurus", + "uri": "http://resource.geolba.ac.at/" }, { - "title": "DBTune.org/classical", "namespace": "http://dbtune.org/classical/resource/", - "uri": "http://dbtune.org/classical/", - "prefix": "dbtune-classical" + "prefix": "dbtune-classical", + "title": "DBTune.org/classical", + "uri": "http://dbtune.org/classical/" }, { - "title": "Cultural Heritage Thesaurus", "namespace": "https://data.cultureelerfgoed.nl/term/id/cht/", - "uri": "https://data.cultureelerfgoed.nl/", - "prefix": "cht" + "prefix": "cht", + "title": "Cultural Heritage Thesaurus", + "uri": "https://data.cultureelerfgoed.nl/" }, { - "title": "eagle-i @ Oregon Health and Science University", "namespace": "http://ohsu.eagle-i.net/i/", - "uri": "http://ohsu.eagle-i.net", - "prefix": "eagle-i-ohsu" + "prefix": "eagle-i-ohsu", + "title": "eagle-i @ Oregon Health and Science University", + "uri": "http://ohsu.eagle-i.net" }, { - "title": "Data.gov", "namespace": "http://www.data.gov/semantic/data/", - "uri": "http://data.gov/", - "prefix": "data-gov" + "prefix": "data-gov", + "title": "Data.gov", + "uri": "http://data.gov/" }, { - "title": "UK JISC (RKBExplorer)", "namespace": "http://jisc.rkbexplorer.com/id/", - "uri": "http://jisc.rkbexplorer.com", - "prefix": "rkb-explorer-jisc" + "prefix": "rkb-explorer-jisc", + "title": "UK JISC (RKBExplorer)", + "uri": "http://jisc.rkbexplorer.com" }, { - "title": "MusicBrainz (zitgist.com)", "namespace": "http://zitgist.com/music", - "uri": "http://fgiasson.com/blog/index.php/2007/05/22/browsing-musicbrainzs-dataset-via-uri-dereferencing/", - "prefix": "zitgist-musicbrainz" + "prefix": "zitgist-musicbrainz", + "title": "MusicBrainz (zitgist.com)", + "uri": "http://fgiasson.com/blog/index.php/2007/05/22/browsing-musicbrainzs-dataset-via-uri-dereferencing/" }, { - "title": "Semantic XBRL Financial Data", "namespace": "http://rhizomik.net/semanticxbrl/", - "uri": "http://rhizomik.net/semanticxbrl/", - "prefix": "semantic-xbrl" + "prefix": "semantic-xbrl", + "title": "Semantic XBRL Financial Data", + "uri": "http://rhizomik.net/semanticxbrl/" }, { - "title": "DBpedia in Spanish", "namespace": "http://es.dbpedia.org/resource/", - "uri": "http://es.dbpedia.org", - "prefix": "dbpedia-es" + "prefix": "dbpedia-es", + "title": "DBpedia in Spanish", + "uri": "http://es.dbpedia.org" }, { - "title": "LinkedGeoData", "namespace": "http://linkedgeodata.org/", - "uri": "http://linkedgeodata.org/", - "prefix": "linkedgeodata" + "prefix": "linkedgeodata", + "title": "LinkedGeoData", + "uri": "http://linkedgeodata.org/" }, { - "title": "business.data.gov.uk", "namespace": "http://business.data.gov.uk/id/company/", - "uri": "http://business.data.gov.uk/", - "prefix": "business-data-gov-uk" + "prefix": "business-data-gov-uk", + "title": "business.data.gov.uk", + "uri": "http://business.data.gov.uk/" }, { - "title": "DBTune.org MySpace RDF Service", "namespace": "http://dbtune.org/myspace/", - "uri": "http://dbtune.org/myspace/", - "prefix": "dbtune-myspace" + "prefix": "dbtune-myspace", + "title": "DBTune.org MySpace RDF Service", + "uri": "http://dbtune.org/myspace/" }, { - "title": "Polythematic Structured Subject Heading System", "namespace": "http://psh.ntkcz.cz/", - "uri": "http://psh.ntkcz.cz/skos/home/html/en", - "prefix": "psh-subject-headings" + "prefix": "psh-subject-headings", + "title": "Polythematic Structured Subject Heading System", + "uri": "http://psh.ntkcz.cz/skos/home/html/en" }, { - "title": "JISC Open Bibliography British National Bibliography dataset", "namespace": "http://bnb.bibliographica.org/", - "uri": "http://openbiblio.net/2010/11/17/jisc-openbibliography-british-library-data-release/", - "prefix": "jiscopenbib-bl_bnb-1" + "prefix": "jiscopenbib-bl_bnb-1", + "title": "JISC Open Bibliography British National Bibliography dataset", + "uri": "http://openbiblio.net/2010/11/17/jisc-openbibliography-british-library-data-release/" }, { - "title": "dotAC (RKBExplorer)", "namespace": "http://dotac.rkbexplorer.com/id/", - "uri": "http://dotac.rkbexplorer.com", - "prefix": "rkb-explorer-dotac" + "prefix": "rkb-explorer-dotac", + "title": "dotAC (RKBExplorer)", + "uri": "http://dotac.rkbexplorer.com" }, { - "title": "OpenMobileNetwork", "namespace": "http://www.openmobilenetwork.org/resource/", - "uri": "http://www.openmobilenetwork.org", - "prefix": "openmobilenetwork" + "prefix": "openmobilenetwork", + "title": "OpenMobileNetwork", + "uri": "http://www.openmobilenetwork.org" }, { - "title": "SocialLink", "namespace": "http://sociallink.futuro.media/ontology", - "uri": "http://sociallink.futuro.media", - "prefix": "SocialLink" + "prefix": "SocialLink", + "title": "SocialLink", + "uri": "http://sociallink.futuro.media" }, { - "title": "Norway fishery stocks dataset", "namespace": "http://standardgraphs.ices.dk/stocks/", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "Fishery Stock Dataset" + "prefix": "Fishery Stock Dataset", + "title": "Norway fishery stocks dataset", + "uri": "https://www.foodie-cloud.org/fct/" }, { - "title": "EventMedia", "namespace": "http://data.linkedevents.org/", - "uri": "http://eventmedia.eurecom.fr/", - "prefix": "event-media" + "prefix": "event-media", + "title": "EventMedia", + "uri": "http://eventmedia.eurecom.fr/" }, { - "title": "Micka (EO metadata)", "namespace": "http://micka.lesprojekt.cz/catalog/dataset/", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "EO metadata" + "prefix": "EO metadata", + "title": "Micka (EO metadata)", + "uri": "https://www.foodie-cloud.org/fct/" }, { - "title": "Universit\u00e0 di Pisa (RKBExplorer)", "namespace": "http://pisa.rkbexplorer.com/id/", - "uri": "http://pisa.rkbexplorer.com", - "prefix": "rkb-explorer-pisa" + "prefix": "rkb-explorer-pisa", + "title": "Universit\u00e0 di Pisa (RKBExplorer)", + "uri": "http://pisa.rkbexplorer.com" }, { - "title": "Open Data Web", "namespace": "http://data.odw.tw/record", - "uri": "http://data.odw.tw/", - "prefix": " data.odw.tw" + "prefix": " data.odw.tw", + "title": "Open Data Web", + "uri": "http://data.odw.tw/" }, { - "title": "National Science Foundation (RKBExplorer)", "namespace": "http://nsf.rkbexplorer.com/id/", - "uri": "http://nsf.rkbexplorer.com", - "prefix": "rkb-explorer-nsf" + "prefix": "rkb-explorer-nsf", + "title": "National Science Foundation (RKBExplorer)", + "uri": "http://nsf.rkbexplorer.com" }, { - "title": "data-hnm-hu - Hungarian National Museum Datasets", "namespace": "http://data.hnm.hu/id/colls/lib/bib/Instance/", - "uri": "http://hnm.hu", - "prefix": "data-hnm-hu" + "prefix": "data-hnm-hu", + "title": "data-hnm-hu - Hungarian National Museum Datasets", + "uri": "http://hnm.hu" }, { - "title": "Open Data from the Italian National Research Council", "namespace": "http://www.cnr.it/ontology/cnr/individuo/", - "uri": "http://data.cnr.it/site/", - "prefix": "data-cnr-it" + "prefix": "data-cnr-it", + "title": "Open Data from the Italian National Research Council", + "uri": "http://data.cnr.it/site/" }, { - "title": "UK Legislation", "namespace": "http://www.legislation.gov.uk/", - "uri": "http://www.legislation.gov.uk/", - "prefix": "uk-legislation-api" + "prefix": "uk-legislation-api", + "title": "UK Legislation", + "uri": "http://www.legislation.gov.uk/" }, { - "title": "The London Gazette - Gazettes Data", "namespace": "http://www.london-gazette.co.uk/", - "uri": "http://www.london-gazette.co.uk/mashup/gazettesdata.htm", - "prefix": "london-gazette" + "prefix": "london-gazette", + "title": "The London Gazette - Gazettes Data", + "uri": "http://www.london-gazette.co.uk/mashup/gazettesdata.htm" }, { - "title": "data-szepmuveszeti-hu", "namespace": "http://data.szepmuveszeti.hu/id/collections/", - "uri": "http://www.szepmuveszeti.hu", - "prefix": "data-szepmuveszeti-hu" + "prefix": "data-szepmuveszeti-hu", + "title": "data-szepmuveszeti-hu", + "uri": "http://www.szepmuveszeti.hu" }, { - "title": "Unified Foundational Ontology", "namespace": "http://onto.fel.cvut.cz/ontologies/ufo/", - "uri": "http://onto.fel.cvut.cz/ontologies/ufo/current/index-en.html", - "prefix": "ufo" + "prefix": "ufo", + "title": "Unified Foundational Ontology", + "uri": "http://onto.fel.cvut.cz/ontologies/ufo/current/index-en.html" }, { - "title": "Linked NUTS", "namespace": "http://nuts.psi.enakting.org/id/", - "uri": "http://nuts.psi.enakting.org/", - "prefix": "linked-nuts" + "prefix": "linked-nuts", + "title": "Linked NUTS", + "uri": "http://nuts.psi.enakting.org/" }, { - "title": "DBTune.org Jamendo RDF Server", "namespace": "http://dbtune.org/jamendo/", - "uri": "http://dbtune.org/jamendo/", - "prefix": "jamendo-dbtune" + "prefix": "jamendo-dbtune", + "title": "DBTune.org Jamendo RDF Server", + "uri": "http://dbtune.org/jamendo/" }, { - "title": "Community Research and Development Information Service (CORDIS)", "namespace": "http://www4.wiwiss.fu-berlin.de/cordis/resource/", - "uri": "http://www4.wiwiss.fu-berlin.de/cordis/", - "prefix": "fu-berlin-cordis" + "prefix": "fu-berlin-cordis", + "title": "Community Research and Development Information Service (CORDIS)", + "uri": "http://www4.wiwiss.fu-berlin.de/cordis/" }, { - "title": "Open Data Thesaurus", "namespace": "http://vocabulary.semantic-web.at/OpenData/", - "uri": "http://vocabulary.semantic-web.at/PoolParty/wiki/OpenData", - "prefix": "open-data-thesaurus" + "prefix": "open-data-thesaurus", + "title": "Open Data Thesaurus", + "uri": "http://vocabulary.semantic-web.at/PoolParty/wiki/OpenData" }, { - "title": "Thesaurus W for Local Archives", "namespace": "http://www.archivesdefrance.culture.gouv.fr/thesaurus/resource/", - "uri": "http://www.archivesdefrance.culture.gouv.fr/thesaurus/", - "prefix": "thesaurus-w" + "prefix": "thesaurus-w", + "title": "Thesaurus W for Local Archives", + "uri": "http://www.archivesdefrance.culture.gouv.fr/thesaurus/" }, { - "title": "20th Century Press Archives", "namespace": "http://zbw.eu/beta/p20/", - "uri": "http://zbw.eu/beta/p20", - "prefix": "zbw-pressemappe20" + "prefix": "zbw-pressemappe20", + "title": "20th Century Press Archives", + "uri": "http://zbw.eu/beta/p20" }, { - "title": "Data about business entities from the ARES system - business registry of the Czech Republic", "namespace": " http://linked.opendata.cz/resource/business-entity/", - "uri": "http://linked.opendata.cz/resource/dataset/ares/or", - "prefix": "cz-ares-or" + "prefix": "cz-ares-or", + "title": "Data about business entities from the ARES system - business registry of the Czech Republic", + "uri": "http://linked.opendata.cz/resource/dataset/ares/or" }, { - "title": "Diverse Italian ReSIST Partner Institutions (RKBExplorer)", "namespace": "http://italy.rkbexplorer.com/id/", - "uri": "http://italy.rkbexplorer.com", - "prefix": "rkb-explorer-italy" + "prefix": "rkb-explorer-italy", + "title": "Diverse Italian ReSIST Partner Institutions (RKBExplorer)", + "uri": "http://italy.rkbexplorer.com" }, { - "title": "eagle-i @ Clark Atlanta University", "namespace": "http://cau.eagle-i.net/i/", - "uri": "http://cau.eagle-i.net/", - "prefix": "eagle-i-cau" + "prefix": "eagle-i-cau", + "title": "eagle-i @ Clark Atlanta University", + "uri": "http://cau.eagle-i.net/" }, { - "title": "Agendas of institutions of public power of the Czech Republic", "namespace": "http://linked.opendata.cz/resource/domain/seznam.gov.cz/agendy/", - "uri": "http://linked.opendata.cz/resource/dataset/seznam.gov.cz/agendy", - "prefix": "cz-ovm-agendas" + "prefix": "cz-ovm-agendas", + "title": "Agendas of institutions of public power of the Czech Republic", + "uri": "http://linked.opendata.cz/resource/dataset/seznam.gov.cz/agendy" }, { - "title": "GovTrack.us U.S Congress Legislative Data", "namespace": "http://www.rdfabout.com/rdf/usgov/", - "uri": "http://www.govtrack.us", - "prefix": "govtrack" + "prefix": "govtrack", + "title": "GovTrack.us U.S Congress Legislative Data", + "uri": "http://www.govtrack.us" }, { - "title": "ERA - Australian Research Council publication ratings (RKBExplorer)", "namespace": "http://era.rkbexplorer.com/id/", - "uri": "http://era.rkbexplorer.com", - "prefix": "rkb-explorer-era" + "prefix": "rkb-explorer-era", + "title": "ERA - Australian Research Council publication ratings (RKBExplorer)", + "uri": "http://era.rkbexplorer.com" }, { - "title": "DailyMed", "namespace": "http://www4.wiwiss.fu-berlin.de/dailymed/resource/", - "uri": "http://www4.wiwiss.fu-berlin.de/dailymed/", - "prefix": "fu-berlin-dailymed" + "prefix": "fu-berlin-dailymed", + "title": "DailyMed", + "uri": "http://www4.wiwiss.fu-berlin.de/dailymed/" }, { - "title": "University of Newcastle upon Tyne (RKBExplorer)", "namespace": "http://newcastle.rkbexplorer.com/id/", - "uri": "http://newcastle.rkbexplorer.com", - "prefix": "rkb-explorer-newcastle" + "prefix": "rkb-explorer-newcastle", + "title": "University of Newcastle upon Tyne (RKBExplorer)", + "uri": "http://newcastle.rkbexplorer.com" }, { - "title": "lobid-Bibliographic Resources", "namespace": "http://lobid.org/resource/", - "uri": "http://lobid.org/resource", - "prefix": "lobid-resources" + "prefix": "lobid-resources", + "title": "lobid-Bibliographic Resources", + "uri": "http://lobid.org/resource" }, { - "title": "Bricklink", "namespace": "http://data.kasabi.com/dataset/bricklink/", - "uri": "http://kasabi.com/dataset/bricklink", - "prefix": "bricklink" + "prefix": "bricklink", + "title": "Bricklink", + "uri": "http://kasabi.com/dataset/bricklink" }, { - "title": "Swift Vocabulary", "namespace": "http://purl.org/lu/uni/alma/swift", - "uri": "http://purl.org/lu/uni/alma/swift", - "prefix": "Swift" + "prefix": "Swift", + "title": "Swift Vocabulary", + "uri": "http://purl.org/lu/uni/alma/swift" }, { - "title": "transport.data.gov.uk", "namespace": "http://transport.data.gov.uk/id/", - "uri": "http://transport.data.gov.uk/", - "prefix": "transport-data-gov-uk" + "prefix": "transport-data-gov-uk", + "title": "transport.data.gov.uk", + "uri": "http://transport.data.gov.uk/" }, { - "title": "UMBEL (Upper Mapping and Binding Exchange Layer)", "namespace": "http://umbel.org/umbel/", - "uri": "http://umbel.org", - "prefix": "umbel" + "prefix": "umbel", + "title": "UMBEL (Upper Mapping and Binding Exchange Layer)", + "uri": "http://umbel.org" }, { - "title": "MediCare", "namespace": "http://www4.wiwiss.fu-berlin.de/medicare/resource/", - "uri": "http://www4.wiwiss.fu-berlin.de/medicare/", - "prefix": "fu-berlin-medicare" + "prefix": "fu-berlin-medicare", + "title": "MediCare", + "uri": "http://www4.wiwiss.fu-berlin.de/medicare/" }, { - "title": "Norsk inndeling av vitenskapsdisipliner", "namespace": "http://www.ntnu.no/ub/data/nvd/2003/", - "uri": "http://www.ntnu.no/ub/data/nvd/about", - "prefix": "nvd" + "prefix": "nvd", + "title": "Norsk inndeling av vitenskapsdisipliner", + "uri": "http://www.ntnu.no/ub/data/nvd/about" }, { - "title": "eagle-i @ Texas Southern University", "namespace": "http://tsu.eagle-i.net/i/", - "uri": "http://tsu.eagle-i.net", - "prefix": "eagle-i-tsu" + "prefix": "eagle-i-tsu", + "title": "eagle-i @ Texas Southern University", + "uri": "http://tsu.eagle-i.net" }, { - "title": "Universit\u00e4t Ulm (RKBExplorer)", "namespace": "http://ulm.rkbexplorer.com/id/", - "uri": "http://ulm.rkbexplorer.com", - "prefix": "rkb-explorer-ulm" + "prefix": "rkb-explorer-ulm", + "title": "Universit\u00e4t Ulm (RKBExplorer)", + "uri": "http://ulm.rkbexplorer.com" }, { - "title": "Open data of Uzbekistan", "namespace": "open data", - "uri": "https://data.gov.uz/en", - "prefix": "The Respublic of Uzbekistan" + "prefix": "The Respublic of Uzbekistan", + "title": "Open data of Uzbekistan", + "uri": "https://data.gov.uz/en" }, { - "title": "Organogram and staff pay data for Thurrock Thames Gateway Development Corporation", "namespace": "http://organogram.data.gov.uk/data/thurrocktgdc", - "uri": "http://data.gov.uk/dataset/staff-organograms-and-pay-thurrock-thames-gateway-development-corporation", - "prefix": "staff-organograms-and-pay-thurrock-thames-gateway-development-corporation" + "prefix": "staff-organograms-and-pay-thurrock-thames-gateway-development-corporation", + "title": "Organogram and staff pay data for Thurrock Thames Gateway Development Corporation", + "uri": "http://data.gov.uk/dataset/staff-organograms-and-pay-thurrock-thames-gateway-development-corporation" }, { - "title": "eagle-i@ University of Puerto Rico - Medical Sciences Campus", "namespace": "http://upr.eagle-i.net/i/", - "uri": "http://upr.eagle-i.net", - "prefix": "eagle-i-upr" + "prefix": "eagle-i-upr", + "title": "eagle-i@ University of Puerto Rico - Medical Sciences Campus", + "uri": "http://upr.eagle-i.net" }, { - "title": "Telegraphis Linked Data", "namespace": "http://telegraphis.net/", - "uri": "http://telegraphis.net/data/", - "prefix": "telegraphis" + "prefix": "telegraphis", + "title": "Telegraphis Linked Data", + "uri": "http://telegraphis.net/data/" }, { - "title": "Focus of the Czech Trade Inspection Authority's inspections", "namespace": "http://linked.opendata.cz/resource/domain/coi.cz/check-action/", - "uri": "http://linked.opendata.cz/resource/dataset/coi.cz/zamereni", - "prefix": "cz-ctia-focus" + "prefix": "cz-ctia-focus", + "title": "Focus of the Czech Trade Inspection Authority's inspections", + "uri": "http://linked.opendata.cz/resource/dataset/coi.cz/zamereni" }, { - "title": "eagle-i @ Xavier University of Louisiana", "namespace": "http://xula.eagle-i.net/i/", - "uri": "http://xula.eagle-i.net", - "prefix": "eagle-i-xula" + "prefix": "eagle-i-xula", + "title": "eagle-i @ Xavier University of Louisiana", + "uri": "http://xula.eagle-i.net" }, { - "title": "Sanctions of the Czech Trade Inspection Authority", "namespace": "http://linked.opendata.cz/resource/domain/coi.cz/sanction/", - "uri": "http://linked.opendata.cz/resource/dataset/coi.cz/sankce", - "prefix": "cz-ctia-sanctions" + "prefix": "cz-ctia-sanctions", + "title": "Sanctions of the Czech Trade Inspection Authority", + "uri": "http://linked.opendata.cz/resource/dataset/coi.cz/sankce" }, { - "title": "SITC-V4", "namespace": "http://purl.org/weso/pscs/sitc/v4/resource", - "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/", - "prefix": "sitc-v4" + "prefix": "sitc-v4", + "title": "SITC-V4", + "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/" }, { - "title": "Code lists of the legal relationships and documents", "namespace": "http://ruian.linked.opendata.cz/resource/", - "uri": "http://ruian.linked.opendata.cz/resource/dataset/cuzk/pravni-vztahy-listiny", - "prefix": "cz-cuzk-legal-relationships-documents" + "prefix": "cz-cuzk-legal-relationships-documents", + "title": "Code lists of the legal relationships and documents", + "uri": "http://ruian.linked.opendata.cz/resource/dataset/cuzk/pravni-vztahy-listiny" }, { - "title": "Freebase", "namespace": "http://rdf.freebase.com/", - "uri": "http://freebase.com/", - "prefix": "freebase" + "prefix": "freebase", + "title": "Freebase", + "uri": "http://freebase.com/" }, { - "title": "education.data.gov.uk", "namespace": "http://education.data.gov.uk/doc/institution", - "uri": "http://education.data.gov.uk/", - "prefix": "education-data-gov-uk" + "prefix": "education-data-gov-uk", + "title": "education.data.gov.uk", + "uri": "http://education.data.gov.uk/" }, { - "title": "STW Thesaurus for Economics", "namespace": "http://zbw.eu/stw/", - "uri": "http://zbw.eu/stw", - "prefix": "stw-thesaurus-for-economics" + "prefix": "stw-thesaurus-for-economics", + "title": "STW Thesaurus for Economics", + "uri": "http://zbw.eu/stw" }, { - "title": "Pleiades", "namespace": "http://pleiades.stoa.org/places/ http://pleiades.stoa.org/places/vocab# http://atlantides.org/capgrids/", - "uri": "http://pleiades.stoa.org/", - "prefix": "pleiades" + "prefix": "pleiades", + "title": "Pleiades", + "uri": "http://pleiades.stoa.org/" }, { - "title": "2000 U.S. Census in RDF (rdfabout.com)", "namespace": "http://www.rdfabout.com/rdf/usgov/geo/", - "uri": "http://www.rdfabout.com/demo/census/", - "prefix": "2000-us-census-rdf" + "prefix": "2000-us-census-rdf", + "title": "2000 U.S. Census in RDF (rdfabout.com)", + "uri": "http://www.rdfabout.com/demo/census/" }, { - "title": "UniProtKB", "namespace": "http://purl.uniprot.org/uniprot/", - "uri": "https://www.uniprot.org/uniprot/", - "prefix": "uniprotkb" + "prefix": "uniprotkb", + "title": "UniProtKB", + "uri": "https://www.uniprot.org/uniprot/" }, { - "title": "Discogs in RDF", "namespace": "http://kasabi.com/dataset/discogs", - "uri": "http://kasabi.com/dataset/discogs", - "prefix": "data-incubator-discogs" + "prefix": "data-incubator-discogs", + "title": "Discogs in RDF", + "uri": "http://kasabi.com/dataset/discogs" }, { - "title": "St. Andrews University Resource Lists", "namespace": "http://resourcelists.st-andrews.ac.uk/", - "uri": "http://resourcelists.st-andrews.ac.uk/", - "prefix": "st-andrews-resource-lists" + "prefix": "st-andrews-resource-lists", + "title": "St. Andrews University Resource Lists", + "uri": "http://resourcelists.st-andrews.ac.uk/" }, { - "title": "Schemapedia: RDF schema compendium", "namespace": "http://schemapedia.com/", - "uri": "http://schemapedia.com/", - "prefix": "schemapedia" + "prefix": "schemapedia", + "title": "Schemapedia: RDF schema compendium", + "uri": "http://schemapedia.com/" }, { - "title": "UniProt", "namespace": "http://purl.uniprot.org/", - "uri": "http://www.uniprot.org/", - "prefix": "uniprot" + "prefix": "uniprot", + "title": "UniProt", + "uri": "http://www.uniprot.org/" }, { - "title": "Registry of contracts of the Czech Republic - Financial fulfillments", "namespace": "http://linked.opendata.cz/resource/domain/seznam.gov.cz/rejstriky/plneni/", - "uri": "http://linked.opendata.cz/resource/dataset/seznam.gov.cz/rejstriky/plneni", - "prefix": "cz-fulfillments" + "prefix": "cz-fulfillments", + "title": "Registry of contracts of the Czech Republic - Financial fulfillments", + "uri": "http://linked.opendata.cz/resource/dataset/seznam.gov.cz/rejstriky/plneni" }, { - "title": "Library of Congress Subject Headings", "namespace": "http://id.loc.gov/", - "uri": "http://id.loc.gov/authorities/", - "prefix": "lcsh" + "prefix": "lcsh", + "title": "Library of Congress Subject Headings", + "uri": "http://id.loc.gov/authorities/" }, { - "title": "Open Data Web", "namespace": "http://data.odw.tw/record/", - "uri": "http://data.odw.tw/", - "prefix": "data.odw.tw" + "prefix": "data.odw.tw", + "title": "Open Data Web", + "uri": "http://data.odw.tw/" }, { - "title": "FAO geopolitical ontology", "namespace": "http://www.fao.org/countryprofiles/geoinfo/geopolitical/resource/", - "uri": "http://www.fao.org/countryprofiles/geoinfo.asp?lang=en", - "prefix": "fao-geopolitical-ontology" + "prefix": "fao-geopolitical-ontology", + "title": "FAO geopolitical ontology", + "uri": "http://www.fao.org/countryprofiles/geoinfo.asp?lang=en" }, { - "title": "Funda\u00e7\u00e3o da Faculdade de Ciencas da Universidade de Lisboa (RKBExplorer)", "namespace": "http://lisbon.rkbexplorer.com/id/", - "uri": "http://lisbon.rkbexplorer.com", - "prefix": "rkb-explorer-lisbon" + "prefix": "rkb-explorer-lisbon", + "title": "Funda\u00e7\u00e3o da Faculdade de Ciencas da Universidade de Lisboa (RKBExplorer)", + "uri": "http://lisbon.rkbexplorer.com" }, { - "title": "Product Scheme Classifications Catalogue", "namespace": "http://purl.org/weso/pscs/resource", - "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/", - "prefix": "pscs-catalogue" + "prefix": "pscs-catalogue", + "title": "Product Scheme Classifications Catalogue", + "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/" }, { - "title": "European Environment Agency Published Products", "namespace": "http://www.eea.europa.eu/publications", - "uri": "http://www.eea.europa.eu/", - "prefix": "eea" + "prefix": "eea", + "title": "European Environment Agency Published Products", + "uri": "http://www.eea.europa.eu/" }, { - "title": "GEneral Multilingual Environmental Thesaurus", "namespace": "http://www.eionet.europa.eu/gemet/", - "uri": "http://www.eionet.europa.eu/gemet/", - "prefix": "gemet" + "prefix": "gemet", + "title": "GEneral Multilingual Environmental Thesaurus", + "uri": "http://www.eionet.europa.eu/gemet/" }, { - "title": "Wikidata", "namespace": "http://www.wikidata.org/entity/", - "uri": "https://www.wikidata.org/", - "prefix": "wikidata" + "prefix": "wikidata", + "title": "Wikidata", + "uri": "https://www.wikidata.org/" }, { - "title": "My Family Lineage", "namespace": "http://my-family-lineage.com/wiki/", - "uri": "http://my-family-lineage.com/wiki/Main_Page", - "prefix": "my-family-lineage" + "prefix": "my-family-lineage", + "title": "My Family Lineage", + "uri": "http://my-family-lineage.com/wiki/Main_Page" }, { - "title": "Global Agricultural Concept Space", "namespace": "id.agrisemantics.org/gacs", - "uri": "https://agrisemantics.org/#GACShome/", - "prefix": "GACS" + "prefix": "GACS", + "title": "Global Agricultural Concept Space", + "uri": "https://agrisemantics.org/#GACShome/" }, { - "title": "TAXREF-LD: Linked Data French Taxonomic Register", "namespace": "http://taxref.mnhn.fr/lod/", - "uri": "https://inpn.mnhn.fr/programme/referentiel-taxonomique-taxref?lg=en", - "prefix": "taxref-ld" + "prefix": "taxref-ld", + "title": "TAXREF-LD: Linked Data French Taxonomic Register", + "uri": "https://inpn.mnhn.fr/programme/referentiel-taxonomique-taxref?lg=en" }, { - "title": "EU Who Is Who", "namespace": "http://whoiswho.publicdata.eu/data/", - "uri": "http://whoiswho.publicdata.eu/", - "prefix": "eu-who-is-who" + "prefix": "eu-who-is-who", + "title": "EU Who Is Who", + "uri": "http://whoiswho.publicdata.eu/" }, { - "title": "Sudoc bibliographic data", "namespace": "http://www.sudoc.fr/", - "uri": "http://punktokomo.abes.fr/2011/07/04/le-sudoc-sur-le-web-de-donnees/", - "prefix": "sudocfr" + "prefix": "sudocfr", + "title": "Sudoc bibliographic data", + "uri": "http://punktokomo.abes.fr/2011/07/04/le-sudoc-sur-le-web-de-donnees/" }, { - "title": "Bans of the Czech Trade Inspection Authority", "namespace": "http://linked.opendata.cz/resource/domain/coi.cz/ban/", - "uri": "http://linked.opendata.cz/resource/dataset/coi.cz/zakazy", - "prefix": "cz-ctia-bans" + "prefix": "cz-ctia-bans", + "title": "Bans of the Czech Trade Inspection Authority", + "uri": "http://linked.opendata.cz/resource/dataset/coi.cz/zakazy" }, { - "title": "Yahoo Geoplanet RDF", "namespace": "http://data.kasabi.com/dataset/yahoo-geoplanet", - "uri": "http://kasabi.com/dataset/yahoo-geoplanet", - "prefix": "yahoo_geoplanet" + "prefix": "yahoo_geoplanet", + "title": "Yahoo Geoplanet RDF", + "uri": "http://kasabi.com/dataset/yahoo-geoplanet" }, { - "title": "TEKORD", "namespace": "http://www.ntnu.no/ub/data/tekord", - "uri": "http://www.ntnu.no/ub/data/tekord/about", - "prefix": "tekord" + "prefix": "tekord", + "title": "TEKORD", + "uri": "http://www.ntnu.no/ub/data/tekord/about" }, { - "title": "UN/LOCODE (RKBExplorer)", "namespace": "http://unlocode.rkbexplorer.com/id/", - "uri": "http://unlocode.rkbexplorer.com", - "prefix": "rkb-explorer-unlocode" + "prefix": "rkb-explorer-unlocode", + "title": "UN/LOCODE (RKBExplorer)", + "uri": "http://unlocode.rkbexplorer.com" }, { - "title": "Linked Open Camera (LinkedOpenData.it)", "namespace": "http://purl.org/net7/vocab/locs/v1#", - "uri": "http://www.linkedopendata.it/datasets/loc", - "prefix": "linked-open-camera" + "prefix": "linked-open-camera", + "title": "Linked Open Camera (LinkedOpenData.it)", + "uri": "http://www.linkedopendata.it/datasets/loc" }, { - "title": "EnAKTing Population Dataset", "namespace": "http://population.psi.enakting.org/id/", - "uri": "http://population.psi.enakting.org/", - "prefix": "enakting-population" + "prefix": "enakting-population", + "title": "EnAKTing Population Dataset", + "uri": "http://population.psi.enakting.org/" }, { - "title": "SemanticScience Integrated Ontology", "namespace": "http://semanticscience.org/resource/", - "uri": "http://bioportal.bioontology.org/ontologies/1532", - "prefix": "bioportal-sio" + "prefix": "bioportal-sio", + "title": "SemanticScience Integrated Ontology", + "uri": "http://bioportal.bioontology.org/ontologies/1532" }, { - "title": "Farm Accountancy Data Network (FADN) linked dataset from 2019", "namespace": "http://ec.europa.eu/agriculture/FADN/", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "FADN (2019)" + "prefix": "FADN (2019)", + "title": "Farm Accountancy Data Network (FADN) linked dataset from 2019", + "uri": "https://www.foodie-cloud.org/fct/" }, { - "title": "DBTune.org Magnatune RDF server", "namespace": "http://dbtune.org/magnatune/artist/", - "uri": "http://dbtune.org/magnatune/", - "prefix": "dbtune-magnatune" + "prefix": "dbtune-magnatune", + "title": "DBTune.org Magnatune RDF server", + "uri": "http://dbtune.org/magnatune/" }, { - "title": "Chronicling America", "namespace": "http://chroniclingamerica.loc.gov/", - "uri": "http://chroniclingamerica.loc.gov/about/api/", - "prefix": "chronicling-america" + "prefix": "chronicling-america", + "title": "Chronicling America", + "uri": "http://chroniclingamerica.loc.gov/about/api/" }, { - "title": "WordNet 3.0 (VU Amsterdam)", "namespace": "http://purl.org/vocabularies/princeton/wn30", - "uri": "http://semanticweb.cs.vu.nl/lod/wn30/", - "prefix": "vu-wordnet" + "prefix": "vu-wordnet", + "title": "WordNet 3.0 (VU Amsterdam)", + "uri": "http://semanticweb.cs.vu.nl/lod/wn30/" }, { - "title": "DeustoTech (Deusto Institute of Technology)", "namespace": "http://deusto.gnoss.com", - "uri": "http://deusto.gnoss.com", - "prefix": "deustotech" + "prefix": "deustotech", + "title": "DeustoTech (Deusto Institute of Technology)", + "uri": "http://deusto.gnoss.com" }, { - "title": "CN 2012", "namespace": "http://purl.org/weso/pscs/cn/2012/resource", - "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/", - "prefix": "combined-nomenclature-2012" + "prefix": "combined-nomenclature-2012", + "title": "CN 2012", + "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/" }, { - "title": "DBpedia in Portuguese", "namespace": "http://pt.dbpedia.org/resource/", - "uri": "http://pt.dbpedia.org", - "prefix": "dbpedia-pt" + "prefix": "dbpedia-pt", + "title": "DBpedia in Portuguese", + "uri": "http://pt.dbpedia.org" }, { - "title": "Community R&D Information Service (CORDIS) (RKBExplorer)", "namespace": "http://cordis.rkbexplorer.com/id/", - "uri": "http://cordis.rkbexplorer.com", - "prefix": "rkb-explorer-cordis" + "prefix": "rkb-explorer-cordis", + "title": "Community R&D Information Service (CORDIS) (RKBExplorer)", + "uri": "http://cordis.rkbexplorer.com" }, { - "title": "Covid-on-the-Web Dataset", "namespace": "http://ns.inria.fr/covid19/", - "uri": "https://github.com/Wimmics/CovidOnTheWeb", - "prefix": "Covid-on-the-Web" + "prefix": "Covid-on-the-Web", + "title": "Covid-on-the-Web Dataset", + "uri": "https://github.com/Wimmics/CovidOnTheWeb" }, { - "title": "Pok\u00e9p\u00e9dia", "namespace": "http://www.pokepedia.fr/", - "uri": "http://www.pokepedia.fr", - "prefix": "pokepedia-fr" + "prefix": "pokepedia-fr", + "title": "Pok\u00e9p\u00e9dia", + "uri": "http://www.pokepedia.fr" }, { - "title": "Santillana Guide Dataset", "namespace": "http://santillana.linkeddata.es/elviajero/resource", - "uri": "http://webenemasuno.linkeddata.es/", - "prefix": "santillana_guide_dataset" + "prefix": "santillana_guide_dataset", + "title": "Santillana Guide Dataset", + "uri": "http://webenemasuno.linkeddata.es/" }, { - "title": "Results of R&D", "namespace": "http://linked.opendata.cz/resource/domain/vavai/", - "uri": "http://linked.opendata.cz/resource/dataset/vavai/results", - "prefix": "cz-vavai-results" + "prefix": "cz-vavai-results", + "title": "Results of R&D", + "uri": "http://linked.opendata.cz/resource/dataset/vavai/results" }, { - "title": "Vytautas Magnus University, Kaunas (RKBExplorer)", "namespace": "http://kaunas.rkbexplorer.com/id/", - "uri": "http://kaunas.rkbexplorer.com", - "prefix": "rkb-explorer-kaunas" + "prefix": "rkb-explorer-kaunas", + "title": "Vytautas Magnus University, Kaunas (RKBExplorer)", + "uri": "http://kaunas.rkbexplorer.com" }, { - "title": "Evaluation of VaVaI results for 2013", "namespace": "http://linked.opendata.cz/resource/domain/vavai/", - "uri": "http://linked.opendata.cz/resource/dataset/vavai/evaluation/2013", - "prefix": "cz-vavai-evaluation-2013" + "prefix": "cz-vavai-evaluation-2013", + "title": "Evaluation of VaVaI results for 2013", + "uri": "http://linked.opendata.cz/resource/dataset/vavai/evaluation/2013" }, { - "title": "HeBIS - Bibliographic Resources of the Library Union Catalogues of Hessen and parts of the Rhineland Palatinate", "namespace": "http://lod.hebis.de/resource/", - "uri": "http://www.hebis.de", - "prefix": "hebis-bibliographic-resources" + "prefix": "hebis-bibliographic-resources", + "title": "HeBIS - Bibliographic Resources of the Library Union Catalogues of Hessen and parts of the Rhineland Palatinate", + "uri": "http://www.hebis.de" }, { - "title": "eagle-i @ Harvard University", "namespace": "http://harvard.eagle-i.net/i/", - "uri": "http://harvard.eagle-i.net", - "prefix": "eagle-i-harvard" + "prefix": "eagle-i-harvard", + "title": "eagle-i @ Harvard University", + "uri": "http://harvard.eagle-i.net" }, { - "title": "eagle-i @ Ponce School of Medicine", "namespace": "http://psm.eagle-i.net/i/", - "uri": "http://psm.eagle-i.net/", - "prefix": "eagle-i-psm" + "prefix": "eagle-i-psm", + "title": "eagle-i @ Ponce School of Medicine", + "uri": "http://psm.eagle-i.net/" }, { - "title": "Debian Package Tracking System", "namespace": "http://packages.qa.debian.org/", - "uri": "http://packages.qa.debian.org/common/RDF.html", - "prefix": "debian-package-tracking-system" + "prefix": "debian-package-tracking-system", + "title": "Debian Package Tracking System", + "uri": "http://packages.qa.debian.org/common/RDF.html" }, { - "title": "School of Electronics and Computer Science, University of Southampton", "namespace": "http://ecs.rkbexplorer.com/id/", - "uri": "http://ecs.rkbexplorer.com", - "prefix": "rkb-explorer-ecs" + "prefix": "rkb-explorer-ecs", + "title": "School of Electronics and Computer Science, University of Southampton", + "uri": "http://ecs.rkbexplorer.com" }, { - "title": "IdRef: Sudoc authority data", "namespace": "http://www.idref.fr/", - "uri": "http://punktokomo.abes.fr/2011/07/05/idref-des-pages-html-et-rdf-plus-riches/", - "prefix": "idreffr" + "prefix": "idreffr", + "title": "IdRef: Sudoc authority data", + "uri": "http://punktokomo.abes.fr/2011/07/05/idref-des-pages-html-et-rdf-plus-riches/" }, { - "title": "English Index of Multiple Deprivation Ranking 2010", "namespace": "ttp://opendatacommunities.org/id/IMD/2010/IMD-rank/LSOA/", - "uri": "http://opendatacommunities.org/data/imd-rank-2010", - "prefix": "english-index-of-multiple-deprivation-ranking-2010" + "prefix": "english-index-of-multiple-deprivation-ranking-2010", + "title": "English Index of Multiple Deprivation Ranking 2010", + "uri": "http://opendatacommunities.org/data/imd-rank-2010" }, { - "title": "DBLP Bibliography Database in RDF (FU Berlin)", "namespace": "http://www4.wiwiss.fu-berlin.de/dblp/resource/", - "uri": "http://www4.wiwiss.fu-berlin.de/dblp/", - "prefix": "fu-berlin-dblp" + "prefix": "fu-berlin-dblp", + "title": "DBLP Bibliography Database in RDF (FU Berlin)", + "uri": "http://www4.wiwiss.fu-berlin.de/dblp/" }, { - "title": "USPTO Patent data", "namespace": "http://us.patents.aksw.org", - "uri": "http://aksw.org/Projects/USPatents.html", - "prefix": "linked-uspto-patent-data" + "prefix": "linked-uspto-patent-data", + "title": "USPTO Patent data", + "uri": "http://aksw.org/Projects/USPatents.html" }, { - "title": "Global Hunger Index (2011)", "namespace": "http://data.kasabi.com/dataset/global-hunger-index", - "uri": "http://www.ifpri.org/publication/2011-global-hunger-index", - "prefix": "global-hunger-index-2011" + "prefix": "global-hunger-index-2011", + "title": "Global Hunger Index (2011)", + "uri": "http://www.ifpri.org/publication/2011-global-hunger-index" }, { - "title": "Norway catch records dataset", "namespace": "http://w3id.org/foodie/open/catchrecord/norway/", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "Catch Record (2014- 2019)" + "prefix": "Catch Record (2014- 2019)", + "title": "Norway catch records dataset", + "uri": "https://www.foodie-cloud.org/fct/" }, { - "title": "Water buffer dataset from Czech Republic", "namespace": "http://w3id.org/foodie/open/cz/water_buffer25/", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "Water Buffer" + "prefix": "Water Buffer", + "title": "Water buffer dataset from Czech Republic", + "uri": "https://www.foodie-cloud.org/fct/" }, { - "title": "CE4R Knowledge Centre Corporate Excellence \u2013 Centre for Reputation Leadership", "namespace": "http://corporateexcellence.net/en/community/patronato", - "uri": "http://corporateexcellence.net/en/community/patronato", - "prefix": "ce4r" + "prefix": "ce4r", + "title": "CE4R Knowledge Centre Corporate Excellence \u2013 Centre for Reputation Leadership", + "uri": "http://corporateexcellence.net/en/community/patronato" }, { - "title": "European Election Results", "namespace": "http://elections.publicdata.eu/data/", - "uri": "http://elections.publicdata.eu", - "prefix": "european-election-results" + "prefix": "european-election-results", + "title": "European Election Results", + "uri": "http://elections.publicdata.eu" }, { - "title": "Mathematics Subject Classification", "namespace": "http://msc2010.org/resources/MSC/2010/msc2010/ ", - "uri": "http://msc2010.org/mscwork/", - "prefix": "msc" + "prefix": "msc", + "title": "Mathematics Subject Classification", + "uri": "http://msc2010.org/mscwork/" }, { - "title": "MORElab", "namespace": "http://www.morelab.deusto.es/resource/", - "uri": "http://www.morelab.deusto.es", - "prefix": "morelab" + "prefix": "morelab", + "title": "MORElab", + "uri": "http://www.morelab.deusto.es" }, { - "title": "Nomisma.org ", "namespace": "http://nomisma.org/", - "uri": "http://nomisma.org", - "prefix": "nomisma_org" + "prefix": "nomisma_org", + "title": "Nomisma.org ", + "uri": "http://nomisma.org" }, { - "title": "Registry of contracts of the Czech Republic - Contracts", "namespace": "http://linked.opendata.cz/resource/domain/seznam.gov.cz/rejstriky/smlouvy/", - "uri": "http://linked.opendata.cz/resource/dataset/seznam.gov.cz/rejstriky/smlouvy", - "prefix": "cz-contracts" + "prefix": "cz-contracts", + "title": "Registry of contracts of the Czech Republic - Contracts", + "uri": "http://linked.opendata.cz/resource/dataset/seznam.gov.cz/rejstriky/smlouvy" }, { - "title": "EnAKTing Mortality Dataset", "namespace": "http://mortality.psi.enakting.org/id/", - "uri": "http://mortality.psi.enakting.org/", - "prefix": "enakting-mortality" + "prefix": "enakting-mortality", + "title": "EnAKTing Mortality Dataset", + "uri": "http://mortality.psi.enakting.org/" }, { - "title": "reference.data.gov.uk", "namespace": "http://reference.data.gov.uk/id/", - "uri": "http://reference.data.gov.uk/", - "prefix": "reference-data-gov-uk" + "prefix": "reference-data-gov-uk", + "title": "reference.data.gov.uk", + "uri": "http://reference.data.gov.uk/" }, { - "title": "Europeana Linked Open Data V1.0", "namespace": "http://data.europeana.eu", - "uri": "http://data.europeana.eu/", - "prefix": "europeana-lod-v1" + "prefix": "europeana-lod-v1", + "title": "Europeana Linked Open Data V1.0", + "uri": "http://data.europeana.eu/" }, { - "title": "DBTropes", "namespace": "http://dbtropes.org/resource/", - "uri": "http://dbtropes.org/", - "prefix": "dbtropes" + "prefix": "dbtropes", + "title": "DBTropes", + "uri": "http://dbtropes.org/" }, { - "title": "Biographical Directory of the United States Congress", "namespace": "http://logd.tw.rpi.edu/source/congress-gov/dataset/biographical-directory-of-the-united-states-congress/version/2012-Jan-04/", - "uri": "http://bioguide.congress.gov/biosearch/biosearch.asp", - "prefix": "biographical-directory-of-the-united-states-congress" + "prefix": "biographical-directory-of-the-united-states-congress", + "title": "Biographical Directory of the United States Congress", + "uri": "http://bioguide.congress.gov/biosearch/biosearch.asp" }, { - "title": "Ordnance Survey Linked Data", "namespace": "http://data.ordnancesurvey.co.uk/doc/postcodeunit/", - "uri": "http://data.ordnancesurvey.co.uk/", - "prefix": "ordnance-survey-linked-data" + "prefix": "ordnance-survey-linked-data", + "title": "Ordnance Survey Linked Data", + "uri": "http://data.ordnancesurvey.co.uk/" }, { - "title": "Lotico", "namespace": "http://www.lotico.com/resource/", - "uri": "http://www.lotico.com/", - "prefix": "lotico" + "prefix": "lotico", + "title": "Lotico", + "uri": "http://www.lotico.com/" }, { - "title": "IneveryCREA, la comunidad de la creatividad educativa", "namespace": "http://ineverycrea.net/", - "uri": "http://ineverycrea.net/", - "prefix": "ineverycrea" + "prefix": "ineverycrea", + "title": "IneveryCREA, la comunidad de la creatividad educativa", + "uri": "http://ineverycrea.net/" }, { - "title": "European Employment Services (EURES)", "namespace": "http://www4.wiwiss.fu-berlin.de/eures/resource/", - "uri": "http://www4.wiwiss.fu-berlin.de/eures/", - "prefix": "fu-berlin-eures" + "prefix": "fu-berlin-eures", + "title": "European Employment Services (EURES)", + "uri": "http://www4.wiwiss.fu-berlin.de/eures/" }, { - "title": "WordNet (RKBExplorer)", "namespace": "http://wordnet.rkbexplorer.com/id/", - "uri": "http://wordnet.rkbexplorer.com", - "prefix": "rkb-explorer-wordnet" + "prefix": "rkb-explorer-wordnet", + "title": "WordNet (RKBExplorer)", + "uri": "http://wordnet.rkbexplorer.com" }, { - "title": "Linked Clean Energy Data (reegle.info)", "namespace": "http://reegle.info", - "uri": "http://data.reegle.info/", - "prefix": "clean-energy-data-reegle" + "prefix": "clean-energy-data-reegle", + "title": "Linked Clean Energy Data (reegle.info)", + "uri": "http://data.reegle.info/" }, { - "title": "fun", "namespace": "http://fun.rkbexplorer.com/id/", - "uri": "http://fun.rkbexplorer.com", - "prefix": "rkb-explorer-fun" + "prefix": "rkb-explorer-fun", + "title": "fun", + "uri": "http://fun.rkbexplorer.com" }, { - "title": "Swedish Open Cultural Heritage", "namespace": "http://kulturarvsdata.se/", - "uri": "http://www.ksamsok.se/in-english/", - "prefix": "swedish-open-cultural-heritage" + "prefix": "swedish-open-cultural-heritage", + "title": "Swedish Open Cultural Heritage", + "uri": "http://www.ksamsok.se/in-english/" }, { - "title": "U ime Legije", "namespace": "Legija Stranaca", - "uri": "http://www.legion-etrangere.com", - "prefix": "LEGIJA STRANACA" + "prefix": "LEGIJA STRANACA", + "title": "U ime Legije", + "uri": "http://www.legion-etrangere.com" }, { - "title": "Linked Data Cultural Heritage Agency of the Netherlands", "namespace": "https://linkeddata.cultureelerfgoed.nl/def/ceo", - "uri": "https://linkeddata.cultureelerfgoed.nl/", - "prefix": "ceo" + "prefix": "ceo", + "title": "Linked Data Cultural Heritage Agency of the Netherlands", + "uri": "https://linkeddata.cultureelerfgoed.nl/" }, { - "title": "eagle-i @ The City College of New York", "namespace": "http://ccny-cuny.eagle-i.net/i/", - "uri": "http://ccny-cuny.eagle-i.net", - "prefix": "eagle-i-ccny-cuny" + "prefix": "eagle-i-ccny-cuny", + "title": "eagle-i @ The City College of New York", + "uri": "http://ccny-cuny.eagle-i.net" }, { - "title": "RDFohloh", "namespace": "ttp://rdfohloh.wikier.org/", - "uri": "http://rdfohloh.wikier.org", - "prefix": "rdfohloh" + "prefix": "rdfohloh", + "title": "RDFohloh", + "uri": "http://rdfohloh.wikier.org" }, { - "title": "Technische Universit\u00e4t Darmstadt (RKBExplorer)", "namespace": "http://darmstadt.rkbexplorer.com/id/", - "uri": "http://darmstadt.rkbexplorer.com", - "prefix": "rkb-explorer-darmstadt" + "prefix": "rkb-explorer-darmstadt", + "title": "Technische Universit\u00e4t Darmstadt (RKBExplorer)", + "uri": "http://darmstadt.rkbexplorer.com" }, { - "title": "PreLex", "namespace": "http://prelex.publicdata.eu/r/", - "uri": "http://prelex.publicdata.eu/", - "prefix": "prelex" + "prefix": "prelex", + "title": "PreLex", + "uri": "http://prelex.publicdata.eu/" }, { - "title": "LIBRIS", "namespace": "http://libris.kb.se/bib/", - "uri": "http://libris.kb.se", - "prefix": "libris" + "prefix": "libris", + "title": "LIBRIS", + "uri": "http://libris.kb.se" }, { - "title": "YSA - General Finnish Thesaurus", "namespace": "http://www.yso.fi/onto/ysa/", - "uri": "http://finto.fi/ysa/", - "prefix": "ysa" + "prefix": "ysa", + "title": "YSA - General Finnish Thesaurus", + "uri": "http://finto.fi/ysa/" }, { - "title": "2011 US Congress People", "namespace": "http://logd.tw.rpi.edu/source/contactingthecongress/dataset/directory-for-the-112th-congress/", - "uri": "http://www.contactingthecongress.org/", - "prefix": "congresspeople" + "prefix": "congresspeople", + "title": "2011 US Congress People", + "uri": "http://www.contactingthecongress.org/" }, { - "title": "DBTune.org AudioScrobbler RDF Service", "namespace": "http://dbtune.org/last-fm/", - "uri": "http://dbtune.org/last-fm/", - "prefix": "dbtune-audioscrobbler" + "prefix": "dbtune-audioscrobbler", + "title": "DBTune.org AudioScrobbler RDF Service", + "uri": "http://dbtune.org/last-fm/" }, { - "title": "Inspections of the Supreme Audit Office of the Czech Republic", "namespace": "http://data.nku.cz/resource/", - "uri": "http://data.nku.cz/resource/dataset/check-actions", - "prefix": "cz-sao-check-actions" + "prefix": "cz-sao-check-actions", + "title": "Inspections of the Supreme Audit Office of the Czech Republic", + "uri": "http://data.nku.cz/resource/dataset/check-actions" }, { - "title": "Universit\u00e0 degli studi di Roma \"La Sapienza\" (RKBExplorer)", "namespace": "http://roma.rkbexplorer.com/id/", - "uri": "http://roma.rkbexplorer.com", - "prefix": "rkb-explorer-roma" + "prefix": "rkb-explorer-roma", + "title": "Universit\u00e0 degli studi di Roma \"La Sapienza\" (RKBExplorer)", + "uri": "http://roma.rkbexplorer.com" }, { - "title": "lobid-organisations", "namespace": "http://lobid.org/organisation/", - "uri": "http://lobid.org/organisation", - "prefix": "lobid-organisations" + "prefix": "lobid-organisations", + "title": "lobid-organisations", + "uri": "http://lobid.org/organisation" }, { - "title": "eagle-i @ University of Hawai\u2019i at M\u0101noa", "namespace": "http://hawaii.eagle-i.net/i/", - "uri": "http://hawaii.eagle-i.net", - "prefix": "eagle-i-hawaii" + "prefix": "eagle-i-hawaii", + "title": "eagle-i @ University of Hawai\u2019i at M\u0101noa", + "uri": "http://hawaii.eagle-i.net" }, { - "title": "Registry of contracts of the Czech Republic - Orders", "namespace": "http://linked.opendata.cz/resource/domain/seznam.gov.cz/rejstriky/objednavky/", - "uri": "http://linked.opendata.cz/resource/dataset/seznam.gov.cz/rejstriky/objednavky", - "prefix": "cz-orders" + "prefix": "cz-orders", + "title": "Registry of contracts of the Czech Republic - Orders", + "uri": "http://linked.opendata.cz/resource/dataset/seznam.gov.cz/rejstriky/objednavky" }, { - "title": "Open Data Communities - Lower layer Super Output Areas", "namespace": "http://opendatacommunities.org/id/geography/lsoa/", - "uri": "http://opendatacommunities.org/datasets/geography", - "prefix": "odc-lsoa" + "prefix": "odc-lsoa", + "title": "Open Data Communities - Lower layer Super Output Areas", + "uri": "http://opendatacommunities.org/datasets/geography" }, { - "title": "GeoLinkedData", "namespace": "http://geo.linkeddata.es/resource/", - "uri": "http://geo.linkeddata.es/", - "prefix": "geolinkeddata" + "prefix": "geolinkeddata", + "title": "GeoLinkedData", + "uri": "http://geo.linkeddata.es/" }, { - "title": "List of prices of medicinal products marketed in Italian Republic", "namespace": "http://linked.opendata.cz/resource/es/msssi", - "uri": "http://linked.opendata.cz/resource/dataset/it/aifa/drug-prices", - "prefix": "it-aifa-drug-prices" + "prefix": "it-aifa-drug-prices", + "title": "List of prices of medicinal products marketed in Italian Republic", + "uri": "http://linked.opendata.cz/resource/dataset/it/aifa/drug-prices" }, { - "title": "State funding providers", "namespace": "http://linked.opendata.cz/resource/domain/vavai/", - "uri": "http://linked.opendata.cz/resource/dataset/vavai/funding-providers", - "prefix": "cz-vavai-funding-providers" + "prefix": "cz-vavai-funding-providers", + "title": "State funding providers", + "uri": "http://linked.opendata.cz/resource/dataset/vavai/funding-providers" }, { - "title": "DBLP Research Groups (University of Deusto-GNOSS)", "namespace": "http://researchgroups.gnoss.com", - "uri": "http://researchgroups.gnoss.com", - "prefix": "dblp-deusto-gnoss" + "prefix": "dblp-deusto-gnoss", + "title": "DBLP Research Groups (University of Deusto-GNOSS)", + "uri": "http://researchgroups.gnoss.com" }, { - "title": "AEMET metereological dataset", "namespace": "http://aemet.linkeddata.es/resource/", - "uri": "http://aemet.linkeddata.es/", - "prefix": "aemet" + "prefix": "aemet", + "title": "AEMET metereological dataset", + "uri": "http://aemet.linkeddata.es/" }, { - "title": "Gemeinsame Normdatei (GND)", "namespace": "http://d-nb.info/gnd/", - "uri": "http://www.dnb.de/EN/lds", - "prefix": "dnb-gemeinsame-normdatei" + "prefix": "dnb-gemeinsame-normdatei", + "title": "Gemeinsame Normdatei (GND)", + "uri": "http://www.dnb.de/EN/lds" }, { - "title": "DBLP Computer Science Bibliography (RKBExplorer)", "namespace": "http://dblp.rkbexplorer.com/id/", - "uri": "http://dblp.rkbexplorer.com", - "prefix": "rkb-explorer-dblp" + "prefix": "rkb-explorer-dblp", + "title": "DBLP Computer Science Bibliography (RKBExplorer)", + "uri": "http://dblp.rkbexplorer.com" }, { - "title": "NASA Space Flight & Astronaut data in RDF", "namespace": "http://data.kasabi.com/dataset/nasa", - "uri": "http://kasabi.com/dataset/nasa", - "prefix": "data-incubator-nasa" + "prefix": "data-incubator-nasa", + "title": "NASA Space Flight & Astronaut data in RDF", + "uri": "http://kasabi.com/dataset/nasa" }, { - "title": "eagle-i @ Charles R. Drew University", "namespace": "http://cdrewu.eagle-i.net/i/", - "uri": "http://cdrewu.eagle-i.net", - "prefix": "eagle-i-cdrewu" + "prefix": "eagle-i-cdrewu", + "title": "eagle-i @ Charles R. Drew University", + "uri": "http://cdrewu.eagle-i.net" }, { - "title": "IPTC NewsCodes", "namespace": "cv.iptc.org", - "uri": "http://newscodes.org", - "prefix": "iptc-newscodes" + "prefix": "iptc-newscodes", + "title": "IPTC NewsCodes", + "uri": "http://newscodes.org" }, { - "title": "Open Archive Initiative Harvest over OAI-PMH (RKBExplorer)", "namespace": "http://oai.rkbexplorer.com/id/", - "uri": "http://oai.rkbexplorer.com", - "prefix": "rkb-explorer-oai" + "prefix": "rkb-explorer-oai", + "title": "Open Archive Initiative Harvest over OAI-PMH (RKBExplorer)", + "uri": "http://oai.rkbexplorer.com" }, { - "title": "European Nature Information System", "namespace": "http://eunis.eea.europa.eu/", - "uri": "http://eunis.eea.europa.eu", - "prefix": "eunis" + "prefix": "eunis", + "title": "European Nature Information System", + "uri": "http://eunis.eea.europa.eu" }, { - "title": "Deep Blue (RKBExplorer)", "namespace": "http://deepblue.rkbexplorer.com/id/", - "uri": "http://deepblue.rkbexplorer.com", - "prefix": "rkb-explorer-deepblue" + "prefix": "rkb-explorer-deepblue", + "title": "Deep Blue (RKBExplorer)", + "uri": "http://deepblue.rkbexplorer.com" }, { - "title": "ReSIST Project Wiki (RKBExplorer)", "namespace": "http://wiki.rkbexplorer.com/id/", - "uri": "http://wiki.rkbexplorer.com", - "prefix": "rkb-explorer-wiki" + "prefix": "rkb-explorer-wiki", + "title": "ReSIST Project Wiki (RKBExplorer)", + "uri": "http://wiki.rkbexplorer.com" }, { - "title": "The Cancer Genome Atlas", "namespace": "http://ibl.mdanderson.org/TCGA/", - "uri": "http://tcga.s3db.org/", - "prefix": "tcga" + "prefix": "tcga", + "title": "The Cancer Genome Atlas", + "uri": "http://tcga.s3db.org/" }, { - "title": "DBkWik", "namespace": "http://dbkwik.webdatacommons.org", - "uri": "http://dbkwik.webdatacommons.org", - "prefix": "dbkwik" + "prefix": "dbkwik", + "title": "DBkWik", + "uri": "http://dbkwik.webdatacommons.org" }, { - "title": "School of Electronics and Computer Science, University of Southampton (RKBExplorer)", "namespace": "http://southampton.rkbexplorer.com/id/", - "uri": "http://southampton.rkbexplorer.com", - "prefix": "rkb-explorer-southampton" + "prefix": "rkb-explorer-southampton", + "title": "School of Electronics and Computer Science, University of Southampton (RKBExplorer)", + "uri": "http://southampton.rkbexplorer.com" }, { - "title": "aliada-scanbit-net", "namespace": "http://aliada.scanbit.net:8891/id/collections/", - "uri": "http://biblioteca.artium.org", - "prefix": "aliada-scanbit-net" + "prefix": "aliada-scanbit-net", + "title": "aliada-scanbit-net", + "uri": "http://biblioteca.artium.org" }, { - "title": "Web Science Conference (RKBExplorer)", "namespace": "http://webscience.rkbexplorer.com/id/", - "uri": "http://webscience.rkbexplorer.com", - "prefix": "rkb-explorer-webscience" + "prefix": "rkb-explorer-webscience", + "title": "Web Science Conference (RKBExplorer)", + "uri": "http://webscience.rkbexplorer.com" }, { - "title": "The European Library Open Dataset", "namespace": "http://data.theeuropeanlibrary.org/BibliographicResource/", - "uri": "https://lod-cloud.net/edit-dataset/the-european-library-open-dataset", - "prefix": "the-european-library-open-dataset" + "prefix": "the-european-library-open-dataset", + "title": "The European Library Open Dataset", + "uri": "https://lod-cloud.net/edit-dataset/the-european-library-open-dataset" }, { - "title": "Biblioteca Virtual Miguel de Cervantes", "namespace": "http://data.cervantesvirtual.com/", - "uri": "http://data.cervantesvirtual.com", - "prefix": "BVMC" + "prefix": "BVMC", + "title": "Biblioteca Virtual Miguel de Cervantes", + "uri": "http://data.cervantesvirtual.com" }, { - "title": "University of Sussex Reading Lists", "namespace": "http://liblists.sussex.ac.uk/items/", - "uri": "http://liblists.sussex.ac.uk", - "prefix": "university-sussex-reading-lists" + "prefix": "university-sussex-reading-lists", + "title": "University of Sussex Reading Lists", + "uri": "http://liblists.sussex.ac.uk" }, { - "title": "Data about Czech business entities from the ARES system - Trade Licensing Register", "namespace": " http://linked.opendata.cz/resource/business-entity/", - "uri": "http://linked.opendata.cz/resource/dataset/ares/rzp", - "prefix": "cz-ares-rzp" + "prefix": "cz-ares-rzp", + "title": "Data about Czech business entities from the ARES system - Trade Licensing Register", + "uri": "http://linked.opendata.cz/resource/dataset/ares/rzp" }, { - "title": "Chem2Bio2RDF", "namespace": "http://chem2bio2rdf.org/bindingdb/", - "uri": "http://chem2bio2rdf.org", - "prefix": "chem2bio2rdf" + "prefix": "chem2bio2rdf", + "title": "Chem2Bio2RDF", + "uri": "http://chem2bio2rdf.org" }, { - "title": "photos", "namespace": "http://photos.rkbexplorer.com/id/", - "uri": "http://photos.rkbexplorer.com", - "prefix": "rkb-explorer-photos" + "prefix": "rkb-explorer-photos", + "title": "photos", + "uri": "http://photos.rkbexplorer.com" }, { - "title": "Thesaurus BNCF", "namespace": "http://thes.bncf.firenze.sbn.it", - "uri": "http://thes.bncf.firenze.sbn.it/", - "prefix": "bncf-ns" + "prefix": "bncf-ns", + "title": "Thesaurus BNCF", + "uri": "http://thes.bncf.firenze.sbn.it/" }, { - "title": "Eurostat in RDF (FU Berlin)", "namespace": "http://www4.wiwiss.fu-berlin.de/eurostat/resource/", - "uri": "http://www4.wiwiss.fu-berlin.de/eurostat/", - "prefix": "fu-berlin-eurostat" + "prefix": "fu-berlin-eurostat", + "title": "Eurostat in RDF (FU Berlin)", + "uri": "http://www4.wiwiss.fu-berlin.de/eurostat/" }, { - "title": "NERC Vocabulary Server 2.0", "namespace": "http://vocab.nerc.ac.uk/", - "uri": "http://vocab.nerc.ac.uk/", - "prefix": "nvs" + "prefix": "nvs", + "title": "NERC Vocabulary Server 2.0", + "uri": "http://vocab.nerc.ac.uk/" }, { - "title": "DBTune.org Musicbrainz D2R Server", "namespace": "http://dbtune.org/musicbrainz/", - "uri": "http://dbtune.org/musicbrainz/", - "prefix": "dbtune-musicbrainz" + "prefix": "dbtune-musicbrainz", + "title": "DBTune.org Musicbrainz D2R Server", + "uri": "http://dbtune.org/musicbrainz/" }, { - "title": "Open Transport Map", "namespace": "http://w3id.org/foodie/otm/", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "OTM" + "prefix": "OTM", + "title": "Open Transport Map", + "uri": "https://www.foodie-cloud.org/fct/" }, { - "title": "Didactalia, \u00edndice de recursos educativos para profesores, padres y alumnos (GNOSS)", "namespace": "http://didactalia.net", - "uri": "http://didactalia.net", - "prefix": "didactalia" + "prefix": "didactalia", + "title": "Didactalia, \u00edndice de recursos educativos para profesores, padres y alumnos (GNOSS)", + "uri": "http://didactalia.net" }, { - "title": "TCGA Roadmap", "namespace": "http://purl.org/tcga/core#", - "uri": "http://tcga.github.com/Roadmap/", - "prefix": "tcga-roadmap" + "prefix": "tcga-roadmap", + "title": "TCGA Roadmap", + "uri": "http://tcga.github.com/Roadmap/" }, { - "title": "VIVO Cornell", "namespace": "http://vivo.cornell.edu/", - "uri": "http://vivo.cornell.edu/", - "prefix": "vivo-cornell-university" + "prefix": "vivo-cornell-university", + "title": "VIVO Cornell", + "uri": "http://vivo.cornell.edu/" }, { - "title": "Italian Museums", "namespace": "http://data.linkedopendata.it/data/musei/resource/", - "uri": "http://www.linkedopendata.it/datasets/musei", - "prefix": "museums-in-italy" + "prefix": "museums-in-italy", + "title": "Italian Museums", + "uri": "http://www.linkedopendata.it/datasets/musei" }, { - "title": "LODAC BDLS", "namespace": "http://lod.ac/bdls/", - "uri": "http://lod.ac/wiki/LODAC_BDLS", - "prefix": "lodac-bdls" + "prefix": "lodac-bdls", + "title": "LODAC BDLS", + "uri": "http://lod.ac/wiki/LODAC_BDLS" }, { - "title": "STITCH: Chemical-Protein Interactions", "namespace": "http://www4.wiwiss.fu-berlin.de/stitch/resource/", - "uri": "http://www4.wiwiss.fu-berlin.de/stitch/", - "prefix": "fu-berlin-stitch" + "prefix": "fu-berlin-stitch", + "title": "STITCH: Chemical-Protein Interactions", + "uri": "http://www4.wiwiss.fu-berlin.de/stitch/" }, { - "title": "Calames", "namespace": "http://www.calames.abes.fr/pub/ms/", - "uri": "http://www.calames.abes.fr/", - "prefix": "calames" + "prefix": "calames", + "title": "Calames", + "uri": "http://www.calames.abes.fr/" }, { - "title": "eagle-i @ University of Alaska Fairbanks", "namespace": "http://alaska.eagle-i.net/i/", - "uri": "http://alaska.eagle-i.net", - "prefix": "eagle-i-alaska" + "prefix": "eagle-i-alaska", + "title": "eagle-i @ University of Alaska Fairbanks", + "uri": "http://alaska.eagle-i.net" }, { - "title": "BBC Music", "namespace": "http://www.bbc.co.uk/music/artist/", - "uri": "http://www.bbc.co.uk/music", - "prefix": "bbc-music" + "prefix": "bbc-music", + "title": "BBC Music", + "uri": "http://www.bbc.co.uk/music" }, { - "title": "GeoSpecies Knowledge Base", "namespace": "http://lod.geospecies.org/", - "uri": "http://lod.geospecies.org/", - "prefix": "geospecies" + "prefix": "geospecies", + "title": "GeoSpecies Knowledge Base", + "uri": "http://lod.geospecies.org/" }, { - "title": "BBC Programmes", "namespace": "http://www.bbc.co.uk/programmes", - "uri": "http://www.bbc.co.uk/programmes", - "prefix": "bbc-programmes" + "prefix": "bbc-programmes", + "title": "BBC Programmes", + "uri": "http://www.bbc.co.uk/programmes" }, { - "title": "ESD Standards: Controlled lists for the UK public sector", "namespace": "http://id.esd.org.uk/", - "uri": "http://standards.esd.org.uk/", - "prefix": "esd-standards" + "prefix": "esd-standards", + "title": "ESD Standards: Controlled lists for the UK public sector", + "uri": "http://standards.esd.org.uk/" }, { - "title": "EIONET RDF Data", "namespace": "http://rdfdata.eionet.europa.eu/", - "uri": "http://rdfdata.eionet.europa.eu/", - "prefix": "eionet-rdf" + "prefix": "eionet-rdf", + "title": "EIONET RDF Data", + "uri": "http://rdfdata.eionet.europa.eu/" }, { - "title": "OntoBeef Domain", "namespace": "http://onto.beef.org.pl/domain/", - "uri": "http://onto.beef.org.pl/ontobeef", - "prefix": "ontobeef-domain" + "prefix": "ontobeef-domain", + "title": "OntoBeef Domain", + "uri": "http://onto.beef.org.pl/ontobeef" }, { - "title": "Linked Open Numbers", "namespace": "http://km.aifb.kit.edu/projects/numbers/web/", - "uri": "http://km.aifb.kit.edu/projects/numbers/", - "prefix": "linked-open-numbers" + "prefix": "linked-open-numbers", + "title": "Linked Open Numbers", + "uri": "http://km.aifb.kit.edu/projects/numbers/" }, { - "title": "prefix.cc", "namespace": "http://prefix.cc/", - "uri": "http://prefix.cc/", - "prefix": "prefix-cc" + "prefix": "prefix-cc", + "title": "prefix.cc", + "uri": "http://prefix.cc/" }, { - "title": "LinkedLCCN", "namespace": "http://purl.org/NET/lccn/", - "uri": "http://purl.org/NET/lccn/", - "prefix": "linkedlccn" + "prefix": "linkedlccn", + "title": "LinkedLCCN", + "uri": "http://purl.org/NET/lccn/" }, { - "title": "Archives Hub Linked Data", "namespace": "http://data.archiveshub.ac.uk/", - "uri": "http://data.archiveshub.ac.uk", - "prefix": "archiveshub-linkeddata" + "prefix": "archiveshub-linkeddata", + "title": "Archives Hub Linked Data", + "uri": "http://data.archiveshub.ac.uk" }, { - "title": "Open Land Use", "namespace": "http://w3id.org/foodie/olu/", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "OLU " + "prefix": "OLU ", + "title": "Open Land Use", + "uri": "https://www.foodie-cloud.org/fct/" }, { - "title": "AGROVOC", "namespace": "http://aims.fao.org/aos/agrovoc/", - "uri": "http://aims.fao.org/vest-registry/vocabularies/agrovoc", - "prefix": "agrovoc" + "prefix": "agrovoc", + "title": "AGROVOC", + "uri": "http://aims.fao.org/vest-registry/vocabularies/agrovoc" }, { - "title": "Foodista", "namespace": "http://data.kasabi.com/dataset/foodista", - "uri": "http://kasabi.com/dataset/foodista", - "prefix": "foodista" + "prefix": "foodista", + "title": "Foodista", + "uri": "http://kasabi.com/dataset/foodista" }, { - "title": "Ruben Taelman's Data", "namespace": "http://www.rubensworks.net/", - "uri": "https://github.com/rubensworks/rubensworks.net", - "prefix": "rubentaelman" + "prefix": "rubentaelman", + "title": "Ruben Taelman's Data", + "uri": "https://github.com/rubensworks/rubensworks.net" }, { - "title": "Aragon Interoperable Information Structure EI2A - aragon open data", "namespace": "ei2a", - "uri": "https://opendata.aragon.es", - "prefix": "ei2a" + "prefix": "ei2a", + "title": "Aragon Interoperable Information Structure EI2A - aragon open data", + "uri": "https://opendata.aragon.es" }, { - "title": "Open Bantu isiXhosa Lexicon", "namespace": "http://rdf.corpora.uni-leipzig.de/resources/xho/inventory/", - "uri": "https://github.com/MMoOn-Project/OpenBantu/tree/master/xho", - "prefix": "open-bantu-isixhosa-lexicon" + "prefix": "open-bantu-isixhosa-lexicon", + "title": "Open Bantu isiXhosa Lexicon", + "uri": "https://github.com/MMoOn-Project/OpenBantu/tree/master/xho" }, { - "title": "EnAKTing Crime Dataset", "namespace": "http://crime.psi.enakting.org/id/", - "uri": "http://crime.psi.enakting.org/", - "prefix": "enakting-crime" + "prefix": "enakting-crime", + "title": "EnAKTing Crime Dataset", + "uri": "http://crime.psi.enakting.org/" }, { - "title": "EU Agencies and decentralized bodies (Agencies)", "namespace": "http://agencies.publicdata.eu/r/", - "uri": "http://agencies.publicdata.eu/", - "prefix": "eu-agencies-bodies" + "prefix": "eu-agencies-bodies", + "title": "EU Agencies and decentralized bodies (Agencies)", + "uri": "http://agencies.publicdata.eu/" }, { - "title": "Rechtspraak.nl", "namespace": "http://linkeddata.few.vu.nl/rechtspraak/", - "uri": "http://www.best-project.nl", - "prefix": "rechtspraak" + "prefix": "rechtspraak", + "title": "Rechtspraak.nl", + "uri": "http://www.best-project.nl" }, { - "title": "OSM Semantic Network", "namespace": "http://spatial.ucd.ie/lod/osn", - "uri": "http://wiki.openstreetmap.org/wiki/OSM_Semantic_Network", - "prefix": "osm-semantic-network" + "prefix": "osm-semantic-network", + "title": "OSM Semantic Network", + "uri": "http://wiki.openstreetmap.org/wiki/OSM_Semantic_Network" }, { - "title": "Arthroscopy community", "namespace": "http://gnoss.com/comunidad/Arthroscopy", - "uri": "http://gnoss.com/comunidad/Arthroscopy", - "prefix": "arthroscopy" + "prefix": "arthroscopy", + "title": "Arthroscopy community", + "uri": "http://gnoss.com/comunidad/Arthroscopy" }, { - "title": "TCMGeneDIT Dataset", "namespace": "http://purl.org/net/tcm/", - "uri": "http://code.google.com/p/junsbriefcase/wiki/TGDdataset", - "prefix": "tcmgenedit_dataset" + "prefix": "tcmgenedit_dataset", + "title": "TCMGeneDIT Dataset", + "uri": "http://code.google.com/p/junsbriefcase/wiki/TGDdataset" }, { - "title": "Datos Abiertos de Zaragoza", "namespace": "http://www.zaragoza.es/datosabiertos/id/", - "uri": "http://www.zaragoza.es/ciudad/risp/presentacion.htm", - "prefix": "zaragoza-datosabiertos" + "prefix": "zaragoza-datosabiertos", + "title": "Datos Abiertos de Zaragoza", + "uri": "http://www.zaragoza.es/ciudad/risp/presentacion.htm" }, { - "title": "Linked EDGAR (OntologyCentral)", "namespace": "http://edgarwrap.ontologycentral.com/", - "uri": "http://edgarwrap.ontologycentral.com/", - "prefix": "linked-edgar" + "prefix": "linked-edgar", + "title": "Linked EDGAR (OntologyCentral)", + "uri": "http://edgarwrap.ontologycentral.com/" }, { - "title": "Czech Business Entity identification numbers and names", "namespace": "https://linked.opendata.cz/zdroj/ekonomick\u00fd-subjekt/", - "uri": "https://linked.opendata.cz/zdroj/datov\u00e1-sada/seznam-i\u010d", - "prefix": "cz-ic" + "prefix": "cz-ic", + "title": "Czech Business Entity identification numbers and names", + "uri": "https://linked.opendata.cz/zdroj/datov\u00e1-sada/seznam-i\u010d" }, { - "title": "Institut Eur\u00e9com (RKBExplorer)", "namespace": "http://eurecom.rkbexplorer.com/id/", - "uri": "http://eurecom.rkbexplorer.com", - "prefix": "rkb-explorer-eurecom" + "prefix": "rkb-explorer-eurecom", + "title": "Institut Eur\u00e9com (RKBExplorer)", + "uri": "http://eurecom.rkbexplorer.com" }, { - "title": "ECCO-TCP Eighteenth Century Texts Linked Data", "namespace": "http://data.kasabi.com/dataset/ecco-tcp-eighteenth-century-collections-online-texts/", - "uri": "http://kasabi.com/dataset/ecco-tcp-eighteenth-century-collections-online-texts", - "prefix": "ecco-tcp-linked-data" + "prefix": "ecco-tcp-linked-data", + "title": "ECCO-TCP Eighteenth Century Texts Linked Data", + "uri": "http://kasabi.com/dataset/ecco-tcp-eighteenth-century-collections-online-texts" }, { - "title": " Language Name Authority List ", "namespace": "http://publications.europa.eu/resource/authority/language", - "uri": "https://op.europa.eu/en/web/eu-vocabularies/at-dataset/-/resource/dataset/language", - "prefix": "language-authority-list" + "prefix": "language-authority-list", + "title": " Language Name Authority List ", + "uri": "https://op.europa.eu/en/web/eu-vocabularies/at-dataset/-/resource/dataset/language" }, { - "title": "Czech statistical classification of economic activities in the European Community (CZ-NACE)", "namespace": "https://linked.opendata.cz/zdroje", - "uri": "https://linked.opendata.cz/zdroje/datov\u00e9-sady/\u010ds\u00fa/\u010d\u00edseln\u00edky/cz-nace", - "prefix": "cz-nace" + "prefix": "cz-nace", + "title": "Czech statistical classification of economic activities in the European Community (CZ-NACE)", + "uri": "https://linked.opendata.cz/zdroje/datov\u00e9-sady/\u010ds\u00fa/\u010d\u00edseln\u00edky/cz-nace" }, { - "title": "Mi Gu\u00eda de Viajes, colecci\u00f3n de gu\u00edas de viaje para viajeros (GNOSS)", "namespace": "http://miguiadeviajes.net", - "uri": "http://miguiadeviajes.net", - "prefix": "miguiadeviajes-gnoss" + "prefix": "miguiadeviajes-gnoss", + "title": "Mi Gu\u00eda de Viajes, colecci\u00f3n de gu\u00edas de viaje para viajeros (GNOSS)", + "uri": "http://miguiadeviajes.net" }, { - "title": "eagle-i @ Jackson State University", "namespace": "http://jsu.eagle-i.net/i/", - "uri": "http://jsu.eagle-i.net", - "prefix": "eagle-i-jsu" + "prefix": "eagle-i-jsu", + "title": "eagle-i @ Jackson State University", + "uri": "http://jsu.eagle-i.net" }, { - "title": "PGxLOD", "namespace": "http://pgxlod.loria.fr/resource/", - "uri": "https://pgxlod.loria.fr/", - "prefix": "PGxLOD" + "prefix": "PGxLOD", + "title": "PGxLOD", + "uri": "https://pgxlod.loria.fr/" }, { - "title": "ECS Southampton EPrints", "namespace": "http://eprints.ecs.soton.ac.uk/id/eprint/", - "uri": "http://eprints.ecs.soton.ac.uk/", - "prefix": "southampton-ecs-eprints" + "prefix": "southampton-ecs-eprints", + "title": "ECS Southampton EPrints", + "uri": "http://eprints.ecs.soton.ac.uk/" }, { - "title": "Prelinger Archives", "namespace": "http://data.kasabi.com/dataset/prelinger-archives", - "uri": "http://kasabi.com/dataset/prelinger-archives", - "prefix": "prelinger_archives" + "prefix": "prelinger_archives", + "title": "Prelinger Archives", + "uri": "http://kasabi.com/dataset/prelinger-archives" }, { - "title": "EnAKTing Energy Dataset", "namespace": "http://energy.psi.enakting.org/def/", - "uri": "http://energy.psi.enakting.org/", - "prefix": "enakting-energy" + "prefix": "enakting-energy", + "title": "EnAKTing Energy Dataset", + "uri": "http://energy.psi.enakting.org/" }, { - "title": "VIVO", "namespace": "http://vivo.cornell.edu/individual/", - "uri": "http://vivoweb.org/", - "prefix": "vivo" + "prefix": "vivo", + "title": "VIVO", + "uri": "http://vivoweb.org/" }, { - "title": "OpenEI - Open Energy Info", "namespace": "http://en.openei.org/", - "uri": "http://en.openei.org/", - "prefix": "open-energy-info-wiki" + "prefix": "open-energy-info-wiki", + "title": "OpenEI - Open Energy Info", + "uri": "http://en.openei.org/" }, { - "title": "Korean Institute of Science Technology and Information (RKBExplorer)", "namespace": "http://kisti.rkbexplorer.com/id/", - "uri": "http://kisti.rkbexplorer.com", - "prefix": "rkb-explorer-kisti" + "prefix": "rkb-explorer-kisti", + "title": "Korean Institute of Science Technology and Information (RKBExplorer)", + "uri": "http://kisti.rkbexplorer.com" }, { - "title": "EU: fintrans.publicdata.eu", "namespace": "http://fintrans.publicdata.eu/ec/resource/", - "uri": "http://fintrans.publicdata.eu/", - "prefix": "beneficiaries-of-the-european-commission" + "prefix": "beneficiaries-of-the-european-commission", + "title": "EU: fintrans.publicdata.eu", + "uri": "http://fintrans.publicdata.eu/" }, { - "title": "British National Bibliography (BNB) - Linked Open Data", "namespace": "http://bnb.data.bl.uk/id/", - "uri": "http://bnb.data.bl.uk", - "prefix": "bluk-bnb" + "prefix": "bluk-bnb", + "title": "British National Bibliography (BNB) - Linked Open Data", + "uri": "http://bnb.data.bl.uk" }, { - "title": "Faceted Application of Subject Terminology", "namespace": "http://id.worldcat.org/fast/", - "uri": "http://id.worldcat.org/fast/", - "prefix": "oclc-fast" + "prefix": "oclc-fast", + "title": "Faceted Application of Subject Terminology", + "uri": "http://id.worldcat.org/fast/" }, { - "title": "Smart Point Of Interest", "namespace": "http://www.sdi4apps.eu/poi.rdf", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "Smart POI dataset" + "prefix": "Smart POI dataset", + "title": "Smart Point Of Interest", + "uri": "https://www.foodie-cloud.org/fct/" }, { - "title": "B3Kat - Library Union Catalogues of Bavaria, Berlin and Brandenburg", "namespace": "http://lod.b3kat.de/title/", - "uri": "http://lod.b3kat.de", - "prefix": "b3kat" + "prefix": "b3kat", + "title": "B3Kat - Library Union Catalogues of Bavaria, Berlin and Brandenburg", + "uri": "http://lod.b3kat.de" }, { - "title": "associations", "namespace": "https://w3id.org/associations/", - "uri": "https://w3id.org/associations", - "prefix": "associations" + "prefix": "associations", + "title": "associations", + "uri": "https://w3id.org/associations" }, { - "title": "WordNet 2.0 (W3C)", "namespace": "http://www.w3.org/2006/03/wn/wn20/", - "uri": "http://www.w3.org/TR/wordnet-rdf", - "prefix": "w3c-wordnet" + "prefix": "w3c-wordnet", + "title": "WordNet 2.0 (W3C)", + "uri": "http://www.w3.org/TR/wordnet-rdf" }, { - "title": "eagle-i @ Hunter College", "namespace": "http://hunter-cuny.eagle-i.net/i/", - "uri": "http://hunter-cuny.eagle-i.net", - "prefix": "eagle-i-hunter-cuny" + "prefix": "eagle-i-hunter-cuny", + "title": "eagle-i @ Hunter College", + "uri": "http://hunter-cuny.eagle-i.net" }, { - "title": "RISKS Digest (RKBExplorer)", "namespace": "http://risks.rkbexplorer.com/id/", - "uri": "http://risks.rkbexplorer.com", - "prefix": "rkb-explorer-risks" + "prefix": "rkb-explorer-risks", + "title": "RISKS Digest (RKBExplorer)", + "uri": "http://risks.rkbexplorer.com" }, { - "title": "European Central Bank Statistics (PublicData.eu)", "namespace": "http://ecb.publicdata.eu/", - "uri": "http://ecb.publicdata.eu", - "prefix": "ecb-statistics-linked-data" + "prefix": "ecb-statistics-linked-data", + "title": "European Central Bank Statistics (PublicData.eu)", + "uri": "http://ecb.publicdata.eu" }, { - "title": "Interactive Maps, a collection of interactive flash maps (GNOSS)", "namespace": "http://mapasinteractivos.didactalia.net/comunidad/mapasflashinteractivos", - "uri": "http://mapasinteractivos.didactalia.net/comunidad/mapasflashinteractivos", - "prefix": "interactivemaps-gnoss" + "prefix": "interactivemaps-gnoss", + "title": "Interactive Maps, a collection of interactive flash maps (GNOSS)", + "uri": "http://mapasinteractivos.didactalia.net/comunidad/mapasflashinteractivos" }, { - "title": "BBC Wildlife Finder", "namespace": "http://www.bbc.co.uk/nature/", - "uri": "http://www.bbc.co.uk/wildlifefinder/", - "prefix": "bbc-wildlife-finder" + "prefix": "bbc-wildlife-finder", + "title": "BBC Wildlife Finder", + "uri": "http://www.bbc.co.uk/wildlifefinder/" }, { - "title": "CPC 2008", "namespace": "http://purl.org/weso/pscs/cpa/2008/resource", - "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/", - "prefix": "cpc-2008" + "prefix": "cpc-2008", + "title": "CPC 2008", + "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/" }, { - "title": "Organizations active in R&D", "namespace": "http://linked.opendata.cz/resource/domain/vavai/", - "uri": "http://linked.opendata.cz/resource/dataset/vavai/organizations", - "prefix": "cz-vavai-organizations" + "prefix": "cz-vavai-organizations", + "title": "Organizations active in R&D", + "uri": "http://linked.opendata.cz/resource/dataset/vavai/organizations" }, { - "title": "MARC Codes List", "namespace": "http://purl.org/NET/marccodes/", - "uri": "http://purl.org/NET/marccodes/", - "prefix": "marc-codes" + "prefix": "marc-codes", + "title": "MARC Codes List", + "uri": "http://purl.org/NET/marccodes/" }, { - "title": "Linked Movie DataBase", "namespace": "http://data.linkedmdb.org/resource/", - "uri": "http://linkedmdb.org/", - "prefix": "linkedmdb" + "prefix": "linkedmdb", + "title": "Linked Movie DataBase", + "uri": "http://linkedmdb.org/" }, { - "title": "Thesaurus for Graphic Materials (t4gm.info)", "namespace": "http://www.t4gm.info/", - "uri": "http://www.t4gm.info/", - "prefix": "t4gm-info" + "prefix": "t4gm-info", + "title": "Thesaurus for Graphic Materials (t4gm.info)", + "uri": "http://www.t4gm.info/" }, { - "title": "Hungarian National Library (NSZL) catalog", "namespace": "http://nektar.oszk.hu/", - "uri": "http://nektar.oszk.hu/wiki/Semantic_web", - "prefix": "hungarian-national-library-catalog" + "prefix": "hungarian-national-library-catalog", + "title": "Hungarian National Library (NSZL) catalog", + "uri": "http://nektar.oszk.hu/wiki/Semantic_web" }, { - "title": "eagle-i @ Florida Agricultural and Mechanical University", "namespace": "http://famu.eagle-i.net/i/", - "uri": "http://famu.eagle-i.net", - "prefix": "eagle-i-famu" + "prefix": "eagle-i-famu", + "title": "eagle-i @ Florida Agricultural and Mechanical University", + "uri": "http://famu.eagle-i.net" }, { - "title": "Corine linked dataset", "namespace": "http://w3id.org/foodie/corine/", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "Corine linked dataset" + "prefix": "Corine linked dataset", + "title": "Corine linked dataset", + "uri": "https://www.foodie-cloud.org/fct/" }, { - "title": "IEEE Papers (RKBExplorer)", "namespace": "http://ieee.rkbexplorer.com/id/", - "uri": "http://ieee.rkbexplorer.com", - "prefix": "rkb-explorer-ieee" + "prefix": "rkb-explorer-ieee", + "title": "IEEE Papers (RKBExplorer)", + "uri": "http://ieee.rkbexplorer.com" }, { - "title": "Association for Computing Machinery (ACM) (RKBExplorer)", "namespace": "http://acm.rkbexplorer.com/id/", - "uri": "http://acm.rkbexplorer.com/", - "prefix": "rkb-explorer-acm" + "prefix": "rkb-explorer-acm", + "title": "Association for Computing Machinery (ACM) (RKBExplorer)", + "uri": "http://acm.rkbexplorer.com/" }, { - "title": "Open Data RISP, the Spanish Open Data community", "namespace": "http://red.gnoss.com/comunidad/OpenData", - "uri": "http://red.gnoss.com/comunidad/OpenData", - "prefix": "open-data-risp" + "prefix": "open-data-risp", + "title": "Open Data RISP, the Spanish Open Data community", + "uri": "http://red.gnoss.com/comunidad/OpenData" }, { - "title": "DBpedia", "namespace": "http://dbpedia.org/resource/", - "uri": "http://dbpedia.org/", - "prefix": "dbpedia" + "prefix": "dbpedia", + "title": "DBpedia", + "uri": "http://dbpedia.org/" }, { - "title": "Norway fishery stocks dataset", "namespace": "http://standardgraphs.ices.dk/stocks/", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "Norway Fishery " + "prefix": "Norway Fishery ", + "title": "Norway fishery stocks dataset", + "uri": "https://www.foodie-cloud.org/fct/" }, { - "title": "Standard Eurobarometer", "namespace": "http://eurobarometer.publicdata.eu/data/", - "uri": "http://eurobarometer.publicdata.eu", - "prefix": "eurobarometer-standard" + "prefix": "eurobarometer-standard", + "title": "Standard Eurobarometer", + "uri": "http://eurobarometer.publicdata.eu" }, { - "title": "webconf", "namespace": "http://webconf.rkbexplorer.com/id/", - "uri": "http://webconf.rkbexplorer.com", - "prefix": "rkb-explorer-webconf" + "prefix": "rkb-explorer-webconf", + "title": "webconf", + "uri": "http://webconf.rkbexplorer.com" }, { - "title": "LAAS-CNRS (RKBExplorer)", "namespace": "http://laas.rkbexplorer.com/id/", - "uri": "http://laas.rkbexplorer.com", - "prefix": "rkb-explorer-laas" + "prefix": "rkb-explorer-laas", + "title": "LAAS-CNRS (RKBExplorer)", + "uri": "http://laas.rkbexplorer.com" }, { - "title": "Prospects and Trends (GNOSS)", "namespace": "http://gnoss.com/comunidad/prospectivatecnologica", - "uri": "http://gnoss.com/comunidad/prospectivatecnologica", - "prefix": "prospects-and-trends-gnoss" + "prefix": "prospects-and-trends-gnoss", + "title": "Prospects and Trends (GNOSS)", + "uri": "http://gnoss.com/comunidad/prospectivatecnologica" }, { - "title": "ISIC V4", "namespace": "http://purl.org/weso/pscs/isic/v4/resource", - "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/", - "prefix": "isic-v4" + "prefix": "isic-v4", + "title": "ISIC V4", + "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/" }, { - "title": "R&D Programmes", "namespace": "http://linked.opendata.cz/resource/domain/vavai/", - "uri": "http://linked.opendata.cz/resource/dataset/vavai/programmes", - "prefix": "cz-vavai-programmes" + "prefix": "cz-vavai-programmes", + "title": "R&D Programmes", + "uri": "http://linked.opendata.cz/resource/dataset/vavai/programmes" }, { - "title": "Renewable Energy Generators", "namespace": "http://data.kasabi.com/dataset/renewable-energy-generators", - "uri": "http://kasabi.com/dataset/renewable-energy-generators", - "prefix": "renewable_energy_generators" + "prefix": "renewable_energy_generators", + "title": "Renewable Energy Generators", + "uri": "http://kasabi.com/dataset/renewable-energy-generators" }, { - "title": "CPV 2003", "namespace": "http://purl.org/weso/pscs/cpv/2003/resource", - "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/", - "prefix": "cpv-2003" + "prefix": "cpv-2003", + "title": "CPV 2003", + "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/" }, { - "title": "DBpedia in Greek", "namespace": "http://el.dbpedia.org/resource/", - "uri": "http://wiki.el.dbpedia.org", - "prefix": "dbpedia-el" + "prefix": "dbpedia-el", + "title": "DBpedia in Greek", + "uri": "http://wiki.el.dbpedia.org" }, { - "title": "Tenders in R&D", "namespace": "http://linked.opendata.cz/resource/domain/vavai/", - "uri": "http://linked.opendata.cz/resource/dataset/vavai/tenders", - "prefix": "cz-vavai-tenders" + "prefix": "cz-vavai-tenders", + "title": "Tenders in R&D", + "uri": "http://linked.opendata.cz/resource/dataset/vavai/tenders" }, { - "title": "Accommodations in Tuscany (LinkedOpenData.it)", "namespace": "http://data.linkedopendata.it/grrt/resource/", - "uri": "http://www.linkedopendata.it/datasets/grrt", - "prefix": "grrt" + "prefix": "grrt", + "title": "Accommodations in Tuscany (LinkedOpenData.it)", + "uri": "http://www.linkedopendata.it/datasets/grrt" }, { - "title": "datos.bne.es", "namespace": "http://datos.bne.es/resource/", - "uri": "http://datos.bne.es", - "prefix": "datos-bne-es" + "prefix": "datos-bne-es", + "title": "datos.bne.es", + "uri": "http://datos.bne.es" }, { - "title": "Linked Eurostat (OntologyCentral)", "namespace": "http://estatwrap.ontologycentral.com/id/", - "uri": "http://ontologycentral.com/2009/01/eurostat/", - "prefix": "linked-eurostat" + "prefix": "linked-eurostat", + "title": "Linked Eurostat (OntologyCentral)", + "uri": "http://ontologycentral.com/2009/01/eurostat/" }, { - "title": "EU Parliament Media Library", "namespace": "http://eupmedia.publicdata.eu/data/", - "uri": "http://eupmedia.publicdata.eu/", - "prefix": "eu-parliament-media" + "prefix": "eu-parliament-media", + "title": "EU Parliament Media Library", + "uri": "http://eupmedia.publicdata.eu/" }, { - "title": "EnAKTing NHS Dataset", "namespace": "http://nhs.psi.enakting.org/id/nhs/", - "uri": "http://nhs.psi.enakting.org/", - "prefix": "enakting-nhs" + "prefix": "enakting-nhs", + "title": "EnAKTing NHS Dataset", + "uri": "http://nhs.psi.enakting.org/" }, { - "title": "Institutional research plans", "namespace": "http://linked.opendata.cz/resource/domain/vavai/", - "uri": "http://linked.opendata.cz/resource/dataset/vavai/research-plans", - "prefix": "cz-vavai-research-plans" + "prefix": "cz-vavai-research-plans", + "title": "Institutional research plans", + "uri": "http://linked.opendata.cz/resource/dataset/vavai/research-plans" }, { - "title": "Resilient Computing Courseware (RKBExplorer)", "namespace": "http://courseware.rkbexplorer.com/id/", - "uri": "http://courseware.rkbexplorer.com", - "prefix": "rkb-explorer-courseware" + "prefix": "rkb-explorer-courseware", + "title": "Resilient Computing Courseware (RKBExplorer)", + "uri": "http://courseware.rkbexplorer.com" }, { - "title": "El Viajero's tourism dataset", "namespace": "http://webenemasuno.linkeddata.es/elviajero/resource/", - "uri": "http://webenemasuno.linkeddata.es/", - "prefix": "elviajero" + "prefix": "elviajero", + "title": "El Viajero's tourism dataset", + "uri": "http://webenemasuno.linkeddata.es/" }, { - "title": "Scholarometer", "namespace": "http://scholarometer.indiana.edu/namespaces/", - "uri": "http://scholarometer.indiana.edu/data.html", - "prefix": "scholarometer" + "prefix": "scholarometer", + "title": "Scholarometer", + "uri": "http://scholarometer.indiana.edu/data.html" }, { - "title": "FAO water areas classification as linked data", "namespace": "http://www.fao.org/aims/aos/fi/water_FAO_areas/", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "Water Areas Classification" + "prefix": "Water Areas Classification", + "title": "FAO water areas classification as linked data", + "uri": "https://www.foodie-cloud.org/fct/" }, { - "title": "dbacademic", "namespace": "http://www.dbacademic.tech/resource", - "uri": "http://sparql.dbacademic.tech/", - "prefix": "dbacademic" + "prefix": "dbacademic", + "title": "dbacademic", + "uri": "http://sparql.dbacademic.tech/" }, { - "title": "Manchester University Reading Lists", "namespace": "http://www.readinglists.manchester.ac.uk/", - "uri": "http://www.readinglists.manchester.ac.uk/", - "prefix": "manchester-university-reading-lists" + "prefix": "manchester-university-reading-lists", + "title": "Manchester University Reading Lists", + "uri": "http://www.readinglists.manchester.ac.uk/" }, { - "title": "Entornos interactivos. Arte en los nuevos medios (GNOSS)", "namespace": "http://gnoss.com/comunidad/Interactivos", - "uri": "http://gnoss.com/comunidad/Interactivos", - "prefix": "artenuevosmedios-gnoss" + "prefix": "artenuevosmedios-gnoss", + "title": "Entornos interactivos. Arte en los nuevos medios (GNOSS)", + "uri": "http://gnoss.com/comunidad/Interactivos" }, { - "title": "CaLiGraph", "namespace": "http://caligraph.org", - "uri": "http://caligraph.org", - "prefix": "CaLiGraph" + "prefix": "CaLiGraph", + "title": "CaLiGraph", + "uri": "http://caligraph.org" }, { - "title": "TWC: Linking Open Government Data", "namespace": "http://logd.tw.rpi.edu/", - "uri": "http://logd.tw.rpi.edu", - "prefix": "twc-logd" + "prefix": "twc-logd", + "title": "TWC: Linking Open Government Data", + "uri": "http://logd.tw.rpi.edu" }, { - "title": "John Goodwin's Family Tree", "namespace": "http://www.johngoodwin.me.uk/family/", - "uri": "http://www.johngoodwin.me.uk/family/", - "prefix": "john-goodwins-family-tree" + "prefix": "john-goodwins-family-tree", + "title": "John Goodwin's Family Tree", + "uri": "http://www.johngoodwin.me.uk/family/" }, { - "title": "Open Library", "namespace": "http://openlibrary.org/", - "uri": "http://openlibrary.org/", - "prefix": "open-library" + "prefix": "open-library", + "title": "Open Library", + "uri": "http://openlibrary.org/" }, { - "title": "datos-artium-org", "namespace": "http://datos.artium.org/id/collections/", - "uri": "http://biblioteca.artium.org", - "prefix": "datos-artium-org" + "prefix": "datos-artium-org", + "title": "datos-artium-org", + "uri": "http://biblioteca.artium.org" }, { - "title": "EuroVoc", "namespace": "http://eurovoc.europa.eu", - "uri": "https://op.europa.eu/en/web/eu-vocabularies/th-dataset/-/resource/dataset/eurovoc", - "prefix": "eurovoc" + "prefix": "eurovoc", + "title": "EuroVoc", + "uri": "https://op.europa.eu/en/web/eu-vocabularies/th-dataset/-/resource/dataset/eurovoc" }, { - "title": "ATC groups", "namespace": "http://linked.opendata.cz/resource/atc/", - "uri": "http://linked.opendata.cz/resource/dataset/atc", - "prefix": "cz-eh-1-atc" + "prefix": "cz-eh-1-atc", + "title": "ATC groups", + "uri": "http://linked.opendata.cz/resource/dataset/atc" }, { - "title": "ChemPedia RDF", "namespace": "http://data.kasabi.com/dataset/chempedia-rdf/", - "uri": "http://figshare.com/articles/ChemPedia_as_RDF/681678", - "prefix": "chempedia-rdf" + "prefix": "chempedia-rdf", + "title": "ChemPedia RDF", + "uri": "http://figshare.com/articles/ChemPedia_as_RDF/681678" }, { - "title": "EnAKTing CO2 Emission Dataset", "namespace": "http://co2emission.psi.enakting.org/id/", - "uri": "http://co2emission.psi.enakting.org/", - "prefix": "enakting-co2emission" + "prefix": "enakting-co2emission", + "title": "EnAKTing CO2 Emission Dataset", + "uri": "http://co2emission.psi.enakting.org/" }, { - "title": "flickr? wrappr", "namespace": "http://www4.wiwiss.fu-berlin.de/flickrwrappr/photos/", - "uri": "http://www4.wiwiss.fu-berlin.de/flickrwrappr", - "prefix": "flickr-wrappr" + "prefix": "flickr-wrappr", + "title": "flickr? wrappr", + "uri": "http://www4.wiwiss.fu-berlin.de/flickrwrappr" }, { - "title": "DEPLOY (RKBExplorer)", "namespace": "http://deploy.rkbexplorer.com/id/", - "uri": "http://deploy.rkbexplorer.com", - "prefix": "rkb-explorer-deploy" + "prefix": "rkb-explorer-deploy", + "title": "DEPLOY (RKBExplorer)", + "uri": "http://deploy.rkbexplorer.com" }, { - "title": "NAICS 2012", "namespace": "http://purl.org/weso/pscs/naics/2012/resource", - "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/", - "prefix": "naics-2012" + "prefix": "naics-2012", + "title": "NAICS 2012", + "uri": "http://www.josemalvarez.es/web/2011/11/16/product-scheme-classifications/" }, { - "title": "epsrc", "namespace": "http://epsrc.rkbexplorer.com/id/", - "uri": "http://epsrc.rkbexplorer.com", - "prefix": "rkb-explorer-epsrc" + "prefix": "rkb-explorer-epsrc", + "title": "epsrc", + "uri": "http://epsrc.rkbexplorer.com" }, { - "title": "Social Semantic Web Thesaurus", "namespace": "http://vocabulary.semantic-web.at/semweb/", - "uri": "http://vocabulary.semantic-web.at/PoolParty/wiki/semweb", - "prefix": "socialsemweb-thesaurus" + "prefix": "socialsemweb-thesaurus", + "title": "Social Semantic Web Thesaurus", + "uri": "http://vocabulary.semantic-web.at/PoolParty/wiki/semweb" }, { - "title": "SIDER: Side Effect Resource", "namespace": "http://www4.wiwiss.fu-berlin.de/sider/resource/", - "uri": "http://www4.wiwiss.fu-berlin.de/sider/", - "prefix": "fu-berlin-sider" + "prefix": "fu-berlin-sider", + "title": "SIDER: Side Effect Resource", + "uri": "http://www4.wiwiss.fu-berlin.de/sider/" }, { - "title": "English Index of Multiple Deprivation Score 2010", "namespace": "http://opendatacommunities.org/id/IMD/2010/IMD-score/LSOA/", - "uri": "http://opendatacommunities.org/datasets/imd-score-2010", - "prefix": "english-index-of-multiple-deprivation-score-2010" + "prefix": "english-index-of-multiple-deprivation-score-2010", + "title": "English Index of Multiple Deprivation Score 2010", + "uri": "http://opendatacommunities.org/datasets/imd-score-2010" }, { - "title": "Integrated pollution registry", "namespace": "http://linked.opendata.cz/resource/domain/cenia.cz/", - "uri": "http://linked.opendata.cz/resource/dataset/cenia.cz/irz", - "prefix": "cz-cenia-pollution" + "prefix": "cz-cenia-pollution", + "title": "Integrated pollution registry", + "uri": "http://linked.opendata.cz/resource/dataset/cenia.cz/irz" }, { - "title": "iServe: Linked Services Registry", "namespace": "http://iserve.kmi.open.ac.uk/iserve/", - "uri": "http://iserve.kmi.open.ac.uk/", - "prefix": "iserve" + "prefix": "iserve", + "title": "iServe: Linked Services Registry", + "uri": "http://iserve.kmi.open.ac.uk/" }, { - "title": "EURAXESS - Researchers in Motion", "namespace": "http://www4.wiwiss.fu-berlin.de/euraxess/resource/", - "uri": "http://www4.wiwiss.fu-berlin.de/euraxess/", - "prefix": "fu-berlin-euraxess" + "prefix": "fu-berlin-euraxess", + "title": "EURAXESS - Researchers in Motion", + "uri": "http://www4.wiwiss.fu-berlin.de/euraxess/" }, { - "title": "eagle-i @ Tuskegee University", "namespace": "http://tuskegee.eagle-i.net/i/", - "uri": "http://tuskegee.eagle-i.net", - "prefix": "eagle-i-tuskegee" + "prefix": "eagle-i-tuskegee", + "title": "eagle-i @ Tuskegee University", + "uri": "http://tuskegee.eagle-i.net" }, { - "title": "DBpedia in Basque", "namespace": "http://eudbpedia.deusto.es/resource/", - "uri": "http://eudbpedia.deusto.es", - "prefix": "dbpedia-eu" + "prefix": "dbpedia-eu", + "title": "DBpedia in Basque", + "uri": "http://eudbpedia.deusto.es" }, { - "title": "Land parcel dataset (LPIS) from Czech Republic", "namespace": "https://w3id.org/foodie/open/cz/pLPIS_180616_WGS/", - "uri": "https://www.foodie-cloud.org/fct/", - "prefix": "LPIS Czech Republic" + "prefix": "LPIS Czech Republic", + "title": "Land parcel dataset (LPIS) from Czech Republic", + "uri": "https://www.foodie-cloud.org/fct/" } ] diff --git a/fuji_server/data/linked_vocabs/bioportal_ontologies.json b/fuji_server/data/linked_vocabs/bioportal_ontologies.json index ebc18c82..4f7885ed 100644 --- a/fuji_server/data/linked_vocabs/bioportal_ontologies.json +++ b/fuji_server/data/linked_vocabs/bioportal_ontologies.json @@ -1 +1,9224 @@ -{"bioportal.ico": {"bioportal": {"name": "Informed Consent Ontology", "prefix": "ICO", "uri_format": "http://purl.obolibrary.org/obo/ICO_$1", "subjects": ["Health"]}}, "bioportal.drpsnpto": {"bioportal": {"name": "Dementia-Related Psychotic Symptoms Non-Pharmacological Treatment Ontology", "prefix": "DRPSNPTO", "uri_format": "http://www.semanticweb.org/zhenyuzhang/ontologies/2020/DRPSNPTO$1", "subjects": ["Taxonomic Classification", "Health", "Vocabularies"]}}, "bioportal.geospecies": {"bioportal": {"name": "GeoSpecies Ontology", "prefix": "GEOSPECIES", "uri_format": "http://rdf.geospecies.org/ont/geospecies#$1", "subjects": ["Other"]}}, "bioportal.teo": {"bioportal": {"name": "Time Event Ontology", "prefix": "TEO", "uri_format": "http://informatics.mayo.edu/TEO.owl#$1", "subjects": ["Other"]}}, "bioportal.omv": {"bioportal": {"name": "Ontology Metadata Vocabulary", "prefix": "OMV", "uri_format": "http://omv.ontoware.org/2005/05/ontology#$1", "subjects": ["Vocabularies"]}}, "bioportal.tmo": {"bioportal": {"name": "Translational Medicine Ontology", "prefix": "TMO", "uri_format": "http://www.w3.org/2001/sw/hcls/ns/transmed/TMO_$1", "subjects": ["All Organisms", "Health"]}}, "bioportal.opmi": {"bioportal": {"name": "Ontology of Precision Medicine and Investigation", "prefix": "OPMI", "uri_format": "http://purl.obolibrary.org/obo/OPMI_$1", "subjects": ["Health"]}}, "bioportal.ofsmr": {"bioportal": {"name": "Open Predictive Microbiology Ontology", "prefix": "OFSMR", "uri_format": "urn:absolute:OFSMR#$1", "subjects": ["Biomedical Resources", "Vocabularies"]}}, "bioportal.mooccuado": {"bioportal": {"name": "Molgula occulta Anatomy and Development Ontology", "prefix": "MOOCCUADO", "uri_format": "http://purl.obolibrary.org/obo/MooccuA_$1", "subjects": ["Anatomy", "Animal Development"]}}, "bioportal.adcad": {"bioportal": {"name": "Arctic Data Center Academic Disciplines Ontology", "prefix": "ADCAD", "uri_format": "https://purl.dataone.org/odo/ADCAD_$1", "subjects": []}}, "bioportal.lifo": {"bioportal": {"name": "Life Ontology", "prefix": "LIFO", "uri_format": "http://purl.obolibrary.org/obo/LifO_$1", "subjects": ["All Organisms"]}}, "bioportal.matrcompound": {"bioportal": {"name": "Material Compound", "prefix": "MATRCOMPOUND", "uri_format": "http://sweet.jpl.nasa.gov/2.3/matrCompound.owl#$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.agro": {"bioportal": {"name": "AGRonomy Ontology", "prefix": "AGRO", "uri_format": "http://purl.obolibrary.org/obo/AGRO_$1", "subjects": []}}, "bioportal.heio": {"bioportal": {"name": "Regional Healthcare System Interoperability and Information Exchange Measurement Ontology", "prefix": "HEIO", "uri_format": "http://whistl.uwaterloo.ca/heio.owl#$1", "subjects": ["Other"]}}, "bioportal.ego": {"bioportal": {"name": "Epigenome Ontology", "prefix": "EGO", "uri_format": "http://purl.obolibrary.org/obo/EGO_$1", "subjects": ["Molecule", "Health", "Genomic and Proteomic"]}}, "bioportal.iso19115roles": {"bioportal": {"name": "ISO 19115 Role Codes", "prefix": "ISO19115ROLES", "uri_format": "http://def.isotc211.org/iso19115/-1/2014/CitationAndResponsiblePartyInformation/code/CI_/RoleCode$1", "subjects": []}}, "bioportal.ido": {"bioportal": {"name": "Infectious Disease Ontology", "prefix": "IDO", "uri_format": "http://purl.obolibrary.org/obo/IDO_$1", "subjects": ["All Organisms", "Health"]}}, "bioportal.vodana-mi": {"bioportal": {"name": "VODANA-MIGRANTS-INTERVIEWS", "prefix": "VODANA-MI", "uri_format": "https://www.vodan-totafrica.info/vocs/miv$1", "subjects": ["Health", "Vocabularies"]}}, "bioportal.cdpeo": {"bioportal": {"name": "Chronic Disease Patient Education Ontology", "prefix": "CDPEO", "uri_format": "http://www.semanticweb.org/ontologies/chronic-diease-patient-education-ontology#$1", "subjects": ["Health"]}}, "bioportal.aio": {"bioportal": {"name": "Artificial Intelligence Ontology", "prefix": "AIO", "uri_format": "https://w3id.org/aio$1", "subjects": ["Other"]}}, "bioportal.fb-cv": {"bioportal": {"name": "FlyBase Controlled Vocabulary", "prefix": "FB-CV", "uri_format": "http://purl.obolibrary.org/obo/FBcv_$1", "subjects": ["Vocabularies"]}}, "bioportal.illnessinjury": {"bioportal": {"name": "Illness and Injury", "prefix": "ILLNESSINJURY", "uri_format": "http://www.owl-ontologies.com/unnamed.owl#$1", "subjects": ["Taxonomic Classification", "Health", "Human"]}}, "bioportal.nifdys": {"bioportal": {"name": "Neuroscience Information Framework (NIF) Dysfunction Ontlogy", "prefix": "NIFDYS", "uri_format": "http://purl.obolibrary.org/obo/PATO_$1", "subjects": []}}, "bioportal.emapa": {"bioportal": {"name": "Mouse gross anatomy and development, timed", "prefix": "EMAPA", "uri_format": "http://purl.obolibrary.org/obo/EMAPA_$1", "subjects": ["Anatomy"]}}, "bioportal.hto": {"bioportal": {"name": "Horridge Test Ontology", "prefix": "HTO", "uri_format": "http://protege.stanford.edu/ontologies/hto/846c3f2b_$1", "subjects": []}}, "bioportal.ontoad": {"bioportal": {"name": "Bilingual Ontology of Alzheimer's Disease and Related Diseases", "prefix": "ONTOAD", "uri_format": "http://doe-generated-ontology.com/OntoAD#$1", "subjects": ["Health", "Dysfunction", "Neurologic Disease", "Neurological Disorder", "Human"]}}, "bioportal.tma": {"bioportal": {"name": "Tissue Microarray Ontology", "prefix": "TMA", "uri_format": "http://bioontology.org/ontologies/tma-minimal#$1", "subjects": ["Experimental Conditions", "Biomedical Resources", "Other"]}}, "bioportal.hivmt": {"bioportal": {"name": "HIVMutation", "prefix": "HIVMT", "uri_format": "http://bioportal/bioontology.org/ontologies/HIVO0004#$1", "subjects": ["Biomedical Resources"]}}, "bioportal.hivo004": {"bioportal": {"name": "HIVOntologymain.owl", "prefix": "HIVO004", "uri_format": "http://bioportal/bioontology.org/ontologies/HIVO0004#$1", "subjects": ["Immunology", "Taxonomic Classification", "Molecule", "Health", "Dysfunction", "Biomedical Resources", "Biological Process", "Subcellular", "Protein"]}}, "bioportal.sio": {"bioportal": {"name": "Semanticscience Integrated Ontology", "prefix": "SIO", "uri_format": "http://semanticscience.org/resource/SIO_$1", "subjects": ["Yeast", "All Organisms", "Cellular anatomy ", "Taxonomic Classification", "Molecule", "Biomedical Resources", "Genomic and Proteomic", "Biological Process", "Subcellular", "Phenotype", "Subcellular anatomy", "Chemical", "Cell", "Protein", "Gene Product", "Vocabularies", "Physicochemical"]}}, "bioportal.psimod": {"bioportal": {"name": "Protein Modification Ontology", "prefix": "PSIMOD", "uri_format": "http://purl.obolibrary.org/obo/MOD_$1", "subjects": []}}, "bioportal.rpo": {"bioportal": {"name": "Resource of Asian Primary Immunodeficiency Diseases (RAPID) Phenotype Ontology", "prefix": "RPO", "uri_format": "http://www.semanticweb.org/ontologies/2012/5/Ontology1338526551855.owl#$1", "subjects": ["Immunology", "Phenotype", "Human"]}}, "bioportal.birnlex": {"bioportal": {"name": "Biomedical Informatics Research Network Project Lexicon", "prefix": "BIRNLEX", "uri_format": "http://bioontology.org/projects/ontologies/birnlex#$1", "subjects": ["Imaging", "Anatomy"]}}, "bioportal.chear": {"bioportal": {"name": "Children's Health Exposure Analysis Resource", "prefix": "CHEAR", "uri_format": "http://hadatac.org/ont/chear#$1", "subjects": ["Health", "Human"]}}, "bioportal.pw": {"bioportal": {"name": "Pathway Ontology", "prefix": "PW", "uri_format": "http://purl.obolibrary.org/obo/PW_$1", "subjects": ["Biological Process"]}}, "bioportal.gdco": {"bioportal": {"name": "Data Collection Ontology", "prefix": "GDCO", "uri_format": "http://purl.org/dco/v1#$1", "subjects": ["Development"]}}, "bioportal.hoom": {"bioportal": {"name": "HPO - ORDO Ontological Module", "prefix": "HOOM", "uri_format": "http://www.semanticweb.org/ontology/HOOM#$1", "subjects": ["Health", "Biomedical Resources", "Phenotype", "Human"]}}, "bioportal.bipon": {"bioportal": {"name": "Bacterial interlocked Process ONtology", "prefix": "BIPON", "uri_format": "http://www.semanticweb.org/BiPON/BiPON_$1", "subjects": ["Biological Process"]}}, "bioportal.mi": {"bioportal": {"name": "Molecular Interactions", "prefix": "MI", "uri_format": "http://purl.obolibrary.org/obo/MI_$1", "subjects": []}}, "bioportal.cteno": {"bioportal": {"name": "Ctenophore Ontology", "prefix": "CTENO", "uri_format": "http://purl.obolibrary.org/obo/CTENO_$1", "subjects": ["Anatomy"]}}, "bioportal.gbm": {"bioportal": {"name": "Glioblastoma", "prefix": "GBM", "uri_format": "http://www.semanticweb.org/ontologies/2010/10/BPO.owl#$1", "subjects": ["Health", "Anatomy", "Human"]}}, "bioportal.ogsf": {"bioportal": {"name": "Ontology for Genetic Susceptibility Factor", "prefix": "OGSF", "uri_format": "http://purl.obolibrary.org/obo/OGSF_$1", "subjects": ["Health", "Genomic and Proteomic", "Human"]}}, "bioportal.oborel": {"bioportal": {"name": "Relations Ontology", "prefix": "OBOREL", "uri_format": "http://purl.obolibrary.org/obo/GO_$1", "subjects": []}}, "bioportal.ro": {"bioportal": {"name": "Radiomics Ontology", "prefix": "RO", "uri_format": "http://www.radiomics.org/RO$1", "subjects": ["Imaging", "Biomedical Resources"]}}, "bioportal.ncro": {"bioportal": {"name": "Non-coding RNA Ontology", "prefix": "NCRO", "uri_format": "http://purl.obolibrary.org/NCRO_$1", "subjects": []}}, "bioportal.moocciado": {"bioportal": {"name": "Molgula occidentalis Anatomy and Development Ontology", "prefix": "MOOCCIADO", "uri_format": "http://purl.obolibrary.org/obo/MoocciA_$1", "subjects": ["Anatomy", "Animal Development"]}}, "bioportal.opl": {"bioportal": {"name": "Ontology for Parasite LifeCycle", "prefix": "OPL", "uri_format": "http://purl.obolibrary.org/obo/OPL_$1", "subjects": ["Phenotype", "Development", "Vocabularies"]}}, "bioportal.bp-metadata": {"bioportal": {"name": "BioPortal Metadata Ontology", "prefix": "BP-METADATA", "uri_format": "http://protege.stanford.edu/ontologies/ChAO/changes.rdfs#$1", "subjects": ["Other"]}}, "bioportal.xref-funder-reg": {"bioportal": {"name": "CrossRef Funder Registry", "prefix": "XREF-FUNDER-REG", "uri_format": "http://dx.doi.org/10.13039$1", "subjects": ["Other"]}}, "bioportal.bifo": {"bioportal": {"name": "Biofilm Ontology", "prefix": "BIFO", "uri_format": "http://www.semanticweb.org/bowenliu/ontologies/2020/4/untitled-ontology-8#$1", "subjects": ["Biomedical Resources", "Biological Process"]}}, "bioportal.edda": {"bioportal": {"name": "EDDA Study Designs Taxonomy", "prefix": "EDDA", "uri_format": "http://ontologies.dbmi.pitt.edu/edda/StudyDesigns.owl#$1", "subjects": ["Experimental Conditions", "Vocabularies"]}}, "bioportal.partumdo": {"bioportal": {"name": "postpartum depression ontology", "prefix": "PARTUMDO", "uri_format": "http://www.semanticweb.org/rbmor/ontologies/2021/1/1/untitled-ontology-133#$1", "subjects": ["Phenotype", "Neurologic Disease", "Neurological Disorder", "Human", "Vocabularies"]}}, "bioportal.vfb_drivers": {"bioportal": {"name": "vfb_drivers", "prefix": "VFB_DRIVERS", "uri_format": "http://flybase.org/reports$1", "subjects": []}}, "bioportal.aura": {"bioportal": {"name": "KB_Bio_101", "prefix": "AURA", "uri_format": "http://www.projecthalo.com/aura#$1", "subjects": []}}, "bioportal.gfo-bio": {"bioportal": {"name": "General Formal Ontology for Biology", "prefix": "GFO-BIO", "uri_format": "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#$1", "subjects": ["Mouse Anatomy", "All Organisms", "Cellular anatomy ", "Molecule", "Gross Anatomy", "Biological Process", "Subcellular", "Phenotype", "Human Developmental Anatomy", "Plant Anatomy", "Anatomy", "Plant", "Human", "Subcellular anatomy", "Chemical", "Cell", "Development", "Protein", "Animal Gross Anatomy", "Gene Product", "Plant Development", "Animal Development"]}}, "bioportal.ngbo": {"bioportal": {"name": "Next Generation Biobanking Ontology", "prefix": "NGBO", "uri_format": "http://purl.obolibrary.org/obo/ngbo.owl/NGBO_$1", "subjects": ["Biomedical Resources"]}}, "bioportal.fhho": {"bioportal": {"name": "Family Health History Ontology", "prefix": "FHHO", "uri_format": "http://www.owl-ontologies.com/Ontology1172270693.owl#$1", "subjects": ["Health"]}}, "bioportal.ontodm-kdd": {"bioportal": {"name": "Ontology of Data Mining Investigations", "prefix": "ONTODM-KDD", "uri_format": "http://kt.ijs.si/panovp/OntoDM-KDD.owl#$1", "subjects": []}}, "bioportal.foaf": {"bioportal": {"name": "Friend of a Friend Vocabulary", "prefix": "FOAF", "uri_format": "http://xmlns.com/foaf/0.1$1", "subjects": ["Other"]}}, "bioportal.oa": {"bioportal": {"name": "Web Annotation Ontology", "prefix": "OA", "uri_format": "http://www.w3.org/ns/oa#$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.ogms": {"bioportal": {"name": "Ontology for General Medical Science", "prefix": "OGMS", "uri_format": "http://purl.obolibrary.org/obo/OGMS_$1", "subjects": []}}, "bioportal.mhmo": {"bioportal": {"name": "Mental Health Management Ontology", "prefix": "MHMO", "uri_format": "http://mental-ontology.com/mental_health_bfo.owl#$1", "subjects": ["Health"]}}, "bioportal.ad-drop": {"bioportal": {"name": "Alzheimer Disease Relevance Ontology by Process", "prefix": "AD-DROP", "uri_format": "http://www.semanticweb.org/AD-DROP#$1", "subjects": ["Biomedical Resources"]}}, "bioportal.tempo": {"bioportal": {"name": "TempO", "prefix": "TEMPO", "uri_format": "http://purl.org/tempo$1", "subjects": ["Other"]}}, "bioportal.bro": {"bioportal": {"name": "Biomedical Resource Ontology", "prefix": "BRO", "uri_format": "http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#$1", "subjects": ["Biomedical Resources"]}}, "bioportal.neo": {"bioportal": {"name": "Neurologic Examination Ontology", "prefix": "NEO", "uri_format": "http://www.semanticweb.org/danielhier/ontologies/2019/3/untitled-ontology-57#$1", "subjects": ["Taxonomic Classification", "Health", "Neurologic Disease", "Neurological Disorder"]}}, "bioportal.apaonto": {"bioportal": {"name": "Psychology Ontology", "prefix": "APAONTO", "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1", "subjects": ["Biomedical Resources"]}}, "bioportal.hp_o": {"bioportal": {"name": "Hypersensitivity pneumonitis ontology", "prefix": "HP_O", "uri_format": "http://www.semanticweb.org/dellvostro3750/ontologies/2018/2/untitled-ontology-10#$1", "subjects": ["Other"]}}, "bioportal.iso19110": {"bioportal": {"name": "ISO 19110 Methodology for Feature Cataloguing", "prefix": "ISO19110", "uri_format": "http://def.isotc211.org/iso19110/2005/MethodologyForFeatureCataloguing#$1", "subjects": ["Other"]}}, "bioportal.cro": {"bioportal": {"name": "Contributor Role Ontology", "prefix": "CRO", "uri_format": "http://purl.obolibrary.org/obo/CRO_$1", "subjects": ["Other"]}}, "bioportal.socpres": {"bioportal": {"name": "Social Prescribing Ontology", "prefix": "SOCPRES", "uri_format": "http://www.semanticweb.org/social-prescribing#$1", "subjects": ["Other"]}}, "bioportal.evi": {"bioportal": {"name": "Evidence Graph Ontology", "prefix": "EVI", "uri_format": "https://w3id.org/EVI#$1", "subjects": ["Experimental Conditions", "Biomedical Resources", "Biological Process", "Other"]}}, "bioportal.trans": {"bioportal": {"name": "Nurse Transitional", "prefix": "TRANS", "uri_format": "http://www.cablesat.com.au/research/transitional.owl#$1", "subjects": ["Health"]}}, "bioportal.m4m19-subs": {"bioportal": {"name": "M4M19 Subjects", "prefix": "M4M19-SUBS", "uri_format": "http://purl.org/m4m19/subjects$1", "subjects": []}}, "bioportal.pto": {"bioportal": {"name": "Plant Trait Ontology", "prefix": "PTO", "uri_format": "http://purl.obolibrary.org/obo/TO_$1", "subjects": ["Phenotype", "Plant"]}}, "bioportal.mop": {"bioportal": {"name": "Molecular Process Ontology", "prefix": "MOP", "uri_format": "http://purl.obolibrary.org/obo/MOP_$1", "subjects": []}}, "bioportal.m4m-21-variables": {"bioportal": {"name": "M4M.21 FAIRWare Variables", "prefix": "M4M-21-VARIABLES", "uri_format": "http://purl.org/m4m21/variables$1", "subjects": []}}, "bioportal.dreamdnpto": {"bioportal": {"name": "Dementia-Related Emotional And Mood Disturbance Non-Pharmacological Treatment Ontology", "prefix": "DREAMDNPTO", "uri_format": "http://www.semanticweb.org/zhenyuzhang/ontologies/2021/DREAMDNPTO#$1", "subjects": ["Taxonomic Classification", "Health", "Vocabularies"]}}, "bioportal.preo": {"bioportal": {"name": "Presence Ontology", "prefix": "PREO", "uri_format": "http://presence-ontology.org/ontology$1", "subjects": ["Health", "Biomedical Resources", "Human"]}}, "bioportal.be": {"bioportal": {"name": "Bioentities", "prefix": "BE", "uri_format": "http://purl.obolibrary.org/obo/BE_$1", "subjects": []}}, "bioportal.medo": {"bioportal": {"name": "Mouse Experimental Design Ontology", "prefix": "MEDO", "uri_format": "http://www.ebi.ac.uk/efo/medo/MEDO_$1", "subjects": []}}, "bioportal.oarcs": {"bioportal": {"name": "Ontology of Arthropod Circulatory Systems", "prefix": "OARCS", "uri_format": "http://purl.obolibrary.org/obo/OARCS_$1", "subjects": ["Anatomy"]}}, "bioportal.bipom": {"bioportal": {"name": "Biological interlocked Process Ontology for metabolism", "prefix": "BIPOM", "uri_format": "http://purl.obolibrary.org/obo/BiPOm#$1", "subjects": ["All Organisms"]}}, "bioportal.pino": {"bioportal": {"name": "Pregnancy Information Needs Ontology", "prefix": "PINO", "uri_format": "http://www.semanticweb.org/luyu/ontologies/2021/3/pregnancy_information_needs_ontology#$1", "subjects": ["Health"]}}, "bioportal.timebank": {"bioportal": {"name": "Timebank Ontology", "prefix": "TIMEBANK", "uri_format": "https://w3id.org/timebank#$1", "subjects": ["Other", "Human"]}}, "bioportal.pe-o": {"bioportal": {"name": "Pre-eclampsia Ontology", "prefix": "PE-O", "uri_format": "http://www.pepathway.org/peo/1.2#$1", "subjects": ["Health", "Human"]}}, "bioportal.cogat": {"bioportal": {"name": "Cognitive Atlas Ontology", "prefix": "COGAT", "uri_format": "file:/srv/ncbo/repository/COGAT/8/cogat.owl#$1", "subjects": ["Phenotype", "Human", "Vocabularies"]}}, "bioportal.hl7": {"bioportal": {"name": "Health Level Seven Reference Implementation Model, Version 3", "prefix": "HL7", "uri_format": "http://purl.bioontology.org/ontology/HL7$1", "subjects": ["Health"]}}, "bioportal.doremus-keys": {"bioportal": {"name": "Doremus List of Keys", "prefix": "DOREMUS-KEYS", "uri_format": "http://data.doremus.org/vocabulary/key$1", "subjects": []}}, "bioportal.envs_variables": {"bioportal": {"name": "ENVS variables", "prefix": "ENVS_VARIABLES", "uri_format": "http://purl.org/m4m-dk-2/variables$1", "subjects": []}}, "bioportal.cogpo": {"bioportal": {"name": "Cognitive Paradigm Ontology", "prefix": "COGPO", "uri_format": "http://www.cogpo.org/ontologies/CogPOver1.owl#$1", "subjects": ["Imaging", "Experimental Conditions", "Human"]}}, "bioportal.testex": {"bioportal": {"name": "test1", "prefix": "TESTEX", "uri_format": "https://bioportal.databiology.com/test1.owl#$1", "subjects": ["Human"]}}, "bioportal.faldo": {"bioportal": {"name": "Feature Annotation Location Description Ontology ", "prefix": "FALDO", "uri_format": "http://biohackathon.org/resource/faldo#$1", "subjects": ["Other", "Protein", "Vocabularies"]}}, "bioportal.canont": {"bioportal": {"name": "Upper-Level Cancer Ontology ", "prefix": "CANONT", "uri_format": "http://purl.obolibrary.org/obo/ID_$1", "subjects": []}}, "bioportal.ccont": {"bioportal": {"name": "Cell Culture Ontology", "prefix": "CCONT", "uri_format": "http://www.ebi.ac.uk/efo/EFO_$1", "subjects": ["Experimental Conditions", "Biological Process", "Vocabularies"]}}, "bioportal.ontokbcf": {"bioportal": {"name": "Ontological Knowledge Base Model for Cystic Fibrosis", "prefix": "ONTOKBCF", "uri_format": "http://www.owl-ontologies.com/assert.owl#$1", "subjects": ["Health", "Biomedical Resources", "Phenotype", "Gene Product"]}}, "bioportal.pdumdv": {"bioportal": {"name": "Platynereis Developmental Stages", "prefix": "PDUMDV", "uri_format": "http://purl.obolibrary.org/obo/PdumDv_$1", "subjects": []}}, "bioportal.iso19115con": {"bioportal": {"name": "ISO 19115 Constraints Information", "prefix": "ISO19115CON", "uri_format": "http://def.isotc211.org/iso19115/-1/2014/ConstraintInformation#$1", "subjects": ["Other"]}}, "bioportal.iobc": {"bioportal": {"name": "Interlinking Ontology for Biological Concepts", "prefix": "IOBC", "uri_format": "http://purl.jp/bio/4/id$1", "subjects": []}}, "bioportal.epilont": {"bioportal": {"name": "Epilepsy Ontology", "prefix": "EPILONT", "uri_format": "http://www.semanticweb.org/ontologies/2009/3/EpilepsyOntology.owl#$1", "subjects": ["Health", "Biomedical Resources", "Neurologic Disease", "Neurological Disorder", "Human", "Development", "Vocabularies"]}}, "bioportal.efo": {"bioportal": {"name": "Experimental Factor Ontology", "prefix": "EFO", "uri_format": "http://www.ebi.ac.uk/efo/EFO_$1", "subjects": ["Experimental Conditions", "Biological Process"]}}, "bioportal.tm-other-factors": {"bioportal": {"name": "Traditional Medicine Other Factors Value Set", "prefix": "TM-OTHER-FACTORS", "uri_format": "http://who.int/ictm/otherFactors#$1", "subjects": ["Human"]}}, "bioportal.rb": {"bioportal": {"name": "RegenBase ontology", "prefix": "RB", "uri_format": "http://regenbase.org/ontology#$1", "subjects": ["Health"]}}, "bioportal.episem": {"bioportal": {"name": "Epilepsy Semiology", "prefix": "EPISEM", "uri_format": "http://www.semanticweb.org/danielhier/ontologies/2019/3/untitled-ontology-57$1", "subjects": ["Neurological Disorder"]}}, "bioportal.apadisorders": {"bioportal": {"name": "Disorders cluster", "prefix": "APADISORDERS", "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1", "subjects": ["Vocabularies"]}}, "bioportal.koro": {"bioportal": {"name": "Knowledge Object Reference Ontology", "prefix": "KORO", "uri_format": "http://www.knowledgegrid.org/koro#$1", "subjects": ["Biomedical Resources"]}}, "bioportal.vdot": {"bioportal": {"name": "Viral Disease Ontology Trunk", "prefix": "VDOT", "uri_format": "http://www.ifomis.org/vdot/vdot_core.owl#$1", "subjects": ["Immunology", "Health", "Protein"]}}, "bioportal.gene-cds": {"bioportal": {"name": "Genomic Clinical Decision Support Ontology", "prefix": "GENE-CDS", "uri_format": "http://www.genomic-cds.org/ont/genomic-cds.owl#$1", "subjects": ["Health", "Genomic and Proteomic", "Human"]}}, "bioportal.pso": {"bioportal": {"name": "PatientSafetyOntology", "prefix": "PSO", "uri_format": "http://www.semanticweb.org/schra/ontologies/2017/4/PRIME_NewOntology#$1", "subjects": ["Health", "Vocabularies"]}}, "bioportal.lepao": {"bioportal": {"name": "Lepidoptera Anatomy Ontology", "prefix": "LEPAO", "uri_format": "http://purl.obolibrary.org/obo/LEPAO_$1", "subjects": ["Other"]}}, "bioportal.sibo": {"bioportal": {"name": "Social Inset Behavior Ontology", "prefix": "SIBO", "uri_format": "http://purl.obolibrary.org/obo/SIBO_$1", "subjects": []}}, "bioportal.inbancido": {"bioportal": {"name": "Assessment of Indian Economy During Covid-19 ", "prefix": "INBANCIDO", "uri_format": "http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#$1", "subjects": []}}, "bioportal.icf": {"bioportal": {"name": "International Classification of Functioning, Disability and Health", "prefix": "ICF", "uri_format": "http://who.int/icf#$1", "subjects": ["Health", "Human", "Vocabularies"]}}, "bioportal.lhn": {"bioportal": {"name": "Loggerhead Nesting Ontology", "prefix": "LHN", "uri_format": "http://purl.obolibrary.org/obo/B8467_$1", "subjects": []}}, "bioportal.peo": {"bioportal": {"name": "Parasite Experiment Ontology", "prefix": "PEO", "uri_format": "http://knoesis.wright.edu/ParasiteExperiment.owl#$1", "subjects": []}}, "bioportal.vodana-general": {"bioportal": {"name": "VODANATERMS", "prefix": "VODANA-GENERAL", "uri_format": "http://www.vodan-totafrica.info/vocs/vgt$1", "subjects": ["Vocabularies"]}}, "bioportal.fmpm": {"bioportal": {"name": "Food Matrix for Predictive Microbiology", "prefix": "FMPM", "uri_format": "urn:absolute:FMPM#$1", "subjects": ["Biomedical Resources", "Vocabularies"]}}, "bioportal.mhcro": {"bioportal": {"name": "MHC Restriction Ontology", "prefix": "MHCRO", "uri_format": "http://purl.obolibrary.org/obo/MRO_$1", "subjects": []}}, "bioportal.opde": {"bioportal": {"name": "OPD-Ethiopia", "prefix": "OPDE", "uri_format": "http://www.mudhc.edu.et/template-vocabulary#$1", "subjects": []}}, "bioportal.hmislab0115": {"bioportal": {"name": "HMIS LAB 011 5", "prefix": "HMISLAB0115", "uri_format": "http://www.fairdatacollective.com/template-vocabulary$1", "subjects": []}}, "bioportal.pdro": {"bioportal": {"name": "The Prescription of Drugs Ontology", "prefix": "PDRO", "uri_format": "http://purl.obolibrary.org/obo/OBI_$1", "subjects": ["Health"]}}, "bioportal.vodanacovid": {"bioportal": {"name": "VODANA-COVIDTERMS", "prefix": "VODANACOVID", "uri_format": "https://github.com/mariambasajja$1", "subjects": ["Health"]}}, "bioportal.vario": {"bioportal": {"name": "Variation Ontology", "prefix": "VARIO", "uri_format": "http://purl.obolibrary.org/obo/VariO_$1", "subjects": []}}, "bioportal.ibio": {"bioportal": {"name": "IndianBiodiversity", "prefix": "IBIO", "uri_format": "http://www.semanticweb.org/mca/ontologies/2018/8/untitled-ontology-47#$1", "subjects": []}}, "bioportal.ssn": {"bioportal": {"name": "Semantic Sensor Network Ontology", "prefix": "SSN", "uri_format": "http://www.w3.org/ns/ssn$1", "subjects": ["Other"]}}, "bioportal.ogmd": {"bioportal": {"name": "Ontology of Glucose Metabolism Disorder", "prefix": "OGMD", "uri_format": "http://purl.obolibrary.org/obo/OGMD_$1", "subjects": ["Human"]}}, "bioportal.e-ppo": {"bioportal": {"name": "Enhanced Personal Profile Ontology", "prefix": "E-PPO", "uri_format": "http://www.semanticweb.org/patienceusip/ontologies/2020/7/untitled-ontology-7#$1", "subjects": ["Human"]}}, "bioportal.ocre": {"bioportal": {"name": "Ontology of Clinical Research", "prefix": "OCRE", "uri_format": "http://purl.org/net/OCRe/OCRe.owl#$1", "subjects": ["Biomedical Resources"]}}, "bioportal.dfo": {"bioportal": {"name": "Databank Family Ontology", "prefix": "DFO", "uri_format": "https://w3id.org/dfo/Death_$1", "subjects": ["Biomedical Resources"]}}, "bioportal.oboe": {"bioportal": {"name": "The Extensible Observation Ontology", "prefix": "OBOE", "uri_format": "http://ecoinformatics.org/oboe/oboe.1.2/oboe-standards.owl#$1", "subjects": []}}, "bioportal.iso-annotations": {"bioportal": {"name": "ISO-15926-2_2003_annotations", "prefix": "ISO-ANNOTATIONS", "uri_format": "http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#$1", "subjects": ["Other"]}}, "bioportal.fast-formgenre": {"bioportal": {"name": "FAST (Faceted Application of Subject Terminology) FormGenre facet", "prefix": "FAST-FORMGENRE", "uri_format": "http://id.loc.gov/authorities/subjects$1", "subjects": []}}, "bioportal.tm-signs-and-sympts": {"bioportal": {"name": "Traditional Medicine Signs and Symptoms Value Set", "prefix": "TM-SIGNS-AND-SYMPTS", "uri_format": "http://who.int/ictm/signsAndSymptoms#$1", "subjects": []}}, "bioportal.cmdo": {"bioportal": {"name": "Clinical MetaData Ontology", "prefix": "CMDO", "uri_format": "http://purl.bioontology.org/ontology/CMDO$1", "subjects": []}}, "bioportal.phage": {"bioportal": {"name": "Phylogenetics Ontology", "prefix": "PHAGE", "uri_format": "http://purl.obolibrary.org/obo/GO_$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.aspect": {"bioportal": {"name": "ASPECT: wind energy vAriableS, ParametErs and ConsTants", "prefix": "ASPECT", "uri_format": "http://purl.org/aspect$1", "subjects": ["Vocabularies"]}}, "bioportal.legalapatest2": {"bioportal": {"name": "apalegal", "prefix": "LEGALAPATEST2", "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1", "subjects": []}}, "bioportal.envthes": {"bioportal": {"name": "Thesaurus for long-term ecological research, monitoring, experiments", "prefix": "ENVTHES", "uri_format": "http://vocabs.lter-europe.net/EnvThes$1", "subjects": ["Other"]}}, "bioportal.fire": {"bioportal": {"name": "Fire Ontology", "prefix": "FIRE", "uri_format": "http://cerrado.linkeddata.es/ecology/fire#$1", "subjects": []}}, "bioportal.phmammado": {"bioportal": {"name": "Phallusia mammillata Anatomy and Development Ontology", "prefix": "PHMAMMADO", "uri_format": "http://purl.obolibrary.org/obo/PhmammA_$1", "subjects": ["Anatomy", "Animal Development"]}}, "bioportal.gml": {"bioportal": {"name": "Ontology for Geography Markup Language (GML3.0)", "prefix": "GML", "uri_format": "http://loki.cae.drexel.edu/~wbs/ontology/2004/09/ogc-gml#$1", "subjects": ["Other"]}}, "bioportal.adher_intcare_en": {"bioportal": {"name": "Adherence and Integrated Care", "prefix": "ADHER_INTCARE_EN", "uri_format": "http://www.semanticweb.org/parracarlos/ontologies/2019/3/untitled-ontology-31#$1", "subjects": ["Taxonomic Classification", "Health", "Biomedical Resources", "Other", "Vocabularies"]}}, "bioportal.glyco": {"bioportal": {"name": "Glycomics Ontology", "prefix": "GLYCO", "uri_format": "http://glycomics.ccrc.uga.edu/ontologies/GlycO#$1", "subjects": ["Molecule", "Biomedical Resources", "Other", "Chemical", "Protein"]}}, "bioportal.schema": {"bioportal": {"name": "Schema.org core and all extension vocabularies", "prefix": "SCHEMA", "uri_format": "http://schema.org$1", "subjects": ["Vocabularies"]}}, "bioportal.rctont": {"bioportal": {"name": "Randomized Controlled Trials Ontology", "prefix": "RCTONT", "uri_format": "http://www.owl-ontologies.com/RCTOntology.owl#$1", "subjects": ["Biomedical Resources"]}}, "bioportal.opb": {"bioportal": {"name": "Ontology of Physics for Biology", "prefix": "OPB", "uri_format": "http://bhi.washington.edu/OPB#$1", "subjects": ["Biomedical Resources", "Biological Process", "Phenotype", "Chemical", "Physicochemical"]}}, "bioportal.pae": {"bioportal": {"name": "Plant Anatomy", "prefix": "PAE", "uri_format": "http://purl.obolibrary.org/obo/PO_$1", "subjects": ["Plant Anatomy", "Plant"]}}, "bioportal.mwla": {"bioportal": {"name": "Medical Web Lifestyle Aggregator", "prefix": "MWLA", "uri_format": "http://carre.kmi.open.ac.uk/ontology/lifestyle.owl#$1", "subjects": ["Vocabularies"]}}, "bioportal.iso639-2": {"bioportal": {"name": "ISO 639-2: Codes for the Representation of Names of Languages", "prefix": "ISO639-2", "uri_format": "http://www.fao.org/aims/aos/languagecode.owl#$1", "subjects": ["Other"]}}, "bioportal.premedonto": {"bioportal": {"name": "Precision Medicine Ontology", "prefix": "PREMEDONTO", "uri_format": "http://purl.obolibrary.org/obo/NCIT_$1", "subjects": ["Health"]}}, "bioportal.fenics": {"bioportal": {"name": "Functional Epilepsy Nomenclature for Ion Channels", "prefix": "FENICS", "uri_format": "http://webprotege.stanford.edu$1", "subjects": ["Biological Process", "Neurological Disorder", "Protein", "Gene Product"]}}, "bioportal.fcc1": {"bioportal": {"name": "Fernald Community Cohort N", "prefix": "FCC1", "uri_format": "http://www.semanticweb.org/diwaleva/ontologies/2019/9/fcc-ontology#$1", "subjects": ["Health"]}}, "bioportal.apastatistical": {"bioportal": {"name": "APA Statistical Cluster", "prefix": "APASTATISTICAL", "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1", "subjects": ["Vocabularies"]}}, "bioportal.matrrock": {"bioportal": {"name": "Material Rock", "prefix": "MATRROCK", "uri_format": "http://sweet.jpl.nasa.gov/2.3/matrRock.owl#$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.ddiem": {"bioportal": {"name": "Drug Database for Inborn Errors of Metabolism (DDIEM) Ontology", "prefix": "DDIEM", "uri_format": "http://purl.obolibrary.org/obo/DDIEM_$1", "subjects": ["Biomedical Resources"]}}, "bioportal.agromop": {"bioportal": {"name": "Control de Cacao", "prefix": "AGROMOP", "uri_format": "http://www.semanticweb.org/vera/ontologies/2020/1/untitled-ontology-5#$1", "subjects": ["Plant", "Plant Development"]}}, "bioportal.qudt2": {"bioportal": {"name": "Quantities, Units, Dimensions and Types (QUDT) Schema - Version 2.0", "prefix": "QUDT2", "uri_format": "http://qudt.org/schema/qudt$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.spd": {"bioportal": {"name": "Spider Anatomy Ontology", "prefix": "SPD", "uri_format": "http://purl.obolibrary.org/obo/SPD_$1", "subjects": ["Gross Anatomy", "Anatomy", "Animal Gross Anatomy"]}}, "bioportal.canco": {"bioportal": {"name": "Cancer Chemoprevention Ontology", "prefix": "CANCO", "uri_format": "http://chem.deri.ie/granatum#$1", "subjects": ["Experimental Conditions", "Molecule", "Health", "Biomedical Resources"]}}, "bioportal.omrse": {"bioportal": {"name": "Ontology of Medically Related Social Entities", "prefix": "OMRSE", "uri_format": "http://purl.obolibrary.org/obo/OMRSE_$1", "subjects": []}}, "bioportal.oba": {"bioportal": {"name": "Ontology of Biological Attributes", "prefix": "OBA", "uri_format": "http://purl.obolibrary.org/obo/OBA_$1", "subjects": ["Phenotype"]}}, "bioportal.trak": {"bioportal": {"name": "Taxonomy for Rehabilitation of Knee Conditions", "prefix": "TRAK", "uri_format": "http://purl.obolibrary.org/obo/TRAK_$1", "subjects": ["Biomedical Resources"]}}, "bioportal.ddi": {"bioportal": {"name": "Ontology for Drug Discovery Investigations", "prefix": "DDI", "uri_format": "http://purl.obolibrary.org/obo/IAO_$1", "subjects": []}}, "bioportal.frmo": {"bioportal": {"name": "Fall Risk Management Ontology ", "prefix": "FRMO", "uri_format": "http://www.semanticweb.org/ftuha/ontologies/2021/5/FRMO-01untitled-ontology-175$1", "subjects": ["Other"]}}, "bioportal.cob": {"bioportal": {"name": "Core Ontology for Biology and Biomedicine", "prefix": "COB", "uri_format": "http://purl.obolibrary.org/obo/COB_$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.iso19115mi": {"bioportal": {"name": "ISO 19115 Metadata Information", "prefix": "ISO19115MI", "uri_format": "http://def.isotc211.org/iso19115/-1/2014/CitationAndResponsiblePartyInformation#$1", "subjects": []}}, "bioportal.gmm": {"bioportal": {"name": "GoMapMan", "prefix": "GMM", "uri_format": "http://purl.obolibrary.org/obo/GMM_$1", "subjects": ["Biological Process", "Arabidopsis", "Plant"]}}, "bioportal.veo": {"bioportal": {"name": "Visualized Emotion Ontology", "prefix": "VEO", "uri_format": "http://sbmi.uth.tmc.edu/ontology/VEO#$1", "subjects": ["Other"]}}, "bioportal.sitbac": {"bioportal": {"name": "Situation-Based Access Control Ontology", "prefix": "SITBAC", "uri_format": "http://www.semanticweb.org/ontologies/2008/1/Ontology1204037102846.owl#$1", "subjects": ["Other"]}}, "bioportal.rex": {"bioportal": {"name": "Physico-Chemical Process", "prefix": "REX", "uri_format": "http://purl.obolibrary.org/obo/REX_$1", "subjects": ["Physicochemical"]}}, "bioportal.nmr": {"bioportal": {"name": "NMR-Controlled Vocabulary", "prefix": "NMR", "uri_format": "http://nmrML.org/nmrCV#$1", "subjects": ["Molecule", "Biomedical Resources", "Other", "Subcellular", "Chemical", "Protein", "Vocabularies", "Physicochemical"]}}, "bioportal.fall": {"bioportal": {"name": "MyOntoServiceFull_FallDetection", "prefix": "FALL", "uri_format": "http://www.semanticweb.org/abed/ontologies/2015/2/untitled-ontology-346#$1", "subjects": []}}, "bioportal.ontopsychia": {"bioportal": {"name": "OntoPsychia, social module", "prefix": "ONTOPSYCHIA", "uri_format": "http://www.limics.fr/ontologies/ontopsychiasoc#$1", "subjects": ["Human"]}}, "bioportal.test_cbi": {"bioportal": {"name": "test_cbi", "prefix": "TEST_CBI", "uri_format": "http://webprotege.stanford.edu$1", "subjects": ["Vocabularies"]}}, "bioportal.top-menelas": {"bioportal": {"name": "Menelas Project Top-Level Ontology", "prefix": "TOP-MENELAS", "uri_format": "http://www.limics.fr/ontologies/menelastop#$1", "subjects": []}}, "bioportal.fobi": {"bioportal": {"name": "FOBI (Food-Biomarker Ontology)", "prefix": "FOBI", "uri_format": "http://purl.obolibrary.org/obo/FOBI_$1", "subjects": ["Other"]}}, "bioportal.cdao": {"bioportal": {"name": "Comparative Data Analysis Ontology", "prefix": "CDAO", "uri_format": "http://purl.obolibrary.org/obo/CDAO_$1", "subjects": ["Experimental Conditions"]}}, "bioportal.bhn": {"bioportal": {"name": "Biologie Hors Nomenclature", "prefix": "BHN", "uri_format": "http://chu-rouen.fr/cismef/BHN#$1", "subjects": ["Health", "Vocabularies"]}}, "bioportal.cvao": {"bioportal": {"name": "STO", "prefix": "CVAO", "uri_format": "http://www.semanticweb.org/ontologies/STO.owl#$1", "subjects": []}}, "bioportal.planp": {"bioportal": {"name": "Planarian Phenotype Ontology", "prefix": "PLANP", "uri_format": "http://purl.obolibrary.org/obo/PLANP_$1", "subjects": ["Phenotype"]}}, "bioportal.iso19115pr": {"bioportal": {"name": "ISO 19115 Codelists", "prefix": "ISO19115PR", "uri_format": "http://www.geosciml.org/vocabularies/iso-19115-codelists.owl#$1", "subjects": ["Other"]}}, "bioportal.tgma": {"bioportal": {"name": "Mosquito Gross Anatomy Ontology", "prefix": "TGMA", "uri_format": "http://purl.obolibrary.org/obo/TGMA_$1", "subjects": ["Gross Anatomy", "Anatomy", "Animal Gross Anatomy"]}}, "bioportal.phfumiado": {"bioportal": {"name": "Phallusia fumigata Anatomy and Development Ontology", "prefix": "PHFUMIADO", "uri_format": "http://purl.obolibrary.org/obo/PhfumiA_$1", "subjects": ["Anatomy", "Animal Development"]}}, "bioportal.cio": {"bioportal": {"name": "Confidence Information Ontology", "prefix": "CIO", "uri_format": "http://purl.obolibrary.org/obo/CIO_$1", "subjects": []}}, "bioportal.roo": {"bioportal": {"name": "Radiation Oncology Ontology", "prefix": "ROO", "uri_format": "http://www.cancerdata.org/roo$1", "subjects": ["Imaging", "Health", "Human", "Development", "Vocabularies"]}}, "bioportal.nlmvs": {"bioportal": {"name": "NIH NLM Value Sets", "prefix": "NLMVS", "uri_format": "http://purl.bioontology.org/ontology/SNOMEDCT$1", "subjects": []}}, "bioportal.ixno": {"bioportal": {"name": "Interaction Ontology", "prefix": "IXNO", "uri_format": "http://purl.obolibrary.org/obo/GO_$1", "subjects": ["Other"]}}, "bioportal.ontotoxnuc": {"bioportal": {"name": "Ontology of Nuclear Toxicity", "prefix": "ONTOTOXNUC", "uri_format": "http://www.cea.fr/ontotoxnuc#$1", "subjects": ["Taxonomic Classification", "Chemical"]}}, "bioportal.vodana-mpa": {"bioportal": {"name": "VODANA-MIGRANTS-PRESS ARTICLES", "prefix": "VODANA-MPA", "uri_format": "https://www.vodan-totafrica.info/vocs/mnv$1", "subjects": ["Health", "Vocabularies"]}}, "bioportal.ontoparon": {"bioportal": {"name": "Ontology of Amyotrophic Lateral Sclerosis, all modules", "prefix": "ONTOPARON", "uri_format": "http://www.limics.fr/ontologies/ontoparonsoc#$1", "subjects": ["Neurologic Disease"]}}, "bioportal.rbo": {"bioportal": {"name": "Radiation Biology Ontology", "prefix": "RBO", "uri_format": "http://purl.obolibrary.org/obo/RBO_$1", "subjects": ["Biological Process"]}}, "bioportal.lungmap_h_cell": {"bioportal": {"name": "Cell Ontology for Human Lung Maturation", "prefix": "LUNGMAP_H_CELL", "uri_format": "http://purl.obolibrary.org/obo/LMHA_$1", "subjects": ["Cell"]}}, "bioportal.flu": {"bioportal": {"name": "Influenza Ontology", "prefix": "FLU", "uri_format": "http://purl.obolibrary.org/obo/FLU_$1", "subjects": []}}, "bioportal.meo": {"bioportal": {"name": "Metagenome and Microbes Environmental Ontology", "prefix": "MEO", "uri_format": "http://purl.jp/bio/11/meo/MEO_$1", "subjects": ["Other"]}}, "bioportal.icd9cm": {"bioportal": {"name": "International Classification of Diseases, Version 9 - Clinical Modification", "prefix": "ICD9CM", "uri_format": "http://purl.bioontology.org/ontology/ICD9CM$1", "subjects": []}}, "bioportal.cu-vo": {"bioportal": {"name": "Venom Ontology", "prefix": "CU-VO", "uri_format": "http://www.semanticweb.org/jdr2160/ontologies/2015/5/venom_ontology#$1", "subjects": ["Molecule", "Genomic and Proteomic", "Chemical", "Protein"]}}, "bioportal.datacite": {"bioportal": {"name": "SPAR DataCite Ontology", "prefix": "DATACITE", "uri_format": "http://purl.org/spar/datacite$1", "subjects": ["Other"]}}, "bioportal.haroreado": {"bioportal": {"name": "Halocynthia roretzi Anatomy and Development Ontology", "prefix": "HAROREADO", "uri_format": "http://purl.obolibrary.org/obo/HaroreA_$1", "subjects": ["Anatomy", "Animal Development"]}}, "bioportal.icnp": {"bioportal": {"name": "International Classification for Nursing Practice", "prefix": "ICNP", "uri_format": "http://www.icn.ch/icnp#$1", "subjects": ["Taxonomic Classification"]}}, "bioportal.pmo-speed": {"bioportal": {"name": "PMO Playing Speed Vocabulary", "prefix": "PMO-SPEED", "uri_format": "http://performedmusicontology.org/ontologies/vocabularies/playing_/speed$1", "subjects": []}}, "bioportal.pr": {"bioportal": {"name": "Protein Ontology", "prefix": "PR", "uri_format": "http://purl.obolibrary.org/obo/PR_$1", "subjects": ["All Organisms", "Protein"]}}, "bioportal.nxdx": {"bioportal": {"name": "Test NXDX", "prefix": "NXDX", "uri_format": "http://www.semanticweb.org/ontologies/Prostate_cancer#$1", "subjects": ["Neurologic Disease"]}}, "bioportal.obi_iee": {"bioportal": {"name": "The Ontology for Biomedical Investigation based Inner Ear Electrophysiology ", "prefix": "OBI_IEE", "uri_format": "http://purl.obolibrary.org/obo/OBI_$1", "subjects": []}}, "bioportal.cisaviado": {"bioportal": {"name": "Ciona savignyi Anatomy and Development Ontology ", "prefix": "CISAVIADO", "uri_format": "http://purl.obolibrary.org/obo/CisaviA_$1", "subjects": ["Anatomy", "Animal Development"]}}, "bioportal.iaml-mop": {"bioportal": {"name": "IAML Medium of Performance Vocabulary", "prefix": "IAML-MOP", "uri_format": "http://data.doremus.org/vocabulary/iaml/mop$1", "subjects": ["Other"]}}, "bioportal.biomodels": {"bioportal": {"name": "BioModels Ontology", "prefix": "BIOMODELS", "uri_format": "http://purl.org/obo/owlapi/fma#$1", "subjects": ["All Organisms", "Biomedical Resources", "Biological Process"]}}, "bioportal.bdo": {"bioportal": {"name": "Bone Dysplasia Ontology", "prefix": "BDO", "uri_format": "http://purl.org/obo/owl/HP#$1", "subjects": ["Health", "Human"]}}, "bioportal.bao-gpcr": {"bioportal": {"name": "G Protein-Coupled Receptor BioAssays Ontology", "prefix": "BAO-GPCR", "uri_format": "http://www.bioassayontology.org/bao#$1", "subjects": ["Molecule", "Biological Process", "Other", "Subcellular", "Chemical", "Protein", "Vocabularies", "Physicochemical"]}}, "bioportal.nihss": {"bioportal": {"name": "National Institutes of Health Stroke Scale Ontology", "prefix": "NIHSS", "uri_format": "https://mre.zcu.cz/ontology/nihss.owl#$1", "subjects": ["Neurologic Disease"]}}, "bioportal.longcovid": {"bioportal": {"name": "Long Covid Phenotype Ontology", "prefix": "LONGCOVID", "uri_format": "http://www.semanticweb.org/orchid/ontologies/2021/Long-Covid-Phenotype-Ontology#$1", "subjects": ["Health", "Phenotype"]}}, "bioportal.ho": {"bioportal": {"name": "Histological Ontology", "prefix": "HO", "uri_format": "http://www.univalle.edu.co/ontologies/organ#$1", "subjects": ["Biomedical Resources"]}}, "bioportal.obiws": {"bioportal": {"name": "Bioinformatics Web Service Ontology", "prefix": "OBIWS", "uri_format": "http://purl.obolibrary.org/obo/OBIws_$1", "subjects": ["Other"]}}, "bioportal.ontoparon_social": {"bioportal": {"name": "Ontology of amyotrophic lateral sclerosis, social module", "prefix": "ONTOPARON_SOCIAL", "uri_format": "http://www.limics.fr/ontologies/ontoparonsoc#$1", "subjects": ["Neurological Disorder"]}}, "bioportal.fast-event-skos": {"bioportal": {"name": "FAST (Faceted Application of Subject Terminology) Event Facet", "prefix": "FAST-EVENT-SKOS", "uri_format": "http://data.bnf.fr/ark:/12148$1", "subjects": []}}, "bioportal.time": {"bioportal": {"name": "OWL-Time", "prefix": "TIME", "uri_format": "http://www.w3.org/2006/time#$1", "subjects": ["Other"]}}, "bioportal.ornaseq": {"bioportal": {"name": "Ontology of RNA Sequencing", "prefix": "ORNASEQ", "uri_format": "http://purl.obolibrary.org/obo/ORNASEQ_$1", "subjects": ["Experimental Conditions"]}}, "bioportal.geosparql": {"bioportal": {"name": "GeoSPARQL", "prefix": "GEOSPARQL", "uri_format": "http://www.opengis.net/ont/geosparql#$1", "subjects": ["Other"]}}, "bioportal.mat": {"bioportal": {"name": "Minimal Anatomical Terminology", "prefix": "MAT", "uri_format": "http://purl.obolibrary.org/obo/MAT_$1", "subjects": ["Gross Anatomy", "Anatomy", "Animal Gross Anatomy"]}}, "bioportal.mstde-fre": {"bioportal": {"name": "Minimal Standard Terminology of Digestive Endoscopy, French", "prefix": "MSTDE-FRE", "uri_format": "http://purl.bioontology.org/ontology/MSTDE-FRE$1", "subjects": []}}, "bioportal.tm-const": {"bioportal": {"name": "Traditional Medicine Constitution Value Set", "prefix": "TM-CONST", "uri_format": "http://who.int/ictm/constitution#$1", "subjects": ["Human"]}}, "bioportal.pmr": {"bioportal": {"name": "Physical Medicine and Rehabilitation", "prefix": "PMR", "uri_format": "http://purl.bioontology.org/ontology/PMR.owl#$1", "subjects": ["Health"]}}, "bioportal.sse": {"bioportal": {"name": "Surgical Secondary Events", "prefix": "SSE", "uri_format": "http://www.mskcc.org/ontologies/2013/03/sae.owl#$1", "subjects": ["Health"]}}, "bioportal.chebi": {"bioportal": {"name": "Chemical Entities of Biological Interest Ontology", "prefix": "CHEBI", "uri_format": "http://purl.obolibrary.org/obo/CHEBI_$1", "subjects": ["Chemical"]}}, "bioportal.idg_gl": {"bioportal": {"name": "IDG gene list", "prefix": "IDG_GL", "uri_format": "http://druggablegenome.net$1", "subjects": ["Other"]}}, "bioportal.fovt": {"bioportal": {"name": "FuTRES Ontology of Vertebrate Traits", "prefix": "FOVT", "uri_format": "http://purl.obolibrary.org/obo/FOVT_$1", "subjects": ["Other"]}}, "bioportal.bmt": {"bioportal": {"name": "Biomedical Topics", "prefix": "BMT", "uri_format": "http://edamontology.org/topic_$1", "subjects": []}}, "bioportal.obib": {"bioportal": {"name": "Ontology for Biobanking", "prefix": "OBIB", "uri_format": "http://purl.obolibrary.org/obo/OBIB_$1", "subjects": ["Health"]}}, "bioportal.glycocoo": {"bioportal": {"name": "GlycoConjugate Ontology", "prefix": "GLYCOCOO", "uri_format": "http://purl.jp/bio/12/glyco/glycan#$1", "subjects": ["Other"]}}, "bioportal.iso19115ex": {"bioportal": {"name": "ISO 19115 Extent Information", "prefix": "ISO19115EX", "uri_format": "http://def.isotc211.org/iso19115/-1/2014/ExtentInformation#$1", "subjects": ["Other"]}}, "bioportal.geno": {"bioportal": {"name": "Genotype Ontology", "prefix": "GENO", "uri_format": "http://purl.obolibrary.org/obo/GENO_$1", "subjects": []}}, "bioportal.one": {"bioportal": {"name": "Ontology for Nutritional Epidemiology", "prefix": "ONE", "uri_format": "http://purl.obolibrary.org/obo/OBI_$1", "subjects": ["Health", "Biomedical Resources", "Human"]}}, "bioportal.fao": {"bioportal": {"name": "Fungal Gross Anatomy Ontology", "prefix": "FAO", "uri_format": "http://purl.obolibrary.org/obo/FAO_$1", "subjects": ["Gross Anatomy", "Anatomy", "Microbial Anatomy"]}}, "bioportal.nando": {"bioportal": {"name": "Nanbyo Disease Ontology", "prefix": "NANDO", "uri_format": "http://nanbyodata.jp/ontology/NANDO_$1", "subjects": ["Health", "Biomedical Resources", "Human"]}}, "bioportal.bctt": {"bioportal": {"name": "Behaviour Change Technique Taxonomy", "prefix": "BCTT", "uri_format": "http://purl.bioontology.org/ontology/BCTT#$1", "subjects": []}}, "bioportal.qudt": {"bioportal": {"name": "Quantities, Units, Dimensions, and Types Ontology", "prefix": "QUDT", "uri_format": "http://qudt.org/schema/qudt$1", "subjects": ["Other"]}}, "bioportal.ontodm-core": {"bioportal": {"name": "Ontology of Core Data Mining Entities", "prefix": "ONTODM-CORE", "uri_format": "http://www.ontodm.com/OntoDM-core/OntoDM_$1", "subjects": []}}, "bioportal.nomen": {"bioportal": {"name": "NOMEN - A nomenclatural ontology for biological names", "prefix": "NOMEN", "uri_format": "http://purl.obolibrary.org/obo/NOMEN_$1", "subjects": ["Other"]}}, "bioportal.rnrmu": {"bioportal": {"name": "RNRMU", "prefix": "RNRMU", "uri_format": "http://ontology.rsmu.ru/Subject79/Module4$1", "subjects": ["Development"]}}, "bioportal.ohpi": {"bioportal": {"name": "Ontology of Host-Pathogen Interactions", "prefix": "OHPI", "uri_format": "http://purl.obolibrary.org/obo/OHPI_$1", "subjects": ["Immunology", "Molecule", "Health", "Biological Process", "Cell"]}}, "bioportal.bco": {"bioportal": {"name": "Biological Collections Ontology", "prefix": "BCO", "uri_format": "http://purl.obolibrary.org/obo/bco_$1", "subjects": ["All Organisms"]}}, "bioportal.mmo": {"bioportal": {"name": "Measurement Method Ontology", "prefix": "MMO", "uri_format": "http://purl.obolibrary.org/obo/MMO_$1", "subjects": ["Phenotype"]}}, "bioportal.xlmod": {"bioportal": {"name": "mass spectrometry cross-linking and derivatization reagents", "prefix": "XLMOD", "uri_format": "http://purl.obolibrary.org/obo/XLMOD_$1", "subjects": ["Genomic and Proteomic"]}}, "bioportal.m4m-20-subjects": {"bioportal": {"name": "M4M.20 FAIRWare Subjects", "prefix": "M4M-20-SUBJECTS", "uri_format": "http://purl.org/m4m20/subjects$1", "subjects": []}}, "bioportal.idem": {"bioportal": {"name": "IDEM: wInD Energy Models Taxonomy", "prefix": "IDEM", "uri_format": "http://purl.org/idem$1", "subjects": []}}, "bioportal.tads": {"bioportal": {"name": "Tick Gross Anatomy Ontology", "prefix": "TADS", "uri_format": "http://purl.obolibrary.org/obo/TADS_$1", "subjects": ["Gross Anatomy", "Anatomy", "Animal Gross Anatomy"]}}, "bioportal.dcm": {"bioportal": {"name": "DICOM Controlled Terminology", "prefix": "DCM", "uri_format": "http://dicom.nema.org/resources/ontology/DCM$1", "subjects": ["Imaging"]}}, "bioportal.pathlex": {"bioportal": {"name": "Anatomic Pathology Lexicon", "prefix": "PATHLEX", "uri_format": "http://www.semanticweb.org/david/ontologies/2013/0/pathLex.owl#$1", "subjects": ["Taxonomic Classification", "Health", "Anatomy", "Vocabularies"]}}, "bioportal.xao": {"bioportal": {"name": "Xenopus Anatomy Ontology", "prefix": "XAO", "uri_format": "http://purl.obolibrary.org/obo/XAO_$1", "subjects": ["Anatomy", "Development"]}}, "bioportal.g-prov": {"bioportal": {"name": "Guideline Provenance", "prefix": "G-PROV", "uri_format": "http://www.w3.org/ns/prov#$1", "subjects": []}}, "bioportal.ero": {"bioportal": {"name": "Eagle-I Research Resource Ontology", "prefix": "ERO", "uri_format": "http://purl.obolibrary.org/obo/ERO_$1", "subjects": ["Biomedical Resources"]}}, "bioportal.wb-phenotype": {"bioportal": {"name": "C. elegans Phenotype Vocabulary", "prefix": "WB-PHENOTYPE", "uri_format": "http://purl.obolibrary.org/obo/WBPhenotype_$1", "subjects": ["Phenotype"]}}, "bioportal.pmd": {"bioportal": {"name": "Persian Medicine Diseases Ontology", "prefix": "PMD", "uri_format": "http://www.onto-med.de/ontologies/gfo-persian-medicine-diseases.owl#$1", "subjects": ["Health", "Human"]}}, "bioportal.edam": {"bioportal": {"name": "EDAM - Bioscientific data analysis ontology", "prefix": "EDAM", "uri_format": "http://edamontology.org/data_$1", "subjects": ["All Organisms", "Biomedical Resources", "Genomic and Proteomic", "Other", "Vocabularies"]}}, "bioportal.gexo": {"bioportal": {"name": "Gene Expression Ontology", "prefix": "GEXO", "uri_format": "http://identifiers.org/intact$1", "subjects": ["Biological Process"]}}, "bioportal.tco": {"bioportal": {"name": "Thyroid Cancer Ontology", "prefix": "TCO", "uri_format": "http://www.semanticweb.org/hx-jta/ontologies/thyroid_cancer_ontology#$1", "subjects": ["Health", "Human"]}}, "bioportal.cno": {"bioportal": {"name": "Computational Neuroscience Ontology", "prefix": "CNO", "uri_format": "http://purl.org/incf/ontology/Computational_Neurosciences/cno_alpha.owl#$1", "subjects": ["Vocabularies"]}}, "bioportal.ckdo": {"bioportal": {"name": "Chronic Kidney Disease Ontology", "prefix": "CKDO", "uri_format": "http://clininf.eu/ckdo#$1", "subjects": []}}, "bioportal.aism": {"bioportal": {"name": "Ontology for the Anatomy of the Insect SkeletoMuscular system", "prefix": "AISM", "uri_format": "http://purl.obolibrary.org/obo/AISM_$1", "subjects": ["Anatomy"]}}, "bioportal.insname": {"bioportal": {"name": "VODANAINSNAMES", "prefix": "INSNAME", "uri_format": "https://www.vodan-totafrica.info/vocs/institutions$1", "subjects": ["Other"]}}, "bioportal.asdpto": {"bioportal": {"name": "Autism Spectrum Disorder Phenotype Ontology", "prefix": "ASDPTO", "uri_format": "http://cbmi.med.harvard.edu/asdphenotype#$1", "subjects": ["Phenotype", "Neurological Disorder", "Human"]}}, "bioportal.foodon": {"bioportal": {"name": "The FoodOn Food Ontology", "prefix": "FOODON", "uri_format": "http://purl.obolibrary.org/obo/FOODON_$1", "subjects": ["All Organisms", "Health", "Biomedical Resources", "Plant", "Vocabularies"]}}, "bioportal.typon": {"bioportal": {"name": "Microbial Typing Ontology", "prefix": "TYPON", "uri_format": "http://purl.phyloviz.net/ontology/typon#$1", "subjects": []}}, "bioportal.pcl": {"bioportal": {"name": "Provisional Cell Ontology", "prefix": "PCL", "uri_format": "https://identifiers.org/ncbigene$1", "subjects": ["Cell"]}}, "bioportal.ibd": {"bioportal": {"name": "Indian Biodiversity Ontology", "prefix": "IBD", "uri_format": "http://www.semanticweb.org/mca/ontologies/2018/8/untitled-ontology-47#$1", "subjects": []}}, "bioportal.cheminf": {"bioportal": {"name": "Chemical Information Ontology", "prefix": "CHEMINF", "uri_format": "http://semanticscience.org/resource/CHEMINF_$1", "subjects": ["Chemical"]}}, "bioportal.sos": {"bioportal": {"name": "emerg\u00eancia", "prefix": "SOS", "uri_format": "https://purl.org/samu#$1", "subjects": []}}, "bioportal.pe": {"bioportal": {"name": "Pulmonary Embolism Ontology", "prefix": "PE", "uri_format": "http://bmi.utah.edu/ontologies/peontology$1", "subjects": ["Health", "Biomedical Resources", "Human", "Vocabularies"]}}, "bioportal.sk": {"bioportal": {"name": "Digital Forensic", "prefix": "SK", "uri_format": "http://www.semanticweb.org/sandeepak/digitalforensic#$1", "subjects": []}}, "bioportal.gfo": {"bioportal": {"name": "General Formal Ontology", "prefix": "GFO", "uri_format": "http://www.onto-med.de/ontologies/gfo.owl#$1", "subjects": ["All Organisms", "Upper Level Ontology"]}}, "bioportal.fbbi": {"bioportal": {"name": "Biological Imaging Methods Ontology", "prefix": "FBbi", "uri_format": "http://purl.obolibrary.org/obo/FBbi_$1", "subjects": ["Imaging", "Experimental Conditions"]}}, "bioportal.ohd": {"bioportal": {"name": "The Oral Health and Disease Ontology", "prefix": "OHD", "uri_format": "http://purl.obolibrary.org/obo/OHD_$1", "subjects": ["Health"]}}, "bioportal.rs": {"bioportal": {"name": "Rat Strain Ontology", "prefix": "RS", "uri_format": "http://purl.obolibrary.org/obo/RS_$1", "subjects": []}}, "bioportal.doid": {"bioportal": {"name": "Human Disease Ontology", "prefix": "DOID", "uri_format": "http://purl.obolibrary.org/obo/DOID_$1", "subjects": ["Health", "Biomedical Resources", "Neurologic Disease", "Neurological Disorder", "Human"]}}, "bioportal.om": {"bioportal": {"name": "Ontology of units of Measure", "prefix": "OM", "uri_format": "http://www.ontology-of-units-of-measure.org/resource/om-2$1", "subjects": ["Other", "Plant"]}}, "bioportal.cao": {"bioportal": {"name": "Clusters of Orthologous Groups (COG) Analysis Ontology", "prefix": "CAO", "uri_format": "http://purl.obolibrary.org/obo/CAO_$1", "subjects": ["Gene Product"]}}, "bioportal.ehda": {"bioportal": {"name": "Human Developmental Anatomy Ontology, timed version", "prefix": "EHDA", "uri_format": "http://purl.obolibrary.org/obo/EHDA_$1", "subjects": ["Gross Anatomy", "Human Developmental Anatomy", "Anatomy", "Animal Gross Anatomy"]}}, "bioportal.melo": {"bioportal": {"name": "Melanoma Ontology", "prefix": "MELO", "uri_format": "http://purl.obolibrary.org/obo/FMA_$1", "subjects": ["Health", "Biomedical Resources", "Human"]}}, "bioportal.hcodonont": {"bioportal": {"name": "HGeneCodonOntology", "prefix": "HCODONONT", "uri_format": "http://bioportal/bioontology.org/ontologies/HIVO0004#$1", "subjects": ["Biomedical Resources"]}}, "bioportal.cdno": {"bioportal": {"name": "Compositional Dietary Nutrition Ontology", "prefix": "CDNO", "uri_format": "http://purl.obolibrary.org/obo/CDNO_$1", "subjects": ["Other"]}}, "bioportal.sd3": {"bioportal": {"name": "Simulation Delivery and Documentation Deviations", "prefix": "SD3", "uri_format": "http://www.wiser.pitt.edu/ontologies/SimulationScenarioDeviations.owl#$1", "subjects": ["Other"]}}, "bioportal.chd": {"bioportal": {"name": "Congenital Heart Defects Ontology", "prefix": "CHD", "uri_format": "http://homes.esat.kuleuven.be/~bioiuser/chdwiki/index.php$1", "subjects": ["Human"]}}, "bioportal.fgnhns": {"bioportal": {"name": "FoodGroupNHNS", "prefix": "FGNHNS", "uri_format": "http://purl.obolibrary.org/obo/NIBIOHN_$1", "subjects": []}}, "bioportal.ngsonto": {"bioportal": {"name": "NGS ontology", "prefix": "NGSONTO", "uri_format": "http://purl.obolibrary.org/obo/NGS_$1", "subjects": []}}, "bioportal.mixscv": {"bioportal": {"name": "Minimal Information about any Sequence (MIxS) Controlled Vocabularies", "prefix": "MIXSCV", "uri_format": "http://purl.obolibrary.org/obo/MVC_$1", "subjects": []}}, "bioportal.phipo": {"bioportal": {"name": "Pathogen Host Interaction Phenotype Ontology", "prefix": "PHIPO", "uri_format": "http://purl.obolibrary.org/obo/PHIPO_$1", "subjects": ["Phenotype"]}}, "bioportal.oae": {"bioportal": {"name": "Ontology of Adverse Events", "prefix": "OAE", "uri_format": "http://purl.obolibrary.org/obo/OAE_$1", "subjects": ["Health"]}}, "bioportal.icpc2p": {"bioportal": {"name": "International Classification of Primary Care - 2 PLUS", "prefix": "ICPC2P", "uri_format": "http://purl.bioontology.org/ontology/ICPC2P$1", "subjects": ["Health"]}}, "bioportal.ros": {"bioportal": {"name": "Radiation Oncology Structures Ontology", "prefix": "ROS", "uri_format": "urn:absolute:RadiationOncologyStructuresOntology#$1", "subjects": ["Imaging", "Anatomy", "Human"]}}, "bioportal.edda_pt": {"bioportal": {"name": "EDDA Publication Types Taxonomy", "prefix": "EDDA_PT", "uri_format": "http://ontologies.dbmi.pitt.edu/edda/PublicationType.owl#$1", "subjects": ["Experimental Conditions", "Vocabularies"]}}, "bioportal.dc": {"bioportal": {"name": "Dublin Core", "prefix": "DC", "uri_format": "http://purl.org/dc/terms$1", "subjects": ["Other"]}}, "bioportal.rsa": {"bioportal": {"name": "Reference Sequence Annotation", "prefix": "RSA", "uri_format": "http://rdf.biosemantics.org/ontologies/rsa#$1", "subjects": ["Biomedical Resources", "Genomic and Proteomic"]}}, "bioportal.nio": {"bioportal": {"name": "Neuropsychological Integrative Ontology", "prefix": "NIO", "uri_format": "http://www.semanticweb.org/alba/ontologies/2020/10/NIO#$1", "subjects": ["Neurologic Disease"]}}, "bioportal.cmr-qa": {"bioportal": {"name": "Cardiovascular Magnetic Resonance Quality Assessment Ontology", "prefix": "CMR-QA", "uri_format": "http://www.semanticweb.org/ukbiobank/ocmr_isg/CMR-QA#$1", "subjects": ["Imaging", "Health", "Vocabularies"]}}, "bioportal.dcat-fdc": {"bioportal": {"name": "Data Catalog Vocabulary (DCAT)", "prefix": "DCAT-FDC", "uri_format": "http://www.w3.org/ns/prov#$1", "subjects": []}}, "bioportal.rdl": {"bioportal": {"name": "RDL", "prefix": "RDL", "uri_format": "http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#$1", "subjects": ["Other"]}}, "bioportal.adalab": {"bioportal": {"name": "AdaLab ontology", "prefix": "ADALAB", "uri_format": "http://purl.obolibrary.org/obo/GO_$1", "subjects": ["Biological Process"]}}, "bioportal.ido-covid-19": {"bioportal": {"name": "The COVID-19 Infectious Disease Ontology", "prefix": "IDO-COVID-19", "uri_format": "http://purl.obolibrary.org/obo/IDO_$1", "subjects": ["Other"]}}, "bioportal.apaeducluster": {"bioportal": {"name": "Educational Cluster", "prefix": "APAEDUCLUSTER", "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1", "subjects": ["Vocabularies"]}}, "bioportal.iso19115di": {"bioportal": {"name": "ISO 19115 Distribution Information", "prefix": "ISO19115DI", "uri_format": "http://def.isotc211.org/iso19115/-1/2014/DistributionInformation#$1", "subjects": ["Other"]}}, "bioportal.stmso": {"bioportal": {"name": "symptomatic treatment of multiple sclerosis ontology", "prefix": "STMSO", "uri_format": "http://www.semanticweb.org/lenovo/ontologies/2021/1/STMSO#$1", "subjects": ["All Organisms"]}}, "bioportal.xeo": {"bioportal": {"name": "XEML Environment Ontology", "prefix": "XEO", "uri_format": "http://purl.obolibrary.org/obo/XEO_$1", "subjects": ["Other"]}}, "bioportal.epio": {"bioportal": {"name": "EpilepsyOntology", "prefix": "EPIO", "uri_format": "http://purl.obolibrary.org/obo/DOID_$1", "subjects": ["Neurological Disorder"]}}, "bioportal.nist_gel": {"bioportal": {"name": "NIST Genome Editing Lexicon", "prefix": "NIST_GEL", "uri_format": "http://webprotege.stanford.edu$1", "subjects": ["Molecule", "Genomic and Proteomic", "Gene Product"]}}, "bioportal.tron": {"bioportal": {"name": "Tribolium Ontology", "prefix": "TRON", "uri_format": "http://purl.obolibrary.org/obo/TrOn_$1", "subjects": ["Anatomy", "Development"]}}, "bioportal.patel": {"bioportal": {"name": "Archana Patel", "prefix": "PATEL", "uri_format": "http://www.semanticweb.org/ambrish/ontologies/2020/10/untitled-ontology-24#$1", "subjects": ["Other"]}}, "bioportal.covid19": {"bioportal": {"name": "COVID-19 Surveillance Ontology", "prefix": "COVID19", "uri_format": "http://www.semanticweb.org/clininf/covid19#$1", "subjects": ["Health", "Human"]}}, "bioportal.ftc": {"bioportal": {"name": "Functional Therapeutic Chemical Classification System", "prefix": "FTC", "uri_format": "http://www.ebi.ac.uk/chembl/ftc/FTC_$1", "subjects": ["Chemical"]}}, "bioportal.gro-cpga": {"bioportal": {"name": "Cereal Plant Gross Anatomy Ontology", "prefix": "GRO-CPGA", "uri_format": "http://purl.obolibrary.org/obo/PO_$1", "subjects": []}}, "bioportal.radxtt-mvreasons": {"bioportal": {"name": "RADx Tiger Team Missing Value Reasons", "prefix": "RADXTT-MVREASONS", "uri_format": "https://radx.orgx/vocs/missing-value-reason$1", "subjects": ["Vocabularies"]}}, "bioportal.amino-acid": {"bioportal": {"name": "Amino Acid Ontology", "prefix": "AMINO-ACID", "uri_format": "http://www.co-ode.org/ontologies/amino-acid/2006/05/18/amino-acid.owl#$1", "subjects": ["Other"]}}, "bioportal.vodana-migrants": {"bioportal": {"name": "VODANA MIGRANTS VOCABULARY", "prefix": "VODANA-MIGRANTS", "uri_format": "https://www.vodan-totafrica.info/vocs/vodan-migrant-content$1", "subjects": ["Health", "Vocabularies"]}}, "bioportal.ebp": {"bioportal": {"name": "EmpowerBP", "prefix": "EBP", "uri_format": "http://www.semanticweb.org/tswheeler/ontologies/2016/3/EmpowerBP#$1", "subjects": ["Health", "Human"]}}, "bioportal.spto": {"bioportal": {"name": "Solanaceae Phenotype Ontology", "prefix": "SPTO", "uri_format": "http://purl.obolibrary.org/obo/SP_$1", "subjects": ["Phenotype"]}}, "bioportal.who-art": {"bioportal": {"name": "World Health Organization (WHO) Adverse Reaction Terminology", "prefix": "WHO-ART", "uri_format": "http://purl.bioontology.org/ontology/WHO$1", "subjects": ["Health"]}}, "bioportal.wc": {"bioportal": {"name": "Whole-cell modeling ontology", "prefix": "WC", "uri_format": "http://purl.obolibrary.org/obo/WC_$1", "subjects": ["Molecule", "Other", "Cell"]}}, "bioportal.fast-title": {"bioportal": {"name": "FAST (Faceted Application of Subject Terminology) Title Facet", "prefix": "FAST-TITLE", "uri_format": "http://data.bnf.fr/ark:/12148$1", "subjects": []}}, "bioportal.bho": {"bioportal": {"name": "Bleeding History Phenotype Ontology", "prefix": "BHO", "uri_format": "http://www.semanticweb.org/ontologies/2010/10/BPO.owl#$1", "subjects": ["Phenotype"]}}, "bioportal.mp": {"bioportal": {"name": "Mammalian Phenotype Ontology", "prefix": "MP", "uri_format": "http://purl.obolibrary.org/obo/MP_$1", "subjects": ["Phenotype"]}}, "bioportal.mro": {"bioportal": {"name": "Defen", "prefix": "MRO", "uri_format": "http://www.semanticweb.org/projectlab/ontologies/2016/8/untitled-ontology-23#$1", "subjects": []}}, "bioportal.admin": {"bioportal": {"name": "Nurse Administrator", "prefix": "ADMIN", "uri_format": "http://www.semanticweb.org/philshields/ontologies/2015/4/Administrator.owl#$1", "subjects": ["Health"]}}, "bioportal.cyto": {"bioportal": {"name": "CYTOKINE", "prefix": "CYTO", "uri_format": "http://www.semanticweb.org/demetrios/ontologies/2014/5$1", "subjects": ["Protein"]}}, "bioportal.cidoc-crm": {"bioportal": {"name": "CIDOC Conceptual Reference Model", "prefix": "CIDOC-CRM", "uri_format": "http://www.cidoc-crm.org/cidoc-crm/E78_$1", "subjects": []}}, "bioportal.i2sv": {"bioportal": {"name": "Integration and Implementation Sciences Vocabulary", "prefix": "I2SV", "uri_format": "https://i2insights.org/index/integration-and-implementation-sciences-vocabulary#$1", "subjects": ["Other", "Vocabularies"]}}, "bioportal.bp": {"bioportal": {"name": "BioPAX Ontology of Biological Pathways", "prefix": "BP", "uri_format": "http://www.biopax.org/release/biopax-level3.owl#$1", "subjects": ["Biological Process"]}}, "bioportal.ito": {"bioportal": {"name": "Intelligence Task Ontology", "prefix": "ITO", "uri_format": "https://identifiers.org/ito:ITO_$1", "subjects": ["Other"]}}, "bioportal.mccv": {"bioportal": {"name": "Microbial Culture Collection Vocabulary", "prefix": "MCCV", "uri_format": "http://purl.jp/bio/10/mccv#$1", "subjects": ["Other"]}}, "bioportal.ncit": {"bioportal": {"name": "National Cancer Institute Thesaurus", "prefix": "NCIT", "uri_format": "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#$1", "subjects": []}}, "bioportal.iso19115": {"bioportal": {"name": "ISO 19115", "prefix": "ISO19115", "uri_format": "http://loki.cae.drexel.edu/~wbs/ontology/2004/09/iso-19115#$1", "subjects": ["Other"]}}, "bioportal.ai-rheum": {"bioportal": {"name": "Artificial Intelligence Rheumatology Consultant System Ontology", "prefix": "AI-RHEUM", "uri_format": "http://purl.bioontology.org/ontology/AIR$1", "subjects": ["Health"]}}, "bioportal.sepio": {"bioportal": {"name": "Scientific Evidence and Provenance Information Ontology", "prefix": "SEPIO", "uri_format": "http://purl.obolibrary.org/obo/SEPIO_$1", "subjects": ["Other"]}}, "bioportal.surgical": {"bioportal": {"name": "Nurse Surgical", "prefix": "SURGICAL", "uri_format": "http://www.co-ode.org/ontologies/ont.owl#$1", "subjects": ["Health"]}}, "bioportal.mddb": {"bioportal": {"name": "Master Drug Data Base Clinical Drugs", "prefix": "MDDB", "uri_format": "http://purl.bioontology.org/ontology/MDDB$1", "subjects": ["Health"]}}, "bioportal.lpt": {"bioportal": {"name": "Livestock Product Trait Ontology", "prefix": "LPT", "uri_format": "http://purl.obolibrary.org/obo/LPT_$1", "subjects": []}}, "bioportal.eol": {"bioportal": {"name": "Environment Ontology for Livestock", "prefix": "EOL", "uri_format": "http://purl.org/obo/owlEOL_$1", "subjects": []}}, "bioportal.optimal": {"bioportal": {"name": "OPTImAL: An ontology for patient adherence modeling in physical activity domain", "prefix": "OPTIMAL", "uri_format": "http://webprotege.stanford.edu/project/B1YA5aP4fTfTaBBx7flwQP#$1", "subjects": ["Taxonomic Classification", "Health"]}}, "bioportal.costart": {"bioportal": {"name": "Coding Symbols for a Thesaurus of Adverse Reaction Terms", "prefix": "COSTART", "uri_format": "http://purl.bioontology.org/ontology/CST$1", "subjects": ["Health"]}}, "bioportal.gffo": {"bioportal": {"name": "Genetic Feature Format Ontology", "prefix": "GFFO", "uri_format": "https://raw.githubusercontent.com/mpievolbio-scicomp/GenomeFeatureFormatOntology/main/gffo#$1", "subjects": ["Genomic and Proteomic", "Protein", "Gene Product", "Vocabularies"]}}, "bioportal.mco": {"bioportal": {"name": "Microbial Conditions Ontology", "prefix": "MCO", "uri_format": "http://purl.obolibrary.org/obo/MCO_$1", "subjects": ["Experimental Conditions"]}}, "bioportal.lico": {"bioportal": {"name": "Liver Case Ontology (LiCO)", "prefix": "LICO", "uri_format": "http://vavlab.ee.boun.edu.tr/carera/khaos/lico.owl#$1", "subjects": ["Health"]}}, "bioportal.ao": {"bioportal": {"name": "Asthma Ontology", "prefix": "AO", "uri_format": "http://childhealthservicemodels.eu/asthma#$1", "subjects": ["Health"]}}, "bioportal.spo": {"bioportal": {"name": "Skin Physiology Ontology", "prefix": "SPO", "uri_format": "http://www.semanticweb.org/ontologies/2008/8/SPO_lightweight_merged.owl#$1", "subjects": ["Biological Process"]}}, "bioportal.mnv": {"bioportal": {"name": "VODANA Migrants", "prefix": "MNV", "uri_format": "https://www.vodan-totafrica.info/vocs/vodan-migrant-content$1", "subjects": ["Vocabularies"]}}, "bioportal.ocimido": {"bioportal": {"name": "Ocular Immune-Mediated Inflammatory Diseases Ontology", "prefix": "OCIMIDO", "uri_format": "https://github.com/sap218/ocimido/blob/master/ontology/ocimido.owl#$1", "subjects": ["Phenotype"]}}, "bioportal.peao": {"bioportal": {"name": "Plant Experimental Assay Ontology", "prefix": "PEAO", "uri_format": "http://purl.obolibrary.org/obo/PO_$1", "subjects": []}}, "bioportal.mo": {"bioportal": {"name": "Microarray and Gene Expression Data Ontology", "prefix": "MO", "uri_format": "http://mged.sourceforge.net/ontologies/MGEDOntology.owl#$1", "subjects": ["Experimental Conditions"]}}, "bioportal.nonrcto": {"bioportal": {"name": "Non-Randomized Controlled Trials Ontology", "prefix": "NONRCTO", "uri_format": "http://www.owl-ontologies.com/RCTOntology.owl#$1", "subjects": []}}, "bioportal.covidcrfrapid": {"bioportal": {"name": "WHO COVID-19 Rapid Version CRF semantic data model", "prefix": "COVIDCRFRAPID", "uri_format": "http://purl.obolibrary.org/obo/NCIT_$1", "subjects": ["Health"]}}, "bioportal.ontovip": {"bioportal": {"name": "Medical image simulation", "prefix": "OntoVIP", "uri_format": "http://neurolog.unice.fr/ontoneurolog/v3.0/ontoneurolog-extension-of-dolce.owl#$1", "subjects": ["Imaging"]}}, "bioportal.tml": {"bioportal": {"name": "trasformative machine learning metadata", "prefix": "TML", "uri_format": "http://www.semanticweb.org/larisa/ontologies/2020/5/untitled-ontology-33#$1", "subjects": ["Other", "Vocabularies"]}}, "bioportal.amphx": {"bioportal": {"name": "The Amphioxus Development and Anatomy Ontology", "prefix": "AMPHX", "uri_format": "http://purl.obolibrary.org/obo/AMPHX_$1", "subjects": ["Anatomy"]}}, "bioportal.ado": {"bioportal": {"name": "Alzheimer's disease ontology", "prefix": "ADO", "uri_format": "http://scai.fraunhofer.de/AlzheimerOntology#$1", "subjects": ["Health", "Neurologic Disease", "Neurological Disorder", "Human"]}}, "bioportal.carre": {"bioportal": {"name": "CARRE Risk Factor ontology", "prefix": "CARRE", "uri_format": "file:/Users/allanthird/Work/CARRE/CARREOntology/carre-sensors.xml#$1", "subjects": ["Health"]}}, "bioportal.proj": {"bioportal": {"name": "Project ontology", "prefix": "PROJ", "uri_format": "http://linked.data.gov.au/def/project#$1", "subjects": ["Other"]}}, "bioportal.ontodm-algorithm": {"bioportal": {"name": "OntoDM-core/algorithms", "prefix": "ONTODM-ALGORITHM", "uri_format": "http://www.ontodm.com/OntoDM-core/OntoDM_$1", "subjects": ["Other"]}}, "bioportal.hivcrs": {"bioportal": {"name": "HIVCompoundRels", "prefix": "HIVCRS", "uri_format": "http://www.semanticweb.org/hanfei/ontologies/2017/2/untitled-ontology-287#$1", "subjects": []}}, "bioportal.rexo": {"bioportal": {"name": "Regulation of Gene Expression Ontolology", "prefix": "REXO", "uri_format": "http://identifiers.org/intact$1", "subjects": []}}, "bioportal.bcteo": {"bioportal": {"name": "Bone and Cartilage Tissue Engineering Ontology", "prefix": "BCTEO", "uri_format": "http://purl.obolibrary.org/obo/ID_$1", "subjects": []}}, "bioportal.idoden": {"bioportal": {"name": "Dengue Fever Ontology", "prefix": "IDODEN", "uri_format": "http://purl.bioontology.org/ontology/IDODEN_$1", "subjects": ["Health", "Other", "Human"]}}, "bioportal.hoip": {"bioportal": {"name": "Homeostasis imbalance process ontology", "prefix": "HOIP", "uri_format": "http://purl.bioontology.org/ontology/HOIP/HOIP_$1", "subjects": ["Dysfunction", "Biological Process"]}}, "bioportal.olatdv": {"bioportal": {"name": "Medaka Developmental Stages", "prefix": "OLATDV", "uri_format": "http://purl.obolibrary.org/obo/OlatDv_$1", "subjects": []}}, "bioportal.loinc": {"bioportal": {"name": "Logical Observation Identifier Names and Codes", "prefix": "LOINC", "uri_format": "http://purl.bioontology.org/ontology/LNC$1", "subjects": ["Health"]}}, "bioportal.ogdi": {"bioportal": {"name": "Ontology for Genetic Disease Investigations", "prefix": "OGDI", "uri_format": "http://purl.obolibrary.org/obo/ODGI.owl#$1", "subjects": ["Experimental Conditions"]}}, "bioportal.dpo": {"bioportal": {"name": "Drosophila Phenotype Ontology", "prefix": "DPO", "uri_format": "http://purl.obolibrary.org/obo/GO_$1", "subjects": ["Phenotype"]}}, "bioportal.odae": {"bioportal": {"name": "Ontology of Drug Adverse Events", "prefix": "ODAE", "uri_format": "http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#$1", "subjects": ["Health"]}}, "bioportal.sco": {"bioportal": {"name": "Study Cohort Ontology", "prefix": "SCO", "uri_format": "http://hadatac.org/ont/hasco$1", "subjects": ["Health", "Biomedical Resources"]}}, "bioportal.hgnc": {"bioportal": {"name": "HUGO Gene Nomenclature", "prefix": "HGNC", "uri_format": "http://ncicb.nci.nih.gov/xml/owl/EVS/Hugo.owl#$1", "subjects": ["Health"]}}, "bioportal.pseudo": {"bioportal": {"name": "Pseudogene", "prefix": "pseudo", "uri_format": "http://purl.obolibrary.org/obo/PGO_$1", "subjects": []}}, "bioportal.cedarvs": {"bioportal": {"name": "CEDAR Value Sets", "prefix": "CEDARVS", "uri_format": "http://www.semanticweb.org/jgraybeal/ontologies/2015/7/cedarvaluesets#$1", "subjects": ["Other"]}}, "bioportal.mepo": {"bioportal": {"name": "Mapping of Epilepsy Ontologies", "prefix": "MEPO", "uri_format": "http://www.semanticweb.org/rjyy/ontologies/2015/5/ESSO#$1", "subjects": ["Health", "Biomedical Resources", "Biological Process", "Neurologic Disease", "Neurological Disorder", "Human", "Development", "Protein", "Gene Product", "Vocabularies"]}}, "bioportal.nmobr": {"bioportal": {"name": "NeuroMorpho.Org brain region ontologies", "prefix": "NMOBR", "uri_format": "http://purl.obolibrary.org/obo/NCBITaxon_$1", "subjects": ["Mouse Anatomy", "Cellular anatomy ", "Gross Anatomy", "Phenotype", "Development"]}}, "bioportal.disdriv": {"bioportal": {"name": "Disease Drivers Ontology", "prefix": "DISDRIV", "uri_format": "http://purl.obolibrary.org/obo/DISDRIV_$1", "subjects": ["Other"]}}, "bioportal.mpath": {"bioportal": {"name": "Mouse Pathology Ontology", "prefix": "MPATH", "uri_format": "http://purl.obolibrary.org/obo/MPATH_$1", "subjects": ["Phenotype"]}}, "bioportal.hupson": {"bioportal": {"name": "Human Physiology Simulation Ontology", "prefix": "HUPSON", "uri_format": "http://scai.fraunhofer.de/HuPSON#$1", "subjects": ["Health"]}}, "bioportal.imgt-ontology": {"bioportal": {"name": "Immunogenetics Ontology", "prefix": "IMGT-ONTOLOGY", "uri_format": "http://www.imgt.org/download/IMGT-ONTOLOGY/IMGT-ONTOLOGY-v1-0-3.owl#$1", "subjects": ["Immunology"]}}, "bioportal.zonmw-generic": {"bioportal": {"name": "ZonMw Generic Terms", "prefix": "ZONMW-GENERIC", "uri_format": "http://purl.org/zonmw/generic$1", "subjects": ["Other"]}}, "bioportal.olam": {"bioportal": {"name": "Ontology of Laboratory Animal Medicine", "prefix": "OLAM", "uri_format": "http://purl.obolibrary.org/obo/OLAM_$1", "subjects": ["All Organisms"]}}, "bioportal.ontosim": {"bioportal": {"name": "The Ontology of Information System on Mortality", "prefix": "ONTOSIM", "uri_format": "http://www.semanticweb.org/DIASUS/OntoSIM#$1", "subjects": ["Health", "Human"]}}, "bioportal.omit": {"bioportal": {"name": "Ontology for MicroRNA Target", "prefix": "OMIT", "uri_format": "http://purl.obolibrary.org/obo/OMIT_$1", "subjects": ["Molecule", "Biological Process", "Human", "Cell", "Protein", "Gene Product"]}}, "bioportal.mesh": {"bioportal": {"name": "Medical Subject Headings", "prefix": "MESH", "uri_format": "http://purl.bioontology.org/ontology/MESH$1", "subjects": ["Health"]}}, "bioportal.mltx": {"bioportal": {"name": "Machine Learning Methodology Taxonomy Mapping", "prefix": "MLTX", "uri_format": "http://webprotege.stanford.edu$1", "subjects": ["Vocabularies"]}}, "bioportal.adalab-meta": {"bioportal": {"name": "AdaLab-meta ontology", "prefix": "ADALAB-META", "uri_format": "http://rdf.adalab-project.org/ontology/adalab-meta$1", "subjects": ["Biomedical Resources", "Other", "Vocabularies"]}}, "bioportal.biomo": {"bioportal": {"name": "Biological Observation Matrix Ontology", "prefix": "BIOMO", "uri_format": "http://semanticscience.org/resource/SIO_$1", "subjects": ["Other"]}}, "bioportal.rnao": {"bioportal": {"name": "RNA Ontology", "prefix": "RNAO", "uri_format": "http://purl.obolibrary.org/obo/RNAO_$1", "subjects": ["All Organisms"]}}, "bioportal.vo": {"bioportal": {"name": "Vaccine Ontology", "prefix": "VO", "uri_format": "http://purl.obolibrary.org/obo/VO_$1", "subjects": ["All Organisms", "Immunology", "Health"]}}, "bioportal.hdmponto": {"bioportal": {"name": "HierarchicalDMProcessOnto", "prefix": "HDMPONTO", "uri_format": "http://www.semanticweb.org/mantx/ontologies/Process.owl#$1", "subjects": ["Taxonomic Classification"]}}, "bioportal.sedi": {"bioportal": {"name": "Semantic DICOM Ontology", "prefix": "SEDI", "uri_format": "http://semantic-dicom.org/dcm#$1", "subjects": []}}, "bioportal.miapa": {"bioportal": {"name": "MIAPA Ontology", "prefix": "MIAPA", "uri_format": "http://purl.obolibrary.org/obo/MIAPA_$1", "subjects": []}}, "bioportal.exon": {"bioportal": {"name": "Experimental Ontology", "prefix": "EXON", "uri_format": "urn:absolute:Experiment01#$1", "subjects": []}}, "bioportal.clo": {"bioportal": {"name": "Cell Line Ontology", "prefix": "CLO", "uri_format": "http://purl.obolibrary.org/obo/CLO_$1", "subjects": ["Experimental Conditions", "All Organisms", "Taxonomic Classification", "Biomedical Resources", "Biological Process", "Phenotype", "Anatomy", "Cell", "Vocabularies"]}}, "bioportal.hcdr": {"bioportal": {"name": "Homelessness and Clinical Data Recording", "prefix": "HCDR", "uri_format": "http://www.semanticweb.org/m14067/ontologies/2020/0/untitled-ontology-5#$1", "subjects": ["Other"]}}, "bioportal.opdt": {"bioportal": {"name": "opd_test", "prefix": "OPDT", "uri_format": "http://www.fairdatacollective.com/template-vocabulary$1", "subjects": []}}, "bioportal.mccl": {"bioportal": {"name": "Cell Line Ontology [by Mahadevan]", "prefix": "MCCL", "uri_format": "http://www.semanticweb.org/pallabi.d/ontologies/2014/2/untitled-ontology-11#$1", "subjects": ["Health", "Anatomy", "Cell", "Protein"]}}, "bioportal.ogr": {"bioportal": {"name": "Ontology of Geographical Region", "prefix": "OGR", "uri_format": "http://www.owl-ontologies.com/GeographicalRegion.owl#$1", "subjects": ["Vocabularies"]}}, "bioportal.zfa": {"bioportal": {"name": "Zebrafish Anatomy and Development Ontology", "prefix": "ZFA", "uri_format": "http://purl.obolibrary.org/obo/ZFA_$1", "subjects": ["Fish Anatomy", "Gross Anatomy", "Anatomy", "Animal Gross Anatomy"]}}, "bioportal.hcpcs": {"bioportal": {"name": "Healthcare Common Procedure Coding System", "prefix": "HCPCS", "uri_format": "http://purl.bioontology.org/ontology/HCPCS$1", "subjects": ["Health"]}}, "bioportal.icd10cm": {"bioportal": {"name": "International Classification of Diseases, Version 10 - Clinical Modification", "prefix": "ICD10CM", "uri_format": "http://purl.bioontology.org/ontology/ICD10CM$1", "subjects": ["Health"]}}, "bioportal.oostt": {"bioportal": {"name": "Ontology of Organizational Structures of Trauma centers and Trauma systems", "prefix": "OOSTT", "uri_format": "http://purl.obolibrary.org/obo/OOSTT_$1", "subjects": ["Health"]}}, "bioportal.dideo": {"bioportal": {"name": "Drug Interaction and Evidence Ontology", "prefix": "DIDEO", "uri_format": "http://purl.obolibrary.org/obo/DIDEO_$1", "subjects": ["Health"]}}, "bioportal.fix": {"bioportal": {"name": "Physico-Chemical Methods and Properties", "prefix": "FIX", "uri_format": "http://purl.obolibrary.org/obo/FIX_$1", "subjects": []}}, "bioportal.fb-dv": {"bioportal": {"name": "Drosophila Development Ontology", "prefix": "FB-DV", "uri_format": "http://purl.obolibrary.org/obo/FBdv_$1", "subjects": ["Development", "Animal Development"]}}, "bioportal.glycordf": {"bioportal": {"name": "GlycoRDF", "prefix": "GLYCORDF", "uri_format": "http://purl.jp/bio/12/glyco/glycan#$1", "subjects": []}}, "bioportal.hao": {"bioportal": {"name": "Hymenoptera Anatomy Ontology", "prefix": "HAO", "uri_format": "http://purl.obolibrary.org/obo/HAO_$1", "subjects": ["Gross Anatomy", "Anatomy", "Animal Gross Anatomy"]}}, "bioportal.icd10pcs": {"bioportal": {"name": "International Classification of Diseases, Version 10 - Procedure Coding System", "prefix": "ICD10PCS", "uri_format": "http://purl.bioontology.org/ontology/ICD10PCS$1", "subjects": ["Health"]}}, "bioportal.psds": {"bioportal": {"name": "Plant Structure Development Stage", "prefix": "PSDS", "uri_format": "http://purl.obolibrary.org/obo/PO_$1", "subjects": ["Plant", "Development", "Plant Development"]}}, "bioportal.lipro": {"bioportal": {"name": "Lipid Ontology", "prefix": "LIPRO", "uri_format": "http://semanticscience.org/sadi/ontology/leo.owl#$1", "subjects": []}}, "bioportal.patgv": {"bioportal": {"name": "Placental Genetic Variance", "prefix": "PATGV", "uri_format": "https://pat.nichd.nih.gov/patgeneticvariance$1", "subjects": ["Genomic and Proteomic"]}}, "bioportal.cmo": {"bioportal": {"name": "Clinical Measurement Ontology", "prefix": "CMO", "uri_format": "http://purl.obolibrary.org/obo/CMO_$1", "subjects": []}}, "bioportal.ovae": {"bioportal": {"name": "Ontology of Vaccine Adverse Events", "prefix": "OVAE", "uri_format": "http://purl.obolibrary.org/obo/OVAE_$1", "subjects": ["Immunology", "Health", "Phenotype", "Human"]}}, "bioportal.msv": {"bioportal": {"name": "Metagenome Sample Vocabulary", "prefix": "MSV", "uri_format": "http://purl.jp/bio/11/msv/MSV_$1", "subjects": ["Other"]}}, "bioportal.icd10": {"bioportal": {"name": "International Classification of Diseases, Version 10", "prefix": "ICD10", "uri_format": "http://purl.bioontology.org/ontology/ICD10$1", "subjects": []}}, "bioportal.lc-media": {"bioportal": {"name": "Library of Congress Media Types Scheme", "prefix": "LC-MEDIA", "uri_format": "http://id.loc.gov/vocabulary/mediaTypes$1", "subjects": []}}, "bioportal.bto_ontology": {"bioportal": {"name": "Brain Tumour Ontology", "prefix": "BTO_ONTOLOGY", "uri_format": "http://www.semanticweb.org/samsung/ontologies/2012/10/untitled-ontology-9#$1", "subjects": ["Health", "Biomedical Resources"]}}, "bioportal.envo": {"bioportal": {"name": "Environment Ontology", "prefix": "ENVO", "uri_format": "http://purl.obolibrary.org/obo/ENVO_$1", "subjects": ["Experimental Conditions", "Other", "Physicochemical"]}}, "bioportal.pregonto": {"bioportal": {"name": "Pregnancy Ontology", "prefix": "PREGONTO", "uri_format": "http://www.clininf.eu/pregnancy#$1", "subjects": ["Biological Process"]}}, "bioportal.crisp": {"bioportal": {"name": "Computer Retrieval of Information on Scientific Projects Thesaurus", "prefix": "CRISP", "uri_format": "http://purl.bioontology.org/ontology/CSP$1", "subjects": ["Health"]}}, "bioportal.omo": {"bioportal": {"name": "OBO Metadata Ontology", "prefix": "OMO", "uri_format": "http://purl.obolibrary.org/obo/IAO_$1", "subjects": []}}, "bioportal.vodanauganda": {"bioportal": {"name": "VODANAUGANDA", "prefix": "VODANAUGANDA", "uri_format": "https://github.com/mariambasajja/vocablary1$1", "subjects": []}}, "bioportal.iso19115tcc": {"bioportal": {"name": "ISO 19115 Topic Categories", "prefix": "ISO19115TCC", "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/code/TopicCategory$1", "subjects": ["Other"]}}, "bioportal.bto": {"bioportal": {"name": "BRENDA Tissue and Enzyme Source Ontology", "prefix": "BTO", "uri_format": "http://purl.obolibrary.org/obo/BTO_$1", "subjects": []}}, "bioportal.cstd": {"bioportal": {"name": "Clinical smell and taste disorders", "prefix": "CSTD", "uri_format": "http://www.semanticweb.org/hsiehjulien/ontologies/2016/3/untitled-ontology-4#$1", "subjects": ["Phenotype"]}}, "bioportal.mpio": {"bioportal": {"name": "Minimum PDDI Information Ontology", "prefix": "MPIO", "uri_format": "http://purl.obolibrary.org/obo/MPIO_$1", "subjects": ["Health"]}}, "bioportal.gro": {"bioportal": {"name": "Gene Regulation Ontology", "prefix": "GRO", "uri_format": "http://www.bootstrep.eu/ontology/GRO#$1", "subjects": ["Genomic and Proteomic"]}}, "bioportal.txpo": {"bioportal": {"name": "Toxic Process Ontology", "prefix": "TXPO", "uri_format": "http://purl.obolibrary.org/obo/TXPO_$1", "subjects": ["Dysfunction", "Biological Process"]}}, "bioportal.modsci": {"bioportal": {"name": "Modern Science Ontology", "prefix": "MODSCI", "uri_format": "https://w3id.org/skgo/modsci#$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.i-adopt": {"bioportal": {"name": "I-ADOPT Framework Ontology", "prefix": "I-ADOPT", "uri_format": "https://w3id.org/iadopt/ont$1", "subjects": ["Other"]}}, "bioportal.haauraado": {"bioportal": {"name": "Halocynthia aurantium Anatomy and Development Ontology", "prefix": "HAAURAADO", "uri_format": "http://purl.obolibrary.org/obo/HaauraA_$1", "subjects": []}}, "bioportal.ciinteado": {"bioportal": {"name": "Ciona intestinalis Anatomy and Development Ontology", "prefix": "CIINTEADO", "uri_format": "http://purl.obolibrary.org/obo/CiinteA_$1", "subjects": ["Anatomy", "Animal Development"]}}, "bioportal.medeon": {"bioportal": {"name": "Medical Error Ontology", "prefix": "MEDEON", "uri_format": "http://www.semanticweb.org/chen/ontologies/2015/8/untitled-ontology-72#$1", "subjects": ["Health"]}}, "bioportal.idomal": {"bioportal": {"name": "Malaria Ontology", "prefix": "IDOMAL", "uri_format": "http://purl.obolibrary.org/obo/IDOMAL_$1", "subjects": []}}, "bioportal.tto": {"bioportal": {"name": "Teleost Taxonomy Ontology", "prefix": "TTO", "uri_format": "http://purl.obolibrary.org/obo/TTO_$1", "subjects": ["Taxonomic Classification"]}}, "bioportal.hord": {"bioportal": {"name": "Holistic Ontology of Rare Diseases", "prefix": "HORD", "uri_format": "https://cdn.rawgit.com/laiasubirats/rarediseasesontology/master/ICD10_1.0.owl#$1", "subjects": ["Health"]}}, "bioportal.pcmo": {"bioportal": {"name": "Pediatric Consultation and Monitoring Ontology ", "prefix": "PCMO", "uri_format": "http://www.semanticweb.org/com/ontologies/2015/4/untitled-ontology-44#$1", "subjects": ["Health"]}}, "bioportal.agrocymac": {"bioportal": {"name": "Control y Monitoreo de afecciones en los cultivos", "prefix": "AGROCYMAC", "uri_format": "http://www.semanticweb.org/yali/ontologies/2019/0/cultivos#$1", "subjects": ["Other", "Plant", "Vocabularies", "Plant Development"]}}, "bioportal.cptac": {"bioportal": {"name": "CPTAC Proteomics Pipeline Infrastructure Ontology", "prefix": "CPTAC", "uri_format": "http://proteomeontology.org/cpo.owl#$1", "subjects": ["Genomic and Proteomic"]}}, "bioportal.zonmw-content": {"bioportal": {"name": "ZonMW COVID-19", "prefix": "ZONMW-CONTENT", "uri_format": "http://purl.org/zonmw/covid19$1", "subjects": []}}, "bioportal.m4m-21-subjects": {"bioportal": {"name": "M4M.21 FAIRWare Subjects", "prefix": "M4M-21-SUBJECTS", "uri_format": "http://purl.org/m4m21/subjects$1", "subjects": []}}, "bioportal.exmo": {"bioportal": {"name": "Exercise Medicine Ontology", "prefix": "EXMO", "uri_format": "http://purl.obolibrary.org/obo/exm.owl/EXM_$1", "subjects": ["Health", "Human"]}}, "bioportal.hino": {"bioportal": {"name": "Human Interaction Network Ontology", "prefix": "HINO", "uri_format": "http://purl.obolibrary.org/obo/HINO_$1", "subjects": []}}, "bioportal.taxrank": {"bioportal": {"name": "Taxonomic Rank Vocabulary", "prefix": "TAXRANK", "uri_format": "http://purl.obolibrary.org/obo/TAXRANK_$1", "subjects": []}}, "bioportal.vhog": {"bioportal": {"name": "Vertebrate Homologous Organ Group Ontology", "prefix": "VHOG", "uri_format": "http://purl.obolibrary.org/obo/VHOG_$1", "subjects": ["Mouse Anatomy", "Fish Anatomy", "Gross Anatomy", "Human Developmental Anatomy", "Anatomy", "Human", "Animal Gross Anatomy", "Animal Development"]}}, "bioportal.elter_cl": {"bioportal": {"name": "eLTER Controlled Lists", "prefix": "ELTER_CL", "uri_format": "http://vocabs.lter-europe.net/eLTER_/CL$1", "subjects": ["Other"]}}, "bioportal.mads-rdf": {"bioportal": {"name": "Metadata Authority Description Schema in RDF", "prefix": "MADS-RDF", "uri_format": "http://www.loc.gov/mads/rdf/v1#$1", "subjects": ["Other"]}}, "bioportal.cctoo": {"bioportal": {"name": "Cancer Care: Treatment Outcome Ontology", "prefix": "CCTOO", "uri_format": "http://purl.obolibrary.org/obo/CCTO_$1", "subjects": ["Health", "Biomedical Resources", "Human"]}}, "bioportal.entity": {"bioportal": {"name": "ISO-15926-2_2003_entityMembership", "prefix": "ENTITY", "uri_format": "http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#$1", "subjects": ["Other"]}}, "bioportal.pmdo": {"bioportal": {"name": "Parkinson and Movement Disorder Ontology", "prefix": "PMDO", "uri_format": "http://www.case.edu/PMDO#$1", "subjects": ["Phenotype", "Neurologic Disease", "Neurological Disorder", "Human"]}}, "bioportal.cabro": {"bioportal": {"name": "Computer Assisted Brain Injury Rehabilitation Ontology", "prefix": "CABRO", "uri_format": "http://www.semanticweb.org/dimitrios/ontologies/2013/2/untitled-ontology-2#$1", "subjects": ["Health", "Dysfunction", "Biomedical Resources", "Neurologic Disease", "Neurological Disorder", "Human"]}}, "bioportal.wsio": {"bioportal": {"name": "Web-Service Interaction Ontology", "prefix": "WSIO", "uri_format": "http://purl.obolibrary.org/obo/WSIO_$1", "subjects": ["Other"]}}, "bioportal.labo": {"bioportal": {"name": "clinical LABoratory Ontology", "prefix": "LABO", "uri_format": "http://purl.obolibrary.org/obo/LABO_$1", "subjects": ["Other"]}}, "bioportal.hrdo": {"bioportal": {"name": "Disease core ontology applied to Rare Diseases", "prefix": "HRDO", "uri_format": "http://www.limics.org/hrdo/rdfns#$1", "subjects": ["Health", "Human"]}}, "bioportal.pato": {"bioportal": {"name": "Phenotypic Quality Ontology", "prefix": "PATO", "uri_format": "http://purl.obolibrary.org/obo/PATO_$1", "subjects": ["Phenotype"]}}, "bioportal.ctcae": {"bioportal": {"name": "Common Terminology Criteria for Adverse Events", "prefix": "CTCAE", "uri_format": "http://ncicb.nci.nih.gov/xml/owl/EVS/ctcae5.owl#$1", "subjects": []}}, "bioportal.apo": {"bioportal": {"name": "Ascomycete Phenotype Ontology", "prefix": "APO", "uri_format": "http://purl.obolibrary.org/obo/APO_$1", "subjects": ["Phenotype"]}}, "bioportal.ncbitaxon": {"bioportal": {"name": "National Center for Biotechnology Information (NCBI) Organismal Classification", "prefix": "NCBITAXON", "uri_format": "http://purl.bioontology.org/ontology/NCBITAXON$1", "subjects": ["Taxonomic Classification"]}}, "bioportal.mpo": {"bioportal": {"name": "Microbial Phenotype Ontology", "prefix": "MPO", "uri_format": "http://purl.jp/bio/10/mpo#$1", "subjects": ["Phenotype", "Microbial Anatomy"]}}, "bioportal.nifsubcell": {"bioportal": {"name": "Neuroscience Information Framework (NIF) Subcellular Ontology", "prefix": "NIFSUBCELL", "uri_format": "http://ontology.neuinfo.org/NIF/BiomaterialEntities/NIF-Subcellular.owl#$1", "subjects": []}}, "bioportal.rda-issuance": {"bioportal": {"name": "RDA Mode of Issuance", "prefix": "RDA-ISSUANCE", "uri_format": "http://www.w3.org/2004/02/skos/core#$1", "subjects": ["Vocabularies"]}}, "bioportal.clao": {"bioportal": {"name": "Collembola Anatomy Ontology", "prefix": "CLAO", "uri_format": "http://purl.obolibrary.org/obo/CLAO_$1", "subjects": ["Anatomy", "Animal Gross Anatomy", "Vocabularies"]}}, "bioportal.fish-ast": {"bioportal": {"name": "FISH Archaeological Sciences Thesaurus", "prefix": "FISH-AST", "uri_format": "http://purl.org/heritagedata/schemes/560/concepts$1", "subjects": []}}, "bioportal.hso": {"bioportal": {"name": "Health Surveillance Ontology", "prefix": "HSO", "uri_format": "http://purl.obolibrary.org/obo/HSO_$1", "subjects": []}}, "bioportal.irdg": {"bioportal": {"name": "Data harmonization ontology for cross border malaria surveillance ", "prefix": "IRDG", "uri_format": "http://www.semanticweb.org/IRDGuyamazon#$1", "subjects": ["Health"]}}, "bioportal.dilon": {"bioportal": {"name": "Dietary lifestyle ontology", "prefix": "DILON", "uri_format": "http://www.co-ode.org/ontologies/ont.owl#$1", "subjects": ["Health", "Human"]}}, "bioportal.brct": {"bioportal": {"name": "Brain Region & Cell Type terminology", "prefix": "BRCT", "uri_format": "http://www.semanticweb.org/ontologies/2009/9/Ontology1255357986125.owl#$1", "subjects": []}}, "bioportal.triage": {"bioportal": {"name": "Nurse triage", "prefix": "TRIAGE", "uri_format": "http://www.semanticweb.org/philshields/ontologies/2015/4/untitled-ontology-59#$1", "subjects": ["Health"]}}, "bioportal.wikipathways": {"bioportal": {"name": "WikiPathways", "prefix": "WIKIPATHWAYS", "uri_format": "http://vocabularies.wikipathways.org/wp#$1", "subjects": ["Biological Process", "Vocabularies"]}}, "bioportal.admo": {"bioportal": {"name": "Alzheimer Disease Map Ontology", "prefix": "ADMO", "uri_format": "http://www.semanticweb.org/ADMO#$1", "subjects": ["Biological Process", "Human"]}}, "bioportal.pmapp-pmo": {"bioportal": {"name": "PMO Precision Medicine Ontology", "prefix": "PMAPP-PMO", "uri_format": "http://www.phoc.org.cn/pmo/class/PMO_$1", "subjects": ["Biomedical Resources"]}}, "bioportal.test_a": {"bioportal": {"name": "TEST_A", "prefix": "TEST_A", "uri_format": "https://bioportal.databiology.com/test1.owl#$1", "subjects": ["Other"]}}, "bioportal.ird": {"bioportal": {"name": "Inherited Retinal Dystrophies", "prefix": "IRD", "uri_format": "http://www.semanticweb.org/msh/ontologies/2019/9/untitled-ontology-3#$1", "subjects": []}}, "bioportal.mstde": {"bioportal": {"name": "Minimal Standard Terminology of Digestive Endoscopy", "prefix": "MSTDE", "uri_format": "http://purl.bioontology.org/ontology/MSTDE$1", "subjects": []}}, "bioportal.gvo": {"bioportal": {"name": "Genome Variation Ontology", "prefix": "GVO", "uri_format": "http://genome-variation.org/resource/gvo#$1", "subjects": ["Genomic and Proteomic"]}}, "bioportal.hfo": {"bioportal": {"name": "Heart Failure Ontology", "prefix": "HFO", "uri_format": "http://bmi.utah.edu/ontologies/hfontology$1", "subjects": ["Ethology", "Health", "Phenotype", "Human", "Vocabularies"]}}, "bioportal.landform": {"bioportal": {"name": "Landform classifiers", "prefix": "LANDFORM", "uri_format": "http://anzsoil.org/def/au/asls/landform$1", "subjects": ["Vocabularies"]}}, "bioportal.bcs7": {"bioportal": {"name": "Breast Cancer Staging - 7th Edition", "prefix": "BCS7", "uri_format": "http://idea.tw.rpi.edu/projects/heals/ontologies/cancer_staging_terms.owl#$1", "subjects": []}}, "bioportal.procchemical": {"bioportal": {"name": "Chemical Process", "prefix": "PROCCHEMICAL", "uri_format": "http://sweet.jpl.nasa.gov/2.3/propChemical.owl#$1", "subjects": []}}, "bioportal.ontodt": {"bioportal": {"name": "Ontology of Datatypes", "prefix": "ONTODT", "uri_format": "http://www.ontodm.com/OntoDT#$1", "subjects": []}}, "bioportal.nifstd": {"bioportal": {"name": "Neuroscience Information Framework (NIF) Standard Ontology", "prefix": "NIFSTD", "uri_format": "http://uri.neuinfo.org/nif/nifstd/nifext_$1", "subjects": ["All Organisms", "Cellular anatomy ", "Molecule", "Dysfunction", "Biological Process", "Other", "Subcellular", "Neurologic Disease", "Neurological Disorder", "Anatomy", "Subcellular anatomy", "Cell"]}}, "bioportal.codo": {"bioportal": {"name": "An Ontology for Collection and Analysis of COviD-19 Data", "prefix": "CODO", "uri_format": "http://www.isibang.ac.in/ns/codo#$1", "subjects": ["Health", "Human", "Vocabularies"]}}, "bioportal.soy": {"bioportal": {"name": "Soy Ontology", "prefix": "SOY", "uri_format": "http://purl.obolibrary.org/obo/SOY_$1", "subjects": ["Plant"]}}, "bioportal.lda": {"bioportal": {"name": "Ontology of Language Disorder in Autism", "prefix": "LDA", "uri_format": "http://www.semanticweb.org/ontologies/2008/10/languageacquisition_autism.owl#$1", "subjects": ["Health"]}}, "bioportal.patct": {"bioportal": {"name": "Placental Cell Type", "prefix": "PATCT", "uri_format": "https://pat.nichd.nih.gov/placentalcelltype$1", "subjects": ["Cell"]}}, "bioportal.apollo-sv": {"bioportal": {"name": "Apollo Structured Vocabulary", "prefix": "APOLLO-SV", "uri_format": "http://purl.obolibrary.org/obo/NCBITaxon_$1", "subjects": ["Health"]}}, "bioportal.ontotox": {"bioportal": {"name": "Chemotherapy Toxicities Ontology", "prefix": "ONTOTOX", "uri_format": "http://OntoTox.owl#$1", "subjects": ["Biomedical Resources"]}}, "bioportal.neumore": {"bioportal": {"name": "Neural Motor Recovery Ontology", "prefix": "NEUMORE", "uri_format": "http://neumore.cis.usouthal.edu/ontologies/NeuMORE-v0.1.owl#$1", "subjects": []}}, "bioportal.hasco": {"bioportal": {"name": "Human-Aware Science Ontology", "prefix": "HASCO", "uri_format": "http://hadatac.org/ont/hasco$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.swo": {"bioportal": {"name": "Software Ontology", "prefix": "SWO", "uri_format": "http://www.ebi.ac.uk/swo/SWO_$1", "subjects": ["Experimental Conditions", "Biomedical Resources"]}}, "bioportal.obcs": {"bioportal": {"name": "Ontology of Biological and Clinical Statistics", "prefix": "OBCS", "uri_format": "http://purl.obolibrary.org/obo/OBCS_$1", "subjects": ["Other"]}}, "bioportal.mego": {"bioportal": {"name": "Mobile Genetic Element Ontology", "prefix": "MEGO", "uri_format": "http://purl.obolibrary.org/obo/phi_$1", "subjects": ["Biological Process", "Gene Product"]}}, "bioportal.mirnao": {"bioportal": {"name": "MicroRNA Ontology", "prefix": "MIRNAO", "uri_format": "http://anobase.vectorbase.org/mirnao/mirnao.owl#$1", "subjects": ["Other"]}}, "bioportal.bro_acronym": {"bioportal": {"name": "Bro_Name", "prefix": "BRO_ACRONYM", "uri_format": "http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#$1", "subjects": []}}, "bioportal.fb-sp": {"bioportal": {"name": "Fly Taxonomy", "prefix": "FB-SP", "uri_format": "http://purl.obolibrary.org/obo/FBsp_$1", "subjects": ["Taxonomic Classification"]}}, "bioportal.nmdco": {"bioportal": {"name": "NMDC Ontology", "prefix": "NMDCO", "uri_format": "http://purl.obolibrary.org/obo/ENVO_$1", "subjects": ["Other", "Plant"]}}, "bioportal.radlex": {"bioportal": {"name": "Radiology Lexicon", "prefix": "RADLEX", "uri_format": "http://radlex.org/RID$1", "subjects": []}}, "bioportal.vodanakenya": {"bioportal": {"name": "VODANA KENYA", "prefix": "VODANAKENYA", "uri_format": "http://www.vodan-totafrica.info/vodana-terms$1", "subjects": ["Vocabularies"]}}, "bioportal.idqa": {"bioportal": {"name": "Image and Data Quality Assessment Ontology", "prefix": "IDQA", "uri_format": "http://purl.obolibrary.org/obo/ID_$1", "subjects": ["Imaging"]}}, "bioportal.dccdfv": {"bioportal": {"name": "Dublin Core Collection Description Frequency Vocabulary", "prefix": "DCCDFV", "uri_format": "http://purl.org/cld/freq$1", "subjects": ["Other"]}}, "bioportal.galen": {"bioportal": {"name": "Galen Ontology", "prefix": "GALEN", "uri_format": "http://www.co-ode.org/ontologies/galen#$1", "subjects": ["Other"]}}, "bioportal.ogg": {"bioportal": {"name": "Ontology of Genes and Genomes", "prefix": "OGG", "uri_format": "http://purl.obolibrary.org/obo/OGG_$1", "subjects": ["Genomic and Proteomic", "Human", "Gene Product"]}}, "bioportal.bridg": {"bioportal": {"name": "Biomedical Research Integrated Domain Group Model", "prefix": "BRIDG", "uri_format": "http://www.bridgmodel.org/owl#$1", "subjects": ["Health"]}}, "bioportal.icd11-bodysystem": {"bioportal": {"name": "Body System Terms from ICD11", "prefix": "ICD11-BODYSYSTEM", "uri_format": "http://who.int/bodysystem.owl#$1", "subjects": ["Anatomy"]}}, "bioportal.vivo": {"bioportal": {"name": "VIVO Ontology for Researcher Discovery", "prefix": "VIVO", "uri_format": "http://vivoweb.org/ontology/core#$1", "subjects": ["Other"]}}, "bioportal.datacite-vocab": {"bioportal": {"name": "DATACITE V4.4", "prefix": "DATACITE-VOCAB", "uri_format": "http://purl.org/datacite/v4.4$1", "subjects": []}}, "bioportal.aero": {"bioportal": {"name": "Adverse Event Reporting Ontology", "prefix": "AERO", "uri_format": "http://purl.obolibrary.org/obo/AERO_$1", "subjects": ["Health", "Biomedical Resources"]}}, "bioportal.chiro": {"bioportal": {"name": "CHEBI Integrated Role Ontology", "prefix": "CHIRO", "uri_format": "http://purl.obolibrary.org/obo/MP_$1", "subjects": []}}, "bioportal.bcs8": {"bioportal": {"name": "Breast Cancer Staging - 8th Edition", "prefix": "BCS8", "uri_format": "http://idea.rpi.edu/ontologies/cancer_staging_terms.owl#$1", "subjects": []}}, "bioportal.sbo": {"bioportal": {"name": "Systems Biology Ontology", "prefix": "SBO", "uri_format": "http://purl.obolibrary.org/obo/SBO_$1", "subjects": ["Vocabularies"]}}, "bioportal.ehdaa": {"bioportal": {"name": "Human Developmental Anatomy Ontology, abstract version 1", "prefix": "EHDAA", "uri_format": "http://purl.obolibrary.org/obo/EHDAA_$1", "subjects": ["Gross Anatomy", "Human Developmental Anatomy", "Anatomy", "Animal Gross Anatomy"]}}, "bioportal.cco": {"bioportal": {"name": "Cell Cycle Ontology", "prefix": "CCO", "uri_format": "http://purl.obolibrary.org/obo/UniProt_$1", "subjects": ["Yeast", "Biological Process", "Arabidopsis", "Human", "Protein"]}}, "bioportal.into": {"bioportal": {"name": "Indian Terrorism Ontology", "prefix": "INTO", "uri_format": "http://www.semanticweb.org/Terrorism#$1", "subjects": []}}, "bioportal.ahol": {"bioportal": {"name": "Animal Health Ontology for Livestock", "prefix": "AHOL", "uri_format": "http://opendata.inra.fr/AHOL/AHOL_$1", "subjects": []}}, "bioportal.mfomd": {"bioportal": {"name": "MFO Mental Disease Ontology", "prefix": "MFOMD", "uri_format": "http://purl.obolibrary.org/obo/MFOMD_$1", "subjects": ["Health"]}}, "bioportal.onlira": {"bioportal": {"name": "Ontology of Liver for Radiology", "prefix": "ONLIRA", "uri_format": "http://vavlab.ee.boun.edu.tr/carera/onlira.owl#$1", "subjects": []}}, "bioportal.nln": {"bioportal": {"name": "NLighten Ontology", "prefix": "NLN", "uri_format": "http://purl.obolibrary.org/obo/IAO_$1", "subjects": ["Other"]}}, "bioportal.gaz": {"bioportal": {"name": "Gazetteer", "prefix": "GAZ", "uri_format": "http://purl.obolibrary.org/obo/GAZ_$1", "subjects": []}}, "bioportal.vt": {"bioportal": {"name": "Vertebrate Trait Ontology", "prefix": "VT", "uri_format": "http://purl.obolibrary.org/obo/VT_$1", "subjects": []}}, "bioportal.ecso": {"bioportal": {"name": "The Ecosystem Ontology", "prefix": "ECSO", "uri_format": "http://purl.dataone.org/odo/ECSO_$1", "subjects": ["Other"]}}, "bioportal.zea": {"bioportal": {"name": "Maize Gross Anatomy Ontology", "prefix": "ZEA", "uri_format": "http://purl.obolibrary.org/obo/ZEA_$1", "subjects": ["Plant Anatomy"]}}, "bioportal.smash": {"bioportal": {"name": "SMASH Ontology", "prefix": "SMASH", "uri_format": "http://aimlab.cs.uoregon.edu/smash/ontologies/social-activity.owl#$1", "subjects": ["Health"]}}, "bioportal.plio": {"bioportal": {"name": "Protein-ligand interaction ontology", "prefix": "PLIO", "uri_format": "http://www.semanticweb.org/ontologies/2010/3/Ontology1271664172453.owl#$1", "subjects": []}}, "bioportal.ogi": {"bioportal": {"name": "Ontology for Genetic Interval", "prefix": "OGI", "uri_format": "http://purl.obolibrary.org/obo/OGI_$1", "subjects": ["Genomic and Proteomic"]}}, "bioportal.iceci": {"bioportal": {"name": "International Classification of External Causes of Injuries", "prefix": "ICECI", "uri_format": "http://who.int/iceci#$1", "subjects": []}}, "bioportal.ontopneumo": {"bioportal": {"name": "Ontology of Pneumology", "prefix": "ONTOPNEUMO", "uri_format": "http://doe-generated-ontology.com/OntoPneumo#$1", "subjects": ["Health", "Human"]}}, "bioportal.ontosinasc": {"bioportal": {"name": "Ontology of Information System on Live Births", "prefix": "ONTOSINASC", "uri_format": "http://www.semanticweb.org/DIASUS/OntoSINASC#$1", "subjects": ["Health", "Human"]}}, "bioportal.provo": {"bioportal": {"name": "Provenance Ontology", "prefix": "PROVO", "uri_format": "http://www.w3.org/ns/prov#$1", "subjects": []}}, "bioportal.hgnc-nr": {"bioportal": {"name": "HGNC New Releases Ontology", "prefix": "HGNC-NR", "uri_format": "http://identifiers.org/hgnc$1", "subjects": ["Genomic and Proteomic"]}}, "bioportal.uganda_diseases": {"bioportal": {"name": "Uganda_diseases", "prefix": "UGANDA_DISEASES", "uri_format": "https://www.vodan-totafrica.info/vocs$1", "subjects": ["Vocabularies"]}}, "bioportal.nidm-results": {"bioportal": {"name": "NIDM-Results", "prefix": "NIDM-RESULTS", "uri_format": "http://purl.org/nidash/nidm#$1", "subjects": ["Imaging", "Other"]}}, "bioportal.cdo": {"bioportal": {"name": "Chinese Diabetes Mellitus Ontology", "prefix": "CDO", "uri_format": "http://purl.bioontology.org/ontology/CDO$1", "subjects": ["Health", "Human"]}}, "bioportal.epie": {"bioportal": {"name": "Epigenetic Entity", "prefix": "EPIE", "uri_format": "https://pat.nichd.nih.gov/patepigeneticentity$1", "subjects": ["Other"]}}, "bioportal.test-m4m20-pav": {"bioportal": {"name": "test-m4m20-subjects-pav", "prefix": "TEST-M4M20-PAV", "uri_format": "http://purl.org/m4m20/subjects$1", "subjects": []}}, "bioportal.uo": {"bioportal": {"name": "Units of Measurement Ontology", "prefix": "UO", "uri_format": "http://purl.obolibrary.org/obo/UO_$1", "subjects": ["Phenotype"]}}, "bioportal.flyglycodb": {"bioportal": {"name": "FlyGlycoDB", "prefix": "FLYGLYCODB", "uri_format": "http://www.flyglycodb.org/ontologies/2015$1", "subjects": ["Gene Product"]}}, "bioportal.bko": {"bioportal": {"name": "Bricks ontology", "prefix": "BKO", "uri_format": "http://sbgnbricks.org/BKO$1", "subjects": ["Other"]}}, "bioportal.marc-languages": {"bioportal": {"name": "MARC List for Languages", "prefix": "MARC-LANGUAGES", "uri_format": "http://id.loc.gov/vocabulary/languages$1", "subjects": []}}, "bioportal.pdon": {"bioportal": {"name": "Parkinson's Disease Ontology", "prefix": "PDON", "uri_format": "http://www.semanticweb.org/ontologies/2011/1/Ontology1296772722296.owl#$1", "subjects": []}}, "bioportal.bcgo": {"bioportal": {"name": "Breast Cancer Grading Ontology", "prefix": "BCGO", "uri_format": "http://www.owl-ontologies.com/Ontology1239104585.owl#$1", "subjects": ["Biological Process"]}}, "bioportal.neomark3": {"bioportal": {"name": "Neomark Oral Cancer Ontology, version 3", "prefix": "NEOMARK3", "uri_format": "http://www.neomark.eu/ontologies$1", "subjects": ["Health"]}}, "bioportal.fdsajfahsjk": {"bioportal": {"name": "OWL_XML_Tool5", "prefix": "FDSAJFAHSJK", "uri_format": "http://example.com/owl/families/import/familyImport17$1", "subjects": []}}, "bioportal.biolink": {"bioportal": {"name": "Biolink Model", "prefix": "BIOLINK", "uri_format": "https://w3id.org/biolink/vocab$1", "subjects": ["All Organisms", "Biological Process", "Phenotype", "Chemical", "Cell", "Gene Product"]}}, "bioportal.fdt-o": {"bioportal": {"name": "FAIR Data Train Ontology", "prefix": "FDT-O", "uri_format": "https://w3id.org/fdp/fdt-o#$1", "subjects": ["Vocabularies"]}}, "bioportal.adar": {"bioportal": {"name": "Autism DSM-ADI-R ontology", "prefix": "ADAR", "uri_format": "http://purl.org/autism-ontology/1.0/autism-rules.owl#$1", "subjects": ["Health"]}}, "bioportal.matr": {"bioportal": {"name": "Material", "prefix": "MATR", "uri_format": "http://sweet.jpl.nasa.gov/2.3/matr.owl#$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.umms": {"bioportal": {"name": "FirstOntologyForUMMS", "prefix": "UMMS", "uri_format": "https://w3id.org/umms/ekg/onto01$1", "subjects": []}}, "bioportal.idobru": {"bioportal": {"name": "Brucellosis Ontology", "prefix": "IDOBRU", "uri_format": "http://purl.obolibrary.org/obo/IDO_$1", "subjects": ["Health"]}}, "bioportal.sarsmutonto": {"bioportal": {"name": "Ontology of SARS-CoV2 mutations", "prefix": "SARSMUTONTO", "uri_format": "file://C/Users/Jamal/Desktop/SARSMutOnto.owl#$1", "subjects": ["Genomic and Proteomic", "Gene Product"]}}, "bioportal.mcbcc": {"bioportal": {"name": "Breast Tissue Cell Lines Ontology", "prefix": "MCBCC", "uri_format": "http://purl.obolibrary.org/obo/MCBCC_0000275#$1", "subjects": ["Cell"]}}, "bioportal.ddpheno": {"bioportal": {"name": "Dictyostelium Discoideum Phenotype Ontology", "prefix": "DDPHENO", "uri_format": "http://purl.obolibrary.org/obo/DDPHENO_$1", "subjects": ["Anatomy"]}}, "bioportal.brso": {"bioportal": {"name": "Biological Resource Schema Ontology", "prefix": "BRSO", "uri_format": "http://purl.jp/bio/10/brso$1", "subjects": ["All Organisms"]}}, "bioportal.xpo": {"bioportal": {"name": "Xenopus Phenotype Ontology", "prefix": "XPO", "uri_format": "http://purl.obolibrary.org/obo/XPO_$1", "subjects": ["Phenotype"]}}, "bioportal.case-base-onto": {"bioportal": {"name": "Case-base ontology for gastric dystemperament in Persian medicine", "prefix": "CASE-BASE-ONTO", "uri_format": "http://www.semanticweb.org/hsh/ontologies/2019/7/CBRDystempOnto#$1", "subjects": ["Other"]}}, "bioportal.fo": {"bioportal": {"name": "Fern Ontology", "prefix": "FO", "uri_format": "http://purl.jp/bio/01/fo#$1", "subjects": ["Plant Anatomy"]}}, "bioportal.incentive": {"bioportal": {"name": "INCENTIVE Community Controlled Vocabulary", "prefix": "INCENTIVE", "uri_format": "http://purl.org/incentive$1", "subjects": []}}, "bioportal.hns": {"bioportal": {"name": "HNS_Ontolgoy", "prefix": "HNS", "uri_format": "http://www.humannervousystem.org/KAnOE/2014/dave86#$1", "subjects": ["Health", "Neurologic Disease", "Human"]}}, "bioportal.roleo": {"bioportal": {"name": "Role Ontology", "prefix": "ROLEO", "uri_format": "http://purl.obolibrary.org/obo/RoleO_$1", "subjects": []}}, "bioportal.onl-mr-da": {"bioportal": {"name": "Magnetic Resonance Dataset Acquisition Ontology", "prefix": "ONL-MR-DA", "uri_format": "http://neurolog.unice.fr/ontoneurolog/v3.0/ontoneurolog-extension-of-dolce.owl#$1", "subjects": ["Imaging"]}}, "bioportal.dermlex": {"bioportal": {"name": "Dermatology Lexicon", "prefix": "DERMLEX", "uri_format": "http://www.owl-ontologies.com/unnamed.owl#$1", "subjects": ["Health"]}}, "bioportal.ktao": {"bioportal": {"name": "Kidney Tissue Atlas Ontology", "prefix": "KTAO", "uri_format": "http://purl.obolibrary.org/obo/GO_$1", "subjects": ["Cellular anatomy ", "Molecule", "Health", "Dysfunction", "Biomedical Resources", "Genomic and Proteomic", "Biological Process", "Subcellular", "Phenotype", "Human Developmental Anatomy", "Anatomy", "Human", "Subcellular anatomy", "Cell", "Development", "Gene Product"]}}, "bioportal.odnae": {"bioportal": {"name": "Ontology of Drug Neuropathy Adverse Events", "prefix": "ODNAE", "uri_format": "http://purl.obolibrary.org/obo/ODNAE_$1", "subjects": ["Health", "Human"]}}, "bioportal.mosaic": {"bioportal": {"name": "The MOSAiC Ontology", "prefix": "MOSAIC", "uri_format": "https://purl.dataone.org/odo/MOSAIC_$1", "subjects": []}}, "bioportal.moc": {"bioportal": {"name": "Material Organic Compound", "prefix": "MOC", "uri_format": "http://sweet.jpl.nasa.gov/2.3/matrOrganicCompound.owl#$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.sty": {"bioportal": {"name": "Semantic Types Ontology", "prefix": "STY", "uri_format": "http://purl.bioontology.org/ontology/STY$1", "subjects": []}}, "bioportal.bt": {"bioportal": {"name": "BioTop Ontology", "prefix": "BT", "uri_format": "http://purl.org/biotop/biotop.owl#$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.ontoma": {"bioportal": {"name": "Ontology of Alternative Medicine, French", "prefix": "ONTOMA", "uri_format": "http://www.semanticweb.org/associatedmedicine/lavima/2011/10/Ontology1.owl#$1", "subjects": []}}, "bioportal.fast-event": {"bioportal": {"name": "FAST (Faceted Application of Subject Terminology) Event", "prefix": "FAST-EVENT", "uri_format": "http://schema.org$1", "subjects": []}}, "bioportal.bibliotek-o": {"bioportal": {"name": "The Biblioteko Ontology", "prefix": "BIBLIOTEK-O", "uri_format": "http://bibliotek-o.org/1.1/ontology$1", "subjects": []}}, "bioportal.m4m19-vars": {"bioportal": {"name": "M4M19 Variables", "prefix": "M4M19-VARS", "uri_format": "http://purl.org/m4m19/variables$1", "subjects": []}}, "bioportal.emap": {"bioportal": {"name": "Mouse Gross Anatomy and Development Ontology", "prefix": "EMAP", "uri_format": "http://purl.obolibrary.org/obo/EMAP_$1", "subjects": ["Mouse Anatomy", "Gross Anatomy", "Anatomy", "Animal Gross Anatomy"]}}, "bioportal.mchvodanaterms": {"bioportal": {"name": "MCHVODANATERMS", "prefix": "MCHVODANATERMS", "uri_format": "https://github.com/mariambasajja$1", "subjects": []}}, "bioportal.ibo": {"bioportal": {"name": "Imaging Biomarker Ontology", "prefix": "IBO", "uri_format": "http://www.semanticweb.org/eamdouni/ontologies/2015/5/IBO#$1", "subjects": ["Imaging", "Health", "Biological Process", "Phenotype", "Human"]}}, "bioportal.cseo": {"bioportal": {"name": "Cigarette Smoke Exposure Ontology", "prefix": "CSEO", "uri_format": "http://scai.fraunhofer.de/CSEO#$1", "subjects": ["Health"]}}, "bioportal.extract": {"bioportal": {"name": "EXTeRnAl Conditions Taxonomy (EXTRACT)", "prefix": "EXTRACT", "uri_format": "http://purl.org/extract$1", "subjects": []}}, "bioportal.hhear": {"bioportal": {"name": "Human Health Exposure Analysis Resource", "prefix": "HHEAR", "uri_format": "http://purl.org/twc/HHEAR_$1", "subjects": ["Health"]}}, "bioportal.fideo": {"bioportal": {"name": "Food Interactions with Drugs Evidence Ontology", "prefix": "FIDEO", "uri_format": "http://purl.obolibrary.org/obo/FIDEO_$1", "subjects": ["Human"]}}, "bioportal.dikb": {"bioportal": {"name": "Drug Interaction Knowledge Base Ontology", "prefix": "DIKB", "uri_format": "http://purl.org/net/drug-interaction-knowledge-base/DIKB_evidence_ontology.owl#$1", "subjects": ["Vocabularies"]}}, "bioportal.scdo": {"bioportal": {"name": "Sickle Cell Disease Ontology", "prefix": "SCDO", "uri_format": "http://purl.obolibrary.org/obo/SCDO_$1", "subjects": ["Biomedical Resources"]}}, "bioportal.neudigs": {"bioportal": {"name": "Neuroscience Domain Insight Graph", "prefix": "NEUDIGS", "uri_format": "http://bmkeg.isi.edu/neuDIGs#$1", "subjects": ["Cellular anatomy ", "Anatomy", "Cell"]}}, "bioportal.vido": {"bioportal": {"name": "Virus Infectious Disease Ontology", "prefix": "VIDO", "uri_format": "http://purl.obolibrary.org/obo/VIDO_$1", "subjects": ["Other"]}}, "bioportal.pmo": {"bioportal": {"name": "Performed Music Ontology", "prefix": "PMO", "uri_format": "http://performedmusicontology.org/ontology$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.copdo": {"bioportal": {"name": "COPD Ontology", "prefix": "COPDO", "uri_format": "http://webprotege.stanford.edu$1", "subjects": ["Health", "Human"]}}, "bioportal.ochv": {"bioportal": {"name": "Ontology of Consumer Health Vocabulary", "prefix": "OCHV", "uri_format": "http://sbmi.uth.tmc.edu/ontology/ochv#$1", "subjects": ["Vocabularies"]}}, "bioportal.fypo": {"bioportal": {"name": "Fission Yeast Phenotype Ontology", "prefix": "FYPO", "uri_format": "http://purl.obolibrary.org/obo/FYPO_$1", "subjects": ["Phenotype"]}}, "bioportal.ohmi": {"bioportal": {"name": "Ontology of Host-Microbe Interactions", "prefix": "OHMI", "uri_format": "http://purl.obolibrary.org/obo/OHMI_$1", "subjects": ["Experimental Conditions", "Immunology", "Biological Process", "Phenotype", "Microbial Anatomy"]}}, "bioportal.cmpo": {"bioportal": {"name": "Cellular microscopy phenotype ontology", "prefix": "CMPO", "uri_format": "http://www.ebi.ac.uk/cmpo/CMPO_$1", "subjects": ["Cellular anatomy ", "Phenotype", "Cell"]}}, "bioportal.emo": {"bioportal": {"name": "Enzyme Mechanism Ontology", "prefix": "EMO", "uri_format": "http://www.semanticweb.org/ontologies/2011/1/14/EMO.owl/EMO_$1", "subjects": ["Protein"]}}, "bioportal.cwd": {"bioportal": {"name": "Consumer Wearable Device", "prefix": "CWD", "uri_format": "http://www.semanticweb.org/jbagwell/ontologies/2017/9/untitled-ontology-6#$1", "subjects": ["Health"]}}, "bioportal.neicbeer": {"bioportal": {"name": "The NeIC PaRI beer vocabulary", "prefix": "NEICBEER", "uri_format": "http://ontology.deic.dk/cv/beer-ontology$1", "subjects": ["Other"]}}, "bioportal.shr": {"bioportal": {"name": "Student Health Record Ontology", "prefix": "SHR", "uri_format": "http://www.shojaee.com/shr/shr.owl#$1", "subjects": []}}, "bioportal.cohsi2study": {"bioportal": {"name": "cohsi2study", "prefix": "COHSI2STUDY", "uri_format": "https://www.lumc.nl/fairontologies/aeterms/ae$1", "subjects": ["Vocabularies"]}}, "bioportal.onstr": {"bioportal": {"name": "Ontology for Newborn Screening Follow-up and Translational Research", "prefix": "ONSTR", "uri_format": "http://onstr.googlecode.com/svn/tags/currentRelease/2014-09-03/ONSTR.owl#$1", "subjects": ["Health", "Dysfunction", "Biological Process", "Phenotype", "Human", "Development"]}}, "bioportal.patit": {"bioportal": {"name": "Placental Investigative Technique", "prefix": "PATIT", "uri_format": "https://pat.nichd.nih.gov/patinvestigativetechniques$1", "subjects": ["Other"]}}, "bioportal.dto": {"bioportal": {"name": "Drug Target Ontology", "prefix": "DTO", "uri_format": "http://www.drugtargetontology.org/dto/DTO_$1", "subjects": ["Molecule", "Other", "Human", "Chemical", "Protein", "Gene Product"]}}, "bioportal.vico": {"bioportal": {"name": "Vaccination Informed Consent Ontology", "prefix": "VICO", "uri_format": "http://purl.obolibrary.org/obo/VICO_$1", "subjects": ["Immunology", "Health"]}}, "bioportal.weave": {"bioportal": {"name": "WEAVE: Wind Energy ActiVitiEs", "prefix": "WEAVE", "uri_format": "http://purl.org/weave$1", "subjects": []}}, "bioportal.mf": {"bioportal": {"name": "Mental Functioning Ontology", "prefix": "MF", "uri_format": "http://purl.obolibrary.org/obo/MF_$1", "subjects": []}}, "bioportal.hamidehsgh": {"bioportal": {"name": "Inherited Retinal Dystrophy", "prefix": "HAMIDEHSGH", "uri_format": "http://www.semanticweb.org/hamide/ontologies/2019/3/IRD_$1", "subjects": ["Human"]}}, "bioportal.dcmitype": {"bioportal": {"name": "DCMI Type Vocabulary", "prefix": "DCMITYPE", "uri_format": "http://purl.org/dc/dcmitype$1", "subjects": ["Other"]}}, "bioportal.mera": {"bioportal": {"name": "Medical Educational Resource Aggregator", "prefix": "MERA", "uri_format": "https://carre.kmi.open.ac.uk/ontology/educational.owl#$1", "subjects": ["Vocabularies"]}}, "bioportal.gfvo": {"bioportal": {"name": "Genomic Feature and Variation Ontology", "prefix": "GFVO", "uri_format": "https://www.codamono.com/biointerchange/gfvo#$1", "subjects": ["Biomedical Resources", "Genomic and Proteomic", "Biological Process", "Human", "Gene Product"]}}, "bioportal.fdc-gdmt": {"bioportal": {"name": "Ontology for Generic Dataset Metadata Template", "prefix": "FDC-GDMT", "uri_format": "http://vocab.fairdatacollective.org/gdmt$1", "subjects": ["Vocabularies"]}}, "bioportal.gno": {"bioportal": {"name": "Glycan Naming Ontology", "prefix": "GNO", "uri_format": "http://purl.obolibrary.org/obo/GNO_$1", "subjects": ["Other"]}}, "bioportal.pso_2": {"bioportal": {"name": "PatientSafetyOntologyRevisted", "prefix": "PSO_2", "uri_format": "http://ontorion.com/PSO#$1", "subjects": ["Health"]}}, "bioportal.xco": {"bioportal": {"name": "Experimental Conditions Ontology", "prefix": "XCO", "uri_format": "http://purl.obolibrary.org/obo/XCO_$1", "subjects": ["Experimental Conditions", "Phenotype"]}}, "bioportal.vto": {"bioportal": {"name": "Vertebrate Taxonomy Ontology", "prefix": "VTO", "uri_format": "http://purl.obolibrary.org/obo/VTO_$1", "subjects": ["Taxonomic Classification"]}}, "bioportal.pcalion": {"bioportal": {"name": "Prostate Cancer Lifestyle Ontology", "prefix": "PCALION", "uri_format": "http://www.semanticweb.org/ontologies/Prostate_cancer#$1", "subjects": ["Health", "Human"]}}, "bioportal.infrarisk": {"bioportal": {"name": "InfraRisk Ontology", "prefix": "INFRARISK", "uri_format": "https://www.infrarisk-fp7.eu/vocabs/#$1", "subjects": ["Other"]}}, "bioportal.abd": {"bioportal": {"name": "Anthology of Biosurveillance Diseases", "prefix": "ABD", "uri_format": "http://brd.bsvgateway.org/api/organism$1", "subjects": ["All Organisms", "Health", "Plant", "Human"]}}, "bioportal.duo": {"bioportal": {"name": "The Data Use Ontology", "prefix": "DUO", "uri_format": "http://purl.obolibrary.org/obo/DUO_$1", "subjects": []}}, "bioportal.dcat": {"bioportal": {"name": "Data Catalog Vocabulary", "prefix": "DCAT", "uri_format": "http://www.w3.org/ns/dcat#$1", "subjects": ["Other"]}}, "bioportal.oce": {"bioportal": {"name": "Ontology of Chemical Elements", "prefix": "OCE", "uri_format": "http://purl.obolibrary.org/obo/OCE_$1", "subjects": ["Physicochemical"]}}, "bioportal.wb-bt": {"bioportal": {"name": "C. elegans Gross Anatomy Vocabulary", "prefix": "WB-BT", "uri_format": "http://purl.obolibrary.org/obo/WBbt_$1", "subjects": ["Gross Anatomy", "Anatomy", "Animal Gross Anatomy"]}}, "bioportal.lungmap-human": {"bioportal": {"name": "Anatomic Ontology for Human Lung Maturation", "prefix": "LUNGMAP-HUMAN", "uri_format": "http://purl.obolibrary.org/obo/LMHA_$1", "subjects": ["Anatomy"]}}, "bioportal.pma": {"bioportal": {"name": "Portfolio Management Application", "prefix": "PMA", "uri_format": "http://www.bioontology.org/pma.owl#$1", "subjects": ["Health", "Human"]}}, "bioportal.epso": {"bioportal": {"name": "Epilepsy and Seizure Ontology", "prefix": "EPSO", "uri_format": "http://www.case.edu/EpilepsyOntology.owl#$1", "subjects": ["Neurologic Disease", "Neurological Disorder"]}}, "bioportal.sbol": {"bioportal": {"name": "Synthetic Biology Open Language Visual Ontology", "prefix": "SBOL", "uri_format": "http://purl.obolibrary.org/obo/SBOL_$1", "subjects": ["Other"]}}, "bioportal.sao": {"bioportal": {"name": "Subcellular Anatomy Ontology", "prefix": "SAO", "uri_format": "http://ccdb.ucsd.edu/SAO/1.2#$1", "subjects": ["Anatomy"]}}, "bioportal.nemo": {"bioportal": {"name": "Neural ElectroMagnetic Ontology", "prefix": "NEMO", "uri_format": "http://purl.bioontology.org/NEMO/ontology/NEMO.owl#$1", "subjects": ["Imaging", "Experimental Conditions", "Biological Process", "Anatomy", "Human"]}}, "bioportal.matrelement": {"bioportal": {"name": "Material Element", "prefix": "MATRELEMENT", "uri_format": "http://sweet.jpl.nasa.gov/2.3/matrElement.owl#$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.ptrans": {"bioportal": {"name": "Pathogen Transmission Ontology", "prefix": "PTRANS", "uri_format": "http://purl.obolibrary.org/obo/TRANS_$1", "subjects": ["Health", "Vocabularies"]}}, "bioportal.caro": {"bioportal": {"name": "Common Anatomy Reference Ontology", "prefix": "CARO", "uri_format": "http://purl.obolibrary.org/obo/CARO_$1", "subjects": ["Anatomy"]}}, "bioportal.unitsont": {"bioportal": {"name": "Units Ontology", "prefix": "UNITSONT", "uri_format": "http://mimi.case.edu/ontologies/2009/1/UnitsOntology#$1", "subjects": ["Other"]}}, "bioportal.neomark4": {"bioportal": {"name": "Neomark Oral Cancer Ontology, version 4", "prefix": "NEOMARK4", "uri_format": "http://neomark.owl#$1", "subjects": ["Health", "Genomic and Proteomic", "Anatomy", "Human"]}}, "bioportal.nigo": {"bioportal": {"name": "Neural-Immune Gene Ontology", "prefix": "NIGO", "uri_format": "http://purl.obolibrary.org/obo/GO_$1", "subjects": ["Biological Process", "Other", "Human"]}}, "bioportal.npi": {"bioportal": {"name": "Non-Pharmacological Interventions (NPIs)", "prefix": "NPI", "uri_format": "http://purl.bioontology.org/ontology/NPI#$1", "subjects": ["Health"]}}, "bioportal.oboe-sbc": {"bioportal": {"name": "Santa Barbara Coastal Observation Ontology", "prefix": "OBOE-SBC", "uri_format": "https://code.ecoinformatics.org/code/semtools/trunk/dev/oboe/oboe-sbc.owl#$1", "subjects": ["Other"]}}, "bioportal.apacomputer": {"bioportal": {"name": "Computer Cluster", "prefix": "APACOMPUTER", "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1", "subjects": ["Vocabularies"]}}, "bioportal.repo": {"bioportal": {"name": "Reproductive Trait and Phenotype Ontology", "prefix": "REPO", "uri_format": "http://purl.bioontology.org/ontology/REPO.owl#$1", "subjects": ["Phenotype"]}}, "bioportal.flopo": {"bioportal": {"name": "Flora Phenotype Ontology", "prefix": "FLOPO", "uri_format": "http://purl.obolibrary.org/obo/FLOPO_$1", "subjects": ["Phenotype", "Plant"]}}, "bioportal.gbol": {"bioportal": {"name": "GBOL", "prefix": "GBOL", "uri_format": "http://gbol.life/0.1$1", "subjects": ["All Organisms"]}}, "bioportal.dct": {"bioportal": {"name": "DC Terms", "prefix": "DCT", "uri_format": "http://purl.org/dc/terms$1", "subjects": ["Other"]}}, "bioportal.covid-19-ont-pm": {"bioportal": {"name": "COVID-19OntologyInPatternMedicine", "prefix": "COVID-19-ONT-PM", "uri_format": "http://www.semanticweb.org/hanfei/ontologies/2020/9/untitled-ontology-1306#$1", "subjects": ["Biomedical Resources"]}}, "bioportal.rvo": {"bioportal": {"name": "Research Variable Ontology", "prefix": "RVO", "uri_format": "http://w3id.org/rv-ontology#$1", "subjects": ["Other"]}}, "bioportal.zp": {"bioportal": {"name": "Zebrafish Phenotype Ontology", "prefix": "ZP", "uri_format": "http://purl.obolibrary.org/obo/ZP_$1", "subjects": ["Phenotype"]}}, "bioportal.apatreatment": {"bioportal": {"name": "APA Treatment Cluster", "prefix": "APATREATMENT", "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1", "subjects": ["Vocabularies"]}}, "bioportal.icdo": {"bioportal": {"name": "International Classification of Diseases Ontology", "prefix": "ICDO", "uri_format": "http://purl.obolibrary.org/obo/ICDO_$1", "subjects": ["Health", "Human"]}}, "bioportal.ccf": {"bioportal": {"name": "HuBMAP Common Coordinate Framework", "prefix": "CCF", "uri_format": "https://purl.org/ccf/ASCTB-TEMP_$1", "subjects": ["Biomedical Resources", "Human", "Cell"]}}, "bioportal.bsao": {"bioportal": {"name": "Botryllus schlosseri anatomy and development ontology", "prefix": "BSAO", "uri_format": "http://purl.obolibrary.org/obo/BSA_$1", "subjects": ["Anatomy"]}}, "bioportal.vso": {"bioportal": {"name": "Vital Sign Ontology", "prefix": "VSO", "uri_format": "http://purl.obolibrary.org/obo/VSO_$1", "subjects": ["Health"]}}, "bioportal.kenyaanc": {"bioportal": {"name": "kenyaancfile", "prefix": "KENYAANC", "uri_format": "http://www.w3.org/2004/02/skos/core#$1", "subjects": []}}, "bioportal.aceso": {"bioportal": {"name": "Adverse Childhood Experiences Ontology", "prefix": "ACESO", "uri_format": "http://www.semanticweb.org/cbmi/ontologies/2018/10/aceso#$1", "subjects": []}}, "bioportal.cn": {"bioportal": {"name": "computer network", "prefix": "CN", "uri_format": "http://mmisw.org/ont/Technology/ComputerNetworks$1", "subjects": []}}, "bioportal.eupath": {"bioportal": {"name": "VEuPathDB Ontology", "prefix": "EUPATH", "uri_format": "http://purl.obolibrary.org/obo/EUPATH_$1", "subjects": ["Biomedical Resources"]}}, "bioportal.airbus": {"bioportal": {"name": "Airbus", "prefix": "AIRBUS", "uri_format": "http://protege.stanford.edu/thesauri/aero$1", "subjects": []}}, "bioportal.mono": {"bioportal": {"name": "Monogenean Ontology", "prefix": "MONO", "uri_format": "http://www.owl-ontologies.com/MO.owl#$1", "subjects": []}}, "bioportal.vandf": {"bioportal": {"name": "Veterans Health Administration National Drug File", "prefix": "VANDF", "uri_format": "http://purl.bioontology.org/ontology/VANDF$1", "subjects": ["Health"]}}, "bioportal.rao": {"bioportal": {"name": "Rheumatoid Arthritis ontology", "prefix": "RAO", "uri_format": "http://bmi.utah.edu/ontologies/peontology$1", "subjects": ["Health", "Biomedical Resources", "Human", "Vocabularies"]}}, "bioportal.onl-tasks": {"bioportal": {"name": "Cognitive Reserves Assessment Tasks", "prefix": "ONL-TASKS", "uri_format": "http://www.semanticweb.org/bakaev/ontologies/2020/3/untitled-ontology-25#$1", "subjects": ["Health", "Neurological Disorder", "Human"]}}, "bioportal.panet": {"bioportal": {"name": "PaN Experimental technique", "prefix": "PANET", "uri_format": "http://purl.org/pan-science/PaNET$1", "subjects": ["Other"]}}, "bioportal.mido": {"bioportal": {"name": "Medical Imaging and Diagnostic Ontology", "prefix": "MIDO", "uri_format": "http://radlex.org/RID$1", "subjects": ["Imaging", "Health", "Biomedical Resources", "Biological Process", "Anatomy", "Human"]}}, "bioportal.mineral": {"bioportal": {"name": "Material Mineral", "prefix": "MINERAL", "uri_format": "http://sweet.jpl.nasa.gov/2.3/matrMineral.owl#$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.vodananigeria": {"bioportal": {"name": "VODANANIGERIA", "prefix": "VODANANIGERIA", "uri_format": "https://github.com/mariambasajja$1", "subjects": ["Health"]}}, "bioportal.ino": {"bioportal": {"name": "Interaction Network Ontology", "prefix": "INO", "uri_format": "http://purl.obolibrary.org/obo/INO_$1", "subjects": ["All Organisms", "Biological Process"]}}, "bioportal.paco": {"bioportal": {"name": "Physical Activity Ontology", "prefix": "PACO", "uri_format": "http://www.semanticweb.org/hyk038/ontologies/2018/7/untitled-ontology-17#$1", "subjects": ["Health", "Other", "Human"]}}, "bioportal.iso-food": {"bioportal": {"name": "A formal representation of the knowledge within the domain of Isotopes for Food Science", "prefix": "ISO-FOOD", "uri_format": "http://www.semanticweb.org/tome/ontologies/2018/3/ISO-FOOD#$1", "subjects": ["Chemical"]}}, "bioportal.lungmap_m_cell": {"bioportal": {"name": "Cell Ontology for Mouse Lung Maturation", "prefix": "LUNGMAP_M_CELL", "uri_format": "http://purl.obolibrary.org/obo/LMMA_$1", "subjects": ["Cell"]}}, "bioportal.diab": {"bioportal": {"name": "BioMedBridges Diabetes Ontology", "prefix": "DIAB", "uri_format": "http://purl.obolibrary.org/obo/HP_$1", "subjects": []}}, "bioportal.mamo": {"bioportal": {"name": "Mathematical Modelling Ontology", "prefix": "MAMO", "uri_format": "http://identifiers.org/mamo/MAMO_$1", "subjects": ["Other"]}}, "bioportal.mnr": {"bioportal": {"name": "Material Natural Resource ", "prefix": "MNR", "uri_format": "http://sweet.jpl.nasa.gov/2.3/matrNaturalResource.owl#$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.ecto": {"bioportal": {"name": "Environmental conditions, treatments and exposures ontology", "prefix": "ECTO", "uri_format": "http://purl.obolibrary.org/obo/ECTO_$1", "subjects": ["Other"]}}, "bioportal.mso": {"bioportal": {"name": "Multiple sclerosis ontology", "prefix": "MSO", "uri_format": "http://scai.fraunhofer.de/MSOntology#$1", "subjects": ["Neurologic Disease"]}}, "bioportal.csso": {"bioportal": {"name": "Clinical Signs and Symptoms Ontology", "prefix": "CSSO", "uri_format": "http://purl.jp/bio/11/csso/CSSO_$1", "subjects": ["Health"]}}, "bioportal.ontoneo": {"bioportal": {"name": "Obstetric and Neonatal Ontology", "prefix": "ONTONEO", "uri_format": "http://purl.obolibrary.org/obo/ONTONEO_$1", "subjects": ["Health", "Biomedical Resources", "Human"]}}, "bioportal.tephram4mexample": {"bioportal": {"name": "Tephra M4M Example", "prefix": "TEPHRAM4MEXAMPLE", "uri_format": "https://example.com/tephra/vocs/m4m-tephra$1", "subjects": ["Other"]}}, "bioportal.bim": {"bioportal": {"name": "Biomedical Image Ontology", "prefix": "BIM", "uri_format": "http://cbakerlab.unbsj.ca:8080/ontologies/BIM.owl#$1", "subjects": ["Imaging"]}}, "bioportal.ep": {"bioportal": {"name": "Cardiac Electrophysiology Ontology", "prefix": "EP", "uri_format": "http://www.cvrgrid.org/ontologies/Electrophysiology#$1", "subjects": ["Experimental Conditions"]}}, "bioportal.opdzimbabwe": {"bioportal": {"name": "OPDZimbabwe", "prefix": "OPDZIMBABWE", "uri_format": "http://www.vocab.vodana.org/vocabularies/opd$1", "subjects": ["Vocabularies"]}}, "bioportal.tdwgspec": {"bioportal": {"name": "TDWG Specimen LSID Ontology", "prefix": "TDWGSPEC", "uri_format": "http://rs.tdwg.org/ontology/voc/Specimen#$1", "subjects": ["Taxonomic Classification"]}}, "bioportal.eo1": {"bioportal": {"name": "Example Ontology", "prefix": "EO1", "uri_format": "http://www.fairdatacollective.com/template-vocabulary$1", "subjects": []}}, "bioportal.fg": {"bioportal": {"name": "FAIR Genomes", "prefix": "FG", "uri_format": "https://w3id.org/fair-genomes/ontology$1", "subjects": ["Health", "Biomedical Resources", "Genomic and Proteomic", "Human"]}}, "bioportal.sso": {"bioportal": {"name": "Syndromic Surveillance Ontology", "prefix": "SSO", "uri_format": "http://surveillance.mcgill.ca/sso/syndromes.owl#$1", "subjects": ["Taxonomic Classification", "Biomedical Resources"]}}, "bioportal.ato": {"bioportal": {"name": "Amphibian Taxonomy Ontology", "prefix": "ATO", "uri_format": "http://purl.obolibrary.org/obo/ATO_$1", "subjects": ["Taxonomic Classification"]}}, "bioportal.mfoem": {"bioportal": {"name": "Emotion Ontology", "prefix": "MFOEM", "uri_format": "http://purl.obolibrary.org/obo/MFOEM_$1", "subjects": ["Other"]}}, "bioportal.ontolurgences": {"bioportal": {"name": "Emergency care ontology", "prefix": "ONTOLURGENCES", "uri_format": "http://www.limics.fr/ontologies/ontolurgences#$1", "subjects": ["Health"]}}, "bioportal.contsonto": {"bioportal": {"name": "Continuity of care", "prefix": "CONTSONTO", "uri_format": "https://contsys.org/concept/healthcare_$1", "subjects": ["Health"]}}, "bioportal.tim": {"bioportal": {"name": "Terra Interoperability Model", "prefix": "TIM", "uri_format": "http://purl.obolibrary.org/obo/OBI_$1", "subjects": ["Biomedical Resources"]}}, "bioportal.plana": {"bioportal": {"name": "Planarian Anatomy and Developmental Stage Ontolgoy", "prefix": "PLANA", "uri_format": "http://purl.obolibrary.org/obo/PLANA_$1", "subjects": ["Anatomy", "Development", "Animal Gross Anatomy", "Animal Development"]}}, "bioportal.afo": {"bioportal": {"name": "Allotrope Merged Ontology Suite", "prefix": "AFO", "uri_format": "http://purl.allotrope.org/ontologies/result#$1", "subjects": ["Chemical"]}}, "bioportal.acgt-mo": {"bioportal": {"name": "Cancer Research and Management ACGT Master Ontology", "prefix": "ACGT-MO", "uri_format": "http://www.ifomis.org/acgt/1.0#$1", "subjects": ["Health"]}}, "bioportal.tok": {"bioportal": {"name": "Terminological and Ontological Knowledge Resources Ontology", "prefix": "TOK", "uri_format": "http://cui.unige.ch/isi/onto/tok/TOK.owl#$1", "subjects": ["Taxonomic Classification"]}}, "bioportal.npokb": {"bioportal": {"name": "Neuron Phenotype Ontology", "prefix": "NPOKB", "uri_format": "http://purl.obolibrary.org/obo/UBERON_$1", "subjects": ["Cellular anatomy ", "Phenotype", "Cell"]}}, "bioportal.upa": {"bioportal": {"name": "Unipathway", "prefix": "UPA", "uri_format": "http://purl.obolibrary.org/obo/UPa_$1", "subjects": []}}, "bioportal.eld": {"bioportal": {"name": "EthiopianListOfDiseases", "prefix": "ELD", "uri_format": "https://github.com/VODANA$1", "subjects": ["Vocabularies"]}}, "bioportal.iso19115ci": {"bioportal": {"name": "ISO 19115 Citation Information", "prefix": "ISO19115CI", "uri_format": "http://def.isotc211.org/iso19115/-1/2014/CitationAndResponsiblePartyInformation#$1", "subjects": ["Other"]}}, "bioportal.mixs": {"bioportal": {"name": "Minimal Information about any Sequence Ontology", "prefix": "MIXS", "uri_format": "https://w3id.org/mixs/vocab$1", "subjects": ["Experimental Conditions", "All Organisms", "Molecule", "Other", "Vocabularies"]}}, "bioportal.maxo": {"bioportal": {"name": "Medical Action Ontology", "prefix": "MAXO", "uri_format": "http://purl.obolibrary.org/obo/MAXO_$1", "subjects": []}}, "bioportal.mfo": {"bioportal": {"name": "Medaka Fish Anatomy and Development Ontology", "prefix": "MFO", "uri_format": "http://purl.obolibrary.org/obo/MFO_$1", "subjects": ["Fish Anatomy", "Gross Anatomy", "Anatomy", "Animal Gross Anatomy"]}}, "bioportal.pgxo": {"bioportal": {"name": "PGxO", "prefix": "PGXO", "uri_format": "http://pgxo.loria.fr$1", "subjects": ["Biomedical Resources"]}}, "bioportal.orcs": {"bioportal": {"name": "Ontology for Representing CDM Semantics", "prefix": "ORCS", "uri_format": "http://purl.obolibrary.org/obo/ORCS_$1", "subjects": ["Health"]}}, "bioportal.panda": {"bioportal": {"name": "Probabilistic Knowledge Assembly Ontology", "prefix": "PANDA", "uri_format": "http://purl.bioontology.org/net/brunel/panda#$1", "subjects": []}}, "bioportal.elig": {"bioportal": {"name": "Eligibility Feature Hierarchy", "prefix": "ELIG", "uri_format": "http://www.semanticweb.org/ontologies/2012/8/Ontology1348158066194.owl#$1", "subjects": []}}, "bioportal.ogg-mm": {"bioportal": {"name": "Ontology of Genes and Genomes - Mouse", "prefix": "OGG-MM", "uri_format": "http://purl.obolibrary.org/obo/OGG_$1", "subjects": ["Molecule", "Biomedical Resources", "Genomic and Proteomic"]}}, "bioportal.stato": {"bioportal": {"name": "Statistics Ontology", "prefix": "STATO", "uri_format": "http://purl.obolibrary.org/obo/STATO_$1", "subjects": ["Experimental Conditions", "Biomedical Resources"]}}, "bioportal.pts": {"bioportal": {"name": "Pathway Terminology System", "prefix": "PTS", "uri_format": "http://scai.fraunhofer.de/PTS#$1", "subjects": []}}, "bioportal.chmo": {"bioportal": {"name": "Chemical Methods Ontology", "prefix": "CHMO", "uri_format": "http://purl.obolibrary.org/obo/CHMO_$1", "subjects": ["Chemical"]}}, "bioportal.fast-genreform": {"bioportal": {"name": "FAST (Faceted Access of Subject Terminology) GenreForm", "prefix": "FAST-GENREFORM", "uri_format": "http://id.loc.gov/authorities/subjects$1", "subjects": ["Other"]}}, "bioportal.eco": {"bioportal": {"name": "Evidence and Conclusion Ontology", "prefix": "ECO", "uri_format": "http://purl.obolibrary.org/obo/ECO_$1", "subjects": ["Other"]}}, "bioportal.bin": {"bioportal": {"name": "Body in Numbers project terminology", "prefix": "BIN", "uri_format": "http://purl.bioontology.org/ontology/BIN/BIN_$1", "subjects": ["Taxonomic Classification", "Vocabularies"]}}, "bioportal.iso19115cc": {"bioportal": {"name": "ISO 19115 Common Classes", "prefix": "ISO19115CC", "uri_format": "http://def.isotc211.org/iso19115/-1/2014/CommonClasses#$1", "subjects": ["Other"]}}, "bioportal.wear": {"bioportal": {"name": "WEAR: Wind Energy mAteRials Taxonomy", "prefix": "WEAR", "uri_format": "http://purl.org/wear$1", "subjects": []}}, "bioportal.epip": {"bioportal": {"name": "Epigenetic Process", "prefix": "EPIP", "uri_format": "https://pat.nichd.nih.gov/patepigeneticprocess$1", "subjects": ["Biological Process"]}}, "bioportal.issva": {"bioportal": {"name": "International Society for the Study of Vascular Anomalies (ISSVA) Ontology", "prefix": "ISSVA", "uri_format": "http://purl.bioontology.org/ontology/ISSVA/ISSVA_$1", "subjects": ["Health"]}}, "bioportal.eo": {"bioportal": {"name": "Ethnicity Ontoloy", "prefix": "EO", "uri_format": "http://www.semanticweb.org/ethnicityOntology#$1", "subjects": ["Other"]}}, "bioportal.pdo": {"bioportal": {"name": "Pathogenic Disease Ontology", "prefix": "PDO", "uri_format": "http://purl.jp/bio/11/pdo/PDO_$1", "subjects": ["Health"]}}, "bioportal.home": {"bioportal": {"name": "Health Ontology for Minority Equity", "prefix": "HOME", "uri_format": "http://www.semanticweb.org/navyarenjith/ontologies/2021/3/untitled-ontology-5#$1", "subjects": ["Health", "Human"]}}, "bioportal.cno_acronym": {"bioportal": {"name": "CNO_NAME", "prefix": "CNO_ACRONYM", "uri_format": "http://purl.org/incf/ontology/Computational_Neurosciences/cno_alpha.owl#$1", "subjects": []}}, "bioportal.doccc": {"bioportal": {"name": "Diagnosis Ontology of Clinical Care Classification", "prefix": "DOCCC", "uri_format": "http://www.semanticweb.org/hll/ontologies/2013/8/untitled-ontology-2#$1", "subjects": ["Health"]}}, "bioportal.cpt": {"bioportal": {"name": "CPT - Current Procedural Terminology", "prefix": "CPT", "uri_format": "http://purl.bioontology.org/ontology/CPT$1", "subjects": ["Other"]}}, "bioportal.onl-dp": {"bioportal": {"name": "Dataset processing", "prefix": "ONL-DP", "uri_format": "http://neurolog.unice.fr/ontoneurolog/v3.0/ontoneurolog-extension-of-dolce.owl#$1", "subjects": ["Imaging"]}}, "bioportal.apatandt": {"bioportal": {"name": "APA Tests and Testing cluster", "prefix": "APATANDT", "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1", "subjects": ["Vocabularies"]}}, "bioportal.syn": {"bioportal": {"name": "Sage Bionetworks Synapse Ontology", "prefix": "SYN", "uri_format": "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#$1", "subjects": []}}, "bioportal.ocmr": {"bioportal": {"name": "Ontology of Chinese Medicine for Rheumatism", "prefix": "OCMR", "uri_format": "http://purl.obolibrary.org/obo/CHEBI_$1", "subjects": ["Health", "Human"]}}, "bioportal.legalapa": {"bioportal": {"name": "legalapa", "prefix": "LEGALAPA", "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1", "subjects": []}}, "bioportal.sep": {"bioportal": {"name": "Sample Processing and Separation Techniques Ontology", "prefix": "SEP", "uri_format": "http://purl.obolibrary.org/obo/sep_$1", "subjects": []}}, "bioportal.apaocuemploy": {"bioportal": {"name": "APA Occupational and Employment cluster", "prefix": "APAOCUEMPLOY", "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1", "subjects": ["Vocabularies"]}}, "bioportal.aeo": {"bioportal": {"name": "Anatomical Entity Ontology", "prefix": "AEO", "uri_format": "http://purl.obolibrary.org/obo/AEO_$1", "subjects": ["Anatomy"]}}, "bioportal.nero": {"bioportal": {"name": "Named Entity Recognition Ontology ", "prefix": "NERO", "uri_format": "http://www.cs.man.ac.uk/~stevensr/ontology/ner.owl#$1", "subjects": ["Biomedical Resources"]}}, "bioportal.piero": {"bioportal": {"name": "Enzyme Reaction Ontology for annotating Partial Information of chemical transformation", "prefix": "PIERO", "uri_format": "http://reactionontology.org/piero$1", "subjects": []}}, "bioportal.osm": {"bioportal": {"name": "Ontologia de Sa\u00fade Mental", "prefix": "OSM", "uri_format": "https://saudeconectada.org/saude_mental.owl#$1", "subjects": []}}, "bioportal.matrrockigneous": {"bioportal": {"name": "Material Rock Igneouus", "prefix": "MATRROCKIGNEOUS", "uri_format": "http://sweet.jpl.nasa.gov/2.3/matrRockIgneous.owl#$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.orth": {"bioportal": {"name": "Orthology Ontology", "prefix": "ORTH", "uri_format": "http://purl.org/net/orth#$1", "subjects": ["All Organisms", "Genomic and Proteomic"]}}, "bioportal.reto": {"bioportal": {"name": "Regulation of Transcription Ontology", "prefix": "RETO", "uri_format": "http://identifiers.org/uniprot$1", "subjects": ["Biological Process"]}}, "bioportal.lbo": {"bioportal": {"name": "Livestock Breed Ontology", "prefix": "LBO", "uri_format": "http://purl.obolibrary.org/obo/LBO_$1", "subjects": []}}, "bioportal.id-amr": {"bioportal": {"name": "Infectious Diseases and Antimicrobial Resistance", "prefix": "ID-AMR", "uri_format": "http://purl.org/zonmw/id-amr$1", "subjects": ["Health"]}}, "bioportal.geo": {"bioportal": {"name": "Geographical Entity Ontology", "prefix": "GEO", "uri_format": "http://purl.obolibrary.org/obo/GEO_$1", "subjects": []}}, "bioportal.edam-bioimaging": {"bioportal": {"name": "EDAM Bioimaging Ontology", "prefix": "EDAM-BIOIMAGING", "uri_format": "http://edamontology.org/topic_$1", "subjects": ["Imaging", "All Organisms", "Other"]}}, "bioportal.iao": {"bioportal": {"name": "Information Artifact Ontology", "prefix": "IAO", "uri_format": "http://purl.obolibrary.org/obo/IAO_$1", "subjects": ["Imaging", "Biomedical Resources", "Other"]}}, "bioportal.adw": {"bioportal": {"name": "Animal Natural History and Life History Ontology", "prefix": "ADW", "uri_format": "http://www.owl-ontologies.com/unnamed.owl#$1", "subjects": ["Anatomy"]}}, "bioportal.ope": {"bioportal": {"name": "Ontology of Physical Exercises", "prefix": "OPE", "uri_format": "http://www.semanticweb.org/ontologies/2013/2/OPE.owl#$1", "subjects": ["Health", "Other", "Anatomy", "Human"]}}, "bioportal.kisao": {"bioportal": {"name": "Kinetic Simulation Algorithm Ontology", "prefix": "KISAO", "uri_format": "http://www.biomodels.net/kisao/KISAO#$1", "subjects": ["Other"]}}, "bioportal.dinto": {"bioportal": {"name": "The Drug-Drug Interactions Ontology", "prefix": "DINTO", "uri_format": "http://purl.obolibrary.org/obo/dinto_$1", "subjects": ["Health"]}}, "bioportal.deb": {"bioportal": {"name": "Devices, Experimental scaffolds and Biomaterials Ontology", "prefix": "DEB", "uri_format": "http://www.semanticweb.org/osnathakimi/ontologies/deb#$1", "subjects": ["Biomedical Resources"]}}, "bioportal.obs": {"bioportal": {"name": "OntoBioStat", "prefix": "OBS", "uri_format": "http://www.semanticweb.org/Thibaut/ontologies/2021/3/OntoBioStat#$1", "subjects": []}}, "bioportal.pvonto": {"bioportal": {"name": "Pharmacovigilance Ontology", "prefix": "PVONTO", "uri_format": "http://neumore.cis.usouthal.edu/ontologies/NeuMORE-v0.1.owl#$1", "subjects": []}}, "bioportal.hp": {"bioportal": {"name": "Human Phenotype Ontology", "prefix": "HP", "uri_format": "http://purl.obolibrary.org/obo/HP_$1", "subjects": ["Health", "Phenotype", "Human"]}}, "bioportal.vodanadiseases": {"bioportal": {"name": "VODANADiseases", "prefix": "VODANADISEASES", "uri_format": "http://vocab.vodan-totafrica.info/vodana-terms/vdiseases$1", "subjects": ["Vocabularies"]}}, "bioportal.ctx": {"bioportal": {"name": "Cerebrotendinous Xanthomatosis Ontology", "prefix": "CTX", "uri_format": "http://www.owl-ontologies.com/OntologyXCT.owl#$1", "subjects": ["Phenotype"]}}, "bioportal.rxno": {"bioportal": {"name": "Name Reaction Ontology", "prefix": "RXNO", "uri_format": "http://purl.obolibrary.org/obo/RXNO_$1", "subjects": ["Chemical"]}}, "bioportal.bspo": {"bioportal": {"name": "Spatial Ontology", "prefix": "BSPO", "uri_format": "http://purl.obolibrary.org/obo/BSPO_$1", "subjects": ["Anatomy"]}}, "bioportal.ecocore": {"bioportal": {"name": "An ontology of core ecological entities", "prefix": "ECOCORE", "uri_format": "http://purl.obolibrary.org/obo/GO_$1", "subjects": ["Other"]}}, "bioportal.aba-amb": {"bioportal": {"name": "Allen Brain Atlas (ABA) Adult Mouse Brain Ontology", "prefix": "ABA-AMB", "uri_format": "http://mouse.brain-map.org/atlas/index.html#$1", "subjects": ["Mouse Anatomy"]}}, "bioportal.iso19115srs": {"bioportal": {"name": "ISO 19115 Reference Systems", "prefix": "ISO19115SRS", "uri_format": "http://www.w3.org/2004/02/skos/core#$1", "subjects": ["Other"]}}, "bioportal.miro": {"bioportal": {"name": "Mosquito Insecticide Resistance", "prefix": "MIRO", "uri_format": "http://purl.obolibrary.org/obo/MIRO_$1", "subjects": ["Phenotype"]}}, "bioportal.ontopbm": {"bioportal": {"name": "Ontology for Process-Based Modeling of Dynamical Systems (OntoPBM)", "prefix": "ONTOPBM", "uri_format": "http://w3id.org/ontopbm#$1", "subjects": ["Other"]}}, "bioportal.bno": {"bioportal": {"name": "Bionutrition Ontology", "prefix": "BNO", "uri_format": "http://www.owl-ontologies.com/Ontology1361987617.owl#$1", "subjects": ["Health", "Biomedical Resources", "Human"]}}, "bioportal.psdo": {"bioportal": {"name": "Performance Summary Display Ontology", "prefix": "PSDO", "uri_format": "http://purl.obolibrary.org/obo/PSDO_$1", "subjects": ["Other"]}}, "bioportal.gro-cpd": {"bioportal": {"name": "Cereal Plant Development Ontology", "prefix": "GRO-CPD", "uri_format": "http://purl.obolibrary.org/obo/GRO_$1", "subjects": ["Plant", "Development", "Plant Development"]}}, "bioportal.ecao": {"bioportal": {"name": "The Echinoderm Anatomy and Development Ontology", "prefix": "ECAO", "uri_format": "http://purl.obolibrary.org/obo/ECAO_$1", "subjects": ["Anatomy"]}}, "bioportal.emif-ad": {"bioportal": {"name": "EMIF-AD ontology", "prefix": "EMIF-AD", "uri_format": "http://www.semanticweb.org/emif/ontologies/2015/AD$1", "subjects": ["Health", "Neurologic Disease"]}}, "bioportal.tm-mer": {"bioportal": {"name": "Traditional Medicine Meridian Value Sets", "prefix": "TM-MER", "uri_format": "http://who.int/ictm/meridians#$1", "subjects": []}}, "bioportal.ahso": {"bioportal": {"name": "Animal Health Surveillance Ontology", "prefix": "AHSO", "uri_format": "https://w3id.org/ahso#$1", "subjects": ["Health", "Biomedical Resources"]}}, "bioportal.co-wheat": {"bioportal": {"name": "Wheat Trait Ontology ", "prefix": "CO-WHEAT", "uri_format": "http://purl.obolibrary.org/obo/CO_$1", "subjects": ["Phenotype", "Plant"]}}, "bioportal.opdront": {"bioportal": {"name": "OPD Register Ontology", "prefix": "OPDRONT", "uri_format": "http://www.fairdatacollective.com/template-vocabulary$1", "subjects": []}}, "bioportal.ethopd": {"bioportal": {"name": "Ethiopian OPD", "prefix": "ETHOPD", "uri_format": "https://github.com/VODANA/Controlled-vocabulary/ethanc$1", "subjects": ["Vocabularies"]}}, "bioportal.enm": {"bioportal": {"name": "eNanoMapper", "prefix": "ENM", "uri_format": "http://purl.enanomapper.org/onto/ENM_$1", "subjects": ["Health", "Chemical"]}}, "bioportal.of": {"bioportal": {"name": "OntoFood", "prefix": "OF", "uri_format": "http://www.owl-ontologies.com/Ontology1435740495.owl#$1", "subjects": ["Health", "Biological Process"]}}, "bioportal.cvdo": {"bioportal": {"name": "Cardiovascular Disease Ontology", "prefix": "CVDO", "uri_format": "http://purl.obolibrary.org/obo/CVDO_$1", "subjects": ["Health"]}}, "bioportal.gmo": {"bioportal": {"name": "Growth Medium Ontology", "prefix": "GMO", "uri_format": "http://purl.jp/bio/10/gmo/GMO_$1", "subjects": ["Other"]}}, "bioportal.comodi": {"bioportal": {"name": "COMODI", "prefix": "COMODI", "uri_format": "http://purl.uni-rostock.de/comodi/comodi#$1", "subjects": ["Development", "Vocabularies"]}}, "bioportal.smo": {"bioportal": {"name": "Syrian Movies Ontology", "prefix": "SMO", "uri_format": "http://www.semanticweb.org/iyaszawde/ontologies/2022/SyrianMoviesOntology#$1", "subjects": []}}, "bioportal.lion": {"bioportal": {"name": "LipidOntology", "prefix": "LION", "uri_format": "http://purl.obolibrary.org/obo/LION_$1", "subjects": ["Molecule", "Physicochemical"]}}, "bioportal.iso19115id": {"bioportal": {"name": "ISO 19115 Identification Information", "prefix": "ISO19115ID", "uri_format": "http://def.isotc211.org/iso19115/2003/IdentificationInformation#$1", "subjects": ["Other"]}}, "bioportal.etanc": {"bioportal": {"name": "ETHIOPIANC", "prefix": "ETANC", "uri_format": "https://github.com/VODANA/Controlled-vocabulary/ethanc$1", "subjects": ["Vocabularies"]}}, "bioportal.vodanamflcode": {"bioportal": {"name": "VODANAFACILITIESLIST", "prefix": "VODANAMFLCODE", "uri_format": "http://vocab.vodana.org/vmfl$1", "subjects": ["Vocabularies"]}}, "bioportal.fisho": {"bioportal": {"name": "Fish Ontology", "prefix": "FISHO", "uri_format": "http://bioportal.bioontology.org/ontologies/FISHO#$1", "subjects": ["Fish Anatomy"]}}, "bioportal.iceo": {"bioportal": {"name": "Integrative and Conjugative Element Ontology", "prefix": "ICEO", "uri_format": "http://purl.obolibrary.org/obo/ICEO_$1", "subjects": ["Other"]}}, "bioportal.diagont": {"bioportal": {"name": "Diagnostic Ontology", "prefix": "DIAGONT", "uri_format": "http://www.owl-ontologies.com/RCTOntology.owl#$1", "subjects": []}}, "bioportal.ogroup": {"bioportal": {"name": "Orthologous Group Ontology", "prefix": "OGROUP", "uri_format": "http://protozoadb.biowebdb.org/22/ogroup#$1", "subjects": ["Gene Product"]}}, "bioportal.sweet": {"bioportal": {"name": "Semantic Web for Earth and Environment Technology Ontology", "prefix": "SWEET", "uri_format": "http://sweetontology.net/propIndex$1", "subjects": []}}, "bioportal.adher_intcare_sp": {"bioportal": {"name": "Adherence and Integrated Care in Spanish", "prefix": "ADHER_INTCARE_SP", "uri_format": "http://www.semanticweb.org/parracarlosl27f/ontologies/2019/4/untitled-ontology-64#$1", "subjects": ["Taxonomic Classification", "Health", "Biomedical Resources", "Other", "Vocabularies"]}}, "bioportal.snpo": {"bioportal": {"name": "Single-Nucleotide Polymorphism (SNP) Ontology", "prefix": "SNPO", "uri_format": "http://www.loria.fr/~coulet/ontology/snpontology/version1.6/snpontology_full.owl#$1", "subjects": ["Genomic and Proteomic"]}}, "bioportal.ctont": {"bioportal": {"name": "Epoch Clinical Trial Ontology", "prefix": "CTONT", "uri_format": "http://epoch.stanford.edu/ClinicalTrialOntology.owl#$1", "subjects": ["Experimental Conditions"]}}, "bioportal.ppo": {"bioportal": {"name": "Plant Phenology Ontology", "prefix": "PPO", "uri_format": "http://purl.obolibrary.org/obo/PPO_$1", "subjects": []}}, "bioportal.atol": {"bioportal": {"name": "Animal Trait Ontology for Livestock", "prefix": "ATOL", "uri_format": "http://opendata.inra.fr/ATOL/ATOL_$1", "subjects": []}}, "bioportal.pnado": {"bioportal": {"name": "Pneumonia Diagnosis Ontology", "prefix": "PNADO", "uri_format": "http://purl.obolibrary.org/obo/PNADO_$1", "subjects": ["Health", "Human"]}}, "bioportal.poro": {"bioportal": {"name": "Porifera Ontology", "prefix": "PORO", "uri_format": "http://purl.obolibrary.org/obo/PORO_$1", "subjects": ["Phenotype", "Anatomy"]}}, "bioportal.dranpto": {"bioportal": {"name": "Dementia-Related Agitation Non-Pharmacological Treatment Ontology", "prefix": "DRANPTO", "uri_format": "http://www.semanticweb.org/zhenyuzhang/ontologies/2019/8/nonpharmacological-intervention-for-agitation-in-dementia-ontology$1", "subjects": ["Taxonomic Classification", "Health", "Vocabularies"]}}, "bioportal.cryoem": {"bioportal": {"name": "Cryo Electron Microscopy", "prefix": "CRYOEM", "uri_format": "http://scipion.i2pc.es/ontology/CRYOEM_$1", "subjects": ["Imaging"]}}, "bioportal.symp": {"bioportal": {"name": "Symptom Ontology", "prefix": "SYMP", "uri_format": "http://purl.obolibrary.org/obo/SYMP_$1", "subjects": ["Health"]}}, "bioportal.cbo": {"bioportal": {"name": "Cell Behavior Ontology", "prefix": "CBO", "uri_format": "http://cbo.biocomplexity.indiana.edu/svn/cbo/trunk/CBO_1_1_2.owl#$1", "subjects": ["All Organisms", "Biological Process", "Cell"]}}, "bioportal.nmosp": {"bioportal": {"name": "NeuroMorpho.Org species ontology", "prefix": "NMOSP", "uri_format": "http://neuromorpho.org/ontologies/NMOSp.owl#$1", "subjects": ["All Organisms"]}}, "bioportal.fplx": {"bioportal": {"name": "FamPlex", "prefix": "FPLX", "uri_format": "http://purl.obolibrary.org/obo/FPLX_$1", "subjects": ["Protein"]}}, "bioportal.teddy": {"bioportal": {"name": "Terminology for the Description of Dynamics", "prefix": "TEDDY", "uri_format": "http://identifiers.org/teddy/TEDDY_$1", "subjects": ["Other"]}}, "bioportal.zonmw-admin-md": {"bioportal": {"name": "ZonMW Administrative Metadata Vocabulary", "prefix": "ZONMW-ADMIN-MD", "uri_format": "http://www.fair-data-collective.com/zonmw/projectadmin$1", "subjects": []}}, "bioportal.bflc": {"bioportal": {"name": "LC BIBFRAME 2.0 Vocabulary Extension", "prefix": "BFLC", "uri_format": "http://id.loc.gov/ontologies/bflc$1", "subjects": []}}, "bioportal.mini-fast-1": {"bioportal": {"name": "mini fast test", "prefix": "MINI-FAST-1", "uri_format": "http://id.loc.gov/authorities/subjects$1", "subjects": []}}, "bioportal.bci-o": {"bioportal": {"name": "Brain-Computer Interaction (BCI) Ontology", "prefix": "BCI-O", "uri_format": "https://w3id.org/BCI-ontology#$1", "subjects": ["Imaging", "Experimental Conditions", "Health", "Biomedical Resources", "Neurologic Disease", "Neurological Disorder", "Human", "Vocabularies", "Upper Level Ontology"]}}, "bioportal.exo": {"bioportal": {"name": "Exposure Ontology", "prefix": "EXO", "uri_format": "http://purl.obolibrary.org/obo/ExO_$1", "subjects": []}}, "bioportal.epo": {"bioportal": {"name": "Early Pregnancy Ontology", "prefix": "EPO", "uri_format": "http://www.semanticweb.org/ontologies/epo.owl#$1", "subjects": ["Imaging"]}}, "bioportal.carelex": {"bioportal": {"name": "Content Archive Resource Exchange Lexicon", "prefix": "CARELEX", "uri_format": "http://www.CareLex.org/2012/carelex.owl#$1", "subjects": ["Vocabularies"]}}, "bioportal.hpio": {"bioportal": {"name": "Host Pathogen Interactions Ontology", "prefix": "HPIO", "uri_format": "http://www.semanticweb.org/ontologies/2010/5/22/Ontology1277229984000.owl#$1", "subjects": ["Health"]}}, "bioportal.bao": {"bioportal": {"name": "BioAssay Ontology", "prefix": "BAO", "uri_format": "http://www.bioassayontology.org/bao#$1", "subjects": ["Molecule", "Biological Process", "Other", "Subcellular", "Chemical", "Cell", "Protein", "Vocabularies", "Physicochemical"]}}, "bioportal.ma": {"bioportal": {"name": "Mouse Adult Gross Anatomy Ontology", "prefix": "MA", "uri_format": "http://purl.obolibrary.org/obo/MA_$1", "subjects": ["Mouse Anatomy", "Gross Anatomy", "Anatomy", "Animal Gross Anatomy"]}}, "bioportal.mim": {"bioportal": {"name": "Molecular Interaction Map", "prefix": "MIM", "uri_format": "http://purl.bioontology.org/ontology/MIM#$1", "subjects": ["Biological Process", "Vocabularies"]}}, "bioportal.rnprio": {"bioportal": {"name": "Research Network and Patient Registry Inventory Ontology", "prefix": "RNPRIO", "uri_format": "http://www.semanticweb.org/ontologies/2013/1/PCORI.owl#$1", "subjects": ["Biomedical Resources"]}}, "bioportal.cpro": {"bioportal": {"name": "Computer-Based Patient Record Ontology", "prefix": "CPRO", "uri_format": "http://purl.org/cpr$1", "subjects": ["Health"]}}, "bioportal.hancestro": {"bioportal": {"name": "Human Ancestry Ontology", "prefix": "HANCESTRO", "uri_format": "http://purl.obolibrary.org/obo/HANCESTRO_$1", "subjects": ["Experimental Conditions", "Human", "Vocabularies"]}}, "bioportal.icps": {"bioportal": {"name": "International Classification for Patient Safety", "prefix": "ICPS", "uri_format": "http://www.ICPS/ontologies/ActionsToReduceRisk#$1", "subjects": ["Health"]}}, "bioportal.suicideo": {"bioportal": {"name": "suicideonto", "prefix": "suicideo", "uri_format": "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#$1", "subjects": ["Other"]}}, "bioportal.nifcell": {"bioportal": {"name": "Neuroscience Information Framework (NIF) Cell Ontology", "prefix": "NIFCELL", "uri_format": "http://ontology.neuinfo.org/NIF/BiomaterialEntities/NIF-Cell.owl#$1", "subjects": []}}, "bioportal.pp": {"bioportal": {"name": "Pipeline Patterns Ontology", "prefix": "PP", "uri_format": "https://bitbucket.org/PlantExpAssay/ontology/raw/v0.1/PipelinePatterns.owl#$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.incentive-vars": {"bioportal": {"name": "INCENTIVE Variables", "prefix": "INCENTIVE-VARS", "uri_format": "http://purl.org/incentive$1", "subjects": []}}, "bioportal.gpml": {"bioportal": {"name": "Graphical Pathway Markup Language", "prefix": "GPML", "uri_format": "http://vocabularies.wikipathways.org/gpml#$1", "subjects": ["Biological Process", "Vocabularies"]}}, "bioportal.chembio": {"bioportal": {"name": "Systems Chemical Biology and Chemogenomics Ontology ", "prefix": "CHEMBIO", "uri_format": "http://chem2bio2rdf.org/chem2bio2rdf.owl#$1", "subjects": ["Molecule", "Biomedical Resources", "Biological Process", "Chemical", "Protein"]}}, "bioportal.mooculado": {"bioportal": {"name": "Molgula oculata Anatomy and Development Ontology", "prefix": "MOOCULADO", "uri_format": "http://purl.obolibrary.org/obo/MooculA_$1", "subjects": ["Anatomy", "Animal Development"]}}, "bioportal.m4m-20-variables": {"bioportal": {"name": "M4M.20 FAIRWare Variables", "prefix": "M4M-20-VARIABLES", "uri_format": "http://purl.org/m4m20/variables$1", "subjects": []}}, "bioportal.exact": {"bioportal": {"name": "An ontology for experimental actions", "prefix": "EXACT", "uri_format": "http://www.owl-ontologies.com/Ontology1184060740.owl#$1", "subjects": []}}, "bioportal.scio": {"bioportal": {"name": "Spinal Cord Injury Ontology", "prefix": "SCIO", "uri_format": "http://psink.de/scio$1", "subjects": ["Experimental Conditions", "Biomedical Resources", "Neurologic Disease", "Neurological Disorder"]}}, "bioportal.aro": {"bioportal": {"name": "Antibiotic Resistance Ontology", "prefix": "ARO", "uri_format": "http://purl.obolibrary.org/obo/ARO_$1", "subjects": []}}, "bioportal.cokpme": {"bioportal": {"name": "COKPME - COVID19 Ontology for analyzing the Karnataka Private Medical Establishments Data ", "prefix": "COKPME", "uri_format": "http://www.iiitdwd.ac.in/ACB/COKPME#$1", "subjects": ["Health", "Biomedical Resources"]}}, "bioportal.hecon": {"bioportal": {"name": "HECON: Health Condition Evolution Ontology", "prefix": "HECON", "uri_format": "http://kmi.open.ac.uk/conrad/HECON#$1", "subjects": ["Health", "Other"]}}, "bioportal.clyh": {"bioportal": {"name": "Clytia hemisphaerica Development and Anatomy Ontology", "prefix": "CLYH", "uri_format": "http://purl.obolibrary.org/obo/CLYH_$1", "subjects": ["Anatomy"]}}, "bioportal.tao": {"bioportal": {"name": "Teleost Anatomy Ontology", "prefix": "TAO", "uri_format": "http://purl.obolibrary.org/obo/TAO_$1", "subjects": ["Fish Anatomy", "Gross Anatomy", "Anatomy", "Animal Gross Anatomy"]}}, "bioportal.cido": {"bioportal": {"name": "Coronavirus Infectious Disease Ontology", "prefix": "CIDO", "uri_format": "http://purl.obolibrary.org/obo/CIDO_$1", "subjects": ["All Organisms", "Health", "Human"]}}, "bioportal.icw": {"bioportal": {"name": "International Classification of Wellness", "prefix": "ICW", "uri_format": "http://webprotege.stanford.edu$1", "subjects": ["Taxonomic Classification", "Health"]}}, "bioportal.vsao": {"bioportal": {"name": "Vertebrate Skeletal Anatomy Ontology", "prefix": "VSAO", "uri_format": "http://purl.obolibrary.org/obo/VSAO_$1", "subjects": ["Fish Anatomy", "Gross Anatomy", "Anatomy", "Animal Gross Anatomy"]}}, "bioportal.inbiodiv": {"bioportal": {"name": "An Ontology for Indian Biodiversity Knowledge Management", "prefix": "INBIODIV", "uri_format": "http://www.semanticweb.org/mca/ontologies/2018/8/untitled-ontology-47#$1", "subjects": []}}, "bioportal.patmhc": {"bioportal": {"name": "Placental Maternal Health Conditions", "prefix": "PATMHC", "uri_format": "http://pat.nichd.nih.gov/maternalconditions$1", "subjects": ["Health"]}}, "bioportal.obi_bcgo": {"bioportal": {"name": "Beta Cell Genomics Ontology", "prefix": "OBI_BCGO", "uri_format": "http://purl.obolibrary.org/obo/BCGO_$1", "subjects": []}}, "bioportal.sp": {"bioportal": {"name": "SMART Protocols", "prefix": "SP", "uri_format": "http://prismstandard.org/namespaces/basic/2.0$1", "subjects": ["Biological Process"]}}, "bioportal.ecp": {"bioportal": {"name": "Electronic Care Plan", "prefix": "ECP", "uri_format": "http://iris.med.duth.gr/research/ecp/ontology/eCP.owl#$1", "subjects": ["Taxonomic Classification", "Health", "Vocabularies"]}}, "bioportal.inverseroles": {"bioportal": {"name": "ISO-15926-2_2003_inverseRoles", "prefix": "INVERSEROLES", "uri_format": "http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#$1", "subjects": ["Other"]}}, "bioportal.cso": {"bioportal": {"name": "Clinical Study Ontology", "prefix": "CSO", "uri_format": "http://webprotege.stanford.edu$1", "subjects": []}}, "bioportal.zeco": {"bioportal": {"name": "Zebrafish Experimental Conditions Ontology", "prefix": "ZECO", "uri_format": "http://purl.obolibrary.org/obo/ZECO_$1", "subjects": ["Experimental Conditions"]}}, "bioportal.wb-ls": {"bioportal": {"name": "C. elegans Development Vocabulary", "prefix": "WB-LS", "uri_format": "http://purl.obolibrary.org/obo/WBls_$1", "subjects": ["Development", "Animal Development"]}}, "bioportal.iso-15926-2_2003": {"bioportal": {"name": "ISO-15926-2_2003_oil", "prefix": "ISO-15926-2_2003", "uri_format": "http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.cto-ndd": {"bioportal": {"name": "Clinical Trials Ontology - Neurodegenerative Diseases", "prefix": "CTO-NDD", "uri_format": "http://www.semanticweb.org/ontologies/2012/0/Ontology1325521724189.owl#$1", "subjects": ["Health", "Biomedical Resources", "Neurological Disorder"]}}, "bioportal.reproduce-me": {"bioportal": {"name": "REPRODUCE-ME", "prefix": "REPRODUCE-ME", "uri_format": "https://w3id.org/reproduceme#$1", "subjects": []}}, "bioportal.esso": {"bioportal": {"name": "Epilepsy Syndrome Seizure Ontology", "prefix": "ESSO", "uri_format": "http://www.semanticweb.org/rjyy/ontologies/2015/5/ESSO#$1", "subjects": ["Neurologic Disease"]}}, "bioportal.dco": {"bioportal": {"name": "Dispedia Core Ontology", "prefix": "DCO", "uri_format": "http://www.dispedia.de/o$1", "subjects": ["Health", "Other", "Human", "Vocabularies"]}}, "bioportal.ethanc": {"bioportal": {"name": "ETHANC", "prefix": "ETHANC", "uri_format": "https://github.com/VODANA/Controlled-vocabulary/ethanc$1", "subjects": ["Vocabularies"]}}, "bioportal.arcrc": {"bioportal": {"name": "Arctic Report Card", "prefix": "ARCRC", "uri_format": "http://purl.dataone.org/odo/ARCRC_$1", "subjects": []}}, "bioportal.propreo": {"bioportal": {"name": "Proteomics Data and Process Provenance Ontology", "prefix": "PROPREO", "uri_format": "http://lsdis.cs.uga.edu/projects/glycomics/propreo#$1", "subjects": []}}, "bioportal.pco": {"bioportal": {"name": "Population and Community Ontology", "prefix": "PCO", "uri_format": "http://purl.obolibrary.org/obo/PCO_$1", "subjects": ["All Organisms", "Other"]}}, "bioportal.dseo": {"bioportal": {"name": "Data Science Education Ontology", "prefix": "DSEO", "uri_format": "http://bigdatau.org/dseo#$1", "subjects": ["Biomedical Resources", "Other"]}}, "bioportal.sopharm": {"bioportal": {"name": "Suggested Ontology for Pharmacogenomics", "prefix": "SOPHARM", "uri_format": "http://www.loria.fr/~coulet/sopharm/SOPHARM_$1", "subjects": ["Genomic and Proteomic"]}}, "bioportal.medlineplus": {"bioportal": {"name": "MedlinePlus Health Topics", "prefix": "MEDLINEPLUS", "uri_format": "http://purl.bioontology.org/ontology/MEDLINEPLUS$1", "subjects": ["Health"]}}, "bioportal.hom": {"bioportal": {"name": "Ontology of Homology and Related Concepts in Biology", "prefix": "HOM", "uri_format": "http://purl.obolibrary.org/obo/HOM_$1", "subjects": ["All Organisms", "Molecule", "Other", "Anatomy", "Development"]}}, "bioportal.cto": {"bioportal": {"name": "Clinical Trials Ontology", "prefix": "CTO", "uri_format": "https://bio.scai.fraunhofer.de/ontology/CTO_$1", "subjects": []}}, "bioportal.ooevv": {"bioportal": {"name": "Ontology of Experimental Variables and Values", "prefix": "OOEVV", "uri_format": "http://bmkeg.isi.edu/ooevv$1", "subjects": ["Vocabularies"]}}, "bioportal.nddo": {"bioportal": {"name": "Neurodegenerative Disease Data Ontology", "prefix": "NDDO", "uri_format": "http://www.purl.org/NDDO/NDDO_$1", "subjects": ["Neurologic Disease", "Neurological Disorder"]}}, "bioportal.ncco": {"bioportal": {"name": "Nursing Care Coordination Ontology", "prefix": "NCCO", "uri_format": "http://www.semanticweb.org/vanessa/ontologies/2012/7/untitled-ontology-33#$1", "subjects": ["Health"]}}, "bioportal.pav": {"bioportal": {"name": "PAV Provenance, Authoring and Versioning", "prefix": "PAV", "uri_format": "http://xmlns.com/foaf/0.1$1", "subjects": ["Other", "Vocabularies"]}}, "bioportal.esfo": {"bioportal": {"name": "Enzyme Structure Function Ontology", "prefix": "ESFO", "uri_format": "http://www.semanticweb.org/shoshana/ontologies/2014/8/untitled-ontology-8#$1", "subjects": ["Protein"]}}, "bioportal.phylont": {"bioportal": {"name": "Phylogenetic Ontology", "prefix": "PHYLONT", "uri_format": "http://www.co-ode.org/ontologies/ont.owl#$1", "subjects": ["Other"]}}, "bioportal.go-ext": {"bioportal": {"name": "Gene Ontology Extension", "prefix": "GO-EXT", "uri_format": "http://purl.obolibrary.org/obo/GO_$1", "subjects": []}}, "bioportal.rdo": {"bioportal": {"name": "Reusable Biodiversity Ontology", "prefix": "RDO", "uri_format": "http://www.semanticweb.org/mca/ontologies/2018/8/untitled-ontology-47#$1", "subjects": []}}, "bioportal.itemas": {"bioportal": {"name": "Medical Technology Innovation in healthcare centers", "prefix": "ITEMAS", "uri_format": "http://www.semanticweb.org/avl/ontologies/2017/7/ITEMAS_v1.2#$1", "subjects": ["Other"]}}, "bioportal.so": {"bioportal": {"name": "Sequence Types and Features Ontology", "prefix": "SO", "uri_format": "http://purl.obolibrary.org/obo/SO_$1", "subjects": ["Genomic and Proteomic"]}}, "bioportal.obi": {"bioportal": {"name": "Ontology for Biomedical Investigations", "prefix": "OBI", "uri_format": "http://purl.obolibrary.org/obo/OBI_$1", "subjects": ["Experimental Conditions"]}}, "bioportal.mmusdv": {"bioportal": {"name": "Mouse Developmental Stages", "prefix": "MMUSDV", "uri_format": "http://purl.obolibrary.org/obo/MmusDv_$1", "subjects": []}}, "bioportal.gco": {"bioportal": {"name": "Genome Component Ontology", "prefix": "GCO", "uri_format": "http://rdf.biosemantics.org/ontologies/genomecomponents#$1", "subjects": ["Biomedical Resources", "Genomic and Proteomic"]}}, "bioportal.apaneurocluster": {"bioportal": {"name": "APA Neuro Cluster", "prefix": "APANEUROCLUSTER", "uri_format": "http://www.semanticweb.org/ontologies/2015/0/apaneurocluster.owl#$1", "subjects": ["Vocabularies"]}}, "bioportal.vio": {"bioportal": {"name": "Vaccine Investigation Ontology", "prefix": "VIO", "uri_format": "http://purl.obolibrary.org/obo/VO_$1", "subjects": []}}, "bioportal.ons": {"bioportal": {"name": "Ontology for Nutritional Studies", "prefix": "ONS", "uri_format": "http://purl.obolibrary.org/obo/ONS_$1", "subjects": ["Experimental Conditions", "Health", "Biomedical Resources", "Human"]}}, "bioportal.omp": {"bioportal": {"name": "Ontology of Microbial Phenotypes", "prefix": "OMP", "uri_format": "http://purl.obolibrary.org/obo/OMP_$1", "subjects": ["Phenotype"]}}, "bioportal.wetaxtopics": {"bioportal": {"name": "NEAT: wiNd Energy tAxonomy of Topics", "prefix": "WETAXTOPICS", "uri_format": "http://purl.org/neat$1", "subjects": ["Taxonomic Classification"]}}, "bioportal.pdq": {"bioportal": {"name": "Physician Data Query", "prefix": "PDQ", "uri_format": "http://purl.bioontology.org/ontology/PDQ$1", "subjects": ["Health"]}}, "bioportal.fb-bt": {"bioportal": {"name": "Drosophila Gross Anatomy Ontology", "prefix": "FB-BT", "uri_format": "http://purl.obolibrary.org/obo/FBbt_$1", "subjects": ["Gross Anatomy", "Anatomy", "Animal Gross Anatomy"]}}, "bioportal.ifar": {"bioportal": {"name": "Fanconi Anemia Ontology", "prefix": "IFAR", "uri_format": "http://www.semanticweb.org/ontologies/2012/11/abnormalities.owl#$1", "subjects": ["Other"]}}, "bioportal.go": {"bioportal": {"name": "Gene Ontology", "prefix": "GO", "uri_format": "http://purl.obolibrary.org/obo/GO_$1", "subjects": ["Genomic and Proteomic"]}}, "bioportal.covid-19": {"bioportal": {"name": "COVID-19 Ontology", "prefix": "COVID-19", "uri_format": "http://purl.obolibrary.org/obo/GO_$1", "subjects": ["Immunology", "Health", "Human"]}}, "bioportal.plantso": {"bioportal": {"name": "Plant Stress Ontology", "prefix": "PLANTSO", "uri_format": "http://purl.obolibrary.org/obo/NCBITaxon_$1", "subjects": ["Plant"]}}, "bioportal.bfo": {"bioportal": {"name": "Basic Formal Ontology", "prefix": "BFO", "uri_format": "http://purl.obolibrary.org/obo/BFO_$1", "subjects": ["Upper Level Ontology"]}}, "bioportal.mhc": {"bioportal": {"name": "Major Histocompatibility Complex Ontology", "prefix": "MHC", "uri_format": "http://purl.org/stemnet/MHC#$1", "subjects": ["Genomic and Proteomic"]}}, "bioportal.rdfs": {"bioportal": {"name": "The RDF Schema vocabulary", "prefix": "RDFS", "uri_format": "http://www.w3.org/2000/01/rdf-schema#$1", "subjects": ["Vocabularies"]}}, "bioportal.dloro": {"bioportal": {"name": "Dependency Layered Ontology for Radiation Oncology", "prefix": "DLORO", "uri_format": "http://www.semanticweb.org/alan/ontologies/2013/8/untitled-ontology-9#$1", "subjects": ["Human", "Vocabularies"]}}, "bioportal.pdo_cas": {"bioportal": {"name": "Plant Diversity Ontology", "prefix": "PDO_CAS", "uri_format": "http://www.stkos-ontology/domain/plantbiodiversity#$1", "subjects": ["Plant"]}}, "bioportal.dron": {"bioportal": {"name": "The Drug Ontology", "prefix": "DRON", "uri_format": "http://purl.obolibrary.org/obo/DRON_$1", "subjects": ["Health", "Human"]}}, "bioportal.sto-draft": {"bioportal": {"name": "The Stroke Ontology", "prefix": "STO-DRAFT", "uri_format": "http://www.semanticweb.org/ontologies/STO.owl#$1", "subjects": []}}, "bioportal.iso19108to": {"bioportal": {"name": "ISO 19108 Temporal Objects", "prefix": "ISO19108TO", "uri_format": "http://def.isotc211.org/iso19108/2006/TemporalObjects#$1", "subjects": ["Other"]}}, "bioportal.hsapdv": {"bioportal": {"name": "Human Developmental Stages Ontology", "prefix": "HSAPDV", "uri_format": "http://purl.obolibrary.org/obo/HsapDv_$1", "subjects": []}}, "bioportal.onl-msa": {"bioportal": {"name": "Mental State Assessment", "prefix": "ONL-MSA", "uri_format": "http://neurolog.unice.fr/ontoneurolog/v3.0/ontoneurolog-mental-state-assessment.owl#$1", "subjects": ["Health", "Neurological Disorder", "Human"]}}, "bioportal.vivo-isf": {"bioportal": {"name": "VIVO-Integrated Semantic Framework", "prefix": "VIVO-ISF", "uri_format": "http://www.w3.org/2006/vcard/ns#$1", "subjects": ["Other"]}}, "bioportal.bof": {"bioportal": {"name": "Biodiversity Ontology", "prefix": "BOF", "uri_format": "http://www.owl-ontologies.com/BiodiversityOntologyFull.owl#$1", "subjects": []}}, "bioportal.sdo": {"bioportal": {"name": "Sleep Domain Ontology", "prefix": "SDO", "uri_format": "http://mimi.case.edu/ontologies/2009/1/SDO.owl#$1", "subjects": ["Health", "Phenotype", "Neurologic Disease", "Neurological Disorder", "Human"]}}, "bioportal.land-surface": {"bioportal": {"name": "Land Surface classifiers", "prefix": "LAND-SURFACE", "uri_format": "http://anzsoil.org/def/au/asls/land-surface$1", "subjects": ["Vocabularies"]}}, "bioportal.natpro": {"bioportal": {"name": "Natural Products Ontology", "prefix": "NATPRO", "uri_format": "http://www.owl-ontologies.com/NPOntology.owl#$1", "subjects": []}}, "bioportal.ontoreplicov": {"bioportal": {"name": "OntoRepliCov", "prefix": "ONTOREPLICOV", "uri_format": "http://www.semanticweb.org/wissame.laddada/ontologies/2020/9/SARS_CoV_2#$1", "subjects": ["Biological Process"]}}, "bioportal.nbo": {"bioportal": {"name": "Neuro Behavior Ontology", "prefix": "NBO", "uri_format": "http://purl.obolibrary.org/obo/NBO_$1", "subjects": []}}, "bioportal.tcdo": {"bioportal": {"name": "Traditional Chinese Drug Ontology", "prefix": "TCDO", "uri_format": "http://OntoTCM.org.cn/ontologies/TCDO_$1", "subjects": []}}, "bioportal.rda-content": {"bioportal": {"name": "RDA Content type", "prefix": "RDA-CONTENT", "uri_format": "http://rdaregistry.info/termList/RDAContentType$1", "subjects": ["Other"]}}, "bioportal.ontoavida": {"bioportal": {"name": "OntoAvida: ontology for Avida digital evolution platform", "prefix": "ONTOAVIDA", "uri_format": "http://purl.obolibrary.org/obo/ONTOAVIDA_$1", "subjects": ["Other"]}}, "bioportal.gsso": {"bioportal": {"name": "Gender, Sex, and Sexual Orientation Ontology", "prefix": "GSSO", "uri_format": "http://purl.obolibrary.org/obo/GSSO_$1", "subjects": ["Other", "Vocabularies"]}}, "bioportal.pedterm": {"bioportal": {"name": "Pediatric Terminology", "prefix": "PEDTERM", "uri_format": "http://www.owl-ontologies.com/Ontology1358660052.owl#$1", "subjects": ["Health", "Human"]}}, "bioportal.allergydetector": {"bioportal": {"name": "Allergy Detector II", "prefix": "ALLERGYDETECTOR", "uri_format": "file://C:/Users/Nelson/workspace/JenaTutorial/src/br/com/allergydetector/resources/AllergyDetector.owl#$1", "subjects": ["Dysfunction"]}}, "bioportal.insecth": {"bioportal": {"name": "insectH", "prefix": "INSECTH", "uri_format": "http://neuromorpho.org/ontologies/insectH.owl#$1", "subjects": ["Anatomy"]}}, "bioportal.ddanat": {"bioportal": {"name": "Dictyostelium Discoideum Anatomy Ontology", "prefix": "DDANAT", "uri_format": "http://purl.obolibrary.org/obo/DDANAT_$1", "subjects": ["Gross Anatomy", "Anatomy", "Microbial Anatomy"]}}, "bioportal.jerm": {"bioportal": {"name": "Just Enough Results Model Ontology", "prefix": "JERM", "uri_format": "http://jermontology.org/ontology/JERMOntology#$1", "subjects": ["Experimental Conditions", "Biomedical Resources", "Biological Process", "Other"]}}, "bioportal.senso": {"bioportal": {"name": "Sensitive Data Ontology", "prefix": "SENSO", "uri_format": "http://purl.dataone.org/odo/SENSO_$1", "subjects": ["Other", "Vocabularies"]}}, "bioportal.soho": {"bioportal": {"name": "Social Determinants of Health Ontology", "prefix": "SOHO", "uri_format": "http://www.semanticweb.org/navyarenjith/ontologies/2022/1/untitled-ontology-50#$1", "subjects": ["Health", "Human"]}}, "bioportal.peco": {"bioportal": {"name": "Plant Experimental Conditions Ontology", "prefix": "PECO", "uri_format": "http://purl.obolibrary.org/obo/PECO_$1", "subjects": ["Experimental Conditions", "Phenotype", "Plant"]}}, "bioportal.pcao": {"bioportal": {"name": "Prostate Cancer Ontology", "prefix": "PCAO", "uri_format": "http://www.semanticweb.org/ontologies/2018/1/ProstateCancer.owl#$1", "subjects": ["Health", "Human"]}}, "bioportal.gecko": {"bioportal": {"name": "Genomics Cohorts Knowledge Ontology", "prefix": "GECKO", "uri_format": "http://purl.obolibrary.org/obo/GECKO_$1", "subjects": ["Other"]}}, "bioportal.ocvdae": {"bioportal": {"name": "Ontology of Cardiovascular Drug Adverse Events", "prefix": "OCVDAE", "uri_format": "http://purl.obolibrary.org/obo/OAE_$1", "subjects": []}}, "bioportal.dermo": {"bioportal": {"name": "Human Dermatological Disease Ontology", "prefix": "DERMO", "uri_format": "http://purl.obolibrary.org/obo/DERMO_$1", "subjects": ["Biomedical Resources"]}}, "bioportal.nccnehr": {"bioportal": {"name": "NCCN EHR Oncology Categories", "prefix": "NCCNEHR", "uri_format": "http://www.semanticweb.org/lamb/ontologies/NCCN-EHR#$1", "subjects": ["Health", "Biomedical Resources"]}}, "bioportal.phenx": {"bioportal": {"name": "PhenX Phenotypic Terms", "prefix": "PHENX", "uri_format": "http://purl.bioontology.org/ontology/phenX$1", "subjects": ["Phenotype"]}}, "bioportal.snmi": {"bioportal": {"name": "Systematized Nomenclature of Medicine, International Version", "prefix": "SNMI", "uri_format": "http://purl.bioontology.org/ontology/SNMI$1", "subjects": []}}, "bioportal.iso19115dtc": {"bioportal": {"name": "ISO 19115 Date Type Code", "prefix": "ISO19115DTC", "uri_format": "http://def.isotc211.org/iso19115/-1/2014/CitationAndResponsiblePartyInformation/code/CI_/DateTypeCode$1", "subjects": ["Other"]}}, "bioportal.ecg": {"bioportal": {"name": "Electrocardiography Ontology", "prefix": "ECG", "uri_format": "http://www.cvrgrid.org/files/ECGOntologyv1.owl#$1", "subjects": ["Biomedical Resources"]}}, "bioportal.po": {"bioportal": {"name": "Plant Ontology", "prefix": "PO", "uri_format": "http://purl.obolibrary.org/obo/PO_$1", "subjects": ["Plant Anatomy", "Plant", "Plant Development"]}}, "bioportal.covid19-ibo": {"bioportal": {"name": "Covid19 Impact on Banking Ontology", "prefix": "COVID19-IBO", "uri_format": "http://www.semanticweb.org/archana/ontologies/2021/5/untitled-ontology-6#$1", "subjects": ["Other"]}}, "bioportal.mondo": {"bioportal": {"name": "Mondo Disease Ontology", "prefix": "MONDO", "uri_format": "http://purl.obolibrary.org/obo/MONDO_$1", "subjects": []}}, "bioportal.ceph": {"bioportal": {"name": "Cephalopod Ontology", "prefix": "CEPH", "uri_format": "http://purl.obolibrary.org/obo/CEPH_$1", "subjects": ["Anatomy"]}}, "bioportal.htn": {"bioportal": {"name": "Hypertension Ontology", "prefix": "HTN", "uri_format": "http://purl.obolibrary.org/obo/HTN_$1", "subjects": ["Other"]}}} \ No newline at end of file +{ + "bioportal.aba-amb": { + "bioportal": { + "name": "Allen Brain Atlas (ABA) Adult Mouse Brain Ontology", + "prefix": "ABA-AMB", + "subjects": [ + "Mouse Anatomy" + ], + "uri_format": "http://mouse.brain-map.org/atlas/index.html#$1" + } + }, + "bioportal.abd": { + "bioportal": { + "name": "Anthology of Biosurveillance Diseases", + "prefix": "ABD", + "subjects": [ + "All Organisms", + "Health", + "Plant", + "Human" + ], + "uri_format": "http://brd.bsvgateway.org/api/organism$1" + } + }, + "bioportal.aceso": { + "bioportal": { + "name": "Adverse Childhood Experiences Ontology", + "prefix": "ACESO", + "subjects": [], + "uri_format": "http://www.semanticweb.org/cbmi/ontologies/2018/10/aceso#$1" + } + }, + "bioportal.acgt-mo": { + "bioportal": { + "name": "Cancer Research and Management ACGT Master Ontology", + "prefix": "ACGT-MO", + "subjects": [ + "Health" + ], + "uri_format": "http://www.ifomis.org/acgt/1.0#$1" + } + }, + "bioportal.ad-drop": { + "bioportal": { + "name": "Alzheimer Disease Relevance Ontology by Process", + "prefix": "AD-DROP", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://www.semanticweb.org/AD-DROP#$1" + } + }, + "bioportal.adalab": { + "bioportal": { + "name": "AdaLab ontology", + "prefix": "ADALAB", + "subjects": [ + "Biological Process" + ], + "uri_format": "http://purl.obolibrary.org/obo/GO_$1" + } + }, + "bioportal.adalab-meta": { + "bioportal": { + "name": "AdaLab-meta ontology", + "prefix": "ADALAB-META", + "subjects": [ + "Biomedical Resources", + "Other", + "Vocabularies" + ], + "uri_format": "http://rdf.adalab-project.org/ontology/adalab-meta$1" + } + }, + "bioportal.adar": { + "bioportal": { + "name": "Autism DSM-ADI-R ontology", + "prefix": "ADAR", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.org/autism-ontology/1.0/autism-rules.owl#$1" + } + }, + "bioportal.adcad": { + "bioportal": { + "name": "Arctic Data Center Academic Disciplines Ontology", + "prefix": "ADCAD", + "subjects": [], + "uri_format": "https://purl.dataone.org/odo/ADCAD_$1" + } + }, + "bioportal.adher_intcare_en": { + "bioportal": { + "name": "Adherence and Integrated Care", + "prefix": "ADHER_INTCARE_EN", + "subjects": [ + "Taxonomic Classification", + "Health", + "Biomedical Resources", + "Other", + "Vocabularies" + ], + "uri_format": "http://www.semanticweb.org/parracarlos/ontologies/2019/3/untitled-ontology-31#$1" + } + }, + "bioportal.adher_intcare_sp": { + "bioportal": { + "name": "Adherence and Integrated Care in Spanish", + "prefix": "ADHER_INTCARE_SP", + "subjects": [ + "Taxonomic Classification", + "Health", + "Biomedical Resources", + "Other", + "Vocabularies" + ], + "uri_format": "http://www.semanticweb.org/parracarlosl27f/ontologies/2019/4/untitled-ontology-64#$1" + } + }, + "bioportal.admin": { + "bioportal": { + "name": "Nurse Administrator", + "prefix": "ADMIN", + "subjects": [ + "Health" + ], + "uri_format": "http://www.semanticweb.org/philshields/ontologies/2015/4/Administrator.owl#$1" + } + }, + "bioportal.admo": { + "bioportal": { + "name": "Alzheimer Disease Map Ontology", + "prefix": "ADMO", + "subjects": [ + "Biological Process", + "Human" + ], + "uri_format": "http://www.semanticweb.org/ADMO#$1" + } + }, + "bioportal.ado": { + "bioportal": { + "name": "Alzheimer's disease ontology", + "prefix": "ADO", + "subjects": [ + "Health", + "Neurologic Disease", + "Neurological Disorder", + "Human" + ], + "uri_format": "http://scai.fraunhofer.de/AlzheimerOntology#$1" + } + }, + "bioportal.adw": { + "bioportal": { + "name": "Animal Natural History and Life History Ontology", + "prefix": "ADW", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://www.owl-ontologies.com/unnamed.owl#$1" + } + }, + "bioportal.aeo": { + "bioportal": { + "name": "Anatomical Entity Ontology", + "prefix": "AEO", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/AEO_$1" + } + }, + "bioportal.aero": { + "bioportal": { + "name": "Adverse Event Reporting Ontology", + "prefix": "AERO", + "subjects": [ + "Health", + "Biomedical Resources" + ], + "uri_format": "http://purl.obolibrary.org/obo/AERO_$1" + } + }, + "bioportal.afo": { + "bioportal": { + "name": "Allotrope Merged Ontology Suite", + "prefix": "AFO", + "subjects": [ + "Chemical" + ], + "uri_format": "http://purl.allotrope.org/ontologies/result#$1" + } + }, + "bioportal.agro": { + "bioportal": { + "name": "AGRonomy Ontology", + "prefix": "AGRO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/AGRO_$1" + } + }, + "bioportal.agrocymac": { + "bioportal": { + "name": "Control y Monitoreo de afecciones en los cultivos", + "prefix": "AGROCYMAC", + "subjects": [ + "Other", + "Plant", + "Vocabularies", + "Plant Development" + ], + "uri_format": "http://www.semanticweb.org/yali/ontologies/2019/0/cultivos#$1" + } + }, + "bioportal.agromop": { + "bioportal": { + "name": "Control de Cacao", + "prefix": "AGROMOP", + "subjects": [ + "Plant", + "Plant Development" + ], + "uri_format": "http://www.semanticweb.org/vera/ontologies/2020/1/untitled-ontology-5#$1" + } + }, + "bioportal.ahol": { + "bioportal": { + "name": "Animal Health Ontology for Livestock", + "prefix": "AHOL", + "subjects": [], + "uri_format": "http://opendata.inra.fr/AHOL/AHOL_$1" + } + }, + "bioportal.ahso": { + "bioportal": { + "name": "Animal Health Surveillance Ontology", + "prefix": "AHSO", + "subjects": [ + "Health", + "Biomedical Resources" + ], + "uri_format": "https://w3id.org/ahso#$1" + } + }, + "bioportal.ai-rheum": { + "bioportal": { + "name": "Artificial Intelligence Rheumatology Consultant System Ontology", + "prefix": "AI-RHEUM", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/AIR$1" + } + }, + "bioportal.aio": { + "bioportal": { + "name": "Artificial Intelligence Ontology", + "prefix": "AIO", + "subjects": [ + "Other" + ], + "uri_format": "https://w3id.org/aio$1" + } + }, + "bioportal.airbus": { + "bioportal": { + "name": "Airbus", + "prefix": "AIRBUS", + "subjects": [], + "uri_format": "http://protege.stanford.edu/thesauri/aero$1" + } + }, + "bioportal.aism": { + "bioportal": { + "name": "Ontology for the Anatomy of the Insect SkeletoMuscular system", + "prefix": "AISM", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/AISM_$1" + } + }, + "bioportal.allergydetector": { + "bioportal": { + "name": "Allergy Detector II", + "prefix": "ALLERGYDETECTOR", + "subjects": [ + "Dysfunction" + ], + "uri_format": "file://C:/Users/Nelson/workspace/JenaTutorial/src/br/com/allergydetector/resources/AllergyDetector.owl#$1" + } + }, + "bioportal.amino-acid": { + "bioportal": { + "name": "Amino Acid Ontology", + "prefix": "AMINO-ACID", + "subjects": [ + "Other" + ], + "uri_format": "http://www.co-ode.org/ontologies/amino-acid/2006/05/18/amino-acid.owl#$1" + } + }, + "bioportal.amphx": { + "bioportal": { + "name": "The Amphioxus Development and Anatomy Ontology", + "prefix": "AMPHX", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/AMPHX_$1" + } + }, + "bioportal.ao": { + "bioportal": { + "name": "Asthma Ontology", + "prefix": "AO", + "subjects": [ + "Health" + ], + "uri_format": "http://childhealthservicemodels.eu/asthma#$1" + } + }, + "bioportal.apacomputer": { + "bioportal": { + "name": "Computer Cluster", + "prefix": "APACOMPUTER", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1" + } + }, + "bioportal.apadisorders": { + "bioportal": { + "name": "Disorders cluster", + "prefix": "APADISORDERS", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1" + } + }, + "bioportal.apaeducluster": { + "bioportal": { + "name": "Educational Cluster", + "prefix": "APAEDUCLUSTER", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1" + } + }, + "bioportal.apaneurocluster": { + "bioportal": { + "name": "APA Neuro Cluster", + "prefix": "APANEUROCLUSTER", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://www.semanticweb.org/ontologies/2015/0/apaneurocluster.owl#$1" + } + }, + "bioportal.apaocuemploy": { + "bioportal": { + "name": "APA Occupational and Employment cluster", + "prefix": "APAOCUEMPLOY", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1" + } + }, + "bioportal.apaonto": { + "bioportal": { + "name": "Psychology Ontology", + "prefix": "APAONTO", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1" + } + }, + "bioportal.apastatistical": { + "bioportal": { + "name": "APA Statistical Cluster", + "prefix": "APASTATISTICAL", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1" + } + }, + "bioportal.apatandt": { + "bioportal": { + "name": "APA Tests and Testing cluster", + "prefix": "APATANDT", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1" + } + }, + "bioportal.apatreatment": { + "bioportal": { + "name": "APA Treatment Cluster", + "prefix": "APATREATMENT", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1" + } + }, + "bioportal.apo": { + "bioportal": { + "name": "Ascomycete Phenotype Ontology", + "prefix": "APO", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/APO_$1" + } + }, + "bioportal.apollo-sv": { + "bioportal": { + "name": "Apollo Structured Vocabulary", + "prefix": "APOLLO-SV", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/NCBITaxon_$1" + } + }, + "bioportal.arcrc": { + "bioportal": { + "name": "Arctic Report Card", + "prefix": "ARCRC", + "subjects": [], + "uri_format": "http://purl.dataone.org/odo/ARCRC_$1" + } + }, + "bioportal.aro": { + "bioportal": { + "name": "Antibiotic Resistance Ontology", + "prefix": "ARO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/ARO_$1" + } + }, + "bioportal.asdpto": { + "bioportal": { + "name": "Autism Spectrum Disorder Phenotype Ontology", + "prefix": "ASDPTO", + "subjects": [ + "Phenotype", + "Neurological Disorder", + "Human" + ], + "uri_format": "http://cbmi.med.harvard.edu/asdphenotype#$1" + } + }, + "bioportal.aspect": { + "bioportal": { + "name": "ASPECT: wind energy vAriableS, ParametErs and ConsTants", + "prefix": "ASPECT", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://purl.org/aspect$1" + } + }, + "bioportal.ato": { + "bioportal": { + "name": "Amphibian Taxonomy Ontology", + "prefix": "ATO", + "subjects": [ + "Taxonomic Classification" + ], + "uri_format": "http://purl.obolibrary.org/obo/ATO_$1" + } + }, + "bioportal.atol": { + "bioportal": { + "name": "Animal Trait Ontology for Livestock", + "prefix": "ATOL", + "subjects": [], + "uri_format": "http://opendata.inra.fr/ATOL/ATOL_$1" + } + }, + "bioportal.aura": { + "bioportal": { + "name": "KB_Bio_101", + "prefix": "AURA", + "subjects": [], + "uri_format": "http://www.projecthalo.com/aura#$1" + } + }, + "bioportal.bao": { + "bioportal": { + "name": "BioAssay Ontology", + "prefix": "BAO", + "subjects": [ + "Molecule", + "Biological Process", + "Other", + "Subcellular", + "Chemical", + "Cell", + "Protein", + "Vocabularies", + "Physicochemical" + ], + "uri_format": "http://www.bioassayontology.org/bao#$1" + } + }, + "bioportal.bao-gpcr": { + "bioportal": { + "name": "G Protein-Coupled Receptor BioAssays Ontology", + "prefix": "BAO-GPCR", + "subjects": [ + "Molecule", + "Biological Process", + "Other", + "Subcellular", + "Chemical", + "Protein", + "Vocabularies", + "Physicochemical" + ], + "uri_format": "http://www.bioassayontology.org/bao#$1" + } + }, + "bioportal.bcgo": { + "bioportal": { + "name": "Breast Cancer Grading Ontology", + "prefix": "BCGO", + "subjects": [ + "Biological Process" + ], + "uri_format": "http://www.owl-ontologies.com/Ontology1239104585.owl#$1" + } + }, + "bioportal.bci-o": { + "bioportal": { + "name": "Brain-Computer Interaction (BCI) Ontology", + "prefix": "BCI-O", + "subjects": [ + "Imaging", + "Experimental Conditions", + "Health", + "Biomedical Resources", + "Neurologic Disease", + "Neurological Disorder", + "Human", + "Vocabularies", + "Upper Level Ontology" + ], + "uri_format": "https://w3id.org/BCI-ontology#$1" + } + }, + "bioportal.bco": { + "bioportal": { + "name": "Biological Collections Ontology", + "prefix": "BCO", + "subjects": [ + "All Organisms" + ], + "uri_format": "http://purl.obolibrary.org/obo/bco_$1" + } + }, + "bioportal.bcs7": { + "bioportal": { + "name": "Breast Cancer Staging - 7th Edition", + "prefix": "BCS7", + "subjects": [], + "uri_format": "http://idea.tw.rpi.edu/projects/heals/ontologies/cancer_staging_terms.owl#$1" + } + }, + "bioportal.bcs8": { + "bioportal": { + "name": "Breast Cancer Staging - 8th Edition", + "prefix": "BCS8", + "subjects": [], + "uri_format": "http://idea.rpi.edu/ontologies/cancer_staging_terms.owl#$1" + } + }, + "bioportal.bcteo": { + "bioportal": { + "name": "Bone and Cartilage Tissue Engineering Ontology", + "prefix": "BCTEO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/ID_$1" + } + }, + "bioportal.bctt": { + "bioportal": { + "name": "Behaviour Change Technique Taxonomy", + "prefix": "BCTT", + "subjects": [], + "uri_format": "http://purl.bioontology.org/ontology/BCTT#$1" + } + }, + "bioportal.bdo": { + "bioportal": { + "name": "Bone Dysplasia Ontology", + "prefix": "BDO", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://purl.org/obo/owl/HP#$1" + } + }, + "bioportal.be": { + "bioportal": { + "name": "Bioentities", + "prefix": "BE", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/BE_$1" + } + }, + "bioportal.bflc": { + "bioportal": { + "name": "LC BIBFRAME 2.0 Vocabulary Extension", + "prefix": "BFLC", + "subjects": [], + "uri_format": "http://id.loc.gov/ontologies/bflc$1" + } + }, + "bioportal.bfo": { + "bioportal": { + "name": "Basic Formal Ontology", + "prefix": "BFO", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://purl.obolibrary.org/obo/BFO_$1" + } + }, + "bioportal.bhn": { + "bioportal": { + "name": "Biologie Hors Nomenclature", + "prefix": "BHN", + "subjects": [ + "Health", + "Vocabularies" + ], + "uri_format": "http://chu-rouen.fr/cismef/BHN#$1" + } + }, + "bioportal.bho": { + "bioportal": { + "name": "Bleeding History Phenotype Ontology", + "prefix": "BHO", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://www.semanticweb.org/ontologies/2010/10/BPO.owl#$1" + } + }, + "bioportal.bibliotek-o": { + "bioportal": { + "name": "The Biblioteko Ontology", + "prefix": "BIBLIOTEK-O", + "subjects": [], + "uri_format": "http://bibliotek-o.org/1.1/ontology$1" + } + }, + "bioportal.bifo": { + "bioportal": { + "name": "Biofilm Ontology", + "prefix": "BIFO", + "subjects": [ + "Biomedical Resources", + "Biological Process" + ], + "uri_format": "http://www.semanticweb.org/bowenliu/ontologies/2020/4/untitled-ontology-8#$1" + } + }, + "bioportal.bim": { + "bioportal": { + "name": "Biomedical Image Ontology", + "prefix": "BIM", + "subjects": [ + "Imaging" + ], + "uri_format": "http://cbakerlab.unbsj.ca:8080/ontologies/BIM.owl#$1" + } + }, + "bioportal.bin": { + "bioportal": { + "name": "Body in Numbers project terminology", + "prefix": "BIN", + "subjects": [ + "Taxonomic Classification", + "Vocabularies" + ], + "uri_format": "http://purl.bioontology.org/ontology/BIN/BIN_$1" + } + }, + "bioportal.biolink": { + "bioportal": { + "name": "Biolink Model", + "prefix": "BIOLINK", + "subjects": [ + "All Organisms", + "Biological Process", + "Phenotype", + "Chemical", + "Cell", + "Gene Product" + ], + "uri_format": "https://w3id.org/biolink/vocab$1" + } + }, + "bioportal.biomo": { + "bioportal": { + "name": "Biological Observation Matrix Ontology", + "prefix": "BIOMO", + "subjects": [ + "Other" + ], + "uri_format": "http://semanticscience.org/resource/SIO_$1" + } + }, + "bioportal.biomodels": { + "bioportal": { + "name": "BioModels Ontology", + "prefix": "BIOMODELS", + "subjects": [ + "All Organisms", + "Biomedical Resources", + "Biological Process" + ], + "uri_format": "http://purl.org/obo/owlapi/fma#$1" + } + }, + "bioportal.bipom": { + "bioportal": { + "name": "Biological interlocked Process Ontology for metabolism", + "prefix": "BIPOM", + "subjects": [ + "All Organisms" + ], + "uri_format": "http://purl.obolibrary.org/obo/BiPOm#$1" + } + }, + "bioportal.bipon": { + "bioportal": { + "name": "Bacterial interlocked Process ONtology", + "prefix": "BIPON", + "subjects": [ + "Biological Process" + ], + "uri_format": "http://www.semanticweb.org/BiPON/BiPON_$1" + } + }, + "bioportal.birnlex": { + "bioportal": { + "name": "Biomedical Informatics Research Network Project Lexicon", + "prefix": "BIRNLEX", + "subjects": [ + "Imaging", + "Anatomy" + ], + "uri_format": "http://bioontology.org/projects/ontologies/birnlex#$1" + } + }, + "bioportal.bko": { + "bioportal": { + "name": "Bricks ontology", + "prefix": "BKO", + "subjects": [ + "Other" + ], + "uri_format": "http://sbgnbricks.org/BKO$1" + } + }, + "bioportal.bmt": { + "bioportal": { + "name": "Biomedical Topics", + "prefix": "BMT", + "subjects": [], + "uri_format": "http://edamontology.org/topic_$1" + } + }, + "bioportal.bno": { + "bioportal": { + "name": "Bionutrition Ontology", + "prefix": "BNO", + "subjects": [ + "Health", + "Biomedical Resources", + "Human" + ], + "uri_format": "http://www.owl-ontologies.com/Ontology1361987617.owl#$1" + } + }, + "bioportal.bof": { + "bioportal": { + "name": "Biodiversity Ontology", + "prefix": "BOF", + "subjects": [], + "uri_format": "http://www.owl-ontologies.com/BiodiversityOntologyFull.owl#$1" + } + }, + "bioportal.bp": { + "bioportal": { + "name": "BioPAX Ontology of Biological Pathways", + "prefix": "BP", + "subjects": [ + "Biological Process" + ], + "uri_format": "http://www.biopax.org/release/biopax-level3.owl#$1" + } + }, + "bioportal.bp-metadata": { + "bioportal": { + "name": "BioPortal Metadata Ontology", + "prefix": "BP-METADATA", + "subjects": [ + "Other" + ], + "uri_format": "http://protege.stanford.edu/ontologies/ChAO/changes.rdfs#$1" + } + }, + "bioportal.brct": { + "bioportal": { + "name": "Brain Region & Cell Type terminology", + "prefix": "BRCT", + "subjects": [], + "uri_format": "http://www.semanticweb.org/ontologies/2009/9/Ontology1255357986125.owl#$1" + } + }, + "bioportal.bridg": { + "bioportal": { + "name": "Biomedical Research Integrated Domain Group Model", + "prefix": "BRIDG", + "subjects": [ + "Health" + ], + "uri_format": "http://www.bridgmodel.org/owl#$1" + } + }, + "bioportal.bro": { + "bioportal": { + "name": "Biomedical Resource Ontology", + "prefix": "BRO", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#$1" + } + }, + "bioportal.bro_acronym": { + "bioportal": { + "name": "Bro_Name", + "prefix": "BRO_ACRONYM", + "subjects": [], + "uri_format": "http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#$1" + } + }, + "bioportal.brso": { + "bioportal": { + "name": "Biological Resource Schema Ontology", + "prefix": "BRSO", + "subjects": [ + "All Organisms" + ], + "uri_format": "http://purl.jp/bio/10/brso$1" + } + }, + "bioportal.bsao": { + "bioportal": { + "name": "Botryllus schlosseri anatomy and development ontology", + "prefix": "BSAO", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/BSA_$1" + } + }, + "bioportal.bspo": { + "bioportal": { + "name": "Spatial Ontology", + "prefix": "BSPO", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/BSPO_$1" + } + }, + "bioportal.bt": { + "bioportal": { + "name": "BioTop Ontology", + "prefix": "BT", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://purl.org/biotop/biotop.owl#$1" + } + }, + "bioportal.bto": { + "bioportal": { + "name": "BRENDA Tissue and Enzyme Source Ontology", + "prefix": "BTO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/BTO_$1" + } + }, + "bioportal.bto_ontology": { + "bioportal": { + "name": "Brain Tumour Ontology", + "prefix": "BTO_ONTOLOGY", + "subjects": [ + "Health", + "Biomedical Resources" + ], + "uri_format": "http://www.semanticweb.org/samsung/ontologies/2012/10/untitled-ontology-9#$1" + } + }, + "bioportal.cabro": { + "bioportal": { + "name": "Computer Assisted Brain Injury Rehabilitation Ontology", + "prefix": "CABRO", + "subjects": [ + "Health", + "Dysfunction", + "Biomedical Resources", + "Neurologic Disease", + "Neurological Disorder", + "Human" + ], + "uri_format": "http://www.semanticweb.org/dimitrios/ontologies/2013/2/untitled-ontology-2#$1" + } + }, + "bioportal.canco": { + "bioportal": { + "name": "Cancer Chemoprevention Ontology", + "prefix": "CANCO", + "subjects": [ + "Experimental Conditions", + "Molecule", + "Health", + "Biomedical Resources" + ], + "uri_format": "http://chem.deri.ie/granatum#$1" + } + }, + "bioportal.canont": { + "bioportal": { + "name": "Upper-Level Cancer Ontology ", + "prefix": "CANONT", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/ID_$1" + } + }, + "bioportal.cao": { + "bioportal": { + "name": "Clusters of Orthologous Groups (COG) Analysis Ontology", + "prefix": "CAO", + "subjects": [ + "Gene Product" + ], + "uri_format": "http://purl.obolibrary.org/obo/CAO_$1" + } + }, + "bioportal.carelex": { + "bioportal": { + "name": "Content Archive Resource Exchange Lexicon", + "prefix": "CARELEX", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://www.CareLex.org/2012/carelex.owl#$1" + } + }, + "bioportal.caro": { + "bioportal": { + "name": "Common Anatomy Reference Ontology", + "prefix": "CARO", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/CARO_$1" + } + }, + "bioportal.carre": { + "bioportal": { + "name": "CARRE Risk Factor ontology", + "prefix": "CARRE", + "subjects": [ + "Health" + ], + "uri_format": "file:/Users/allanthird/Work/CARRE/CARREOntology/carre-sensors.xml#$1" + } + }, + "bioportal.case-base-onto": { + "bioportal": { + "name": "Case-base ontology for gastric dystemperament in Persian medicine", + "prefix": "CASE-BASE-ONTO", + "subjects": [ + "Other" + ], + "uri_format": "http://www.semanticweb.org/hsh/ontologies/2019/7/CBRDystempOnto#$1" + } + }, + "bioportal.cbo": { + "bioportal": { + "name": "Cell Behavior Ontology", + "prefix": "CBO", + "subjects": [ + "All Organisms", + "Biological Process", + "Cell" + ], + "uri_format": "http://cbo.biocomplexity.indiana.edu/svn/cbo/trunk/CBO_1_1_2.owl#$1" + } + }, + "bioportal.ccf": { + "bioportal": { + "name": "HuBMAP Common Coordinate Framework", + "prefix": "CCF", + "subjects": [ + "Biomedical Resources", + "Human", + "Cell" + ], + "uri_format": "https://purl.org/ccf/ASCTB-TEMP_$1" + } + }, + "bioportal.cco": { + "bioportal": { + "name": "Cell Cycle Ontology", + "prefix": "CCO", + "subjects": [ + "Yeast", + "Biological Process", + "Arabidopsis", + "Human", + "Protein" + ], + "uri_format": "http://purl.obolibrary.org/obo/UniProt_$1" + } + }, + "bioportal.ccont": { + "bioportal": { + "name": "Cell Culture Ontology", + "prefix": "CCONT", + "subjects": [ + "Experimental Conditions", + "Biological Process", + "Vocabularies" + ], + "uri_format": "http://www.ebi.ac.uk/efo/EFO_$1" + } + }, + "bioportal.cctoo": { + "bioportal": { + "name": "Cancer Care: Treatment Outcome Ontology", + "prefix": "CCTOO", + "subjects": [ + "Health", + "Biomedical Resources", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/CCTO_$1" + } + }, + "bioportal.cdao": { + "bioportal": { + "name": "Comparative Data Analysis Ontology", + "prefix": "CDAO", + "subjects": [ + "Experimental Conditions" + ], + "uri_format": "http://purl.obolibrary.org/obo/CDAO_$1" + } + }, + "bioportal.cdno": { + "bioportal": { + "name": "Compositional Dietary Nutrition Ontology", + "prefix": "CDNO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/CDNO_$1" + } + }, + "bioportal.cdo": { + "bioportal": { + "name": "Chinese Diabetes Mellitus Ontology", + "prefix": "CDO", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://purl.bioontology.org/ontology/CDO$1" + } + }, + "bioportal.cdpeo": { + "bioportal": { + "name": "Chronic Disease Patient Education Ontology", + "prefix": "CDPEO", + "subjects": [ + "Health" + ], + "uri_format": "http://www.semanticweb.org/ontologies/chronic-diease-patient-education-ontology#$1" + } + }, + "bioportal.cedarvs": { + "bioportal": { + "name": "CEDAR Value Sets", + "prefix": "CEDARVS", + "subjects": [ + "Other" + ], + "uri_format": "http://www.semanticweb.org/jgraybeal/ontologies/2015/7/cedarvaluesets#$1" + } + }, + "bioportal.ceph": { + "bioportal": { + "name": "Cephalopod Ontology", + "prefix": "CEPH", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/CEPH_$1" + } + }, + "bioportal.chd": { + "bioportal": { + "name": "Congenital Heart Defects Ontology", + "prefix": "CHD", + "subjects": [ + "Human" + ], + "uri_format": "http://homes.esat.kuleuven.be/~bioiuser/chdwiki/index.php$1" + } + }, + "bioportal.chear": { + "bioportal": { + "name": "Children's Health Exposure Analysis Resource", + "prefix": "CHEAR", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://hadatac.org/ont/chear#$1" + } + }, + "bioportal.chebi": { + "bioportal": { + "name": "Chemical Entities of Biological Interest Ontology", + "prefix": "CHEBI", + "subjects": [ + "Chemical" + ], + "uri_format": "http://purl.obolibrary.org/obo/CHEBI_$1" + } + }, + "bioportal.chembio": { + "bioportal": { + "name": "Systems Chemical Biology and Chemogenomics Ontology ", + "prefix": "CHEMBIO", + "subjects": [ + "Molecule", + "Biomedical Resources", + "Biological Process", + "Chemical", + "Protein" + ], + "uri_format": "http://chem2bio2rdf.org/chem2bio2rdf.owl#$1" + } + }, + "bioportal.cheminf": { + "bioportal": { + "name": "Chemical Information Ontology", + "prefix": "CHEMINF", + "subjects": [ + "Chemical" + ], + "uri_format": "http://semanticscience.org/resource/CHEMINF_$1" + } + }, + "bioportal.chiro": { + "bioportal": { + "name": "CHEBI Integrated Role Ontology", + "prefix": "CHIRO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/MP_$1" + } + }, + "bioportal.chmo": { + "bioportal": { + "name": "Chemical Methods Ontology", + "prefix": "CHMO", + "subjects": [ + "Chemical" + ], + "uri_format": "http://purl.obolibrary.org/obo/CHMO_$1" + } + }, + "bioportal.cido": { + "bioportal": { + "name": "Coronavirus Infectious Disease Ontology", + "prefix": "CIDO", + "subjects": [ + "All Organisms", + "Health", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/CIDO_$1" + } + }, + "bioportal.cidoc-crm": { + "bioportal": { + "name": "CIDOC Conceptual Reference Model", + "prefix": "CIDOC-CRM", + "subjects": [], + "uri_format": "http://www.cidoc-crm.org/cidoc-crm/E78_$1" + } + }, + "bioportal.ciinteado": { + "bioportal": { + "name": "Ciona intestinalis Anatomy and Development Ontology", + "prefix": "CIINTEADO", + "subjects": [ + "Anatomy", + "Animal Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/CiinteA_$1" + } + }, + "bioportal.cio": { + "bioportal": { + "name": "Confidence Information Ontology", + "prefix": "CIO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/CIO_$1" + } + }, + "bioportal.cisaviado": { + "bioportal": { + "name": "Ciona savignyi Anatomy and Development Ontology ", + "prefix": "CISAVIADO", + "subjects": [ + "Anatomy", + "Animal Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/CisaviA_$1" + } + }, + "bioportal.ckdo": { + "bioportal": { + "name": "Chronic Kidney Disease Ontology", + "prefix": "CKDO", + "subjects": [], + "uri_format": "http://clininf.eu/ckdo#$1" + } + }, + "bioportal.clao": { + "bioportal": { + "name": "Collembola Anatomy Ontology", + "prefix": "CLAO", + "subjects": [ + "Anatomy", + "Animal Gross Anatomy", + "Vocabularies" + ], + "uri_format": "http://purl.obolibrary.org/obo/CLAO_$1" + } + }, + "bioportal.clo": { + "bioportal": { + "name": "Cell Line Ontology", + "prefix": "CLO", + "subjects": [ + "Experimental Conditions", + "All Organisms", + "Taxonomic Classification", + "Biomedical Resources", + "Biological Process", + "Phenotype", + "Anatomy", + "Cell", + "Vocabularies" + ], + "uri_format": "http://purl.obolibrary.org/obo/CLO_$1" + } + }, + "bioportal.clyh": { + "bioportal": { + "name": "Clytia hemisphaerica Development and Anatomy Ontology", + "prefix": "CLYH", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/CLYH_$1" + } + }, + "bioportal.cmdo": { + "bioportal": { + "name": "Clinical MetaData Ontology", + "prefix": "CMDO", + "subjects": [], + "uri_format": "http://purl.bioontology.org/ontology/CMDO$1" + } + }, + "bioportal.cmo": { + "bioportal": { + "name": "Clinical Measurement Ontology", + "prefix": "CMO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/CMO_$1" + } + }, + "bioportal.cmpo": { + "bioportal": { + "name": "Cellular microscopy phenotype ontology", + "prefix": "CMPO", + "subjects": [ + "Cellular anatomy ", + "Phenotype", + "Cell" + ], + "uri_format": "http://www.ebi.ac.uk/cmpo/CMPO_$1" + } + }, + "bioportal.cmr-qa": { + "bioportal": { + "name": "Cardiovascular Magnetic Resonance Quality Assessment Ontology", + "prefix": "CMR-QA", + "subjects": [ + "Imaging", + "Health", + "Vocabularies" + ], + "uri_format": "http://www.semanticweb.org/ukbiobank/ocmr_isg/CMR-QA#$1" + } + }, + "bioportal.cn": { + "bioportal": { + "name": "computer network", + "prefix": "CN", + "subjects": [], + "uri_format": "http://mmisw.org/ont/Technology/ComputerNetworks$1" + } + }, + "bioportal.cno": { + "bioportal": { + "name": "Computational Neuroscience Ontology", + "prefix": "CNO", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://purl.org/incf/ontology/Computational_Neurosciences/cno_alpha.owl#$1" + } + }, + "bioportal.cno_acronym": { + "bioportal": { + "name": "CNO_NAME", + "prefix": "CNO_ACRONYM", + "subjects": [], + "uri_format": "http://purl.org/incf/ontology/Computational_Neurosciences/cno_alpha.owl#$1" + } + }, + "bioportal.co-wheat": { + "bioportal": { + "name": "Wheat Trait Ontology ", + "prefix": "CO-WHEAT", + "subjects": [ + "Phenotype", + "Plant" + ], + "uri_format": "http://purl.obolibrary.org/obo/CO_$1" + } + }, + "bioportal.cob": { + "bioportal": { + "name": "Core Ontology for Biology and Biomedicine", + "prefix": "COB", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://purl.obolibrary.org/obo/COB_$1" + } + }, + "bioportal.codo": { + "bioportal": { + "name": "An Ontology for Collection and Analysis of COviD-19 Data", + "prefix": "CODO", + "subjects": [ + "Health", + "Human", + "Vocabularies" + ], + "uri_format": "http://www.isibang.ac.in/ns/codo#$1" + } + }, + "bioportal.cogat": { + "bioportal": { + "name": "Cognitive Atlas Ontology", + "prefix": "COGAT", + "subjects": [ + "Phenotype", + "Human", + "Vocabularies" + ], + "uri_format": "file:/srv/ncbo/repository/COGAT/8/cogat.owl#$1" + } + }, + "bioportal.cogpo": { + "bioportal": { + "name": "Cognitive Paradigm Ontology", + "prefix": "COGPO", + "subjects": [ + "Imaging", + "Experimental Conditions", + "Human" + ], + "uri_format": "http://www.cogpo.org/ontologies/CogPOver1.owl#$1" + } + }, + "bioportal.cohsi2study": { + "bioportal": { + "name": "cohsi2study", + "prefix": "COHSI2STUDY", + "subjects": [ + "Vocabularies" + ], + "uri_format": "https://www.lumc.nl/fairontologies/aeterms/ae$1" + } + }, + "bioportal.cokpme": { + "bioportal": { + "name": "COKPME - COVID19 Ontology for analyzing the Karnataka Private Medical Establishments Data ", + "prefix": "COKPME", + "subjects": [ + "Health", + "Biomedical Resources" + ], + "uri_format": "http://www.iiitdwd.ac.in/ACB/COKPME#$1" + } + }, + "bioportal.comodi": { + "bioportal": { + "name": "COMODI", + "prefix": "COMODI", + "subjects": [ + "Development", + "Vocabularies" + ], + "uri_format": "http://purl.uni-rostock.de/comodi/comodi#$1" + } + }, + "bioportal.contsonto": { + "bioportal": { + "name": "Continuity of care", + "prefix": "CONTSONTO", + "subjects": [ + "Health" + ], + "uri_format": "https://contsys.org/concept/healthcare_$1" + } + }, + "bioportal.copdo": { + "bioportal": { + "name": "COPD Ontology", + "prefix": "COPDO", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://webprotege.stanford.edu$1" + } + }, + "bioportal.costart": { + "bioportal": { + "name": "Coding Symbols for a Thesaurus of Adverse Reaction Terms", + "prefix": "COSTART", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/CST$1" + } + }, + "bioportal.covid-19": { + "bioportal": { + "name": "COVID-19 Ontology", + "prefix": "COVID-19", + "subjects": [ + "Immunology", + "Health", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/GO_$1" + } + }, + "bioportal.covid-19-ont-pm": { + "bioportal": { + "name": "COVID-19OntologyInPatternMedicine", + "prefix": "COVID-19-ONT-PM", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://www.semanticweb.org/hanfei/ontologies/2020/9/untitled-ontology-1306#$1" + } + }, + "bioportal.covid19": { + "bioportal": { + "name": "COVID-19 Surveillance Ontology", + "prefix": "COVID19", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://www.semanticweb.org/clininf/covid19#$1" + } + }, + "bioportal.covid19-ibo": { + "bioportal": { + "name": "Covid19 Impact on Banking Ontology", + "prefix": "COVID19-IBO", + "subjects": [ + "Other" + ], + "uri_format": "http://www.semanticweb.org/archana/ontologies/2021/5/untitled-ontology-6#$1" + } + }, + "bioportal.covidcrfrapid": { + "bioportal": { + "name": "WHO COVID-19 Rapid Version CRF semantic data model", + "prefix": "COVIDCRFRAPID", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/NCIT_$1" + } + }, + "bioportal.cpro": { + "bioportal": { + "name": "Computer-Based Patient Record Ontology", + "prefix": "CPRO", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.org/cpr$1" + } + }, + "bioportal.cpt": { + "bioportal": { + "name": "CPT - Current Procedural Terminology", + "prefix": "CPT", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.bioontology.org/ontology/CPT$1" + } + }, + "bioportal.cptac": { + "bioportal": { + "name": "CPTAC Proteomics Pipeline Infrastructure Ontology", + "prefix": "CPTAC", + "subjects": [ + "Genomic and Proteomic" + ], + "uri_format": "http://proteomeontology.org/cpo.owl#$1" + } + }, + "bioportal.crisp": { + "bioportal": { + "name": "Computer Retrieval of Information on Scientific Projects Thesaurus", + "prefix": "CRISP", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/CSP$1" + } + }, + "bioportal.cro": { + "bioportal": { + "name": "Contributor Role Ontology", + "prefix": "CRO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/CRO_$1" + } + }, + "bioportal.cryoem": { + "bioportal": { + "name": "Cryo Electron Microscopy", + "prefix": "CRYOEM", + "subjects": [ + "Imaging" + ], + "uri_format": "http://scipion.i2pc.es/ontology/CRYOEM_$1" + } + }, + "bioportal.cseo": { + "bioportal": { + "name": "Cigarette Smoke Exposure Ontology", + "prefix": "CSEO", + "subjects": [ + "Health" + ], + "uri_format": "http://scai.fraunhofer.de/CSEO#$1" + } + }, + "bioportal.cso": { + "bioportal": { + "name": "Clinical Study Ontology", + "prefix": "CSO", + "subjects": [], + "uri_format": "http://webprotege.stanford.edu$1" + } + }, + "bioportal.csso": { + "bioportal": { + "name": "Clinical Signs and Symptoms Ontology", + "prefix": "CSSO", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.jp/bio/11/csso/CSSO_$1" + } + }, + "bioportal.cstd": { + "bioportal": { + "name": "Clinical smell and taste disorders", + "prefix": "CSTD", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://www.semanticweb.org/hsiehjulien/ontologies/2016/3/untitled-ontology-4#$1" + } + }, + "bioportal.ctcae": { + "bioportal": { + "name": "Common Terminology Criteria for Adverse Events", + "prefix": "CTCAE", + "subjects": [], + "uri_format": "http://ncicb.nci.nih.gov/xml/owl/EVS/ctcae5.owl#$1" + } + }, + "bioportal.cteno": { + "bioportal": { + "name": "Ctenophore Ontology", + "prefix": "CTENO", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/CTENO_$1" + } + }, + "bioportal.cto": { + "bioportal": { + "name": "Clinical Trials Ontology", + "prefix": "CTO", + "subjects": [], + "uri_format": "https://bio.scai.fraunhofer.de/ontology/CTO_$1" + } + }, + "bioportal.cto-ndd": { + "bioportal": { + "name": "Clinical Trials Ontology - Neurodegenerative Diseases", + "prefix": "CTO-NDD", + "subjects": [ + "Health", + "Biomedical Resources", + "Neurological Disorder" + ], + "uri_format": "http://www.semanticweb.org/ontologies/2012/0/Ontology1325521724189.owl#$1" + } + }, + "bioportal.ctont": { + "bioportal": { + "name": "Epoch Clinical Trial Ontology", + "prefix": "CTONT", + "subjects": [ + "Experimental Conditions" + ], + "uri_format": "http://epoch.stanford.edu/ClinicalTrialOntology.owl#$1" + } + }, + "bioportal.ctx": { + "bioportal": { + "name": "Cerebrotendinous Xanthomatosis Ontology", + "prefix": "CTX", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://www.owl-ontologies.com/OntologyXCT.owl#$1" + } + }, + "bioportal.cu-vo": { + "bioportal": { + "name": "Venom Ontology", + "prefix": "CU-VO", + "subjects": [ + "Molecule", + "Genomic and Proteomic", + "Chemical", + "Protein" + ], + "uri_format": "http://www.semanticweb.org/jdr2160/ontologies/2015/5/venom_ontology#$1" + } + }, + "bioportal.cvao": { + "bioportal": { + "name": "STO", + "prefix": "CVAO", + "subjects": [], + "uri_format": "http://www.semanticweb.org/ontologies/STO.owl#$1" + } + }, + "bioportal.cvdo": { + "bioportal": { + "name": "Cardiovascular Disease Ontology", + "prefix": "CVDO", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/CVDO_$1" + } + }, + "bioportal.cwd": { + "bioportal": { + "name": "Consumer Wearable Device", + "prefix": "CWD", + "subjects": [ + "Health" + ], + "uri_format": "http://www.semanticweb.org/jbagwell/ontologies/2017/9/untitled-ontology-6#$1" + } + }, + "bioportal.cyto": { + "bioportal": { + "name": "CYTOKINE", + "prefix": "CYTO", + "subjects": [ + "Protein" + ], + "uri_format": "http://www.semanticweb.org/demetrios/ontologies/2014/5$1" + } + }, + "bioportal.datacite": { + "bioportal": { + "name": "SPAR DataCite Ontology", + "prefix": "DATACITE", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.org/spar/datacite$1" + } + }, + "bioportal.datacite-vocab": { + "bioportal": { + "name": "DATACITE V4.4", + "prefix": "DATACITE-VOCAB", + "subjects": [], + "uri_format": "http://purl.org/datacite/v4.4$1" + } + }, + "bioportal.dc": { + "bioportal": { + "name": "Dublin Core", + "prefix": "DC", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.org/dc/terms$1" + } + }, + "bioportal.dcat": { + "bioportal": { + "name": "Data Catalog Vocabulary", + "prefix": "DCAT", + "subjects": [ + "Other" + ], + "uri_format": "http://www.w3.org/ns/dcat#$1" + } + }, + "bioportal.dcat-fdc": { + "bioportal": { + "name": "Data Catalog Vocabulary (DCAT)", + "prefix": "DCAT-FDC", + "subjects": [], + "uri_format": "http://www.w3.org/ns/prov#$1" + } + }, + "bioportal.dccdfv": { + "bioportal": { + "name": "Dublin Core Collection Description Frequency Vocabulary", + "prefix": "DCCDFV", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.org/cld/freq$1" + } + }, + "bioportal.dcm": { + "bioportal": { + "name": "DICOM Controlled Terminology", + "prefix": "DCM", + "subjects": [ + "Imaging" + ], + "uri_format": "http://dicom.nema.org/resources/ontology/DCM$1" + } + }, + "bioportal.dcmitype": { + "bioportal": { + "name": "DCMI Type Vocabulary", + "prefix": "DCMITYPE", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.org/dc/dcmitype$1" + } + }, + "bioportal.dco": { + "bioportal": { + "name": "Dispedia Core Ontology", + "prefix": "DCO", + "subjects": [ + "Health", + "Other", + "Human", + "Vocabularies" + ], + "uri_format": "http://www.dispedia.de/o$1" + } + }, + "bioportal.dct": { + "bioportal": { + "name": "DC Terms", + "prefix": "DCT", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.org/dc/terms$1" + } + }, + "bioportal.ddanat": { + "bioportal": { + "name": "Dictyostelium Discoideum Anatomy Ontology", + "prefix": "DDANAT", + "subjects": [ + "Gross Anatomy", + "Anatomy", + "Microbial Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/DDANAT_$1" + } + }, + "bioportal.ddi": { + "bioportal": { + "name": "Ontology for Drug Discovery Investigations", + "prefix": "DDI", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/IAO_$1" + } + }, + "bioportal.ddiem": { + "bioportal": { + "name": "Drug Database for Inborn Errors of Metabolism (DDIEM) Ontology", + "prefix": "DDIEM", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://purl.obolibrary.org/obo/DDIEM_$1" + } + }, + "bioportal.ddpheno": { + "bioportal": { + "name": "Dictyostelium Discoideum Phenotype Ontology", + "prefix": "DDPHENO", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/DDPHENO_$1" + } + }, + "bioportal.deb": { + "bioportal": { + "name": "Devices, Experimental scaffolds and Biomaterials Ontology", + "prefix": "DEB", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://www.semanticweb.org/osnathakimi/ontologies/deb#$1" + } + }, + "bioportal.dermlex": { + "bioportal": { + "name": "Dermatology Lexicon", + "prefix": "DERMLEX", + "subjects": [ + "Health" + ], + "uri_format": "http://www.owl-ontologies.com/unnamed.owl#$1" + } + }, + "bioportal.dermo": { + "bioportal": { + "name": "Human Dermatological Disease Ontology", + "prefix": "DERMO", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://purl.obolibrary.org/obo/DERMO_$1" + } + }, + "bioportal.dfo": { + "bioportal": { + "name": "Databank Family Ontology", + "prefix": "DFO", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "https://w3id.org/dfo/Death_$1" + } + }, + "bioportal.diab": { + "bioportal": { + "name": "BioMedBridges Diabetes Ontology", + "prefix": "DIAB", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/HP_$1" + } + }, + "bioportal.diagont": { + "bioportal": { + "name": "Diagnostic Ontology", + "prefix": "DIAGONT", + "subjects": [], + "uri_format": "http://www.owl-ontologies.com/RCTOntology.owl#$1" + } + }, + "bioportal.dideo": { + "bioportal": { + "name": "Drug Interaction and Evidence Ontology", + "prefix": "DIDEO", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/DIDEO_$1" + } + }, + "bioportal.dikb": { + "bioportal": { + "name": "Drug Interaction Knowledge Base Ontology", + "prefix": "DIKB", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://purl.org/net/drug-interaction-knowledge-base/DIKB_evidence_ontology.owl#$1" + } + }, + "bioportal.dilon": { + "bioportal": { + "name": "Dietary lifestyle ontology", + "prefix": "DILON", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://www.co-ode.org/ontologies/ont.owl#$1" + } + }, + "bioportal.dinto": { + "bioportal": { + "name": "The Drug-Drug Interactions Ontology", + "prefix": "DINTO", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/dinto_$1" + } + }, + "bioportal.disdriv": { + "bioportal": { + "name": "Disease Drivers Ontology", + "prefix": "DISDRIV", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/DISDRIV_$1" + } + }, + "bioportal.dloro": { + "bioportal": { + "name": "Dependency Layered Ontology for Radiation Oncology", + "prefix": "DLORO", + "subjects": [ + "Human", + "Vocabularies" + ], + "uri_format": "http://www.semanticweb.org/alan/ontologies/2013/8/untitled-ontology-9#$1" + } + }, + "bioportal.doccc": { + "bioportal": { + "name": "Diagnosis Ontology of Clinical Care Classification", + "prefix": "DOCCC", + "subjects": [ + "Health" + ], + "uri_format": "http://www.semanticweb.org/hll/ontologies/2013/8/untitled-ontology-2#$1" + } + }, + "bioportal.doid": { + "bioportal": { + "name": "Human Disease Ontology", + "prefix": "DOID", + "subjects": [ + "Health", + "Biomedical Resources", + "Neurologic Disease", + "Neurological Disorder", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/DOID_$1" + } + }, + "bioportal.doremus-keys": { + "bioportal": { + "name": "Doremus List of Keys", + "prefix": "DOREMUS-KEYS", + "subjects": [], + "uri_format": "http://data.doremus.org/vocabulary/key$1" + } + }, + "bioportal.dpo": { + "bioportal": { + "name": "Drosophila Phenotype Ontology", + "prefix": "DPO", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/GO_$1" + } + }, + "bioportal.dranpto": { + "bioportal": { + "name": "Dementia-Related Agitation Non-Pharmacological Treatment Ontology", + "prefix": "DRANPTO", + "subjects": [ + "Taxonomic Classification", + "Health", + "Vocabularies" + ], + "uri_format": "http://www.semanticweb.org/zhenyuzhang/ontologies/2019/8/nonpharmacological-intervention-for-agitation-in-dementia-ontology$1" + } + }, + "bioportal.dreamdnpto": { + "bioportal": { + "name": "Dementia-Related Emotional And Mood Disturbance Non-Pharmacological Treatment Ontology", + "prefix": "DREAMDNPTO", + "subjects": [ + "Taxonomic Classification", + "Health", + "Vocabularies" + ], + "uri_format": "http://www.semanticweb.org/zhenyuzhang/ontologies/2021/DREAMDNPTO#$1" + } + }, + "bioportal.dron": { + "bioportal": { + "name": "The Drug Ontology", + "prefix": "DRON", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/DRON_$1" + } + }, + "bioportal.drpsnpto": { + "bioportal": { + "name": "Dementia-Related Psychotic Symptoms Non-Pharmacological Treatment Ontology", + "prefix": "DRPSNPTO", + "subjects": [ + "Taxonomic Classification", + "Health", + "Vocabularies" + ], + "uri_format": "http://www.semanticweb.org/zhenyuzhang/ontologies/2020/DRPSNPTO$1" + } + }, + "bioportal.dseo": { + "bioportal": { + "name": "Data Science Education Ontology", + "prefix": "DSEO", + "subjects": [ + "Biomedical Resources", + "Other" + ], + "uri_format": "http://bigdatau.org/dseo#$1" + } + }, + "bioportal.dto": { + "bioportal": { + "name": "Drug Target Ontology", + "prefix": "DTO", + "subjects": [ + "Molecule", + "Other", + "Human", + "Chemical", + "Protein", + "Gene Product" + ], + "uri_format": "http://www.drugtargetontology.org/dto/DTO_$1" + } + }, + "bioportal.duo": { + "bioportal": { + "name": "The Data Use Ontology", + "prefix": "DUO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/DUO_$1" + } + }, + "bioportal.e-ppo": { + "bioportal": { + "name": "Enhanced Personal Profile Ontology", + "prefix": "E-PPO", + "subjects": [ + "Human" + ], + "uri_format": "http://www.semanticweb.org/patienceusip/ontologies/2020/7/untitled-ontology-7#$1" + } + }, + "bioportal.ebp": { + "bioportal": { + "name": "EmpowerBP", + "prefix": "EBP", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://www.semanticweb.org/tswheeler/ontologies/2016/3/EmpowerBP#$1" + } + }, + "bioportal.ecao": { + "bioportal": { + "name": "The Echinoderm Anatomy and Development Ontology", + "prefix": "ECAO", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/ECAO_$1" + } + }, + "bioportal.ecg": { + "bioportal": { + "name": "Electrocardiography Ontology", + "prefix": "ECG", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://www.cvrgrid.org/files/ECGOntologyv1.owl#$1" + } + }, + "bioportal.eco": { + "bioportal": { + "name": "Evidence and Conclusion Ontology", + "prefix": "ECO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/ECO_$1" + } + }, + "bioportal.ecocore": { + "bioportal": { + "name": "An ontology of core ecological entities", + "prefix": "ECOCORE", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/GO_$1" + } + }, + "bioportal.ecp": { + "bioportal": { + "name": "Electronic Care Plan", + "prefix": "ECP", + "subjects": [ + "Taxonomic Classification", + "Health", + "Vocabularies" + ], + "uri_format": "http://iris.med.duth.gr/research/ecp/ontology/eCP.owl#$1" + } + }, + "bioportal.ecso": { + "bioportal": { + "name": "The Ecosystem Ontology", + "prefix": "ECSO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.dataone.org/odo/ECSO_$1" + } + }, + "bioportal.ecto": { + "bioportal": { + "name": "Environmental conditions, treatments and exposures ontology", + "prefix": "ECTO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/ECTO_$1" + } + }, + "bioportal.edam": { + "bioportal": { + "name": "EDAM - Bioscientific data analysis ontology", + "prefix": "EDAM", + "subjects": [ + "All Organisms", + "Biomedical Resources", + "Genomic and Proteomic", + "Other", + "Vocabularies" + ], + "uri_format": "http://edamontology.org/data_$1" + } + }, + "bioportal.edam-bioimaging": { + "bioportal": { + "name": "EDAM Bioimaging Ontology", + "prefix": "EDAM-BIOIMAGING", + "subjects": [ + "Imaging", + "All Organisms", + "Other" + ], + "uri_format": "http://edamontology.org/topic_$1" + } + }, + "bioportal.edda": { + "bioportal": { + "name": "EDDA Study Designs Taxonomy", + "prefix": "EDDA", + "subjects": [ + "Experimental Conditions", + "Vocabularies" + ], + "uri_format": "http://ontologies.dbmi.pitt.edu/edda/StudyDesigns.owl#$1" + } + }, + "bioportal.edda_pt": { + "bioportal": { + "name": "EDDA Publication Types Taxonomy", + "prefix": "EDDA_PT", + "subjects": [ + "Experimental Conditions", + "Vocabularies" + ], + "uri_format": "http://ontologies.dbmi.pitt.edu/edda/PublicationType.owl#$1" + } + }, + "bioportal.efo": { + "bioportal": { + "name": "Experimental Factor Ontology", + "prefix": "EFO", + "subjects": [ + "Experimental Conditions", + "Biological Process" + ], + "uri_format": "http://www.ebi.ac.uk/efo/EFO_$1" + } + }, + "bioportal.ego": { + "bioportal": { + "name": "Epigenome Ontology", + "prefix": "EGO", + "subjects": [ + "Molecule", + "Health", + "Genomic and Proteomic" + ], + "uri_format": "http://purl.obolibrary.org/obo/EGO_$1" + } + }, + "bioportal.ehda": { + "bioportal": { + "name": "Human Developmental Anatomy Ontology, timed version", + "prefix": "EHDA", + "subjects": [ + "Gross Anatomy", + "Human Developmental Anatomy", + "Anatomy", + "Animal Gross Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/EHDA_$1" + } + }, + "bioportal.ehdaa": { + "bioportal": { + "name": "Human Developmental Anatomy Ontology, abstract version 1", + "prefix": "EHDAA", + "subjects": [ + "Gross Anatomy", + "Human Developmental Anatomy", + "Anatomy", + "Animal Gross Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/EHDAA_$1" + } + }, + "bioportal.eld": { + "bioportal": { + "name": "EthiopianListOfDiseases", + "prefix": "ELD", + "subjects": [ + "Vocabularies" + ], + "uri_format": "https://github.com/VODANA$1" + } + }, + "bioportal.elig": { + "bioportal": { + "name": "Eligibility Feature Hierarchy", + "prefix": "ELIG", + "subjects": [], + "uri_format": "http://www.semanticweb.org/ontologies/2012/8/Ontology1348158066194.owl#$1" + } + }, + "bioportal.elter_cl": { + "bioportal": { + "name": "eLTER Controlled Lists", + "prefix": "ELTER_CL", + "subjects": [ + "Other" + ], + "uri_format": "http://vocabs.lter-europe.net/eLTER_/CL$1" + } + }, + "bioportal.emap": { + "bioportal": { + "name": "Mouse Gross Anatomy and Development Ontology", + "prefix": "EMAP", + "subjects": [ + "Mouse Anatomy", + "Gross Anatomy", + "Anatomy", + "Animal Gross Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/EMAP_$1" + } + }, + "bioportal.emapa": { + "bioportal": { + "name": "Mouse gross anatomy and development, timed", + "prefix": "EMAPA", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/EMAPA_$1" + } + }, + "bioportal.emif-ad": { + "bioportal": { + "name": "EMIF-AD ontology", + "prefix": "EMIF-AD", + "subjects": [ + "Health", + "Neurologic Disease" + ], + "uri_format": "http://www.semanticweb.org/emif/ontologies/2015/AD$1" + } + }, + "bioportal.emo": { + "bioportal": { + "name": "Enzyme Mechanism Ontology", + "prefix": "EMO", + "subjects": [ + "Protein" + ], + "uri_format": "http://www.semanticweb.org/ontologies/2011/1/14/EMO.owl/EMO_$1" + } + }, + "bioportal.enm": { + "bioportal": { + "name": "eNanoMapper", + "prefix": "ENM", + "subjects": [ + "Health", + "Chemical" + ], + "uri_format": "http://purl.enanomapper.org/onto/ENM_$1" + } + }, + "bioportal.entity": { + "bioportal": { + "name": "ISO-15926-2_2003_entityMembership", + "prefix": "ENTITY", + "subjects": [ + "Other" + ], + "uri_format": "http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#$1" + } + }, + "bioportal.envo": { + "bioportal": { + "name": "Environment Ontology", + "prefix": "ENVO", + "subjects": [ + "Experimental Conditions", + "Other", + "Physicochemical" + ], + "uri_format": "http://purl.obolibrary.org/obo/ENVO_$1" + } + }, + "bioportal.envs_variables": { + "bioportal": { + "name": "ENVS variables", + "prefix": "ENVS_VARIABLES", + "subjects": [], + "uri_format": "http://purl.org/m4m-dk-2/variables$1" + } + }, + "bioportal.envthes": { + "bioportal": { + "name": "Thesaurus for long-term ecological research, monitoring, experiments", + "prefix": "ENVTHES", + "subjects": [ + "Other" + ], + "uri_format": "http://vocabs.lter-europe.net/EnvThes$1" + } + }, + "bioportal.eo": { + "bioportal": { + "name": "Ethnicity Ontoloy", + "prefix": "EO", + "subjects": [ + "Other" + ], + "uri_format": "http://www.semanticweb.org/ethnicityOntology#$1" + } + }, + "bioportal.eo1": { + "bioportal": { + "name": "Example Ontology", + "prefix": "EO1", + "subjects": [], + "uri_format": "http://www.fairdatacollective.com/template-vocabulary$1" + } + }, + "bioportal.eol": { + "bioportal": { + "name": "Environment Ontology for Livestock", + "prefix": "EOL", + "subjects": [], + "uri_format": "http://purl.org/obo/owlEOL_$1" + } + }, + "bioportal.ep": { + "bioportal": { + "name": "Cardiac Electrophysiology Ontology", + "prefix": "EP", + "subjects": [ + "Experimental Conditions" + ], + "uri_format": "http://www.cvrgrid.org/ontologies/Electrophysiology#$1" + } + }, + "bioportal.epie": { + "bioportal": { + "name": "Epigenetic Entity", + "prefix": "EPIE", + "subjects": [ + "Other" + ], + "uri_format": "https://pat.nichd.nih.gov/patepigeneticentity$1" + } + }, + "bioportal.epilont": { + "bioportal": { + "name": "Epilepsy Ontology", + "prefix": "EPILONT", + "subjects": [ + "Health", + "Biomedical Resources", + "Neurologic Disease", + "Neurological Disorder", + "Human", + "Development", + "Vocabularies" + ], + "uri_format": "http://www.semanticweb.org/ontologies/2009/3/EpilepsyOntology.owl#$1" + } + }, + "bioportal.epio": { + "bioportal": { + "name": "EpilepsyOntology", + "prefix": "EPIO", + "subjects": [ + "Neurological Disorder" + ], + "uri_format": "http://purl.obolibrary.org/obo/DOID_$1" + } + }, + "bioportal.epip": { + "bioportal": { + "name": "Epigenetic Process", + "prefix": "EPIP", + "subjects": [ + "Biological Process" + ], + "uri_format": "https://pat.nichd.nih.gov/patepigeneticprocess$1" + } + }, + "bioportal.episem": { + "bioportal": { + "name": "Epilepsy Semiology", + "prefix": "EPISEM", + "subjects": [ + "Neurological Disorder" + ], + "uri_format": "http://www.semanticweb.org/danielhier/ontologies/2019/3/untitled-ontology-57$1" + } + }, + "bioportal.epo": { + "bioportal": { + "name": "Early Pregnancy Ontology", + "prefix": "EPO", + "subjects": [ + "Imaging" + ], + "uri_format": "http://www.semanticweb.org/ontologies/epo.owl#$1" + } + }, + "bioportal.epso": { + "bioportal": { + "name": "Epilepsy and Seizure Ontology", + "prefix": "EPSO", + "subjects": [ + "Neurologic Disease", + "Neurological Disorder" + ], + "uri_format": "http://www.case.edu/EpilepsyOntology.owl#$1" + } + }, + "bioportal.ero": { + "bioportal": { + "name": "Eagle-I Research Resource Ontology", + "prefix": "ERO", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://purl.obolibrary.org/obo/ERO_$1" + } + }, + "bioportal.esfo": { + "bioportal": { + "name": "Enzyme Structure Function Ontology", + "prefix": "ESFO", + "subjects": [ + "Protein" + ], + "uri_format": "http://www.semanticweb.org/shoshana/ontologies/2014/8/untitled-ontology-8#$1" + } + }, + "bioportal.esso": { + "bioportal": { + "name": "Epilepsy Syndrome Seizure Ontology", + "prefix": "ESSO", + "subjects": [ + "Neurologic Disease" + ], + "uri_format": "http://www.semanticweb.org/rjyy/ontologies/2015/5/ESSO#$1" + } + }, + "bioportal.etanc": { + "bioportal": { + "name": "ETHIOPIANC", + "prefix": "ETANC", + "subjects": [ + "Vocabularies" + ], + "uri_format": "https://github.com/VODANA/Controlled-vocabulary/ethanc$1" + } + }, + "bioportal.ethanc": { + "bioportal": { + "name": "ETHANC", + "prefix": "ETHANC", + "subjects": [ + "Vocabularies" + ], + "uri_format": "https://github.com/VODANA/Controlled-vocabulary/ethanc$1" + } + }, + "bioportal.ethopd": { + "bioportal": { + "name": "Ethiopian OPD", + "prefix": "ETHOPD", + "subjects": [ + "Vocabularies" + ], + "uri_format": "https://github.com/VODANA/Controlled-vocabulary/ethanc$1" + } + }, + "bioportal.eupath": { + "bioportal": { + "name": "VEuPathDB Ontology", + "prefix": "EUPATH", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://purl.obolibrary.org/obo/EUPATH_$1" + } + }, + "bioportal.evi": { + "bioportal": { + "name": "Evidence Graph Ontology", + "prefix": "EVI", + "subjects": [ + "Experimental Conditions", + "Biomedical Resources", + "Biological Process", + "Other" + ], + "uri_format": "https://w3id.org/EVI#$1" + } + }, + "bioportal.exact": { + "bioportal": { + "name": "An ontology for experimental actions", + "prefix": "EXACT", + "subjects": [], + "uri_format": "http://www.owl-ontologies.com/Ontology1184060740.owl#$1" + } + }, + "bioportal.exmo": { + "bioportal": { + "name": "Exercise Medicine Ontology", + "prefix": "EXMO", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/exm.owl/EXM_$1" + } + }, + "bioportal.exo": { + "bioportal": { + "name": "Exposure Ontology", + "prefix": "EXO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/ExO_$1" + } + }, + "bioportal.exon": { + "bioportal": { + "name": "Experimental Ontology", + "prefix": "EXON", + "subjects": [], + "uri_format": "urn:absolute:Experiment01#$1" + } + }, + "bioportal.extract": { + "bioportal": { + "name": "EXTeRnAl Conditions Taxonomy (EXTRACT)", + "prefix": "EXTRACT", + "subjects": [], + "uri_format": "http://purl.org/extract$1" + } + }, + "bioportal.faldo": { + "bioportal": { + "name": "Feature Annotation Location Description Ontology ", + "prefix": "FALDO", + "subjects": [ + "Other", + "Protein", + "Vocabularies" + ], + "uri_format": "http://biohackathon.org/resource/faldo#$1" + } + }, + "bioportal.fall": { + "bioportal": { + "name": "MyOntoServiceFull_FallDetection", + "prefix": "FALL", + "subjects": [], + "uri_format": "http://www.semanticweb.org/abed/ontologies/2015/2/untitled-ontology-346#$1" + } + }, + "bioportal.fao": { + "bioportal": { + "name": "Fungal Gross Anatomy Ontology", + "prefix": "FAO", + "subjects": [ + "Gross Anatomy", + "Anatomy", + "Microbial Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/FAO_$1" + } + }, + "bioportal.fast-event": { + "bioportal": { + "name": "FAST (Faceted Application of Subject Terminology) Event", + "prefix": "FAST-EVENT", + "subjects": [], + "uri_format": "http://schema.org$1" + } + }, + "bioportal.fast-event-skos": { + "bioportal": { + "name": "FAST (Faceted Application of Subject Terminology) Event Facet", + "prefix": "FAST-EVENT-SKOS", + "subjects": [], + "uri_format": "http://data.bnf.fr/ark:/12148$1" + } + }, + "bioportal.fast-formgenre": { + "bioportal": { + "name": "FAST (Faceted Application of Subject Terminology) FormGenre facet", + "prefix": "FAST-FORMGENRE", + "subjects": [], + "uri_format": "http://id.loc.gov/authorities/subjects$1" + } + }, + "bioportal.fast-genreform": { + "bioportal": { + "name": "FAST (Faceted Access of Subject Terminology) GenreForm", + "prefix": "FAST-GENREFORM", + "subjects": [ + "Other" + ], + "uri_format": "http://id.loc.gov/authorities/subjects$1" + } + }, + "bioportal.fast-title": { + "bioportal": { + "name": "FAST (Faceted Application of Subject Terminology) Title Facet", + "prefix": "FAST-TITLE", + "subjects": [], + "uri_format": "http://data.bnf.fr/ark:/12148$1" + } + }, + "bioportal.fb-bt": { + "bioportal": { + "name": "Drosophila Gross Anatomy Ontology", + "prefix": "FB-BT", + "subjects": [ + "Gross Anatomy", + "Anatomy", + "Animal Gross Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/FBbt_$1" + } + }, + "bioportal.fb-cv": { + "bioportal": { + "name": "FlyBase Controlled Vocabulary", + "prefix": "FB-CV", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://purl.obolibrary.org/obo/FBcv_$1" + } + }, + "bioportal.fb-dv": { + "bioportal": { + "name": "Drosophila Development Ontology", + "prefix": "FB-DV", + "subjects": [ + "Development", + "Animal Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/FBdv_$1" + } + }, + "bioportal.fb-sp": { + "bioportal": { + "name": "Fly Taxonomy", + "prefix": "FB-SP", + "subjects": [ + "Taxonomic Classification" + ], + "uri_format": "http://purl.obolibrary.org/obo/FBsp_$1" + } + }, + "bioportal.fbbi": { + "bioportal": { + "name": "Biological Imaging Methods Ontology", + "prefix": "FBbi", + "subjects": [ + "Imaging", + "Experimental Conditions" + ], + "uri_format": "http://purl.obolibrary.org/obo/FBbi_$1" + } + }, + "bioportal.fcc1": { + "bioportal": { + "name": "Fernald Community Cohort N", + "prefix": "FCC1", + "subjects": [ + "Health" + ], + "uri_format": "http://www.semanticweb.org/diwaleva/ontologies/2019/9/fcc-ontology#$1" + } + }, + "bioportal.fdc-gdmt": { + "bioportal": { + "name": "Ontology for Generic Dataset Metadata Template", + "prefix": "FDC-GDMT", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://vocab.fairdatacollective.org/gdmt$1" + } + }, + "bioportal.fdsajfahsjk": { + "bioportal": { + "name": "OWL_XML_Tool5", + "prefix": "FDSAJFAHSJK", + "subjects": [], + "uri_format": "http://example.com/owl/families/import/familyImport17$1" + } + }, + "bioportal.fdt-o": { + "bioportal": { + "name": "FAIR Data Train Ontology", + "prefix": "FDT-O", + "subjects": [ + "Vocabularies" + ], + "uri_format": "https://w3id.org/fdp/fdt-o#$1" + } + }, + "bioportal.fenics": { + "bioportal": { + "name": "Functional Epilepsy Nomenclature for Ion Channels", + "prefix": "FENICS", + "subjects": [ + "Biological Process", + "Neurological Disorder", + "Protein", + "Gene Product" + ], + "uri_format": "http://webprotege.stanford.edu$1" + } + }, + "bioportal.fg": { + "bioportal": { + "name": "FAIR Genomes", + "prefix": "FG", + "subjects": [ + "Health", + "Biomedical Resources", + "Genomic and Proteomic", + "Human" + ], + "uri_format": "https://w3id.org/fair-genomes/ontology$1" + } + }, + "bioportal.fgnhns": { + "bioportal": { + "name": "FoodGroupNHNS", + "prefix": "FGNHNS", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/NIBIOHN_$1" + } + }, + "bioportal.fhho": { + "bioportal": { + "name": "Family Health History Ontology", + "prefix": "FHHO", + "subjects": [ + "Health" + ], + "uri_format": "http://www.owl-ontologies.com/Ontology1172270693.owl#$1" + } + }, + "bioportal.fideo": { + "bioportal": { + "name": "Food Interactions with Drugs Evidence Ontology", + "prefix": "FIDEO", + "subjects": [ + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/FIDEO_$1" + } + }, + "bioportal.fire": { + "bioportal": { + "name": "Fire Ontology", + "prefix": "FIRE", + "subjects": [], + "uri_format": "http://cerrado.linkeddata.es/ecology/fire#$1" + } + }, + "bioportal.fish-ast": { + "bioportal": { + "name": "FISH Archaeological Sciences Thesaurus", + "prefix": "FISH-AST", + "subjects": [], + "uri_format": "http://purl.org/heritagedata/schemes/560/concepts$1" + } + }, + "bioportal.fisho": { + "bioportal": { + "name": "Fish Ontology", + "prefix": "FISHO", + "subjects": [ + "Fish Anatomy" + ], + "uri_format": "http://bioportal.bioontology.org/ontologies/FISHO#$1" + } + }, + "bioportal.fix": { + "bioportal": { + "name": "Physico-Chemical Methods and Properties", + "prefix": "FIX", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/FIX_$1" + } + }, + "bioportal.flopo": { + "bioportal": { + "name": "Flora Phenotype Ontology", + "prefix": "FLOPO", + "subjects": [ + "Phenotype", + "Plant" + ], + "uri_format": "http://purl.obolibrary.org/obo/FLOPO_$1" + } + }, + "bioportal.flu": { + "bioportal": { + "name": "Influenza Ontology", + "prefix": "FLU", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/FLU_$1" + } + }, + "bioportal.flyglycodb": { + "bioportal": { + "name": "FlyGlycoDB", + "prefix": "FLYGLYCODB", + "subjects": [ + "Gene Product" + ], + "uri_format": "http://www.flyglycodb.org/ontologies/2015$1" + } + }, + "bioportal.fmpm": { + "bioportal": { + "name": "Food Matrix for Predictive Microbiology", + "prefix": "FMPM", + "subjects": [ + "Biomedical Resources", + "Vocabularies" + ], + "uri_format": "urn:absolute:FMPM#$1" + } + }, + "bioportal.fo": { + "bioportal": { + "name": "Fern Ontology", + "prefix": "FO", + "subjects": [ + "Plant Anatomy" + ], + "uri_format": "http://purl.jp/bio/01/fo#$1" + } + }, + "bioportal.foaf": { + "bioportal": { + "name": "Friend of a Friend Vocabulary", + "prefix": "FOAF", + "subjects": [ + "Other" + ], + "uri_format": "http://xmlns.com/foaf/0.1$1" + } + }, + "bioportal.fobi": { + "bioportal": { + "name": "FOBI (Food-Biomarker Ontology)", + "prefix": "FOBI", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/FOBI_$1" + } + }, + "bioportal.foodon": { + "bioportal": { + "name": "The FoodOn Food Ontology", + "prefix": "FOODON", + "subjects": [ + "All Organisms", + "Health", + "Biomedical Resources", + "Plant", + "Vocabularies" + ], + "uri_format": "http://purl.obolibrary.org/obo/FOODON_$1" + } + }, + "bioportal.fovt": { + "bioportal": { + "name": "FuTRES Ontology of Vertebrate Traits", + "prefix": "FOVT", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/FOVT_$1" + } + }, + "bioportal.fplx": { + "bioportal": { + "name": "FamPlex", + "prefix": "FPLX", + "subjects": [ + "Protein" + ], + "uri_format": "http://purl.obolibrary.org/obo/FPLX_$1" + } + }, + "bioportal.frmo": { + "bioportal": { + "name": "Fall Risk Management Ontology ", + "prefix": "FRMO", + "subjects": [ + "Other" + ], + "uri_format": "http://www.semanticweb.org/ftuha/ontologies/2021/5/FRMO-01untitled-ontology-175$1" + } + }, + "bioportal.ftc": { + "bioportal": { + "name": "Functional Therapeutic Chemical Classification System", + "prefix": "FTC", + "subjects": [ + "Chemical" + ], + "uri_format": "http://www.ebi.ac.uk/chembl/ftc/FTC_$1" + } + }, + "bioportal.fypo": { + "bioportal": { + "name": "Fission Yeast Phenotype Ontology", + "prefix": "FYPO", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/FYPO_$1" + } + }, + "bioportal.g-prov": { + "bioportal": { + "name": "Guideline Provenance", + "prefix": "G-PROV", + "subjects": [], + "uri_format": "http://www.w3.org/ns/prov#$1" + } + }, + "bioportal.galen": { + "bioportal": { + "name": "Galen Ontology", + "prefix": "GALEN", + "subjects": [ + "Other" + ], + "uri_format": "http://www.co-ode.org/ontologies/galen#$1" + } + }, + "bioportal.gaz": { + "bioportal": { + "name": "Gazetteer", + "prefix": "GAZ", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/GAZ_$1" + } + }, + "bioportal.gbm": { + "bioportal": { + "name": "Glioblastoma", + "prefix": "GBM", + "subjects": [ + "Health", + "Anatomy", + "Human" + ], + "uri_format": "http://www.semanticweb.org/ontologies/2010/10/BPO.owl#$1" + } + }, + "bioportal.gbol": { + "bioportal": { + "name": "GBOL", + "prefix": "GBOL", + "subjects": [ + "All Organisms" + ], + "uri_format": "http://gbol.life/0.1$1" + } + }, + "bioportal.gco": { + "bioportal": { + "name": "Genome Component Ontology", + "prefix": "GCO", + "subjects": [ + "Biomedical Resources", + "Genomic and Proteomic" + ], + "uri_format": "http://rdf.biosemantics.org/ontologies/genomecomponents#$1" + } + }, + "bioportal.gdco": { + "bioportal": { + "name": "Data Collection Ontology", + "prefix": "GDCO", + "subjects": [ + "Development" + ], + "uri_format": "http://purl.org/dco/v1#$1" + } + }, + "bioportal.gecko": { + "bioportal": { + "name": "Genomics Cohorts Knowledge Ontology", + "prefix": "GECKO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/GECKO_$1" + } + }, + "bioportal.gene-cds": { + "bioportal": { + "name": "Genomic Clinical Decision Support Ontology", + "prefix": "GENE-CDS", + "subjects": [ + "Health", + "Genomic and Proteomic", + "Human" + ], + "uri_format": "http://www.genomic-cds.org/ont/genomic-cds.owl#$1" + } + }, + "bioportal.geno": { + "bioportal": { + "name": "Genotype Ontology", + "prefix": "GENO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/GENO_$1" + } + }, + "bioportal.geo": { + "bioportal": { + "name": "Geographical Entity Ontology", + "prefix": "GEO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/GEO_$1" + } + }, + "bioportal.geosparql": { + "bioportal": { + "name": "GeoSPARQL", + "prefix": "GEOSPARQL", + "subjects": [ + "Other" + ], + "uri_format": "http://www.opengis.net/ont/geosparql#$1" + } + }, + "bioportal.geospecies": { + "bioportal": { + "name": "GeoSpecies Ontology", + "prefix": "GEOSPECIES", + "subjects": [ + "Other" + ], + "uri_format": "http://rdf.geospecies.org/ont/geospecies#$1" + } + }, + "bioportal.gexo": { + "bioportal": { + "name": "Gene Expression Ontology", + "prefix": "GEXO", + "subjects": [ + "Biological Process" + ], + "uri_format": "http://identifiers.org/intact$1" + } + }, + "bioportal.gffo": { + "bioportal": { + "name": "Genetic Feature Format Ontology", + "prefix": "GFFO", + "subjects": [ + "Genomic and Proteomic", + "Protein", + "Gene Product", + "Vocabularies" + ], + "uri_format": "https://raw.githubusercontent.com/mpievolbio-scicomp/GenomeFeatureFormatOntology/main/gffo#$1" + } + }, + "bioportal.gfo": { + "bioportal": { + "name": "General Formal Ontology", + "prefix": "GFO", + "subjects": [ + "All Organisms", + "Upper Level Ontology" + ], + "uri_format": "http://www.onto-med.de/ontologies/gfo.owl#$1" + } + }, + "bioportal.gfo-bio": { + "bioportal": { + "name": "General Formal Ontology for Biology", + "prefix": "GFO-BIO", + "subjects": [ + "Mouse Anatomy", + "All Organisms", + "Cellular anatomy ", + "Molecule", + "Gross Anatomy", + "Biological Process", + "Subcellular", + "Phenotype", + "Human Developmental Anatomy", + "Plant Anatomy", + "Anatomy", + "Plant", + "Human", + "Subcellular anatomy", + "Chemical", + "Cell", + "Development", + "Protein", + "Animal Gross Anatomy", + "Gene Product", + "Plant Development", + "Animal Development" + ], + "uri_format": "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#$1" + } + }, + "bioportal.gfvo": { + "bioportal": { + "name": "Genomic Feature and Variation Ontology", + "prefix": "GFVO", + "subjects": [ + "Biomedical Resources", + "Genomic and Proteomic", + "Biological Process", + "Human", + "Gene Product" + ], + "uri_format": "https://www.codamono.com/biointerchange/gfvo#$1" + } + }, + "bioportal.glyco": { + "bioportal": { + "name": "Glycomics Ontology", + "prefix": "GLYCO", + "subjects": [ + "Molecule", + "Biomedical Resources", + "Other", + "Chemical", + "Protein" + ], + "uri_format": "http://glycomics.ccrc.uga.edu/ontologies/GlycO#$1" + } + }, + "bioportal.glycocoo": { + "bioportal": { + "name": "GlycoConjugate Ontology", + "prefix": "GLYCOCOO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.jp/bio/12/glyco/glycan#$1" + } + }, + "bioportal.glycordf": { + "bioportal": { + "name": "GlycoRDF", + "prefix": "GLYCORDF", + "subjects": [], + "uri_format": "http://purl.jp/bio/12/glyco/glycan#$1" + } + }, + "bioportal.gml": { + "bioportal": { + "name": "Ontology for Geography Markup Language (GML3.0)", + "prefix": "GML", + "subjects": [ + "Other" + ], + "uri_format": "http://loki.cae.drexel.edu/~wbs/ontology/2004/09/ogc-gml#$1" + } + }, + "bioportal.gmm": { + "bioportal": { + "name": "GoMapMan", + "prefix": "GMM", + "subjects": [ + "Biological Process", + "Arabidopsis", + "Plant" + ], + "uri_format": "http://purl.obolibrary.org/obo/GMM_$1" + } + }, + "bioportal.gmo": { + "bioportal": { + "name": "Growth Medium Ontology", + "prefix": "GMO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.jp/bio/10/gmo/GMO_$1" + } + }, + "bioportal.gno": { + "bioportal": { + "name": "Glycan Naming Ontology", + "prefix": "GNO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/GNO_$1" + } + }, + "bioportal.go": { + "bioportal": { + "name": "Gene Ontology", + "prefix": "GO", + "subjects": [ + "Genomic and Proteomic" + ], + "uri_format": "http://purl.obolibrary.org/obo/GO_$1" + } + }, + "bioportal.go-ext": { + "bioportal": { + "name": "Gene Ontology Extension", + "prefix": "GO-EXT", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/GO_$1" + } + }, + "bioportal.gpml": { + "bioportal": { + "name": "Graphical Pathway Markup Language", + "prefix": "GPML", + "subjects": [ + "Biological Process", + "Vocabularies" + ], + "uri_format": "http://vocabularies.wikipathways.org/gpml#$1" + } + }, + "bioportal.gro": { + "bioportal": { + "name": "Gene Regulation Ontology", + "prefix": "GRO", + "subjects": [ + "Genomic and Proteomic" + ], + "uri_format": "http://www.bootstrep.eu/ontology/GRO#$1" + } + }, + "bioportal.gro-cpd": { + "bioportal": { + "name": "Cereal Plant Development Ontology", + "prefix": "GRO-CPD", + "subjects": [ + "Plant", + "Development", + "Plant Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/GRO_$1" + } + }, + "bioportal.gro-cpga": { + "bioportal": { + "name": "Cereal Plant Gross Anatomy Ontology", + "prefix": "GRO-CPGA", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/PO_$1" + } + }, + "bioportal.gsso": { + "bioportal": { + "name": "Gender, Sex, and Sexual Orientation Ontology", + "prefix": "GSSO", + "subjects": [ + "Other", + "Vocabularies" + ], + "uri_format": "http://purl.obolibrary.org/obo/GSSO_$1" + } + }, + "bioportal.gvo": { + "bioportal": { + "name": "Genome Variation Ontology", + "prefix": "GVO", + "subjects": [ + "Genomic and Proteomic" + ], + "uri_format": "http://genome-variation.org/resource/gvo#$1" + } + }, + "bioportal.haauraado": { + "bioportal": { + "name": "Halocynthia aurantium Anatomy and Development Ontology", + "prefix": "HAAURAADO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/HaauraA_$1" + } + }, + "bioportal.hamidehsgh": { + "bioportal": { + "name": "Inherited Retinal Dystrophy", + "prefix": "HAMIDEHSGH", + "subjects": [ + "Human" + ], + "uri_format": "http://www.semanticweb.org/hamide/ontologies/2019/3/IRD_$1" + } + }, + "bioportal.hancestro": { + "bioportal": { + "name": "Human Ancestry Ontology", + "prefix": "HANCESTRO", + "subjects": [ + "Experimental Conditions", + "Human", + "Vocabularies" + ], + "uri_format": "http://purl.obolibrary.org/obo/HANCESTRO_$1" + } + }, + "bioportal.hao": { + "bioportal": { + "name": "Hymenoptera Anatomy Ontology", + "prefix": "HAO", + "subjects": [ + "Gross Anatomy", + "Anatomy", + "Animal Gross Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/HAO_$1" + } + }, + "bioportal.haroreado": { + "bioportal": { + "name": "Halocynthia roretzi Anatomy and Development Ontology", + "prefix": "HAROREADO", + "subjects": [ + "Anatomy", + "Animal Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/HaroreA_$1" + } + }, + "bioportal.hasco": { + "bioportal": { + "name": "Human-Aware Science Ontology", + "prefix": "HASCO", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://hadatac.org/ont/hasco$1" + } + }, + "bioportal.hcdr": { + "bioportal": { + "name": "Homelessness and Clinical Data Recording", + "prefix": "HCDR", + "subjects": [ + "Other" + ], + "uri_format": "http://www.semanticweb.org/m14067/ontologies/2020/0/untitled-ontology-5#$1" + } + }, + "bioportal.hcodonont": { + "bioportal": { + "name": "HGeneCodonOntology", + "prefix": "HCODONONT", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://bioportal/bioontology.org/ontologies/HIVO0004#$1" + } + }, + "bioportal.hcpcs": { + "bioportal": { + "name": "Healthcare Common Procedure Coding System", + "prefix": "HCPCS", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/HCPCS$1" + } + }, + "bioportal.hdmponto": { + "bioportal": { + "name": "HierarchicalDMProcessOnto", + "prefix": "HDMPONTO", + "subjects": [ + "Taxonomic Classification" + ], + "uri_format": "http://www.semanticweb.org/mantx/ontologies/Process.owl#$1" + } + }, + "bioportal.hecon": { + "bioportal": { + "name": "HECON: Health Condition Evolution Ontology", + "prefix": "HECON", + "subjects": [ + "Health", + "Other" + ], + "uri_format": "http://kmi.open.ac.uk/conrad/HECON#$1" + } + }, + "bioportal.heio": { + "bioportal": { + "name": "Regional Healthcare System Interoperability and Information Exchange Measurement Ontology", + "prefix": "HEIO", + "subjects": [ + "Other" + ], + "uri_format": "http://whistl.uwaterloo.ca/heio.owl#$1" + } + }, + "bioportal.hfo": { + "bioportal": { + "name": "Heart Failure Ontology", + "prefix": "HFO", + "subjects": [ + "Ethology", + "Health", + "Phenotype", + "Human", + "Vocabularies" + ], + "uri_format": "http://bmi.utah.edu/ontologies/hfontology$1" + } + }, + "bioportal.hgnc": { + "bioportal": { + "name": "HUGO Gene Nomenclature", + "prefix": "HGNC", + "subjects": [ + "Health" + ], + "uri_format": "http://ncicb.nci.nih.gov/xml/owl/EVS/Hugo.owl#$1" + } + }, + "bioportal.hgnc-nr": { + "bioportal": { + "name": "HGNC New Releases Ontology", + "prefix": "HGNC-NR", + "subjects": [ + "Genomic and Proteomic" + ], + "uri_format": "http://identifiers.org/hgnc$1" + } + }, + "bioportal.hhear": { + "bioportal": { + "name": "Human Health Exposure Analysis Resource", + "prefix": "HHEAR", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.org/twc/HHEAR_$1" + } + }, + "bioportal.hino": { + "bioportal": { + "name": "Human Interaction Network Ontology", + "prefix": "HINO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/HINO_$1" + } + }, + "bioportal.hivcrs": { + "bioportal": { + "name": "HIVCompoundRels", + "prefix": "HIVCRS", + "subjects": [], + "uri_format": "http://www.semanticweb.org/hanfei/ontologies/2017/2/untitled-ontology-287#$1" + } + }, + "bioportal.hivmt": { + "bioportal": { + "name": "HIVMutation", + "prefix": "HIVMT", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://bioportal/bioontology.org/ontologies/HIVO0004#$1" + } + }, + "bioportal.hivo004": { + "bioportal": { + "name": "HIVOntologymain.owl", + "prefix": "HIVO004", + "subjects": [ + "Immunology", + "Taxonomic Classification", + "Molecule", + "Health", + "Dysfunction", + "Biomedical Resources", + "Biological Process", + "Subcellular", + "Protein" + ], + "uri_format": "http://bioportal/bioontology.org/ontologies/HIVO0004#$1" + } + }, + "bioportal.hl7": { + "bioportal": { + "name": "Health Level Seven Reference Implementation Model, Version 3", + "prefix": "HL7", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/HL7$1" + } + }, + "bioportal.hmislab0115": { + "bioportal": { + "name": "HMIS LAB 011 5", + "prefix": "HMISLAB0115", + "subjects": [], + "uri_format": "http://www.fairdatacollective.com/template-vocabulary$1" + } + }, + "bioportal.hns": { + "bioportal": { + "name": "HNS_Ontolgoy", + "prefix": "HNS", + "subjects": [ + "Health", + "Neurologic Disease", + "Human" + ], + "uri_format": "http://www.humannervousystem.org/KAnOE/2014/dave86#$1" + } + }, + "bioportal.ho": { + "bioportal": { + "name": "Histological Ontology", + "prefix": "HO", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://www.univalle.edu.co/ontologies/organ#$1" + } + }, + "bioportal.hoip": { + "bioportal": { + "name": "Homeostasis imbalance process ontology", + "prefix": "HOIP", + "subjects": [ + "Dysfunction", + "Biological Process" + ], + "uri_format": "http://purl.bioontology.org/ontology/HOIP/HOIP_$1" + } + }, + "bioportal.hom": { + "bioportal": { + "name": "Ontology of Homology and Related Concepts in Biology", + "prefix": "HOM", + "subjects": [ + "All Organisms", + "Molecule", + "Other", + "Anatomy", + "Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/HOM_$1" + } + }, + "bioportal.home": { + "bioportal": { + "name": "Health Ontology for Minority Equity", + "prefix": "HOME", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://www.semanticweb.org/navyarenjith/ontologies/2021/3/untitled-ontology-5#$1" + } + }, + "bioportal.hoom": { + "bioportal": { + "name": "HPO - ORDO Ontological Module", + "prefix": "HOOM", + "subjects": [ + "Health", + "Biomedical Resources", + "Phenotype", + "Human" + ], + "uri_format": "http://www.semanticweb.org/ontology/HOOM#$1" + } + }, + "bioportal.hord": { + "bioportal": { + "name": "Holistic Ontology of Rare Diseases", + "prefix": "HORD", + "subjects": [ + "Health" + ], + "uri_format": "https://cdn.rawgit.com/laiasubirats/rarediseasesontology/master/ICD10_1.0.owl#$1" + } + }, + "bioportal.hp": { + "bioportal": { + "name": "Human Phenotype Ontology", + "prefix": "HP", + "subjects": [ + "Health", + "Phenotype", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/HP_$1" + } + }, + "bioportal.hp_o": { + "bioportal": { + "name": "Hypersensitivity pneumonitis ontology", + "prefix": "HP_O", + "subjects": [ + "Other" + ], + "uri_format": "http://www.semanticweb.org/dellvostro3750/ontologies/2018/2/untitled-ontology-10#$1" + } + }, + "bioportal.hpio": { + "bioportal": { + "name": "Host Pathogen Interactions Ontology", + "prefix": "HPIO", + "subjects": [ + "Health" + ], + "uri_format": "http://www.semanticweb.org/ontologies/2010/5/22/Ontology1277229984000.owl#$1" + } + }, + "bioportal.hrdo": { + "bioportal": { + "name": "Disease core ontology applied to Rare Diseases", + "prefix": "HRDO", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://www.limics.org/hrdo/rdfns#$1" + } + }, + "bioportal.hsapdv": { + "bioportal": { + "name": "Human Developmental Stages Ontology", + "prefix": "HSAPDV", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/HsapDv_$1" + } + }, + "bioportal.hso": { + "bioportal": { + "name": "Health Surveillance Ontology", + "prefix": "HSO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/HSO_$1" + } + }, + "bioportal.htn": { + "bioportal": { + "name": "Hypertension Ontology", + "prefix": "HTN", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/HTN_$1" + } + }, + "bioportal.hto": { + "bioportal": { + "name": "Horridge Test Ontology", + "prefix": "HTO", + "subjects": [], + "uri_format": "http://protege.stanford.edu/ontologies/hto/846c3f2b_$1" + } + }, + "bioportal.hupson": { + "bioportal": { + "name": "Human Physiology Simulation Ontology", + "prefix": "HUPSON", + "subjects": [ + "Health" + ], + "uri_format": "http://scai.fraunhofer.de/HuPSON#$1" + } + }, + "bioportal.i-adopt": { + "bioportal": { + "name": "I-ADOPT Framework Ontology", + "prefix": "I-ADOPT", + "subjects": [ + "Other" + ], + "uri_format": "https://w3id.org/iadopt/ont$1" + } + }, + "bioportal.i2sv": { + "bioportal": { + "name": "Integration and Implementation Sciences Vocabulary", + "prefix": "I2SV", + "subjects": [ + "Other", + "Vocabularies" + ], + "uri_format": "https://i2insights.org/index/integration-and-implementation-sciences-vocabulary#$1" + } + }, + "bioportal.iaml-mop": { + "bioportal": { + "name": "IAML Medium of Performance Vocabulary", + "prefix": "IAML-MOP", + "subjects": [ + "Other" + ], + "uri_format": "http://data.doremus.org/vocabulary/iaml/mop$1" + } + }, + "bioportal.iao": { + "bioportal": { + "name": "Information Artifact Ontology", + "prefix": "IAO", + "subjects": [ + "Imaging", + "Biomedical Resources", + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/IAO_$1" + } + }, + "bioportal.ibd": { + "bioportal": { + "name": "Indian Biodiversity Ontology", + "prefix": "IBD", + "subjects": [], + "uri_format": "http://www.semanticweb.org/mca/ontologies/2018/8/untitled-ontology-47#$1" + } + }, + "bioportal.ibio": { + "bioportal": { + "name": "IndianBiodiversity", + "prefix": "IBIO", + "subjects": [], + "uri_format": "http://www.semanticweb.org/mca/ontologies/2018/8/untitled-ontology-47#$1" + } + }, + "bioportal.ibo": { + "bioportal": { + "name": "Imaging Biomarker Ontology", + "prefix": "IBO", + "subjects": [ + "Imaging", + "Health", + "Biological Process", + "Phenotype", + "Human" + ], + "uri_format": "http://www.semanticweb.org/eamdouni/ontologies/2015/5/IBO#$1" + } + }, + "bioportal.icd10": { + "bioportal": { + "name": "International Classification of Diseases, Version 10", + "prefix": "ICD10", + "subjects": [], + "uri_format": "http://purl.bioontology.org/ontology/ICD10$1" + } + }, + "bioportal.icd10cm": { + "bioportal": { + "name": "International Classification of Diseases, Version 10 - Clinical Modification", + "prefix": "ICD10CM", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/ICD10CM$1" + } + }, + "bioportal.icd10pcs": { + "bioportal": { + "name": "International Classification of Diseases, Version 10 - Procedure Coding System", + "prefix": "ICD10PCS", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/ICD10PCS$1" + } + }, + "bioportal.icd11-bodysystem": { + "bioportal": { + "name": "Body System Terms from ICD11", + "prefix": "ICD11-BODYSYSTEM", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://who.int/bodysystem.owl#$1" + } + }, + "bioportal.icd9cm": { + "bioportal": { + "name": "International Classification of Diseases, Version 9 - Clinical Modification", + "prefix": "ICD9CM", + "subjects": [], + "uri_format": "http://purl.bioontology.org/ontology/ICD9CM$1" + } + }, + "bioportal.icdo": { + "bioportal": { + "name": "International Classification of Diseases Ontology", + "prefix": "ICDO", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/ICDO_$1" + } + }, + "bioportal.iceci": { + "bioportal": { + "name": "International Classification of External Causes of Injuries", + "prefix": "ICECI", + "subjects": [], + "uri_format": "http://who.int/iceci#$1" + } + }, + "bioportal.iceo": { + "bioportal": { + "name": "Integrative and Conjugative Element Ontology", + "prefix": "ICEO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/ICEO_$1" + } + }, + "bioportal.icf": { + "bioportal": { + "name": "International Classification of Functioning, Disability and Health", + "prefix": "ICF", + "subjects": [ + "Health", + "Human", + "Vocabularies" + ], + "uri_format": "http://who.int/icf#$1" + } + }, + "bioportal.icnp": { + "bioportal": { + "name": "International Classification for Nursing Practice", + "prefix": "ICNP", + "subjects": [ + "Taxonomic Classification" + ], + "uri_format": "http://www.icn.ch/icnp#$1" + } + }, + "bioportal.ico": { + "bioportal": { + "name": "Informed Consent Ontology", + "prefix": "ICO", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/ICO_$1" + } + }, + "bioportal.icpc2p": { + "bioportal": { + "name": "International Classification of Primary Care - 2 PLUS", + "prefix": "ICPC2P", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/ICPC2P$1" + } + }, + "bioportal.icps": { + "bioportal": { + "name": "International Classification for Patient Safety", + "prefix": "ICPS", + "subjects": [ + "Health" + ], + "uri_format": "http://www.ICPS/ontologies/ActionsToReduceRisk#$1" + } + }, + "bioportal.icw": { + "bioportal": { + "name": "International Classification of Wellness", + "prefix": "ICW", + "subjects": [ + "Taxonomic Classification", + "Health" + ], + "uri_format": "http://webprotege.stanford.edu$1" + } + }, + "bioportal.id-amr": { + "bioportal": { + "name": "Infectious Diseases and Antimicrobial Resistance", + "prefix": "ID-AMR", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.org/zonmw/id-amr$1" + } + }, + "bioportal.idem": { + "bioportal": { + "name": "IDEM: wInD Energy Models Taxonomy", + "prefix": "IDEM", + "subjects": [], + "uri_format": "http://purl.org/idem$1" + } + }, + "bioportal.idg_gl": { + "bioportal": { + "name": "IDG gene list", + "prefix": "IDG_GL", + "subjects": [ + "Other" + ], + "uri_format": "http://druggablegenome.net$1" + } + }, + "bioportal.ido": { + "bioportal": { + "name": "Infectious Disease Ontology", + "prefix": "IDO", + "subjects": [ + "All Organisms", + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/IDO_$1" + } + }, + "bioportal.ido-covid-19": { + "bioportal": { + "name": "The COVID-19 Infectious Disease Ontology", + "prefix": "IDO-COVID-19", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/IDO_$1" + } + }, + "bioportal.idobru": { + "bioportal": { + "name": "Brucellosis Ontology", + "prefix": "IDOBRU", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/IDO_$1" + } + }, + "bioportal.idoden": { + "bioportal": { + "name": "Dengue Fever Ontology", + "prefix": "IDODEN", + "subjects": [ + "Health", + "Other", + "Human" + ], + "uri_format": "http://purl.bioontology.org/ontology/IDODEN_$1" + } + }, + "bioportal.idomal": { + "bioportal": { + "name": "Malaria Ontology", + "prefix": "IDOMAL", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/IDOMAL_$1" + } + }, + "bioportal.idqa": { + "bioportal": { + "name": "Image and Data Quality Assessment Ontology", + "prefix": "IDQA", + "subjects": [ + "Imaging" + ], + "uri_format": "http://purl.obolibrary.org/obo/ID_$1" + } + }, + "bioportal.ifar": { + "bioportal": { + "name": "Fanconi Anemia Ontology", + "prefix": "IFAR", + "subjects": [ + "Other" + ], + "uri_format": "http://www.semanticweb.org/ontologies/2012/11/abnormalities.owl#$1" + } + }, + "bioportal.illnessinjury": { + "bioportal": { + "name": "Illness and Injury", + "prefix": "ILLNESSINJURY", + "subjects": [ + "Taxonomic Classification", + "Health", + "Human" + ], + "uri_format": "http://www.owl-ontologies.com/unnamed.owl#$1" + } + }, + "bioportal.imgt-ontology": { + "bioportal": { + "name": "Immunogenetics Ontology", + "prefix": "IMGT-ONTOLOGY", + "subjects": [ + "Immunology" + ], + "uri_format": "http://www.imgt.org/download/IMGT-ONTOLOGY/IMGT-ONTOLOGY-v1-0-3.owl#$1" + } + }, + "bioportal.inbancido": { + "bioportal": { + "name": "Assessment of Indian Economy During Covid-19 ", + "prefix": "INBANCIDO", + "subjects": [], + "uri_format": "http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#$1" + } + }, + "bioportal.inbiodiv": { + "bioportal": { + "name": "An Ontology for Indian Biodiversity Knowledge Management", + "prefix": "INBIODIV", + "subjects": [], + "uri_format": "http://www.semanticweb.org/mca/ontologies/2018/8/untitled-ontology-47#$1" + } + }, + "bioportal.incentive": { + "bioportal": { + "name": "INCENTIVE Community Controlled Vocabulary", + "prefix": "INCENTIVE", + "subjects": [], + "uri_format": "http://purl.org/incentive$1" + } + }, + "bioportal.incentive-vars": { + "bioportal": { + "name": "INCENTIVE Variables", + "prefix": "INCENTIVE-VARS", + "subjects": [], + "uri_format": "http://purl.org/incentive$1" + } + }, + "bioportal.infrarisk": { + "bioportal": { + "name": "InfraRisk Ontology", + "prefix": "INFRARISK", + "subjects": [ + "Other" + ], + "uri_format": "https://www.infrarisk-fp7.eu/vocabs/#$1" + } + }, + "bioportal.ino": { + "bioportal": { + "name": "Interaction Network Ontology", + "prefix": "INO", + "subjects": [ + "All Organisms", + "Biological Process" + ], + "uri_format": "http://purl.obolibrary.org/obo/INO_$1" + } + }, + "bioportal.insecth": { + "bioportal": { + "name": "insectH", + "prefix": "INSECTH", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://neuromorpho.org/ontologies/insectH.owl#$1" + } + }, + "bioportal.insname": { + "bioportal": { + "name": "VODANAINSNAMES", + "prefix": "INSNAME", + "subjects": [ + "Other" + ], + "uri_format": "https://www.vodan-totafrica.info/vocs/institutions$1" + } + }, + "bioportal.into": { + "bioportal": { + "name": "Indian Terrorism Ontology", + "prefix": "INTO", + "subjects": [], + "uri_format": "http://www.semanticweb.org/Terrorism#$1" + } + }, + "bioportal.inverseroles": { + "bioportal": { + "name": "ISO-15926-2_2003_inverseRoles", + "prefix": "INVERSEROLES", + "subjects": [ + "Other" + ], + "uri_format": "http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#$1" + } + }, + "bioportal.iobc": { + "bioportal": { + "name": "Interlinking Ontology for Biological Concepts", + "prefix": "IOBC", + "subjects": [], + "uri_format": "http://purl.jp/bio/4/id$1" + } + }, + "bioportal.ird": { + "bioportal": { + "name": "Inherited Retinal Dystrophies", + "prefix": "IRD", + "subjects": [], + "uri_format": "http://www.semanticweb.org/msh/ontologies/2019/9/untitled-ontology-3#$1" + } + }, + "bioportal.irdg": { + "bioportal": { + "name": "Data harmonization ontology for cross border malaria surveillance ", + "prefix": "IRDG", + "subjects": [ + "Health" + ], + "uri_format": "http://www.semanticweb.org/IRDGuyamazon#$1" + } + }, + "bioportal.iso-15926-2_2003": { + "bioportal": { + "name": "ISO-15926-2_2003_oil", + "prefix": "ISO-15926-2_2003", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#$1" + } + }, + "bioportal.iso-annotations": { + "bioportal": { + "name": "ISO-15926-2_2003_annotations", + "prefix": "ISO-ANNOTATIONS", + "subjects": [ + "Other" + ], + "uri_format": "http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#$1" + } + }, + "bioportal.iso-food": { + "bioportal": { + "name": "A formal representation of the knowledge within the domain of Isotopes for Food Science", + "prefix": "ISO-FOOD", + "subjects": [ + "Chemical" + ], + "uri_format": "http://www.semanticweb.org/tome/ontologies/2018/3/ISO-FOOD#$1" + } + }, + "bioportal.iso19108to": { + "bioportal": { + "name": "ISO 19108 Temporal Objects", + "prefix": "ISO19108TO", + "subjects": [ + "Other" + ], + "uri_format": "http://def.isotc211.org/iso19108/2006/TemporalObjects#$1" + } + }, + "bioportal.iso19110": { + "bioportal": { + "name": "ISO 19110 Methodology for Feature Cataloguing", + "prefix": "ISO19110", + "subjects": [ + "Other" + ], + "uri_format": "http://def.isotc211.org/iso19110/2005/MethodologyForFeatureCataloguing#$1" + } + }, + "bioportal.iso19115": { + "bioportal": { + "name": "ISO 19115", + "prefix": "ISO19115", + "subjects": [ + "Other" + ], + "uri_format": "http://loki.cae.drexel.edu/~wbs/ontology/2004/09/iso-19115#$1" + } + }, + "bioportal.iso19115cc": { + "bioportal": { + "name": "ISO 19115 Common Classes", + "prefix": "ISO19115CC", + "subjects": [ + "Other" + ], + "uri_format": "http://def.isotc211.org/iso19115/-1/2014/CommonClasses#$1" + } + }, + "bioportal.iso19115ci": { + "bioportal": { + "name": "ISO 19115 Citation Information", + "prefix": "ISO19115CI", + "subjects": [ + "Other" + ], + "uri_format": "http://def.isotc211.org/iso19115/-1/2014/CitationAndResponsiblePartyInformation#$1" + } + }, + "bioportal.iso19115con": { + "bioportal": { + "name": "ISO 19115 Constraints Information", + "prefix": "ISO19115CON", + "subjects": [ + "Other" + ], + "uri_format": "http://def.isotc211.org/iso19115/-1/2014/ConstraintInformation#$1" + } + }, + "bioportal.iso19115di": { + "bioportal": { + "name": "ISO 19115 Distribution Information", + "prefix": "ISO19115DI", + "subjects": [ + "Other" + ], + "uri_format": "http://def.isotc211.org/iso19115/-1/2014/DistributionInformation#$1" + } + }, + "bioportal.iso19115dtc": { + "bioportal": { + "name": "ISO 19115 Date Type Code", + "prefix": "ISO19115DTC", + "subjects": [ + "Other" + ], + "uri_format": "http://def.isotc211.org/iso19115/-1/2014/CitationAndResponsiblePartyInformation/code/CI_/DateTypeCode$1" + } + }, + "bioportal.iso19115ex": { + "bioportal": { + "name": "ISO 19115 Extent Information", + "prefix": "ISO19115EX", + "subjects": [ + "Other" + ], + "uri_format": "http://def.isotc211.org/iso19115/-1/2014/ExtentInformation#$1" + } + }, + "bioportal.iso19115id": { + "bioportal": { + "name": "ISO 19115 Identification Information", + "prefix": "ISO19115ID", + "subjects": [ + "Other" + ], + "uri_format": "http://def.isotc211.org/iso19115/2003/IdentificationInformation#$1" + } + }, + "bioportal.iso19115mi": { + "bioportal": { + "name": "ISO 19115 Metadata Information", + "prefix": "ISO19115MI", + "subjects": [], + "uri_format": "http://def.isotc211.org/iso19115/-1/2014/CitationAndResponsiblePartyInformation#$1" + } + }, + "bioportal.iso19115pr": { + "bioportal": { + "name": "ISO 19115 Codelists", + "prefix": "ISO19115PR", + "subjects": [ + "Other" + ], + "uri_format": "http://www.geosciml.org/vocabularies/iso-19115-codelists.owl#$1" + } + }, + "bioportal.iso19115roles": { + "bioportal": { + "name": "ISO 19115 Role Codes", + "prefix": "ISO19115ROLES", + "subjects": [], + "uri_format": "http://def.isotc211.org/iso19115/-1/2014/CitationAndResponsiblePartyInformation/code/CI_/RoleCode$1" + } + }, + "bioportal.iso19115srs": { + "bioportal": { + "name": "ISO 19115 Reference Systems", + "prefix": "ISO19115SRS", + "subjects": [ + "Other" + ], + "uri_format": "http://www.w3.org/2004/02/skos/core#$1" + } + }, + "bioportal.iso19115tcc": { + "bioportal": { + "name": "ISO 19115 Topic Categories", + "prefix": "ISO19115TCC", + "subjects": [ + "Other" + ], + "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/code/TopicCategory$1" + } + }, + "bioportal.iso639-2": { + "bioportal": { + "name": "ISO 639-2: Codes for the Representation of Names of Languages", + "prefix": "ISO639-2", + "subjects": [ + "Other" + ], + "uri_format": "http://www.fao.org/aims/aos/languagecode.owl#$1" + } + }, + "bioportal.issva": { + "bioportal": { + "name": "International Society for the Study of Vascular Anomalies (ISSVA) Ontology", + "prefix": "ISSVA", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/ISSVA/ISSVA_$1" + } + }, + "bioportal.itemas": { + "bioportal": { + "name": "Medical Technology Innovation in healthcare centers", + "prefix": "ITEMAS", + "subjects": [ + "Other" + ], + "uri_format": "http://www.semanticweb.org/avl/ontologies/2017/7/ITEMAS_v1.2#$1" + } + }, + "bioportal.ito": { + "bioportal": { + "name": "Intelligence Task Ontology", + "prefix": "ITO", + "subjects": [ + "Other" + ], + "uri_format": "https://identifiers.org/ito:ITO_$1" + } + }, + "bioportal.ixno": { + "bioportal": { + "name": "Interaction Ontology", + "prefix": "IXNO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/GO_$1" + } + }, + "bioportal.jerm": { + "bioportal": { + "name": "Just Enough Results Model Ontology", + "prefix": "JERM", + "subjects": [ + "Experimental Conditions", + "Biomedical Resources", + "Biological Process", + "Other" + ], + "uri_format": "http://jermontology.org/ontology/JERMOntology#$1" + } + }, + "bioportal.kenyaanc": { + "bioportal": { + "name": "kenyaancfile", + "prefix": "KENYAANC", + "subjects": [], + "uri_format": "http://www.w3.org/2004/02/skos/core#$1" + } + }, + "bioportal.kisao": { + "bioportal": { + "name": "Kinetic Simulation Algorithm Ontology", + "prefix": "KISAO", + "subjects": [ + "Other" + ], + "uri_format": "http://www.biomodels.net/kisao/KISAO#$1" + } + }, + "bioportal.koro": { + "bioportal": { + "name": "Knowledge Object Reference Ontology", + "prefix": "KORO", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://www.knowledgegrid.org/koro#$1" + } + }, + "bioportal.ktao": { + "bioportal": { + "name": "Kidney Tissue Atlas Ontology", + "prefix": "KTAO", + "subjects": [ + "Cellular anatomy ", + "Molecule", + "Health", + "Dysfunction", + "Biomedical Resources", + "Genomic and Proteomic", + "Biological Process", + "Subcellular", + "Phenotype", + "Human Developmental Anatomy", + "Anatomy", + "Human", + "Subcellular anatomy", + "Cell", + "Development", + "Gene Product" + ], + "uri_format": "http://purl.obolibrary.org/obo/GO_$1" + } + }, + "bioportal.labo": { + "bioportal": { + "name": "clinical LABoratory Ontology", + "prefix": "LABO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/LABO_$1" + } + }, + "bioportal.land-surface": { + "bioportal": { + "name": "Land Surface classifiers", + "prefix": "LAND-SURFACE", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://anzsoil.org/def/au/asls/land-surface$1" + } + }, + "bioportal.landform": { + "bioportal": { + "name": "Landform classifiers", + "prefix": "LANDFORM", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://anzsoil.org/def/au/asls/landform$1" + } + }, + "bioportal.lbo": { + "bioportal": { + "name": "Livestock Breed Ontology", + "prefix": "LBO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/LBO_$1" + } + }, + "bioportal.lc-media": { + "bioportal": { + "name": "Library of Congress Media Types Scheme", + "prefix": "LC-MEDIA", + "subjects": [], + "uri_format": "http://id.loc.gov/vocabulary/mediaTypes$1" + } + }, + "bioportal.lda": { + "bioportal": { + "name": "Ontology of Language Disorder in Autism", + "prefix": "LDA", + "subjects": [ + "Health" + ], + "uri_format": "http://www.semanticweb.org/ontologies/2008/10/languageacquisition_autism.owl#$1" + } + }, + "bioportal.legalapa": { + "bioportal": { + "name": "legalapa", + "prefix": "LEGALAPA", + "subjects": [], + "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1" + } + }, + "bioportal.legalapatest2": { + "bioportal": { + "name": "apalegal", + "prefix": "LEGALAPATEST2", + "subjects": [], + "uri_format": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#$1" + } + }, + "bioportal.lepao": { + "bioportal": { + "name": "Lepidoptera Anatomy Ontology", + "prefix": "LEPAO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/LEPAO_$1" + } + }, + "bioportal.lhn": { + "bioportal": { + "name": "Loggerhead Nesting Ontology", + "prefix": "LHN", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/B8467_$1" + } + }, + "bioportal.lico": { + "bioportal": { + "name": "Liver Case Ontology (LiCO)", + "prefix": "LICO", + "subjects": [ + "Health" + ], + "uri_format": "http://vavlab.ee.boun.edu.tr/carera/khaos/lico.owl#$1" + } + }, + "bioportal.lifo": { + "bioportal": { + "name": "Life Ontology", + "prefix": "LIFO", + "subjects": [ + "All Organisms" + ], + "uri_format": "http://purl.obolibrary.org/obo/LifO_$1" + } + }, + "bioportal.lion": { + "bioportal": { + "name": "LipidOntology", + "prefix": "LION", + "subjects": [ + "Molecule", + "Physicochemical" + ], + "uri_format": "http://purl.obolibrary.org/obo/LION_$1" + } + }, + "bioportal.lipro": { + "bioportal": { + "name": "Lipid Ontology", + "prefix": "LIPRO", + "subjects": [], + "uri_format": "http://semanticscience.org/sadi/ontology/leo.owl#$1" + } + }, + "bioportal.loinc": { + "bioportal": { + "name": "Logical Observation Identifier Names and Codes", + "prefix": "LOINC", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/LNC$1" + } + }, + "bioportal.longcovid": { + "bioportal": { + "name": "Long Covid Phenotype Ontology", + "prefix": "LONGCOVID", + "subjects": [ + "Health", + "Phenotype" + ], + "uri_format": "http://www.semanticweb.org/orchid/ontologies/2021/Long-Covid-Phenotype-Ontology#$1" + } + }, + "bioportal.lpt": { + "bioportal": { + "name": "Livestock Product Trait Ontology", + "prefix": "LPT", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/LPT_$1" + } + }, + "bioportal.lungmap-human": { + "bioportal": { + "name": "Anatomic Ontology for Human Lung Maturation", + "prefix": "LUNGMAP-HUMAN", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/LMHA_$1" + } + }, + "bioportal.lungmap_h_cell": { + "bioportal": { + "name": "Cell Ontology for Human Lung Maturation", + "prefix": "LUNGMAP_H_CELL", + "subjects": [ + "Cell" + ], + "uri_format": "http://purl.obolibrary.org/obo/LMHA_$1" + } + }, + "bioportal.lungmap_m_cell": { + "bioportal": { + "name": "Cell Ontology for Mouse Lung Maturation", + "prefix": "LUNGMAP_M_CELL", + "subjects": [ + "Cell" + ], + "uri_format": "http://purl.obolibrary.org/obo/LMMA_$1" + } + }, + "bioportal.m4m-20-subjects": { + "bioportal": { + "name": "M4M.20 FAIRWare Subjects", + "prefix": "M4M-20-SUBJECTS", + "subjects": [], + "uri_format": "http://purl.org/m4m20/subjects$1" + } + }, + "bioportal.m4m-20-variables": { + "bioportal": { + "name": "M4M.20 FAIRWare Variables", + "prefix": "M4M-20-VARIABLES", + "subjects": [], + "uri_format": "http://purl.org/m4m20/variables$1" + } + }, + "bioportal.m4m-21-subjects": { + "bioportal": { + "name": "M4M.21 FAIRWare Subjects", + "prefix": "M4M-21-SUBJECTS", + "subjects": [], + "uri_format": "http://purl.org/m4m21/subjects$1" + } + }, + "bioportal.m4m-21-variables": { + "bioportal": { + "name": "M4M.21 FAIRWare Variables", + "prefix": "M4M-21-VARIABLES", + "subjects": [], + "uri_format": "http://purl.org/m4m21/variables$1" + } + }, + "bioportal.m4m19-subs": { + "bioportal": { + "name": "M4M19 Subjects", + "prefix": "M4M19-SUBS", + "subjects": [], + "uri_format": "http://purl.org/m4m19/subjects$1" + } + }, + "bioportal.m4m19-vars": { + "bioportal": { + "name": "M4M19 Variables", + "prefix": "M4M19-VARS", + "subjects": [], + "uri_format": "http://purl.org/m4m19/variables$1" + } + }, + "bioportal.ma": { + "bioportal": { + "name": "Mouse Adult Gross Anatomy Ontology", + "prefix": "MA", + "subjects": [ + "Mouse Anatomy", + "Gross Anatomy", + "Anatomy", + "Animal Gross Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/MA_$1" + } + }, + "bioportal.mads-rdf": { + "bioportal": { + "name": "Metadata Authority Description Schema in RDF", + "prefix": "MADS-RDF", + "subjects": [ + "Other" + ], + "uri_format": "http://www.loc.gov/mads/rdf/v1#$1" + } + }, + "bioportal.mamo": { + "bioportal": { + "name": "Mathematical Modelling Ontology", + "prefix": "MAMO", + "subjects": [ + "Other" + ], + "uri_format": "http://identifiers.org/mamo/MAMO_$1" + } + }, + "bioportal.marc-languages": { + "bioportal": { + "name": "MARC List for Languages", + "prefix": "MARC-LANGUAGES", + "subjects": [], + "uri_format": "http://id.loc.gov/vocabulary/languages$1" + } + }, + "bioportal.mat": { + "bioportal": { + "name": "Minimal Anatomical Terminology", + "prefix": "MAT", + "subjects": [ + "Gross Anatomy", + "Anatomy", + "Animal Gross Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/MAT_$1" + } + }, + "bioportal.matr": { + "bioportal": { + "name": "Material", + "prefix": "MATR", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://sweet.jpl.nasa.gov/2.3/matr.owl#$1" + } + }, + "bioportal.matrcompound": { + "bioportal": { + "name": "Material Compound", + "prefix": "MATRCOMPOUND", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://sweet.jpl.nasa.gov/2.3/matrCompound.owl#$1" + } + }, + "bioportal.matrelement": { + "bioportal": { + "name": "Material Element", + "prefix": "MATRELEMENT", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://sweet.jpl.nasa.gov/2.3/matrElement.owl#$1" + } + }, + "bioportal.matrrock": { + "bioportal": { + "name": "Material Rock", + "prefix": "MATRROCK", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://sweet.jpl.nasa.gov/2.3/matrRock.owl#$1" + } + }, + "bioportal.matrrockigneous": { + "bioportal": { + "name": "Material Rock Igneouus", + "prefix": "MATRROCKIGNEOUS", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://sweet.jpl.nasa.gov/2.3/matrRockIgneous.owl#$1" + } + }, + "bioportal.maxo": { + "bioportal": { + "name": "Medical Action Ontology", + "prefix": "MAXO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/MAXO_$1" + } + }, + "bioportal.mcbcc": { + "bioportal": { + "name": "Breast Tissue Cell Lines Ontology", + "prefix": "MCBCC", + "subjects": [ + "Cell" + ], + "uri_format": "http://purl.obolibrary.org/obo/MCBCC_0000275#$1" + } + }, + "bioportal.mccl": { + "bioportal": { + "name": "Cell Line Ontology [by Mahadevan]", + "prefix": "MCCL", + "subjects": [ + "Health", + "Anatomy", + "Cell", + "Protein" + ], + "uri_format": "http://www.semanticweb.org/pallabi.d/ontologies/2014/2/untitled-ontology-11#$1" + } + }, + "bioportal.mccv": { + "bioportal": { + "name": "Microbial Culture Collection Vocabulary", + "prefix": "MCCV", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.jp/bio/10/mccv#$1" + } + }, + "bioportal.mchvodanaterms": { + "bioportal": { + "name": "MCHVODANATERMS", + "prefix": "MCHVODANATERMS", + "subjects": [], + "uri_format": "https://github.com/mariambasajja$1" + } + }, + "bioportal.mco": { + "bioportal": { + "name": "Microbial Conditions Ontology", + "prefix": "MCO", + "subjects": [ + "Experimental Conditions" + ], + "uri_format": "http://purl.obolibrary.org/obo/MCO_$1" + } + }, + "bioportal.mddb": { + "bioportal": { + "name": "Master Drug Data Base Clinical Drugs", + "prefix": "MDDB", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/MDDB$1" + } + }, + "bioportal.medeon": { + "bioportal": { + "name": "Medical Error Ontology", + "prefix": "MEDEON", + "subjects": [ + "Health" + ], + "uri_format": "http://www.semanticweb.org/chen/ontologies/2015/8/untitled-ontology-72#$1" + } + }, + "bioportal.medlineplus": { + "bioportal": { + "name": "MedlinePlus Health Topics", + "prefix": "MEDLINEPLUS", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/MEDLINEPLUS$1" + } + }, + "bioportal.medo": { + "bioportal": { + "name": "Mouse Experimental Design Ontology", + "prefix": "MEDO", + "subjects": [], + "uri_format": "http://www.ebi.ac.uk/efo/medo/MEDO_$1" + } + }, + "bioportal.mego": { + "bioportal": { + "name": "Mobile Genetic Element Ontology", + "prefix": "MEGO", + "subjects": [ + "Biological Process", + "Gene Product" + ], + "uri_format": "http://purl.obolibrary.org/obo/phi_$1" + } + }, + "bioportal.melo": { + "bioportal": { + "name": "Melanoma Ontology", + "prefix": "MELO", + "subjects": [ + "Health", + "Biomedical Resources", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/FMA_$1" + } + }, + "bioportal.meo": { + "bioportal": { + "name": "Metagenome and Microbes Environmental Ontology", + "prefix": "MEO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.jp/bio/11/meo/MEO_$1" + } + }, + "bioportal.mepo": { + "bioportal": { + "name": "Mapping of Epilepsy Ontologies", + "prefix": "MEPO", + "subjects": [ + "Health", + "Biomedical Resources", + "Biological Process", + "Neurologic Disease", + "Neurological Disorder", + "Human", + "Development", + "Protein", + "Gene Product", + "Vocabularies" + ], + "uri_format": "http://www.semanticweb.org/rjyy/ontologies/2015/5/ESSO#$1" + } + }, + "bioportal.mera": { + "bioportal": { + "name": "Medical Educational Resource Aggregator", + "prefix": "MERA", + "subjects": [ + "Vocabularies" + ], + "uri_format": "https://carre.kmi.open.ac.uk/ontology/educational.owl#$1" + } + }, + "bioportal.mesh": { + "bioportal": { + "name": "Medical Subject Headings", + "prefix": "MESH", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/MESH$1" + } + }, + "bioportal.mf": { + "bioportal": { + "name": "Mental Functioning Ontology", + "prefix": "MF", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/MF_$1" + } + }, + "bioportal.mfo": { + "bioportal": { + "name": "Medaka Fish Anatomy and Development Ontology", + "prefix": "MFO", + "subjects": [ + "Fish Anatomy", + "Gross Anatomy", + "Anatomy", + "Animal Gross Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/MFO_$1" + } + }, + "bioportal.mfoem": { + "bioportal": { + "name": "Emotion Ontology", + "prefix": "MFOEM", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/MFOEM_$1" + } + }, + "bioportal.mfomd": { + "bioportal": { + "name": "MFO Mental Disease Ontology", + "prefix": "MFOMD", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/MFOMD_$1" + } + }, + "bioportal.mhc": { + "bioportal": { + "name": "Major Histocompatibility Complex Ontology", + "prefix": "MHC", + "subjects": [ + "Genomic and Proteomic" + ], + "uri_format": "http://purl.org/stemnet/MHC#$1" + } + }, + "bioportal.mhcro": { + "bioportal": { + "name": "MHC Restriction Ontology", + "prefix": "MHCRO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/MRO_$1" + } + }, + "bioportal.mhmo": { + "bioportal": { + "name": "Mental Health Management Ontology", + "prefix": "MHMO", + "subjects": [ + "Health" + ], + "uri_format": "http://mental-ontology.com/mental_health_bfo.owl#$1" + } + }, + "bioportal.mi": { + "bioportal": { + "name": "Molecular Interactions", + "prefix": "MI", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/MI_$1" + } + }, + "bioportal.miapa": { + "bioportal": { + "name": "MIAPA Ontology", + "prefix": "MIAPA", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/MIAPA_$1" + } + }, + "bioportal.mido": { + "bioportal": { + "name": "Medical Imaging and Diagnostic Ontology", + "prefix": "MIDO", + "subjects": [ + "Imaging", + "Health", + "Biomedical Resources", + "Biological Process", + "Anatomy", + "Human" + ], + "uri_format": "http://radlex.org/RID$1" + } + }, + "bioportal.mim": { + "bioportal": { + "name": "Molecular Interaction Map", + "prefix": "MIM", + "subjects": [ + "Biological Process", + "Vocabularies" + ], + "uri_format": "http://purl.bioontology.org/ontology/MIM#$1" + } + }, + "bioportal.mineral": { + "bioportal": { + "name": "Material Mineral", + "prefix": "MINERAL", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://sweet.jpl.nasa.gov/2.3/matrMineral.owl#$1" + } + }, + "bioportal.mini-fast-1": { + "bioportal": { + "name": "mini fast test", + "prefix": "MINI-FAST-1", + "subjects": [], + "uri_format": "http://id.loc.gov/authorities/subjects$1" + } + }, + "bioportal.mirnao": { + "bioportal": { + "name": "MicroRNA Ontology", + "prefix": "MIRNAO", + "subjects": [ + "Other" + ], + "uri_format": "http://anobase.vectorbase.org/mirnao/mirnao.owl#$1" + } + }, + "bioportal.miro": { + "bioportal": { + "name": "Mosquito Insecticide Resistance", + "prefix": "MIRO", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/MIRO_$1" + } + }, + "bioportal.mixs": { + "bioportal": { + "name": "Minimal Information about any Sequence Ontology", + "prefix": "MIXS", + "subjects": [ + "Experimental Conditions", + "All Organisms", + "Molecule", + "Other", + "Vocabularies" + ], + "uri_format": "https://w3id.org/mixs/vocab$1" + } + }, + "bioportal.mixscv": { + "bioportal": { + "name": "Minimal Information about any Sequence (MIxS) Controlled Vocabularies", + "prefix": "MIXSCV", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/MVC_$1" + } + }, + "bioportal.mltx": { + "bioportal": { + "name": "Machine Learning Methodology Taxonomy Mapping", + "prefix": "MLTX", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://webprotege.stanford.edu$1" + } + }, + "bioportal.mmo": { + "bioportal": { + "name": "Measurement Method Ontology", + "prefix": "MMO", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/MMO_$1" + } + }, + "bioportal.mmusdv": { + "bioportal": { + "name": "Mouse Developmental Stages", + "prefix": "MMUSDV", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/MmusDv_$1" + } + }, + "bioportal.mnr": { + "bioportal": { + "name": "Material Natural Resource ", + "prefix": "MNR", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://sweet.jpl.nasa.gov/2.3/matrNaturalResource.owl#$1" + } + }, + "bioportal.mnv": { + "bioportal": { + "name": "VODANA Migrants", + "prefix": "MNV", + "subjects": [ + "Vocabularies" + ], + "uri_format": "https://www.vodan-totafrica.info/vocs/vodan-migrant-content$1" + } + }, + "bioportal.mo": { + "bioportal": { + "name": "Microarray and Gene Expression Data Ontology", + "prefix": "MO", + "subjects": [ + "Experimental Conditions" + ], + "uri_format": "http://mged.sourceforge.net/ontologies/MGEDOntology.owl#$1" + } + }, + "bioportal.moc": { + "bioportal": { + "name": "Material Organic Compound", + "prefix": "MOC", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://sweet.jpl.nasa.gov/2.3/matrOrganicCompound.owl#$1" + } + }, + "bioportal.modsci": { + "bioportal": { + "name": "Modern Science Ontology", + "prefix": "MODSCI", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "https://w3id.org/skgo/modsci#$1" + } + }, + "bioportal.mondo": { + "bioportal": { + "name": "Mondo Disease Ontology", + "prefix": "MONDO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/MONDO_$1" + } + }, + "bioportal.mono": { + "bioportal": { + "name": "Monogenean Ontology", + "prefix": "MONO", + "subjects": [], + "uri_format": "http://www.owl-ontologies.com/MO.owl#$1" + } + }, + "bioportal.moocciado": { + "bioportal": { + "name": "Molgula occidentalis Anatomy and Development Ontology", + "prefix": "MOOCCIADO", + "subjects": [ + "Anatomy", + "Animal Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/MoocciA_$1" + } + }, + "bioportal.mooccuado": { + "bioportal": { + "name": "Molgula occulta Anatomy and Development Ontology", + "prefix": "MOOCCUADO", + "subjects": [ + "Anatomy", + "Animal Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/MooccuA_$1" + } + }, + "bioportal.mooculado": { + "bioportal": { + "name": "Molgula oculata Anatomy and Development Ontology", + "prefix": "MOOCULADO", + "subjects": [ + "Anatomy", + "Animal Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/MooculA_$1" + } + }, + "bioportal.mop": { + "bioportal": { + "name": "Molecular Process Ontology", + "prefix": "MOP", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/MOP_$1" + } + }, + "bioportal.mosaic": { + "bioportal": { + "name": "The MOSAiC Ontology", + "prefix": "MOSAIC", + "subjects": [], + "uri_format": "https://purl.dataone.org/odo/MOSAIC_$1" + } + }, + "bioportal.mp": { + "bioportal": { + "name": "Mammalian Phenotype Ontology", + "prefix": "MP", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/MP_$1" + } + }, + "bioportal.mpath": { + "bioportal": { + "name": "Mouse Pathology Ontology", + "prefix": "MPATH", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/MPATH_$1" + } + }, + "bioportal.mpio": { + "bioportal": { + "name": "Minimum PDDI Information Ontology", + "prefix": "MPIO", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/MPIO_$1" + } + }, + "bioportal.mpo": { + "bioportal": { + "name": "Microbial Phenotype Ontology", + "prefix": "MPO", + "subjects": [ + "Phenotype", + "Microbial Anatomy" + ], + "uri_format": "http://purl.jp/bio/10/mpo#$1" + } + }, + "bioportal.mro": { + "bioportal": { + "name": "Defen", + "prefix": "MRO", + "subjects": [], + "uri_format": "http://www.semanticweb.org/projectlab/ontologies/2016/8/untitled-ontology-23#$1" + } + }, + "bioportal.mso": { + "bioportal": { + "name": "Multiple sclerosis ontology", + "prefix": "MSO", + "subjects": [ + "Neurologic Disease" + ], + "uri_format": "http://scai.fraunhofer.de/MSOntology#$1" + } + }, + "bioportal.mstde": { + "bioportal": { + "name": "Minimal Standard Terminology of Digestive Endoscopy", + "prefix": "MSTDE", + "subjects": [], + "uri_format": "http://purl.bioontology.org/ontology/MSTDE$1" + } + }, + "bioportal.mstde-fre": { + "bioportal": { + "name": "Minimal Standard Terminology of Digestive Endoscopy, French", + "prefix": "MSTDE-FRE", + "subjects": [], + "uri_format": "http://purl.bioontology.org/ontology/MSTDE-FRE$1" + } + }, + "bioportal.msv": { + "bioportal": { + "name": "Metagenome Sample Vocabulary", + "prefix": "MSV", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.jp/bio/11/msv/MSV_$1" + } + }, + "bioportal.mwla": { + "bioportal": { + "name": "Medical Web Lifestyle Aggregator", + "prefix": "MWLA", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://carre.kmi.open.ac.uk/ontology/lifestyle.owl#$1" + } + }, + "bioportal.nando": { + "bioportal": { + "name": "Nanbyo Disease Ontology", + "prefix": "NANDO", + "subjects": [ + "Health", + "Biomedical Resources", + "Human" + ], + "uri_format": "http://nanbyodata.jp/ontology/NANDO_$1" + } + }, + "bioportal.natpro": { + "bioportal": { + "name": "Natural Products Ontology", + "prefix": "NATPRO", + "subjects": [], + "uri_format": "http://www.owl-ontologies.com/NPOntology.owl#$1" + } + }, + "bioportal.nbo": { + "bioportal": { + "name": "Neuro Behavior Ontology", + "prefix": "NBO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/NBO_$1" + } + }, + "bioportal.ncbitaxon": { + "bioportal": { + "name": "National Center for Biotechnology Information (NCBI) Organismal Classification", + "prefix": "NCBITAXON", + "subjects": [ + "Taxonomic Classification" + ], + "uri_format": "http://purl.bioontology.org/ontology/NCBITAXON$1" + } + }, + "bioportal.nccnehr": { + "bioportal": { + "name": "NCCN EHR Oncology Categories", + "prefix": "NCCNEHR", + "subjects": [ + "Health", + "Biomedical Resources" + ], + "uri_format": "http://www.semanticweb.org/lamb/ontologies/NCCN-EHR#$1" + } + }, + "bioportal.ncco": { + "bioportal": { + "name": "Nursing Care Coordination Ontology", + "prefix": "NCCO", + "subjects": [ + "Health" + ], + "uri_format": "http://www.semanticweb.org/vanessa/ontologies/2012/7/untitled-ontology-33#$1" + } + }, + "bioportal.ncit": { + "bioportal": { + "name": "National Cancer Institute Thesaurus", + "prefix": "NCIT", + "subjects": [], + "uri_format": "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#$1" + } + }, + "bioportal.ncro": { + "bioportal": { + "name": "Non-coding RNA Ontology", + "prefix": "NCRO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/NCRO_$1" + } + }, + "bioportal.nddo": { + "bioportal": { + "name": "Neurodegenerative Disease Data Ontology", + "prefix": "NDDO", + "subjects": [ + "Neurologic Disease", + "Neurological Disorder" + ], + "uri_format": "http://www.purl.org/NDDO/NDDO_$1" + } + }, + "bioportal.neicbeer": { + "bioportal": { + "name": "The NeIC PaRI beer vocabulary", + "prefix": "NEICBEER", + "subjects": [ + "Other" + ], + "uri_format": "http://ontology.deic.dk/cv/beer-ontology$1" + } + }, + "bioportal.nemo": { + "bioportal": { + "name": "Neural ElectroMagnetic Ontology", + "prefix": "NEMO", + "subjects": [ + "Imaging", + "Experimental Conditions", + "Biological Process", + "Anatomy", + "Human" + ], + "uri_format": "http://purl.bioontology.org/NEMO/ontology/NEMO.owl#$1" + } + }, + "bioportal.neo": { + "bioportal": { + "name": "Neurologic Examination Ontology", + "prefix": "NEO", + "subjects": [ + "Taxonomic Classification", + "Health", + "Neurologic Disease", + "Neurological Disorder" + ], + "uri_format": "http://www.semanticweb.org/danielhier/ontologies/2019/3/untitled-ontology-57#$1" + } + }, + "bioportal.neomark3": { + "bioportal": { + "name": "Neomark Oral Cancer Ontology, version 3", + "prefix": "NEOMARK3", + "subjects": [ + "Health" + ], + "uri_format": "http://www.neomark.eu/ontologies$1" + } + }, + "bioportal.neomark4": { + "bioportal": { + "name": "Neomark Oral Cancer Ontology, version 4", + "prefix": "NEOMARK4", + "subjects": [ + "Health", + "Genomic and Proteomic", + "Anatomy", + "Human" + ], + "uri_format": "http://neomark.owl#$1" + } + }, + "bioportal.nero": { + "bioportal": { + "name": "Named Entity Recognition Ontology ", + "prefix": "NERO", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://www.cs.man.ac.uk/~stevensr/ontology/ner.owl#$1" + } + }, + "bioportal.neudigs": { + "bioportal": { + "name": "Neuroscience Domain Insight Graph", + "prefix": "NEUDIGS", + "subjects": [ + "Cellular anatomy ", + "Anatomy", + "Cell" + ], + "uri_format": "http://bmkeg.isi.edu/neuDIGs#$1" + } + }, + "bioportal.neumore": { + "bioportal": { + "name": "Neural Motor Recovery Ontology", + "prefix": "NEUMORE", + "subjects": [], + "uri_format": "http://neumore.cis.usouthal.edu/ontologies/NeuMORE-v0.1.owl#$1" + } + }, + "bioportal.ngbo": { + "bioportal": { + "name": "Next Generation Biobanking Ontology", + "prefix": "NGBO", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://purl.obolibrary.org/obo/ngbo.owl/NGBO_$1" + } + }, + "bioportal.ngsonto": { + "bioportal": { + "name": "NGS ontology", + "prefix": "NGSONTO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/NGS_$1" + } + }, + "bioportal.nidm-results": { + "bioportal": { + "name": "NIDM-Results", + "prefix": "NIDM-RESULTS", + "subjects": [ + "Imaging", + "Other" + ], + "uri_format": "http://purl.org/nidash/nidm#$1" + } + }, + "bioportal.nifcell": { + "bioportal": { + "name": "Neuroscience Information Framework (NIF) Cell Ontology", + "prefix": "NIFCELL", + "subjects": [], + "uri_format": "http://ontology.neuinfo.org/NIF/BiomaterialEntities/NIF-Cell.owl#$1" + } + }, + "bioportal.nifdys": { + "bioportal": { + "name": "Neuroscience Information Framework (NIF) Dysfunction Ontlogy", + "prefix": "NIFDYS", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/PATO_$1" + } + }, + "bioportal.nifstd": { + "bioportal": { + "name": "Neuroscience Information Framework (NIF) Standard Ontology", + "prefix": "NIFSTD", + "subjects": [ + "All Organisms", + "Cellular anatomy ", + "Molecule", + "Dysfunction", + "Biological Process", + "Other", + "Subcellular", + "Neurologic Disease", + "Neurological Disorder", + "Anatomy", + "Subcellular anatomy", + "Cell" + ], + "uri_format": "http://uri.neuinfo.org/nif/nifstd/nifext_$1" + } + }, + "bioportal.nifsubcell": { + "bioportal": { + "name": "Neuroscience Information Framework (NIF) Subcellular Ontology", + "prefix": "NIFSUBCELL", + "subjects": [], + "uri_format": "http://ontology.neuinfo.org/NIF/BiomaterialEntities/NIF-Subcellular.owl#$1" + } + }, + "bioportal.nigo": { + "bioportal": { + "name": "Neural-Immune Gene Ontology", + "prefix": "NIGO", + "subjects": [ + "Biological Process", + "Other", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/GO_$1" + } + }, + "bioportal.nihss": { + "bioportal": { + "name": "National Institutes of Health Stroke Scale Ontology", + "prefix": "NIHSS", + "subjects": [ + "Neurologic Disease" + ], + "uri_format": "https://mre.zcu.cz/ontology/nihss.owl#$1" + } + }, + "bioportal.nio": { + "bioportal": { + "name": "Neuropsychological Integrative Ontology", + "prefix": "NIO", + "subjects": [ + "Neurologic Disease" + ], + "uri_format": "http://www.semanticweb.org/alba/ontologies/2020/10/NIO#$1" + } + }, + "bioportal.nist_gel": { + "bioportal": { + "name": "NIST Genome Editing Lexicon", + "prefix": "NIST_GEL", + "subjects": [ + "Molecule", + "Genomic and Proteomic", + "Gene Product" + ], + "uri_format": "http://webprotege.stanford.edu$1" + } + }, + "bioportal.nlmvs": { + "bioportal": { + "name": "NIH NLM Value Sets", + "prefix": "NLMVS", + "subjects": [], + "uri_format": "http://purl.bioontology.org/ontology/SNOMEDCT$1" + } + }, + "bioportal.nln": { + "bioportal": { + "name": "NLighten Ontology", + "prefix": "NLN", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/IAO_$1" + } + }, + "bioportal.nmdco": { + "bioportal": { + "name": "NMDC Ontology", + "prefix": "NMDCO", + "subjects": [ + "Other", + "Plant" + ], + "uri_format": "http://purl.obolibrary.org/obo/ENVO_$1" + } + }, + "bioportal.nmobr": { + "bioportal": { + "name": "NeuroMorpho.Org brain region ontologies", + "prefix": "NMOBR", + "subjects": [ + "Mouse Anatomy", + "Cellular anatomy ", + "Gross Anatomy", + "Phenotype", + "Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/NCBITaxon_$1" + } + }, + "bioportal.nmosp": { + "bioportal": { + "name": "NeuroMorpho.Org species ontology", + "prefix": "NMOSP", + "subjects": [ + "All Organisms" + ], + "uri_format": "http://neuromorpho.org/ontologies/NMOSp.owl#$1" + } + }, + "bioportal.nmr": { + "bioportal": { + "name": "NMR-Controlled Vocabulary", + "prefix": "NMR", + "subjects": [ + "Molecule", + "Biomedical Resources", + "Other", + "Subcellular", + "Chemical", + "Protein", + "Vocabularies", + "Physicochemical" + ], + "uri_format": "http://nmrML.org/nmrCV#$1" + } + }, + "bioportal.nomen": { + "bioportal": { + "name": "NOMEN - A nomenclatural ontology for biological names", + "prefix": "NOMEN", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/NOMEN_$1" + } + }, + "bioportal.nonrcto": { + "bioportal": { + "name": "Non-Randomized Controlled Trials Ontology", + "prefix": "NONRCTO", + "subjects": [], + "uri_format": "http://www.owl-ontologies.com/RCTOntology.owl#$1" + } + }, + "bioportal.npi": { + "bioportal": { + "name": "Non-Pharmacological Interventions (NPIs)", + "prefix": "NPI", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/NPI#$1" + } + }, + "bioportal.npokb": { + "bioportal": { + "name": "Neuron Phenotype Ontology", + "prefix": "NPOKB", + "subjects": [ + "Cellular anatomy ", + "Phenotype", + "Cell" + ], + "uri_format": "http://purl.obolibrary.org/obo/UBERON_$1" + } + }, + "bioportal.nxdx": { + "bioportal": { + "name": "Test NXDX", + "prefix": "NXDX", + "subjects": [ + "Neurologic Disease" + ], + "uri_format": "http://www.semanticweb.org/ontologies/Prostate_cancer#$1" + } + }, + "bioportal.oa": { + "bioportal": { + "name": "Web Annotation Ontology", + "prefix": "OA", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://www.w3.org/ns/oa#$1" + } + }, + "bioportal.oae": { + "bioportal": { + "name": "Ontology of Adverse Events", + "prefix": "OAE", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/OAE_$1" + } + }, + "bioportal.oarcs": { + "bioportal": { + "name": "Ontology of Arthropod Circulatory Systems", + "prefix": "OARCS", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/OARCS_$1" + } + }, + "bioportal.oba": { + "bioportal": { + "name": "Ontology of Biological Attributes", + "prefix": "OBA", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/OBA_$1" + } + }, + "bioportal.obcs": { + "bioportal": { + "name": "Ontology of Biological and Clinical Statistics", + "prefix": "OBCS", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/OBCS_$1" + } + }, + "bioportal.obi": { + "bioportal": { + "name": "Ontology for Biomedical Investigations", + "prefix": "OBI", + "subjects": [ + "Experimental Conditions" + ], + "uri_format": "http://purl.obolibrary.org/obo/OBI_$1" + } + }, + "bioportal.obi_bcgo": { + "bioportal": { + "name": "Beta Cell Genomics Ontology", + "prefix": "OBI_BCGO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/BCGO_$1" + } + }, + "bioportal.obi_iee": { + "bioportal": { + "name": "The Ontology for Biomedical Investigation based Inner Ear Electrophysiology ", + "prefix": "OBI_IEE", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/OBI_$1" + } + }, + "bioportal.obib": { + "bioportal": { + "name": "Ontology for Biobanking", + "prefix": "OBIB", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/OBIB_$1" + } + }, + "bioportal.obiws": { + "bioportal": { + "name": "Bioinformatics Web Service Ontology", + "prefix": "OBIWS", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/OBIws_$1" + } + }, + "bioportal.oboe": { + "bioportal": { + "name": "The Extensible Observation Ontology", + "prefix": "OBOE", + "subjects": [], + "uri_format": "http://ecoinformatics.org/oboe/oboe.1.2/oboe-standards.owl#$1" + } + }, + "bioportal.oboe-sbc": { + "bioportal": { + "name": "Santa Barbara Coastal Observation Ontology", + "prefix": "OBOE-SBC", + "subjects": [ + "Other" + ], + "uri_format": "https://code.ecoinformatics.org/code/semtools/trunk/dev/oboe/oboe-sbc.owl#$1" + } + }, + "bioportal.oborel": { + "bioportal": { + "name": "Relations Ontology", + "prefix": "OBOREL", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/GO_$1" + } + }, + "bioportal.obs": { + "bioportal": { + "name": "OntoBioStat", + "prefix": "OBS", + "subjects": [], + "uri_format": "http://www.semanticweb.org/Thibaut/ontologies/2021/3/OntoBioStat#$1" + } + }, + "bioportal.oce": { + "bioportal": { + "name": "Ontology of Chemical Elements", + "prefix": "OCE", + "subjects": [ + "Physicochemical" + ], + "uri_format": "http://purl.obolibrary.org/obo/OCE_$1" + } + }, + "bioportal.ochv": { + "bioportal": { + "name": "Ontology of Consumer Health Vocabulary", + "prefix": "OCHV", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://sbmi.uth.tmc.edu/ontology/ochv#$1" + } + }, + "bioportal.ocimido": { + "bioportal": { + "name": "Ocular Immune-Mediated Inflammatory Diseases Ontology", + "prefix": "OCIMIDO", + "subjects": [ + "Phenotype" + ], + "uri_format": "https://github.com/sap218/ocimido/blob/master/ontology/ocimido.owl#$1" + } + }, + "bioportal.ocmr": { + "bioportal": { + "name": "Ontology of Chinese Medicine for Rheumatism", + "prefix": "OCMR", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/CHEBI_$1" + } + }, + "bioportal.ocre": { + "bioportal": { + "name": "Ontology of Clinical Research", + "prefix": "OCRE", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://purl.org/net/OCRe/OCRe.owl#$1" + } + }, + "bioportal.ocvdae": { + "bioportal": { + "name": "Ontology of Cardiovascular Drug Adverse Events", + "prefix": "OCVDAE", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/OAE_$1" + } + }, + "bioportal.odae": { + "bioportal": { + "name": "Ontology of Drug Adverse Events", + "prefix": "ODAE", + "subjects": [ + "Health" + ], + "uri_format": "http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#$1" + } + }, + "bioportal.odnae": { + "bioportal": { + "name": "Ontology of Drug Neuropathy Adverse Events", + "prefix": "ODNAE", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/ODNAE_$1" + } + }, + "bioportal.of": { + "bioportal": { + "name": "OntoFood", + "prefix": "OF", + "subjects": [ + "Health", + "Biological Process" + ], + "uri_format": "http://www.owl-ontologies.com/Ontology1435740495.owl#$1" + } + }, + "bioportal.ofsmr": { + "bioportal": { + "name": "Open Predictive Microbiology Ontology", + "prefix": "OFSMR", + "subjects": [ + "Biomedical Resources", + "Vocabularies" + ], + "uri_format": "urn:absolute:OFSMR#$1" + } + }, + "bioportal.ogdi": { + "bioportal": { + "name": "Ontology for Genetic Disease Investigations", + "prefix": "OGDI", + "subjects": [ + "Experimental Conditions" + ], + "uri_format": "http://purl.obolibrary.org/obo/ODGI.owl#$1" + } + }, + "bioportal.ogg": { + "bioportal": { + "name": "Ontology of Genes and Genomes", + "prefix": "OGG", + "subjects": [ + "Genomic and Proteomic", + "Human", + "Gene Product" + ], + "uri_format": "http://purl.obolibrary.org/obo/OGG_$1" + } + }, + "bioportal.ogg-mm": { + "bioportal": { + "name": "Ontology of Genes and Genomes - Mouse", + "prefix": "OGG-MM", + "subjects": [ + "Molecule", + "Biomedical Resources", + "Genomic and Proteomic" + ], + "uri_format": "http://purl.obolibrary.org/obo/OGG_$1" + } + }, + "bioportal.ogi": { + "bioportal": { + "name": "Ontology for Genetic Interval", + "prefix": "OGI", + "subjects": [ + "Genomic and Proteomic" + ], + "uri_format": "http://purl.obolibrary.org/obo/OGI_$1" + } + }, + "bioportal.ogmd": { + "bioportal": { + "name": "Ontology of Glucose Metabolism Disorder", + "prefix": "OGMD", + "subjects": [ + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/OGMD_$1" + } + }, + "bioportal.ogms": { + "bioportal": { + "name": "Ontology for General Medical Science", + "prefix": "OGMS", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/OGMS_$1" + } + }, + "bioportal.ogr": { + "bioportal": { + "name": "Ontology of Geographical Region", + "prefix": "OGR", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://www.owl-ontologies.com/GeographicalRegion.owl#$1" + } + }, + "bioportal.ogroup": { + "bioportal": { + "name": "Orthologous Group Ontology", + "prefix": "OGROUP", + "subjects": [ + "Gene Product" + ], + "uri_format": "http://protozoadb.biowebdb.org/22/ogroup#$1" + } + }, + "bioportal.ogsf": { + "bioportal": { + "name": "Ontology for Genetic Susceptibility Factor", + "prefix": "OGSF", + "subjects": [ + "Health", + "Genomic and Proteomic", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/OGSF_$1" + } + }, + "bioportal.ohd": { + "bioportal": { + "name": "The Oral Health and Disease Ontology", + "prefix": "OHD", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/OHD_$1" + } + }, + "bioportal.ohmi": { + "bioportal": { + "name": "Ontology of Host-Microbe Interactions", + "prefix": "OHMI", + "subjects": [ + "Experimental Conditions", + "Immunology", + "Biological Process", + "Phenotype", + "Microbial Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/OHMI_$1" + } + }, + "bioportal.ohpi": { + "bioportal": { + "name": "Ontology of Host-Pathogen Interactions", + "prefix": "OHPI", + "subjects": [ + "Immunology", + "Molecule", + "Health", + "Biological Process", + "Cell" + ], + "uri_format": "http://purl.obolibrary.org/obo/OHPI_$1" + } + }, + "bioportal.olam": { + "bioportal": { + "name": "Ontology of Laboratory Animal Medicine", + "prefix": "OLAM", + "subjects": [ + "All Organisms" + ], + "uri_format": "http://purl.obolibrary.org/obo/OLAM_$1" + } + }, + "bioportal.olatdv": { + "bioportal": { + "name": "Medaka Developmental Stages", + "prefix": "OLATDV", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/OlatDv_$1" + } + }, + "bioportal.om": { + "bioportal": { + "name": "Ontology of units of Measure", + "prefix": "OM", + "subjects": [ + "Other", + "Plant" + ], + "uri_format": "http://www.ontology-of-units-of-measure.org/resource/om-2$1" + } + }, + "bioportal.omit": { + "bioportal": { + "name": "Ontology for MicroRNA Target", + "prefix": "OMIT", + "subjects": [ + "Molecule", + "Biological Process", + "Human", + "Cell", + "Protein", + "Gene Product" + ], + "uri_format": "http://purl.obolibrary.org/obo/OMIT_$1" + } + }, + "bioportal.omo": { + "bioportal": { + "name": "OBO Metadata Ontology", + "prefix": "OMO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/IAO_$1" + } + }, + "bioportal.omp": { + "bioportal": { + "name": "Ontology of Microbial Phenotypes", + "prefix": "OMP", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/OMP_$1" + } + }, + "bioportal.omrse": { + "bioportal": { + "name": "Ontology of Medically Related Social Entities", + "prefix": "OMRSE", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/OMRSE_$1" + } + }, + "bioportal.omv": { + "bioportal": { + "name": "Ontology Metadata Vocabulary", + "prefix": "OMV", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://omv.ontoware.org/2005/05/ontology#$1" + } + }, + "bioportal.one": { + "bioportal": { + "name": "Ontology for Nutritional Epidemiology", + "prefix": "ONE", + "subjects": [ + "Health", + "Biomedical Resources", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/OBI_$1" + } + }, + "bioportal.onl-dp": { + "bioportal": { + "name": "Dataset processing", + "prefix": "ONL-DP", + "subjects": [ + "Imaging" + ], + "uri_format": "http://neurolog.unice.fr/ontoneurolog/v3.0/ontoneurolog-extension-of-dolce.owl#$1" + } + }, + "bioportal.onl-mr-da": { + "bioportal": { + "name": "Magnetic Resonance Dataset Acquisition Ontology", + "prefix": "ONL-MR-DA", + "subjects": [ + "Imaging" + ], + "uri_format": "http://neurolog.unice.fr/ontoneurolog/v3.0/ontoneurolog-extension-of-dolce.owl#$1" + } + }, + "bioportal.onl-msa": { + "bioportal": { + "name": "Mental State Assessment", + "prefix": "ONL-MSA", + "subjects": [ + "Health", + "Neurological Disorder", + "Human" + ], + "uri_format": "http://neurolog.unice.fr/ontoneurolog/v3.0/ontoneurolog-mental-state-assessment.owl#$1" + } + }, + "bioportal.onl-tasks": { + "bioportal": { + "name": "Cognitive Reserves Assessment Tasks", + "prefix": "ONL-TASKS", + "subjects": [ + "Health", + "Neurological Disorder", + "Human" + ], + "uri_format": "http://www.semanticweb.org/bakaev/ontologies/2020/3/untitled-ontology-25#$1" + } + }, + "bioportal.onlira": { + "bioportal": { + "name": "Ontology of Liver for Radiology", + "prefix": "ONLIRA", + "subjects": [], + "uri_format": "http://vavlab.ee.boun.edu.tr/carera/onlira.owl#$1" + } + }, + "bioportal.ons": { + "bioportal": { + "name": "Ontology for Nutritional Studies", + "prefix": "ONS", + "subjects": [ + "Experimental Conditions", + "Health", + "Biomedical Resources", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/ONS_$1" + } + }, + "bioportal.onstr": { + "bioportal": { + "name": "Ontology for Newborn Screening Follow-up and Translational Research", + "prefix": "ONSTR", + "subjects": [ + "Health", + "Dysfunction", + "Biological Process", + "Phenotype", + "Human", + "Development" + ], + "uri_format": "http://onstr.googlecode.com/svn/tags/currentRelease/2014-09-03/ONSTR.owl#$1" + } + }, + "bioportal.ontoad": { + "bioportal": { + "name": "Bilingual Ontology of Alzheimer's Disease and Related Diseases", + "prefix": "ONTOAD", + "subjects": [ + "Health", + "Dysfunction", + "Neurologic Disease", + "Neurological Disorder", + "Human" + ], + "uri_format": "http://doe-generated-ontology.com/OntoAD#$1" + } + }, + "bioportal.ontoavida": { + "bioportal": { + "name": "OntoAvida: ontology for Avida digital evolution platform", + "prefix": "ONTOAVIDA", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/ONTOAVIDA_$1" + } + }, + "bioportal.ontodm-algorithm": { + "bioportal": { + "name": "OntoDM-core/algorithms", + "prefix": "ONTODM-ALGORITHM", + "subjects": [ + "Other" + ], + "uri_format": "http://www.ontodm.com/OntoDM-core/OntoDM_$1" + } + }, + "bioportal.ontodm-core": { + "bioportal": { + "name": "Ontology of Core Data Mining Entities", + "prefix": "ONTODM-CORE", + "subjects": [], + "uri_format": "http://www.ontodm.com/OntoDM-core/OntoDM_$1" + } + }, + "bioportal.ontodm-kdd": { + "bioportal": { + "name": "Ontology of Data Mining Investigations", + "prefix": "ONTODM-KDD", + "subjects": [], + "uri_format": "http://kt.ijs.si/panovp/OntoDM-KDD.owl#$1" + } + }, + "bioportal.ontodt": { + "bioportal": { + "name": "Ontology of Datatypes", + "prefix": "ONTODT", + "subjects": [], + "uri_format": "http://www.ontodm.com/OntoDT#$1" + } + }, + "bioportal.ontokbcf": { + "bioportal": { + "name": "Ontological Knowledge Base Model for Cystic Fibrosis", + "prefix": "ONTOKBCF", + "subjects": [ + "Health", + "Biomedical Resources", + "Phenotype", + "Gene Product" + ], + "uri_format": "http://www.owl-ontologies.com/assert.owl#$1" + } + }, + "bioportal.ontolurgences": { + "bioportal": { + "name": "Emergency care ontology", + "prefix": "ONTOLURGENCES", + "subjects": [ + "Health" + ], + "uri_format": "http://www.limics.fr/ontologies/ontolurgences#$1" + } + }, + "bioportal.ontoma": { + "bioportal": { + "name": "Ontology of Alternative Medicine, French", + "prefix": "ONTOMA", + "subjects": [], + "uri_format": "http://www.semanticweb.org/associatedmedicine/lavima/2011/10/Ontology1.owl#$1" + } + }, + "bioportal.ontoneo": { + "bioportal": { + "name": "Obstetric and Neonatal Ontology", + "prefix": "ONTONEO", + "subjects": [ + "Health", + "Biomedical Resources", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/ONTONEO_$1" + } + }, + "bioportal.ontoparon": { + "bioportal": { + "name": "Ontology of Amyotrophic Lateral Sclerosis, all modules", + "prefix": "ONTOPARON", + "subjects": [ + "Neurologic Disease" + ], + "uri_format": "http://www.limics.fr/ontologies/ontoparonsoc#$1" + } + }, + "bioportal.ontoparon_social": { + "bioportal": { + "name": "Ontology of amyotrophic lateral sclerosis, social module", + "prefix": "ONTOPARON_SOCIAL", + "subjects": [ + "Neurological Disorder" + ], + "uri_format": "http://www.limics.fr/ontologies/ontoparonsoc#$1" + } + }, + "bioportal.ontopbm": { + "bioportal": { + "name": "Ontology for Process-Based Modeling of Dynamical Systems (OntoPBM)", + "prefix": "ONTOPBM", + "subjects": [ + "Other" + ], + "uri_format": "http://w3id.org/ontopbm#$1" + } + }, + "bioportal.ontopneumo": { + "bioportal": { + "name": "Ontology of Pneumology", + "prefix": "ONTOPNEUMO", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://doe-generated-ontology.com/OntoPneumo#$1" + } + }, + "bioportal.ontopsychia": { + "bioportal": { + "name": "OntoPsychia, social module", + "prefix": "ONTOPSYCHIA", + "subjects": [ + "Human" + ], + "uri_format": "http://www.limics.fr/ontologies/ontopsychiasoc#$1" + } + }, + "bioportal.ontoreplicov": { + "bioportal": { + "name": "OntoRepliCov", + "prefix": "ONTOREPLICOV", + "subjects": [ + "Biological Process" + ], + "uri_format": "http://www.semanticweb.org/wissame.laddada/ontologies/2020/9/SARS_CoV_2#$1" + } + }, + "bioportal.ontosim": { + "bioportal": { + "name": "The Ontology of Information System on Mortality", + "prefix": "ONTOSIM", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://www.semanticweb.org/DIASUS/OntoSIM#$1" + } + }, + "bioportal.ontosinasc": { + "bioportal": { + "name": "Ontology of Information System on Live Births", + "prefix": "ONTOSINASC", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://www.semanticweb.org/DIASUS/OntoSINASC#$1" + } + }, + "bioportal.ontotox": { + "bioportal": { + "name": "Chemotherapy Toxicities Ontology", + "prefix": "ONTOTOX", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://OntoTox.owl#$1" + } + }, + "bioportal.ontotoxnuc": { + "bioportal": { + "name": "Ontology of Nuclear Toxicity", + "prefix": "ONTOTOXNUC", + "subjects": [ + "Taxonomic Classification", + "Chemical" + ], + "uri_format": "http://www.cea.fr/ontotoxnuc#$1" + } + }, + "bioportal.ontovip": { + "bioportal": { + "name": "Medical image simulation", + "prefix": "OntoVIP", + "subjects": [ + "Imaging" + ], + "uri_format": "http://neurolog.unice.fr/ontoneurolog/v3.0/ontoneurolog-extension-of-dolce.owl#$1" + } + }, + "bioportal.ooevv": { + "bioportal": { + "name": "Ontology of Experimental Variables and Values", + "prefix": "OOEVV", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://bmkeg.isi.edu/ooevv$1" + } + }, + "bioportal.oostt": { + "bioportal": { + "name": "Ontology of Organizational Structures of Trauma centers and Trauma systems", + "prefix": "OOSTT", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/OOSTT_$1" + } + }, + "bioportal.opb": { + "bioportal": { + "name": "Ontology of Physics for Biology", + "prefix": "OPB", + "subjects": [ + "Biomedical Resources", + "Biological Process", + "Phenotype", + "Chemical", + "Physicochemical" + ], + "uri_format": "http://bhi.washington.edu/OPB#$1" + } + }, + "bioportal.opde": { + "bioportal": { + "name": "OPD-Ethiopia", + "prefix": "OPDE", + "subjects": [], + "uri_format": "http://www.mudhc.edu.et/template-vocabulary#$1" + } + }, + "bioportal.opdront": { + "bioportal": { + "name": "OPD Register Ontology", + "prefix": "OPDRONT", + "subjects": [], + "uri_format": "http://www.fairdatacollective.com/template-vocabulary$1" + } + }, + "bioportal.opdt": { + "bioportal": { + "name": "opd_test", + "prefix": "OPDT", + "subjects": [], + "uri_format": "http://www.fairdatacollective.com/template-vocabulary$1" + } + }, + "bioportal.opdzimbabwe": { + "bioportal": { + "name": "OPDZimbabwe", + "prefix": "OPDZIMBABWE", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://www.vocab.vodana.org/vocabularies/opd$1" + } + }, + "bioportal.ope": { + "bioportal": { + "name": "Ontology of Physical Exercises", + "prefix": "OPE", + "subjects": [ + "Health", + "Other", + "Anatomy", + "Human" + ], + "uri_format": "http://www.semanticweb.org/ontologies/2013/2/OPE.owl#$1" + } + }, + "bioportal.opl": { + "bioportal": { + "name": "Ontology for Parasite LifeCycle", + "prefix": "OPL", + "subjects": [ + "Phenotype", + "Development", + "Vocabularies" + ], + "uri_format": "http://purl.obolibrary.org/obo/OPL_$1" + } + }, + "bioportal.opmi": { + "bioportal": { + "name": "Ontology of Precision Medicine and Investigation", + "prefix": "OPMI", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/OPMI_$1" + } + }, + "bioportal.optimal": { + "bioportal": { + "name": "OPTImAL: An ontology for patient adherence modeling in physical activity domain", + "prefix": "OPTIMAL", + "subjects": [ + "Taxonomic Classification", + "Health" + ], + "uri_format": "http://webprotege.stanford.edu/project/B1YA5aP4fTfTaBBx7flwQP#$1" + } + }, + "bioportal.orcs": { + "bioportal": { + "name": "Ontology for Representing CDM Semantics", + "prefix": "ORCS", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/ORCS_$1" + } + }, + "bioportal.ornaseq": { + "bioportal": { + "name": "Ontology of RNA Sequencing", + "prefix": "ORNASEQ", + "subjects": [ + "Experimental Conditions" + ], + "uri_format": "http://purl.obolibrary.org/obo/ORNASEQ_$1" + } + }, + "bioportal.orth": { + "bioportal": { + "name": "Orthology Ontology", + "prefix": "ORTH", + "subjects": [ + "All Organisms", + "Genomic and Proteomic" + ], + "uri_format": "http://purl.org/net/orth#$1" + } + }, + "bioportal.osm": { + "bioportal": { + "name": "Ontologia de Sa\u00fade Mental", + "prefix": "OSM", + "subjects": [], + "uri_format": "https://saudeconectada.org/saude_mental.owl#$1" + } + }, + "bioportal.ovae": { + "bioportal": { + "name": "Ontology of Vaccine Adverse Events", + "prefix": "OVAE", + "subjects": [ + "Immunology", + "Health", + "Phenotype", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/OVAE_$1" + } + }, + "bioportal.paco": { + "bioportal": { + "name": "Physical Activity Ontology", + "prefix": "PACO", + "subjects": [ + "Health", + "Other", + "Human" + ], + "uri_format": "http://www.semanticweb.org/hyk038/ontologies/2018/7/untitled-ontology-17#$1" + } + }, + "bioportal.pae": { + "bioportal": { + "name": "Plant Anatomy", + "prefix": "PAE", + "subjects": [ + "Plant Anatomy", + "Plant" + ], + "uri_format": "http://purl.obolibrary.org/obo/PO_$1" + } + }, + "bioportal.panda": { + "bioportal": { + "name": "Probabilistic Knowledge Assembly Ontology", + "prefix": "PANDA", + "subjects": [], + "uri_format": "http://purl.bioontology.org/net/brunel/panda#$1" + } + }, + "bioportal.panet": { + "bioportal": { + "name": "PaN Experimental technique", + "prefix": "PANET", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.org/pan-science/PaNET$1" + } + }, + "bioportal.partumdo": { + "bioportal": { + "name": "postpartum depression ontology", + "prefix": "PARTUMDO", + "subjects": [ + "Phenotype", + "Neurologic Disease", + "Neurological Disorder", + "Human", + "Vocabularies" + ], + "uri_format": "http://www.semanticweb.org/rbmor/ontologies/2021/1/1/untitled-ontology-133#$1" + } + }, + "bioportal.patct": { + "bioportal": { + "name": "Placental Cell Type", + "prefix": "PATCT", + "subjects": [ + "Cell" + ], + "uri_format": "https://pat.nichd.nih.gov/placentalcelltype$1" + } + }, + "bioportal.patel": { + "bioportal": { + "name": "Archana Patel", + "prefix": "PATEL", + "subjects": [ + "Other" + ], + "uri_format": "http://www.semanticweb.org/ambrish/ontologies/2020/10/untitled-ontology-24#$1" + } + }, + "bioportal.patgv": { + "bioportal": { + "name": "Placental Genetic Variance", + "prefix": "PATGV", + "subjects": [ + "Genomic and Proteomic" + ], + "uri_format": "https://pat.nichd.nih.gov/patgeneticvariance$1" + } + }, + "bioportal.pathlex": { + "bioportal": { + "name": "Anatomic Pathology Lexicon", + "prefix": "PATHLEX", + "subjects": [ + "Taxonomic Classification", + "Health", + "Anatomy", + "Vocabularies" + ], + "uri_format": "http://www.semanticweb.org/david/ontologies/2013/0/pathLex.owl#$1" + } + }, + "bioportal.patit": { + "bioportal": { + "name": "Placental Investigative Technique", + "prefix": "PATIT", + "subjects": [ + "Other" + ], + "uri_format": "https://pat.nichd.nih.gov/patinvestigativetechniques$1" + } + }, + "bioportal.patmhc": { + "bioportal": { + "name": "Placental Maternal Health Conditions", + "prefix": "PATMHC", + "subjects": [ + "Health" + ], + "uri_format": "http://pat.nichd.nih.gov/maternalconditions$1" + } + }, + "bioportal.pato": { + "bioportal": { + "name": "Phenotypic Quality Ontology", + "prefix": "PATO", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/PATO_$1" + } + }, + "bioportal.pav": { + "bioportal": { + "name": "PAV Provenance, Authoring and Versioning", + "prefix": "PAV", + "subjects": [ + "Other", + "Vocabularies" + ], + "uri_format": "http://xmlns.com/foaf/0.1$1" + } + }, + "bioportal.pcalion": { + "bioportal": { + "name": "Prostate Cancer Lifestyle Ontology", + "prefix": "PCALION", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://www.semanticweb.org/ontologies/Prostate_cancer#$1" + } + }, + "bioportal.pcao": { + "bioportal": { + "name": "Prostate Cancer Ontology", + "prefix": "PCAO", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://www.semanticweb.org/ontologies/2018/1/ProstateCancer.owl#$1" + } + }, + "bioportal.pcl": { + "bioportal": { + "name": "Provisional Cell Ontology", + "prefix": "PCL", + "subjects": [ + "Cell" + ], + "uri_format": "https://identifiers.org/ncbigene$1" + } + }, + "bioportal.pcmo": { + "bioportal": { + "name": "Pediatric Consultation and Monitoring Ontology ", + "prefix": "PCMO", + "subjects": [ + "Health" + ], + "uri_format": "http://www.semanticweb.org/com/ontologies/2015/4/untitled-ontology-44#$1" + } + }, + "bioportal.pco": { + "bioportal": { + "name": "Population and Community Ontology", + "prefix": "PCO", + "subjects": [ + "All Organisms", + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/PCO_$1" + } + }, + "bioportal.pdo": { + "bioportal": { + "name": "Pathogenic Disease Ontology", + "prefix": "PDO", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.jp/bio/11/pdo/PDO_$1" + } + }, + "bioportal.pdo_cas": { + "bioportal": { + "name": "Plant Diversity Ontology", + "prefix": "PDO_CAS", + "subjects": [ + "Plant" + ], + "uri_format": "http://www.stkos-ontology/domain/plantbiodiversity#$1" + } + }, + "bioportal.pdon": { + "bioportal": { + "name": "Parkinson's Disease Ontology", + "prefix": "PDON", + "subjects": [], + "uri_format": "http://www.semanticweb.org/ontologies/2011/1/Ontology1296772722296.owl#$1" + } + }, + "bioportal.pdq": { + "bioportal": { + "name": "Physician Data Query", + "prefix": "PDQ", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/PDQ$1" + } + }, + "bioportal.pdro": { + "bioportal": { + "name": "The Prescription of Drugs Ontology", + "prefix": "PDRO", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/OBI_$1" + } + }, + "bioportal.pdumdv": { + "bioportal": { + "name": "Platynereis Developmental Stages", + "prefix": "PDUMDV", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/PdumDv_$1" + } + }, + "bioportal.pe": { + "bioportal": { + "name": "Pulmonary Embolism Ontology", + "prefix": "PE", + "subjects": [ + "Health", + "Biomedical Resources", + "Human", + "Vocabularies" + ], + "uri_format": "http://bmi.utah.edu/ontologies/peontology$1" + } + }, + "bioportal.pe-o": { + "bioportal": { + "name": "Pre-eclampsia Ontology", + "prefix": "PE-O", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://www.pepathway.org/peo/1.2#$1" + } + }, + "bioportal.peao": { + "bioportal": { + "name": "Plant Experimental Assay Ontology", + "prefix": "PEAO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/PO_$1" + } + }, + "bioportal.peco": { + "bioportal": { + "name": "Plant Experimental Conditions Ontology", + "prefix": "PECO", + "subjects": [ + "Experimental Conditions", + "Phenotype", + "Plant" + ], + "uri_format": "http://purl.obolibrary.org/obo/PECO_$1" + } + }, + "bioportal.pedterm": { + "bioportal": { + "name": "Pediatric Terminology", + "prefix": "PEDTERM", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://www.owl-ontologies.com/Ontology1358660052.owl#$1" + } + }, + "bioportal.peo": { + "bioportal": { + "name": "Parasite Experiment Ontology", + "prefix": "PEO", + "subjects": [], + "uri_format": "http://knoesis.wright.edu/ParasiteExperiment.owl#$1" + } + }, + "bioportal.pgxo": { + "bioportal": { + "name": "PGxO", + "prefix": "PGXO", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://pgxo.loria.fr$1" + } + }, + "bioportal.phage": { + "bioportal": { + "name": "Phylogenetics Ontology", + "prefix": "PHAGE", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://purl.obolibrary.org/obo/GO_$1" + } + }, + "bioportal.phenx": { + "bioportal": { + "name": "PhenX Phenotypic Terms", + "prefix": "PHENX", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.bioontology.org/ontology/phenX$1" + } + }, + "bioportal.phfumiado": { + "bioportal": { + "name": "Phallusia fumigata Anatomy and Development Ontology", + "prefix": "PHFUMIADO", + "subjects": [ + "Anatomy", + "Animal Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/PhfumiA_$1" + } + }, + "bioportal.phipo": { + "bioportal": { + "name": "Pathogen Host Interaction Phenotype Ontology", + "prefix": "PHIPO", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/PHIPO_$1" + } + }, + "bioportal.phmammado": { + "bioportal": { + "name": "Phallusia mammillata Anatomy and Development Ontology", + "prefix": "PHMAMMADO", + "subjects": [ + "Anatomy", + "Animal Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/PhmammA_$1" + } + }, + "bioportal.phylont": { + "bioportal": { + "name": "Phylogenetic Ontology", + "prefix": "PHYLONT", + "subjects": [ + "Other" + ], + "uri_format": "http://www.co-ode.org/ontologies/ont.owl#$1" + } + }, + "bioportal.piero": { + "bioportal": { + "name": "Enzyme Reaction Ontology for annotating Partial Information of chemical transformation", + "prefix": "PIERO", + "subjects": [], + "uri_format": "http://reactionontology.org/piero$1" + } + }, + "bioportal.pino": { + "bioportal": { + "name": "Pregnancy Information Needs Ontology", + "prefix": "PINO", + "subjects": [ + "Health" + ], + "uri_format": "http://www.semanticweb.org/luyu/ontologies/2021/3/pregnancy_information_needs_ontology#$1" + } + }, + "bioportal.plana": { + "bioportal": { + "name": "Planarian Anatomy and Developmental Stage Ontolgoy", + "prefix": "PLANA", + "subjects": [ + "Anatomy", + "Development", + "Animal Gross Anatomy", + "Animal Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/PLANA_$1" + } + }, + "bioportal.planp": { + "bioportal": { + "name": "Planarian Phenotype Ontology", + "prefix": "PLANP", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/PLANP_$1" + } + }, + "bioportal.plantso": { + "bioportal": { + "name": "Plant Stress Ontology", + "prefix": "PLANTSO", + "subjects": [ + "Plant" + ], + "uri_format": "http://purl.obolibrary.org/obo/NCBITaxon_$1" + } + }, + "bioportal.plio": { + "bioportal": { + "name": "Protein-ligand interaction ontology", + "prefix": "PLIO", + "subjects": [], + "uri_format": "http://www.semanticweb.org/ontologies/2010/3/Ontology1271664172453.owl#$1" + } + }, + "bioportal.pma": { + "bioportal": { + "name": "Portfolio Management Application", + "prefix": "PMA", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://www.bioontology.org/pma.owl#$1" + } + }, + "bioportal.pmapp-pmo": { + "bioportal": { + "name": "PMO Precision Medicine Ontology", + "prefix": "PMAPP-PMO", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://www.phoc.org.cn/pmo/class/PMO_$1" + } + }, + "bioportal.pmd": { + "bioportal": { + "name": "Persian Medicine Diseases Ontology", + "prefix": "PMD", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://www.onto-med.de/ontologies/gfo-persian-medicine-diseases.owl#$1" + } + }, + "bioportal.pmdo": { + "bioportal": { + "name": "Parkinson and Movement Disorder Ontology", + "prefix": "PMDO", + "subjects": [ + "Phenotype", + "Neurologic Disease", + "Neurological Disorder", + "Human" + ], + "uri_format": "http://www.case.edu/PMDO#$1" + } + }, + "bioportal.pmo": { + "bioportal": { + "name": "Performed Music Ontology", + "prefix": "PMO", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://performedmusicontology.org/ontology$1" + } + }, + "bioportal.pmo-speed": { + "bioportal": { + "name": "PMO Playing Speed Vocabulary", + "prefix": "PMO-SPEED", + "subjects": [], + "uri_format": "http://performedmusicontology.org/ontologies/vocabularies/playing_/speed$1" + } + }, + "bioportal.pmr": { + "bioportal": { + "name": "Physical Medicine and Rehabilitation", + "prefix": "PMR", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/PMR.owl#$1" + } + }, + "bioportal.pnado": { + "bioportal": { + "name": "Pneumonia Diagnosis Ontology", + "prefix": "PNADO", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://purl.obolibrary.org/obo/PNADO_$1" + } + }, + "bioportal.po": { + "bioportal": { + "name": "Plant Ontology", + "prefix": "PO", + "subjects": [ + "Plant Anatomy", + "Plant", + "Plant Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/PO_$1" + } + }, + "bioportal.poro": { + "bioportal": { + "name": "Porifera Ontology", + "prefix": "PORO", + "subjects": [ + "Phenotype", + "Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/PORO_$1" + } + }, + "bioportal.pp": { + "bioportal": { + "name": "Pipeline Patterns Ontology", + "prefix": "PP", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "https://bitbucket.org/PlantExpAssay/ontology/raw/v0.1/PipelinePatterns.owl#$1" + } + }, + "bioportal.ppo": { + "bioportal": { + "name": "Plant Phenology Ontology", + "prefix": "PPO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/PPO_$1" + } + }, + "bioportal.pr": { + "bioportal": { + "name": "Protein Ontology", + "prefix": "PR", + "subjects": [ + "All Organisms", + "Protein" + ], + "uri_format": "http://purl.obolibrary.org/obo/PR_$1" + } + }, + "bioportal.pregonto": { + "bioportal": { + "name": "Pregnancy Ontology", + "prefix": "PREGONTO", + "subjects": [ + "Biological Process" + ], + "uri_format": "http://www.clininf.eu/pregnancy#$1" + } + }, + "bioportal.premedonto": { + "bioportal": { + "name": "Precision Medicine Ontology", + "prefix": "PREMEDONTO", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/NCIT_$1" + } + }, + "bioportal.preo": { + "bioportal": { + "name": "Presence Ontology", + "prefix": "PREO", + "subjects": [ + "Health", + "Biomedical Resources", + "Human" + ], + "uri_format": "http://presence-ontology.org/ontology$1" + } + }, + "bioportal.procchemical": { + "bioportal": { + "name": "Chemical Process", + "prefix": "PROCCHEMICAL", + "subjects": [], + "uri_format": "http://sweet.jpl.nasa.gov/2.3/propChemical.owl#$1" + } + }, + "bioportal.proj": { + "bioportal": { + "name": "Project ontology", + "prefix": "PROJ", + "subjects": [ + "Other" + ], + "uri_format": "http://linked.data.gov.au/def/project#$1" + } + }, + "bioportal.propreo": { + "bioportal": { + "name": "Proteomics Data and Process Provenance Ontology", + "prefix": "PROPREO", + "subjects": [], + "uri_format": "http://lsdis.cs.uga.edu/projects/glycomics/propreo#$1" + } + }, + "bioportal.provo": { + "bioportal": { + "name": "Provenance Ontology", + "prefix": "PROVO", + "subjects": [], + "uri_format": "http://www.w3.org/ns/prov#$1" + } + }, + "bioportal.psdo": { + "bioportal": { + "name": "Performance Summary Display Ontology", + "prefix": "PSDO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/PSDO_$1" + } + }, + "bioportal.psds": { + "bioportal": { + "name": "Plant Structure Development Stage", + "prefix": "PSDS", + "subjects": [ + "Plant", + "Development", + "Plant Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/PO_$1" + } + }, + "bioportal.pseudo": { + "bioportal": { + "name": "Pseudogene", + "prefix": "pseudo", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/PGO_$1" + } + }, + "bioportal.psimod": { + "bioportal": { + "name": "Protein Modification Ontology", + "prefix": "PSIMOD", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/MOD_$1" + } + }, + "bioportal.pso": { + "bioportal": { + "name": "PatientSafetyOntology", + "prefix": "PSO", + "subjects": [ + "Health", + "Vocabularies" + ], + "uri_format": "http://www.semanticweb.org/schra/ontologies/2017/4/PRIME_NewOntology#$1" + } + }, + "bioportal.pso_2": { + "bioportal": { + "name": "PatientSafetyOntologyRevisted", + "prefix": "PSO_2", + "subjects": [ + "Health" + ], + "uri_format": "http://ontorion.com/PSO#$1" + } + }, + "bioportal.pto": { + "bioportal": { + "name": "Plant Trait Ontology", + "prefix": "PTO", + "subjects": [ + "Phenotype", + "Plant" + ], + "uri_format": "http://purl.obolibrary.org/obo/TO_$1" + } + }, + "bioportal.ptrans": { + "bioportal": { + "name": "Pathogen Transmission Ontology", + "prefix": "PTRANS", + "subjects": [ + "Health", + "Vocabularies" + ], + "uri_format": "http://purl.obolibrary.org/obo/TRANS_$1" + } + }, + "bioportal.pts": { + "bioportal": { + "name": "Pathway Terminology System", + "prefix": "PTS", + "subjects": [], + "uri_format": "http://scai.fraunhofer.de/PTS#$1" + } + }, + "bioportal.pvonto": { + "bioportal": { + "name": "Pharmacovigilance Ontology", + "prefix": "PVONTO", + "subjects": [], + "uri_format": "http://neumore.cis.usouthal.edu/ontologies/NeuMORE-v0.1.owl#$1" + } + }, + "bioportal.pw": { + "bioportal": { + "name": "Pathway Ontology", + "prefix": "PW", + "subjects": [ + "Biological Process" + ], + "uri_format": "http://purl.obolibrary.org/obo/PW_$1" + } + }, + "bioportal.qudt": { + "bioportal": { + "name": "Quantities, Units, Dimensions, and Types Ontology", + "prefix": "QUDT", + "subjects": [ + "Other" + ], + "uri_format": "http://qudt.org/schema/qudt$1" + } + }, + "bioportal.qudt2": { + "bioportal": { + "name": "Quantities, Units, Dimensions and Types (QUDT) Schema - Version 2.0", + "prefix": "QUDT2", + "subjects": [ + "Upper Level Ontology" + ], + "uri_format": "http://qudt.org/schema/qudt$1" + } + }, + "bioportal.radlex": { + "bioportal": { + "name": "Radiology Lexicon", + "prefix": "RADLEX", + "subjects": [], + "uri_format": "http://radlex.org/RID$1" + } + }, + "bioportal.radxtt-mvreasons": { + "bioportal": { + "name": "RADx Tiger Team Missing Value Reasons", + "prefix": "RADXTT-MVREASONS", + "subjects": [ + "Vocabularies" + ], + "uri_format": "https://radx.orgx/vocs/missing-value-reason$1" + } + }, + "bioportal.rao": { + "bioportal": { + "name": "Rheumatoid Arthritis ontology", + "prefix": "RAO", + "subjects": [ + "Health", + "Biomedical Resources", + "Human", + "Vocabularies" + ], + "uri_format": "http://bmi.utah.edu/ontologies/peontology$1" + } + }, + "bioportal.rb": { + "bioportal": { + "name": "RegenBase ontology", + "prefix": "RB", + "subjects": [ + "Health" + ], + "uri_format": "http://regenbase.org/ontology#$1" + } + }, + "bioportal.rbo": { + "bioportal": { + "name": "Radiation Biology Ontology", + "prefix": "RBO", + "subjects": [ + "Biological Process" + ], + "uri_format": "http://purl.obolibrary.org/obo/RBO_$1" + } + }, + "bioportal.rctont": { + "bioportal": { + "name": "Randomized Controlled Trials Ontology", + "prefix": "RCTONT", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://www.owl-ontologies.com/RCTOntology.owl#$1" + } + }, + "bioportal.rda-content": { + "bioportal": { + "name": "RDA Content type", + "prefix": "RDA-CONTENT", + "subjects": [ + "Other" + ], + "uri_format": "http://rdaregistry.info/termList/RDAContentType$1" + } + }, + "bioportal.rda-issuance": { + "bioportal": { + "name": "RDA Mode of Issuance", + "prefix": "RDA-ISSUANCE", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://www.w3.org/2004/02/skos/core#$1" + } + }, + "bioportal.rdfs": { + "bioportal": { + "name": "The RDF Schema vocabulary", + "prefix": "RDFS", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://www.w3.org/2000/01/rdf-schema#$1" + } + }, + "bioportal.rdl": { + "bioportal": { + "name": "RDL", + "prefix": "RDL", + "subjects": [ + "Other" + ], + "uri_format": "http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#$1" + } + }, + "bioportal.rdo": { + "bioportal": { + "name": "Reusable Biodiversity Ontology", + "prefix": "RDO", + "subjects": [], + "uri_format": "http://www.semanticweb.org/mca/ontologies/2018/8/untitled-ontology-47#$1" + } + }, + "bioportal.repo": { + "bioportal": { + "name": "Reproductive Trait and Phenotype Ontology", + "prefix": "REPO", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.bioontology.org/ontology/REPO.owl#$1" + } + }, + "bioportal.reproduce-me": { + "bioportal": { + "name": "REPRODUCE-ME", + "prefix": "REPRODUCE-ME", + "subjects": [], + "uri_format": "https://w3id.org/reproduceme#$1" + } + }, + "bioportal.reto": { + "bioportal": { + "name": "Regulation of Transcription Ontology", + "prefix": "RETO", + "subjects": [ + "Biological Process" + ], + "uri_format": "http://identifiers.org/uniprot$1" + } + }, + "bioportal.rex": { + "bioportal": { + "name": "Physico-Chemical Process", + "prefix": "REX", + "subjects": [ + "Physicochemical" + ], + "uri_format": "http://purl.obolibrary.org/obo/REX_$1" + } + }, + "bioportal.rexo": { + "bioportal": { + "name": "Regulation of Gene Expression Ontolology", + "prefix": "REXO", + "subjects": [], + "uri_format": "http://identifiers.org/intact$1" + } + }, + "bioportal.rnao": { + "bioportal": { + "name": "RNA Ontology", + "prefix": "RNAO", + "subjects": [ + "All Organisms" + ], + "uri_format": "http://purl.obolibrary.org/obo/RNAO_$1" + } + }, + "bioportal.rnprio": { + "bioportal": { + "name": "Research Network and Patient Registry Inventory Ontology", + "prefix": "RNPRIO", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://www.semanticweb.org/ontologies/2013/1/PCORI.owl#$1" + } + }, + "bioportal.rnrmu": { + "bioportal": { + "name": "RNRMU", + "prefix": "RNRMU", + "subjects": [ + "Development" + ], + "uri_format": "http://ontology.rsmu.ru/Subject79/Module4$1" + } + }, + "bioportal.ro": { + "bioportal": { + "name": "Radiomics Ontology", + "prefix": "RO", + "subjects": [ + "Imaging", + "Biomedical Resources" + ], + "uri_format": "http://www.radiomics.org/RO$1" + } + }, + "bioportal.roleo": { + "bioportal": { + "name": "Role Ontology", + "prefix": "ROLEO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/RoleO_$1" + } + }, + "bioportal.roo": { + "bioportal": { + "name": "Radiation Oncology Ontology", + "prefix": "ROO", + "subjects": [ + "Imaging", + "Health", + "Human", + "Development", + "Vocabularies" + ], + "uri_format": "http://www.cancerdata.org/roo$1" + } + }, + "bioportal.ros": { + "bioportal": { + "name": "Radiation Oncology Structures Ontology", + "prefix": "ROS", + "subjects": [ + "Imaging", + "Anatomy", + "Human" + ], + "uri_format": "urn:absolute:RadiationOncologyStructuresOntology#$1" + } + }, + "bioportal.rpo": { + "bioportal": { + "name": "Resource of Asian Primary Immunodeficiency Diseases (RAPID) Phenotype Ontology", + "prefix": "RPO", + "subjects": [ + "Immunology", + "Phenotype", + "Human" + ], + "uri_format": "http://www.semanticweb.org/ontologies/2012/5/Ontology1338526551855.owl#$1" + } + }, + "bioportal.rs": { + "bioportal": { + "name": "Rat Strain Ontology", + "prefix": "RS", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/RS_$1" + } + }, + "bioportal.rsa": { + "bioportal": { + "name": "Reference Sequence Annotation", + "prefix": "RSA", + "subjects": [ + "Biomedical Resources", + "Genomic and Proteomic" + ], + "uri_format": "http://rdf.biosemantics.org/ontologies/rsa#$1" + } + }, + "bioportal.rvo": { + "bioportal": { + "name": "Research Variable Ontology", + "prefix": "RVO", + "subjects": [ + "Other" + ], + "uri_format": "http://w3id.org/rv-ontology#$1" + } + }, + "bioportal.rxno": { + "bioportal": { + "name": "Name Reaction Ontology", + "prefix": "RXNO", + "subjects": [ + "Chemical" + ], + "uri_format": "http://purl.obolibrary.org/obo/RXNO_$1" + } + }, + "bioportal.sao": { + "bioportal": { + "name": "Subcellular Anatomy Ontology", + "prefix": "SAO", + "subjects": [ + "Anatomy" + ], + "uri_format": "http://ccdb.ucsd.edu/SAO/1.2#$1" + } + }, + "bioportal.sarsmutonto": { + "bioportal": { + "name": "Ontology of SARS-CoV2 mutations", + "prefix": "SARSMUTONTO", + "subjects": [ + "Genomic and Proteomic", + "Gene Product" + ], + "uri_format": "file://C/Users/Jamal/Desktop/SARSMutOnto.owl#$1" + } + }, + "bioportal.sbo": { + "bioportal": { + "name": "Systems Biology Ontology", + "prefix": "SBO", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://purl.obolibrary.org/obo/SBO_$1" + } + }, + "bioportal.sbol": { + "bioportal": { + "name": "Synthetic Biology Open Language Visual Ontology", + "prefix": "SBOL", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/SBOL_$1" + } + }, + "bioportal.scdo": { + "bioportal": { + "name": "Sickle Cell Disease Ontology", + "prefix": "SCDO", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://purl.obolibrary.org/obo/SCDO_$1" + } + }, + "bioportal.schema": { + "bioportal": { + "name": "Schema.org core and all extension vocabularies", + "prefix": "SCHEMA", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://schema.org$1" + } + }, + "bioportal.scio": { + "bioportal": { + "name": "Spinal Cord Injury Ontology", + "prefix": "SCIO", + "subjects": [ + "Experimental Conditions", + "Biomedical Resources", + "Neurologic Disease", + "Neurological Disorder" + ], + "uri_format": "http://psink.de/scio$1" + } + }, + "bioportal.sco": { + "bioportal": { + "name": "Study Cohort Ontology", + "prefix": "SCO", + "subjects": [ + "Health", + "Biomedical Resources" + ], + "uri_format": "http://hadatac.org/ont/hasco$1" + } + }, + "bioportal.sd3": { + "bioportal": { + "name": "Simulation Delivery and Documentation Deviations", + "prefix": "SD3", + "subjects": [ + "Other" + ], + "uri_format": "http://www.wiser.pitt.edu/ontologies/SimulationScenarioDeviations.owl#$1" + } + }, + "bioportal.sdo": { + "bioportal": { + "name": "Sleep Domain Ontology", + "prefix": "SDO", + "subjects": [ + "Health", + "Phenotype", + "Neurologic Disease", + "Neurological Disorder", + "Human" + ], + "uri_format": "http://mimi.case.edu/ontologies/2009/1/SDO.owl#$1" + } + }, + "bioportal.sedi": { + "bioportal": { + "name": "Semantic DICOM Ontology", + "prefix": "SEDI", + "subjects": [], + "uri_format": "http://semantic-dicom.org/dcm#$1" + } + }, + "bioportal.senso": { + "bioportal": { + "name": "Sensitive Data Ontology", + "prefix": "SENSO", + "subjects": [ + "Other", + "Vocabularies" + ], + "uri_format": "http://purl.dataone.org/odo/SENSO_$1" + } + }, + "bioportal.sep": { + "bioportal": { + "name": "Sample Processing and Separation Techniques Ontology", + "prefix": "SEP", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/sep_$1" + } + }, + "bioportal.sepio": { + "bioportal": { + "name": "Scientific Evidence and Provenance Information Ontology", + "prefix": "SEPIO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/SEPIO_$1" + } + }, + "bioportal.shr": { + "bioportal": { + "name": "Student Health Record Ontology", + "prefix": "SHR", + "subjects": [], + "uri_format": "http://www.shojaee.com/shr/shr.owl#$1" + } + }, + "bioportal.sibo": { + "bioportal": { + "name": "Social Inset Behavior Ontology", + "prefix": "SIBO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/SIBO_$1" + } + }, + "bioportal.sio": { + "bioportal": { + "name": "Semanticscience Integrated Ontology", + "prefix": "SIO", + "subjects": [ + "Yeast", + "All Organisms", + "Cellular anatomy ", + "Taxonomic Classification", + "Molecule", + "Biomedical Resources", + "Genomic and Proteomic", + "Biological Process", + "Subcellular", + "Phenotype", + "Subcellular anatomy", + "Chemical", + "Cell", + "Protein", + "Gene Product", + "Vocabularies", + "Physicochemical" + ], + "uri_format": "http://semanticscience.org/resource/SIO_$1" + } + }, + "bioportal.sitbac": { + "bioportal": { + "name": "Situation-Based Access Control Ontology", + "prefix": "SITBAC", + "subjects": [ + "Other" + ], + "uri_format": "http://www.semanticweb.org/ontologies/2008/1/Ontology1204037102846.owl#$1" + } + }, + "bioportal.sk": { + "bioportal": { + "name": "Digital Forensic", + "prefix": "SK", + "subjects": [], + "uri_format": "http://www.semanticweb.org/sandeepak/digitalforensic#$1" + } + }, + "bioportal.smash": { + "bioportal": { + "name": "SMASH Ontology", + "prefix": "SMASH", + "subjects": [ + "Health" + ], + "uri_format": "http://aimlab.cs.uoregon.edu/smash/ontologies/social-activity.owl#$1" + } + }, + "bioportal.smo": { + "bioportal": { + "name": "Syrian Movies Ontology", + "prefix": "SMO", + "subjects": [], + "uri_format": "http://www.semanticweb.org/iyaszawde/ontologies/2022/SyrianMoviesOntology#$1" + } + }, + "bioportal.snmi": { + "bioportal": { + "name": "Systematized Nomenclature of Medicine, International Version", + "prefix": "SNMI", + "subjects": [], + "uri_format": "http://purl.bioontology.org/ontology/SNMI$1" + } + }, + "bioportal.snpo": { + "bioportal": { + "name": "Single-Nucleotide Polymorphism (SNP) Ontology", + "prefix": "SNPO", + "subjects": [ + "Genomic and Proteomic" + ], + "uri_format": "http://www.loria.fr/~coulet/ontology/snpontology/version1.6/snpontology_full.owl#$1" + } + }, + "bioportal.so": { + "bioportal": { + "name": "Sequence Types and Features Ontology", + "prefix": "SO", + "subjects": [ + "Genomic and Proteomic" + ], + "uri_format": "http://purl.obolibrary.org/obo/SO_$1" + } + }, + "bioportal.socpres": { + "bioportal": { + "name": "Social Prescribing Ontology", + "prefix": "SOCPRES", + "subjects": [ + "Other" + ], + "uri_format": "http://www.semanticweb.org/social-prescribing#$1" + } + }, + "bioportal.soho": { + "bioportal": { + "name": "Social Determinants of Health Ontology", + "prefix": "SOHO", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://www.semanticweb.org/navyarenjith/ontologies/2022/1/untitled-ontology-50#$1" + } + }, + "bioportal.sopharm": { + "bioportal": { + "name": "Suggested Ontology for Pharmacogenomics", + "prefix": "SOPHARM", + "subjects": [ + "Genomic and Proteomic" + ], + "uri_format": "http://www.loria.fr/~coulet/sopharm/SOPHARM_$1" + } + }, + "bioportal.sos": { + "bioportal": { + "name": "emerg\u00eancia", + "prefix": "SOS", + "subjects": [], + "uri_format": "https://purl.org/samu#$1" + } + }, + "bioportal.soy": { + "bioportal": { + "name": "Soy Ontology", + "prefix": "SOY", + "subjects": [ + "Plant" + ], + "uri_format": "http://purl.obolibrary.org/obo/SOY_$1" + } + }, + "bioportal.sp": { + "bioportal": { + "name": "SMART Protocols", + "prefix": "SP", + "subjects": [ + "Biological Process" + ], + "uri_format": "http://prismstandard.org/namespaces/basic/2.0$1" + } + }, + "bioportal.spd": { + "bioportal": { + "name": "Spider Anatomy Ontology", + "prefix": "SPD", + "subjects": [ + "Gross Anatomy", + "Anatomy", + "Animal Gross Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/SPD_$1" + } + }, + "bioportal.spo": { + "bioportal": { + "name": "Skin Physiology Ontology", + "prefix": "SPO", + "subjects": [ + "Biological Process" + ], + "uri_format": "http://www.semanticweb.org/ontologies/2008/8/SPO_lightweight_merged.owl#$1" + } + }, + "bioportal.spto": { + "bioportal": { + "name": "Solanaceae Phenotype Ontology", + "prefix": "SPTO", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/SP_$1" + } + }, + "bioportal.sse": { + "bioportal": { + "name": "Surgical Secondary Events", + "prefix": "SSE", + "subjects": [ + "Health" + ], + "uri_format": "http://www.mskcc.org/ontologies/2013/03/sae.owl#$1" + } + }, + "bioportal.ssn": { + "bioportal": { + "name": "Semantic Sensor Network Ontology", + "prefix": "SSN", + "subjects": [ + "Other" + ], + "uri_format": "http://www.w3.org/ns/ssn$1" + } + }, + "bioportal.sso": { + "bioportal": { + "name": "Syndromic Surveillance Ontology", + "prefix": "SSO", + "subjects": [ + "Taxonomic Classification", + "Biomedical Resources" + ], + "uri_format": "http://surveillance.mcgill.ca/sso/syndromes.owl#$1" + } + }, + "bioportal.stato": { + "bioportal": { + "name": "Statistics Ontology", + "prefix": "STATO", + "subjects": [ + "Experimental Conditions", + "Biomedical Resources" + ], + "uri_format": "http://purl.obolibrary.org/obo/STATO_$1" + } + }, + "bioportal.stmso": { + "bioportal": { + "name": "symptomatic treatment of multiple sclerosis ontology", + "prefix": "STMSO", + "subjects": [ + "All Organisms" + ], + "uri_format": "http://www.semanticweb.org/lenovo/ontologies/2021/1/STMSO#$1" + } + }, + "bioportal.sto-draft": { + "bioportal": { + "name": "The Stroke Ontology", + "prefix": "STO-DRAFT", + "subjects": [], + "uri_format": "http://www.semanticweb.org/ontologies/STO.owl#$1" + } + }, + "bioportal.sty": { + "bioportal": { + "name": "Semantic Types Ontology", + "prefix": "STY", + "subjects": [], + "uri_format": "http://purl.bioontology.org/ontology/STY$1" + } + }, + "bioportal.suicideo": { + "bioportal": { + "name": "suicideonto", + "prefix": "suicideo", + "subjects": [ + "Other" + ], + "uri_format": "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#$1" + } + }, + "bioportal.surgical": { + "bioportal": { + "name": "Nurse Surgical", + "prefix": "SURGICAL", + "subjects": [ + "Health" + ], + "uri_format": "http://www.co-ode.org/ontologies/ont.owl#$1" + } + }, + "bioportal.sweet": { + "bioportal": { + "name": "Semantic Web for Earth and Environment Technology Ontology", + "prefix": "SWEET", + "subjects": [], + "uri_format": "http://sweetontology.net/propIndex$1" + } + }, + "bioportal.swo": { + "bioportal": { + "name": "Software Ontology", + "prefix": "SWO", + "subjects": [ + "Experimental Conditions", + "Biomedical Resources" + ], + "uri_format": "http://www.ebi.ac.uk/swo/SWO_$1" + } + }, + "bioportal.symp": { + "bioportal": { + "name": "Symptom Ontology", + "prefix": "SYMP", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/SYMP_$1" + } + }, + "bioportal.syn": { + "bioportal": { + "name": "Sage Bionetworks Synapse Ontology", + "prefix": "SYN", + "subjects": [], + "uri_format": "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#$1" + } + }, + "bioportal.tads": { + "bioportal": { + "name": "Tick Gross Anatomy Ontology", + "prefix": "TADS", + "subjects": [ + "Gross Anatomy", + "Anatomy", + "Animal Gross Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/TADS_$1" + } + }, + "bioportal.tao": { + "bioportal": { + "name": "Teleost Anatomy Ontology", + "prefix": "TAO", + "subjects": [ + "Fish Anatomy", + "Gross Anatomy", + "Anatomy", + "Animal Gross Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/TAO_$1" + } + }, + "bioportal.taxrank": { + "bioportal": { + "name": "Taxonomic Rank Vocabulary", + "prefix": "TAXRANK", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/TAXRANK_$1" + } + }, + "bioportal.tcdo": { + "bioportal": { + "name": "Traditional Chinese Drug Ontology", + "prefix": "TCDO", + "subjects": [], + "uri_format": "http://OntoTCM.org.cn/ontologies/TCDO_$1" + } + }, + "bioportal.tco": { + "bioportal": { + "name": "Thyroid Cancer Ontology", + "prefix": "TCO", + "subjects": [ + "Health", + "Human" + ], + "uri_format": "http://www.semanticweb.org/hx-jta/ontologies/thyroid_cancer_ontology#$1" + } + }, + "bioportal.tdwgspec": { + "bioportal": { + "name": "TDWG Specimen LSID Ontology", + "prefix": "TDWGSPEC", + "subjects": [ + "Taxonomic Classification" + ], + "uri_format": "http://rs.tdwg.org/ontology/voc/Specimen#$1" + } + }, + "bioportal.teddy": { + "bioportal": { + "name": "Terminology for the Description of Dynamics", + "prefix": "TEDDY", + "subjects": [ + "Other" + ], + "uri_format": "http://identifiers.org/teddy/TEDDY_$1" + } + }, + "bioportal.tempo": { + "bioportal": { + "name": "TempO", + "prefix": "TEMPO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.org/tempo$1" + } + }, + "bioportal.teo": { + "bioportal": { + "name": "Time Event Ontology", + "prefix": "TEO", + "subjects": [ + "Other" + ], + "uri_format": "http://informatics.mayo.edu/TEO.owl#$1" + } + }, + "bioportal.tephram4mexample": { + "bioportal": { + "name": "Tephra M4M Example", + "prefix": "TEPHRAM4MEXAMPLE", + "subjects": [ + "Other" + ], + "uri_format": "https://example.com/tephra/vocs/m4m-tephra$1" + } + }, + "bioportal.test-m4m20-pav": { + "bioportal": { + "name": "test-m4m20-subjects-pav", + "prefix": "TEST-M4M20-PAV", + "subjects": [], + "uri_format": "http://purl.org/m4m20/subjects$1" + } + }, + "bioportal.test_a": { + "bioportal": { + "name": "TEST_A", + "prefix": "TEST_A", + "subjects": [ + "Other" + ], + "uri_format": "https://bioportal.databiology.com/test1.owl#$1" + } + }, + "bioportal.test_cbi": { + "bioportal": { + "name": "test_cbi", + "prefix": "TEST_CBI", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://webprotege.stanford.edu$1" + } + }, + "bioportal.testex": { + "bioportal": { + "name": "test1", + "prefix": "TESTEX", + "subjects": [ + "Human" + ], + "uri_format": "https://bioportal.databiology.com/test1.owl#$1" + } + }, + "bioportal.tgma": { + "bioportal": { + "name": "Mosquito Gross Anatomy Ontology", + "prefix": "TGMA", + "subjects": [ + "Gross Anatomy", + "Anatomy", + "Animal Gross Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/TGMA_$1" + } + }, + "bioportal.tim": { + "bioportal": { + "name": "Terra Interoperability Model", + "prefix": "TIM", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://purl.obolibrary.org/obo/OBI_$1" + } + }, + "bioportal.time": { + "bioportal": { + "name": "OWL-Time", + "prefix": "TIME", + "subjects": [ + "Other" + ], + "uri_format": "http://www.w3.org/2006/time#$1" + } + }, + "bioportal.timebank": { + "bioportal": { + "name": "Timebank Ontology", + "prefix": "TIMEBANK", + "subjects": [ + "Other", + "Human" + ], + "uri_format": "https://w3id.org/timebank#$1" + } + }, + "bioportal.tm-const": { + "bioportal": { + "name": "Traditional Medicine Constitution Value Set", + "prefix": "TM-CONST", + "subjects": [ + "Human" + ], + "uri_format": "http://who.int/ictm/constitution#$1" + } + }, + "bioportal.tm-mer": { + "bioportal": { + "name": "Traditional Medicine Meridian Value Sets", + "prefix": "TM-MER", + "subjects": [], + "uri_format": "http://who.int/ictm/meridians#$1" + } + }, + "bioportal.tm-other-factors": { + "bioportal": { + "name": "Traditional Medicine Other Factors Value Set", + "prefix": "TM-OTHER-FACTORS", + "subjects": [ + "Human" + ], + "uri_format": "http://who.int/ictm/otherFactors#$1" + } + }, + "bioportal.tm-signs-and-sympts": { + "bioportal": { + "name": "Traditional Medicine Signs and Symptoms Value Set", + "prefix": "TM-SIGNS-AND-SYMPTS", + "subjects": [], + "uri_format": "http://who.int/ictm/signsAndSymptoms#$1" + } + }, + "bioportal.tma": { + "bioportal": { + "name": "Tissue Microarray Ontology", + "prefix": "TMA", + "subjects": [ + "Experimental Conditions", + "Biomedical Resources", + "Other" + ], + "uri_format": "http://bioontology.org/ontologies/tma-minimal#$1" + } + }, + "bioportal.tml": { + "bioportal": { + "name": "trasformative machine learning metadata", + "prefix": "TML", + "subjects": [ + "Other", + "Vocabularies" + ], + "uri_format": "http://www.semanticweb.org/larisa/ontologies/2020/5/untitled-ontology-33#$1" + } + }, + "bioportal.tmo": { + "bioportal": { + "name": "Translational Medicine Ontology", + "prefix": "TMO", + "subjects": [ + "All Organisms", + "Health" + ], + "uri_format": "http://www.w3.org/2001/sw/hcls/ns/transmed/TMO_$1" + } + }, + "bioportal.tok": { + "bioportal": { + "name": "Terminological and Ontological Knowledge Resources Ontology", + "prefix": "TOK", + "subjects": [ + "Taxonomic Classification" + ], + "uri_format": "http://cui.unige.ch/isi/onto/tok/TOK.owl#$1" + } + }, + "bioportal.top-menelas": { + "bioportal": { + "name": "Menelas Project Top-Level Ontology", + "prefix": "TOP-MENELAS", + "subjects": [], + "uri_format": "http://www.limics.fr/ontologies/menelastop#$1" + } + }, + "bioportal.trak": { + "bioportal": { + "name": "Taxonomy for Rehabilitation of Knee Conditions", + "prefix": "TRAK", + "subjects": [ + "Biomedical Resources" + ], + "uri_format": "http://purl.obolibrary.org/obo/TRAK_$1" + } + }, + "bioportal.trans": { + "bioportal": { + "name": "Nurse Transitional", + "prefix": "TRANS", + "subjects": [ + "Health" + ], + "uri_format": "http://www.cablesat.com.au/research/transitional.owl#$1" + } + }, + "bioportal.triage": { + "bioportal": { + "name": "Nurse triage", + "prefix": "TRIAGE", + "subjects": [ + "Health" + ], + "uri_format": "http://www.semanticweb.org/philshields/ontologies/2015/4/untitled-ontology-59#$1" + } + }, + "bioportal.tron": { + "bioportal": { + "name": "Tribolium Ontology", + "prefix": "TRON", + "subjects": [ + "Anatomy", + "Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/TrOn_$1" + } + }, + "bioportal.tto": { + "bioportal": { + "name": "Teleost Taxonomy Ontology", + "prefix": "TTO", + "subjects": [ + "Taxonomic Classification" + ], + "uri_format": "http://purl.obolibrary.org/obo/TTO_$1" + } + }, + "bioportal.txpo": { + "bioportal": { + "name": "Toxic Process Ontology", + "prefix": "TXPO", + "subjects": [ + "Dysfunction", + "Biological Process" + ], + "uri_format": "http://purl.obolibrary.org/obo/TXPO_$1" + } + }, + "bioportal.typon": { + "bioportal": { + "name": "Microbial Typing Ontology", + "prefix": "TYPON", + "subjects": [], + "uri_format": "http://purl.phyloviz.net/ontology/typon#$1" + } + }, + "bioportal.uganda_diseases": { + "bioportal": { + "name": "Uganda_diseases", + "prefix": "UGANDA_DISEASES", + "subjects": [ + "Vocabularies" + ], + "uri_format": "https://www.vodan-totafrica.info/vocs$1" + } + }, + "bioportal.umms": { + "bioportal": { + "name": "FirstOntologyForUMMS", + "prefix": "UMMS", + "subjects": [], + "uri_format": "https://w3id.org/umms/ekg/onto01$1" + } + }, + "bioportal.unitsont": { + "bioportal": { + "name": "Units Ontology", + "prefix": "UNITSONT", + "subjects": [ + "Other" + ], + "uri_format": "http://mimi.case.edu/ontologies/2009/1/UnitsOntology#$1" + } + }, + "bioportal.uo": { + "bioportal": { + "name": "Units of Measurement Ontology", + "prefix": "UO", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/UO_$1" + } + }, + "bioportal.upa": { + "bioportal": { + "name": "Unipathway", + "prefix": "UPA", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/UPa_$1" + } + }, + "bioportal.vandf": { + "bioportal": { + "name": "Veterans Health Administration National Drug File", + "prefix": "VANDF", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/VANDF$1" + } + }, + "bioportal.vario": { + "bioportal": { + "name": "Variation Ontology", + "prefix": "VARIO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/VariO_$1" + } + }, + "bioportal.vdot": { + "bioportal": { + "name": "Viral Disease Ontology Trunk", + "prefix": "VDOT", + "subjects": [ + "Immunology", + "Health", + "Protein" + ], + "uri_format": "http://www.ifomis.org/vdot/vdot_core.owl#$1" + } + }, + "bioportal.veo": { + "bioportal": { + "name": "Visualized Emotion Ontology", + "prefix": "VEO", + "subjects": [ + "Other" + ], + "uri_format": "http://sbmi.uth.tmc.edu/ontology/VEO#$1" + } + }, + "bioportal.vfb_drivers": { + "bioportal": { + "name": "vfb_drivers", + "prefix": "VFB_DRIVERS", + "subjects": [], + "uri_format": "http://flybase.org/reports$1" + } + }, + "bioportal.vhog": { + "bioportal": { + "name": "Vertebrate Homologous Organ Group Ontology", + "prefix": "VHOG", + "subjects": [ + "Mouse Anatomy", + "Fish Anatomy", + "Gross Anatomy", + "Human Developmental Anatomy", + "Anatomy", + "Human", + "Animal Gross Anatomy", + "Animal Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/VHOG_$1" + } + }, + "bioportal.vico": { + "bioportal": { + "name": "Vaccination Informed Consent Ontology", + "prefix": "VICO", + "subjects": [ + "Immunology", + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/VICO_$1" + } + }, + "bioportal.vido": { + "bioportal": { + "name": "Virus Infectious Disease Ontology", + "prefix": "VIDO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/VIDO_$1" + } + }, + "bioportal.vio": { + "bioportal": { + "name": "Vaccine Investigation Ontology", + "prefix": "VIO", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/VO_$1" + } + }, + "bioportal.vivo": { + "bioportal": { + "name": "VIVO Ontology for Researcher Discovery", + "prefix": "VIVO", + "subjects": [ + "Other" + ], + "uri_format": "http://vivoweb.org/ontology/core#$1" + } + }, + "bioportal.vivo-isf": { + "bioportal": { + "name": "VIVO-Integrated Semantic Framework", + "prefix": "VIVO-ISF", + "subjects": [ + "Other" + ], + "uri_format": "http://www.w3.org/2006/vcard/ns#$1" + } + }, + "bioportal.vo": { + "bioportal": { + "name": "Vaccine Ontology", + "prefix": "VO", + "subjects": [ + "All Organisms", + "Immunology", + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/VO_$1" + } + }, + "bioportal.vodana-general": { + "bioportal": { + "name": "VODANATERMS", + "prefix": "VODANA-GENERAL", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://www.vodan-totafrica.info/vocs/vgt$1" + } + }, + "bioportal.vodana-mi": { + "bioportal": { + "name": "VODANA-MIGRANTS-INTERVIEWS", + "prefix": "VODANA-MI", + "subjects": [ + "Health", + "Vocabularies" + ], + "uri_format": "https://www.vodan-totafrica.info/vocs/miv$1" + } + }, + "bioportal.vodana-migrants": { + "bioportal": { + "name": "VODANA MIGRANTS VOCABULARY", + "prefix": "VODANA-MIGRANTS", + "subjects": [ + "Health", + "Vocabularies" + ], + "uri_format": "https://www.vodan-totafrica.info/vocs/vodan-migrant-content$1" + } + }, + "bioportal.vodana-mpa": { + "bioportal": { + "name": "VODANA-MIGRANTS-PRESS ARTICLES", + "prefix": "VODANA-MPA", + "subjects": [ + "Health", + "Vocabularies" + ], + "uri_format": "https://www.vodan-totafrica.info/vocs/mnv$1" + } + }, + "bioportal.vodanacovid": { + "bioportal": { + "name": "VODANA-COVIDTERMS", + "prefix": "VODANACOVID", + "subjects": [ + "Health" + ], + "uri_format": "https://github.com/mariambasajja$1" + } + }, + "bioportal.vodanadiseases": { + "bioportal": { + "name": "VODANADiseases", + "prefix": "VODANADISEASES", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://vocab.vodan-totafrica.info/vodana-terms/vdiseases$1" + } + }, + "bioportal.vodanakenya": { + "bioportal": { + "name": "VODANA KENYA", + "prefix": "VODANAKENYA", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://www.vodan-totafrica.info/vodana-terms$1" + } + }, + "bioportal.vodanamflcode": { + "bioportal": { + "name": "VODANAFACILITIESLIST", + "prefix": "VODANAMFLCODE", + "subjects": [ + "Vocabularies" + ], + "uri_format": "http://vocab.vodana.org/vmfl$1" + } + }, + "bioportal.vodananigeria": { + "bioportal": { + "name": "VODANANIGERIA", + "prefix": "VODANANIGERIA", + "subjects": [ + "Health" + ], + "uri_format": "https://github.com/mariambasajja$1" + } + }, + "bioportal.vodanauganda": { + "bioportal": { + "name": "VODANAUGANDA", + "prefix": "VODANAUGANDA", + "subjects": [], + "uri_format": "https://github.com/mariambasajja/vocablary1$1" + } + }, + "bioportal.vsao": { + "bioportal": { + "name": "Vertebrate Skeletal Anatomy Ontology", + "prefix": "VSAO", + "subjects": [ + "Fish Anatomy", + "Gross Anatomy", + "Anatomy", + "Animal Gross Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/VSAO_$1" + } + }, + "bioportal.vso": { + "bioportal": { + "name": "Vital Sign Ontology", + "prefix": "VSO", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.obolibrary.org/obo/VSO_$1" + } + }, + "bioportal.vt": { + "bioportal": { + "name": "Vertebrate Trait Ontology", + "prefix": "VT", + "subjects": [], + "uri_format": "http://purl.obolibrary.org/obo/VT_$1" + } + }, + "bioportal.vto": { + "bioportal": { + "name": "Vertebrate Taxonomy Ontology", + "prefix": "VTO", + "subjects": [ + "Taxonomic Classification" + ], + "uri_format": "http://purl.obolibrary.org/obo/VTO_$1" + } + }, + "bioportal.wb-bt": { + "bioportal": { + "name": "C. elegans Gross Anatomy Vocabulary", + "prefix": "WB-BT", + "subjects": [ + "Gross Anatomy", + "Anatomy", + "Animal Gross Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/WBbt_$1" + } + }, + "bioportal.wb-ls": { + "bioportal": { + "name": "C. elegans Development Vocabulary", + "prefix": "WB-LS", + "subjects": [ + "Development", + "Animal Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/WBls_$1" + } + }, + "bioportal.wb-phenotype": { + "bioportal": { + "name": "C. elegans Phenotype Vocabulary", + "prefix": "WB-PHENOTYPE", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/WBPhenotype_$1" + } + }, + "bioportal.wc": { + "bioportal": { + "name": "Whole-cell modeling ontology", + "prefix": "WC", + "subjects": [ + "Molecule", + "Other", + "Cell" + ], + "uri_format": "http://purl.obolibrary.org/obo/WC_$1" + } + }, + "bioportal.wear": { + "bioportal": { + "name": "WEAR: Wind Energy mAteRials Taxonomy", + "prefix": "WEAR", + "subjects": [], + "uri_format": "http://purl.org/wear$1" + } + }, + "bioportal.weave": { + "bioportal": { + "name": "WEAVE: Wind Energy ActiVitiEs", + "prefix": "WEAVE", + "subjects": [], + "uri_format": "http://purl.org/weave$1" + } + }, + "bioportal.wetaxtopics": { + "bioportal": { + "name": "NEAT: wiNd Energy tAxonomy of Topics", + "prefix": "WETAXTOPICS", + "subjects": [ + "Taxonomic Classification" + ], + "uri_format": "http://purl.org/neat$1" + } + }, + "bioportal.who-art": { + "bioportal": { + "name": "World Health Organization (WHO) Adverse Reaction Terminology", + "prefix": "WHO-ART", + "subjects": [ + "Health" + ], + "uri_format": "http://purl.bioontology.org/ontology/WHO$1" + } + }, + "bioportal.wikipathways": { + "bioportal": { + "name": "WikiPathways", + "prefix": "WIKIPATHWAYS", + "subjects": [ + "Biological Process", + "Vocabularies" + ], + "uri_format": "http://vocabularies.wikipathways.org/wp#$1" + } + }, + "bioportal.wsio": { + "bioportal": { + "name": "Web-Service Interaction Ontology", + "prefix": "WSIO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/WSIO_$1" + } + }, + "bioportal.xao": { + "bioportal": { + "name": "Xenopus Anatomy Ontology", + "prefix": "XAO", + "subjects": [ + "Anatomy", + "Development" + ], + "uri_format": "http://purl.obolibrary.org/obo/XAO_$1" + } + }, + "bioportal.xco": { + "bioportal": { + "name": "Experimental Conditions Ontology", + "prefix": "XCO", + "subjects": [ + "Experimental Conditions", + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/XCO_$1" + } + }, + "bioportal.xeo": { + "bioportal": { + "name": "XEML Environment Ontology", + "prefix": "XEO", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.obolibrary.org/obo/XEO_$1" + } + }, + "bioportal.xlmod": { + "bioportal": { + "name": "mass spectrometry cross-linking and derivatization reagents", + "prefix": "XLMOD", + "subjects": [ + "Genomic and Proteomic" + ], + "uri_format": "http://purl.obolibrary.org/obo/XLMOD_$1" + } + }, + "bioportal.xpo": { + "bioportal": { + "name": "Xenopus Phenotype Ontology", + "prefix": "XPO", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/XPO_$1" + } + }, + "bioportal.xref-funder-reg": { + "bioportal": { + "name": "CrossRef Funder Registry", + "prefix": "XREF-FUNDER-REG", + "subjects": [ + "Other" + ], + "uri_format": "http://dx.doi.org/10.13039$1" + } + }, + "bioportal.zea": { + "bioportal": { + "name": "Maize Gross Anatomy Ontology", + "prefix": "ZEA", + "subjects": [ + "Plant Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/ZEA_$1" + } + }, + "bioportal.zeco": { + "bioportal": { + "name": "Zebrafish Experimental Conditions Ontology", + "prefix": "ZECO", + "subjects": [ + "Experimental Conditions" + ], + "uri_format": "http://purl.obolibrary.org/obo/ZECO_$1" + } + }, + "bioportal.zfa": { + "bioportal": { + "name": "Zebrafish Anatomy and Development Ontology", + "prefix": "ZFA", + "subjects": [ + "Fish Anatomy", + "Gross Anatomy", + "Anatomy", + "Animal Gross Anatomy" + ], + "uri_format": "http://purl.obolibrary.org/obo/ZFA_$1" + } + }, + "bioportal.zonmw-admin-md": { + "bioportal": { + "name": "ZonMW Administrative Metadata Vocabulary", + "prefix": "ZONMW-ADMIN-MD", + "subjects": [], + "uri_format": "http://www.fair-data-collective.com/zonmw/projectadmin$1" + } + }, + "bioportal.zonmw-content": { + "bioportal": { + "name": "ZonMW COVID-19", + "prefix": "ZONMW-CONTENT", + "subjects": [], + "uri_format": "http://purl.org/zonmw/covid19$1" + } + }, + "bioportal.zonmw-generic": { + "bioportal": { + "name": "ZonMw Generic Terms", + "prefix": "ZONMW-GENERIC", + "subjects": [ + "Other" + ], + "uri_format": "http://purl.org/zonmw/generic$1" + } + }, + "bioportal.zp": { + "bioportal": { + "name": "Zebrafish Phenotype Ontology", + "prefix": "ZP", + "subjects": [ + "Phenotype" + ], + "uri_format": "http://purl.obolibrary.org/obo/ZP_$1" + } + } +} diff --git a/fuji_server/data/linked_vocabs/bioregistry.json b/fuji_server/data/linked_vocabs/bioregistry.json index 155b3007..7530ace6 100644 --- a/fuji_server/data/linked_vocabs/bioregistry.json +++ b/fuji_server/data/linked_vocabs/bioregistry.json @@ -145,19 +145,19 @@ { "email": "laylamichan@ciencias.unam.mx", "github": "lmichan", - "name": "Layla Michán Aguirre", + "name": "Layla Mich\u00e1n Aguirre", "orcid": "0000-0002-5798-662X" }, { "email": "mineromero2901@ciencias.unam.mx", "github": "MinRo60", - "name": "Minerva María Romero Pérez", + "name": "Minerva Mar\u00eda Romero P\u00e9rez", "orcid": "0000-0002-6240-9325" }, { "email": "victorinolavida@ciencias.unam.mx", "github": "Victorinolavida", - "name": "José Victorino Ruiz Lavida", + "name": "Jos\u00e9 Victorino Ruiz Lavida", "orcid": "0000-0001-5130-7705" } ], @@ -731,7 +731,7 @@ { "email": "laylamichan@ciencias.unam.mx", "github": "lmichan", - "name": "Layla Michán Aguirre", + "name": "Layla Mich\u00e1n Aguirre", "orcid": "0000-0002-5798-662X" } ], @@ -879,7 +879,7 @@ "obofoundry": { "contact": "m.a.laporte@cgiar.org", "contact.github": "marieALaporte", - "contact.label": "Marie-Angélique Laporte", + "contact.label": "Marie-Ang\u00e9lique Laporte", "contact.orcid": "0000-0002-8461-9745", "depends_on": [ "bfo", @@ -982,7 +982,7 @@ ], "contact": "entiminae@gmail.com", "contact.github": "JCGiron", - "contact.label": "Jennifer C. Girón", + "contact.label": "Jennifer C. Gir\u00f3n", "contact.orcid": "0000-0002-0851-6883", "depends_on": [ "bfo", @@ -2809,7 +2809,7 @@ "bacdive": { "fairsharing": { "abbreviation": "BacDive", - "description": "BacDive—the Bacterial Diversity Metadatabase merges detailed strain-linked information on the different aspects of bacterial and archaeal biodiversity. BacDive contains entries for over 63,000 strains and provides information on their taxonomy, morphology, physiology, sampling and concomitant environmental conditions as well as molecular biology.", + "description": "BacDive\u2014the Bacterial Diversity Metadatabase merges detailed strain-linked information on the different aspects of bacterial and archaeal biodiversity. BacDive contains entries for over 63,000 strains and provides information on their taxonomy, morphology, physiology, sampling and concomitant environmental conditions as well as molecular biology.", "id": "2674", "name": "Bacterial Diversity Metadatabase", "prefix": "FAIRsharing.aSszvY", @@ -2826,7 +2826,7 @@ }, "miriam": { "deprecated": false, - "description": "BacDive—the Bacterial Diversity Metadatabase merges detailed strain-linked information on the different aspects of bacterial and archaeal biodiversity.", + "description": "BacDive\u2014the Bacterial Diversity Metadatabase merges detailed strain-linked information on the different aspects of bacterial and archaeal biodiversity.", "homepage": "https://bacdive.dsmz.de/", "id": "00000676", "name": "Bacterial Diversity Metadatabase", @@ -3537,9 +3537,9 @@ "example": "0000001", "fairsharing": { "abbreviation": "ISO/IEC 21838-2:2021 BFO", - "description": "ISO/IEC 21838-2:2021 describes Basic Formal Ontology (BFO), which is an ontology that is conformant to the requirements specified for top-level ontologies in ISO/IEC 21838‑1.", + "description": "ISO/IEC 21838-2:2021 describes Basic Formal Ontology (BFO), which is an ontology that is conformant to the requirements specified for top-level ontologies in ISO/IEC 21838\u20111.", "id": "1248", - "name": "ISO/IEC 21838-2:2021 Information technology — Top-level ontologies (TLO) — Part 2: Basic Formal Ontology (BFO)", + "name": "ISO/IEC 21838-2:2021 Information technology \u2014 Top-level ontologies (TLO) \u2014 Part 2: Basic Formal Ontology (BFO)", "prefix": "FAIRsharing.wcpd6f", "subjects": [ "Subject Agnostic" @@ -4145,7 +4145,7 @@ }, "fairsharing": { "abbreviation": "BioGRID", - "description": "The Biological General Repository for Interaction Datasets (BioGRID) is a public database that archives and disseminates genetic and protein interaction data from model organisms and humans. BioGRID currently holds over 1,740,000 interactions curated from both high-throughput datasets and individual focused studies, as derived from over 70,000+ publications in the primary literature. Complete coverage of the entire literature is maintained for budding yeast (S. cerevisiae), fission yeast (S. pombe) and thale cress (A. thaliana), and efforts to expand curation across multiple metazoan species are underway. All data are freely provided via our search index and available for download in many standardized formats.", + "description": "The Biological General Repository for Interaction Datasets (BioGRID) is a public database that archives and disseminates genetic and protein interaction data from model organisms and humans. BioGRID currently holds over\u00a01,740,000 interactions\u00a0curated from both high-throughput datasets and individual focused studies, as derived from over 70,000+ publications in the primary literature. Complete coverage of the entire literature is maintained for budding yeast (S. cerevisiae), fission yeast (S. pombe) and thale cress (A. thaliana), and efforts to expand curation across multiple metazoan species are underway. All data are freely provided via our search index and available for download in many standardized formats.", "id": "2028", "name": "Biological General Repository for Interaction Datasets", "prefix": "FAIRsharing.9d5f5r", @@ -4673,7 +4673,7 @@ }, "fairsharing": { "abbreviation": "BioPortal", - "description": "BioPortal is a library of biomedical ontologies and terminologies developed in Web Ontology Language (OWL), Resource Description Framework (RDF)(S), Open Biological and Biomedical Ontologies (OBO) format, and Protégé frames and Rich Release Format. BioPortal groups ontologies by domain to aid discoverability and allows users to browse, search and visualize the content of ontologies. BioPortal also provides ontology recommendation, text annotation, ontology mapping, and a reference index to resources like PubMed.", + "description": "BioPortal is a library of biomedical ontologies and terminologies developed in Web Ontology Language (OWL), Resource Description Framework (RDF)(S), Open Biological and Biomedical Ontologies (OBO) format, and Prot\u00e9g\u00e9 frames and Rich Release Format. BioPortal groups ontologies by domain to aid discoverability and allows users to browse, search and visualize the content of ontologies. BioPortal also provides ontology recommendation, text annotation, ontology mapping, and a reference index to resources like PubMed.", "id": "2290", "name": "BioPortal", "prefix": "FAIRsharing.4m97ah", @@ -4691,7 +4691,7 @@ }, "miriam": { "deprecated": false, - "description": "BioPortal is an open repository of biomedical ontologies that provides access via Web services and Web browsers to ontologies developed in OWL, RDF, OBO format and Protégé frames. BioPortal functionality includes the ability to browse, search and visualize ontologies.", + "description": "BioPortal is an open repository of biomedical ontologies that provides access via Web services and Web browsers to ontologies developed in OWL, RDF, OBO format and Prot\u00e9g\u00e9 frames. BioPortal functionality includes the ability to browse, search and visualize ontologies.", "homepage": "http://bioportal.bioontology.org/", "id": "00000187", "name": "BioPortal", @@ -4752,7 +4752,7 @@ }, "miriam": { "deprecated": false, - "description": "BioProject provides an organizational framework to access metadata about research projects and the data from the projects that are deposited into different databases. It provides information about a project’s scope, material, objectives, funding source and general relevance categories.", + "description": "BioProject provides an organizational framework to access metadata about research projects and the data from the projects that are deposited into different databases. It provides information about a project\u2019s scope, material, objectives, funding source and general relevance categories.", "homepage": "http://trace.ddbj.nig.ac.jp/bioproject/", "id": "00000349", "name": "BioProject", @@ -4910,7 +4910,7 @@ }, "fairsharing": { "abbreviation": "BioSample", - "description": "The NCBI BioSample database stores submitter-supplied descriptive information, or metadata, about the biological materials from which data stored in NCBI’s primary data archives are derived. NCBI’s archives host data from diverse types of samples from any species, so the BioSample database is similarly diverse; typical examples of a BioSample include a cell line, a primary tissue biopsy, an individual organism or an environmental isolate. The BioSample database promotes the use of structured and consistent attribute names and values that describe what the samples are as well as information about their provenance, where appropriate.", + "description": "The NCBI BioSample database stores submitter-supplied descriptive information, or metadata, about the biological materials from which data stored in NCBI\u2019s primary data archives are derived. NCBI\u2019s archives host data from diverse types of samples from any species, so the BioSample database is similarly diverse; typical examples of a BioSample include a cell line, a primary tissue biopsy, an individual organism or an environmental isolate. The BioSample database promotes the use of structured and consistent attribute names and values that describe what the samples are as well as information about their provenance, where appropriate.", "id": "2211", "name": "NCBI BioSample", "prefix": "FAIRsharing.qr6pqk", @@ -7230,7 +7230,7 @@ }, "miriam": { "deprecated": false, - "description": "The Cell: An Image Library™ is a freely accessible, public repository of reviewed and annotated images, videos, and animations of cells from a variety of organisms, showcasing cell architecture, intracellular functionalities, and both normal and abnormal processes.", + "description": "The Cell: An Image Library\u2122 is a freely accessible, public repository of reviewed and annotated images, videos, and animations of cells from a variety of organisms, showcasing cell architecture, intracellular functionalities, and both normal and abnormal processes.", "homepage": "http://cellimagelibrary.org/", "id": "00000257", "name": "Cell Image Library", @@ -7251,7 +7251,7 @@ "uri_format": "http://cellimagelibrary.org/images/$1" }, "prefixcommons": { - "description": "The Cell: An Image Library™ is a freely accessible, public repository of reviewed and annotated images, videos, and animations of cells from a variety of organisms, showcasing cell architecture, intracellular functionalities, and both normal and abnormal processes.", + "description": "The Cell: An Image Library\u2122 is a freely accessible, public repository of reviewed and annotated images, videos, and animations of cells from a variety of organisms, showcasing cell architecture, intracellular functionalities, and both normal and abnormal processes.", "example": "24801", "keywords": [ "image" @@ -7714,7 +7714,7 @@ "example": "24867", "fairsharing": { "abbreviation": "ChEBI", - "description": "Chemical Entities of Biological Interest (ChEBI) is a free dictionary that describes 'small’ chemical compounds. These compound includes distinct synthetic or natural atoms, molecules, ions, ion pair, radicals, radical ions, complexes, conformers, etc.. These molecular entities can interact with or affect the processes of living organisms.", + "description": "Chemical Entities of Biological Interest (ChEBI) is a free dictionary that describes 'small\u2019 chemical compounds. These compound includes distinct synthetic or natural atoms, molecules, ions, ion pair, radicals, radical ions, complexes, conformers, etc.. These molecular entities can interact with or affect the processes of living organisms.", "id": "1036", "name": "Chemical Entities of Biological Interest", "prefix": "FAIRsharing.62qk8w", @@ -8642,7 +8642,7 @@ "obofoundry": { "contact": "frederic.bastian@unil.ch", "contact.github": "fbastian", - "contact.label": "Frédéric Bastian", + "contact.label": "Fr\u00e9d\u00e9ric Bastian", "contact.orcid": "0000-0002-9415-5104", "deprecated": false, "description": "An ontology to capture confidence information about annotations.", @@ -8739,7 +8739,7 @@ }, "miriam": { "deprecated": false, - "description": "Evidence Items are the central building block of the Clinical Interpretation of Variants in Cancer (CIViC) knowledgebase. The clinical Evidence Item is a piece of information that has been manually curated from trustable medical literature about a Variant or genomic ‘event’ that has implications in cancer Predisposition, Diagnosis (aka molecular classification), Prognosis, Predictive response to therapy, Oncogenicity or protein Function. For example, an Evidence Item might describe a line of evidence supporting the notion that tumors with a somatic BRAF V600 mutation generally respond well to the drug dabrafenib. A Variant may be a single nucleotide substitution, a small insertion or deletion, an RNA gene fusion, a chromosomal rearrangement, an RNA expression pattern (e.g. over-expression), etc. Each clinical Evidence statement corresponds to a single citable Source (a publication or conference abstract).", + "description": "Evidence Items are the central building block of the Clinical Interpretation of Variants in Cancer (CIViC) knowledgebase. The clinical Evidence Item is a piece of information that has been manually curated from trustable medical literature about a Variant or genomic \u2018event\u2019 that has implications in cancer Predisposition, Diagnosis (aka molecular classification), Prognosis, Predictive response to therapy, Oncogenicity or protein Function. For example, an Evidence Item might describe a line of evidence supporting the notion that tumors with a somatic BRAF V600 mutation generally respond well to the drug dabrafenib. A Variant may be a single nucleotide substitution, a small insertion or deletion, an RNA gene fusion, a chromosomal rearrangement, an RNA expression pattern (e.g. over-expression), etc. Each clinical Evidence statement corresponds to a single citable Source (a publication or conference abstract).", "homepage": "https://civicdb.org/", "id": "00000839", "name": "CIViC Evidence", @@ -8916,7 +8916,7 @@ "obofoundry": { "contact": "lagonzalezmo@unal.edu.co", "contact.github": "luis-gonzalez-m", - "contact.label": "Luis González-Montaña", + "contact.label": "Luis Gonz\u00e1lez-Monta\u00f1a", "contact.orcid": "0000-0002-9136-9932", "depends_on": [ "ro" @@ -9577,7 +9577,7 @@ "example": "0000618", "fairsharing": { "abbreviation": "CO_320", - "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders’ trait names, measurement methods, scales and standard variables for many crops. The IBP Rice Trait Ontology is one of these reference plant ontologies integrated within the Crop Ontology. Based on SES, Rice Descriptor and IRIS DB.", + "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders\u2019 trait names, measurement methods, scales and standard variables for many crops. The IBP Rice Trait Ontology is one of these reference plant ontologies integrated within the Crop Ontology. Based on SES, Rice Descriptor and IRIS DB.", "id": "832", "name": "Rice Ontology", "prefix": "FAIRsharing.2jkxp5", @@ -9666,7 +9666,7 @@ "example": "0000252", "fairsharing": { "abbreviation": "CO_323", - "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders’ trait names, measurement methods, scales and standard variables for many crops. The Barley Ontology is one of these reference plant ontologies integrated within the Crop Ontology. Its focus is on traits and variable used in field trials for breeding.", + "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders\u2019 trait names, measurement methods, scales and standard variables for many crops. The Barley Ontology is one of these reference plant ontologies integrated within the Crop Ontology. Its focus is on traits and variable used in field trials for breeding.", "id": "872", "name": "Barley Ontology", "prefix": "FAIRsharing.f69084", @@ -9796,7 +9796,7 @@ "example": "0000106", "fairsharing": { "abbreviation": "CO_330", - "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders’ trait names, measurement methods, scales and standard variables for many crops. The Potato Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", + "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders\u2019 trait names, measurement methods, scales and standard variables for many crops. The Potato Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", "id": "1307", "name": "Potato Ontology", "prefix": "FAIRsharing.4fa657", @@ -9826,7 +9826,7 @@ "example": "0000088", "fairsharing": { "abbreviation": "CO_331", - "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders’ trait names, measurement methods, scales and standard variables for many crops. The Sweet Potato Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", + "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders\u2019 trait names, measurement methods, scales and standard variables for many crops. The Sweet Potato Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", "id": "496", "name": "Sweet Potato Ontology", "prefix": "FAIRsharing.4g5qcw", @@ -9855,7 +9855,7 @@ "example": "3000045", "fairsharing": { "abbreviation": "CO_333", - "description": "This ontology was built as part of the AKER project. It describes variables used in beet phenotyping (experimental properties and measurement scale) for each institution and breeding company within the project. Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders’ trait names, measurement methods, scales and standard variables for many crops. The Beet Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", + "description": "This ontology was built as part of the AKER project. It describes variables used in beet phenotyping (experimental properties and measurement scale) for each institution and breeding company within the project. Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders\u2019 trait names, measurement methods, scales and standard variables for many crops. The Beet Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", "id": "1079", "name": "Beet Ontology", "prefix": "FAIRsharing.af5655", @@ -9915,7 +9915,7 @@ "example": "0000189", "fairsharing": { "abbreviation": "CO_335", - "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders’ trait names, measurement methods, scales and standard variables for many crops. The Common Bean Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", + "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders\u2019 trait names, measurement methods, scales and standard variables for many crops. The Common Bean Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", "id": "1096", "name": "Common Bean Ontology", "prefix": "FAIRsharing.a14123", @@ -10089,7 +10089,7 @@ "example": "0000140", "fairsharing": { "abbreviation": "CO_341", - "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders’ trait names, measurement methods, scales and standard variables for many crops. The Pigeon Pea Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", + "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders\u2019 trait names, measurement methods, scales and standard variables for many crops. The Pigeon Pea Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", "id": "1078", "name": "Pigeon Pea Ontology", "prefix": "FAIRsharing.ehe3yp", @@ -10119,7 +10119,7 @@ "example": "0100010", "fairsharing": { "abbreviation": "CO_343", - "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders’ trait names, measurement methods, scales and standard variables for many crops. The Yam Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", + "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders\u2019 trait names, measurement methods, scales and standard variables for many crops. The Yam Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", "id": "838", "name": "Yam Ontology", "prefix": "FAIRsharing.7e9cff", @@ -10149,7 +10149,7 @@ "example": "0000127", "fairsharing": { "abbreviation": "CO_345", - "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders’ trait names, measurement methods, scales and standard variables for many crops. The Brachiaria Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", + "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders\u2019 trait names, measurement methods, scales and standard variables for many crops. The Brachiaria Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", "id": "494", "name": "Brachiaria Ontology", "prefix": "FAIRsharing.9e9683", @@ -10237,7 +10237,7 @@ "example": "1100107", "fairsharing": { "abbreviation": "CO_348", - "description": "Brassica Trait Ontology (BRaTO) hosts trait information to describe brassica crop data. Terms are collected from various projects including OREGIN, RIPR (UK) and Rapsodyn (France). Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders’ trait names, measurement methods, scales and standard variables for many crops. The Brassica Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", + "description": "Brassica Trait Ontology (BRaTO) hosts trait information to describe brassica crop data. Terms are collected from various projects including OREGIN, RIPR (UK) and Rapsodyn (France). Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders\u2019 trait names, measurement methods, scales and standard variables for many crops. The Brassica Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", "id": "1019", "name": "Brassica Ontology", "prefix": "FAIRsharing.af7a2d", @@ -10267,7 +10267,7 @@ "example": "0000215", "fairsharing": { "abbreviation": "CO_350", - "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders’ trait names, measurement methods, scales and standard variables for many crops. The Oat Trait Ontology is one of these reference plant ontologies integrated within the Crop Ontology. The Oat Trait Dictionary was commissioned by Oat Global (http://oatglobal.org/) to hold the traits used in the T3/Oat database (http://triticeaetoolbox.org/oat/).", + "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders\u2019 trait names, measurement methods, scales and standard variables for many crops. The Oat Trait Ontology is one of these reference plant ontologies integrated within the Crop Ontology. The Oat Trait Dictionary was commissioned by Oat Global (http://oatglobal.org/) to hold the traits used in the T3/Oat database (http://triticeaetoolbox.org/oat/).", "id": "652", "name": "Oat Trait Ontology", "prefix": "FAIRsharing.35e1c3", @@ -10297,7 +10297,7 @@ "example": "4000027", "fairsharing": { "abbreviation": "CO_356", - "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders’ trait names, measurement methods, scales and standard variables for many crops. The Vitis Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", + "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders\u2019 trait names, measurement methods, scales and standard variables for many crops. The Vitis Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", "id": "1092", "name": "Vitis Ontology", "prefix": "FAIRsharing.c7f4d7", @@ -10327,7 +10327,7 @@ "example": "1000290", "fairsharing": { "abbreviation": "CO_357", - "description": "The Woody Plant Ontology lists all variables used for woody plant observations. Terms are collected from various sources (past and ongoing projects at national and international levels). Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders’ trait names, measurement methods, scales and standard variables for many crops. The Woody Plant Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", + "description": "The Woody Plant Ontology lists all variables used for woody plant observations. Terms are collected from various sources (past and ongoing projects at national and international levels). Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders\u2019 trait names, measurement methods, scales and standard variables for many crops. The Woody Plant Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", "id": "1103", "name": "Woody Plant Ontology", "prefix": "FAIRsharing.2b04ae", @@ -10388,7 +10388,7 @@ "example": "0000071", "fairsharing": { "abbreviation": "CO_360", - "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders’ trait names, measurement methods, scales and standard variables for many crops. The Sugar Kelp Trait Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", + "description": "Reference Plant Ontologies are being developed in the context of the Planteome project and are being integrated with the Crop Ontology, which provides harmonized breeders\u2019 trait names, measurement methods, scales and standard variables for many crops. The Sugar Kelp Trait Ontology is one of these reference plant ontologies integrated within the Crop Ontology.", "id": "1093", "name": "Sugar Kelp Trait Ontology", "prefix": "FAIRsharing.1c1738", @@ -11257,7 +11257,7 @@ "contact": { "email": "zmp@ebi.ac.uk", "github": "zoependlington", - "name": "Zoë May Pendlington", + "name": "Zo\u00eb May Pendlington", "orcid": "0000-0002-4071-8397" }, "example": "0010034", @@ -11386,7 +11386,7 @@ "orcid": "0000-0003-2975-882X" } ], - "description": "Current Procedural Terminology, more commonly known as CPT®, refers to a medical code set created and maintained by the American Medical Association — and used by physicians, allied health professionals, nonphysician practitioners, hospitals, outpatient facilities, and laboratories to represent the services and procedures they perform. No provider of outpatient services gets paid without reporting the proper CPT® codes. [Description taken from this site](https://www.aapc.com/codes/cpt-codes-range/)]", + "description": "Current Procedural Terminology, more commonly known as CPT\u00ae, refers to a medical code set created and maintained by the American Medical Association \u2014 and used by physicians, allied health professionals, nonphysician practitioners, hospitals, outpatient facilities, and laboratories to represent the services and procedures they perform. No provider of outpatient services gets paid without reporting the proper CPT\u00ae codes. [Description taken from this site](https://www.aapc.com/codes/cpt-codes-range/)]", "example": "00103", "fairsharing": { "abbreviation": "CPT", @@ -11428,7 +11428,7 @@ "name": "Charles Tapley Hoyt", "orcid": "0000-0003-4423-4370" }, - "description": "CRediT (Contributor Roles Taxonomy) is high-level taxonomy, including 14 roles, that can be used to represent the roles typically played by contributors to scientific scholarly output. The roles describe each contributor’s specific contribution to the scholarly output.", + "description": "CRediT (Contributor Roles Taxonomy) is high-level taxonomy, including 14 roles, that can be used to represent the roles typically played by contributors to scientific scholarly output. The roles describe each contributor\u2019s specific contribution to the scholarly output.", "example": "Software", "homepage": "https://casrai.org/credit/", "name": "CASRAI Contributor Roles Taxonomy" @@ -13201,7 +13201,7 @@ "example": "0001417", "fairsharing": { "abbreviation": "DDPHENO", - "description": "A structured controlled vocabulary of phenotypes of the social amoeba Dictyostelium discoideum. The Dicty Phenotype Ontology is a hierarchical controlled vocabulary used for annotating strains with phenotypes. Terms from the Dicty Phenotype Ontology are required when annotating phenotypes within dictyBase. The phenotype ontology consists of two composite terms: (1) the anatomical part or the biological process changed in the mutant, and (2) a quality describing that modification. For example, a ‘delayed aggregation’ phenotype qualifies the ‘aggregation’ (biological process) as being ‘delayed’, or the ‘decreased spore size’ qualifies the ‘spore’ to be of ‘decreased size’.", + "description": "A structured controlled vocabulary of phenotypes of the social amoeba Dictyostelium discoideum. The Dicty Phenotype Ontology is a hierarchical controlled vocabulary used for annotating strains with phenotypes. Terms from the Dicty Phenotype Ontology are required when annotating phenotypes within dictyBase. The phenotype ontology consists of two composite terms: (1) the anatomical part or the biological process changed in the mutant, and (2) a quality describing that modification. For example, a \u2018delayed aggregation\u2019 phenotype qualifies the \u2018aggregation\u2019 (biological process) as being \u2018delayed\u2019, or the \u2018decreased spore size\u2019 qualifies the \u2018spore\u2019 to be of \u2018decreased size\u2019.", "id": "867", "name": "Dictyostelium Phenotype Ontology", "prefix": "FAIRsharing.9c1p18", @@ -13602,7 +13602,7 @@ "example": "109082", "fairsharing": { "abbreviation": "DICOM", - "description": "DICOM — Digital Imaging and Communications in Medicine — is the international standard for medical images and related information (ISO 12052). It defines the formats for medical images that can be exchanged with the data and quality necessary for clinical use. DICOM is implemented in almost every radiology, cardiology imaging, and radiotherapy device (X-ray, CT, MRI, ultrasound, etc.), and increasingly in devices in other medical domains such as ophthalmology and dentistry. With tens of thousands of imaging devices in use, DICOM is one of the most widely deployed healthcare messaging standards in the world. There are literally billions of DICOM images currently in use for clinical care. Since its first publication in 1993, DICOM has revolutionized the practice of radiology, allowing the replacement of X-ray film with a fully digital workflow. Much as the Internet has become the platform for new consumer information applications, DICOM has enabled advanced medical imaging applications that have “changed the face of clinical medicine”. From the emergency department, to cardiac stress testing, to breast cancer detection, DICOM is the standard that makes medical imaging work — for doctors and for patients.", + "description": "DICOM \u2014 Digital Imaging and Communications in Medicine \u2014 is the international standard for medical images and related information (ISO 12052). It defines the formats for medical images that can be exchanged with the data and quality necessary for clinical use. DICOM is implemented in almost every radiology, cardiology imaging, and radiotherapy device (X-ray, CT, MRI, ultrasound, etc.), and increasingly in devices in other medical domains such as ophthalmology and dentistry. With tens of thousands of imaging devices in use, DICOM is one of the most widely deployed healthcare messaging standards in the world. There are literally billions of DICOM images currently in use for clinical care. Since its first publication in 1993, DICOM has revolutionized the practice of radiology, allowing the replacement of X-ray film with a fully digital workflow. Much as the Internet has become the platform for new consumer information applications, DICOM has enabled advanced medical imaging applications that have \u201cchanged the face of clinical medicine\u201d. From the emergency department, to cardiac stress testing, to breast cancer detection, DICOM is the standard that makes medical imaging work \u2014 for doctors and for patients.", "id": "84", "name": "Digital Imaging and COmmunications in Medicine", "prefix": "FAIRsharing.b7z8by", @@ -13892,7 +13892,7 @@ "publications": [ { "id": "https://www.ncbi.nlm.nih.gov/pubmed/26147071", - "title": "DINTO: Using OWL Ontologies and SWRL Rules to Infer Drug–Drug Interactions and Their Mechanisms." + "title": "DINTO: Using OWL Ontologies and SWRL Rules to Infer Drug\u2013Drug Interactions and Their Mechanisms." } ], "repository": "https://github.com/labda/DINTO" @@ -14231,7 +14231,7 @@ ], "fairsharing": { "abbreviation": "DOI", - "description": "The digital object identifier (DOI) system originated in a joint initiative of three trade associations in the publishing industry (International Publishers Association; International Association of Scientific, Technical and Medical Publishers; Association of American Publishers). The system was announced at the Frankfurt Book Fair 1997. The International DOI® Foundation (IDF) was created to develop and manage the DOI system, also in 1997. The DOI system was adopted as International Standard ISO 26324 in 2012. The DOI system implements the Handle System and adds a number of new features. The DOI system provides an infrastructure for persistent unique identification of objects of any type. The DOI system is designed to work over the Internet. A DOI name is permanently assigned to an object to provide a resolvable persistent network link to current information about that object, including where the object, or information about it, can be found on the Internet. While information about an object can change over time, its DOI name will not change. A DOI name can be resolved within the DOI system to values of one or more types of data relating to the object identified by that DOI name, such as a URL, an e-mail address, other identifiers and descriptive metadata. The DOI system enables the construction of automated services and transactions. Applications of the DOI system include but are not limited to managing information and documentation location and access; managing metadata; facilitating electronic transactions; persistent unique identification of any form of any data; and commercial and non-commercial transactions. The content of an object associated with a DOI name is described unambiguously by DOI metadata, based on a structured extensible data model that enables the object to be associated with metadata of any desired degree of precision and granularity to support description and services. The data model supports interoperability between DOI applications. The scope of the DOI system is not defined by reference to the type of content (format, etc.) of the referent, but by reference to the functionalities it provides and the context of use. The DOI system provides, within networks of DOI applications, for unique identification, persistence, resolution, metadata and semantic interoperability.", + "description": "The digital object identifier (DOI) system originated in a joint initiative of three trade associations in the publishing industry (International Publishers Association; International Association of Scientific, Technical and Medical Publishers; Association of American Publishers). The system was announced at the Frankfurt Book Fair 1997. The International DOI\u00ae Foundation (IDF) was created to develop and manage the DOI system, also in 1997. The DOI system was adopted as International Standard ISO 26324 in 2012. The DOI system implements the Handle System and adds a number of new features. The DOI system provides an infrastructure for persistent unique identification of objects of any type. The DOI system is designed to work over the Internet. A DOI name is permanently assigned to an object to provide a resolvable persistent network link to current information about that object, including where the object, or information about it, can be found on the Internet. While information about an object can change over time, its DOI name will not change. A DOI name can be resolved within the DOI system to values of one or more types of data relating to the object identified by that DOI name, such as a URL, an e-mail address, other identifiers and descriptive metadata. The DOI system enables the construction of automated services and transactions. Applications of the DOI system include but are not limited to managing information and documentation location and access; managing metadata; facilitating electronic transactions; persistent unique identification of any form of any data; and commercial and non-commercial transactions. The content of an object associated with a DOI name is described unambiguously by DOI metadata, based on a structured extensible data model that enables the object to be associated with metadata of any desired degree of precision and granularity to support description and services. The data model supports interoperability between DOI applications. The scope of the DOI system is not defined by reference to the type of content (format, etc.) of the referent, but by reference to the functionalities it provides and the context of use. The DOI system provides, within networks of DOI applications, for unique identification, persistence, resolution, metadata and semantic interoperability.", "id": "1332", "name": "Digital Object Identifier", "prefix": "FAIRsharing.hFLKCn", @@ -15677,7 +15677,7 @@ "name": "Charles Tapley Hoyt", "orcid": "0000-0003-4423-4370" }, - "description": "The ECMDB is an expertly curated database containing extensive metabolomic data and metabolic pathway diagrams about Escherichia coli (strain K12, MG1655). This database includes significant quantities of “original” data compiled by members of the Wishart laboratory as well as additional material derived from hundreds of textbooks, scientific journals, metabolic reconstructions and other electronic databases. Each metabolite is linked to more than 100 data fields describing the compound, its ontology, physical properties, reactions, pathways, references, external links and associated proteins or enzymes.", + "description": "The ECMDB is an expertly curated database containing extensive metabolomic data and metabolic pathway diagrams about Escherichia coli (strain K12, MG1655). This database includes significant quantities of \u201coriginal\u201d data compiled by members of the Wishart laboratory as well as additional material derived from hundreds of textbooks, scientific journals, metabolic reconstructions and other electronic databases. Each metabolite is linked to more than 100 data fields describing the compound, its ontology, physical properties, reactions, pathways, references, external links and associated proteins or enzymes.", "example": "ECMDB00005", "homepage": "https://ecmdb.ca", "name": "E. coli Metabolite Database", @@ -16125,7 +16125,7 @@ }, "miriam": { "deprecated": false, - "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction — as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references entities.", + "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction \u2014 as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references entities.", "homepage": "http://www.e-cyanobacterium.org/bcs/entity/", "id": "00000585", "name": "E-cyanobacterium entity", @@ -16180,7 +16180,7 @@ }, "miriam": { "deprecated": false, - "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction — as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references models.", + "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction \u2014 as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references models.", "homepage": "http://e-cyanobacterium.org/models/", "id": "00000586", "name": "E-cyanobacterium model", @@ -16216,7 +16216,7 @@ }, "miriam": { "deprecated": false, - "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction — as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references rules.", + "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction \u2014 as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references rules.", "homepage": "http://www.e-cyanobacterium.org/bcs/rule/", "id": "00000587", "name": "E-cyanobacterium rule", @@ -16252,7 +16252,7 @@ }, "fairsharing": { "abbreviation": "EDAM", - "description": "EDAM (originally from “EMBRACE Data and Methods”) is an ontology of well established, familiar concepts that are prevalent within bioinformatics, including types of data and data identifiers, data formats, operations and topics.", + "description": "EDAM (originally from \u201cEMBRACE Data and Methods\u201d) is an ontology of well established, familiar concepts that are prevalent within bioinformatics, including types of data and data identifiers, data formats, operations and topics.", "id": "1205", "name": "EMBRACE Data and Methods Ontology", "prefix": "FAIRsharing.a6r7zs", @@ -16720,7 +16720,7 @@ "example": "0000000", "fairsharing": { "abbreviation": "EHDAA2", - "description": "The EHDAA2 ontology is a human developmental anatomy covering the first 49 days [Carnegie stages (CS)1–20], primarily structured around the parts of organ systems and their development. The ontology includes more than 2000 anatomical entities (AEs) that range from the whole embryo, through organ systems and organ parts down to simple or leaf tissues (groups of cells with the same morphological phenotype), as well as features such as cavities. It represents a complete rebuilding of the EHDA intended to meet current standards. The intention has been to include as much information about human developmental anatomy as is practical and as is available in the literature.", + "description": "The EHDAA2 ontology is a human developmental anatomy covering the first 49 days [Carnegie stages (CS)1\u201320], primarily structured around the parts of organ systems and their development. The ontology includes more than 2000 anatomical entities (AEs) that range from the whole embryo, through organ systems and organ parts down to simple or leaf tissues (groups of cells with the same morphological phenotype), as well as features such as cavities. It represents a complete rebuilding of the EHDA intended to meet current standards. The intention has been to include as much information about human developmental anatomy as is practical and as is available in the literature.", "id": "199", "name": "Edinburgh human developmental anatomy abstract version 2", "prefix": "FAIRsharing.7zxrs6", @@ -17972,7 +17972,7 @@ }, "ols": { "contact": "pylebail@rennes.inra.fr", - "description": "L'ontologie EOL décrit les conditions d'environnement des élevages d'animaux domestiques. Elle décrit plus particulièrement les modalités de l'alimentation, de l'environnement, de la structure des élevages et des systèmes d'élevage", + "description": "L'ontologie EOL d\u00e9crit les conditions d'environnement des \u00e9levages d'animaux domestiques. Elle d\u00e9crit plus particuli\u00e8rement les modalit\u00e9s de l'alimentation, de l'environnement, de la structure des \u00e9levages et des syst\u00e8mes d'\u00e9levage", "download": "http://www.atol-ontology.com/public/telechargement/eol.owl", "homepage": "http://www.atol-ontology.com", "name": "Environment Ontology for Livestock", @@ -18241,7 +18241,7 @@ "example": "0001655", "fairsharing": { "abbreviation": "ERO", - "description": "A unique feature of the eagle-i software is that the data collection and search tools are completely driven by ontologies. These ontologies are a set of modules that are written in the OWL language and edited and managed using Protégé. Beginning in 2009, the eagle-i Research Resource Ontology (ERO) was developed alongside the eagle-i applications to model various biomedical research resources such as instruments, Core Facilities, protocols, reagents, animal models and biospecimens. It has now been integrated into the VIVO-ISF Ontology, which leverages and expands upon both the eagle-i and VIVO ontologies to create a semantic framework that describes not only scientific resources but research activities and clinical activities.", + "description": "A unique feature of the eagle-i software is that the data collection and search tools are completely driven by ontologies. These ontologies are a set of modules that are written in the OWL language and edited and managed using Prot\u00e9g\u00e9. Beginning in 2009, the eagle-i Research Resource Ontology (ERO) was developed alongside the eagle-i applications to model various biomedical research resources such as instruments, Core Facilities, protocols, reagents, animal models and biospecimens. It has now been integrated into the VIVO-ISF Ontology, which leverages and expands upon both the eagle-i and VIVO ontologies to create a semantic framework that describes not only scientific resources but research activities and clinical activities.", "id": "1166", "name": "eagle-i Research Resource Ontology", "prefix": "FAIRsharing.nwgynk", @@ -18861,7 +18861,7 @@ "example": "ForwardStrandPosition", "fairsharing": { "abbreviation": "FALDO", - "description": "The Feature Annotation Location Description Ontology (FALDO), to describe the positions of annotated features on linear and circular sequences for data resources represented in RDF and/or OWL. FALDO can be used to describe nucleotide features in sequence records, protein annotations, and glycan binding sites, among other features in coordinate systems of the aforementioned “omics” areas. Using the same data format to represent sequence positions that are independent of file formats allows us to integrate sequence data from multiple sources and data types.", + "description": "The Feature Annotation Location Description Ontology (FALDO), to describe the positions of annotated features on linear and circular sequences for data resources represented in RDF and/or OWL. FALDO can be used to describe nucleotide features in sequence records, protein annotations, and glycan binding sites, among other features in coordinate systems of the aforementioned \u201comics\u201d areas. Using the same data format to represent sequence positions that are independent of file formats allows us to integrate sequence data from multiple sources and data types.", "id": "478", "name": "Feature Annotation Location Description Ontology", "prefix": "FAIRsharing.haxp7g", @@ -19507,7 +19507,7 @@ "repository": "https://github.com/getbordea/fideo" }, "ols": { - "description": "The Food Interactions with Drugs Evidence Ontology (FIDEO) represents Food-Drug Interactions and underlying interaction mechanisms described in scientific publications, drug and adverse effects databases, and drug interactions compendia. The ontology builds on previous efforts from the FoodOn, DRON, ChEBI, and DIDEO ontologies as well as the Thériaque database. This ontology is maintained at https://gitub.u-bordeaux.fr/erias/fideo, and requests for changes or additions should be filed at the issue tracker there.", + "description": "The Food Interactions with Drugs Evidence Ontology (FIDEO) represents Food-Drug Interactions and underlying interaction mechanisms described in scientific publications, drug and adverse effects databases, and drug interactions compendia. The ontology builds on previous efforts from the FoodOn, DRON, ChEBI, and DIDEO ontologies as well as the Th\u00e9riaque database. This ontology is maintained at https://gitub.u-bordeaux.fr/erias/fideo, and requests for changes or additions should be filed at the issue tracker there.", "download": "http://purl.obolibrary.org/obo/fideo.owl", "homepage": "https://gitub.u-bordeaux.fr/erias/fideo", "name": "Food Interactions with Drugs Evidence Ontology", @@ -20136,7 +20136,7 @@ }, "miriam": { "deprecated": false, - "description": "FooDB is resource on food and its constituent compounds. It includes data on the compound’s nomenclature, its description, information on its structure, chemical class, its physico-chemical data, its food source(s), its color, its aroma, its taste, its physiological effect, presumptive health effects (from published studies), and concentrations in various foods. This collection references compounds.", + "description": "FooDB is resource on food and its constituent compounds. It includes data on the compound\u2019s nomenclature, its description, information on its structure, chemical class, its physico-chemical data, its food source(s), its color, its aroma, its taste, its physiological effect, presumptive health effects (from published studies), and concentrations in various foods. This collection references compounds.", "homepage": "http://foodb.ca/foods", "id": "00000530", "name": "FooDB Compound", @@ -20241,7 +20241,7 @@ "uberon" ], "deprecated": false, - "description": "A broadly scoped ontology representing entities which bear a “food role”. It encompasses materials in natural ecosystems and agriculture that are consumed by humans and domesticated animals. This includes any generic (unbranded) raw or processed food material found in processing plants, markets, stores or food distribution points. FoodOn also imports nutritional component and dietary pattern terms from other OBO Foundry ontologies to support interoperability in diet and nutrition research", + "description": "A broadly scoped ontology representing entities which bear a \u201cfood role\u201d. It encompasses materials in natural ecosystems and agriculture that are consumed by humans and domesticated animals. This includes any generic (unbranded) raw or processed food material found in processing plants, markets, stores or food distribution points. FoodOn also imports nutritional component and dietary pattern terms from other OBO Foundry ontologies to support interoperability in diet and nutrition research", "download.owl": "http://purl.obolibrary.org/obo/foodon.owl", "homepage": "https://foodon.org/", "license": "CC BY 3.0", @@ -20994,11 +20994,11 @@ } }, "gbif": { - "description": "Database of living organisms, taxonomic. \n The GBIF—the Global Biodiversity Information Facility—is international network and data infrastructure funded by the world's governments and aimed at providing anyone, anywhere, open access to data about all types of life on Earth.", + "description": "Database of living organisms, taxonomic. \n The GBIF\u2014the Global Biodiversity Information Facility\u2014is international network and data infrastructure funded by the world's governments and aimed at providing anyone, anywhere, open access to data about all types of life on Earth.", "example": "4238", "fairsharing": { "abbreviation": "GBIF.org", - "description": "GBIF—the Global Biodiversity Information Facility—is an international network and data infrastructure funded by the world's governments and aimed at providing anyone, anywhere, open access to data about all types of life on Earth.\n\nStrictly speaking, GBIF is not a data repository. Rather, GBIF indexes thousands of datasets through a distributed infrastructure involving more than 100 formal participants that supports hundreds of data-publishing institutions worldwide. GBIF.org makes the FAIR and open data discoverable and citable, assigning each download a DOI and storing it for an extended period of time. More than three peer-reviewed research articles make use of data from the GBIF network every day, in studies spanning the impacts of climate change, the spread of pests and diseases, priority areas for conservation and food security. \n\nTo share data with GBIF, follow this quick guide: http://www.gbif.org/publishing-data/quick-guide. To deposit or host data, we suggest using one of the trusted data hosting centres (DHC) listed in FAIRsharing.org that uses GBIF's IPT (Integrated Publishing Toolkit) software. The DHC provides data publishers with a hosted IPT account enabling them to manage and publish datasets through GBIF.org.", + "description": "GBIF\u2014the Global Biodiversity Information Facility\u2014is an international network and data infrastructure funded by the world's governments and aimed at providing anyone, anywhere, open access to data about all types of life on Earth.\n\nStrictly speaking, GBIF is not a data repository. Rather, GBIF indexes thousands of datasets through a distributed infrastructure involving more than 100 formal participants that supports hundreds of data-publishing institutions worldwide. GBIF.org makes the FAIR and open data discoverable and citable, assigning each download a DOI and storing it for an extended period of time. More than three peer-reviewed research articles make use of data from the GBIF network every day, in studies spanning the impacts of climate change, the spread of pests and diseases, priority areas for conservation and food security. \n\nTo share data with GBIF, follow this quick guide: http://www.gbif.org/publishing-data/quick-guide. To deposit or host data, we suggest using one of the trusted data hosting centres (DHC) listed in FAIRsharing.org that uses GBIF's IPT (Integrated Publishing Toolkit) software. The DHC provides data publishers with a hosted IPT account enabling them to manage and publish datasets through GBIF.org.", "id": "2163", "name": "GBIF.org", "prefix": "FAIRsharing.zv11j3", @@ -21299,7 +21299,7 @@ "obsolete": false, "prefix": "000304" }, - "description": "GenBank ® is the NIH genetic sequence database, an annotated collection of all publicly available DNA sequences (Nucleic Acids Research, 2013 Jan;41(D1):D36-42).", + "description": "GenBank \u00ae is the NIH genetic sequence database, an annotated collection of all publicly available DNA sequences (Nucleic Acids Research, 2013 Jan;41(D1):D36-42).", "example": "U49845", "fairsharing": { "abbreviation": "GenBank", @@ -23057,7 +23057,7 @@ } }, "go.model": { - "description": "GO-Causal Activity Models (GO-CAMs) use a defined “grammar” for linking multiple GO annotations into larger models of biological function (such as “pathways”) in a semantically structured manner. GO-CAMs are created by expert biocurators from the GO Consortium, using the Noctua Curation Platform.", + "description": "GO-Causal Activity Models (GO-CAMs) use a defined \u201cgrammar\u201d for linking multiple GO annotations into larger models of biological function (such as \u201cpathways\u201d) in a semantically structured manner. GO-CAMs are created by expert biocurators from the GO Consortium, using the Noctua Curation Platform.", "example": "5fce9b7300001250", "go": { "homepage": "http://www.geneontology.org/gocam", @@ -23297,7 +23297,7 @@ }, "miriam": { "deprecated": false, - "description": "- DEPRECATION NOTE -\nPlease, keep in mind that this namespace has been superseeded by ‘gold’ prefix at https://registry.identifiers.org/registry/gold, and this namespace is kept here for support to already existing citations, new ones would need to use the pointed ‘gold’ namespace.\n\nThe GOLD (Genomes OnLine Database)is a resource for centralised monitoring of genome and metagenome projects worldwide. It stores information on complete and ongoing projects, along with their associated metadata. This collection references the sequencing status of individual genomes.", + "description": "- DEPRECATION NOTE -\nPlease, keep in mind that this namespace has been superseeded by \u2018gold\u2019 prefix at https://registry.identifiers.org/registry/gold, and this namespace is kept here for support to already existing citations, new ones would need to use the pointed \u2018gold\u2019 namespace.\n\nThe GOLD (Genomes OnLine Database)is a resource for centralised monitoring of genome and metagenome projects worldwide. It stores information on complete and ongoing projects, along with their associated metadata. This collection references the sequencing status of individual genomes.", "homepage": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", "id": "00000401", "name": "GOLD genome", @@ -23332,7 +23332,7 @@ }, "miriam": { "deprecated": false, - "description": "- DEPRECATION NOTE -\nPlease, keep in mind that this namespace has been superseeded by ‘gold’ prefix at https://registry.identifiers.org/registry/gold, and this namespace is kept here for support to already existing citations, new ones would need to use the pointed ‘gold’ namespace. \n\nThe GOLD (Genomes OnLine Database)is a resource for centralized monitoring of genome and metagenome projects worldwide. It stores information on complete and ongoing projects, along with their associated metadata. This collection references metadata associated with samples.", + "description": "- DEPRECATION NOTE -\nPlease, keep in mind that this namespace has been superseeded by \u2018gold\u2019 prefix at https://registry.identifiers.org/registry/gold, and this namespace is kept here for support to already existing citations, new ones would need to use the pointed \u2018gold\u2019 namespace. \n\nThe GOLD (Genomes OnLine Database)is a resource for centralized monitoring of genome and metagenome projects worldwide. It stores information on complete and ongoing projects, along with their associated metadata. This collection references metadata associated with samples.", "homepage": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", "id": "00000402", "name": "GOLD metadata", @@ -24206,7 +24206,7 @@ "name": "Charles Tapley Hoyt", "orcid": "0000-0003-4423-4370" }, - "description": "The Genetic Testing Registry (GTR®) provides a central location for voluntary submission of genetic test information by providers. The scope includes the test's purpose, methodology, validity, evidence of the test's usefulness, and laboratory contacts and credentials. The overarching goal of the GTR is to advance the public health and research into the genetic basis of health and disease", + "description": "The Genetic Testing Registry (GTR\u00ae) provides a central location for voluntary submission of genetic test information by providers. The scope includes the test's purpose, methodology, validity, evidence of the test's usefulness, and laboratory contacts and credentials. The overarching goal of the GTR is to advance the public health and research into the genetic basis of health and disease", "example": "AN0097748", "homepage": "https://www.ncbi.nlm.nih.gov/gtr/", "name": "Genetic Testing Registry", @@ -24976,7 +24976,7 @@ }, { "code": "gencc", - "description": "The GenCC DB provides information pertaining to the validity of gene-disease relationships, with a current focus on Mendelian diseases. Curated gene-disease relationships are submitted by GenCC member organizations. The GenCC comprises organizations that currently provide online resources (e.g. ClinGen, DECIPHER, Genomics England PanelApp, OMIM, Orphanet, PanelApp Australia, TGMI’s G2P), as well as diagnostic laboratories that have committed to sharing their internal curated gene-level knowledge (e.g. Ambry, Illumina, Invitae, Myriad Women’s Health, Mass General Brigham Laboratory for Molecular Medicine).", + "description": "The GenCC DB provides information pertaining to the validity of gene-disease relationships, with a current focus on Mendelian diseases. Curated gene-disease relationships are submitted by GenCC member organizations. The GenCC comprises organizations that currently provide online resources (e.g. ClinGen, DECIPHER, Genomics England PanelApp, OMIM, Orphanet, PanelApp Australia, TGMI\u2019s G2P), as well as diagnostic laboratories that have committed to sharing their internal curated gene-level knowledge (e.g. Ambry, Illumina, Invitae, Myriad Women\u2019s Health, Mass General Brigham Laboratory for Molecular Medicine).", "homepage": "https://thegencc.org", "name": "The Gene Curation Coalition", "uri_format": "https://search.thegencc.org/genes/HGNC:$1" @@ -26214,7 +26214,7 @@ ], "contact": "frederic.bastian@unil.ch", "contact.github": "fbastian", - "contact.label": "Frédéric Bastian", + "contact.label": "Fr\u00e9d\u00e9ric Bastian", "contact.orcid": "0000-0002-9415-5104", "deprecated": false, "description": "Life cycle stages for Human", @@ -27475,7 +27475,7 @@ "idr": { "fairsharing": { "abbreviation": "IDR", - "description": "IDR is a prototype platform for publishing, mining and integrating bioimaging data at scale, following the Euro-BioImaging/ELIXIR imaging strategy using the OMERO and Bio-Formats open source software built by the Open Microscopy Environment. Deployed on an OpenStack cloud running on the EMBL-EBI’s Embassy resource, it includes image data linked to independent studies from genetic, RNAi, chemical, localisation and geographic high content screens, super-resolution microscopy, and digital pathology.", + "description": "IDR is a prototype platform for publishing, mining and integrating bioimaging data at scale, following the Euro-BioImaging/ELIXIR imaging strategy using the OMERO and Bio-Formats open source software built by the Open Microscopy Environment. Deployed on an OpenStack cloud running on the EMBL-EBI\u2019s Embassy resource, it includes image data linked to independent studies from genetic, RNAi, chemical, localisation and geographic high content screens, super-resolution microscopy, and digital pathology.", "id": "2303", "name": "Image Data Resource", "prefix": "FAIRsharing.6wf1zw", @@ -27491,7 +27491,7 @@ }, "miriam": { "deprecated": false, - "description": "Image Data Resource (IDR) is an online, public data repository that seeks to store, integrate and serve image datasets from published scientific studies. We have collected and are continuing to receive existing and newly created “reference image\" datasets that are valuable resources for a broad community of users, either because they will be frequently accessed and cited or because they can serve as a basis for re-analysis and the development of new computational tools.", + "description": "Image Data Resource (IDR) is an online, public data repository that seeks to store, integrate and serve image datasets from published scientific studies. We have collected and are continuing to receive existing and newly created \u201creference image\" datasets that are valuable resources for a broad community of users, either because they will be frequently accessed and cited or because they can serve as a basis for re-analysis and the development of new computational tools.", "homepage": "https://idr.openmicroscopy.org", "id": "00000743", "name": "Image Data Resource", @@ -29420,7 +29420,7 @@ "example": "004435", "fairsharing": { "abbreviation": "JAX", - "description": "JAX® Mice are the industry standard for animal model research, using precise genome solutions to better understand human disease. Our rigorous Animal Health Programs and stringent genetic quality standards ensure the reproducibility and validity of your experimental data.", + "description": "JAX\u00ae Mice are the industry standard for animal model research, using precise genome solutions to better understand human disease. Our rigorous Animal Health Programs and stringent genetic quality standards ensure the reproducibility and validity of your experimental data.", "id": "2067", "name": "JAX Mice Database", "prefix": "FAIRsharing.5701h1", @@ -31627,7 +31627,7 @@ "name": "Adriano Rutz", "orcid": "0000-0003-0443-9902" }, - "description": "LOTUS, actually, represents the most exhaustive resource of documented structure-organism pairs. Within the frame of current computational approaches in Natural Produts’s research and related fields, these documented structure-organism pairs should allow a more complete understanding of organisms and their chemistry.", + "description": "LOTUS, actually, represents the most exhaustive resource of documented structure-organism pairs. Within the frame of current computational approaches in Natural Produts\u2019s research and related fields, these documented structure-organism pairs should allow a more complete understanding of organisms and their chemistry.", "example": "LTS0004651", "homepage": "https://lotus.naturalproducts.net", "name": "LOTUS Initiative for Open Natural Products Research", @@ -32512,7 +32512,7 @@ "obofoundry": { "contact": "citlalli.mejiaalmonte@gmail.com", "contact.github": "citmejia", - "contact.label": "Citlalli Mejía-Almonte", + "contact.label": "Citlalli Mej\u00eda-Almonte", "contact.orcid": "0000-0002-0142-5591", "depends_on": [ "bfo", @@ -32625,7 +32625,7 @@ }, "fairsharing": { "abbreviation": "MedDRA", - "description": "MedDRA is a multilingual terminology allowing most users to operate in their native languages. MedDRA can be used to analyse individual medical events (e.g., “Influenza”) or issues involving a system, organ or etiology (e.g., infections) using its hierarchical structure. MedDRA can be used for signal detection and monitoring of clinical syndromes whose symptoms encompass numerous systems or organs using its multi-axial hierarchy or through the special feature of Standardised MedDRA Queries. The ability to communicate adverse event data is another strength of MedDRA and has lead to MedDRA being an integral part of the ICH e-submission standards: eCTD (ICH M8) and ICSRs (ICH E2B).", + "description": "MedDRA is a multilingual terminology allowing most users to operate in their native languages. MedDRA can be used to analyse individual medical events (e.g., \u201cInfluenza\u201d) or issues involving a system, organ or etiology (e.g., infections) using its hierarchical structure. MedDRA can be used for signal detection and monitoring of clinical syndromes whose symptoms encompass numerous systems or organs using its multi-axial hierarchy or through the special feature of Standardised MedDRA Queries. The ability to communicate adverse event data is another strength of MedDRA and has lead to MedDRA being an integral part of the ICH e-submission standards: eCTD (ICH M8) and ICSRs (ICH E2B).", "id": "1022", "name": "Medical Dictionary for Regulatory Activities Terminology", "prefix": "FAIRsharing.ad3137", @@ -34063,7 +34063,7 @@ "obofoundry": { "contact": "pporras@ebi.ac.uk", "contact.github": "pporrasebi", - "contact.label": "Pablo Porras Millán", + "contact.label": "Pablo Porras Mill\u00e1n", "contact.orcid": "0000-0002-8429-8793", "deprecated": false, "description": "A structured controlled vocabulary for the annotation of experiments concerned with protein-protein interactions.", @@ -34626,7 +34626,7 @@ }, "miriam": { "deprecated": false, - "description": "The Identifiers.org registry contains registered namespace and provider prefixes with associated access URIs for a large number of high quality data collections. These prefixes are used in web resolution of compact identifiers of the form “PREFIX:ACCESSION” or \"PROVIDER/PREFIX:ACCESSION” commonly used to specify bioinformatics and other data resources.", + "description": "The Identifiers.org registry contains registered namespace and provider prefixes with associated access URIs for a large number of high quality data collections. These prefixes are used in web resolution of compact identifiers of the form \u201cPREFIX:ACCESSION\u201d or \"PROVIDER/PREFIX:ACCESSION\u201d commonly used to specify bioinformatics and other data resources.", "homepage": "https://registry.identifiers.org/registry", "id": "00000599", "name": "Identifiers.org Registry", @@ -34834,7 +34834,7 @@ }, "fairsharing": { "abbreviation": "mirEX", - "description": "mirEX2 is a comprehensive platform for comparative analysis of primary microRNA expression data. RT–qPCR-based gene expression profiles are stored in a universal and expandable database scheme and wrapped by an intuitive user-friendly interface.", + "description": "mirEX2 is a comprehensive platform for comparative analysis of primary microRNA expression data. RT\u2013qPCR-based gene expression profiles are stored in a universal and expandable database scheme and wrapped by an intuitive user-friendly interface.", "id": "1611", "name": "mirEX", "prefix": "FAIRsharing.q3b39v", @@ -34850,7 +34850,7 @@ }, "miriam": { "deprecated": false, - "description": "mirEX is a comprehensive platform for comparative analysis of primary microRNA expression data, storing RT–qPCR-based gene expression profile over seven development stages of Arabidopsis. It also provides RNA structural models, publicly available deep sequencing results and experimental procedure details. This collection provides profile information for a single microRNA over all development stages.", + "description": "mirEX is a comprehensive platform for comparative analysis of primary microRNA expression data, storing RT\u2013qPCR-based gene expression profile over seven development stages of Arabidopsis. It also provides RNA structural models, publicly available deep sequencing results and experimental procedure details. This collection provides profile information for a single microRNA over all development stages.", "homepage": "http://comgen.pl/mirex/?page=home", "id": "00000329", "name": "mirEX", @@ -35628,7 +35628,7 @@ "obofoundry": { "contact": "frederic.bastian@unil.ch", "contact.github": "fbastian", - "contact.label": "Frédéric Bastian", + "contact.label": "Fr\u00e9d\u00e9ric Bastian", "contact.orcid": "0000-0002-9415-5104", "deprecated": false, "description": "Life cycle stages for Mus Musculus", @@ -37529,7 +37529,7 @@ "example": "0000564", "fairsharing": { "abbreviation": "NBO", - "description": "The Neurobehavior Ontology (NBO) consists of two main components, an ontology of behavioral processes and an ontology of behavioral phenotypes. The behavioral process branch of NBO contains a classification of behavior processes complementing and extending GO’s process ontology. The behavior phenotype branch of NBO consists of a classification of both normal and abnormal behavioral characteristics of organisms .", + "description": "The Neurobehavior Ontology (NBO) consists of two main components, an ontology of behavioral processes and an ontology of behavioral phenotypes. The behavioral process branch of NBO contains a classification of behavior processes complementing and extending GO\u2019s process ontology. The behavior phenotype branch of NBO consists of a classification of both normal and abnormal behavioral characteristics of organisms .", "id": "1470", "name": "Neuro Behavior Ontology", "prefix": "FAIRsharing.pktgc6", @@ -38923,7 +38923,7 @@ }, "miriam": { "deprecated": false, - "description": "neXtProt is a resource on human proteins, and includes information such as proteins’ function, subcellular location, expression, interactions and role in diseases.", + "description": "neXtProt is a resource on human proteins, and includes information such as proteins\u2019 function, subcellular location, expression, interactions and role in diseases.", "homepage": "https://www.nextprot.org/", "id": "00000236", "name": "nextProt", @@ -40301,7 +40301,7 @@ }, "miriam": { "deprecated": false, - "description": "Each OCI (Open Citation Identifier) has a simple structure: oci:number-number, where “oci:” is the identifier prefix, and is used to identify a citation as a first-class data entitiy - see https://opencitations.wordpress.com/2018/02/19/citations-as-first-class-data-entities-introduction/ for additional information.\r\n\r\nOCIs for citations stored within the OpenCitations Corpus are constructed by combining the OpenCitations Corpus local identifiers for the citing and cited bibliographic resources, separating them with a dash. For example, oci:2544384-7295288 is a valid OCI for the citation between two papers stored within the OpenCitations Corpus.\r\n\r\nOCIs can also be created for bibliographic resources described in an external bibliographic database, if they are similarly identified there by identifiers having a unique numerical part. For example, the OCI for the citation that exists between Wikidata resources Q27931310 and Q22252312 is oci:01027931310–01022252312.\r\n\r\nOCIs can also be created for bibliographic resources described in external bibliographic database such as Crossref or DataCite where they are identified by alphanumeric Digital Object Identifiers (DOIs), rather than purely numerical strings.", + "description": "Each OCI (Open Citation Identifier) has a simple structure: oci:number-number, where \u201coci:\u201d is the identifier prefix, and is used to identify a citation as a first-class data entitiy - see https://opencitations.wordpress.com/2018/02/19/citations-as-first-class-data-entities-introduction/ for additional information.\r\n\r\nOCIs for citations stored within the OpenCitations Corpus are constructed by combining the OpenCitations Corpus local identifiers for the citing and cited bibliographic resources, separating them with a dash. For example, oci:2544384-7295288 is a valid OCI for the citation between two papers stored within the OpenCitations Corpus.\r\n\r\nOCIs can also be created for bibliographic resources described in an external bibliographic database, if they are similarly identified there by identifiers having a unique numerical part. For example, the OCI for the citation that exists between Wikidata resources Q27931310 and Q22252312 is oci:01027931310\u201301022252312.\r\n\r\nOCIs can also be created for bibliographic resources described in external bibliographic database such as Crossref or DataCite where they are identified by alphanumeric Digital Object Identifiers (DOIs), rather than purely numerical strings.", "homepage": "http://opencitations.net", "id": "00000660", "name": "OCI", @@ -40398,7 +40398,7 @@ "odc.sci": { "fairsharing": { "abbreviation": "ODC-SCI", - "description": "The Open Data Commons for Spinal Cord Injury is a cloud-based community-driven repository to store, share, and publish spinal cord injury research data. There are several challenges for scientific reproducibility and bench-to-bedside translation. For example, only research and data that are published actually get disseminated, a phenomenon known as publication bias. Published research reflects to only a small fraction of all data collected, and data that do not lead to publication are largely ignored, hidden away in filing cabinets and hard drives. This results in an abundance of inaccessible scientific data known as “dark data”. Even when research is disseminated, it is usually in the form of summary reports of aggregated data (e.g. averages across individual subjects) such as scientific articles. The fact that the individual subject-level data are inaccessible further contributes to dark data. The spinal cord injury (SCI) community created the ODC-SCI to mitigate dark data in SCI research. The ODC-SCI also aims to increase transparency with individual-level data, enhance collaboration, facilitate advanced analytics, and conform to increasing mandates by funders and publishers to make data accessible. Members of the ODC-SCI have access to a private digital lab space managed by the PI or multi-PIs for dataset storage and sharing. The PIs can share their labs’ datasets with the registered members of the ODC-SCI community and make their datasets public and citable. The ODC-SCI implements stewardship principles that scientific data be made FAIR (Findable, Accessible, Interoperable and Reusable) and has been widely adopted by the international SCI research community.", + "description": "The Open Data Commons for Spinal Cord Injury is a cloud-based community-driven repository to store, share, and publish spinal cord injury research data. There are several challenges for scientific reproducibility and bench-to-bedside translation. For example, only research and data that are published actually get disseminated, a phenomenon known as publication bias. Published research reflects to only a small fraction of all data collected, and data that do not lead to publication are largely ignored, hidden away in filing cabinets and hard drives. This results in an abundance of inaccessible scientific data known as \u201cdark data\u201d. Even when research is disseminated, it is usually in the form of summary reports of aggregated data (e.g. averages across individual subjects) such as scientific articles. The fact that the individual subject-level data are inaccessible further contributes to dark data. The spinal cord injury (SCI) community created the ODC-SCI to mitigate dark data in SCI research. The ODC-SCI also aims to increase transparency with individual-level data, enhance collaboration, facilitate advanced analytics, and conform to increasing mandates by funders and publishers to make data accessible. Members of the ODC-SCI have access to a private digital lab space managed by the PI or multi-PIs for dataset storage and sharing. The PIs can share their labs\u2019 datasets with the registered members of the ODC-SCI community and make their datasets public and citable. The ODC-SCI implements stewardship principles that scientific data be made FAIR (Findable, Accessible, Interoperable and Reusable) and has been widely adopted by the international SCI research community.", "id": "3307", "name": "Open Data Commons for Spinal Cord Injury", "prefix": "FAIRsharing.M6Ruz3", @@ -40570,7 +40570,7 @@ "prefix": "ogi" }, "ols": { - "description": "OGI formalized the genomic element by defining an upper class 'genetic interval'.\n\nThe definition of 'genetic interval' is \"the spatial continuous physical entity which contains ordered genomic sets(DNA, RNA, Allele, Marker,etc.) between and including two points (Nucleic Acid Base Residue) on a chromosome or RNA molecule which must have a liner primary sequence sturcture.\" \n\nRelated paper:\n\n1. Yu Lin, Norihiro Sakamoto (2009) “Genome, Gene, Interval and Ontology” Interdisciplinary Ontology Vol.2 - Proceedings of the Second Interdisciplinary Meeting, Tokyo, Feb. 28th- Mar. 1st, 2009. Page(s):25-34 (http://cdb-riken.academia.edu/LinYu/Papers/142399/Genome_Gene_Interval_and_Ontology)\nYu Lin, Hiroshi Tarui, Peter Simons (2009) “From Ontology for Genetic Interval(OGI) to Sequence Assembly – Ontology apply to next generation sequencing” Proceeding of the Semantic Web Applications and Tools for Life Science Workshop, Amsterdam, Nov.20th, 2009. (http://ceur-ws.org/Vol-559/Poster2.pdf)\nYu Lin, Peter Simons (2010) “DNA sequence from below: A Nominalist Approach” Interdisciplinary Ontology Vol.3 - Proceedings of the Second Interdisciplinary Meeting, Tokyo, Feb. 28th- Mar. 1st, 2010. (http://philpapers.org/rec/LINDSF)\n\n\n", + "description": "OGI formalized the genomic element by defining an upper class 'genetic interval'.\n\nThe definition of 'genetic interval' is \"the spatial continuous physical entity which contains ordered genomic sets(DNA, RNA, Allele, Marker,etc.) between and including two points (Nucleic Acid Base Residue) on a chromosome or RNA molecule which must have a liner primary sequence sturcture.\" \n\nRelated paper:\n\n1. Yu Lin, Norihiro Sakamoto (2009) \u201cGenome, Gene, Interval and Ontology\u201d Interdisciplinary Ontology Vol.2 - Proceedings of the Second Interdisciplinary Meeting, Tokyo, Feb. 28th- Mar. 1st, 2009. Page(s):25-34 (http://cdb-riken.academia.edu/LinYu/Papers/142399/Genome_Gene_Interval_and_Ontology)\nYu Lin, Hiroshi Tarui, Peter Simons (2009) \u201cFrom Ontology for Genetic Interval(OGI) to Sequence Assembly \u2013 Ontology apply to next generation sequencing\u201d Proceeding of the Semantic Web Applications and Tools for Life Science Workshop, Amsterdam, Nov.20th, 2009. (http://ceur-ws.org/Vol-559/Poster2.pdf)\nYu Lin, Peter Simons (2010) \u201cDNA sequence from below: A Nominalist Approach\u201d Interdisciplinary Ontology Vol.3 - Proceedings of the Second Interdisciplinary Meeting, Tokyo, Feb. 28th- Mar. 1st, 2010. (http://philpapers.org/rec/LINDSF)\n\n\n", "download": "http://purl.obolibrary.org/obo/ogi.owl", "homepage": "https://code.google.com/p/ontology-for-genetic-interval/", "name": "Ontology for genetic interval", @@ -40964,7 +40964,7 @@ "obofoundry": { "contact": "frederic.bastian@unil.ch", "contact.github": "fbastian", - "contact.label": "Frédéric Bastian", + "contact.label": "Fr\u00e9d\u00e9ric Bastian", "contact.orcid": "0000-0002-9415-5104", "deprecated": false, "description": "Life cycle stages for Medaka", @@ -41869,7 +41869,7 @@ "repository": "https://gitlab.com/fortunalab/ontoavida" }, "ols": { - "description": "The Ontology for Avida (OntoAvida) project aims to develop an integrated vocabulary for the description of the most widely used computational approach for performing experimental evolution using digital organisms (i.e., self-replicating computer programs that evolve within a user-defined computational environment).\n\nThe lack of a clearly defined vocabulary makes biologists feel reluctant to embrace the field of digital evolution. This unique ontology has the potential to change this picture overnight.\n\nOntoAvida was initially developed by https://fortunalab.org, the computational biology lab at the Doñana Biological Station (a research institute of the Spanish National Research Council based at Seville, Spain). Contributors to OntoAvida are expected to include members of the Digital Evolution Laboratory (https://devolab.org/) at Michigan State University (USA).\n\nMore information can be found at https://obofoundry.org/ontology/ontoavida.html", + "description": "The Ontology for Avida (OntoAvida) project aims to develop an integrated vocabulary for the description of the most widely used computational approach for performing experimental evolution using digital organisms (i.e., self-replicating computer programs that evolve within a user-defined computational environment).\n\nThe lack of a clearly defined vocabulary makes biologists feel reluctant to embrace the field of digital evolution. This unique ontology has the potential to change this picture overnight.\n\nOntoAvida was initially developed by https://fortunalab.org, the computational biology lab at the Do\u00f1ana Biological Station (a research institute of the Spanish National Research Council based at Seville, Spain). Contributors to OntoAvida are expected to include members of the Digital Evolution Laboratory (https://devolab.org/) at Michigan State University (USA).\n\nMore information can be found at https://obofoundry.org/ontology/ontoavida.html", "download": "http://purl.obolibrary.org/obo/ontoavida.owl", "homepage": "https://gitlab.com/fortunalab/ontoavida", "name": "OntoAvida: ontology for Avida digital evolution platform.", @@ -42021,7 +42021,7 @@ "example": "00573", "fairsharing": { "abbreviation": "OPB", - "description": "The Ontology of Physics for Biology is a reference of classical physics as applied to the dynamics of biological systems. This resource provides a reference ontology of physical properties (e.g., pressure, chemical concentration) and principles (e.g., Ohm’s law, Ficke’s law) by which the physical meaning of biosimulation models may be annotated.", + "description": "The Ontology of Physics for Biology is a reference of classical physics as applied to the dynamics of biological systems. This resource provides a reference ontology of physical properties (e.g., pressure, chemical concentration) and principles (e.g., Ohm\u2019s law, Ficke\u2019s law) by which the physical meaning of biosimulation models may be annotated.", "id": "177", "name": "Ontology of Physics for Biology", "prefix": "FAIRsharing.qcceez", @@ -42520,7 +42520,7 @@ }, "miriam": { "deprecated": false, - "description": "Orphanet is a reference portal for information on rare diseases and orphan drugs. It’s aim is to help improve the diagnosis, care and treatment of patients with rare diseases.", + "description": "Orphanet is a reference portal for information on rare diseases and orphan drugs. It\u2019s aim is to help improve the diagnosis, care and treatment of patients with rare diseases.", "homepage": "http://www.orpha.net/consor/", "id": "00000220", "name": "Orphanet", @@ -42683,7 +42683,7 @@ "contact": { "email": "jfernand@um.es", "github": "jesualdotomasfernandezbreis", - "name": "Jesualdo Tomás Fernández-Breis", + "name": "Jesualdo Tom\u00e1s Fern\u00e1ndez-Breis", "orcid": "0000-0002-7558-2880" }, "download_owl": "https://github.com/qfo/OrthologyOntology/raw/master/orthOntology_RC_v2_A.owl", @@ -43006,7 +43006,7 @@ "uri_format": "http://oryzatagline.cirad.fr/cgi-bin/general_mutant.pl?line=$1" }, "prefixcommons": { - "description": "Oryza Tag Line consists in a searchable database developed under the Oracle management system integrating phenotypic data resulting from the evaluation of the Génoplante rice insertion line library.", + "description": "Oryza Tag Line consists in a searchable database developed under the Oracle management system integrating phenotypic data resulting from the evaluation of the G\u00e9noplante rice insertion line library.", "example": "AGFC04", "homepage": "http://urgi.versailles.inra.fr/OryzaTagLine/", "keywords": [ @@ -43313,7 +43313,7 @@ }, "miriam": { "deprecated": false, - "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. PANTHER tree is a key element of the PANTHER System to represent ‘all’ of the evolutionary events in the gene family. PANTHER nodes represent the evolutionary events, either speciation or duplication, within the tree. PANTHER is maintaining stable identifier for these nodes.", + "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. PANTHER tree is a key element of the PANTHER System to represent \u2018all\u2019 of the evolutionary events in the gene family. PANTHER nodes represent the evolutionary events, either speciation or duplication, within the tree. PANTHER is maintaining stable identifier for these nodes.", "homepage": "http://pantree.org/", "id": "00000374", "name": "PANTHER Node", @@ -44356,7 +44356,7 @@ "example": "0010039", "fairsharing": { "abbreviation": "PDRO", - "description": "PDRO is a realist ontology that aims to represent the domain of drug prescriptions. Such an ontology is currently missing in the OBOFoundry and is highly relevant to the domains of existing ontologies like DRON, OMRSE and OAE. PDRO’s central focus is the structure of a drug prescription, which is represented as a mereology of informational entities. Our current use cases are (1) refining this structure (e.g., adding closure axioms, cardinality, datatype bindings, etc) for prospectively standardizing local electronic prescriptions and (2) annotating prescription data of differing EHRs for detecting inappropriate prescriptions using a central semantic framework. Future ontological work will include aligning PDRO more closely with the Document Acts Ontology.", + "description": "PDRO is a realist ontology that aims to represent the domain of drug prescriptions. Such an ontology is currently missing in the OBOFoundry and is highly relevant to the domains of existing ontologies like DRON, OMRSE and OAE. PDRO\u2019s central focus is the structure of a drug prescription, which is represented as a mereology of informational entities. Our current use cases are (1) refining this structure (e.g., adding closure axioms, cardinality, datatype bindings, etc) for prospectively standardizing local electronic prescriptions and (2) annotating prescription data of differing EHRs for detecting inappropriate prescriptions using a central semantic framework. Future ontological work will include aligning PDRO more closely with the Document Acts Ontology.", "id": "526", "name": "The Prescription of Drugs Ontology", "prefix": "FAIRsharing.9te3ev", @@ -44444,7 +44444,7 @@ "obofoundry": { "contact": "frederic.bastian@unil.ch", "contact.github": "fbastian", - "contact.label": "Frédéric Bastian", + "contact.label": "Fr\u00e9d\u00e9ric Bastian", "contact.orcid": "0000-0002-9415-5104", "deprecated": false, "description": "Life cycle stages for Platynereis dumerilii", @@ -44809,7 +44809,7 @@ "name": "Charles Tapley Hoyt", "orcid": "0000-0003-4423-4370" }, - "description": "The Alan Wood’s Pesticides is a compendium of pesticides which contain nomenclature data sheets for more than 1700 different active ingredients.", + "description": "The Alan Wood\u2019s Pesticides is a compendium of pesticides which contain nomenclature data sheets for more than 1700 different active ingredients.", "example": "derivatives%2Fthiocyclam%20hydrochloride", "homepage": "http://www.alanwood.net/pesticides", "name": "Alan Wood's Pesticides", @@ -46657,7 +46657,7 @@ }, "fairsharing": { "abbreviation": "PMR", - "description": "The Physiome Model Repository (PMR) is the main online repository for the IUPS Physiome Project, providing version and access controlled repositories, called workspaces, for users to store their data. PMR also provides a mechanism to create persistent access to specific revisions of a workspace, termed exposures. Exposure plugins are available for specific types of data (e.g., CellML or FieldML documents) which enable customizable views of the data when browsing the repository via a web browser, or an application accessing the repository’s content via web services.", + "description": "The Physiome Model Repository (PMR) is the main online repository for the IUPS Physiome Project, providing version and access controlled repositories, called workspaces, for users to store their data. PMR also provides a mechanism to create persistent access to specific revisions of a workspace, termed exposures. Exposure plugins are available for specific types of data (e.g., CellML or FieldML documents) which enable customizable views of the data when browsing the repository via a web browser, or an application accessing the repository\u2019s content via web services.", "id": "2261", "name": "Physiome Model Repository", "prefix": "FAIRsharing.bcjrnq", @@ -49612,7 +49612,7 @@ "name": "Charles Tapley Hoyt", "orcid": "0000-0003-4423-4370" }, - "description": "The Reagent Ontology (ReO) adheres to OBO Foundry principles (obofoundry.org) to model the domain of biomedical research reagents, considered broadly to include materials applied “chemically” in scientific techniques to facilitate generation of data and research materials. ReO is a modular ontology that re-uses existing ontologies to facilitate cross-domain interoperability. It consists of reagents and their properties, linking diverse biological and experimental entities to which they are related. ReO supports community use cases by providing a flexible, extensible, and deeply integrated framework that can be adapted and extended with more specific modeling to meet application needs.", + "description": "The Reagent Ontology (ReO) adheres to OBO Foundry principles (obofoundry.org) to model the domain of biomedical research reagents, considered broadly to include materials applied \u201cchemically\u201d in scientific techniques to facilitate generation of data and research materials. ReO is a modular ontology that re-uses existing ontologies to facilitate cross-domain interoperability. It consists of reagents and their properties, linking diverse biological and experimental entities to which they are related. ReO supports community use cases by providing a flexible, extensible, and deeply integrated framework that can be adapted and extended with more specific modeling to meet application needs.", "download_owl": "https://github.com/tis-lab/reagent-ontology/raw/master/reo/ontology_files/reo_pre-merged_or_reasoned_files/reo_reasoned_9-6-12.owl", "example": "0000079", "homepage": "https://github.com/tis-lab/reagent-ontology", @@ -50892,7 +50892,7 @@ }, "fairsharing": { "abbreviation": "RRID", - "description": "The Resource Identification Initiative (#RRID) is designed to help researchers sufficiently cite the key resources used to produce the scientific findings reported in the biomedical literature. In addition to being unique, RRID’s meet three key criteria, they are: - Machine readable - Free to generate and access - Consistent across publishers and journals", + "description": "The Resource Identification Initiative (#RRID) is designed to help researchers sufficiently cite the key resources used to produce the scientific findings reported in the biomedical literature. In addition to being unique, RRID\u2019s meet three key criteria, they are: - Machine readable - Free to generate and access - Consistent across publishers and journals", "id": "538", "name": "Research Resource Identifiers", "prefix": "FAIRsharing.ATwSZG", @@ -51085,7 +51085,7 @@ }, "ols": { "contact": "chemistry-ontologies@googlegroups.com", - "description": "RXNO is the name reaction ontology. It contains more than 500 classes representing organic reactions such as the Diels–Alder cyclization.", + "description": "RXNO is the name reaction ontology. It contains more than 500 classes representing organic reactions such as the Diels\u2013Alder cyclization.", "download": "http://purl.obolibrary.org/obo/rxno.owl", "homepage": "https://github.com/rsc-ontologies/rxno", "name": "RXNO", @@ -51590,7 +51590,7 @@ "example": "0000728", "fairsharing": { "abbreviation": "SCDO", - "description": "The Sickle Cell Disease Ontology (SCDO) project is a collaboration between H3ABioNet (Pan African Bioinformatics Network) and SPAN (Sickle Cell Disease Pan African Network). The SCDO is currently under development and its purpose is to: 1) establish community standardized SCD terms and descriptions, 2) establish canonical and hierarchical representation of knowledge on SCD, 3) links to other ontologies and bodies of work such as DO, PhenX MeSH, ICD, NCI’s thesaurus, SNOMED and OMIM. Once complete, we anticipate that the ontology will: 1) be the most comprehensive collection of knowledge on SCD, 2) facilitate exploration of new scientific questions and ideas, 3) facilitate seamless data sharing and collaborations including meta-analysis within the SCD community, 4) support the building of databasing and clinical informatics in SCD.", + "description": "The Sickle Cell Disease Ontology (SCDO) project is a collaboration between H3ABioNet (Pan African Bioinformatics Network) and SPAN (Sickle Cell Disease Pan African Network). The SCDO is currently under development and its purpose is to: 1) establish community standardized SCD terms and descriptions, 2) establish canonical and hierarchical representation of knowledge on SCD, 3) links to other ontologies and bodies of work such as DO, PhenX MeSH, ICD, NCI\u2019s thesaurus, SNOMED and OMIM. Once complete, we anticipate that the ontology will: 1) be the most comprehensive collection of knowledge on SCD, 2) facilitate exploration of new scientific questions and ideas, 3) facilitate seamless data sharing and collaborations including meta-analysis within the SCD community, 4) support the building of databasing and clinical informatics in SCD.", "id": "888", "name": "Sickle Cell Disease Ontology", "prefix": "FAIRsharing.kkq6pw", @@ -53670,7 +53670,7 @@ "publications": [ { "id": "https://doi.org/10.3390/d11100202", - "title": "The Spider Anatomy Ontology (SPD)—A Versatile Tool to Link Anatomy with Cross-Disciplinary Data" + "title": "The Spider Anatomy Ontology (SPD)\u2014A Versatile Tool to Link Anatomy with Cross-Disciplinary Data" } ], "repository": "https://github.com/obophenotype/spider-ontology" @@ -55327,7 +55327,7 @@ }, "fairsharing": { "abbreviation": "TarBase", - "description": "DIANA-TarBase is a reference database that indexes experimentally-supported microRNA (miRNA) targets. It integrates information on cell-type specific miRNA–gene regulation and includes miRNA-binding locations. The target data provided by DIANA-TarBase is supported by information on methodologies, cell types/tissues and experimental conditions.", + "description": "DIANA-TarBase is a reference database that indexes experimentally-supported microRNA (miRNA) targets. It integrates information on cell-type specific miRNA\u2013gene regulation and includes miRNA-binding locations. The target data provided by DIANA-TarBase is supported by information on methodologies, cell types/tissues and experimental conditions.", "id": "1674", "name": "TarBase", "prefix": "FAIRsharing.a0k4cd", @@ -55344,7 +55344,7 @@ }, "miriam": { "deprecated": false, - "description": "TarBase stores microRNA (miRNA) information for miRNA–gene interactions, as well as miRNA- and gene-related facts to information specific to the interaction and the experimental validation methodologies used.", + "description": "TarBase stores microRNA (miRNA) information for miRNA\u2013gene interactions, as well as miRNA- and gene-related facts to information specific to the interaction and the experimental validation methodologies used.", "homepage": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index", "id": "00000340", "name": "TarBase", @@ -57255,7 +57255,7 @@ }, "miriam": { "deprecated": false, - "description": "The purpose of the joint FDA/USP Substance Registration System (SRS) is to support health information technology initiatives by generating unique ingredient identifiers (UNIIs) for substances in drugs, biologics, foods, and devices. The UNII is a non- proprietary, free, unique, unambiguous, non semantic, alphanumeric identifier based on a substance’s molecular structure and/or descriptive information.", + "description": "The purpose of the joint FDA/USP Substance Registration System (SRS) is to support health information technology initiatives by generating unique ingredient identifiers (UNIIs) for substances in drugs, biologics, foods, and devices. The UNII is a non- proprietary, free, unique, unambiguous, non semantic, alphanumeric identifier based on a substance\u2019s molecular structure and/or descriptive information.", "homepage": "http://fdasis.nlm.nih.gov/srs/", "id": "00000531", "name": "UNII", @@ -57951,7 +57951,7 @@ }, "fairsharing": { "abbreviation": null, - "description": "UNITE is a database and sequence management environment centered on the eukaryotic nuclear ribosomal ITS region. All eukaryotic ITS sequences from the International Nucleotide Sequence Database Collaboration are clustered to approximately the species level (distance between species in steps of 0.5%), and all such species hypotheses are given a DOI to facilitate unambiguous scientific communication and data assembly. The user can interact with these species hypotheses (e.g., SH1566366.08FU) in various ways, and third-party sequence and metadata annotation are supported. Registration is needed to access the more powerful features of the accompanying PlutoF workbench. A range of search and query options are available, and precompiled reference datasets for local sequence similarity searches and HTS pipelines are available for download. Owing to the mycological roots of UNITE, two versions of the release files are available: all eukaryotes (including fungi), and fungi only. UNITE is a community effort that relies on the scientific expertise of its users – please consider contributing by, e.g., annotating sequences of your taxa of expertise.", + "description": "UNITE is a database and sequence management environment centered on the eukaryotic nuclear ribosomal ITS region. All eukaryotic ITS sequences from the International Nucleotide Sequence Database Collaboration are clustered to approximately the species level (distance between species in steps of 0.5%), and all such species hypotheses are given a DOI to facilitate unambiguous scientific communication and data assembly. The user can interact with these species hypotheses (e.g., SH1566366.08FU) in various ways, and third-party sequence and metadata annotation are supported. Registration is needed to access the more powerful features of the accompanying PlutoF workbench. A range of search and query options are available, and precompiled reference datasets for local sequence similarity searches and HTS pipelines are available for download. Owing to the mycological roots of UNITE, two versions of the release files are available: all eukaryotes (including fungi), and fungi only. UNITE is a community effort that relies on the scientific expertise of its users \u2013 please consider contributing by, e.g., annotating sequences of your taxa of expertise.", "id": "2110", "name": "UNITE", "prefix": "FAIRsharing.cnwx8c", @@ -59014,7 +59014,7 @@ }, "miriam": { "deprecated": false, - "description": "The VIAF® (Virtual International Authority File) combines multiple name authority files into a single OCLC-hosted name authority service. The goal of the service is to lower the cost and increase the utility of library authority files by matching and linking widely-used authority files and making that information available on the Web.", + "description": "The VIAF\u00ae (Virtual International Authority File) combines multiple name authority files into a single OCLC-hosted name authority service. The goal of the service is to lower the cost and increase the utility of library authority files by matching and linking widely-used authority files and making that information available on the Web.", "homepage": "http://viaf.org", "id": "00000685", "name": "Virtual International Authority File", @@ -59372,7 +59372,7 @@ }, { "id": "https://www.ncbi.nlm.nih.gov/pubmed/21624163", - "title": "Mining of vaccine-associated IFN-γ gene interaction networks using the Vaccine Ontology" + "title": "Mining of vaccine-associated IFN-\u03b3 gene interaction networks using the Vaccine Ontology" } ], "repository": "https://github.com/vaccineontology/VO" @@ -59665,7 +59665,7 @@ "name": "Charles Tapley Hoyt", "orcid": "0000-0003-4423-4370" }, - "description": "The Veterans Health Administration is America’s largest integrated health care system, providing care at 1,293 health care facilities, including 171 medical centers and 1,112 outpatient sites of care of varying complexity (VHA outpatient clinics), serving 9 million enrolled Veterans each year.", + "description": "The Veterans Health Administration is America\u2019s largest integrated health care system, providing care at 1,293 health care facilities, including 171 medical centers and 1,112 outpatient sites of care of varying complexity (VHA outpatient clinics), serving 9 million enrolled Veterans each year.", "example": "4007166", "homepage": "https://www.va.gov/health", "name": "Veterans Health Administration (VHA) unique identifier", @@ -61351,11 +61351,11 @@ "name": "Charles Tapley Hoyt", "orcid": "0000-0003-4423-4370" }, - "description": "The Yeast Metabolome Database (YMDB) is a manually curated database of small molecule metabolites found in or produced by Saccharomyces cerevisiae (also known as Baker’s yeast and Brewer’s yeast).", + "description": "The Yeast Metabolome Database (YMDB) is a manually curated database of small molecule metabolites found in or produced by Saccharomyces cerevisiae (also known as Baker\u2019s yeast and Brewer\u2019s yeast).", "example": "YMDB00001", "fairsharing": { "abbreviation": "YMDB", - "description": "The Yeast Metabolome Database (YMDB) is a manually curated database of small molecule metabolites found in or produced by Saccharomyces cerevisiae (also known as Baker’s yeast and Brewer’s yeast). This database covers metabolites described in textbooks, scientific journals, metabolic reconstructions and other electronic databases.", + "description": "The Yeast Metabolome Database (YMDB) is a manually curated database of small molecule metabolites found in or produced by Saccharomyces cerevisiae (also known as Baker\u2019s yeast and Brewer\u2019s yeast). This database covers metabolites described in textbooks, scientific journals, metabolic reconstructions and other electronic databases.", "id": "1700", "name": "The Yeast Metabolome Database", "prefix": "FAIRsharing.tawpg2", @@ -61913,4 +61913,4 @@ }, "pattern": "^\\d+$" } -} \ No newline at end of file +} diff --git a/fuji_server/data/linked_vocabs/bioregistry_ontologies.json b/fuji_server/data/linked_vocabs/bioregistry_ontologies.json index 6eb1b36a..0af1eeb6 100644 --- a/fuji_server/data/linked_vocabs/bioregistry_ontologies.json +++ b/fuji_server/data/linked_vocabs/bioregistry_ontologies.json @@ -1 +1,46201 @@ -{"bioregistry.3dmet.miriam": {"id": "bioregistry.3dmet.miriam", "sameas": "bioregistry.3dmet", "homepage": "http://www.3dmet.dna.affrc.go.jp/", "prefix": "3dmet", "name": "3DMET", "uri_format": "http://www.3dmet.dna.affrc.go.jp/cgi/show_data.php?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.3dmet.n2t": {"id": "bioregistry.3dmet.n2t", "sameas": "bioregistry.3dmet", "homepage": "http://www.3dmet.dna.affrc.go.jp/", "prefix": "3dmet", "name": "3DMET database", "uri_format": "http://www.3dmet.dna.affrc.go.jp/cgi/show_data.php?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.3dmet.wikidata": {"id": "bioregistry.3dmet.wikidata", "sameas": "bioregistry.3dmet", "homepage": null, "prefix": "P2796", "name": "3DMet ID", "uri_format": "http://www.3dmet.dna.affrc.go.jp/cgi/show_data.php?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "wikidata"}, "bioregistry.3dmet": {"id": "bioregistry.3dmet", "homepage": null, "prefix": "3dmet", "name": "Three-Dimensional Structure Database of Natural Metabolites", "uri_format": "http://www.3dmet.dna.affrc.go.jp/cgi/show_data.php?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "bioregistry"}, "bioregistry.4dn.biosource.miriam": {"id": "bioregistry.4dn.biosource.miriam", "sameas": "bioregistry.4dn.biosource", "homepage": "https://data.4dnucleome.org/", "prefix": "4dn", "name": "4D Nucleome", "uri_format": "https://data.4dnucleome.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.4dn.biosource.prefixcommons": {"id": "bioregistry.4dn.biosource.prefixcommons", "sameas": "bioregistry.4dn.biosource", "homepage": "https://data.4dnucleome.org/", "prefix": "4dn", "name": "4D Nucleome", "uri_format": "https://data.4dnucleome.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.4dn.biosource.cellosaurus": {"id": "bioregistry.4dn.biosource.cellosaurus", "sameas": "bioregistry.4dn.biosource", "homepage": "https://data.4dnucleome.org/", "prefix": "4DN", "name": "4D Nucleome Data Portal", "uri_format": "https://data.4dnucleome.org/biosources/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "cellosaurus"}, "bioregistry.4dn.biosource": {"id": "bioregistry.4dn.biosource", "homepage": "https://data.4dnucleome.org/biosources", "prefix": "4dn.biosource", "name": "4D Nucleome Data Portal Biosource", "uri_format": "https://data.4dnucleome.org/biosources/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.aaindex.prefixcommons": {"id": "bioregistry.aaindex.prefixcommons", "sameas": "bioregistry.aaindex", "homepage": "http://www.genome.ad.jp/aaindex/", "prefix": "aaindex", "name": "Amino acid indices, substitution matrices and pair-wise contact potentials", "uri_format": "http://www.genome.jp/dbget-bin/www_bget?aaindex:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.aaindex": {"id": "bioregistry.aaindex", "homepage": null, "prefix": "aaindex", "name": "Amino acid indices, substitution matrices and pair-wise contact potentials", "uri_format": "http://www.genome.jp/dbget-bin/www_bget?aaindex:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.abcd.uniprot": {"id": "bioregistry.abcd.uniprot", "sameas": "bioregistry.abcd", "homepage": "https://web.expasy.org/abcd", "prefix": "DB-0236", "name": "ABCD curated depository of sequenced antibodies", "uri_format": "https://web.expasy.org/cgi-bin/abcd/search_abcd.pl?input=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.abcd.cellosaurus": {"id": "bioregistry.abcd.cellosaurus", "sameas": "bioregistry.abcd", "homepage": "https://web.expasy.org/abcd/", "prefix": "ABCD", "name": "AntiBodies Chemically Defined database", "uri_format": "https://web.expasy.org/abcd/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.abcd": {"id": "bioregistry.abcd", "homepage": "https://web.expasy.org/abcd/", "prefix": "abcd", "name": "ABCD curated depository of sequenced antibodies", "uri_format": "https://web.expasy.org/cgi-bin/abcd/search_abcd.pl?input=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.abm.cellosaurus": {"id": "bioregistry.abm.cellosaurus", "sameas": "bioregistry.abm", "homepage": "https://www.abmgood.com/Cell-Biology.html", "prefix": "ABM", "name": "Applied Biological Materials cell line products", "uri_format": "https://www.abmgood.com/catalogsearch/result/?cat=&q=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.abm": {"id": "bioregistry.abm", "homepage": null, "prefix": "abm", "name": "Applied Biological Materials cell line products", "uri_format": "https://www.abmgood.com/catalogsearch/result/?cat=&q=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.abs.miriam": {"id": "bioregistry.abs.miriam", "sameas": "bioregistry.abs", "homepage": "http://genome.crg.es/datasets/abs2005/", "prefix": "abs", "name": "ABS", "uri_format": "http://genome.crg.es/datasets/abs2005/entries/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.abs.n2t": {"id": "bioregistry.abs.n2t", "sameas": "bioregistry.abs", "homepage": "http://genome.crg.es/datasets/abs2005/", "prefix": "abs", "name": "ABS at IMIM", "uri_format": "http://genome.crg.es/datasets/abs2005/entries/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.abs.prefixcommons": {"id": "bioregistry.abs.prefixcommons", "sameas": "bioregistry.abs", "homepage": "http://genome.imim.es/datasets/abs2005/", "prefix": "abs", "name": "ABS: a database of Annotated regulatory Binding Sites from Orthologous Promoters", "uri_format": "http://genome.crg.es/datasets/abs2005/entries/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.abs": {"id": "bioregistry.abs", "homepage": null, "prefix": "abs", "name": "ABS: a database of Annotated regulatory Binding Sites from Orthologous Promoters", "uri_format": "http://genome.crg.es/datasets/abs2005/entries/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.aceview.worm.miriam": {"id": "bioregistry.aceview.worm.miriam", "sameas": "bioregistry.aceview.worm", "homepage": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/index.html?worm", "prefix": "aceview.worm", "name": "Aceview Worm", "uri_format": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/av.cgi?db=worm&c=Gene&l=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.aceview.worm.n2t": {"id": "bioregistry.aceview.worm.n2t", "sameas": "bioregistry.aceview.worm", "homepage": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/index.html?worm", "prefix": "aceview.worm", "name": "AceView Worm at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/av.cgi?db=worm&c=Gene&l=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.aceview.worm.prefixcommons": {"id": "bioregistry.aceview.worm.prefixcommons", "sameas": "bioregistry.aceview.worm", "homepage": "http://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/", "prefix": "aceview.worm", "name": "AceView Worm Genome", "uri_format": "http://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/av.cgi?db=[?species_database]&c=Gene&l=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.aceview.worm": {"id": "bioregistry.aceview.worm", "homepage": null, "prefix": "aceview.worm", "name": "AceView Worm at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/av.cgi?db=worm&c=Gene&l=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.addexbio.cellosaurus": {"id": "bioregistry.addexbio.cellosaurus", "sameas": "bioregistry.addexbio", "homepage": "https://www.addexbio.com/productshow?id=4", "prefix": "AddexBio", "name": "AddexBio cell line products", "uri_format": "https://www.addexbio.com/productdetail?pid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.addexbio": {"id": "bioregistry.addexbio", "homepage": null, "prefix": "addexbio", "name": "AddexBio cell line products", "uri_format": "https://www.addexbio.com/productdetail?pid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.addgene.miriam": {"id": "bioregistry.addgene.miriam", "sameas": "bioregistry.addgene", "homepage": "http://addgene.org/", "prefix": "addgene", "name": "Addgene Plasmid Repository", "uri_format": "http://addgene.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.addgene.n2t": {"id": "bioregistry.addgene.n2t", "sameas": "bioregistry.addgene", "homepage": "http://addgene.org/", "prefix": "addgene", "name": "Addgene Plasmid Repository", "uri_format": "http://addgene.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.addgene.prefixcommons": {"id": "bioregistry.addgene.prefixcommons", "sameas": "bioregistry.addgene", "homepage": "http://www.addgene.org", "prefix": "addgene", "name": "Addgene", "uri_format": "http://www.addgene.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "molecular biology"], "authority": "prefixcommons"}, "bioregistry.addgene": {"id": "bioregistry.addgene", "homepage": null, "prefix": "addgene", "name": "Addgene Plasmid Repository", "uri_format": "http://www.addgene.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "molecular biology"], "authority": "bioregistry"}, "bioregistry.adw.miriam": {"id": "bioregistry.adw.miriam", "sameas": "bioregistry.adw", "homepage": "https://animaldiversity.org/", "prefix": "adw", "name": "Animal Diversity Web", "uri_format": "https://animaldiversity.org/accounts/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.adw.n2t": {"id": "bioregistry.adw.n2t", "sameas": "bioregistry.adw", "homepage": "https://animaldiversity.org/", "prefix": "adw", "name": "Animal Diversity Web at University of Michigan", "uri_format": "https://animaldiversity.org/accounts/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.adw": {"id": "bioregistry.adw", "homepage": null, "prefix": "adw", "name": "Animal Natural History and Life History Ontology", "uri_format": "https://animaldiversity.org/accounts/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.affy.probeset.miriam": {"id": "bioregistry.affy.probeset.miriam", "sameas": "bioregistry.affy.probeset", "homepage": "http://www.affymetrix.com/", "prefix": "affy.probeset", "name": "Affymetrix Probeset", "uri_format": "https://www.affymetrix.com/LinkServlet?probeset=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.affy.probeset.n2t": {"id": "bioregistry.affy.probeset.n2t", "sameas": "bioregistry.affy.probeset", "homepage": "http://www.affymetrix.com/", "prefix": "affy.probeset", "name": "Affymetrix ProbeSet in Santa Clara", "uri_format": "https://www.affymetrix.com/LinkServlet?probeset=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.affy.probeset": {"id": "bioregistry.affy.probeset", "homepage": null, "prefix": "affy.probeset", "name": "Affymetrix ProbeSet in Santa Clara", "uri_format": "https://www.affymetrix.com/LinkServlet?probeset=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.aftol.taxonomy.miriam": {"id": "bioregistry.aftol.taxonomy.miriam", "sameas": "bioregistry.aftol.taxonomy", "homepage": "http://aftol.org/data.php", "prefix": "aftol.taxonomy", "name": "AFTOL", "uri_format": "http://wasabi.lutzonilab.net/pub/displayTaxonInfo?aftol_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.aftol.taxonomy.n2t": {"id": "bioregistry.aftol.taxonomy.n2t", "sameas": "bioregistry.aftol.taxonomy", "homepage": "http://aftol.org/data.php", "prefix": "aftol.taxonomy", "name": "AFTOL at University of Minnesota", "uri_format": "http://wasabi.lutzonilab.net/pub/displayTaxonInfo?aftol_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.aftol.taxonomy": {"id": "bioregistry.aftol.taxonomy", "homepage": "https://aftol.umn.edu", "prefix": "aftol.taxonomy", "name": "Assembling the Fungal Tree of Life - Taxonomy", "uri_format": "http://wasabi.lutzonilab.net/pub/displayTaxonInfo?aftol_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.agricola.miriam": {"id": "bioregistry.agricola.miriam", "sameas": "bioregistry.agricola", "homepage": "http://agricola.nal.usda.gov/", "prefix": "agricola", "name": "AGRICOLA", "uri_format": "http://ddr.nal.usda.gov/dspace/handle/10113/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.agricola.n2t": {"id": "bioregistry.agricola.n2t", "sameas": "bioregistry.agricola", "homepage": "http://agricola.nal.usda.gov/", "prefix": "agricola", "name": "AGRICOLA at National Agricultural Library", "uri_format": "http://ddr.nal.usda.gov/dspace/handle/10113/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.agricola.uniprot": {"id": "bioregistry.agricola.uniprot", "sameas": "bioregistry.agricola", "homepage": "https://alliancegenome.org/", "prefix": "DB-0266", "name": "The Alliance of Genome Resources", "uri_format": "https://alliancegenome.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.agricola": {"id": "bioregistry.agricola", "homepage": null, "prefix": "agricola", "name": "AGRICOLA at National Agricultural Library", "uri_format": "https://alliancegenome.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.agrkb.biolink": {"id": "bioregistry.agrkb.biolink", "sameas": "bioregistry.agrkb", "homepage": null, "prefix": "AGRKB", "name": null, "uri_format": "https://www.alliancegenome.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.agrkb": {"id": "bioregistry.agrkb", "homepage": "https://www.alliancegenome.org", "prefix": "agrkb", "name": "Alliance of Genome Resources Knowledge Base", "uri_format": "https://www.alliancegenome.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.agrovoc.wikidata": {"id": "bioregistry.agrovoc.wikidata", "sameas": "bioregistry.agrovoc", "homepage": null, "prefix": "P8061", "name": "AGROVOC ID", "uri_format": "http://aims.fao.org/aos/agrovoc/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.agrovoc": {"id": "bioregistry.agrovoc", "homepage": "https://data.apps.fao.org/catalog/organization/agrovoc", "prefix": "agrovoc", "name": "Agronomy Vocabulary", "uri_format": "http://aims.fao.org/aos/agrovoc/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.agsd.prefixcommons": {"id": "bioregistry.agsd.prefixcommons", "sameas": "bioregistry.agsd", "homepage": "http://www.genomesize.com", "prefix": "agsd", "name": "Animal Genome Size Database", "uri_format": "http://www.genomesize.com/result_species.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.agsd": {"id": "bioregistry.agsd", "homepage": null, "prefix": "agsd", "name": "Animal Genome Size Database", "uri_format": "http://www.genomesize.com/result_species.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.alfred.prefixcommons": {"id": "bioregistry.alfred.prefixcommons", "sameas": "bioregistry.alfred", "homepage": "http://alfred.med.yale.edu", "prefix": "alfred", "name": "The ALlele FREquency Database", "uri_format": "https://alfred.med.yale.edu/alfred/recordinfo.asp?UNID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.alfred": {"id": "bioregistry.alfred", "homepage": null, "prefix": "alfred", "name": "The ALlele FREquency Database", "uri_format": "https://alfred.med.yale.edu/alfred/recordinfo.asp?UNID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.allergome.miriam": {"id": "bioregistry.allergome.miriam", "sameas": "bioregistry.allergome", "homepage": "http://www.allergome.org/", "prefix": "allergome", "name": "Allergome", "uri_format": "http://www.allergome.org/script/dettaglio.php?id_molecule=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.allergome.n2t": {"id": "bioregistry.allergome.n2t", "sameas": "bioregistry.allergome", "homepage": "http://www.allergome.org/", "prefix": "allergome", "name": "Allergome at Rome", "uri_format": "http://www.allergome.org/script/dettaglio.php?id_molecule=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.allergome.prefixcommons": {"id": "bioregistry.allergome.prefixcommons", "sameas": "bioregistry.allergome", "homepage": "http://www.allergome.org", "prefix": "allergome", "name": "Allergome: a platform for allergen knowledge", "uri_format": "http://www.allergome.org/script/refArray_view.php?idMol=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "allergology"], "authority": "prefixcommons"}, "bioregistry.allergome.uniprot": {"id": "bioregistry.allergome.uniprot", "sameas": "bioregistry.allergome", "homepage": "https://www.allergome.org/", "prefix": "DB-0160", "name": "Allergome; a platform for allergen knowledge", "uri_format": "https://www.allergome.org/script/dettaglio.php?id_molecule=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "allergology"], "authority": "uniprot"}, "bioregistry.allergome": {"id": "bioregistry.allergome", "homepage": null, "prefix": "allergome", "name": "Allergome: a platform for allergen knowledge", "uri_format": "https://www.allergome.org/script/dettaglio.php?id_molecule=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "allergology"], "authority": "bioregistry"}, "bioregistry.alzgene.prefixcommons": {"id": "bioregistry.alzgene.prefixcommons", "sameas": "bioregistry.alzgene", "homepage": "http://www.alzgene.org", "prefix": "alzgene", "name": "Alzheimer Gene Database", "uri_format": "http://www.alzgene.org/geneoverview.asp?geneid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.alzgene": {"id": "bioregistry.alzgene", "homepage": null, "prefix": "alzgene", "name": "Alzheimer Gene Database", "uri_format": "http://www.alzgene.org/geneoverview.asp?geneid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.amoebadb.miriam": {"id": "bioregistry.amoebadb.miriam", "sameas": "bioregistry.amoebadb", "homepage": "http://amoebadb.org/amoeba/", "prefix": "amoebadb", "name": "AmoebaDB", "uri_format": "https://amoebadb.org/amoeba/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.amoebadb.n2t": {"id": "bioregistry.amoebadb.n2t", "sameas": "bioregistry.amoebadb", "homepage": "http://amoebadb.org/amoeba/", "prefix": "amoebadb", "name": "AmoebaDB at EuPathDB", "uri_format": "https://amoebadb.org/amoeba/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.amoebadb.prefixcommons": {"id": "bioregistry.amoebadb.prefixcommons", "sameas": "bioregistry.amoebadb", "homepage": "http://amoebadb.org", "prefix": "amoebadb", "name": "AmoebaDB", "uri_format": "https://amoebadb.org/amoeba/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.amoebadb": {"id": "bioregistry.amoebadb", "homepage": null, "prefix": "amoebadb", "name": "AmoebaDB at EuPathDB", "uri_format": "https://amoebadb.org/amoeba/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.antibodyregistry.miriam": {"id": "bioregistry.antibodyregistry.miriam", "sameas": "bioregistry.antibodyregistry", "homepage": "http://antibodyregistry.org/", "prefix": "antibodyregistry", "name": "Antibody Registry", "uri_format": "http://antibodyregistry.org/AB_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.antibodyregistry.n2t": {"id": "bioregistry.antibodyregistry.n2t", "sameas": "bioregistry.antibodyregistry", "homepage": "http://antibodyregistry.org/", "prefix": "antibodyregistry", "name": "Antibody Registry at University of California", "uri_format": "http://antibodyregistry.org/AB_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.antibodyregistry": {"id": "bioregistry.antibodyregistry", "homepage": null, "prefix": "antibodyregistry", "name": "Antibody Registry at University of California", "uri_format": "http://antibodyregistry.org/AB_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.antweb.miriam": {"id": "bioregistry.antweb.miriam", "sameas": "bioregistry.antweb", "homepage": "http://www.antweb.org/", "prefix": "antweb", "name": "AntWeb", "uri_format": "http://www.antweb.org/specimen.do?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.antweb.n2t": {"id": "bioregistry.antweb.n2t", "sameas": "bioregistry.antweb", "homepage": "http://www.antweb.org/", "prefix": "antweb", "name": "AntWeb at California Academy of Sciences", "uri_format": "http://www.antweb.org/specimen.do?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.antweb.prefixcommons": {"id": "bioregistry.antweb.prefixcommons", "sameas": "bioregistry.antweb", "homepage": "https://www.antweb.org", "prefix": "antweb", "name": "AntWeb: Ant of the World", "uri_format": "http://www.antweb.org/specimen.do?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "anatomy and morphology"], "authority": "prefixcommons"}, "bioregistry.antweb.wikidata": {"id": "bioregistry.antweb.wikidata", "sameas": "bioregistry.antweb", "homepage": "https://www.antweb.org", "prefix": "P5299", "name": "AntWeb ID", "uri_format": "https://www.antweb.org/description.do?taxonName=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "anatomy and morphology"], "authority": "wikidata"}, "bioregistry.antweb": {"id": "bioregistry.antweb", "homepage": null, "prefix": "antweb", "name": "AntWeb at California Academy of Sciences", "uri_format": "https://www.antweb.org/description.do?taxonName=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "anatomy and morphology"], "authority": "bioregistry"}, "bioregistry.aop.miriam": {"id": "bioregistry.aop.miriam", "sameas": "bioregistry.aop", "homepage": "https://aopwiki.org/", "prefix": "aop", "name": "AOPWiki", "uri_format": "https://aopwiki.org/aops/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.aop.n2t": {"id": "bioregistry.aop.n2t", "sameas": "bioregistry.aop", "homepage": "https://aopwiki.org/", "prefix": "aop", "name": "AOPWiki", "uri_format": "https://aopwiki.org/aops/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.aop": {"id": "bioregistry.aop", "homepage": null, "prefix": "aop", "name": "AOPWiki", "uri_format": "https://aopwiki.org/aops/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.aop.events.miriam": {"id": "bioregistry.aop.events.miriam", "sameas": "bioregistry.aop.events", "homepage": "https://aopwiki.org/", "prefix": "aop.events", "name": "AOPWiki (Key Event)", "uri_format": "https://aopwiki.org/events/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.aop.events.n2t": {"id": "bioregistry.aop.events.n2t", "sameas": "bioregistry.aop.events", "homepage": "https://aopwiki.org/", "prefix": "aop.events", "name": "AOPWiki (Key Event)", "uri_format": "https://aopwiki.org/events/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.aop.events": {"id": "bioregistry.aop.events", "homepage": null, "prefix": "aop.events", "name": "AOPWiki (Key Event)", "uri_format": "https://aopwiki.org/events/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.aop.relationships.miriam": {"id": "bioregistry.aop.relationships.miriam", "sameas": "bioregistry.aop.relationships", "homepage": "https://aopwiki.org/", "prefix": "aop.relationships", "name": "AOPWiki (Key Event Relationship)", "uri_format": "https://aopwiki.org/relationships/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.aop.relationships.n2t": {"id": "bioregistry.aop.relationships.n2t", "sameas": "bioregistry.aop.relationships", "homepage": "https://aopwiki.org/", "prefix": "aop.relationships", "name": "AOPWiki (Key Event Relationship)", "uri_format": "https://aopwiki.org/relationships/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.aop.relationships": {"id": "bioregistry.aop.relationships", "homepage": null, "prefix": "aop.relationships", "name": "AOPWiki (Key Event Relationship)", "uri_format": "https://aopwiki.org/relationships/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.aop.stressor.miriam": {"id": "bioregistry.aop.stressor.miriam", "sameas": "bioregistry.aop.stressor", "homepage": "https://aopwiki.org/", "prefix": "aop.stressor", "name": "AOPWiki (Stressor)", "uri_format": "https://aopwiki.org/stressors/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.aop.stressor.n2t": {"id": "bioregistry.aop.stressor.n2t", "sameas": "bioregistry.aop.stressor", "homepage": "https://aopwiki.org/", "prefix": "aop.stressor", "name": "AOPWiki (Stressor)", "uri_format": "https://aopwiki.org/stressors/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.aop.stressor": {"id": "bioregistry.aop.stressor", "homepage": null, "prefix": "aop.stressor", "name": "AOPWiki (Stressor)", "uri_format": "https://aopwiki.org/stressors/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.apd.miriam": {"id": "bioregistry.apd.miriam", "sameas": "bioregistry.apd", "homepage": "http://aps.unmc.edu/AP/", "prefix": "apd", "name": "APD", "uri_format": "http://aps.unmc.edu/AP/database/query_output.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.apd.n2t": {"id": "bioregistry.apd.n2t", "sameas": "bioregistry.apd", "homepage": "http://aps.unmc.edu/AP/", "prefix": "apd", "name": "APD at Nebraska", "uri_format": "http://aps.unmc.edu/AP/database/query_output.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.apd.prefixcommons": {"id": "bioregistry.apd.prefixcommons", "sameas": "bioregistry.apd", "homepage": "http://aps.unmc.edu/AP/", "prefix": "apd", "name": "Antimicrobial Peptide Database", "uri_format": "http://aps.unmc.edu/AP/database/query_output.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.apd": {"id": "bioregistry.apd", "homepage": null, "prefix": "apd", "name": "Antimicrobial Peptide Database", "uri_format": "http://aps.unmc.edu/AP/database/query_output.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.aphidbase.transcript.miriam": {"id": "bioregistry.aphidbase.transcript.miriam", "sameas": "bioregistry.aphidbase.transcript", "homepage": "http://www.aphidbase.com/aphidbase", "prefix": "aphidbase.transcript", "name": "AphidBase Transcript", "uri_format": "http://bipaa.genouest.org/apps/grs-2.3/grs?reportID=aphidbase_transcript_report&objectID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.aphidbase.transcript.n2t": {"id": "bioregistry.aphidbase.transcript.n2t", "sameas": "bioregistry.aphidbase.transcript", "homepage": "http://www.aphidbase.com/aphidbase", "prefix": "aphidbase.transcript", "name": "AphidBase at INRA", "uri_format": "http://bipaa.genouest.org/apps/grs-2.3/grs?reportID=aphidbase_transcript_report&objectID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.aphidbase.transcript": {"id": "bioregistry.aphidbase.transcript", "homepage": null, "prefix": "aphidbase.transcript", "name": "Aphidbase: an aphid genomics database", "uri_format": "http://bipaa.genouest.org/apps/grs-2.3/grs?reportID=aphidbase_transcript_report&objectID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.apid.interactions.miriam": {"id": "bioregistry.apid.interactions.miriam", "sameas": "bioregistry.apid.interactions", "homepage": "http://cicblade.dep.usal.es:8080/APID/", "prefix": "apid.interactions", "name": "APID Interactomes", "uri_format": "http://cicblade.dep.usal.es:8080/APID/Interactions.action?protein=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.apid.interactions.n2t": {"id": "bioregistry.apid.interactions.n2t", "sameas": "bioregistry.apid.interactions", "homepage": "http://cicblade.dep.usal.es:8080/APID/", "prefix": "apid.interactions", "name": "APID at Salamanca", "uri_format": "http://cicblade.dep.usal.es:8080/APID/Interactions.action?protein=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.apid.interactions": {"id": "bioregistry.apid.interactions", "homepage": null, "prefix": "apid.interactions", "name": "APID Interactomes", "uri_format": "http://cicblade.dep.usal.es:8080/APID/Interactions.action?protein=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.arachnoserver.miriam": {"id": "bioregistry.arachnoserver.miriam", "sameas": "bioregistry.arachnoserver", "homepage": "http://www.arachnoserver.org/", "prefix": "arachnoserver", "name": "ArachnoServer", "uri_format": "http://www.arachnoserver.org/toxincard.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.arachnoserver.n2t": {"id": "bioregistry.arachnoserver.n2t", "sameas": "bioregistry.arachnoserver", "homepage": "http://www.arachnoserver.org/", "prefix": "arachnoserver", "name": "ArachnoServer at Brisbane", "uri_format": "http://www.arachnoserver.org/toxincard.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.arachnoserver.prefixcommons": {"id": "bioregistry.arachnoserver.prefixcommons", "sameas": "bioregistry.arachnoserver", "homepage": "http://www.arachnoserver.org", "prefix": "arachnoserver", "name": "ArachnoServer: Spider toxin database", "uri_format": "http://www.arachnoserver.org/toxincard.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "pharmacology and pharmacy"], "authority": "prefixcommons"}, "bioregistry.arachnoserver": {"id": "bioregistry.arachnoserver", "homepage": null, "prefix": "arachnoserver", "name": "ArachnoServer: Spider toxin database", "uri_format": "http://www.arachnoserver.org/toxincard.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "pharmacology and pharmacy"], "authority": "bioregistry"}, "bioregistry.araport.miriam": {"id": "bioregistry.araport.miriam", "sameas": "bioregistry.araport", "homepage": "https://www.arabidopsis.org/index.jsp", "prefix": "tair.name", "name": "TAIR gene name", "uri_format": "https://www.arabidopsis.org/servlets/TairObject?type=locus&name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.araport.uniprot": {"id": "bioregistry.araport.uniprot", "sameas": "bioregistry.araport", "homepage": "https://bar.utoronto.ca/thalemine/begin.do", "prefix": "DB-0221", "name": "Arabidopsis Information Portal", "uri_format": "https://bar.utoronto.ca/thalemine/portal.do?externalids=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.araport": {"id": "bioregistry.araport", "homepage": "https://www.araport.org/", "prefix": "araport", "name": "Arabidopsis Information Portal", "uri_format": "https://www.arabidopsis.org/servlets/TairObject?type=locus&name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.archdb.prefixcommons": {"id": "bioregistry.archdb.prefixcommons", "sameas": "bioregistry.archdb", "homepage": "http://sbi.imim.es/archdb", "prefix": "archdb", "name": "ArchDB", "uri_format": "http://sbi.imim.es/cgi-bin/archdb//loops.pl?loop=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.archdb": {"id": "bioregistry.archdb", "homepage": null, "prefix": "archdb", "name": "ArchDB", "uri_format": "http://sbi.imim.es/cgi-bin/archdb//loops.pl?loop=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.ardb.miriam": {"id": "bioregistry.ardb.miriam", "sameas": "bioregistry.ardb", "homepage": "http://ardb.cbcb.umd.edu/", "prefix": "ardb", "name": "Antibiotic Resistance Genes Database", "uri_format": "http://ardb.cbcb.umd.edu/cgi/search.cgi?db=L&field=ni&term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ardb.n2t": {"id": "bioregistry.ardb.n2t", "sameas": "bioregistry.ardb", "homepage": "http://ardb.cbcb.umd.edu/", "prefix": "ardb", "name": "ARDB at University of Maryland", "uri_format": "http://ardb.cbcb.umd.edu/cgi/search.cgi?db=L&field=ni&term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ardb": {"id": "bioregistry.ardb", "homepage": null, "prefix": "ardb", "name": "Antibiotic Resistance Genes Database", "uri_format": "http://ardb.cbcb.umd.edu/cgi/search.cgi?db=L&field=ni&term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ark.miriam": {"id": "bioregistry.ark.miriam", "sameas": "bioregistry.ark", "homepage": "https://arks.org", "prefix": "ark", "name": "Archival Resource Key (ARK)", "uri_format": "https://n2t.net/ark:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ark.n2t": {"id": "bioregistry.ark.n2t", "sameas": "bioregistry.ark", "homepage": "https://wiki.ucop.edu/display/Curation/ARK", "prefix": "ark", "name": "Archival Resource Key", "uri_format": "n2t.net/ark:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ark": {"id": "bioregistry.ark", "homepage": "https://arks.org", "prefix": "ark", "name": "Archival Resource Key Identifier", "uri_format": "n2t.net/ark:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.arrayexpress.miriam": {"id": "bioregistry.arrayexpress.miriam", "sameas": "bioregistry.arrayexpress", "homepage": "https://www.ebi.ac.uk/arrayexpress/", "prefix": "arrayexpress", "name": "ArrayExpress", "uri_format": "https://www.ebi.ac.uk/arrayexpress/experiments/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.arrayexpress.n2t": {"id": "bioregistry.arrayexpress.n2t", "sameas": "bioregistry.arrayexpress", "homepage": "https://www.ebi.ac.uk/arrayexpress/", "prefix": "arrayexpress", "name": "ArrayExpress", "uri_format": "https://www.ebi.ac.uk/arrayexpress/experiments/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.arrayexpress.prefixcommons": {"id": "bioregistry.arrayexpress.prefixcommons", "sameas": "bioregistry.arrayexpress", "homepage": "http://www.ebi.ac.uk/arrayexpress", "prefix": "arrayexpress", "name": "ArrayExpress", "uri_format": "http://www.ebi.ac.uk/arrayexpress/experiments/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "molecular biology"], "authority": "prefixcommons"}, "bioregistry.arrayexpress.cellosaurus": {"id": "bioregistry.arrayexpress.cellosaurus", "sameas": "bioregistry.arrayexpress", "homepage": "https://www.ebi.ac.uk/biostudies/arrayexpress", "prefix": "ArrayExpress", "name": "ArrayExpress Archive of Functional Genomics", "uri_format": "https://www.ebi.ac.uk/biostudies/ArrayExpress/studies/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "molecular biology"], "authority": "cellosaurus"}, "bioregistry.arrayexpress": {"id": "bioregistry.arrayexpress", "homepage": null, "prefix": "arrayexpress", "name": "ArrayExpress Archive of Functional Genomics", "uri_format": "https://www.ebi.ac.uk/biostudies/ArrayExpress/studies/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "molecular biology"], "authority": "bioregistry"}, "bioregistry.arrayexpress.platform.miriam": {"id": "bioregistry.arrayexpress.platform.miriam", "sameas": "bioregistry.arrayexpress.platform", "homepage": "https://www.ebi.ac.uk/arrayexpress/", "prefix": "arrayexpress.platform", "name": "ArrayExpress Platform", "uri_format": "https://www.ebi.ac.uk/arrayexpress/arrays/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.arrayexpress.platform.n2t": {"id": "bioregistry.arrayexpress.platform.n2t", "sameas": "bioregistry.arrayexpress.platform", "homepage": "https://www.ebi.ac.uk/arrayexpress/", "prefix": "arrayexpress.platform", "name": "ArrayExpress Platform at EBI", "uri_format": "https://www.ebi.ac.uk/arrayexpress/arrays/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.arrayexpress.platform": {"id": "bioregistry.arrayexpress.platform", "homepage": null, "prefix": "arrayexpress.platform", "name": "ArrayExpress Platform at EBI", "uri_format": "https://www.ebi.ac.uk/arrayexpress/arrays/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.arraymap.miriam": {"id": "bioregistry.arraymap.miriam", "sameas": "bioregistry.arraymap", "homepage": "https://www.arraymap.org", "prefix": "arraymap", "name": "ArrayMap", "uri_format": "https://www.arraymap.org/pgx:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.arraymap.n2t": {"id": "bioregistry.arraymap.n2t", "sameas": "bioregistry.arraymap", "homepage": "https://www.arraymap.org", "prefix": "arraymap", "name": "ArrayMap", "uri_format": "https://www.arraymap.org/pgx:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.arraymap": {"id": "bioregistry.arraymap", "homepage": null, "prefix": "arraymap", "name": "arrayMap - Genomic Array Data for Cancer CNV Profiles", "uri_format": "https://www.arraymap.org/pgx:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.arxiv.miriam": {"id": "bioregistry.arxiv.miriam", "sameas": "bioregistry.arxiv", "homepage": "https://arxiv.org/", "prefix": "arxiv", "name": "arXiv", "uri_format": "https://arxiv.org/abs/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.arxiv.n2t": {"id": "bioregistry.arxiv.n2t", "sameas": "bioregistry.arxiv", "homepage": "https://arxiv.org/", "prefix": "arxiv", "name": "Cornell University arXiv", "uri_format": "https://arxiv.org/abs/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.arxiv.prefixcommons": {"id": "bioregistry.arxiv.prefixcommons", "sameas": "bioregistry.arxiv", "homepage": "http://arxiv.org", "prefix": "arxiv", "name": "arXiv", "uri_format": "http://arxiv.org/abs/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "prefixcommons"}, "bioregistry.arxiv.wikidata": {"id": "bioregistry.arxiv.wikidata", "sameas": "bioregistry.arxiv", "homepage": "http://arxiv.org/abs/", "prefix": "P818", "name": "arXiv ID", "uri_format": "http://arxiv.org/abs/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "wikidata"}, "bioregistry.arxiv": {"id": "bioregistry.arxiv", "homepage": null, "prefix": "arxiv", "name": "Cornell University arXiv", "uri_format": "https://arxiv.org/abs/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "bioregistry"}, "bioregistry.asap.miriam": {"id": "bioregistry.asap.miriam", "sameas": "bioregistry.asap", "homepage": "http://asap.ahabs.wisc.edu/asap/home.php", "prefix": "asap", "name": "ASAP", "uri_format": "http://asap.ahabs.wisc.edu/asap/feature_info.php?LocationID=WIS&FeatureID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.asap.n2t": {"id": "bioregistry.asap.n2t", "sameas": "bioregistry.asap", "homepage": "http://asap.ahabs.wisc.edu/asap/home.php", "prefix": "asap", "name": "ASAP at University of Wisconsin", "uri_format": "http://asap.ahabs.wisc.edu/asap/feature_info.php?LocationID=WIS&FeatureID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.asap.prefixcommons": {"id": "bioregistry.asap.prefixcommons", "sameas": "bioregistry.asap", "homepage": "https://asap.ahabs.wisc.edu/annotation/php/ASAP1.htm", "prefix": "asap", "name": "A Systematic Annotation Package", "uri_format": "https://asap.ahabs.wisc.edu/asap/feature_info.php?FeatureID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.asap.go": {"id": "bioregistry.asap.go", "sameas": "bioregistry.asap", "homepage": "https://asap.genetics.wisc.edu/asap/ASAP1.htm", "prefix": "ASAP", "name": "A Systematic Annotation Package for Community Analysis of Genomes", "uri_format": "https://asap.genetics.wisc.edu/asap/feature_info.php?FeatureID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.asap": {"id": "bioregistry.asap", "homepage": null, "prefix": "asap", "name": "A Systematic Annotation Package for Community Analysis of Genomes", "uri_format": "https://asap.genetics.wisc.edu/asap/feature_info.php?FeatureID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.ascl.miriam": {"id": "bioregistry.ascl.miriam", "sameas": "bioregistry.ascl", "homepage": "http://ascl.net/", "prefix": "ascl", "name": "Astrophysics Source Code Library", "uri_format": "http://ascl.net/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ascl.n2t": {"id": "bioregistry.ascl.n2t", "sameas": "bioregistry.ascl", "homepage": "http://ascl.net/", "prefix": "ascl", "name": "Astrophysics Source Code Library", "uri_format": "http://ascl.net/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ascl": {"id": "bioregistry.ascl", "homepage": null, "prefix": "ascl", "name": "Astrophysics Source Code Library", "uri_format": "http://ascl.net/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.asin.miriam": {"id": "bioregistry.asin.miriam", "sameas": "bioregistry.asin", "homepage": "https://www.amazon.co.uk/gp/help/customer/display.html/277-3416785-8259466?ie=UTF8&nodeId=898182", "prefix": "asin", "name": "Amazon Standard Identification Number (ASIN)", "uri_format": "https://amzn.com/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.asin.n2t": {"id": "bioregistry.asin.n2t", "sameas": "bioregistry.asin", "homepage": "https://www.amazon.co.uk/gp/help/customer/display.html/277-3416785-8259466?ie=UTF8&nodeId=898182", "prefix": "asin", "name": "Amazon Standard Identification Number (ASIN)", "uri_format": "https://amzn.com/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.asin": {"id": "bioregistry.asin", "homepage": null, "prefix": "asin", "name": "Amazon Standard Identification Number (ASIN)", "uri_format": "https://amzn.com/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.aspgd.locus.miriam": {"id": "bioregistry.aspgd.locus.miriam", "sameas": "bioregistry.aspgd.locus", "homepage": "http://www.aspgd.org/", "prefix": "aspgd.locus", "name": "AspGD Locus", "uri_format": "http://www.aspergillusgenome.org/cgi-bin/locus.pl?dbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.aspgd.locus.n2t": {"id": "bioregistry.aspgd.locus.n2t", "sameas": "bioregistry.aspgd.locus", "homepage": "http://www.aspgd.org/", "prefix": "aspgd.locus", "name": "AspGD at Stanford Medical School", "uri_format": "http://www.aspergillusgenome.org/cgi-bin/locus.pl?dbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.aspgd.locus.go": {"id": "bioregistry.aspgd.locus.go", "sameas": "bioregistry.aspgd.locus", "homepage": "http://www.aspergillusgenome.org/", "prefix": "AspGD_LOCUS", "name": "Aspergillus Genome Database", "uri_format": "http://www.aspergillusgenome.org/cgi-bin/locus.pl?locus=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.aspgd.locus.biolink": {"id": "bioregistry.aspgd.locus.biolink", "sameas": "bioregistry.aspgd.locus", "homepage": null, "prefix": "AspGD", "name": null, "uri_format": "http://www.aspergillusgenome.org/cgi-bin/locus.pl?dbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.aspgd.locus": {"id": "bioregistry.aspgd.locus", "homepage": null, "prefix": "aspgd.locus", "name": "AspGD at Stanford Medical School", "uri_format": "http://www.aspergillusgenome.org/cgi-bin/locus.pl?locus=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.aspgd.protein.miriam": {"id": "bioregistry.aspgd.protein.miriam", "sameas": "bioregistry.aspgd.protein", "homepage": "http://www.aspgd.org/", "prefix": "aspgd.protein", "name": "AspGD Protein", "uri_format": "http://www.aspergillusgenome.org/cgi-bin/protein/proteinPage.pl?dbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.aspgd.protein.n2t": {"id": "bioregistry.aspgd.protein.n2t", "sameas": "bioregistry.aspgd.protein", "homepage": "http://www.aspgd.org/", "prefix": "aspgd.protein", "name": "AspGD Protein at Stanford Medical School", "uri_format": "http://www.aspergillusgenome.org/cgi-bin/protein/proteinPage.pl?dbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.aspgd.protein": {"id": "bioregistry.aspgd.protein", "homepage": null, "prefix": "aspgd.protein", "name": "AspGD Protein at Stanford Medical School", "uri_format": "http://www.aspergillusgenome.org/cgi-bin/protein/proteinPage.pl?dbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.asrp.prefixcommons": {"id": "bioregistry.asrp.prefixcommons", "sameas": "bioregistry.asrp", "homepage": "http://asrp.cgrb.oregonstate.edu", "prefix": "asrp", "name": "Arabidopsis Small RNA Project", "uri_format": "http://asrp.cgrb.oregonstate.edu/db/sRNAdisplay.html?ASRP_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.asrp": {"id": "bioregistry.asrp", "homepage": "https://asrp.danforthcenter.org/", "prefix": "asrp", "name": "Arabidopsis Small RNA Project", "uri_format": "http://asrp.cgrb.oregonstate.edu/db/sRNAdisplay.html?ASRP_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.astd.prefixcommons": {"id": "bioregistry.astd.prefixcommons", "sameas": "bioregistry.astd", "homepage": "http://www.ebi.ac.uk/astd/", "prefix": "astd", "name": "Alternative Splicing and Transcript Diversity", "uri_format": "http://www.ebi.ac.uk/astd/geneview.html?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.astd": {"id": "bioregistry.astd", "homepage": null, "prefix": "astd", "name": "Alternative Splicing and Transcript Diversity", "uri_format": "http://www.ebi.ac.uk/astd/geneview.html?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.atc.miriam": {"id": "bioregistry.atc.miriam", "sameas": "bioregistry.atc", "homepage": "http://www.whocc.no/atc_ddd_index/", "prefix": "atc", "name": "Anatomical Therapeutic Chemical", "uri_format": "http://www.whocc.no/atc_ddd_index/?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.atc.n2t": {"id": "bioregistry.atc.n2t", "sameas": "bioregistry.atc", "homepage": "http://www.whocc.no/atc_ddd_index/", "prefix": "atc", "name": "Anatomical Therapeutic Chemical Index at WHO", "uri_format": "http://www.whocc.no/atc_ddd_index/?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.atc.prefixcommons": {"id": "bioregistry.atc.prefixcommons", "sameas": "bioregistry.atc", "homepage": "http://www.whocc.no/atc_ddd_index/", "prefix": "atc", "name": "Anatomical Therapeutic Chemical", "uri_format": "http://www.whocc.no/atc_ddd_index/?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences"], "authority": "prefixcommons"}, "bioregistry.atc.wikidata": {"id": "bioregistry.atc.wikidata", "sameas": "bioregistry.atc", "homepage": "https://www.whocc.no/", "prefix": "P267", "name": "ATC code", "uri_format": "https://www.whocc.no/atc_ddd_index/?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences"], "authority": "wikidata"}, "bioregistry.atc": {"id": "bioregistry.atc", "homepage": null, "prefix": "atc", "name": "Anatomical Therapeutic Chemical Classification System", "uri_format": "https://www.whocc.no/atc_ddd_index/?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences"], "authority": "bioregistry"}, "bioregistry.atcc.miriam": {"id": "bioregistry.atcc.miriam", "sameas": "bioregistry.atcc", "homepage": "http://www.atcc.org/", "prefix": "atcc", "name": "ATCC", "uri_format": "https://www.atcc.org/products/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.atcc.n2t": {"id": "bioregistry.atcc.n2t", "sameas": "bioregistry.atcc", "homepage": "http://www.atcc.org/", "prefix": "atcc", "name": "ATCC in Virginia", "uri_format": "http://www.lgcstandards-atcc.org/Products/All/$1.aspx", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.atcc.cellosaurus": {"id": "bioregistry.atcc.cellosaurus", "sameas": "bioregistry.atcc", "homepage": "https://www.atcc.org/", "prefix": "ATCC", "name": "American Type Culture Collection", "uri_format": "https://www.atcc.org/Products/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.atcc": {"id": "bioregistry.atcc", "homepage": "https://www.lgcstandards-atcc.org", "prefix": "atcc", "name": "American Type Culture Collection database", "uri_format": "https://www.atcc.org/products/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.atcvet.miriam": {"id": "bioregistry.atcvet.miriam", "sameas": "bioregistry.atcvet", "homepage": "http://www.whocc.no/atcvet/atcvet_index/", "prefix": "atcvet", "name": "Anatomical Therapeutic Chemical Vetinary", "uri_format": "http://www.whocc.no/atcvet/atcvet_index/?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.atcvet.n2t": {"id": "bioregistry.atcvet.n2t", "sameas": "bioregistry.atcvet", "homepage": "http://www.whocc.no/atcvet/atcvet_index/", "prefix": "atcvet", "name": "Anatomical Therapeutic Chemical Vet Index at WHO", "uri_format": "http://www.whocc.no/atcvet/atcvet_index/?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.atcvet": {"id": "bioregistry.atcvet", "homepage": null, "prefix": "atcvet", "name": "Anatomical Therapeutic Chemical Vet Index at WHO", "uri_format": "http://www.whocc.no/atcvet/atcvet_index/?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.atfdb.family.miriam": {"id": "bioregistry.atfdb.family.miriam", "sameas": "bioregistry.atfdb.family", "homepage": "http://www.bioguo.org/AnimalTFDB/family_index.php", "prefix": "atfdb.family", "name": "Animal TFDB Family", "uri_format": "http://www.bioguo.org/AnimalTFDB/family.php?fam=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.atfdb.family.n2t": {"id": "bioregistry.atfdb.family.n2t", "sameas": "bioregistry.atfdb.family", "homepage": "http://www.bioguo.org/AnimalTFDB/family_index.php", "prefix": "atfdb.family", "name": "Animal TFDB at Hubei Bioinformatics & Molecular Imaging Key Laboratory", "uri_format": "http://www.bioguo.org/AnimalTFDB/family.php?fam=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.atfdb.family": {"id": "bioregistry.atfdb.family", "homepage": null, "prefix": "atfdb.family", "name": "Animal TFDB at Hubei Bioinformatics & Molecular Imaging Key Laboratory", "uri_format": "http://www.bioguo.org/AnimalTFDB/family.php?fam=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.autdb.miriam": {"id": "bioregistry.autdb.miriam", "sameas": "bioregistry.autdb", "homepage": "http://autism.mindspec.org/autdb/", "prefix": "autdb", "name": "AutDB", "uri_format": "http://autism.mindspec.org/GeneDetail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.autdb.n2t": {"id": "bioregistry.autdb.n2t", "sameas": "bioregistry.autdb", "homepage": "http://autism.mindspec.org/autdb/", "prefix": "autdb", "name": "AutDB at MindSpec", "uri_format": "http://autism.mindspec.org/GeneDetail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.autdb": {"id": "bioregistry.autdb", "homepage": null, "prefix": "autdb", "name": "AutDB at MindSpec", "uri_format": "http://autism.mindspec.org/GeneDetail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bacdive.miriam": {"id": "bioregistry.bacdive.miriam", "sameas": "bioregistry.bacdive", "homepage": "https://bacdive.dsmz.de/", "prefix": "bacdive", "name": "Bacterial Diversity Metadatabase", "uri_format": "https://bacdive.dsmz.de/strain/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bacdive.n2t": {"id": "bioregistry.bacdive.n2t", "sameas": "bioregistry.bacdive", "homepage": "https://bacdive.dsmz.de/", "prefix": "bacdive", "name": "Bacterial Diversity Metadatabase", "uri_format": "https://bacdive.dsmz.de/strain/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bacdive.wikidata": {"id": "bioregistry.bacdive.wikidata", "sameas": "bioregistry.bacdive", "homepage": null, "prefix": "P2946", "name": "BacDive ID", "uri_format": "https://bacdive.dsmz.de/strain/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.bacdive": {"id": "bioregistry.bacdive", "homepage": null, "prefix": "bacdive", "name": "Bacterial Diversity Metadatabase", "uri_format": "https://bacdive.dsmz.de/strain/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bacmap.biog.miriam": {"id": "bioregistry.bacmap.biog.miriam", "sameas": "bioregistry.bacmap.biog", "homepage": "http://bacmap.wishartlab.com/", "prefix": "bacmap.biog", "name": "BacMap Biography", "uri_format": "http://bacmap.wishartlab.com/organisms/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bacmap.biog.n2t": {"id": "bioregistry.bacmap.biog.n2t", "sameas": "bioregistry.bacmap.biog", "homepage": "http://bacmap.wishartlab.com/", "prefix": "bacmap.biog", "name": "BacMap Biography at University of Alberta", "uri_format": "http://bacmap.wishartlab.com/organisms/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bacmap.biog": {"id": "bioregistry.bacmap.biog", "homepage": null, "prefix": "bacmap.biog", "name": "BacMap Biography at University of Alberta", "uri_format": "http://bacmap.wishartlab.com/organisms/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bacmap.map.miriam": {"id": "bioregistry.bacmap.map.miriam", "sameas": "bioregistry.bacmap.map", "homepage": "http://bacmap.wishartlab.com/", "prefix": "bacmap.map", "name": "BacMap Map", "uri_format": "http://bacmap.wishartlab.com/maps/$1/index.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bacmap.map.n2t": {"id": "bioregistry.bacmap.map.n2t", "sameas": "bioregistry.bacmap.map", "homepage": "http://bacmap.wishartlab.com/", "prefix": "bacmap.map", "name": "BacMap Genome Map at University of Alberta", "uri_format": "http://bacmap.wishartlab.com/maps/$1/index.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bacmap.map": {"id": "bioregistry.bacmap.map", "homepage": null, "prefix": "bacmap.map", "name": "BacMap Genome Map at University of Alberta", "uri_format": "http://bacmap.wishartlab.com/maps/$1/index.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bactibase.prefixcommons": {"id": "bioregistry.bactibase.prefixcommons", "sameas": "bioregistry.bactibase", "homepage": "http://bactibase.pfba-lab-tun.org/main.php", "prefix": "bactibase", "name": "Bactibase: database dedicated to bacteriocins", "uri_format": "http://bactibase.pfba-lab-tun.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.bactibase": {"id": "bioregistry.bactibase", "homepage": "http://bactibase.hammamilab.org", "prefix": "bactibase", "name": "Bactibase: database dedicated to bacteriocins", "uri_format": "http://bactibase.pfba-lab-tun.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.bao.miriam": {"id": "bioregistry.bao.miriam", "sameas": "bioregistry.bao", "homepage": "http://bioportal.bioontology.org/ontologies/BAO/", "prefix": "bao", "name": "BioAssay Ontology", "uri_format": "http://bioportal.bioontology.org/ontologies/BAO/bao:BAO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bao.n2t": {"id": "bioregistry.bao.n2t", "sameas": "bioregistry.bao", "homepage": "http://bioportal.bioontology.org/ontologies/BAO/", "prefix": "bao", "name": "BioAssay Ontology through BioPortal", "uri_format": "http://bioportal.bioontology.org/ontologies/BAO/bao:BAO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bao": {"id": "bioregistry.bao", "homepage": null, "prefix": "bao", "name": "BioAssay Ontology through BioPortal", "uri_format": "http://bioportal.bioontology.org/ontologies/BAO/bao:BAO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bartoc.wikidata": {"id": "bioregistry.bartoc.wikidata", "sameas": "bioregistry.bartoc", "homepage": "https://bartoc.org/", "prefix": "P2689", "name": "BARTOC ID", "uri_format": "https://bartoc.org/en/node/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.bartoc": {"id": "bioregistry.bartoc", "homepage": "https://bartoc.org", "prefix": "bartoc", "name": "Basel Register of Thesauri, Ontologies and Classifications", "uri_format": "https://bartoc.org/en/node/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bbkg.miriam": {"id": "bioregistry.bbkg.miriam", "sameas": "bioregistry.bbkg", "homepage": "https://portal.bluebrain.epfl.ch", "prefix": "bbkg", "name": "Blue Brain Project Knowledge Graph", "uri_format": "https://bbp.epfl.ch/nexus/web/studios/public/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bbkg": {"id": "bioregistry.bbkg", "homepage": null, "prefix": "bbkg", "name": "Blue Brain Project Knowledge Graph", "uri_format": "https://bbp.epfl.ch/nexus/web/studios/public/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bbtp.miriam": {"id": "bioregistry.bbtp.miriam", "sameas": "bioregistry.bbtp", "homepage": "https://portal.bluebrain.epfl.ch", "prefix": "bbtp", "name": "Blue Brain Project Topological sampling Knowledge Graph", "uri_format": "https://bbp.epfl.ch/nexus/web/studios/public/topological-sampling/studios/data:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bbtp": {"id": "bioregistry.bbtp", "homepage": null, "prefix": "bbtp", "name": "Blue Brain Project Topological sampling Knowledge Graph", "uri_format": "https://bbp.epfl.ch/nexus/web/studios/public/topological-sampling/studios/data:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bcgo.cellosaurus": {"id": "bioregistry.bcgo.cellosaurus", "sameas": "bioregistry.bcgo", "homepage": "https://github.com/obi-bcgo/bcgo", "prefix": "BCGO", "name": "Beta Cell Genomics Ontology", "uri_format": "http://www.ontobee.org/ontology/BCGO?iri=http://purl.obolibrary.org/obo/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.bcgo": {"id": "bioregistry.bcgo", "homepage": null, "prefix": "bcgo", "name": "Breast Cancer Grading Ontology", "uri_format": "http://www.ontobee.org/ontology/BCGO?iri=http://purl.obolibrary.org/obo/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bcrc.cellosaurus": {"id": "bioregistry.bcrc.cellosaurus", "sameas": "bioregistry.bcrc", "homepage": "https://catalog.bcrc.firdi.org.tw/", "prefix": "BCRC", "name": "Taiwan Bioresource Collection and Research Center", "uri_format": "https://catalog.bcrc.firdi.org.tw/BcrcContent?bid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.bcrc": {"id": "bioregistry.bcrc", "homepage": "https://catalog.bcrc.firdi.org.tw", "prefix": "bcrc", "name": "Taiwan Bioresource Collection and Research Center", "uri_format": "https://catalog.bcrc.firdi.org.tw/BcrcContent?bid=$1", "source": "bioregistry.io", "subjects": ["cell biology"], "authority": "bioregistry"}, "bioregistry.bcrj.cellosaurus": {"id": "bioregistry.bcrj.cellosaurus", "sameas": "bioregistry.bcrj", "homepage": "https://bcrj.org.br/pesquisa/", "prefix": "BCRJ", "name": "Banco de Celulas do Rio de Janeiro", "uri_format": "http://bcrj.org.br/celula/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.bcrj": {"id": "bioregistry.bcrj", "homepage": null, "prefix": "bcrj", "name": "Banco de Celulas do Rio de Janeiro", "uri_format": "http://bcrj.org.br/celula/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bdgp.est.miriam": {"id": "bioregistry.bdgp.est.miriam", "sameas": "bioregistry.bdgp.est", "homepage": "https://www.ncbi.nlm.nih.gov/dbEST/index.html", "prefix": "bdgp.est", "name": "BDGP EST", "uri_format": "https://www.ncbi.nlm.nih.gov/nucest/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bdgp.est.n2t": {"id": "bioregistry.bdgp.est.n2t", "sameas": "bioregistry.bdgp.est", "homepage": "https://www.ncbi.nlm.nih.gov/dbEST/index.html", "prefix": "bdgp.est", "name": "BDGP EST at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/nucest/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bdgp.est": {"id": "bioregistry.bdgp.est", "homepage": null, "prefix": "bdgp.est", "name": "Berkeley Drosophila Genome Project EST database", "uri_format": "https://www.ncbi.nlm.nih.gov/nucest/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.bdgp.insertion.miriam": {"id": "bioregistry.bdgp.insertion.miriam", "sameas": "bioregistry.bdgp.insertion", "homepage": "http://flypush.imgen.bcm.tmc.edu/pscreen/", "prefix": "bdgp.insertion", "name": "BDGP insertion DB", "uri_format": "http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bdgp.insertion.n2t": {"id": "bioregistry.bdgp.insertion.n2t", "sameas": "bioregistry.bdgp.insertion", "homepage": "http://flypush.imgen.bcm.tmc.edu/pscreen/", "prefix": "bdgp.insertion", "name": "BDGP Gene Disruption Project", "uri_format": "http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bdgp.insertion.prefixcommons": {"id": "bioregistry.bdgp.insertion.prefixcommons", "sameas": "bioregistry.bdgp.insertion", "homepage": null, "prefix": "bdgp", "name": "Drosphila Gene Disruption Database", "uri_format": "http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.bdgp.insertion": {"id": "bioregistry.bdgp.insertion", "homepage": null, "prefix": "bdgp.insertion", "name": "Drosphila Gene Disruption Database", "uri_format": "http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.bdsc.miriam": {"id": "bioregistry.bdsc.miriam", "sameas": "bioregistry.bdsc", "homepage": "https://bdsc.indiana.edu/about/mission.html", "prefix": "bdsc", "name": "Bloomington Drosophila Stock Center", "uri_format": "https://bdsc.indiana.edu/stocks/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bdsc.n2t": {"id": "bioregistry.bdsc.n2t", "sameas": "bioregistry.bdsc", "homepage": "https://bdsc.indiana.edu/about/mission.html", "prefix": "bdsc", "name": "BDSC at Indiana University", "uri_format": "https://bdsc.indiana.edu/stocks/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bdsc": {"id": "bioregistry.bdsc", "homepage": null, "prefix": "bdsc", "name": "Bloomington Drosophila Stock Center", "uri_format": "https://bdsc.indiana.edu/stocks/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.beetlebase.miriam": {"id": "bioregistry.beetlebase.miriam", "sameas": "bioregistry.beetlebase", "homepage": "http://beetlebase.org/", "prefix": "beetlebase", "name": "BeetleBase", "uri_format": "http://beetlebase.org/cgi-bin/gbrowse/BeetleBase3.gff3/?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.beetlebase.n2t": {"id": "bioregistry.beetlebase.n2t", "sameas": "bioregistry.beetlebase", "homepage": "http://beetlebase.org/", "prefix": "beetlebase", "name": "BeetleBase at Kansas State University", "uri_format": "http://beetlebase.org/cgi-bin/gbrowse/BeetleBase3.gff3/?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.beetlebase.prefixcommons": {"id": "bioregistry.beetlebase.prefixcommons", "sameas": "bioregistry.beetlebase", "homepage": "http://www.beetlebase.org/", "prefix": "beetlebase", "name": "BeetleBase", "uri_format": "http://www.beetlebase.org/cgi-bin/gbrowse/BeetleBase3.gff3/?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.beetlebase": {"id": "bioregistry.beetlebase", "homepage": null, "prefix": "beetlebase", "name": "Tribolium Genome Database -- Insertion", "uri_format": "http://www.beetlebase.org/cgi-bin/gbrowse/BeetleBase3.gff3/?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.begdb.miriam": {"id": "bioregistry.begdb.miriam", "sameas": "bioregistry.begdb", "homepage": "http://www.begdb.com", "prefix": "begdb", "name": "Benchmark Energy & Geometry Database", "uri_format": "http://www.begdb.com/index.php?action=oneMolecule&state=show&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.begdb.n2t": {"id": "bioregistry.begdb.n2t", "sameas": "bioregistry.begdb", "homepage": "http://www.begdb.com", "prefix": "begdb", "name": "Benchmark Energy & Geometry Database", "uri_format": "http://www.begdb.com/index.php?action=oneMolecule&state=show&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.begdb": {"id": "bioregistry.begdb", "homepage": null, "prefix": "begdb", "name": "The Benchmark Energy & Geometry Database", "uri_format": "http://www.begdb.com/index.php?action=oneMolecule&state=show&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.beiresources.cellosaurus": {"id": "bioregistry.beiresources.cellosaurus", "sameas": "bioregistry.beiresources", "homepage": "https://www.beiresources.org/Home.aspx", "prefix": "BEI_Resources", "name": "BEI Resources", "uri_format": "https://www.beiresources.org/Catalog/cellBanks/$1.aspx", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.beiresources": {"id": "bioregistry.beiresources", "homepage": "https://www.beiresources.org", "prefix": "beiresources", "name": "BEI Resources", "uri_format": "https://www.beiresources.org/Catalog/cellBanks/$1.aspx", "source": "bioregistry.io", "subjects": ["cell biology"], "authority": "bioregistry"}, "bioregistry.bgee.family.miriam": {"id": "bioregistry.bgee.family.miriam", "sameas": "bioregistry.bgee.family", "homepage": "http://bgee.unil.ch/bgee/bgee", "prefix": "bgee.family", "name": "Bgee family", "uri_format": "http://bgee.unil.ch/bgee/bgee?page=gene_family&action=family_details&gene_family_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bgee.family.n2t": {"id": "bioregistry.bgee.family.n2t", "sameas": "bioregistry.bgee.family", "homepage": "http://bgee.unil.ch/bgee/bgee", "prefix": "bgee.family", "name": "Bgee at Lausanne", "uri_format": "http://bgee.unil.ch/bgee/bgee?page=gene_family&action=family_details&gene_family_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bgee.family": {"id": "bioregistry.bgee.family", "homepage": null, "prefix": "bgee.family", "name": "Bgee at Lausanne", "uri_format": "http://bgee.unil.ch/bgee/bgee?page=gene_family&action=family_details&gene_family_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bgee.gene.miriam": {"id": "bioregistry.bgee.gene.miriam", "sameas": "bioregistry.bgee.gene", "homepage": "https://www.bgee.org/", "prefix": "bgee.gene", "name": "Bgee gene", "uri_format": "https://www.bgee.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bgee.gene.n2t": {"id": "bioregistry.bgee.gene.n2t", "sameas": "bioregistry.bgee.gene", "homepage": "https://bgee.org/", "prefix": "bgee.gene", "name": "Bgee gene", "uri_format": "https://bgee.org/?page=gene&gene_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bgee.gene.prefixcommons": {"id": "bioregistry.bgee.gene.prefixcommons", "sameas": "bioregistry.bgee.gene", "homepage": "http://bgee.unil.ch", "prefix": "bgee", "name": "Bgee DataBase for Gene Expression Evolution", "uri_format": "http://bgee.unil.ch/bgee/bgee?page=gene&action=expression&gene_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.bgee.gene": {"id": "bioregistry.bgee.gene", "homepage": "https://www.bgee.org", "prefix": "bgee.gene", "name": "Bgee DataBase for Gene Expression Evolution", "uri_format": "https://www.bgee.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.bgee.organ.miriam": {"id": "bioregistry.bgee.organ.miriam", "sameas": "bioregistry.bgee.organ", "homepage": "http://bgee.unil.ch/bgee/bgee", "prefix": "bgee.organ", "name": "Bgee organ", "uri_format": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organ_details&organ_id=$1&organ_children=on", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bgee.organ.n2t": {"id": "bioregistry.bgee.organ.n2t", "sameas": "bioregistry.bgee.organ", "homepage": "http://bgee.unil.ch/bgee/bgee", "prefix": "bgee.organ", "name": "Bgee at Lausanne", "uri_format": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organ_details&organ_id=$1&organ_children=on", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bgee.organ": {"id": "bioregistry.bgee.organ", "homepage": null, "prefix": "bgee.organ", "name": "Bgee at Lausanne", "uri_format": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organ_details&organ_id=$1&organ_children=on", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bgee.stage.miriam": {"id": "bioregistry.bgee.stage.miriam", "sameas": "bioregistry.bgee.stage", "homepage": "http://bgee.unil.ch/bgee/bgee", "prefix": "bgee.stage", "name": "Bgee stage", "uri_format": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organs&stage_id=$1&stage_children=on", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bgee.stage.n2t": {"id": "bioregistry.bgee.stage.n2t", "sameas": "bioregistry.bgee.stage", "homepage": "http://bgee.unil.ch/bgee/bgee", "prefix": "bgee.stage", "name": "Bgee at Lausanne", "uri_format": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organs&stage_id=$1&stage_children=on", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bgee.stage": {"id": "bioregistry.bgee.stage", "homepage": null, "prefix": "bgee.stage", "name": "Bgee at Lausanne", "uri_format": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organs&stage_id=$1&stage_children=on", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bigg.compartment.miriam": {"id": "bioregistry.bigg.compartment.miriam", "sameas": "bioregistry.bigg.compartment", "homepage": "http://bigg.ucsd.edu/compartments/", "prefix": "bigg.compartment", "name": "BiGG Compartment", "uri_format": "http://bigg.ucsd.edu/compartments/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bigg.compartment.n2t": {"id": "bioregistry.bigg.compartment.n2t", "sameas": "bioregistry.bigg.compartment", "homepage": "http://bigg.ucsd.edu/compartments/", "prefix": "bigg.compartment", "name": "BiGG Compartment at University of California", "uri_format": "http://bigg.ucsd.edu/compartments/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bigg.compartment": {"id": "bioregistry.bigg.compartment", "homepage": null, "prefix": "bigg.compartment", "name": "BiGG Compartment at University of California", "uri_format": "http://bigg.ucsd.edu/compartments/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bigg.metabolite.miriam": {"id": "bioregistry.bigg.metabolite.miriam", "sameas": "bioregistry.bigg.metabolite", "homepage": "http://bigg.ucsd.edu/universal/metabolites", "prefix": "bigg.metabolite", "name": "BiGG Metabolite", "uri_format": "http://bigg.ucsd.edu/models/universal/metabolites/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bigg.metabolite.n2t": {"id": "bioregistry.bigg.metabolite.n2t", "sameas": "bioregistry.bigg.metabolite", "homepage": "http://bigg.ucsd.edu/universal/metabolites", "prefix": "bigg.metabolite", "name": "BiGG Metabolite at University of Cakifornia", "uri_format": "http://bigg.ucsd.edu/models/universal/metabolites/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bigg.metabolite": {"id": "bioregistry.bigg.metabolite", "homepage": null, "prefix": "bigg.metabolite", "name": "BiGG Metabolite at University of Cakifornia", "uri_format": "http://bigg.ucsd.edu/models/universal/metabolites/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bigg.model.miriam": {"id": "bioregistry.bigg.model.miriam", "sameas": "bioregistry.bigg.model", "homepage": "http://bigg.ucsd.edu/models", "prefix": "bigg.model", "name": "BiGG Model", "uri_format": "http://bigg.ucsd.edu/models/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bigg.model.n2t": {"id": "bioregistry.bigg.model.n2t", "sameas": "bioregistry.bigg.model", "homepage": "http://bigg.ucsd.edu/models", "prefix": "bigg.model", "name": "BiGG Model at University of California", "uri_format": "http://bigg.ucsd.edu/models/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bigg.model": {"id": "bioregistry.bigg.model", "homepage": null, "prefix": "bigg.model", "name": "BiGG Model at University of California", "uri_format": "http://bigg.ucsd.edu/models/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bigg.reaction.miriam": {"id": "bioregistry.bigg.reaction.miriam", "sameas": "bioregistry.bigg.reaction", "homepage": "http://bigg.ucsd.edu/universal/reactions", "prefix": "bigg.reaction", "name": "BiGG Reaction", "uri_format": "http://bigg.ucsd.edu/models/universal/reactions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bigg.reaction.n2t": {"id": "bioregistry.bigg.reaction.n2t", "sameas": "bioregistry.bigg.reaction", "homepage": "http://bigg.ucsd.edu/universal/reactions", "prefix": "bigg.reaction", "name": "BiGG Reaction at University of California", "uri_format": "http://bigg.ucsd.edu/models/universal/reactions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bigg.reaction": {"id": "bioregistry.bigg.reaction", "homepage": null, "prefix": "bigg.reaction", "name": "BiGG Reaction at University of California", "uri_format": "http://bigg.ucsd.edu/models/universal/reactions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bila.prefixcommons": {"id": "bioregistry.bila.prefixcommons", "sameas": "bioregistry.bila", "homepage": "http://4dx.embl.de/4DXpress", "prefix": "4dxpress", "name": "4DXpress gene expression in major animals", "uri_format": "http://4dx.embl.de/4DXpress/reg/all/cview/gene.do?geneID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.bila": {"id": "bioregistry.bila", "homepage": null, "prefix": "bila", "name": "4DXpress gene expression in major animals", "uri_format": "http://4dx.embl.de/4DXpress/reg/all/cview/gene.do?geneID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.bind.prefixcommons": {"id": "bioregistry.bind.prefixcommons", "sameas": "bioregistry.bind", "homepage": "http://bond.unleashedinformatics.com/", "prefix": "bind", "name": "Biomolecular Interaction Network Databank", "uri_format": "http://www.bind.ca/Action?identifier=bindid&idsearch=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.bind": {"id": "bioregistry.bind", "homepage": "http://bind.ca", "prefix": "bind", "name": "Biomolecular Interaction Network Databank", "uri_format": "http://www.bind.ca/Action?identifier=bindid&idsearch=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bindingdb.miriam": {"id": "bioregistry.bindingdb.miriam", "sameas": "bioregistry.bindingdb", "homepage": "https://www.bindingdb.org", "prefix": "bindingdb", "name": "BindingDB", "uri_format": "http://www.bindingdb.org/compact/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bindingdb.n2t": {"id": "bioregistry.bindingdb.n2t", "sameas": "bioregistry.bindingdb", "homepage": "https://www.bindingdb.org", "prefix": "bindingdb", "name": "BindingDB", "uri_format": "http://www.bindingdb.org/compact/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bindingdb.prefixcommons": {"id": "bioregistry.bindingdb.prefixcommons", "sameas": "bioregistry.bindingdb", "homepage": "http://www.bindingdb.org", "prefix": "bindingdb", "name": "BindingDB database of measured binding affinities", "uri_format": "http://www.bindingdb.org/bind/chemsearch/marvin/MolStructure.jsp?monomerid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.bindingdb.uniprot": {"id": "bioregistry.bindingdb.uniprot", "sameas": "bioregistry.bindingdb", "homepage": "https://www.bindingdb.org/", "prefix": "DB-0127", "name": "BindingDB database of measured binding affinities", "uri_format": "https://www.bindingdb.org/uniprot/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.bindingdb": {"id": "bioregistry.bindingdb", "homepage": null, "prefix": "bindingdb", "name": "BindingDB database of measured binding affinities", "uri_format": "https://www.bindingdb.org/uniprot/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.biocarta.pathway.miriam": {"id": "bioregistry.biocarta.pathway.miriam", "sameas": "bioregistry.biocarta.pathway", "homepage": "https://www.biocarta.com/", "prefix": "biocarta.pathway", "name": "BioCarta Pathway", "uri_format": "https://cgap.nci.nih.gov/Pathways/BioCarta/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biocarta.pathway.n2t": {"id": "bioregistry.biocarta.pathway.n2t", "sameas": "bioregistry.biocarta.pathway", "homepage": "https://www.biocarta.com/", "prefix": "biocarta.pathway", "name": "BioCarta Pathway at NCI", "uri_format": "https://cgap.nci.nih.gov/Pathways/BioCarta/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.biocarta.pathway": {"id": "bioregistry.biocarta.pathway", "homepage": null, "prefix": "biocarta.pathway", "name": "BioCarta Pathway at NCI", "uri_format": "https://cgap.nci.nih.gov/Pathways/BioCarta/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.biocatalogue.service.miriam": {"id": "bioregistry.biocatalogue.service.miriam", "sameas": "bioregistry.biocatalogue.service", "homepage": "https://www.biocatalogue.org/", "prefix": "biocatalogue.service", "name": "BioCatalogue", "uri_format": "https://www.biocatalogue.org/services/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biocatalogue.service.n2t": {"id": "bioregistry.biocatalogue.service.n2t", "sameas": "bioregistry.biocatalogue.service", "homepage": "https://www.biocatalogue.org/", "prefix": "biocatalogue.service", "name": "BioCatalogue at EMBL-EBI", "uri_format": "https://www.biocatalogue.org/services/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.biocatalogue.service.prefixcommons": {"id": "bioregistry.biocatalogue.service.prefixcommons", "sameas": "bioregistry.biocatalogue.service", "homepage": "http://www.biocatalogue.org/", "prefix": "biocatalogue", "name": "Curated catalogue of Life Science Web Services", "uri_format": "http://www.biocatalogue.org/services/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.biocatalogue.service": {"id": "bioregistry.biocatalogue.service", "homepage": null, "prefix": "biocatalogue.service", "name": "Curated catalogue of Life Science Web Services", "uri_format": "https://www.biocatalogue.org/services/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.biocyc.miriam": {"id": "bioregistry.biocyc.miriam", "sameas": "bioregistry.biocyc", "homepage": "http://biocyc.org", "prefix": "biocyc", "name": "BioCyc", "uri_format": "http://biocyc.org/getid?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biocyc.n2t": {"id": "bioregistry.biocyc.n2t", "sameas": "bioregistry.biocyc", "homepage": "http://biocyc.org", "prefix": "biocyc", "name": "BioCyc at SRI International", "uri_format": "http://biocyc.org/getid?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.biocyc.prefixcommons": {"id": "bioregistry.biocyc.prefixcommons", "sameas": "bioregistry.biocyc", "homepage": "http://www.biocyc.org/", "prefix": "biocyc", "name": "BioCyc Database Collection", "uri_format": "http://biocyc.org/ECOLI/NEW-IMAGE?object=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.biocyc.go": {"id": "bioregistry.biocyc.go", "sameas": "bioregistry.biocyc", "homepage": "http://biocyc.org/", "prefix": "BioCyc", "name": "BioCyc collection of metabolic pathway databases", "uri_format": "http://biocyc.org/META/NEW-IMAGE?type=PATHWAY&object=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.biocyc.uniprot": {"id": "bioregistry.biocyc.uniprot", "sameas": "bioregistry.biocyc", "homepage": "https://www.biocyc.org/", "prefix": "DB-0005", "name": "BioCyc Collection of Pathway/Genome Databases", "uri_format": "https://biocyc.org/getid?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.biocyc": {"id": "bioregistry.biocyc", "homepage": null, "prefix": "biocyc", "name": "BioCyc collection of metabolic pathway databases", "uri_format": "https://biocyc.org/getid?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.biogrid.miriam": {"id": "bioregistry.biogrid.miriam", "sameas": "bioregistry.biogrid", "homepage": "http://thebiogrid.org/", "prefix": "biogrid", "name": "BioGRID", "uri_format": "http://thebiogrid.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biogrid.n2t": {"id": "bioregistry.biogrid.n2t", "sameas": "bioregistry.biogrid", "homepage": "http://thebiogrid.org/", "prefix": "biogrid", "name": "BioGRID database of physical and genetic interactions", "uri_format": "http://thebiogrid.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.biogrid.prefixcommons": {"id": "bioregistry.biogrid.prefixcommons", "sameas": "bioregistry.biogrid", "homepage": "http://www.thebiogrid.org", "prefix": "biogrid", "name": "Biological General Repository for Interaction Datasets", "uri_format": "http://thebiogrid.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.biogrid.uniprot": {"id": "bioregistry.biogrid.uniprot", "sameas": "bioregistry.biogrid", "homepage": "https://thebiogrid.org/", "prefix": "DB-0184", "name": "The Biological General Repository for Interaction Datasets (BioGRID)", "uri_format": "https://thebiogrid.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "uniprot"}, "bioregistry.biogrid.biocontext": {"id": "bioregistry.biogrid.biocontext", "sameas": "bioregistry.biogrid", "homepage": null, "prefix": "BIOGRID", "name": null, "uri_format": "http://thebiogrid.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "biocontext"}, "bioregistry.biogrid": {"id": "bioregistry.biogrid", "homepage": null, "prefix": "biogrid", "name": "The Biological General Repository for Interaction Datasets (BioGRID)", "uri_format": "https://thebiogrid.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.biokc.miriam": {"id": "bioregistry.biokc.miriam", "sameas": "bioregistry.biokc", "homepage": "https://wwwen.uni.lu/lcsb", "prefix": "biokc", "name": "BioKC", "uri_format": "https://biokb.lcsb.uni.lu/fact/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biokc": {"id": "bioregistry.biokc", "homepage": null, "prefix": "biokc", "name": "BioKC", "uri_format": "https://biokb.lcsb.uni.lu/fact/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.biolink.miriam": {"id": "bioregistry.biolink.miriam", "sameas": "bioregistry.biolink", "homepage": "https://biolink.github.io/biolink-model", "prefix": "biolink", "name": "BioLink Model", "uri_format": "https://w3id.org/biolink/vocab/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biolink.biolink": {"id": "bioregistry.biolink.biolink", "sameas": "bioregistry.biolink", "homepage": null, "prefix": "biolink", "name": null, "uri_format": "https://w3id.org/biolink/vocab/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.biolink": {"id": "bioregistry.biolink", "homepage": "https://biolink.github.io/biolink-model/", "prefix": "biolink", "name": "BioLink Model", "uri_format": "https://w3id.org/biolink/vocab/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.biomagresbank.prefixcommons": {"id": "bioregistry.biomagresbank.prefixcommons", "sameas": "bioregistry.biomagresbank", "homepage": "http://www.bmrb.wisc.edu/", "prefix": "biomagresbank", "name": "BioMagResBank", "uri_format": "http://www.bmrb.wisc.edu/data_library/generate_summary.php?bmrbId=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.biomagresbank": {"id": "bioregistry.biomagresbank", "homepage": null, "prefix": "biomagresbank", "name": "BioMagResBank", "uri_format": "http://www.bmrb.wisc.edu/data_library/generate_summary.php?bmrbId=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.biominder.miriam": {"id": "bioregistry.biominder.miriam", "sameas": "bioregistry.biominder", "homepage": "https://datalab.rwth-aachen.de/MINDER", "prefix": "biominder", "name": "Bio-MINDER Tissue Database", "uri_format": "https://datalab.rwth-aachen.de/MINDER/resource/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biominder.n2t": {"id": "bioregistry.biominder.n2t", "sameas": "bioregistry.biominder", "homepage": "https://datalab.rwth-aachen.de/MINDER", "prefix": "biominder", "name": "Bio-MINDER Tissue Database", "uri_format": "https://datalab.rwth-aachen.de/MINDER/resource/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.biominder": {"id": "bioregistry.biominder", "homepage": null, "prefix": "biominder", "name": "Bio-MINDER Tissue Database", "uri_format": "https://datalab.rwth-aachen.de/MINDER/resource/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.biomodels.db.miriam": {"id": "bioregistry.biomodels.db.miriam", "sameas": "bioregistry.biomodels.db", "homepage": "https://www.ebi.ac.uk/biomodels/", "prefix": "biomodels.db", "name": "BioModels Database", "uri_format": "https://www.ebi.ac.uk/biomodels/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biomodels.db.n2t": {"id": "bioregistry.biomodels.db.n2t", "sameas": "bioregistry.biomodels.db", "homepage": "https://www.ebi.ac.uk/biomodels/", "prefix": "biomodels.db", "name": "BioModels Database", "uri_format": "https://www.ebi.ac.uk/biomodels/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.biomodels.db.prefixcommons": {"id": "bioregistry.biomodels.db.prefixcommons", "sameas": "bioregistry.biomodels.db", "homepage": "http://www.ebi.ac.uk/biomodels/", "prefix": "biomodels", "name": "A Database of Annotated Published Models", "uri_format": "http://www.ebi.ac.uk/biomodels-main/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.biomodels.db.go": {"id": "bioregistry.biomodels.db.go", "sameas": "bioregistry.biomodels.db", "homepage": "https://www.ebi.ac.uk/biomodels/", "prefix": "BIOMD", "name": "BioModels Database", "uri_format": "https://www.ebi.ac.uk/biomodels/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.biomodels.db": {"id": "bioregistry.biomodels.db", "homepage": null, "prefix": "biomodels.db", "name": "A Database of Annotated Published Models", "uri_format": "https://www.ebi.ac.uk/biomodels/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.biomodels.kisao.miriam": {"id": "bioregistry.biomodels.kisao.miriam", "sameas": "bioregistry.biomodels.kisao", "homepage": "http://bioportal.bioontology.org/ontologies/KISAO", "prefix": "biomodels.kisao", "name": "KiSAO", "uri_format": "http://purl.bioontology.org/ontology/KISAO/kisao:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biomodels.kisao.n2t": {"id": "bioregistry.biomodels.kisao.n2t", "sameas": "bioregistry.biomodels.kisao", "homepage": "http://bioportal.bioontology.org/ontologies/KISAO", "prefix": "biomodels.kisao", "name": "KiSAO via NCBO's Bioportal", "uri_format": "http://purl.bioontology.org/ontology/KISAO/kisao:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.biomodels.kisao": {"id": "bioregistry.biomodels.kisao", "homepage": null, "prefix": "biomodels.kisao", "name": "Kinetic Simulation Algorithm Ontology", "uri_format": "http://purl.bioontology.org/ontology/KISAO/kisao:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.biomodels.teddy.miriam": {"id": "bioregistry.biomodels.teddy.miriam", "sameas": "bioregistry.biomodels.teddy", "homepage": "http://teddyontology.sourceforge.net/", "prefix": "biomodels.teddy", "name": "TEDDY", "uri_format": "http://purl.bioontology.org/ontology/TEDDY/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biomodels.teddy.n2t": {"id": "bioregistry.biomodels.teddy.n2t", "sameas": "bioregistry.biomodels.teddy", "homepage": "http://teddyontology.sourceforge.net/", "prefix": "biomodels.teddy", "name": "TEDDY through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/TEDDY/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.biomodels.teddy": {"id": "bioregistry.biomodels.teddy", "homepage": null, "prefix": "biomodels.teddy", "name": "Terminology for the Description of Dynamics", "uri_format": "http://purl.bioontology.org/ontology/TEDDY/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.biomodels.vocabulary.miriam": {"id": "bioregistry.biomodels.vocabulary.miriam", "sameas": "bioregistry.biomodels.vocabulary", "homepage": "http://biomodels.net/rdf/vocabulary.rdf", "prefix": "biomodels.vocabulary", "name": "SBML RDF Vocabulary", "uri_format": "http://biomodels.net/rdf/vocabulary.rdf#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biomodels.vocabulary.n2t": {"id": "bioregistry.biomodels.vocabulary.n2t", "sameas": "bioregistry.biomodels.vocabulary", "homepage": "http://biomodels.net/rdf/vocabulary.rdf", "prefix": "biomodels.vocabulary", "name": "Vocabulary via BioModels.net", "uri_format": "http://biomodels.net/rdf/vocabulary.rdf#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.biomodels.vocabulary": {"id": "bioregistry.biomodels.vocabulary", "homepage": null, "prefix": "biomodels.vocabulary", "name": "Vocabulary via BioModels.net", "uri_format": "http://biomodels.net/rdf/vocabulary.rdf#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bionumbers.miriam": {"id": "bioregistry.bionumbers.miriam", "sameas": "bioregistry.bionumbers", "homepage": "https://bionumbers.hms.harvard.edu", "prefix": "bionumbers", "name": "BioNumbers", "uri_format": "https://bionumbers.hms.harvard.edu/bionumber.aspx?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bionumbers.n2t": {"id": "bioregistry.bionumbers.n2t", "sameas": "bioregistry.bionumbers", "homepage": "https://bionumbers.hms.harvard.edu", "prefix": "bionumbers", "name": "BioNumbers database", "uri_format": "https://bionumbers.hms.harvard.edu/bionumber.aspx?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bionumbers.prefixcommons": {"id": "bioregistry.bionumbers.prefixcommons", "sameas": "bioregistry.bionumbers", "homepage": "http://www.bionumbers.hms.harvard.edu/search.aspx", "prefix": "bionumbers", "name": "The Database of Useful Biological Numbers", "uri_format": "http://www.bionumbers.hms.harvard.edu/bionumber.aspx?s=y&id=$1&ver=1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.bionumbers": {"id": "bioregistry.bionumbers", "homepage": null, "prefix": "bionumbers", "name": "The Database of Useful Biological Numbers", "uri_format": "https://bionumbers.hms.harvard.edu/bionumber.aspx?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.biopixie.prefixcommons": {"id": "bioregistry.biopixie.prefixcommons", "sameas": "bioregistry.biopixie", "homepage": "http://pixie.princeton.edu/pixie/", "prefix": "biopixie", "name": "biological Process Inference from eXperimental Interaction Evidence/Microarray Experiment Functional Integration Technology", "uri_format": "http://avis.princeton.edu/pixie/viewgraph.php?graphID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.biopixie": {"id": "bioregistry.biopixie", "homepage": null, "prefix": "biopixie", "name": "biological Process Inference from eXperimental Interaction Evidence/Microarray Experiment Functional Integration Technology", "uri_format": "http://avis.princeton.edu/pixie/viewgraph.php?graphID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.bioportal.miriam": {"id": "bioregistry.bioportal.miriam", "sameas": "bioregistry.bioportal", "homepage": "http://bioportal.bioontology.org/", "prefix": "bioportal", "name": "BioPortal", "uri_format": "http://bioportal.bioontology.org/ontologies/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bioportal.n2t": {"id": "bioregistry.bioportal.n2t", "sameas": "bioregistry.bioportal", "homepage": "http://bioportal.bioontology.org/", "prefix": "bioportal", "name": "BioPortal at National Center for Biomedical Ontology", "uri_format": "http://bioportal.bioontology.org/ontologies/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bioportal.prefixcommons": {"id": "bioregistry.bioportal.prefixcommons", "sameas": "bioregistry.bioportal", "homepage": "http://bioportal.bioontology.org/", "prefix": "bioportal", "name": "BioPortal", "uri_format": "http://bioportal.bioontology.org/ontologies/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.bioportal": {"id": "bioregistry.bioportal", "homepage": null, "prefix": "bioportal", "name": "BioPortal at National Center for Biomedical Ontology", "uri_format": "http://bioportal.bioontology.org/ontologies/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bioproject.miriam": {"id": "bioregistry.bioproject.miriam", "sameas": "bioregistry.bioproject", "homepage": "http://trace.ddbj.nig.ac.jp/bioproject/", "prefix": "bioproject", "name": "BioProject", "uri_format": "http://trace.ddbj.nig.ac.jp/BPSearch/bioproject?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bioproject.n2t": {"id": "bioregistry.bioproject.n2t", "sameas": "bioregistry.bioproject", "homepage": "https://www.ncbi.nlm.nih.gov/bioproject", "prefix": "bioproject", "name": "BioProject at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/bioproject?term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bioproject": {"id": "bioregistry.bioproject", "homepage": null, "prefix": "bioproject", "name": "BioProject at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/bioproject?term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.schema": {"id": "bioregistry.schema", "homepage": "https://schema.org", "prefix": "schema", "name": "Schema.org core and all extension vocabularies", "uri_format": "http://schema.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.biorxiv.wikidata": {"id": "bioregistry.biorxiv.wikidata", "sameas": "bioregistry.biorxiv", "homepage": "http://biorxiv.org/search/limit_from:2010-01-01%20limit_to:2017-02-16%20numresults:10%20sort:relevance-rank%20format_result:standard", "prefix": "P3951", "name": "BioRxiv ID", "uri_format": "https://doi.org/10.1101/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.biorxiv.go": {"id": "bioregistry.biorxiv.go", "sameas": "bioregistry.biorxiv", "homepage": "https://www.biorxiv.org/", "prefix": "bioRxiv", "name": "bioRxiv", "uri_format": "https://www.biorxiv.org/content/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.biorxiv": {"id": "bioregistry.biorxiv", "homepage": "https://biorxiv.org", "prefix": "biorxiv", "name": "BioRxiv ID", "uri_format": "https://www.biorxiv.org/content/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.biosample.miriam": {"id": "bioregistry.biosample.miriam", "sameas": "bioregistry.biosample", "homepage": "https://www.ebi.ac.uk/biosamples/", "prefix": "biosample", "name": "BioSample", "uri_format": "https://www.ebi.ac.uk/biosamples/sample/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biosample.n2t": {"id": "bioregistry.biosample.n2t", "sameas": "bioregistry.biosample", "homepage": "https://www.ebi.ac.uk/biosamples/", "prefix": "biosample", "name": "BioSamples Database at EBI", "uri_format": "https://www.ebi.ac.uk/biosamples/sample/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.biosample.cellosaurus": {"id": "bioregistry.biosample.cellosaurus", "sameas": "bioregistry.biosample", "homepage": "https://www.ebi.ac.uk/biosamples/", "prefix": "BioSamples", "name": "BioSamples database", "uri_format": "https://www.ebi.ac.uk/biosamples/samples/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.biosample": {"id": "bioregistry.biosample", "homepage": null, "prefix": "biosample", "name": "BioSamples Database at EBI", "uri_format": "https://www.ebi.ac.uk/biosamples/samples/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bioschemas.biolink": {"id": "bioregistry.bioschemas.biolink", "sameas": "bioregistry.bioschemas", "homepage": null, "prefix": "bioschemas", "name": null, "uri_format": "https://bioschemas.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.bioschemas": {"id": "bioregistry.bioschemas", "homepage": "https://bioschemas.org", "prefix": "bioschemas", "name": "BioSchemas", "uri_format": "https://bioschemas.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.biosimulations.miriam": {"id": "bioregistry.biosimulations.miriam", "sameas": "bioregistry.biosimulations", "homepage": "https://icahn.mssm.edu/", "prefix": "biosimulations", "name": "biosimulations", "uri_format": "https://biosimulations.org/projects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biosimulations": {"id": "bioregistry.biosimulations", "homepage": null, "prefix": "biosimulations", "name": "biosimulations", "uri_format": "https://biosimulations.org/projects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.biosimulators.miriam": {"id": "bioregistry.biosimulators.miriam", "sameas": "bioregistry.biosimulators", "homepage": "https://biosimulators.org/", "prefix": "biosimulators", "name": "BioSimulators", "uri_format": "https://biosimulators.org/simulators/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biosimulators": {"id": "bioregistry.biosimulators", "homepage": null, "prefix": "biosimulators", "name": "BioSimulators", "uri_format": "https://biosimulators.org/simulators/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.biostudies.miriam": {"id": "bioregistry.biostudies.miriam", "sameas": "bioregistry.biostudies", "homepage": "https://www.ebi.ac.uk/biostudies/", "prefix": "biostudies", "name": "BioStudies database", "uri_format": "https://www.ebi.ac.uk/biostudies/studies/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biostudies.n2t": {"id": "bioregistry.biostudies.n2t", "sameas": "bioregistry.biostudies", "homepage": "https://www.ebi.ac.uk/biostudies/", "prefix": "biostudies", "name": "BioStudies database", "uri_format": "https://www.ebi.ac.uk/biostudies/studies/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.biostudies": {"id": "bioregistry.biostudies", "homepage": null, "prefix": "biostudies", "name": "BioStudies database", "uri_format": "https://www.ebi.ac.uk/biostudies/studies/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.biosystems.miriam": {"id": "bioregistry.biosystems.miriam", "sameas": "bioregistry.biosystems", "homepage": "https://www.ncbi.nlm.nih.gov/biosystems/", "prefix": "biosystems", "name": "BioSystems", "uri_format": "https://www.ncbi.nlm.nih.gov/biosystems/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biosystems.n2t": {"id": "bioregistry.biosystems.n2t", "sameas": "bioregistry.biosystems", "homepage": "https://www.ncbi.nlm.nih.gov/biosystems/", "prefix": "biosystems", "name": "BioSystems database at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/biosystems/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.biosystems.prefixcommons": {"id": "bioregistry.biosystems.prefixcommons", "sameas": "bioregistry.biosystems", "homepage": "http://www.ncbi.nlm.nih.gov/biosystems/", "prefix": "biosystems", "name": "BioSystems", "uri_format": "http://www.ncbi.nlm.nih.gov/biosystems/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.biosystems": {"id": "bioregistry.biosystems", "homepage": null, "prefix": "biosystems", "name": "BioSystems database at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/biosystems/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.biotools.miriam": {"id": "bioregistry.biotools.miriam", "sameas": "bioregistry.biotools", "homepage": "https://bio.tools/", "prefix": "biotools", "name": "BioTools", "uri_format": "https://bio.tools/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.biotools.n2t": {"id": "bioregistry.biotools.n2t", "sameas": "bioregistry.biotools", "homepage": "https://bio.tools/", "prefix": "biotools", "name": "BioTools", "uri_format": "https://bio.tools/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.biotools": {"id": "bioregistry.biotools", "homepage": null, "prefix": "biotools", "name": "bio.tools", "uri_format": "https://bio.tools/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bitbucket.miriam": {"id": "bioregistry.bitbucket.miriam", "sameas": "bioregistry.bitbucket", "homepage": "https://www.atlassian.com/", "prefix": "bitbucket", "name": "Bitbucket", "uri_format": "https://bitbucket.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bitbucket": {"id": "bioregistry.bitbucket", "homepage": null, "prefix": "bitbucket", "name": "Bitbucket", "uri_format": "https://bitbucket.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bitterdb.cpd.miriam": {"id": "bioregistry.bitterdb.cpd.miriam", "sameas": "bioregistry.bitterdb.cpd", "homepage": "http://bitterdb.agri.huji.ac.il/dbbitter.php", "prefix": "bitterdb.cpd", "name": "BitterDB Compound", "uri_format": "http://bitterdb.agri.huji.ac.il/bitterdb/compound.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bitterdb.cpd.n2t": {"id": "bioregistry.bitterdb.cpd.n2t", "sameas": "bioregistry.bitterdb.cpd", "homepage": "http://bitterdb.agri.huji.ac.il/dbbitter.php", "prefix": "bitterdb.cpd", "name": "BitterDB Compound at The Hebrew University of Jerusalem", "uri_format": "http://bitterdb.agri.huji.ac.il/bitterdb/compound.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bitterdb.cpd": {"id": "bioregistry.bitterdb.cpd", "homepage": null, "prefix": "bitterdb.cpd", "name": "BitterDB Compound at The Hebrew University of Jerusalem", "uri_format": "http://bitterdb.agri.huji.ac.il/bitterdb/compound.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bitterdb.rec.miriam": {"id": "bioregistry.bitterdb.rec.miriam", "sameas": "bioregistry.bitterdb.rec", "homepage": "http://bitterdb.agri.huji.ac.il/dbbitter.php", "prefix": "bitterdb.rec", "name": "BitterDB Receptor", "uri_format": "http://bitterdb.agri.huji.ac.il/Receptor.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bitterdb.rec.n2t": {"id": "bioregistry.bitterdb.rec.n2t", "sameas": "bioregistry.bitterdb.rec", "homepage": "http://bitterdb.agri.huji.ac.il/dbbitter.php", "prefix": "bitterdb.rec", "name": "BitterDB Receptor at The Hebrew University of Jerusalem", "uri_format": "http://bitterdb.agri.huji.ac.il/Receptor.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bitterdb.rec": {"id": "bioregistry.bitterdb.rec", "homepage": null, "prefix": "bitterdb.rec", "name": "BitterDB Receptor at The Hebrew University of Jerusalem", "uri_format": "http://bitterdb.agri.huji.ac.il/Receptor.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bmrb.miriam": {"id": "bioregistry.bmrb.miriam", "sameas": "bioregistry.bmrb", "homepage": "http://www.bmrb.wisc.edu/", "prefix": "bmrb", "name": "Biological Magnetic Resonance Data Bank", "uri_format": "http://rest.bmrb.wisc.edu/bmrb/$1/html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bmrb.uniprot": {"id": "bioregistry.bmrb.uniprot", "sameas": "bioregistry.bmrb", "homepage": "https://bmrb.io/", "prefix": "DB-0256", "name": "Biological Magnetic Resonance Data Bank", "uri_format": "https://bmrb.io/data_library/summary/protein.php?uniprot=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.bmrb": {"id": "bioregistry.bmrb", "homepage": null, "prefix": "bmrb", "name": "Biological Magnetic Resonance Data Bank", "uri_format": "https://bmrb.io/data_library/summary/protein.php?uniprot=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bold.taxonomy.miriam": {"id": "bioregistry.bold.taxonomy.miriam", "sameas": "bioregistry.bold.taxonomy", "homepage": "http://www.boldsystems.org/", "prefix": "bold.taxonomy", "name": "BOLD Taxonomy", "uri_format": "http://www.boldsystems.org/index.php/Taxbrowser_Taxonpage?taxid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bold.taxonomy.n2t": {"id": "bioregistry.bold.taxonomy.n2t", "sameas": "bioregistry.bold.taxonomy", "homepage": "http://www.boldsystems.org/", "prefix": "bold.taxonomy", "name": "BOLD taxonomy browser", "uri_format": "http://www.boldsystems.org/index.php/Taxbrowser_Taxonpage?taxid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bold.taxonomy.prefixcommons": {"id": "bioregistry.bold.taxonomy.prefixcommons", "sameas": "bioregistry.bold.taxonomy", "homepage": "http://www.barcodinglife.com", "prefix": "bold", "name": "The Barcode of Life Data Systems", "uri_format": "http://www.barcodinglife.com/views/taxbrowser.php?taxid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.bold.taxonomy.wikidata": {"id": "bioregistry.bold.taxonomy.wikidata", "sameas": "bioregistry.bold.taxonomy", "homepage": null, "prefix": "P3606", "name": "BOLD Systems taxon ID", "uri_format": "http://www.boldsystems.org/index.php/TaxBrowser_TaxonPage?taxid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "wikidata"}, "bioregistry.bold.taxonomy": {"id": "bioregistry.bold.taxonomy", "homepage": null, "prefix": "bold.taxonomy", "name": "The Barcode of Life Data Systems", "uri_format": "http://www.boldsystems.org/index.php/Taxbrowser_Taxonpage?taxid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.brenda.miriam": {"id": "bioregistry.brenda.miriam", "sameas": "bioregistry.brenda", "homepage": "https://www.brenda-enzymes.org/", "prefix": "brenda", "name": "BRENDA", "uri_format": "https://www.brenda-enzymes.org/php/result_flat.php4?ecno=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.brenda.n2t": {"id": "bioregistry.brenda.n2t", "sameas": "bioregistry.brenda", "homepage": "https://www.brenda-enzymes.org/", "prefix": "brenda", "name": "Brenda enzyme database", "uri_format": "https://www.brenda-enzymes.org/php/result_flat.php4?ecno=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.brenda.prefixcommons": {"id": "bioregistry.brenda.prefixcommons", "sameas": "bioregistry.brenda", "homepage": "http://www.brenda-enzymes.org", "prefix": "brenda", "name": "The Comprehensive Enzyme Information System", "uri_format": "http://www.brenda-enzymes.org/php/result_flat.php4?ecno=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.brenda.go": {"id": "bioregistry.brenda.go", "sameas": "bioregistry.brenda", "homepage": "http://www.brenda-enzymes.info", "prefix": "BRENDA", "name": "BRENDA, The Comprehensive Enzyme Information System", "uri_format": "https://www.brenda-enzymes.info/enzyme.php?ecno=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.brenda": {"id": "bioregistry.brenda", "homepage": null, "prefix": "brenda", "name": "BRENDA, The Comprehensive Enzyme Information System", "uri_format": "https://www.brenda-enzymes.org/php/result_flat.php4?ecno=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.broad.miriam": {"id": "bioregistry.broad.miriam", "sameas": "bioregistry.broad", "homepage": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/", "prefix": "broad", "name": "Broad Fungal Genome Initiative", "uri_format": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/GeneDetails.html?sp=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.broad.n2t": {"id": "bioregistry.broad.n2t", "sameas": "bioregistry.broad", "homepage": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/", "prefix": "broad", "name": "Broad Fungal Genome Initiative at Broad Institute", "uri_format": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/GeneDetails.html?sp=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.broad": {"id": "bioregistry.broad", "homepage": null, "prefix": "broad", "name": "Broad Fungal Genome Initiative at Broad Institute", "uri_format": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/GeneDetails.html?sp=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bto.miriam": {"id": "bioregistry.bto.miriam", "sameas": "bioregistry.bto", "homepage": "http://bioportal.bioontology.org/ontologies/BTO", "prefix": "bto", "name": "Brenda Tissue Ontology", "uri_format": "http://purl.bioontology.org/ontology/BTO/BTO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bto.n2t": {"id": "bioregistry.bto.n2t", "sameas": "bioregistry.bto", "homepage": "http://bioportal.bioontology.org/ontologies/BTO", "prefix": "bto", "name": "Brenda Tissue Ontology through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/BTO/BTO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bto.wikidata": {"id": "bioregistry.bto.wikidata", "sameas": "bioregistry.bto", "homepage": "https://www.brenda-enzymes.org/ontology.php?ontology_id=3", "prefix": "P5501", "name": "Brenda Tissue Ontology ID", "uri_format": "https://www.brenda-enzymes.org/ontology.php?ontology_id=3&id_go=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.bto.cellosaurus": {"id": "bioregistry.bto.cellosaurus", "sameas": "bioregistry.bto", "homepage": "https://bioportal.bioontology.org/ontologies/BTO", "prefix": "BTO", "name": "BRENDA Tissue Ontology", "uri_format": "https://bioportal.bioontology.org/ontologies/BTO?p=classes&conceptid=http%3A%2F%2Fpurl.obolibrary.org%2Fobo%2FBTO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.bto": {"id": "bioregistry.bto", "homepage": null, "prefix": "bto", "name": "Brenda Tissue Ontology through BioPortal", "uri_format": "https://www.brenda-enzymes.org/ontology.php?ontology_id=3&id_go=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bugbase.expt.miriam": {"id": "bioregistry.bugbase.expt.miriam", "sameas": "bioregistry.bugbase.expt", "homepage": "http://bugs.sgul.ac.uk/E-BUGS", "prefix": "bugbase.expt", "name": "BugBase Expt", "uri_format": "http://bugs.sgul.ac.uk/bugsbase/tabs/experiment.php?expt_id=$1&action=view", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bugbase.expt.n2t": {"id": "bioregistry.bugbase.expt.n2t", "sameas": "bioregistry.bugbase.expt", "homepage": "http://bugs.sgul.ac.uk/E-BUGS", "prefix": "bugbase.expt", "name": "BugBase Expt at University of London", "uri_format": "http://bugs.sgul.ac.uk/bugsbase/tabs/experiment.php?expt_id=$1&action=view", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bugbase.expt": {"id": "bioregistry.bugbase.expt", "homepage": null, "prefix": "bugbase.expt", "name": "BugBase Expt at University of London", "uri_format": "http://bugs.sgul.ac.uk/bugsbase/tabs/experiment.php?expt_id=$1&action=view", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bugbase.protocol.miriam": {"id": "bioregistry.bugbase.protocol.miriam", "sameas": "bioregistry.bugbase.protocol", "homepage": "http://bugs.sgul.ac.uk/E-BUGS", "prefix": "bugbase.protocol", "name": "BugBase Protocol", "uri_format": "http://bugs.sgul.ac.uk/bugsbase/tabs/protocol.php?protocol_id=$1&action=view", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bugbase.protocol.n2t": {"id": "bioregistry.bugbase.protocol.n2t", "sameas": "bioregistry.bugbase.protocol", "homepage": "http://bugs.sgul.ac.uk/E-BUGS", "prefix": "bugbase.protocol", "name": "BugBase Protocol at University of London", "uri_format": "http://bugs.sgul.ac.uk/bugsbase/tabs/protocol.php?protocol_id=$1&action=view", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bugbase.protocol": {"id": "bioregistry.bugbase.protocol", "homepage": null, "prefix": "bugbase.protocol", "name": "BugBase Protocol at University of London", "uri_format": "http://bugs.sgul.ac.uk/bugsbase/tabs/protocol.php?protocol_id=$1&action=view", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.bykdb.miriam": {"id": "bioregistry.bykdb.miriam", "sameas": "bioregistry.bykdb", "homepage": "https://bykdb.ibcp.fr/BYKdb/", "prefix": "bykdb", "name": "BYKdb", "uri_format": "https://bykdb.ibcp.fr/data/html/annotated/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.bykdb.n2t": {"id": "bioregistry.bykdb.n2t", "sameas": "bioregistry.bykdb", "homepage": "https://bykdb.ibcp.fr/BYKdb/", "prefix": "bykdb", "name": "BYKdb at CNRS", "uri_format": "https://bykdb.ibcp.fr/data/html/annotated/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.bykdb.prefixcommons": {"id": "bioregistry.bykdb.prefixcommons", "sameas": "bioregistry.bykdb", "homepage": "http://bykdb.ibcp.fr/BYKdb/", "prefix": "bykdb", "name": "Bacterial Tyrosine Kinase Database", "uri_format": "http://bykdb.ibcp.fr/data/html/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "microbiology"], "authority": "prefixcommons"}, "bioregistry.bykdb": {"id": "bioregistry.bykdb", "homepage": null, "prefix": "bykdb", "name": "Bacterial protein tYrosine Kinase database", "uri_format": "https://bykdb.ibcp.fr/data/html/annotated/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "microbiology"], "authority": "bioregistry"}, "bioregistry.cabri.miriam": {"id": "bioregistry.cabri.miriam", "sameas": "bioregistry.cabri", "homepage": "http://www.cabri.org/", "prefix": "cabri", "name": "CABRI", "uri_format": "http://www.cabri.org/CABRI/srs-bin/wgetz?-e+-page+EntryPage+[$1]", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cabri.n2t": {"id": "bioregistry.cabri.n2t", "sameas": "bioregistry.cabri", "homepage": "http://www.cabri.org/", "prefix": "cabri", "name": "CABRI Cell Lines catalogue in Genova (SRS)", "uri_format": "http://www.cabri.org/CABRI/srs-bin/wgetz?-e+-page+EntryPage+[$1]", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cabri": {"id": "bioregistry.cabri", "homepage": null, "prefix": "cabri", "name": "Common Access to Biological Resources and Information Project", "uri_format": "http://www.cabri.org/CABRI/srs-bin/wgetz?-e+-page+EntryPage+[$1]", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cadsr.miriam": {"id": "bioregistry.cadsr.miriam", "sameas": "bioregistry.cadsr", "homepage": "https://wiki.nci.nih.gov/display/caDSR/caDSR+Wiki", "prefix": "cadsr", "name": "Cancer Data Standards Registry and Repository", "uri_format": "https://cadsrapi.nci.nih.gov/cadsrapi4/GetXML?query=DataElement[@publicId=$1]", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cadsr.n2t": {"id": "bioregistry.cadsr.n2t", "sameas": "bioregistry.cadsr", "homepage": "https://wiki.nci.nih.gov/display/caDSR/caDSR+Wiki", "prefix": "cadsr", "name": "Cancer Data Standards Registry and Repository", "uri_format": "https://cadsrapi.nci.nih.gov/cadsrapi4/GetXML?query=DataElement[@publicId=$1]", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cadsr": {"id": "bioregistry.cadsr", "homepage": null, "prefix": "cadsr", "name": "Cancer Data Standards Registry and Repository", "uri_format": "https://cadsrapi.nci.nih.gov/cadsrapi4/GetXML?query=DataElement[@publicId=$1]", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cameo.miriam": {"id": "bioregistry.cameo.miriam", "sameas": "bioregistry.cameo", "homepage": "https://cameo3d.org", "prefix": "cameo", "name": "CAMEO", "uri_format": "https://www.cameo3d.org/sp/targets/target/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cameo.n2t": {"id": "bioregistry.cameo.n2t", "sameas": "bioregistry.cameo", "homepage": "https://cameo3d.org", "prefix": "cameo", "name": "CAMEO", "uri_format": "https://www.cameo3d.org/sp/targets/target/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cameo": {"id": "bioregistry.cameo", "homepage": null, "prefix": "cameo", "name": "Continuously Automated Model Evaluation", "uri_format": "https://www.cameo3d.org/sp/targets/target/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.caps.miriam": {"id": "bioregistry.caps.miriam", "sameas": "bioregistry.caps", "homepage": "http://www.bioinsilico.org/cgi-bin/CAPSDB/staticHTML/home", "prefix": "caps", "name": "CAPS-DB", "uri_format": "http://www.bioinsilico.org/cgi-bin/CAPSDB/getCAPScluster?nidcl=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.caps.n2t": {"id": "bioregistry.caps.n2t", "sameas": "bioregistry.caps", "homepage": "http://www.bioinsilico.org/cgi-bin/CAPSDB/staticHTML/home", "prefix": "caps", "name": "CAPS-DB at Leeds Institute of Molecular Medicine", "uri_format": "http://www.bioinsilico.org/cgi-bin/CAPSDB/getCAPScluster?nidcl=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.caps": {"id": "bioregistry.caps", "homepage": null, "prefix": "caps", "name": "CAPS-DB at Leeds Institute of Molecular Medicine", "uri_format": "http://www.bioinsilico.org/cgi-bin/CAPSDB/getCAPScluster?nidcl=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cas.miriam": {"id": "bioregistry.cas.miriam", "sameas": "bioregistry.cas", "homepage": "https://commonchemistry.cas.org/", "prefix": "cas", "name": "CAS", "uri_format": "https://commonchemistry.cas.org/detail?ref=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cas.n2t": {"id": "bioregistry.cas.n2t", "sameas": "bioregistry.cas", "homepage": "http://commonchemistry.org", "prefix": "cas", "name": "CAS through Common Chemistry", "uri_format": "http://commonchemistry.org/ChemicalDetail.aspx?ref=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cas.prefixcommons": {"id": "bioregistry.cas.prefixcommons", "sameas": "bioregistry.cas", "homepage": "http://www.cas.org/", "prefix": "cas", "name": "CAS: A Divison of the American Chemical Society", "uri_format": "http://commonchemistry.org/ChemicalDetail.aspx?ref=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences"], "authority": "prefixcommons"}, "bioregistry.cas.wikidata": {"id": "bioregistry.cas.wikidata", "sameas": "bioregistry.cas", "homepage": "https://scifinder.cas.org", "prefix": "P231", "name": "CAS Registry Number", "uri_format": "https://commonchemistry.cas.org/detail?cas_rn=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences"], "authority": "wikidata"}, "bioregistry.cas": {"id": "bioregistry.cas", "homepage": null, "prefix": "cas", "name": "CAS: A Divison of the American Chemical Society", "uri_format": "https://commonchemistry.cas.org/detail?ref=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences"], "authority": "bioregistry"}, "bioregistry.casspc.go": {"id": "bioregistry.casspc.go", "sameas": "bioregistry.casspc", "homepage": "https://researcharchive.calacademy.org/research/ichthyology/catalog/fishcatmain.asp", "prefix": "CASSPC", "name": "Catalog of Fishes species database", "uri_format": "https://researcharchive.calacademy.org/research/ichthyology/catalog/fishcatget.asp?spid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.casspc": {"id": "bioregistry.casspc", "homepage": "https://researcharchive.calacademy.org/research/ichthyology/catalog/fishcatmain.asp", "prefix": "casspc", "name": "Catalog of Fishes species database", "uri_format": "https://researcharchive.calacademy.org/research/ichthyology/catalog/fishcatget.asp?spid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cath.miriam": {"id": "bioregistry.cath.miriam", "sameas": "bioregistry.cath", "homepage": "http://www.cathdb.info", "prefix": "cath", "name": "CATH Protein Structural Domain Superfamily", "uri_format": "http://www.cathdb.info/cathnode/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cath.n2t": {"id": "bioregistry.cath.n2t", "sameas": "bioregistry.cath", "homepage": "http://www.cathdb.info", "prefix": "cath", "name": "CATH Node through UCL", "uri_format": "http://www.cathdb.info/cathnode/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cath.prefixcommons": {"id": "bioregistry.cath.prefixcommons", "sameas": "bioregistry.cath", "homepage": "http://www.cathdb.info/", "prefix": "cath", "name": "CATH Protein Structure Classification", "uri_format": "http://www.cathdb.info/cathnode/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.cath": {"id": "bioregistry.cath", "homepage": null, "prefix": "cath", "name": "CATH Protein Structural Domain Superfamily", "uri_format": "http://www.cathdb.info/cathnode/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.cath.domain.miriam": {"id": "bioregistry.cath.domain.miriam", "sameas": "bioregistry.cath.domain", "homepage": "http://www.cathdb.info/", "prefix": "cath.domain", "name": "CATH domain", "uri_format": "http://www.cathdb.info/domain/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cath.domain.n2t": {"id": "bioregistry.cath.domain.n2t", "sameas": "bioregistry.cath.domain", "homepage": "http://www.cathdb.info/", "prefix": "cath.domain", "name": "CATH domain at UCL", "uri_format": "http://www.cathdb.info/domain/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cath.domain": {"id": "bioregistry.cath.domain", "homepage": null, "prefix": "cath.domain", "name": "CATH domain at UCL", "uri_format": "http://www.cathdb.info/domain/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cath.superfamily.miriam": {"id": "bioregistry.cath.superfamily.miriam", "sameas": "bioregistry.cath.superfamily", "homepage": "http://www.cathdb.info/", "prefix": "cath.superfamily", "name": "CATH superfamily", "uri_format": "http://www.cathdb.info/cathnode/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cath.superfamily.n2t": {"id": "bioregistry.cath.superfamily.n2t", "sameas": "bioregistry.cath.superfamily", "homepage": "http://www.cathdb.info/", "prefix": "cath.superfamily", "name": "CATH superfamily at UCL", "uri_format": "http://www.cathdb.info/cathnode/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cath.superfamily": {"id": "bioregistry.cath.superfamily", "homepage": null, "prefix": "cath.superfamily", "name": "CATH superfamily at UCL", "uri_format": "http://www.cathdb.info/cathnode/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cattleqtldb.miriam": {"id": "bioregistry.cattleqtldb.miriam", "sameas": "bioregistry.cattleqtldb", "homepage": "https://www.animalgenome.org/QTLdb", "prefix": "cattleqtldb", "name": "Animal Genome Cattle QTL", "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cattleqtldb.n2t": {"id": "bioregistry.cattleqtldb.n2t", "sameas": "bioregistry.cattleqtldb", "homepage": "http://www.animalgenome.org/cgi-bin/QTLdb/BT/index", "prefix": "cattleqtldb", "name": "Animal QTL Cattle at Iowa State University", "uri_format": "http://www.animalgenome.org/cgi-bin/QTLdb/BT/qdetails?QTL_ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cattleqtldb.prefixcommons": {"id": "bioregistry.cattleqtldb.prefixcommons", "sameas": "bioregistry.cattleqtldb", "homepage": "http://www.animalgenome.org/cgi-bin/QTLdb/BT/index", "prefix": "cattleqtldb", "name": "Cattle Quantitative Trait Locus database", "uri_format": "http://www.animalgenome.org/cgi-bin/QTLdb/BT/qdetails?QTL_ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.cattleqtldb": {"id": "bioregistry.cattleqtldb", "homepage": null, "prefix": "cattleqtldb", "name": "Animal QTL Cattle at Iowa State University", "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.cazy.miriam": {"id": "bioregistry.cazy.miriam", "sameas": "bioregistry.cazy", "homepage": "http://www.cazy.org/", "prefix": "cazy", "name": "CAZy", "uri_format": "http://www.cazy.org/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cazy.n2t": {"id": "bioregistry.cazy.n2t", "sameas": "bioregistry.cazy", "homepage": "http://www.cazy.org/", "prefix": "cazy", "name": "CAZy at CNRS", "uri_format": "http://www.cazy.org/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cazy.prefixcommons": {"id": "bioregistry.cazy.prefixcommons", "sameas": "bioregistry.cazy", "homepage": "http://www.cazy.org/", "prefix": "cazy", "name": "The Carbohydrate-Active enZYmes Database", "uri_format": "http://www.cazy.org/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.cazy.go": {"id": "bioregistry.cazy.go", "sameas": "bioregistry.cazy", "homepage": "http://www.cazy.org/", "prefix": "CAZY", "name": "Carbohydrate Active EnZYmes", "uri_format": "http://www.cazy.org/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.cazy.uniprot": {"id": "bioregistry.cazy.uniprot", "sameas": "bioregistry.cazy", "homepage": "http://www.cazy.org/", "prefix": "DB-0136", "name": "Carbohydrate-Active enZymes", "uri_format": "http://www.cazy.org/fam/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.cazy": {"id": "bioregistry.cazy", "homepage": null, "prefix": "cazy", "name": "The Carbohydrate-Active enZYmes Database", "uri_format": "http://www.cazy.org/fam/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.cbioportal.miriam": {"id": "bioregistry.cbioportal.miriam", "sameas": "bioregistry.cbioportal", "homepage": "http://www.cbioportal.org", "prefix": "cbioportal", "name": "The cBioPortal for Cancer Genomics", "uri_format": "http://www.cbioportal.org/study?id=$1#summary", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cbioportal.n2t": {"id": "bioregistry.cbioportal.n2t", "sameas": "bioregistry.cbioportal", "homepage": "http://www.cbioportal.org", "prefix": "cbioportal", "name": "The cBioPortal for Cancer Genomics", "uri_format": "http://www.cbioportal.org/study?id=$1#summary", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cbioportal": {"id": "bioregistry.cbioportal", "homepage": null, "prefix": "cbioportal", "name": "The cBioPortal for Cancer Genomics", "uri_format": "http://www.cbioportal.org/study?id=$1#summary", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ccdc.miriam": {"id": "bioregistry.ccdc.miriam", "sameas": "bioregistry.ccdc", "homepage": "https://www.ccdc.cam.ac.uk/", "prefix": "ccdc", "name": "CCDC Number", "uri_format": "https://www.ccdc.cam.ac.uk/services/structures?pid=ccdc:$1&sid=IDORG", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ccdc": {"id": "bioregistry.ccdc", "homepage": null, "prefix": "ccdc", "name": "CCDC Number", "uri_format": "https://www.ccdc.cam.ac.uk/services/structures?pid=ccdc:$1&sid=IDORG", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ccds.miriam": {"id": "bioregistry.ccds.miriam", "sameas": "bioregistry.ccds", "homepage": "http://www.ncbi.nlm.nih.gov/CCDS/", "prefix": "ccds", "name": "Consensus CDS", "uri_format": "http://www.ncbi.nlm.nih.gov/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&DATA=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ccds.n2t": {"id": "bioregistry.ccds.n2t", "sameas": "bioregistry.ccds", "homepage": "http://www.ncbi.nlm.nih.gov/CCDS/", "prefix": "ccds", "name": "Consensus CDS at NCBI", "uri_format": "http://www.ncbi.nlm.nih.gov/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&DATA=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ccds.prefixcommons": {"id": "bioregistry.ccds.prefixcommons", "sameas": "bioregistry.ccds", "homepage": "http://www.ncbi.nlm.nih.gov/CCDS/", "prefix": "ccds", "name": "The Consensus CDS", "uri_format": "http://www.ncbi.nlm.nih.gov/projects/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&DATA=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.ccds.uniprot": {"id": "bioregistry.ccds.uniprot", "sameas": "bioregistry.ccds", "homepage": "https://www.ncbi.nlm.nih.gov/CCDS", "prefix": "DB-0187", "name": "The Consensus CDS (CCDS) project", "uri_format": "https://www.ncbi.nlm.nih.gov/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&GO=MainBrowse&DATA=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "uniprot"}, "bioregistry.ccds.biocontext": {"id": "bioregistry.ccds.biocontext", "sameas": "bioregistry.ccds", "homepage": null, "prefix": "CCDS", "name": null, "uri_format": "http://www.ncbi.nlm.nih.gov/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&DATA=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "biocontext"}, "bioregistry.ccds": {"id": "bioregistry.ccds", "homepage": null, "prefix": "ccds", "name": "The Consensus CDS (CCDS) project", "uri_format": "https://www.ncbi.nlm.nih.gov/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&GO=MainBrowse&DATA=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.ccle.cellosaurus": {"id": "bioregistry.ccle.cellosaurus", "sameas": "bioregistry.ccle", "homepage": "https://portals.broadinstitute.org/ccle", "prefix": "CCLE", "name": "Cancer Cell Line Encyclopedia", "uri_format": "https://portals.broadinstitute.org/ccle/page?cell_line=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.ccle": {"id": "bioregistry.ccle", "homepage": "https://www.cbioportal.org/study/summary?id=ccle_broad_2019", "prefix": "ccle", "name": "Cancer Cell Line Encyclopedia Cells", "uri_format": "https://portals.broadinstitute.org/ccle/page?cell_line=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cco.miriam": {"id": "bioregistry.cco.miriam", "sameas": "bioregistry.cco", "homepage": "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=CCO", "prefix": "cco", "name": "Cell Cycle Ontology", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/cco/terms?obo_id=CCO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cco.n2t": {"id": "bioregistry.cco.n2t", "sameas": "bioregistry.cco", "homepage": "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=CCO", "prefix": "cco", "name": "Cell Cycle Ontology through OLS", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/cco/terms?obo_id=CCO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cco": {"id": "bioregistry.cco", "homepage": null, "prefix": "cco", "name": "Cell Cycle Ontology through OLS", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/cco/terms?obo_id=CCO:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology"], "authority": "bioregistry"}, "bioregistry.ccrid.cellosaurus": {"id": "bioregistry.ccrid.cellosaurus", "sameas": "bioregistry.ccrid", "homepage": "http://cellresource.cn/", "prefix": "CCRID", "name": "Chinese Cell Resource Information Database", "uri_format": "http://www.cellresource.cn/cellsearch.aspx?sc=1&where=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.ccrid": {"id": "bioregistry.ccrid", "homepage": "http://www.cellresource.cn", "prefix": "ccrid", "name": "National Experimental Cell Resource Sharing Platform", "uri_format": "http://www.cellresource.cn/cellsearch.aspx?sc=1&where=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cdd.miriam": {"id": "bioregistry.cdd.miriam", "sameas": "bioregistry.cdd", "homepage": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=cdd", "prefix": "cdd", "name": "Conserved Domain Database", "uri_format": "https://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cdd.n2t": {"id": "bioregistry.cdd.n2t", "sameas": "bioregistry.cdd", "homepage": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=cdd", "prefix": "cdd", "name": "Conserved Domain Database at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cdd.prefixcommons": {"id": "bioregistry.cdd.prefixcommons", "sameas": "bioregistry.cdd", "homepage": "http://www.ncbi.nlm.nih.gov/Structure/cdd/cdd.shtml", "prefix": "cdd", "name": "Conserved Domain Database", "uri_format": "http://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.cdd.go": {"id": "bioregistry.cdd.go", "sameas": "bioregistry.cdd", "homepage": "https://www.ncbi.nlm.nih.gov/cdd", "prefix": "CDD", "name": "Conserved Domain Database at NCBI", "uri_format": "http://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.cdd.uniprot": {"id": "bioregistry.cdd.uniprot", "sameas": "bioregistry.cdd", "homepage": "https://www.ncbi.nlm.nih.gov/cdd", "prefix": "DB-0214", "name": "Conserved Domains Database", "uri_format": "https://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.cdd": {"id": "bioregistry.cdd", "homepage": null, "prefix": "cdd", "name": "Conserved Domain Database at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.cdpd.miriam": {"id": "bioregistry.cdpd.miriam", "sameas": "bioregistry.cdpd", "homepage": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/index-eng.jsp", "prefix": "cdpd", "name": "Canadian Drug Product Database", "uri_format": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/info.do?lang=eng&code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cdpd.n2t": {"id": "bioregistry.cdpd.n2t", "sameas": "bioregistry.cdpd", "homepage": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/index-eng.jsp", "prefix": "cdpd", "name": "Canadian Drug Identification Number at Health Canada", "uri_format": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/info.do?lang=eng&code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cdpd": {"id": "bioregistry.cdpd", "homepage": null, "prefix": "cdpd", "name": "Canadian Drug Identification Number at Health Canada", "uri_format": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/info.do?lang=eng&code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cell_biolabs.cellosaurus": {"id": "bioregistry.cell_biolabs.cellosaurus", "sameas": "bioregistry.cell_biolabs", "homepage": "https://www.cellbiolabs.com", "prefix": "Cell_Biolabs", "name": "Cell Biolabs cell line products", "uri_format": "https://www.cellbiolabs.com/search?keywords=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.cell_biolabs": {"id": "bioregistry.cell_biolabs", "homepage": null, "prefix": "cell_biolabs", "name": "Cell Biolabs cell line products", "uri_format": "https://www.cellbiolabs.com/search?keywords=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cell_model_passport.cellosaurus": {"id": "bioregistry.cell_model_passport.cellosaurus", "sameas": "bioregistry.cell_model_passport", "homepage": "https://cellmodelpassports.sanger.ac.uk/", "prefix": "Cell_Model_Passport", "name": "Sanger Cell Model Passports", "uri_format": "https://cellmodelpassports.sanger.ac.uk/passports/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.cell_model_passport": {"id": "bioregistry.cell_model_passport", "homepage": null, "prefix": "cell_model_passport", "name": "Sanger Cell Model Passports", "uri_format": "https://cellmodelpassports.sanger.ac.uk/passports/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cellbank.australia.cellosaurus": {"id": "bioregistry.cellbank.australia.cellosaurus", "sameas": "bioregistry.cellbank.australia", "homepage": "https://www.cellbankaustralia.com/cellbank-australia-exclusive-lines/", "prefix": "CBA", "name": "CellBank Australia", "uri_format": "https://www.cellbankaustralia.com/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.cellbank.australia": {"id": "bioregistry.cellbank.australia", "homepage": null, "prefix": "cellbank.australia", "name": "CellBank Australia", "uri_format": "https://www.cellbankaustralia.com/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cellimage.miriam": {"id": "bioregistry.cellimage.miriam", "sameas": "bioregistry.cellimage", "homepage": "http://cellimagelibrary.org/", "prefix": "cellimage", "name": "Cell Image Library", "uri_format": "http://cellimagelibrary.org/images/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cellimage.n2t": {"id": "bioregistry.cellimage.n2t", "sameas": "bioregistry.cellimage", "homepage": "http://cellimagelibrary.org/", "prefix": "cellimage", "name": "Cell Image Library at American Society for Cell Biology", "uri_format": "http://cellimagelibrary.org/images/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cellimage.prefixcommons": {"id": "bioregistry.cellimage.prefixcommons", "sameas": "bioregistry.cellimage", "homepage": null, "prefix": "cellimage", "name": "The Cell: An Image Library", "uri_format": "http://cellimagelibrary.org/images/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.cellimage": {"id": "bioregistry.cellimage", "homepage": null, "prefix": "cellimage", "name": "Cell Image Library at American Society for Cell Biology", "uri_format": "http://cellimagelibrary.org/images/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cellopub.cellosaurus": {"id": "bioregistry.cellopub.cellosaurus", "sameas": "bioregistry.cellopub", "homepage": "https://www.cellosaurus.org/", "prefix": "CelloPub", "name": "Cellosaurus Publication", "uri_format": "https://www.cellosaurus.org/cellopub/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.cellopub": {"id": "bioregistry.cellopub", "homepage": "https://web.expasy.org/cellosaurus/", "prefix": "cellopub", "name": "Cellosaurus Publication", "uri_format": "https://www.cellosaurus.org/cellopub/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cellosaurus.miriam": {"id": "bioregistry.cellosaurus.miriam", "sameas": "bioregistry.cellosaurus", "homepage": "https://www.cellosaurus.org/", "prefix": "cellosaurus", "name": "Cellosaurus", "uri_format": "https://www.cellosaurus.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cellosaurus.n2t": {"id": "bioregistry.cellosaurus.n2t", "sameas": "bioregistry.cellosaurus", "homepage": "https://web.expasy.org/cellosaurus/", "prefix": "cellosaurus", "name": "Cellosaurus through SIB", "uri_format": "https://web.expasy.org/cellosaurus/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cellosaurus.wikidata": {"id": "bioregistry.cellosaurus.wikidata", "sameas": "bioregistry.cellosaurus", "homepage": null, "prefix": "P3289", "name": "Cellosaurus ID", "uri_format": "https://www.cellosaurus.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.cellosaurus.cellosaurus": {"id": "bioregistry.cellosaurus.cellosaurus", "sameas": "bioregistry.cellosaurus", "homepage": "https://www.cellosaurus.org/", "prefix": "Cellosaurus", "name": "Cellosaurus - a knowledge resource on cell lines", "uri_format": "https://www.cellosaurus.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.cellosaurus": {"id": "bioregistry.cellosaurus", "homepage": "https://cellosaurus.org", "prefix": "cellosaurus", "name": "Cellosaurus - a knowledge resource on cell lines", "uri_format": "https://www.cellosaurus.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cellrepo.miriam": {"id": "bioregistry.cellrepo.miriam", "sameas": "bioregistry.cellrepo", "homepage": "https://cellrepo.ico2s.org/", "prefix": "cellrepo", "name": "Cell Version Control Repository", "uri_format": "https://cellrepo.ico2s.org/repositories/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cellrepo": {"id": "bioregistry.cellrepo", "homepage": null, "prefix": "cellrepo", "name": "Cell Version Control Repository", "uri_format": "https://cellrepo.ico2s.org/repositories/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cgd.miriam": {"id": "bioregistry.cgd.miriam", "sameas": "bioregistry.cgd", "homepage": "http://www.candidagenome.org/", "prefix": "cgd", "name": "Candida Genome Database", "uri_format": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cgd.n2t": {"id": "bioregistry.cgd.n2t", "sameas": "bioregistry.cgd", "homepage": "http://www.candidagenome.org/", "prefix": "cgd", "name": "Candida Genome Database at Stanford University", "uri_format": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cgd.prefixcommons": {"id": "bioregistry.cgd.prefixcommons", "sameas": "bioregistry.cgd", "homepage": "http://www.candidagenome.org/", "prefix": "cgd", "name": "Candida Genome Database", "uri_format": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics", "molecular biology"], "authority": "prefixcommons"}, "bioregistry.cgd.go": {"id": "bioregistry.cgd.go", "sameas": "bioregistry.cgd", "homepage": "http://www.candidagenome.org/", "prefix": "CGD", "name": "Candida Genome Database", "uri_format": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics", "molecular biology"], "authority": "go"}, "bioregistry.cgd.uniprot": {"id": "bioregistry.cgd.uniprot", "sameas": "bioregistry.cgd", "homepage": "http://www.candidagenome.org/", "prefix": "DB-0126", "name": "Candida Genome Database", "uri_format": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics", "molecular biology"], "authority": "uniprot"}, "bioregistry.cgd": {"id": "bioregistry.cgd", "homepage": null, "prefix": "cgd", "name": "Candida Genome Database at Stanford University", "uri_format": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics", "molecular biology"], "authority": "bioregistry"}, "bioregistry.cghdb.cellosaurus": {"id": "bioregistry.cghdb.cellosaurus", "sameas": "bioregistry.cghdb", "homepage": "http://www.cghtmd.jp/CGHDatabase/index_e.jsp", "prefix": "CGH-DB", "name": "CGH Data Base", "uri_format": "http://www.cghtmd.jp/CGHDatabase/mapViewer?hid=$1&aid=%t&lang=en", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.cghdb": {"id": "bioregistry.cghdb", "homepage": null, "prefix": "cghdb", "name": "CGH Data Base", "uri_format": "http://www.cghtmd.jp/CGHDatabase/mapViewer?hid=$1&aid=%t&lang=en", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cgnc.prefixcommons": {"id": "bioregistry.cgnc.prefixcommons", "sameas": "bioregistry.cgnc", "homepage": "http://www.agnc.msstate.edu/", "prefix": "cgnc", "name": "Chicken Gene Nomenclature Consortium", "uri_format": "http://www.agnc.msstate.edu/GeneReport.aspx?a=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.cgnc": {"id": "bioregistry.cgnc", "homepage": "http://birdgenenames.org/cgnc/", "prefix": "cgnc", "name": "Chicken Gene Nomenclature Consortium", "uri_format": "http://www.agnc.msstate.edu/GeneReport.aspx?a=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.cgsc.miriam": {"id": "bioregistry.cgsc.miriam", "sameas": "bioregistry.cgsc", "homepage": "http://cgsc.biology.yale.edu/index.php", "prefix": "cgsc", "name": "CGSC Strain", "uri_format": "http://cgsc.biology.yale.edu/Site.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cgsc.n2t": {"id": "bioregistry.cgsc.n2t", "sameas": "bioregistry.cgsc", "homepage": "http://cgsc.biology.yale.edu/index.php", "prefix": "cgsc", "name": "CGSC at Yale university", "uri_format": "http://cgsc.biology.yale.edu/Site.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cgsc.prefixcommons": {"id": "bioregistry.cgsc.prefixcommons", "sameas": "bioregistry.cgsc", "homepage": "http://cgsc.biology.yale.edu/", "prefix": "cgsc", "name": "The Coli Genetic Stock Center", "uri_format": "http://cgsc.biology.yale.edu/Site.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.cgsc": {"id": "bioregistry.cgsc", "homepage": null, "prefix": "cgsc", "name": "E. coli Genetic Resources at Yale", "uri_format": "http://cgsc.biology.yale.edu/Site.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.charprot.miriam": {"id": "bioregistry.charprot.miriam", "sameas": "bioregistry.charprot", "homepage": "http://www.jcvi.org/charprotdb", "prefix": "charprot", "name": "CharProt", "uri_format": "http://www.jcvi.org/charprotdb/index.cgi/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.charprot.n2t": {"id": "bioregistry.charprot.n2t", "sameas": "bioregistry.charprot", "homepage": "http://www.jcvi.org/charprotdb", "prefix": "charprot", "name": "CharProt at JCVI", "uri_format": "http://www.jcvi.org/charprotdb/index.cgi/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.charprot": {"id": "bioregistry.charprot", "homepage": null, "prefix": "charprot", "name": "CharProt at JCVI", "uri_format": "http://www.jcvi.org/charprotdb/index.cgi/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.chebi.miriam": {"id": "bioregistry.chebi.miriam", "sameas": "bioregistry.chebi", "homepage": "https://www.ebi.ac.uk/chebi/", "prefix": "chebi", "name": "ChEBI", "uri_format": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.chebi.n2t": {"id": "bioregistry.chebi.n2t", "sameas": "bioregistry.chebi", "homepage": "https://www.ebi.ac.uk/chebi/", "prefix": "chebi", "name": "ChEBI (Chemical Entities of Biological Interest)", "uri_format": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.chebi.prefixcommons": {"id": "bioregistry.chebi.prefixcommons", "sameas": "bioregistry.chebi", "homepage": "http://www.ebi.ac.uk/chebi/", "prefix": "chebi", "name": "Chemical Entities of Biological Interest", "uri_format": "http://www.ebi.ac.uk/chebi/searchId.do?chebiId=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences"], "authority": "prefixcommons"}, "bioregistry.chebi.wikidata": {"id": "bioregistry.chebi.wikidata", "sameas": "bioregistry.chebi", "homepage": "https://www.ebi.ac.uk/chebi", "prefix": "P683", "name": "ChEBI ID", "uri_format": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences"], "authority": "wikidata"}, "bioregistry.chebi.go": {"id": "bioregistry.chebi.go", "sameas": "bioregistry.chebi", "homepage": "http://www.ebi.ac.uk/chebi/", "prefix": "CHEBI", "name": "Chemical Entities of Biological Interest", "uri_format": "http://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences"], "authority": "go"}, "bioregistry.chebi.cellosaurus": {"id": "bioregistry.chebi.cellosaurus", "sameas": "bioregistry.chebi", "homepage": "https://www.ebi.ac.uk/chebi/", "prefix": "ChEBI", "name": "Chemical Entities of Biological Interest", "uri_format": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences"], "authority": "cellosaurus"}, "bioregistry.chebi": {"id": "bioregistry.chebi", "homepage": null, "prefix": "chebi", "name": "Chemical Entities of Biological Interest Ontology", "uri_format": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences"], "authority": "bioregistry"}, "bioregistry.chembank.prefixcommons": {"id": "bioregistry.chembank.prefixcommons", "sameas": "bioregistry.chembank", "homepage": "http://chembank.broad.harvard.edu", "prefix": "chembank", "name": "ChemBank", "uri_format": "http://chembank.broadinstitute.org/chemistry/viewMolecule.htm?cbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "prefixcommons"}, "bioregistry.chembank.biolink": {"id": "bioregistry.chembank.biolink", "sameas": "bioregistry.chembank", "homepage": null, "prefix": "ChemBank", "name": null, "uri_format": "http://chembank.broadinstitute.org/chemistry/viewMolecule.htm?cbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "biolink"}, "bioregistry.chembank": {"id": "bioregistry.chembank", "homepage": null, "prefix": "chembank", "name": "ChemBank", "uri_format": "http://chembank.broadinstitute.org/chemistry/viewMolecule.htm?cbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "bioregistry"}, "bioregistry.chembl.miriam": {"id": "bioregistry.chembl.miriam", "sameas": "bioregistry.chembl", "homepage": "https://www.ebi.ac.uk/chembl", "prefix": "chembl", "name": "ChEMBL", "uri_format": "https://www.ebi.ac.uk/chembl/entity/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.chembl.prefixcommons": {"id": "bioregistry.chembl.prefixcommons", "sameas": "bioregistry.chembl", "homepage": "https://www.ebi.ac.uk/chembldb/", "prefix": "chembl", "name": "chEMBL", "uri_format": "https://www.ebi.ac.uk/chembldb/index.php/compound/inspect/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.chembl.uniprot": {"id": "bioregistry.chembl.uniprot", "sameas": "bioregistry.chembl", "homepage": "https://www.ebi.ac.uk/chembl", "prefix": "DB-0174", "name": "ChEMBL database of bioactive drug-like small molecules", "uri_format": "https://www.ebi.ac.uk/chembl/target/inspect/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.chembl": {"id": "bioregistry.chembl", "homepage": "https://www.ebi.ac.uk/chembl", "prefix": "chembl", "name": "ChEMBL database of bioactive drug-like small molecules", "uri_format": "https://www.ebi.ac.uk/chembldb/index.php/compound/inspect/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.chembl.cell.cellosaurus": {"id": "bioregistry.chembl.cell.cellosaurus", "sameas": "bioregistry.chembl.cell", "homepage": "https://www.ebi.ac.uk/chembldb", "prefix": "ChEMBL-Cells", "name": "ChEMBL database of bioactive drug-like small molecules - Cell lines section", "uri_format": "https://www.ebi.ac.uk/chembldb/cell/inspect/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.chembl.cell": {"id": "bioregistry.chembl.cell", "homepage": null, "prefix": "chembl.cell", "name": "ChEMBL database of bioactive drug-like small molecules - Cell lines section", "uri_format": "https://www.ebi.ac.uk/chembldb/cell/inspect/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology"], "authority": "bioregistry"}, "bioregistry.chembl.compound.miriam": {"id": "bioregistry.chembl.compound.miriam", "sameas": "bioregistry.chembl.compound", "homepage": "https://www.ebi.ac.uk/chembldb/", "prefix": "chembl.compound", "name": "ChEMBL compound", "uri_format": "https://www.ebi.ac.uk/chembl/compound/inspect/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.chembl.compound.n2t": {"id": "bioregistry.chembl.compound.n2t", "sameas": "bioregistry.chembl.compound", "homepage": "https://www.ebi.ac.uk/chembldb/", "prefix": "chembl.compound", "name": "ChEMBL compound database at EBI", "uri_format": "https://www.ebi.ac.uk/chembl/compound/inspect/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.chembl.compound.wikidata": {"id": "bioregistry.chembl.compound.wikidata", "sameas": "bioregistry.chembl.compound", "homepage": "https://www.ebi.ac.uk/chembl", "prefix": "P592", "name": "ChEMBL ID", "uri_format": "https://www.ebi.ac.uk/chembl/compound_report_card/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.chembl.compound": {"id": "bioregistry.chembl.compound", "homepage": null, "prefix": "chembl.compound", "name": "ChEMBL compound database at EBI", "uri_format": "https://www.ebi.ac.uk/chembl/compound_report_card/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.chembl.target.miriam": {"id": "bioregistry.chembl.target.miriam", "sameas": "bioregistry.chembl.target", "homepage": "https://www.ebi.ac.uk/chembldb/", "prefix": "chembl.target", "name": "ChEMBL target", "uri_format": "https://www.ebi.ac.uk/chembl/target/inspect/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.chembl.target.n2t": {"id": "bioregistry.chembl.target.n2t", "sameas": "bioregistry.chembl.target", "homepage": "https://www.ebi.ac.uk/chembldb/", "prefix": "chembl.target", "name": "ChEMBL targets database at EBI", "uri_format": "https://www.ebi.ac.uk/chembl/target/inspect/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.chembl.target.cellosaurus": {"id": "bioregistry.chembl.target.cellosaurus", "sameas": "bioregistry.chembl.target", "homepage": "https://www.ebi.ac.uk/chembldb", "prefix": "ChEMBL-Targets", "name": "ChEMBL database of bioactive drug-like small molecules - Targets section", "uri_format": "https://www.ebi.ac.uk/chembldb/target/inspect/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.chembl.target": {"id": "bioregistry.chembl.target", "homepage": null, "prefix": "chembl.target", "name": "ChEMBL database of bioactive drug-like small molecules - Targets section", "uri_format": "https://www.ebi.ac.uk/chembldb/target/inspect/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.chemdb.miriam": {"id": "bioregistry.chemdb.miriam", "sameas": "bioregistry.chemdb", "homepage": "http://cdb.ics.uci.edu/", "prefix": "chemdb", "name": "ChemDB", "uri_format": "http://cdb.ics.uci.edu/cgibin/ChemicalDetailWeb.py?chemical_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.chemdb.n2t": {"id": "bioregistry.chemdb.n2t", "sameas": "bioregistry.chemdb", "homepage": "http://cdb.ics.uci.edu/", "prefix": "chemdb", "name": "ChemDB at UC Irvine", "uri_format": "http://cdb.ics.uci.edu/cgibin/ChemicalDetailWeb.py?chemical_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.chemdb.prefixcommons": {"id": "bioregistry.chemdb.prefixcommons", "sameas": "bioregistry.chemdb", "homepage": "http://cdb.ics.uci.edu", "prefix": "chemdb", "name": "The UC Irvine ChemDB", "uri_format": "http://cdb.ics.uci.edu/cgibin/ChemicalDetailWeb.py?chemical_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.chemdb": {"id": "bioregistry.chemdb", "homepage": null, "prefix": "chemdb", "name": "The UC Irvine ChemDB", "uri_format": "http://cdb.ics.uci.edu/cgibin/ChemicalDetailWeb.py?chemical_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.chemidplus.miriam": {"id": "bioregistry.chemidplus.miriam", "sameas": "bioregistry.chemidplus", "homepage": "https://chem.nlm.nih.gov/chemidplus/chemidheavy.jsp", "prefix": "chemidplus", "name": "ChemIDplus", "uri_format": "https://chem.nlm.nih.gov/chemidplus/rn/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.chemidplus.n2t": {"id": "bioregistry.chemidplus.n2t", "sameas": "bioregistry.chemidplus", "homepage": "https://chem.nlm.nih.gov/chemidplus/chemidheavy.jsp", "prefix": "chemidplus", "name": "ChemIDplus at National Library of Medicine", "uri_format": "https://chem.nlm.nih.gov/chemidplus/rn/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.chemidplus.prefixcommons": {"id": "bioregistry.chemidplus.prefixcommons", "sameas": "bioregistry.chemidplus", "homepage": "http://chem.sis.nlm.nih.gov/chemidplus/chemidheavy.jsp", "prefix": "chemidplus", "name": "ChemIDplus", "uri_format": "http://chem.sis.nlm.nih.gov/chemidplus/direct.jsp?regno=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.chemidplus": {"id": "bioregistry.chemidplus", "homepage": null, "prefix": "chemidplus", "name": "ChemIDplus at National Library of Medicine", "uri_format": "https://chem.nlm.nih.gov/chemidplus/rn/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.chemspider.miriam": {"id": "bioregistry.chemspider.miriam", "sameas": "bioregistry.chemspider", "homepage": "http://www.chemspider.com/", "prefix": "chemspider", "name": "ChemSpider", "uri_format": "http://www.chemspider.com/Chemical-Structure.$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.chemspider.n2t": {"id": "bioregistry.chemspider.n2t", "sameas": "bioregistry.chemspider", "homepage": "http://www.chemspider.com/", "prefix": "chemspider", "name": "ChemSpider at RSC", "uri_format": "http://www.chemspider.com/Chemical-Structure.$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.chemspider.prefixcommons": {"id": "bioregistry.chemspider.prefixcommons", "sameas": "bioregistry.chemspider", "homepage": "http://www.chemspider.com/", "prefix": "chemspider", "name": "ChemSpider - Database of Chemical Structures and Property Predictions", "uri_format": "http://www.chemspider.com/Chemical-Structure.$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.chemspider.wikidata": {"id": "bioregistry.chemspider.wikidata", "sameas": "bioregistry.chemspider", "homepage": "https://www.chemspider.com/", "prefix": "P661", "name": "ChemSpider ID", "uri_format": "https://www.chemspider.com/Chemical-Structure.$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "wikidata"}, "bioregistry.chemspider": {"id": "bioregistry.chemspider", "homepage": null, "prefix": "chemspider", "name": "ChemSpider - Database of Chemical Structures and Property Predictions", "uri_format": "https://www.chemspider.com/Chemical-Structure.$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.chickenqtldb.miriam": {"id": "bioregistry.chickenqtldb.miriam", "sameas": "bioregistry.chickenqtldb", "homepage": "https://www.animalgenome.org/QTLdb", "prefix": "chickenqtldb", "name": "Animal Genome Chicken QTL", "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.chickenqtldb.n2t": {"id": "bioregistry.chickenqtldb.n2t", "sameas": "bioregistry.chickenqtldb", "homepage": "http://www.animalgenome.org/cgi-bin/QTLdb/GG/index", "prefix": "chickenqtldb", "name": "Animal QTL Chicken at Iowa State University", "uri_format": "http://www.animalgenome.org/cgi-bin/QTLdb/GG/qdetails?QTL_ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.chickenqtldb.prefixcommons": {"id": "bioregistry.chickenqtldb.prefixcommons", "sameas": "bioregistry.chickenqtldb", "homepage": "http://www.animalgenome.org/cgi-bin/QTLdb/GG/index", "prefix": "chickenqtldb", "name": "Chicken Quantitative Trait Locus database", "uri_format": "http://www.animalgenome.org/cgi-bin/QTLdb/GG/qdetails?QTL_ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.chickenqtldb": {"id": "bioregistry.chickenqtldb", "homepage": null, "prefix": "chickenqtldb", "name": "Animal QTL Chicken at Iowa State University", "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.citexplore.prefixcommons": {"id": "bioregistry.citexplore.prefixcommons", "sameas": "bioregistry.citexplore", "homepage": "http://www.ebi.ac.uk/citexplore/", "prefix": "citexplore", "name": "CiteXplore", "uri_format": "http://www.ebi.ac.uk/citexplore/citationDetails.do?dataSource=MED&externalId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.citexplore": {"id": "bioregistry.citexplore", "homepage": "https://www.ebi.ac.uk/citexplore/", "prefix": "citexplore", "name": "Cerebrotendinous Xanthomatosis Ontology", "uri_format": "http://www.ebi.ac.uk/citexplore/citationDetails.do?dataSource=MED&externalId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.civic.aid.miriam": {"id": "bioregistry.civic.aid.miriam", "sameas": "bioregistry.civic.aid", "homepage": "https://civicdb.org/", "prefix": "civic.aid", "name": "CIViC Assertion", "uri_format": "https://civicdb.org/links/assertions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.civic.aid": {"id": "bioregistry.civic.aid", "homepage": null, "prefix": "civic.aid", "name": "CIViC Assertion", "uri_format": "https://civicdb.org/links/assertions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.civic.did.miriam": {"id": "bioregistry.civic.did.miriam", "sameas": "bioregistry.civic.did", "homepage": "https://civicdb.org/", "prefix": "civic.did", "name": "CIViC Disease", "uri_format": "https://civicdb.org/links/diseases/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.civic.did": {"id": "bioregistry.civic.did", "homepage": null, "prefix": "civic.did", "name": "CIViC Disease", "uri_format": "https://civicdb.org/links/diseases/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.civic.eid.miriam": {"id": "bioregistry.civic.eid.miriam", "sameas": "bioregistry.civic.eid", "homepage": "https://civicdb.org/", "prefix": "civic.eid", "name": "CIViC Evidence", "uri_format": "https://civicdb.org/links/evidence/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.civic.eid": {"id": "bioregistry.civic.eid", "homepage": null, "prefix": "civic.eid", "name": "CIViC Evidence", "uri_format": "https://civicdb.org/links/evidence/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.civic.gid.miriam": {"id": "bioregistry.civic.gid.miriam", "sameas": "bioregistry.civic.gid", "homepage": "https://civicdb.org/", "prefix": "civic.gid", "name": "CIViC Gene", "uri_format": "https://civicdb.org/links/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.civic.gid.wikidata": {"id": "bioregistry.civic.gid.wikidata", "sameas": "bioregistry.civic.gid", "homepage": "https://civic.genome.wustl.edu/#/home", "prefix": "P11277", "name": "CIViC gene ID", "uri_format": "https://civicdb.org/genes/$1/summary", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.civic.gid": {"id": "bioregistry.civic.gid", "homepage": null, "prefix": "civic.gid", "name": "CIViC gene ID", "uri_format": "https://civicdb.org/links/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.civic.mpid.miriam": {"id": "bioregistry.civic.mpid.miriam", "sameas": "bioregistry.civic.mpid", "homepage": "https://civicdb.org/", "prefix": "civic.mpid", "name": "CIViC Molecular Profile", "uri_format": "https://civicdb.org/links/molecular_profile/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.civic.mpid": {"id": "bioregistry.civic.mpid", "homepage": null, "prefix": "civic.mpid", "name": "CIViC Molecular Profile", "uri_format": "https://civicdb.org/links/molecular_profile/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.civic.sid.miriam": {"id": "bioregistry.civic.sid.miriam", "sameas": "bioregistry.civic.sid", "homepage": "https://civicdb.org/", "prefix": "civic.sid", "name": "CIViC Source", "uri_format": "https://civicdb.org/links/sources/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.civic.sid": {"id": "bioregistry.civic.sid", "homepage": null, "prefix": "civic.sid", "name": "CIViC Source", "uri_format": "https://civicdb.org/links/sources/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.civic.tid.miriam": {"id": "bioregistry.civic.tid.miriam", "sameas": "bioregistry.civic.tid", "homepage": "https://civicdb.org/", "prefix": "civic.tid", "name": "CIViC Therapy", "uri_format": "https://civicdb.org/links/drugs/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.civic.tid": {"id": "bioregistry.civic.tid", "homepage": null, "prefix": "civic.tid", "name": "CIViC Therapy", "uri_format": "https://civicdb.org/links/drugs/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.civic.vgid.miriam": {"id": "bioregistry.civic.vgid.miriam", "sameas": "bioregistry.civic.vgid", "homepage": "https://civicdb.org/", "prefix": "civic.vgid", "name": "CIViC Variant Group", "uri_format": "https://civicdb.org/links/variant_group/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.civic.vgid": {"id": "bioregistry.civic.vgid", "homepage": null, "prefix": "civic.vgid", "name": "CIViC Variant Group", "uri_format": "https://civicdb.org/links/variant_group/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.civic.vid.miriam": {"id": "bioregistry.civic.vid.miriam", "sameas": "bioregistry.civic.vid", "homepage": "https://civicdb.org/", "prefix": "civic.vid", "name": "CIViC Variant", "uri_format": "https://civicdb.org/links/variant/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.civic.vid.wikidata": {"id": "bioregistry.civic.vid.wikidata", "sameas": "bioregistry.civic.vid", "homepage": "https://civic.genome.wustl.edu/#/home", "prefix": "P3329", "name": "CIViC variant ID", "uri_format": "https://civic.genome.wustl.edu/links/variants/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.civic.vid": {"id": "bioregistry.civic.vid", "homepage": null, "prefix": "civic.vid", "name": "CIViC variant ID", "uri_format": "https://civicdb.org/links/variant/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cl.miriam": {"id": "bioregistry.cl.miriam", "sameas": "bioregistry.cl", "homepage": "http://bioportal.bioontology.org/ontologies/CL", "prefix": "cl", "name": "Cell Type Ontology", "uri_format": "http://purl.bioontology.org/ontology/CL/CL:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cl.n2t": {"id": "bioregistry.cl.n2t", "sameas": "bioregistry.cl", "homepage": "http://bioportal.bioontology.org/ontologies/CL", "prefix": "cl", "name": "Cell Type Ontology through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/CL/CL:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cl.cellosaurus": {"id": "bioregistry.cl.cellosaurus", "sameas": "bioregistry.cl", "homepage": "https://obophenotype.github.io/cell-ontology/", "prefix": "CL", "name": "Cell Ontology", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/cl/terms?iri=http://purl.obolibrary.org/obo/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology"], "authority": "cellosaurus"}, "bioregistry.cl": {"id": "bioregistry.cl", "homepage": null, "prefix": "cl", "name": "Cell Type Ontology through BioPortal", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/cl/terms?iri=http://purl.obolibrary.org/obo/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology"], "authority": "bioregistry"}, "bioregistry.classyfire.miriam": {"id": "bioregistry.classyfire.miriam", "sameas": "bioregistry.classyfire", "homepage": "http://classyfire.wishartlab.com/", "prefix": "classyfire", "name": "ClassyFire", "uri_format": "http://classyfire.wishartlab.com/tax_nodes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.classyfire": {"id": "bioregistry.classyfire", "homepage": null, "prefix": "classyfire", "name": "ClassyFire", "uri_format": "http://classyfire.wishartlab.com/tax_nodes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.clb.miriam": {"id": "bioregistry.clb.miriam", "sameas": "bioregistry.clb", "homepage": "https://www.checklistbank.org", "prefix": "clb", "name": "ChecklistBank", "uri_format": "https://www.checklistbank.org/dataset/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.clb": {"id": "bioregistry.clb", "homepage": null, "prefix": "clb", "name": "ChecklistBank", "uri_format": "https://www.checklistbank.org/dataset/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cldb.miriam": {"id": "bioregistry.cldb.miriam", "sameas": "bioregistry.cldb", "homepage": "http://bioinformatics.hsanmartino.it/hypercldb/indexes.html", "prefix": "cldb", "name": "CLDB", "uri_format": "http://bioinformatics.hsanmartino.it/hypercldb/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cldb.n2t": {"id": "bioregistry.cldb.n2t", "sameas": "bioregistry.cldb", "homepage": "http://bioinformatics.hsanmartino.it/hypercldb/indexes.html", "prefix": "cldb", "name": "CLDB at Genova", "uri_format": "http://bioinformatics.hsanmartino.it/hypercldb/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cldb.cellosaurus": {"id": "bioregistry.cldb.cellosaurus", "sameas": "bioregistry.cldb", "homepage": "http://bioinformatics.hsanmartino.it/cldb/", "prefix": "CLDB", "name": "Cell Line Data Base", "uri_format": "http://bioinformatics.hsanmartino.it/cldb/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.cldb": {"id": "bioregistry.cldb", "homepage": null, "prefix": "cldb", "name": "Cell Line Data Base", "uri_format": "http://bioinformatics.hsanmartino.it/hypercldb/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.clingene.biolink": {"id": "bioregistry.clingene.biolink", "sameas": "bioregistry.clingene", "homepage": null, "prefix": "CAID", "name": null, "uri_format": "http://reg.clinicalgenome.org/redmine/projects/registry/genboree_registry/by_caid?caid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.clingene": {"id": "bioregistry.clingene", "homepage": "https://reg.clinicalgenome.org", "prefix": "clingene", "name": "ClinGen Allele Registry", "uri_format": "http://reg.clinicalgenome.org/redmine/projects/registry/genboree_registry/by_caid?caid=$1", "source": "bioregistry.io", "subjects": ["genetics", "mutation"], "authority": "bioregistry"}, "bioregistry.clinicaltrials.miriam": {"id": "bioregistry.clinicaltrials.miriam", "sameas": "bioregistry.clinicaltrials", "homepage": "https://clinicaltrials.gov/", "prefix": "clinicaltrials", "name": "ClinicalTrials.gov", "uri_format": "https://clinicaltrials.gov/ct2/show/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.clinicaltrials.n2t": {"id": "bioregistry.clinicaltrials.n2t", "sameas": "bioregistry.clinicaltrials", "homepage": "https://clinicaltrials.gov/", "prefix": "clinicaltrials", "name": "ClinicalTrials.gov at NIH", "uri_format": "https://clinicaltrials.gov/ct2/show/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.clinicaltrials.prefixcommons": {"id": "bioregistry.clinicaltrials.prefixcommons", "sameas": "bioregistry.clinicaltrials", "homepage": "http://clinicaltrials.gov/", "prefix": "clinicaltrials", "name": "ClinicalTrials.gov", "uri_format": "http://clinicaltrials.gov/ct2/show/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "health sciences", "pharmacology and pharmacy"], "authority": "prefixcommons"}, "bioregistry.clinicaltrials.wikidata": {"id": "bioregistry.clinicaltrials.wikidata", "sameas": "bioregistry.clinicaltrials", "homepage": null, "prefix": "P3098", "name": "ClinicalTrials.gov ID", "uri_format": "https://clinicaltrials.gov/show/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "health sciences", "pharmacology and pharmacy"], "authority": "wikidata"}, "bioregistry.clinicaltrials": {"id": "bioregistry.clinicaltrials", "homepage": null, "prefix": "clinicaltrials", "name": "ClinicalTrials.gov at NIH", "uri_format": "https://clinicaltrials.gov/show/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "health sciences", "pharmacology and pharmacy"], "authority": "bioregistry"}, "bioregistry.clinvar.miriam": {"id": "bioregistry.clinvar.miriam", "sameas": "bioregistry.clinvar", "homepage": "http://www.ncbi.nlm.nih.gov/clinvar/", "prefix": "clinvar", "name": "ClinVar Variant", "uri_format": "https://www.ncbi.nlm.nih.gov/clinvar/variation/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.clinvar.n2t": {"id": "bioregistry.clinvar.n2t", "sameas": "bioregistry.clinvar", "homepage": "http://www.ncbi.nlm.nih.gov/clinvar/", "prefix": "clinvar", "name": "ClinVar Variant at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/clinvar/variation/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.clinvar.wikidata": {"id": "bioregistry.clinvar.wikidata", "sameas": "bioregistry.clinvar", "homepage": "https://www.ncbi.nlm.nih.gov/clinvar/", "prefix": "P1929", "name": "ClinVar Variation ID", "uri_format": "https://www.ncbi.nlm.nih.gov/clinvar/variation/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.clinvar.biolink": {"id": "bioregistry.clinvar.biolink", "sameas": "bioregistry.clinvar", "homepage": null, "prefix": "CLINVAR", "name": null, "uri_format": "http://identifiers.org/clinvar$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.clinvar.cellosaurus": {"id": "bioregistry.clinvar.cellosaurus", "sameas": "bioregistry.clinvar", "homepage": "https://www.ncbi.nlm.nih.gov/clinvar/", "prefix": "ClinVar", "name": "ClinVar", "uri_format": "https://www.ncbi.nlm.nih.gov/clinvar/variation/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.clinvar.biocontext": {"id": "bioregistry.clinvar.biocontext", "sameas": "bioregistry.clinvar", "homepage": null, "prefix": "ClinVarVariant", "name": null, "uri_format": "http://www.ncbi.nlm.nih.gov/clinvar/variation/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.clinvar": {"id": "bioregistry.clinvar", "homepage": null, "prefix": "clinvar", "name": "ClinVar Variant at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/clinvar/variation/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.clinvar.record.miriam": {"id": "bioregistry.clinvar.record.miriam", "sameas": "bioregistry.clinvar.record", "homepage": "http://www.ncbi.nlm.nih.gov/clinvar/", "prefix": "clinvar.record", "name": "ClinVar Record", "uri_format": "http://www.ncbi.nlm.nih.gov/clinvar/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.clinvar.record.n2t": {"id": "bioregistry.clinvar.record.n2t", "sameas": "bioregistry.clinvar.record", "homepage": "http://www.ncbi.nlm.nih.gov/clinvar/", "prefix": "clinvar.record", "name": "ClinVar Record at NCBI", "uri_format": "http://www.ncbi.nlm.nih.gov/clinvar/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.clinvar.record": {"id": "bioregistry.clinvar.record", "homepage": null, "prefix": "clinvar.record", "name": "ClinVar Record at NCBI", "uri_format": "http://www.ncbi.nlm.nih.gov/clinvar/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.clinvar.submission.miriam": {"id": "bioregistry.clinvar.submission.miriam", "sameas": "bioregistry.clinvar.submission", "homepage": "http://www.ncbi.nlm.nih.gov/clinvar/", "prefix": "clinvar.submission", "name": "ClinVar Submission", "uri_format": "http://www.ncbi.nlm.nih.gov/clinvar?term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.clinvar.submission.n2t": {"id": "bioregistry.clinvar.submission.n2t", "sameas": "bioregistry.clinvar.submission", "homepage": "http://www.ncbi.nlm.nih.gov/clinvar/", "prefix": "clinvar.submission", "name": "ClinVar Submission at NCBI", "uri_format": "http://www.ncbi.nlm.nih.gov/clinvar?term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.clinvar.submission": {"id": "bioregistry.clinvar.submission", "homepage": null, "prefix": "clinvar.submission", "name": "ClinVar Submission at NCBI", "uri_format": "http://www.ncbi.nlm.nih.gov/clinvar?term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.clinvar.submitter.miriam": {"id": "bioregistry.clinvar.submitter.miriam", "sameas": "bioregistry.clinvar.submitter", "homepage": "https://www.ncbi.nlm.nih.gov/clinvar/", "prefix": "clinvar.submitter", "name": "ClinVar Submitter", "uri_format": "https://www.ncbi.nlm.nih.gov/clinvar/submitters/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.clinvar.submitter": {"id": "bioregistry.clinvar.submitter", "homepage": null, "prefix": "clinvar.submitter", "name": "ClinVar Submitter", "uri_format": "https://www.ncbi.nlm.nih.gov/clinvar/submitters/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.clo.miriam": {"id": "bioregistry.clo.miriam", "sameas": "bioregistry.clo", "homepage": "https://www.ebi.ac.uk/ols4/ontologies/clo", "prefix": "clo", "name": "Cell Line Ontology", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/clo/terms?short_form=CLO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.clo.cellosaurus": {"id": "bioregistry.clo.cellosaurus", "sameas": "bioregistry.clo", "homepage": "http://www.clo-ontology.org", "prefix": "CLO", "name": "Cell Line Ontology", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/clo/terms?iri=http://purl.obolibrary.org/obo/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.clo": {"id": "bioregistry.clo", "homepage": null, "prefix": "clo", "name": "CLO: Cell Line Ontology", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/clo/terms?short_form=CLO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cls.cellosaurus": {"id": "bioregistry.cls.cellosaurus", "sameas": "bioregistry.cls", "homepage": "https://cls.shop/", "prefix": "CLS", "name": "Cell Lines Service", "uri_format": "https://cls.shop/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.cls": {"id": "bioregistry.cls", "homepage": null, "prefix": "cls", "name": "Cell Lines Service", "uri_format": "https://cls.shop/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cnrs.wikidata": {"id": "bioregistry.cnrs.wikidata", "sameas": "bioregistry.cnrs", "homepage": null, "prefix": "P4550", "name": "CNRS research group ID", "uri_format": "https://web-ast.dsi.cnrs.fr/l3c/owa/structure.infos_admin?&p_lab=$1&p_origine_appel=u", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.cnrs": {"id": "bioregistry.cnrs", "homepage": "https://annuaire.cnrs.fr", "prefix": "cnrs", "name": "French National Center for Scientific Research - Research Group Identifier", "uri_format": "https://web-ast.dsi.cnrs.fr/l3c/owa/structure.infos_admin?&p_lab=$1&p_origine_appel=u", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cog.prefixcommons": {"id": "bioregistry.cog.prefixcommons", "sameas": "bioregistry.cog", "homepage": "http://www.ncbi.nlm.nih.gov/COG", "prefix": "cog", "name": "Clusters of Orthologous Groups of Proteins: Phylogenetic classification of proteins encoded in complete genomes", "uri_format": "http://www.ncbi.nlm.nih.gov/COG/grace/cogenome.cgi?g=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.cog.go": {"id": "bioregistry.cog.go", "sameas": "bioregistry.cog", "homepage": "http://www.ncbi.nlm.nih.gov/COG/", "prefix": "COG_Cluster", "name": "NCBI COG cluster", "uri_format": "http://www.ncbi.nlm.nih.gov/COG/new/release/cow.cgi?cog=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "go"}, "bioregistry.cog.biolink": {"id": "bioregistry.cog.biolink", "sameas": "bioregistry.cog", "homepage": null, "prefix": "COG", "name": null, "uri_format": "https://www.ncbi.nlm.nih.gov/research/cog-project/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "biolink"}, "bioregistry.cog": {"id": "bioregistry.cog", "homepage": "https://www.ncbi.nlm.nih.gov/research/cog/", "prefix": "cog", "name": "Clusters of Orthologous Groups of Proteins: Phylogenetic classification of proteins encoded in complete genomes", "uri_format": "https://www.ncbi.nlm.nih.gov/research/cog-project/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.cog.pathway.go": {"id": "bioregistry.cog.pathway.go", "sameas": "bioregistry.cog.pathway", "homepage": "http://www.ncbi.nlm.nih.gov/COG/", "prefix": "COG_Pathway", "name": "NCBI COG pathway", "uri_format": "http://www.ncbi.nlm.nih.gov/COG/new/release/coglist.cgi?pathw=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.cog.pathway": {"id": "bioregistry.cog.pathway", "homepage": "https://www.ncbi.nlm.nih.gov/research/cog/pathways", "prefix": "cog.pathway", "name": "NCBI COG pathway", "uri_format": "http://www.ncbi.nlm.nih.gov/COG/new/release/coglist.cgi?pathw=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.col.miriam": {"id": "bioregistry.col.miriam", "sameas": "bioregistry.col", "homepage": "https://www.checklistbank.org", "prefix": "col", "name": "Catalogue of Life", "uri_format": "https://www.checklistbank.org/dataset/3LR/taxon/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.col": {"id": "bioregistry.col", "homepage": null, "prefix": "col", "name": "Catalogue of Life", "uri_format": "https://www.checklistbank.org/dataset/3LR/taxon/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.col.taiwan.wikidata": {"id": "bioregistry.col.taiwan.wikidata", "sameas": "bioregistry.col.taiwan", "homepage": "https://taibnet.sinica.edu.tw/home_eng.php", "prefix": "P3088", "name": "Catalogue of Life in Taiwan ID", "uri_format": "https://taibnet.sinica.edu.tw/eng/taibnet_species_detail.php?name_code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.col.taiwan": {"id": "bioregistry.col.taiwan", "homepage": "http://taibnet.sinica.edu.tw/home.php", "prefix": "col.taiwan", "name": "Catalogue of Life in Taiwan ID", "uri_format": "https://taibnet.sinica.edu.tw/eng/taibnet_species_detail.php?name_code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.collagenmutdb.prefixcommons": {"id": "bioregistry.collagenmutdb.prefixcommons", "sameas": "bioregistry.collagenmutdb", "homepage": "http://www.le.ac.uk/genetics/collagen/", "prefix": "cmd", "name": "Collagen Mutation Database", "uri_format": "https://eds.gene.le.ac.uk/home.php?select_db=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.collagenmutdb": {"id": "bioregistry.collagenmutdb", "homepage": null, "prefix": "collagenmutdb", "name": "Collagen Mutation Database", "uri_format": "https://eds.gene.le.ac.uk/home.php?select_db=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.colonatlas.cellosaurus": {"id": "bioregistry.colonatlas.cellosaurus", "sameas": "bioregistry.colonatlas", "homepage": "http://www.coloncanceratlas.org", "prefix": "ColonAtlas", "name": "Colorectal Cancer Atlas", "uri_format": "http://www.coloncanceratlas.org/search_cell_line?cell_line=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.colonatlas": {"id": "bioregistry.colonatlas", "homepage": null, "prefix": "colonatlas", "name": "Colorectal Cancer Atlas", "uri_format": "http://www.coloncanceratlas.org/search_cell_line?cell_line=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.combine.specifications.miriam": {"id": "bioregistry.combine.specifications.miriam", "sameas": "bioregistry.combine.specifications", "homepage": "https://co.mbine.org/standards/", "prefix": "combine.specifications", "name": "COMBINE specifications", "uri_format": "https://github.com/combine-org/combine-specifications/blob/main/specifications/$1.md", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.combine.specifications.n2t": {"id": "bioregistry.combine.specifications.n2t", "sameas": "bioregistry.combine.specifications", "homepage": "https://co.mbine.org/standards/", "prefix": "combine.specifications", "name": "COMBINE at EBI", "uri_format": "https://co.mbine.org/specifications/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.combine.specifications": {"id": "bioregistry.combine.specifications", "homepage": null, "prefix": "combine.specifications", "name": "COMBINE specifications", "uri_format": "https://github.com/combine-org/combine-specifications/blob/main/specifications/$1.md", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.come.prefixcommons": {"id": "bioregistry.come.prefixcommons", "sameas": "bioregistry.come", "homepage": "http://www.flymine.org/come/", "prefix": "come", "name": "COMe", "uri_format": "http://www.flymine.org/come/entry?gn=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.come": {"id": "bioregistry.come", "homepage": "https://www.flymine.org/come", "prefix": "come", "name": "The Bioinorganic Motif Database", "uri_format": "http://www.flymine.org/come/entry?gn=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.complexportal.miriam": {"id": "bioregistry.complexportal.miriam", "sameas": "bioregistry.complexportal", "homepage": "https://www.ebi.ac.uk/complexportal", "prefix": "complexportal", "name": "Complex Portal", "uri_format": "https://www.ebi.ac.uk/complexportal/complex/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.complexportal.n2t": {"id": "bioregistry.complexportal.n2t", "sameas": "bioregistry.complexportal", "homepage": "https://www.ebi.ac.uk/complexportal", "prefix": "complexportal", "name": "Complex Portal", "uri_format": "https://www.ebi.ac.uk/complexportal/complex/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.complexportal.wikidata": {"id": "bioregistry.complexportal.wikidata", "sameas": "bioregistry.complexportal", "homepage": "https://www.ebi.ac.uk/complexportal/home", "prefix": "P7718", "name": "Complex Portal accession ID", "uri_format": "https://www.ebi.ac.uk/complexportal/complex/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.complexportal.go": {"id": "bioregistry.complexportal.go", "sameas": "bioregistry.complexportal", "homepage": "https://www.ebi.ac.uk/complexportal", "prefix": "ComplexPortal", "name": "Complex Portal database of macromolecular complexes", "uri_format": "https://www.ebi.ac.uk/complexportal/complex/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.complexportal.uniprot": {"id": "bioregistry.complexportal.uniprot", "sameas": "bioregistry.complexportal", "homepage": "https://www.ebi.ac.uk/complexportal/", "prefix": "DB-0228", "name": "ComplexPortal", "uri_format": "https://www.ebi.ac.uk/complexportal/complex/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.complexportal.biolink": {"id": "bioregistry.complexportal.biolink", "sameas": "bioregistry.complexportal", "homepage": null, "prefix": "ComplexPortal", "name": null, "uri_format": "https://www.ebi.ac.uk/complexportal/complex/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.complexportal": {"id": "bioregistry.complexportal", "homepage": null, "prefix": "complexportal", "name": "Complex Portal database of macromolecular complexes", "uri_format": "https://www.ebi.ac.uk/complexportal/complex/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.comptox.miriam": {"id": "bioregistry.comptox.miriam", "sameas": "bioregistry.comptox", "homepage": "https://comptox.epa.gov/dashboard", "prefix": "comptox", "name": "CompTox Chemistry Dashboard", "uri_format": "https://comptox.epa.gov/dashboard/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.comptox.n2t": {"id": "bioregistry.comptox.n2t", "sameas": "bioregistry.comptox", "homepage": "https://comptox.epa.gov/dashboard", "prefix": "comptox", "name": "CompTox Chemistry Dashboard", "uri_format": "https://comptox.epa.gov/dashboard/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.comptox.wikidata": {"id": "bioregistry.comptox.wikidata", "sameas": "bioregistry.comptox", "homepage": null, "prefix": "P3117", "name": "DSSTox substance ID", "uri_format": "https://comptox.epa.gov/dashboard/chemical/details/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.comptox": {"id": "bioregistry.comptox", "homepage": null, "prefix": "comptox", "name": "CompTox Chemistry Dashboard", "uri_format": "https://comptox.epa.gov/dashboard/chemical/details/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.compulyeast.miriam": {"id": "bioregistry.compulyeast.miriam", "sameas": "bioregistry.compulyeast", "homepage": "http://compluyeast2dpage.dacya.ucm.es/", "prefix": "compulyeast", "name": "Compulyeast", "uri_format": "http://compluyeast2dpage.dacya.ucm.es/cgi-bin/2d/2d.cgi?ac=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.compulyeast.n2t": {"id": "bioregistry.compulyeast.n2t", "sameas": "bioregistry.compulyeast", "homepage": "http://compluyeast2dpage.dacya.ucm.es/", "prefix": "compulyeast", "name": "Compluyeast database at Universidad Complutense Madrid", "uri_format": "http://compluyeast2dpage.dacya.ucm.es/cgi-bin/2d/2d.cgi?ac=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.compulyeast.prefixcommons": {"id": "bioregistry.compulyeast.prefixcommons", "sameas": "bioregistry.compulyeast", "homepage": "http://compluyeast2dpage.dacya.ucm.es/", "prefix": "compluyeast2dpage", "name": "CompluYeast 2D-PAGE", "uri_format": "http://compluyeast2dpage.dacya.ucm.es/cgi-bin/2d/2d.cgi?ac=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.compulyeast": {"id": "bioregistry.compulyeast", "homepage": null, "prefix": "compulyeast", "name": "Compluyeast database at Universidad Complutense Madrid", "uri_format": "http://compluyeast2dpage.dacya.ucm.es/cgi-bin/2d/2d.cgi?ac=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.conoserver.miriam": {"id": "bioregistry.conoserver.miriam", "sameas": "bioregistry.conoserver", "homepage": "http://www.conoserver.org/", "prefix": "conoserver", "name": "Conoserver", "uri_format": "http://www.conoserver.org/?page=card&table=protein&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.conoserver.n2t": {"id": "bioregistry.conoserver.n2t", "sameas": "bioregistry.conoserver", "homepage": "http://www.conoserver.org/", "prefix": "conoserver", "name": "ConoServer at University of Queensland", "uri_format": "http://www.conoserver.org/?page=card&table=protein&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.conoserver.uniprot": {"id": "bioregistry.conoserver.uniprot", "sameas": "bioregistry.conoserver", "homepage": "https://www.conoserver.org/", "prefix": "DB-0156", "name": "ConoServer", "uri_format": "https://www.conoserver.org/?page=card&table=protein&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.conoserver": {"id": "bioregistry.conoserver", "homepage": null, "prefix": "conoserver", "name": "ConoServer at University of Queensland", "uri_format": "https://www.conoserver.org/?page=card&table=protein&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.coriell.miriam": {"id": "bioregistry.coriell.miriam", "sameas": "bioregistry.coriell", "homepage": "http://ccr.coriell.org/", "prefix": "coriell", "name": "Coriell Cell Repositories", "uri_format": "http://ccr.coriell.org/Sections/Search/Sample_Detail.aspx?Ref=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.coriell.n2t": {"id": "bioregistry.coriell.n2t", "sameas": "bioregistry.coriell", "homepage": "http://ccr.coriell.org/", "prefix": "coriell", "name": "Coriell Cell Repositories at Coriell Institute", "uri_format": "http://ccr.coriell.org/Sections/Search/Sample_Detail.aspx?Ref=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.coriell.go": {"id": "bioregistry.coriell.go", "sameas": "bioregistry.coriell", "homepage": "http://ccr.coriell.org/", "prefix": "CORIELL", "name": "Coriell Institute for Medical Research", "uri_format": "http://ccr.coriell.org/Sections/Search/Sample_Detail.aspx?Ref=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.coriell.cellosaurus": {"id": "bioregistry.coriell.cellosaurus", "sameas": "bioregistry.coriell", "homepage": "https://catalog.coriell.org", "prefix": "Coriell", "name": "Coriell Institute Biorepositories", "uri_format": "https://catalog.coriell.org/0/Sections/Search/Sample_Detail.aspx?Ref=$1&Product=CC", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.coriell.biocontext": {"id": "bioregistry.coriell.biocontext", "sameas": "bioregistry.coriell", "homepage": null, "prefix": "Coriell", "name": null, "uri_format": "https://catalog.coriell.org/0/Sections/Search/Sample_Detail.aspx?Ref=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.coriell": {"id": "bioregistry.coriell", "homepage": null, "prefix": "coriell", "name": "Coriell Cell Repositories at Coriell Institute", "uri_format": "https://catalog.coriell.org/0/Sections/Search/Sample_Detail.aspx?Ref=$1&Product=CC", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.corrdb.miriam": {"id": "bioregistry.corrdb.miriam", "sameas": "bioregistry.corrdb", "homepage": "https://www.animalgenome.org", "prefix": "corrdb", "name": "CorrDB", "uri_format": "https://www.animalgenome.org/CorrDB/q/?id=CorrID:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.corrdb": {"id": "bioregistry.corrdb", "homepage": null, "prefix": "corrdb", "name": "Animal Trait Correlation Database", "uri_format": "https://www.animalgenome.org/CorrDB/q/?id=CorrID:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.corum.miriam": {"id": "bioregistry.corum.miriam", "sameas": "bioregistry.corum", "homepage": "https://mips.helmholtz-muenchen.de/genre/proj/corum/", "prefix": "corum", "name": "CORUM", "uri_format": "https://mips.helmholtz-muenchen.de/corum/?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.corum.n2t": {"id": "bioregistry.corum.n2t", "sameas": "bioregistry.corum", "homepage": "https://mips.helmholtz-muenchen.de/genre/proj/corum/", "prefix": "corum", "name": "CORUM at Institute for Bioinformatics and Systems Biology (Germany)", "uri_format": "https://mips.helmholtz-muenchen.de/corum/?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.corum.prefixcommons": {"id": "bioregistry.corum.prefixcommons", "sameas": "bioregistry.corum", "homepage": "http://mips.gsf.de/genre/proj/corum", "prefix": "corum", "name": "the Comprehensive Resource of Mammalian protein complexes", "uri_format": "http://mips.helmholtz-muenchen.de/genre/proj/corum/complexdetails.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.corum.go": {"id": "bioregistry.corum.go", "sameas": "bioregistry.corum", "homepage": "https://mips.helmholtz-muenchen.de/corum/", "prefix": "CORUM", "name": "CORUM - the Comprehensive Resource of Mammalian protein complexes", "uri_format": "https://mips.helmholtz-muenchen.de/corum/?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.corum.uniprot": {"id": "bioregistry.corum.uniprot", "sameas": "bioregistry.corum", "homepage": "http://mips.helmholtz-muenchen.de/corum/", "prefix": "DB-0224", "name": "CORUM comprehensive resource of mammalian protein complexes", "uri_format": "http://mips.helmholtz-muenchen.de/corum/#?uniprotID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.corum": {"id": "bioregistry.corum", "homepage": null, "prefix": "corum", "name": "CORUM at Institute for Bioinformatics and Systems Biology (Germany)", "uri_format": "https://mips.helmholtz-muenchen.de/corum/?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.cosmic.miriam": {"id": "bioregistry.cosmic.miriam", "sameas": "bioregistry.cosmic", "homepage": "http://cancer.sanger.ac.uk/cosmic/", "prefix": "cosmic", "name": "COSMIC Gene", "uri_format": "http://cancer.sanger.ac.uk/cosmic/gene/overview?ln=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cosmic.n2t": {"id": "bioregistry.cosmic.n2t", "sameas": "bioregistry.cosmic", "homepage": "http://cancer.sanger.ac.uk/cosmic/", "prefix": "cosmic", "name": "COSMIC Gene at Sanger", "uri_format": "http://cancer.sanger.ac.uk/cosmic/gene/overview?ln=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cosmic.cellosaurus": {"id": "bioregistry.cosmic.cellosaurus", "sameas": "bioregistry.cosmic", "homepage": "https://cancer.sanger.ac.uk/cosmic", "prefix": "Cosmic", "name": "Catalogue of somatic mutations in cancer", "uri_format": "https://cancer.sanger.ac.uk/cosmic/sample/overview?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.cosmic.biocontext": {"id": "bioregistry.cosmic.biocontext", "sameas": "bioregistry.cosmic", "homepage": null, "prefix": "COSMIC", "name": null, "uri_format": "http://cancer.sanger.ac.uk/cosmic/mutation/overview?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.cosmic": {"id": "bioregistry.cosmic", "homepage": null, "prefix": "cosmic", "name": "Catalogue of somatic mutations in cancer", "uri_format": "https://cancer.sanger.ac.uk/cosmic/sample/overview?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cosmic.cell.cellosaurus": {"id": "bioregistry.cosmic.cell.cellosaurus", "sameas": "bioregistry.cosmic.cell", "homepage": "https://cancer.sanger.ac.uk/cell_lines", "prefix": "Cosmic-CLP", "name": "COSMIC Cell lines Project", "uri_format": "https://cancer.sanger.ac.uk/cell_lines/sample/overview?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.cosmic.cell": {"id": "bioregistry.cosmic.cell", "homepage": "https://cancer.sanger.ac.uk/cell_lines/", "prefix": "cosmic.cell", "name": "COSMIC Cell lines Project", "uri_format": "https://cancer.sanger.ac.uk/cell_lines/sample/overview?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.covid19.miriam": {"id": "bioregistry.covid19.miriam", "sameas": "bioregistry.covid19", "homepage": "https://covid19.sfb.uit.no", "prefix": "covid19", "name": "SARS-CoV-2", "uri_format": "https://covid19.sfb.uit.no/api/records/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.covid19": {"id": "bioregistry.covid19", "homepage": null, "prefix": "covid19", "name": "COVID-19 Surveillance Ontology", "uri_format": "https://covid19.sfb.uit.no/api/records/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cpc.miriam": {"id": "bioregistry.cpc.miriam", "sameas": "bioregistry.cpc", "homepage": "https://worldwide.espacenet.com/classification", "prefix": "cpc", "name": "Cooperative Patent Classification", "uri_format": "https://worldwide.espacenet.com/classification?locale=en_EP#!/CPC=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cpc.n2t": {"id": "bioregistry.cpc.n2t", "sameas": "bioregistry.cpc", "homepage": "https://worldwide.espacenet.com/classification", "prefix": "cpc", "name": "Cooperative Patent Classification at Espace", "uri_format": "https://worldwide.espacenet.com/classification?locale=en_EP#!/CPC=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cpc": {"id": "bioregistry.cpc", "homepage": null, "prefix": "cpc", "name": "Cooperative Patent Classification at Espace", "uri_format": "https://worldwide.espacenet.com/classification?locale=en_EP#!/CPC=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cpt.biolink": {"id": "bioregistry.cpt.biolink", "sameas": "bioregistry.cpt", "homepage": null, "prefix": "CPT", "name": null, "uri_format": "https://www.ama-assn.org/practice-management/cpt/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.cpt": {"id": "bioregistry.cpt", "homepage": "https://www.aapc.com", "prefix": "cpt", "name": "CPT - Current Procedural Terminology", "uri_format": "https://www.ama-assn.org/practice-management/cpt/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.crisprdb.miriam": {"id": "bioregistry.crisprdb.miriam", "sameas": "bioregistry.crisprdb", "homepage": "http://crispr.i2bc.paris-saclay.fr/", "prefix": "crisprdb", "name": "CRISPRdb", "uri_format": "http://crispr.i2bc.paris-saclay.fr/cgi-bin/crispr/SpecieProperties_db.cgi?Taxon_id[]=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.crisprdb.n2t": {"id": "bioregistry.crisprdb.n2t", "sameas": "bioregistry.crisprdb", "homepage": "http://crispr.i2bc.paris-saclay.fr/", "prefix": "crisprdb", "name": "CRISPRdb", "uri_format": "http://crispr.i2bc.paris-saclay.fr/cgi-bin/crispr/SpecieProperties_db.cgi?Taxon_id[]=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.crisprdb": {"id": "bioregistry.crisprdb", "homepage": null, "prefix": "crisprdb", "name": "CRISPRdb", "uri_format": "http://crispr.i2bc.paris-saclay.fr/cgi-bin/crispr/SpecieProperties_db.cgi?Taxon_id[]=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.crop2ml.miriam": {"id": "bioregistry.crop2ml.miriam", "sameas": "bioregistry.crop2ml", "homepage": "http://www.crop2ml.org", "prefix": "crop2ml", "name": "CropMRepository", "uri_format": "http://www.crop2ml.org/cropmdb/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.crop2ml": {"id": "bioregistry.crop2ml", "homepage": null, "prefix": "crop2ml", "name": "CropMRepository", "uri_format": "http://www.crop2ml.org/cropmdb/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cryptodb.miriam": {"id": "bioregistry.cryptodb.miriam", "sameas": "bioregistry.cryptodb", "homepage": "https://cryptodb.org/cryptodb/", "prefix": "cryptodb", "name": "CryptoDB", "uri_format": "https://cryptodb.org/cryptodb/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cryptodb.n2t": {"id": "bioregistry.cryptodb.n2t", "sameas": "bioregistry.cryptodb", "homepage": "https://cryptodb.org/cryptodb/", "prefix": "cryptodb", "name": "CryptoDB at EuPathDB", "uri_format": "https://cryptodb.org/cryptodb/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cryptodb.prefixcommons": {"id": "bioregistry.cryptodb.prefixcommons", "sameas": "bioregistry.cryptodb", "homepage": "http://cryptodb.org/cryptodb/", "prefix": "cryptodb", "name": "Cryptosporidum Genomics Resource", "uri_format": "http://cryptodb.org/cryptodb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.cryptodb": {"id": "bioregistry.cryptodb", "homepage": null, "prefix": "cryptodb", "name": "Cryptosporidum Genomics Resource", "uri_format": "https://cryptodb.org/cryptodb/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.csa.miriam": {"id": "bioregistry.csa.miriam", "sameas": "bioregistry.csa", "homepage": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/", "prefix": "csa", "name": "CSA", "uri_format": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/SearchResults.php?PDBID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.csa.n2t": {"id": "bioregistry.csa.n2t", "sameas": "bioregistry.csa", "homepage": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/", "prefix": "csa", "name": "CSA at EBI", "uri_format": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/SearchResults.php?PDBID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.csa.prefixcommons": {"id": "bioregistry.csa.prefixcommons", "sameas": "bioregistry.csa", "homepage": "http://www.ebi.ac.uk/thornton-srv/databases/CSA/", "prefix": "csa", "name": "Catalytic Site Atlas", "uri_format": "http://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/CSA/CSA_Site_Wrapper.pl?pdb=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.csa": {"id": "bioregistry.csa", "homepage": null, "prefix": "csa", "name": "Catalytic Site Atlas", "uri_format": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/SearchResults.php?PDBID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.csd.miriam": {"id": "bioregistry.csd.miriam", "sameas": "bioregistry.csd", "homepage": "https://www.ccdc.cam.ac.uk/", "prefix": "csd", "name": "Cambridge Structural Database", "uri_format": "https://www.ccdc.cam.ac.uk/services/structures?pid=csd:$1&sid=IDORG", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.csd": {"id": "bioregistry.csd", "homepage": null, "prefix": "csd", "name": "The Cambridge Structural Database", "uri_format": "https://www.ccdc.cam.ac.uk/services/structures?pid=csd:$1&sid=IDORG", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cst.miriam": {"id": "bioregistry.cst.miriam", "sameas": "bioregistry.cst", "homepage": "http://www.cellsignal.com/pathways/index.html", "prefix": "cst", "name": "Cell Signaling Technology Pathways", "uri_format": "http://www.cellsignal.com/reference/pathway/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cst.n2t": {"id": "bioregistry.cst.n2t", "sameas": "bioregistry.cst", "homepage": "http://www.cellsignal.com/pathways/index.html", "prefix": "cst", "name": "CST Pathways at Cell Signaling Technology", "uri_format": "http://www.cellsignal.com/reference/pathway/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cst": {"id": "bioregistry.cst", "homepage": null, "prefix": "cst", "name": "Cell Signaling Technology Pathway Database", "uri_format": "http://www.cellsignal.com/reference/pathway/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cst.ab.miriam": {"id": "bioregistry.cst.ab.miriam", "sameas": "bioregistry.cst.ab", "homepage": "http://www.cellsignal.com/catalog/index.html", "prefix": "cst.ab", "name": "Cell Signaling Technology Antibody", "uri_format": "http://www.cellsignal.com/products/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cst.ab.n2t": {"id": "bioregistry.cst.ab.n2t", "sameas": "bioregistry.cst.ab", "homepage": "http://www.cellsignal.com/catalog/index.html", "prefix": "cst.ab", "name": "CST Antibody at Cell Signaling Technology", "uri_format": "http://www.cellsignal.com/products/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cst.ab.prefixcommons": {"id": "bioregistry.cst.ab.prefixcommons", "sameas": "bioregistry.cst.ab", "homepage": "http://www.cellsignal.com/", "prefix": "cst", "name": "Cell Signaling Technology Pathway Database", "uri_format": "http://www.cellsignal.com/products/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.cst.ab": {"id": "bioregistry.cst.ab", "homepage": null, "prefix": "cst.ab", "name": "Cell Signaling Technology Pathway Database", "uri_format": "http://www.cellsignal.com/products/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cstr.miriam": {"id": "bioregistry.cstr.miriam", "sameas": "bioregistry.cstr", "homepage": "https://www.cstr.cn/en/", "prefix": "cstr", "name": "CSTR", "uri_format": "https://cstr.cn/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cstr": {"id": "bioregistry.cstr", "homepage": null, "prefix": "cstr", "name": "Common Science and Technology Resources", "uri_format": "https://cstr.cn/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ctd.chemical.miriam": {"id": "bioregistry.ctd.chemical.miriam", "sameas": "bioregistry.ctd.chemical", "homepage": "http://ctdbase.org/", "prefix": "ctd.chemical", "name": "CTD Chemical", "uri_format": "http://ctdbase.org/detail.go?type=chem&acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ctd.chemical.n2t": {"id": "bioregistry.ctd.chemical.n2t", "sameas": "bioregistry.ctd.chemical", "homepage": "http://ctdbase.org/", "prefix": "ctd.chemical", "name": "Comparative Toxicogenomics Database (Chemical)", "uri_format": "http://ctdbase.org/detail.go?type=chem&acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ctd.chemical.biolink": {"id": "bioregistry.ctd.chemical.biolink", "sameas": "bioregistry.ctd.chemical", "homepage": null, "prefix": "CTD.CHEMICAL", "name": null, "uri_format": "http://ctdbase.org/detail.go?type=chem&acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.ctd.chemical": {"id": "bioregistry.ctd.chemical", "homepage": null, "prefix": "ctd.chemical", "name": "Comparative Toxicogenomics Database (Chemical)", "uri_format": "http://ctdbase.org/detail.go?type=chem&acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ctd.disease.miriam": {"id": "bioregistry.ctd.disease.miriam", "sameas": "bioregistry.ctd.disease", "homepage": "http://ctdbase.org/", "prefix": "ctd.disease", "name": "CTD Disease", "uri_format": "http://ctdbase.org/detail.go?type=disease&db=MESH&acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ctd.disease.n2t": {"id": "bioregistry.ctd.disease.n2t", "sameas": "bioregistry.ctd.disease", "homepage": "http://ctdbase.org/", "prefix": "ctd.disease", "name": "Comparative Toxicogenomics Database (Disease)", "uri_format": "http://ctdbase.org/detail.go?type=disease&db=MESH&acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ctd.disease.biolink": {"id": "bioregistry.ctd.disease.biolink", "sameas": "bioregistry.ctd.disease", "homepage": null, "prefix": "CTD.DISEASE", "name": null, "uri_format": "http://ctdbase.org/detail.go?type=disease&db=MESH&acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.ctd.disease": {"id": "bioregistry.ctd.disease", "homepage": null, "prefix": "ctd.disease", "name": "Comparative Toxicogenomics Database (Disease)", "uri_format": "http://ctdbase.org/detail.go?type=disease&db=MESH&acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ctd.gene.miriam": {"id": "bioregistry.ctd.gene.miriam", "sameas": "bioregistry.ctd.gene", "homepage": "http://ctdbase.org/", "prefix": "ctd.gene", "name": "CTD Gene", "uri_format": "http://ctdbase.org/detail.go?type=gene&acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ctd.gene.n2t": {"id": "bioregistry.ctd.gene.n2t", "sameas": "bioregistry.ctd.gene", "homepage": "http://ctdbase.org/", "prefix": "ctd.gene", "name": "Comparative Toxicogenomics Database (Gene)", "uri_format": "http://ctdbase.org/detail.go?type=gene&acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ctd.gene.uniprot": {"id": "bioregistry.ctd.gene.uniprot", "sameas": "bioregistry.ctd.gene", "homepage": "https://ctdbase.org/", "prefix": "DB-0140", "name": "Comparative Toxicogenomics Database", "uri_format": "https://ctdbase.org/detail.go?type=gene&db=GENE&acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.ctd.gene.biolink": {"id": "bioregistry.ctd.gene.biolink", "sameas": "bioregistry.ctd.gene", "homepage": null, "prefix": "CTD.GENE", "name": null, "uri_format": "http://ctdbase.org/detail.go?type=gene&acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.ctd.gene": {"id": "bioregistry.ctd.gene", "homepage": null, "prefix": "ctd.gene", "name": "Comparative Toxicogenomics Database (Gene)", "uri_format": "https://ctdbase.org/detail.go?type=gene&db=GENE&acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cubedb.miriam": {"id": "bioregistry.cubedb.miriam", "sameas": "bioregistry.cubedb", "homepage": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/html/home.html", "prefix": "cubedb", "name": "Cube db", "uri_format": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/data/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.cubedb.n2t": {"id": "bioregistry.cubedb.n2t", "sameas": "bioregistry.cubedb", "homepage": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/html/home.html", "prefix": "cubedb", "name": "Cube db at Bioinformatics Institute (Singapore)", "uri_format": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/data/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.cubedb": {"id": "bioregistry.cubedb", "homepage": null, "prefix": "cubedb", "name": "Cube db at Bioinformatics Institute (Singapore)", "uri_format": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/data/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.cutg.prefixcommons": {"id": "bioregistry.cutg.prefixcommons", "sameas": "bioregistry.cutg", "homepage": "http://www.kazusa.or.jp/codon/", "prefix": "cutg", "name": "Codon Usage Tabulated from GenBank", "uri_format": "http://www.kazusa.or.jp/codon/cgi-bin/showcodon.cgi?species=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.cutg": {"id": "bioregistry.cutg", "homepage": null, "prefix": "cutg", "name": "Codon Usage Tabulated from GenBank", "uri_format": "http://www.kazusa.or.jp/codon/cgi-bin/showcodon.cgi?species=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.d1id.miriam": {"id": "bioregistry.d1id.miriam", "sameas": "bioregistry.d1id", "homepage": "https://www.dataone.org", "prefix": "d1id", "name": "DataONE", "uri_format": "https://cn.dataone.org/cn/v2/resolve/{$1}", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.d1id.n2t": {"id": "bioregistry.d1id.n2t", "sameas": "bioregistry.d1id", "homepage": "https://www.dataone.org", "prefix": "d1id", "name": "DataONE", "uri_format": "https://cn.dataone.org/cn/v2/resolve/{$1}", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.d1id": {"id": "bioregistry.d1id", "homepage": null, "prefix": "d1id", "name": "DataONE", "uri_format": "https://cn.dataone.org/cn/v2/resolve/{$1}", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dailymed.miriam": {"id": "bioregistry.dailymed.miriam", "sameas": "bioregistry.dailymed", "homepage": "https://dailymed.nlm.nih.gov/dailymed/", "prefix": "dailymed", "name": "DailyMed", "uri_format": "https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dailymed.n2t": {"id": "bioregistry.dailymed.n2t", "sameas": "bioregistry.dailymed", "homepage": "https://dailymed.nlm.nih.gov/dailymed/", "prefix": "dailymed", "name": "DailyMed at NLM", "uri_format": "https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dailymed.prefixcommons": {"id": "bioregistry.dailymed.prefixcommons", "sameas": "bioregistry.dailymed", "homepage": "http://dailymed.nlm.nih.gov/dailymed/", "prefix": "dailymed", "name": "Dailymed", "uri_format": "http://dailymed.nlm.nih.gov/dailymed/lookup.cfm?setid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.dailymed": {"id": "bioregistry.dailymed", "homepage": null, "prefix": "dailymed", "name": "DailyMed at NLM", "uri_format": "https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dandi.miriam": {"id": "bioregistry.dandi.miriam", "sameas": "bioregistry.dandi", "homepage": "https://dandiarchive.org/", "prefix": "dandi", "name": "DANDI: Distributed Archives for Neurophysiology Data Integration", "uri_format": "https://dandiarchive.org/dandiset/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dandi": {"id": "bioregistry.dandi", "homepage": null, "prefix": "dandi", "name": "DANDI: Distributed Archives for Neurophysiology Data Integration", "uri_format": "https://dandiarchive.org/dandiset/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.darc.miriam": {"id": "bioregistry.darc.miriam", "sameas": "bioregistry.darc", "homepage": "http://darcsite.genzentrum.lmu.de/darc/index.php", "prefix": "darc", "name": "DARC", "uri_format": "http://darcsite.genzentrum.lmu.de/darc/view.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.darc.n2t": {"id": "bioregistry.darc.n2t", "sameas": "bioregistry.darc", "homepage": "http://darcsite.genzentrum.lmu.de/darc/index.php", "prefix": "darc", "name": "DARC at University of Munich", "uri_format": "http://darcsite.genzentrum.lmu.de/darc/view.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.darc": {"id": "bioregistry.darc", "homepage": null, "prefix": "darc", "name": "Database of Aligned Ribosomal Complexes", "uri_format": "http://darcsite.genzentrum.lmu.de/darc/view.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dashr.miriam": {"id": "bioregistry.dashr.miriam", "sameas": "bioregistry.dashr", "homepage": "http://lisanwanglab.org/DASHR/", "prefix": "dashr", "name": "DASHR", "uri_format": "http://lisanwanglab.org/DASHR/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dashr.n2t": {"id": "bioregistry.dashr.n2t", "sameas": "bioregistry.dashr", "homepage": "http://lisanwanglab.org/DASHR/", "prefix": "dashr", "name": "DASHR at University of Pennsylvania", "uri_format": "http://lisanwanglab.org/DASHR/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dashr": {"id": "bioregistry.dashr", "homepage": null, "prefix": "dashr", "name": "Database of small human non-coding RNAs", "uri_format": "http://lisanwanglab.org/DASHR/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dashr.expression.miriam": {"id": "bioregistry.dashr.expression.miriam", "sameas": "bioregistry.dashr.expression", "homepage": "https://dashr1.lisanwanglab.org/show-expression-table.php?start=0", "prefix": "dashr.expression", "name": "DASHR expression", "uri_format": "https://dashr1.lisanwanglab.org/entry/hsa-mir-200a#$1#exprPerTissueTable", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dashr.expression.n2t": {"id": "bioregistry.dashr.expression.n2t", "sameas": "bioregistry.dashr.expression", "homepage": "https://dashr1.lisanwanglab.org/show-expression-table.php?start=0", "prefix": "dashr.expression", "name": "DASHR expression at University of Pennsylvania", "uri_format": "https://dashr1.lisanwanglab.org/entry/hsa-mir-200a#$1#exprPerTissueTable", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dashr.expression": {"id": "bioregistry.dashr.expression", "homepage": null, "prefix": "dashr.expression", "name": "DASHR expression at University of Pennsylvania", "uri_format": "https://dashr1.lisanwanglab.org/entry/hsa-mir-200a#$1#exprPerTissueTable", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.datacommons.biolink": {"id": "bioregistry.datacommons.biolink", "sameas": "bioregistry.datacommons", "homepage": null, "prefix": "dcid", "name": null, "uri_format": "https://datacommons.org/browser/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.datacommons": {"id": "bioregistry.datacommons", "homepage": "https://datacommons.org", "prefix": "datacommons", "name": "Data Commons", "uri_format": "https://datacommons.org/browser/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.datanator.gene.miriam": {"id": "bioregistry.datanator.gene.miriam", "sameas": "bioregistry.datanator.gene", "homepage": "https://datanator.info/", "prefix": "datanator.gene", "name": "Datanator Gene", "uri_format": "https://www.datanator.info/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.datanator.gene": {"id": "bioregistry.datanator.gene", "homepage": null, "prefix": "datanator.gene", "name": "Datanator Gene", "uri_format": "https://www.datanator.info/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.datanator.metabolite.miriam": {"id": "bioregistry.datanator.metabolite.miriam", "sameas": "bioregistry.datanator.metabolite", "homepage": "https://datanator.info/", "prefix": "datanator.metabolite", "name": "Datanator Metabolite", "uri_format": "https://www.datanator.info/metabolite/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.datanator.metabolite": {"id": "bioregistry.datanator.metabolite", "homepage": null, "prefix": "datanator.metabolite", "name": "Datanator Metabolite", "uri_format": "https://www.datanator.info/metabolite/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.datanator.reaction.miriam": {"id": "bioregistry.datanator.reaction.miriam", "sameas": "bioregistry.datanator.reaction", "homepage": "https://icahn.mssm.edu/", "prefix": "datanator.reaction", "name": "Datanator Reaction", "uri_format": "https://datanator.info/reaction/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.datanator.reaction": {"id": "bioregistry.datanator.reaction", "homepage": null, "prefix": "datanator.reaction", "name": "Datanator Reaction", "uri_format": "https://datanator.info/reaction/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.datf.miriam": {"id": "bioregistry.datf.miriam", "sameas": "bioregistry.datf", "homepage": "http://datf.cbi.pku.edu.cn/", "prefix": "datf", "name": "DATF", "uri_format": "http://planttfdb.cbi.pku.edu.cn/tf.php?sp=Ath&did=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.datf.n2t": {"id": "bioregistry.datf.n2t", "sameas": "bioregistry.datf", "homepage": "http://datf.cbi.pku.edu.cn/", "prefix": "datf", "name": "DATF through PlantTFDB", "uri_format": "http://planttfdb.cbi.pku.edu.cn/tf.php?sp=Ath&did=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.datf.prefixcommons": {"id": "bioregistry.datf.prefixcommons", "sameas": "bioregistry.datf", "homepage": "http://datf.cbi.pku.edu.cn", "prefix": "datf", "name": "Database of Arabidopsis Transcription Factors", "uri_format": "http://datf.cbi.pku.edu.cn/entry-display.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.datf": {"id": "bioregistry.datf", "homepage": null, "prefix": "datf", "name": "Database of Arabidopsis Transcription Factors", "uri_format": "http://planttfdb.cbi.pku.edu.cn/tf.php?sp=Ath&did=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dbd.miriam": {"id": "bioregistry.dbd.miriam", "sameas": "bioregistry.dbd", "homepage": "http://www.transcriptionfactor.org/", "prefix": "dbd", "name": "DBD", "uri_format": "http://www.transcriptionfactor.org/index.cgi?Search/Domain+domain:$1+cat:DBD", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dbd.n2t": {"id": "bioregistry.dbd.n2t", "sameas": "bioregistry.dbd", "homepage": "http://www.transcriptionfactor.org/", "prefix": "dbd", "name": "DBD at MRC Laboratory of Molecular Biology", "uri_format": "http://www.transcriptionfactor.org/index.cgi?Search/Domain+domain:$1+cat:DBD", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dbd.prefixcommons": {"id": "bioregistry.dbd.prefixcommons", "sameas": "bioregistry.dbd", "homepage": "http://www.transcriptionfactor.org", "prefix": "dbd", "name": "DBD", "uri_format": "http://dbd.mrc-lmb.cam.ac.uk/DBD/index.cgi?Search/Domain+domain:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.dbd": {"id": "bioregistry.dbd", "homepage": null, "prefix": "dbd", "name": "DBD at MRC Laboratory of Molecular Biology", "uri_format": "http://www.transcriptionfactor.org/index.cgi?Search/Domain+domain:$1+cat:DBD", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.dbest.miriam": {"id": "bioregistry.dbest.miriam", "sameas": "bioregistry.dbest", "homepage": "https://www.ncbi.nlm.nih.gov/nucest", "prefix": "dbest", "name": "dbEST", "uri_format": "https://www.ncbi.nlm.nih.gov/nucest/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dbest.n2t": {"id": "bioregistry.dbest.n2t", "sameas": "bioregistry.dbest", "homepage": "https://www.ncbi.nlm.nih.gov/nucest", "prefix": "dbest", "name": "dbEST at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/nucest/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dbest.prefixcommons": {"id": "bioregistry.dbest.prefixcommons", "sameas": "bioregistry.dbest", "homepage": "http://www.ncbi.nlm.nih.gov/dbEST/index.html", "prefix": "dbest", "name": "EST database maintained at the NCBI.", "uri_format": "http://www.ncbi.nlm.nih.gov/nucest/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.dbest": {"id": "bioregistry.dbest", "homepage": null, "prefix": "dbest", "name": "EST database maintained at the NCBI.", "uri_format": "https://www.ncbi.nlm.nih.gov/nucest/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.dbg2introns.miriam": {"id": "bioregistry.dbg2introns.miriam", "sameas": "bioregistry.dbg2introns", "homepage": "http://webapps2.ucalgary.ca/~groupii/", "prefix": "dbg2introns", "name": "DBG2 Introns", "uri_format": "http://webapps2.ucalgary.ca/~groupii/cgi-bin/intron.cgi?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dbg2introns.n2t": {"id": "bioregistry.dbg2introns.n2t", "sameas": "bioregistry.dbg2introns", "homepage": "http://webapps2.ucalgary.ca/~groupii/", "prefix": "dbg2introns", "name": "Bacterial Group II Introns at University of Calgary", "uri_format": "http://webapps2.ucalgary.ca/~groupii/cgi-bin/intron.cgi?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dbg2introns.prefixcommons": {"id": "bioregistry.dbg2introns.prefixcommons", "sameas": "bioregistry.dbg2introns", "homepage": "http://www.fp.ucalgary.ca/group2introns/", "prefix": "mgiid", "name": "Mobile group II introns database", "uri_format": "http://www.fp.ucalgary.ca/group2introns/$1.htm", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.dbg2introns": {"id": "bioregistry.dbg2introns", "homepage": null, "prefix": "dbg2introns", "name": "Bacterial Group II Introns at University of Calgary", "uri_format": "http://www.fp.ucalgary.ca/group2introns/$1.htm", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.dbgap.miriam": {"id": "bioregistry.dbgap.miriam", "sameas": "bioregistry.dbgap", "homepage": "https://www.ncbi.nlm.nih.gov/projects/gap", "prefix": "dbgap", "name": "dbGaP", "uri_format": "https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/study.cgi?study_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dbgap.n2t": {"id": "bioregistry.dbgap.n2t", "sameas": "bioregistry.dbgap", "homepage": "https://www.ncbi.nlm.nih.gov/projects/gap", "prefix": "dbgap", "name": "dbGaP through NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/study.cgi?study_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dbgap.cellosaurus": {"id": "bioregistry.dbgap.cellosaurus", "sameas": "bioregistry.dbgap", "homepage": "https://www.ncbi.nlm.nih.gov/gap/", "prefix": "dbGAP", "name": "Database of Genotypes and Phenotypes", "uri_format": "https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/study.cgi?study_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.dbgap": {"id": "bioregistry.dbgap", "homepage": null, "prefix": "dbgap", "name": "Database of Genotypes and Phenotypes", "uri_format": "https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/study.cgi?study_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dbprobe.miriam": {"id": "bioregistry.dbprobe.miriam", "sameas": "bioregistry.dbprobe", "homepage": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=probe", "prefix": "dbprobe", "name": "dbProbe", "uri_format": "https://www.ncbi.nlm.nih.gov/probe/?term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dbprobe.n2t": {"id": "bioregistry.dbprobe.n2t", "sameas": "bioregistry.dbprobe", "homepage": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=probe", "prefix": "dbprobe", "name": "dbProbe at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/probe/?term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dbprobe.prefixcommons": {"id": "bioregistry.dbprobe.prefixcommons", "sameas": "bioregistry.dbprobe", "homepage": "http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=probe", "prefix": "dbprobe", "name": "NCBI Probe database Public registry of nucleic acid reagents", "uri_format": "http://www.ncbi.nlm.nih.gov/genome/probe/reports/probereport.cgi?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "molecular biology"], "authority": "prefixcommons"}, "bioregistry.dbprobe": {"id": "bioregistry.dbprobe", "homepage": null, "prefix": "dbprobe", "name": "NCBI Probe database Public registry of nucleic acid reagents", "uri_format": "https://www.ncbi.nlm.nih.gov/probe/?term=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "molecular biology"], "authority": "bioregistry"}, "bioregistry.dbsnp.miriam": {"id": "bioregistry.dbsnp.miriam", "sameas": "bioregistry.dbsnp", "homepage": "https://www.ncbi.nlm.nih.gov/snp/", "prefix": "dbsnp", "name": "dbSNP", "uri_format": "https://www.ncbi.nlm.nih.gov/snp/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dbsnp.n2t": {"id": "bioregistry.dbsnp.n2t", "sameas": "bioregistry.dbsnp", "homepage": "https://www.ncbi.nlm.nih.gov/snp/", "prefix": "dbsnp", "name": "dbSNP at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/snp/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dbsnp.prefixcommons": {"id": "bioregistry.dbsnp.prefixcommons", "sameas": "bioregistry.dbsnp", "homepage": "http://www.ncbi.nlm.nih.gov/SNP/", "prefix": "dbsnp", "name": "Database of single nucleotide polymorphism", "uri_format": "http://www.ncbi.nlm.nih.gov/projects/SNP/snp_ref.cgi?rs=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.dbsnp.wikidata": {"id": "bioregistry.dbsnp.wikidata", "sameas": "bioregistry.dbsnp", "homepage": "https://civicdb.org/home", "prefix": "P6861", "name": "dbSNP Reference SNP number", "uri_format": "https://www.ncbi.nlm.nih.gov/snp/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "wikidata"}, "bioregistry.dbsnp.go": {"id": "bioregistry.dbsnp.go", "sameas": "bioregistry.dbsnp", "homepage": "http://www.ncbi.nlm.nih.gov/projects/SNP", "prefix": "dbSNP", "name": "NCBI dbSNP", "uri_format": "http://www.ncbi.nlm.nih.gov/projects/SNP/snp_ref.cgi?rs=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.dbsnp.uniprot": {"id": "bioregistry.dbsnp.uniprot", "sameas": "bioregistry.dbsnp", "homepage": "https://www.ncbi.nlm.nih.gov/snp/", "prefix": "DB-0013", "name": "Database of single nucleotide polymorphism", "uri_format": "https://www.ncbi.nlm.nih.gov/snp/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.dbsnp.cellosaurus": {"id": "bioregistry.dbsnp.cellosaurus", "sameas": "bioregistry.dbsnp", "homepage": "https://www.ncbi.nlm.nih.gov/snp/", "prefix": "dbSNP", "name": "Single Nucleotide Polymorphism database", "uri_format": "https://www.ncbi.nlm.nih.gov/snp/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "cellosaurus"}, "bioregistry.dbsnp.biocontext": {"id": "bioregistry.dbsnp.biocontext", "sameas": "bioregistry.dbsnp", "homepage": null, "prefix": "dbSNP", "name": null, "uri_format": "http://www.ncbi.nlm.nih.gov/projects/SNP/snp_ref.cgi?rs=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "biocontext"}, "bioregistry.dbsnp": {"id": "bioregistry.dbsnp", "homepage": null, "prefix": "dbsnp", "name": "Database of single nucleotide polymorphism", "uri_format": "https://www.ncbi.nlm.nih.gov/snp/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.dc.biocontext": {"id": "bioregistry.dc.biocontext", "sameas": "bioregistry.dc", "homepage": null, "prefix": "dc", "name": null, "uri_format": "http://purl.org/dc/elements/1.1/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.dc": {"id": "bioregistry.dc", "homepage": "https://www.dublincore.org/specifications/dublin-core/dcmi-terms/", "prefix": "dc", "name": "Dublin Core Metadata Element Set", "uri_format": "http://purl.org/dc/elements/1.1/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dcat.biolink": {"id": "bioregistry.dcat.biolink", "sameas": "bioregistry.dcat", "homepage": null, "prefix": "dcat", "name": null, "uri_format": "http://www.w3.org/ns/dcat#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.dcat.biocontext": {"id": "bioregistry.dcat.biocontext", "sameas": "bioregistry.dcat", "homepage": null, "prefix": "dcat", "name": null, "uri_format": "http://www.w3.org/ns/dcat#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.dcat": {"id": "bioregistry.dcat", "homepage": "https://www.w3.org/ns/dcat", "prefix": "dcat", "name": "Data Catalog Vocabulary", "uri_format": "http://www.w3.org/ns/dcat#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dcterms.biolink": {"id": "bioregistry.dcterms.biolink", "sameas": "bioregistry.dcterms", "homepage": null, "prefix": "dct", "name": null, "uri_format": "http://purl.org/dc/terms/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.dcterms.biocontext": {"id": "bioregistry.dcterms.biocontext", "sameas": "bioregistry.dcterms", "homepage": null, "prefix": "dcterms", "name": null, "uri_format": "http://purl.org/dc/terms/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.dcterms": {"id": "bioregistry.dcterms", "homepage": "https://www.dublincore.org/specifications/dublin-core/dcmi-terms/", "prefix": "dcterms", "name": "Dublin Core Metadata Initiative (DCMI) Metadata Terms", "uri_format": "http://purl.org/dc/terms/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dctypes.biocontext": {"id": "bioregistry.dctypes.biocontext", "sameas": "bioregistry.dctypes", "homepage": null, "prefix": "dctypes", "name": null, "uri_format": "http://purl.org/dc/dcmitype/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.dctypes": {"id": "bioregistry.dctypes", "homepage": "https://dublincore.org/specifications/dublin-core/dcmi-terms/", "prefix": "dctypes", "name": "Dublin Core Types", "uri_format": "http://purl.org/dc/dcmitype/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.degradome.miriam": {"id": "bioregistry.degradome.miriam", "sameas": "bioregistry.degradome", "homepage": "http://degradome.uniovi.es/", "prefix": "degradome", "name": "Degradome Database", "uri_format": "http://degradome.uniovi.es/cgi-bin/protease/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.degradome.n2t": {"id": "bioregistry.degradome.n2t", "sameas": "bioregistry.degradome", "homepage": "http://degradome.uniovi.es/", "prefix": "degradome", "name": "Degradome Database at", "uri_format": "http://degradome.uniovi.es/cgi-bin/protease/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.degradome": {"id": "bioregistry.degradome", "homepage": null, "prefix": "degradome", "name": "Degradome Database at", "uri_format": "http://degradome.uniovi.es/cgi-bin/protease/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.depmap.cellosaurus": {"id": "bioregistry.depmap.cellosaurus", "sameas": "bioregistry.depmap", "homepage": "https://depmap.org/portal/", "prefix": "DepMap", "name": "Cancer Dependency Map", "uri_format": "https://depmap.org/portal/cell_line/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.depmap": {"id": "bioregistry.depmap", "homepage": "https://depmap.org/portal", "prefix": "depmap", "name": "Cancer Dependency Map", "uri_format": "https://depmap.org/portal/cell_line/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.depod.miriam": {"id": "bioregistry.depod.miriam", "sameas": "bioregistry.depod", "homepage": "http://www.depod.bioss.uni-freiburg.de", "prefix": "depod", "name": "DEPOD", "uri_format": "http://www.depod.bioss.uni-freiburg.de/showp.php?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.depod.n2t": {"id": "bioregistry.depod.n2t", "sameas": "bioregistry.depod", "homepage": "http://www.depod.bioss.uni-freiburg.de", "prefix": "depod", "name": "DEPOD at EMBL", "uri_format": "http://www.depod.bioss.uni-freiburg.de/showp.php?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.depod.uniprot": {"id": "bioregistry.depod.uniprot", "sameas": "bioregistry.depod", "homepage": "http://depod.bioss.uni-freiburg.de", "prefix": "DB-0190", "name": "DEPOD human dephosphorylation database", "uri_format": "http://depod.bioss.uni-freiburg.de/showp.php?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.depod": {"id": "bioregistry.depod", "homepage": null, "prefix": "depod", "name": "DEPOD human dephosphorylation database", "uri_format": "http://www.depod.bioss.uni-freiburg.de/showp.php?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dev.ga4ghdos.miriam": {"id": "bioregistry.dev.ga4ghdos.miriam", "sameas": "bioregistry.dev.ga4ghdos", "homepage": "http://github.com/ga4gh/data-object-service-schemas", "prefix": "dev.ga4ghdos", "name": "Development Data Object Service", "uri_format": "https://dos-gdc.ucsc-cgp-dev.org/ga4gh/dos/v1/dataobjects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dev.ga4ghdos.n2t": {"id": "bioregistry.dev.ga4ghdos.n2t", "sameas": "bioregistry.dev.ga4ghdos", "homepage": "http://github.com/ga4gh/data-object-service-schemas", "prefix": "dev.ga4ghdos", "name": "Data Object Service", "uri_format": "https://dos-gdc.ucsc-cgp-dev.org/ga4gh/dos/v1/dataobjects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dev.ga4ghdos": {"id": "bioregistry.dev.ga4ghdos", "homepage": null, "prefix": "dev.ga4ghdos", "name": "Development Data Object Service", "uri_format": "https://dos-gdc.ucsc-cgp-dev.org/ga4gh/dos/v1/dataobjects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dg.4503.miriam": {"id": "bioregistry.dg.4503.miriam", "sameas": "bioregistry.dg.4503", "homepage": "https://gen3.biodatacatalyst.nhlbi.nih.gov", "prefix": "dg.4503", "name": "BioData Catalyst", "uri_format": "https://gen3.biodatacatalyst.nhlbi.nih.gov/ga4gh/drs/v1/objects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dg.4503": {"id": "bioregistry.dg.4503", "homepage": null, "prefix": "dg.4503", "name": "BioData Catalyst", "uri_format": "https://gen3.biodatacatalyst.nhlbi.nih.gov/ga4gh/drs/v1/objects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dg.4dfc.miriam": {"id": "bioregistry.dg.4dfc.miriam", "sameas": "bioregistry.dg.4dfc", "homepage": "https://nci-crdc.datacommons.io/", "prefix": "dg.4dfc", "name": "NCI Data Commons Framework Services", "uri_format": "https://nci-crdc.datacommons.io/ga4gh/drs/v1/objects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dg.4dfc": {"id": "bioregistry.dg.4dfc", "homepage": null, "prefix": "dg.4dfc", "name": "NCI Data Commons Framework Services", "uri_format": "https://nci-crdc.datacommons.io/ga4gh/drs/v1/objects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dg.6vts.miriam": {"id": "bioregistry.dg.6vts.miriam", "sameas": "bioregistry.dg.6vts", "homepage": "https://jcoin.datacommons.io", "prefix": "dg.6vts", "name": "JCOIN", "uri_format": "https://jcoin.datacommons.io/ga4gh/drs/v1/objects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dg.6vts": {"id": "bioregistry.dg.6vts", "homepage": null, "prefix": "dg.6vts", "name": "JCOIN", "uri_format": "https://jcoin.datacommons.io/ga4gh/drs/v1/objects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dg.anv0.miriam": {"id": "bioregistry.dg.anv0.miriam", "sameas": "bioregistry.dg.anv0", "homepage": "https://gen3.theanvil.io", "prefix": "dg.anv0", "name": "Anvil", "uri_format": "https://gen3.theanvil.io/ga4gh/drs/v1/objects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dg.anv0": {"id": "bioregistry.dg.anv0", "homepage": null, "prefix": "dg.anv0", "name": "Anvil", "uri_format": "https://gen3.theanvil.io/ga4gh/drs/v1/objects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dg.f82a1a.miriam": {"id": "bioregistry.dg.f82a1a.miriam", "sameas": "bioregistry.dg.f82a1a", "homepage": "https://kidsfirstdrc.org", "prefix": "dg.f82a1a", "name": "Kids First", "uri_format": "https://data.kidsfirstdrc.org/ga4gh/drs/v1/objects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dg.f82a1a": {"id": "bioregistry.dg.f82a1a", "homepage": null, "prefix": "dg.f82a1a", "name": "Kids First", "uri_format": "https://data.kidsfirstdrc.org/ga4gh/drs/v1/objects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dg5b0d.miriam": {"id": "bioregistry.dg5b0d.miriam", "sameas": "bioregistry.dg5b0d", "homepage": "https://data.bloodpac.org/.", "prefix": "dg.5b0d", "name": "BloodPAC", "uri_format": "https://data.bloodpac.org/ga4gh/drs/v1/objects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dg5b0d": {"id": "bioregistry.dg5b0d", "homepage": null, "prefix": "dg5b0d", "name": "BloodPAC", "uri_format": "https://data.bloodpac.org/ga4gh/drs/v1/objects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dgrc.cellosaurus": {"id": "bioregistry.dgrc.cellosaurus", "sameas": "bioregistry.dgrc", "homepage": "https://dgrc.bio.indiana.edu/cells/Catalog", "prefix": "DGRC", "name": "Drosophila Genomics Resource Center", "uri_format": "https://dgrc.bio.indiana.edu/product/View?product=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.dgrc": {"id": "bioregistry.dgrc", "homepage": null, "prefix": "dgrc", "name": "Drosophila Genomics Resource Center", "uri_format": "https://dgrc.bio.indiana.edu/product/View?product=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dictybase.go": {"id": "bioregistry.dictybase.go", "sameas": "bioregistry.dictybase", "homepage": "http://dictybase.org", "prefix": "dictyBase", "name": "dictyBase", "uri_format": "http://dictybase.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.dictybase.uniprot": {"id": "bioregistry.dictybase.uniprot", "sameas": "bioregistry.dictybase", "homepage": "http://dictybase.org/", "prefix": "DB-0015", "name": "Dictyostelium discoideum online informatics resource", "uri_format": "http://dictybase.org/db/cgi-bin/gene_page.pl?primary_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.dictybase.biocontext": {"id": "bioregistry.dictybase.biocontext", "sameas": "bioregistry.dictybase", "homepage": null, "prefix": "dictyBase", "name": null, "uri_format": "http://dictybase.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "biocontext"}, "bioregistry.dictybase": {"id": "bioregistry.dictybase", "homepage": null, "prefix": "dictybase", "name": "Dictyostelium discoideum online informatics resource", "uri_format": "http://dictybase.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.dictybase.est.miriam": {"id": "bioregistry.dictybase.est.miriam", "sameas": "bioregistry.dictybase.est", "homepage": "http://dictybase.org/", "prefix": "dictybase.est", "name": "Dictybase EST", "uri_format": "http://dictybase.org/db/cgi-bin/feature_page.pl?primary_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dictybase.est.n2t": {"id": "bioregistry.dictybase.est.n2t", "sameas": "bioregistry.dictybase.est", "homepage": "http://dictybase.org/", "prefix": "dictybase.est", "name": "Dictybase Gene at Northwestern University", "uri_format": "http://dictybase.org/db/cgi-bin/feature_page.pl?primary_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dictybase.est": {"id": "bioregistry.dictybase.est", "homepage": null, "prefix": "dictybase.est", "name": "Dictybase Gene at Northwestern University", "uri_format": "http://dictybase.org/db/cgi-bin/feature_page.pl?primary_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dictybase.gene.miriam": {"id": "bioregistry.dictybase.gene.miriam", "sameas": "bioregistry.dictybase.gene", "homepage": "http://dictybase.org/", "prefix": "dictybase.gene", "name": "Dictybase Gene", "uri_format": "http://dictybase.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dictybase.gene.n2t": {"id": "bioregistry.dictybase.gene.n2t", "sameas": "bioregistry.dictybase.gene", "homepage": "http://dictybase.org/", "prefix": "dictybase.gene", "name": "Dictybase Gene at Northwestern University", "uri_format": "http://dictybase.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dictybase.gene": {"id": "bioregistry.dictybase.gene", "homepage": null, "prefix": "dictybase.gene", "name": "Dictybase Gene at Northwestern University", "uri_format": "http://dictybase.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.did.miriam": {"id": "bioregistry.did.miriam", "sameas": "bioregistry.did", "homepage": "https://w3c-ccg.github.io/did-spec/", "prefix": "did", "name": "Decentralized Identifiers (DIDs)", "uri_format": "https://uniresolver.io/#did:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.did.n2t": {"id": "bioregistry.did.n2t", "sameas": "bioregistry.did", "homepage": "https://w3c-ccg.github.io/did-spec/", "prefix": "did", "name": "Decentralized Identifiers (DIDs)", "uri_format": "https://uniresolver.io/#did:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.did": {"id": "bioregistry.did", "homepage": null, "prefix": "did", "name": "Decentralized Identifiers (DIDs)", "uri_format": "https://uniresolver.io/#did:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dip.miriam": {"id": "bioregistry.dip.miriam", "sameas": "bioregistry.dip", "homepage": "https://dip.doe-mbi.ucla.edu/", "prefix": "dip", "name": "Database of Interacting Proteins", "uri_format": "https://dip.doe-mbi.ucla.edu/dip/DIPview.cgi?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dip.n2t": {"id": "bioregistry.dip.n2t", "sameas": "bioregistry.dip", "homepage": "https://dip.doe-mbi.ucla.edu/", "prefix": "dip", "name": "Database of interacting proteins", "uri_format": "https://dip.doe-mbi.ucla.edu/dip/DIPview.cgi?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dip.prefixcommons": {"id": "bioregistry.dip.prefixcommons", "sameas": "bioregistry.dip", "homepage": "http://dip.doe-mbi.ucla.edu", "prefix": "dip", "name": "Database of Interacting Proteins", "uri_format": "http://dip.doe-mbi.ucla.edu/dip/DIPview.cgi?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.dip.uniprot": {"id": "bioregistry.dip.uniprot", "sameas": "bioregistry.dip", "homepage": "https://dip.doe-mbi.ucla.edu/", "prefix": "DB-0016", "name": "Database of interacting proteins", "uri_format": "https://dip.doe-mbi.ucla.edu/dip/Browse.cgi?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.dip": {"id": "bioregistry.dip", "homepage": null, "prefix": "dip", "name": "Database of Interacting Proteins", "uri_format": "https://dip.doe-mbi.ucla.edu/dip/DIPview.cgi?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.discoverx.cellosaurus": {"id": "bioregistry.discoverx.cellosaurus", "sameas": "bioregistry.discoverx", "homepage": "https://www.discoverx.com/products-applications/cell-lines", "prefix": "DiscoverX", "name": "DiscoverX cell line products", "uri_format": "https://www.discoverx.com/searchproduct?searchtext=$1&searchmode=exact", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.discoverx": {"id": "bioregistry.discoverx", "homepage": null, "prefix": "discoverx", "name": "DiscoverX cell line products", "uri_format": "https://www.discoverx.com/searchproduct?searchtext=$1&searchmode=exact", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.diseasesdb.wikidata": {"id": "bioregistry.diseasesdb.wikidata", "sameas": "bioregistry.diseasesdb", "homepage": "http://www.diseasesdatabase.com", "prefix": "P557", "name": "DiseasesDB", "uri_format": "http://www.diseasesdatabase.com/ddb$1.htm", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.diseasesdb": {"id": "bioregistry.diseasesdb", "homepage": "http://www.diseasesdatabase.com/", "prefix": "diseasesdb", "name": "Diseases Database", "uri_format": "http://www.diseasesdatabase.com/ddb$1.htm", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.disprot.miriam": {"id": "bioregistry.disprot.miriam", "sameas": "bioregistry.disprot", "homepage": "https://disprot.org/", "prefix": "disprot", "name": "DisProt", "uri_format": "https://disprot.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.disprot.n2t": {"id": "bioregistry.disprot.n2t", "sameas": "bioregistry.disprot", "homepage": "http://www.disprot.org/", "prefix": "disprot", "name": "DisProt at Indiana University", "uri_format": "http://www.disprot.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.disprot.prefixcommons": {"id": "bioregistry.disprot.prefixcommons", "sameas": "bioregistry.disprot", "homepage": "http://www.disprot.org/", "prefix": "disprot", "name": "Database of protein disorder", "uri_format": "http://www.disprot.org/protein.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.disprot.go": {"id": "bioregistry.disprot.go", "sameas": "bioregistry.disprot", "homepage": "https://www.disprot.org", "prefix": "DisProt", "name": "DisProt", "uri_format": "https://www.disprot.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.disprot.uniprot": {"id": "bioregistry.disprot.uniprot", "sameas": "bioregistry.disprot", "homepage": "https://disprot.org", "prefix": "DB-0017", "name": "Database of protein disorder", "uri_format": "https://disprot.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.disprot": {"id": "bioregistry.disprot", "homepage": null, "prefix": "disprot", "name": "DisProt at Indiana University", "uri_format": "https://www.disprot.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.disprot.region.miriam": {"id": "bioregistry.disprot.region.miriam", "sameas": "bioregistry.disprot.region", "homepage": "https://www.disprot.org", "prefix": "disprot.region", "name": "DisProt region", "uri_format": "https://www.disprot.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.disprot.region": {"id": "bioregistry.disprot.region", "homepage": null, "prefix": "disprot.region", "name": "DisProt region", "uri_format": "https://www.disprot.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dlxb.miriam": {"id": "bioregistry.dlxb.miriam", "sameas": "bioregistry.dlxb", "homepage": "https://doulix.com", "prefix": "dlxb", "name": "Linear double stranded DNA sequences", "uri_format": "https://doulix.com/biomodules/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dlxb": {"id": "bioregistry.dlxb", "homepage": null, "prefix": "dlxb", "name": "Linear double stranded DNA sequences", "uri_format": "https://doulix.com/biomodules/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dlxc.miriam": {"id": "bioregistry.dlxc.miriam", "sameas": "bioregistry.dlxc", "homepage": "https://doulix.com", "prefix": "dlxc", "name": "Circular double stranded DNA sequences composed", "uri_format": "https://doulix.com/constructs/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dlxc": {"id": "bioregistry.dlxc", "homepage": null, "prefix": "dlxc", "name": "Circular double stranded DNA sequences composed", "uri_format": "https://doulix.com/constructs/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.doi.miriam": {"id": "bioregistry.doi.miriam", "sameas": "bioregistry.doi", "homepage": "https://www.doi.org/", "prefix": "doi", "name": "DOI", "uri_format": "https://doi.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.doi.n2t": {"id": "bioregistry.doi.n2t", "sameas": "bioregistry.doi", "homepage": "https://www.doi.org/", "prefix": "doi", "name": "Digital Object Identifier", "uri_format": "https://doi.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.doi.prefixcommons": {"id": "bioregistry.doi.prefixcommons", "sameas": "bioregistry.doi", "homepage": "http://www.doi.org/", "prefix": "doi", "name": "Digital Object Identifier", "uri_format": "http://dx.doi.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "prefixcommons"}, "bioregistry.doi.wikidata": {"id": "bioregistry.doi.wikidata", "sameas": "bioregistry.doi", "homepage": null, "prefix": "P356", "name": "DOI", "uri_format": "https://doi.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "wikidata"}, "bioregistry.doi.go": {"id": "bioregistry.doi.go", "sameas": "bioregistry.doi", "homepage": "http://dx.doi.org/", "prefix": "DOI", "name": "Digital Object Identifier", "uri_format": "http://dx.doi.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "go"}, "bioregistry.doi.biolink": {"id": "bioregistry.doi.biolink", "sameas": "bioregistry.doi", "homepage": null, "prefix": "doi", "name": null, "uri_format": "https://doi.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "biolink"}, "bioregistry.doi.cellosaurus": {"id": "bioregistry.doi.cellosaurus", "sameas": "bioregistry.doi", "homepage": "https://dx.doi.org", "prefix": "DOI", "name": "Digital Object Identifier", "uri_format": "https://dx.doi.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "cellosaurus"}, "bioregistry.doi.biocontext": {"id": "bioregistry.doi.biocontext", "sameas": "bioregistry.doi", "homepage": null, "prefix": "DOI", "name": null, "uri_format": "http://dx.doi.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "biocontext"}, "bioregistry.doi": {"id": "bioregistry.doi", "homepage": null, "prefix": "doi", "name": "Digital Object Identifier", "uri_format": "https://dx.doi.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "bioregistry"}, "bioregistry.doid.miriam": {"id": "bioregistry.doid.miriam", "sameas": "bioregistry.doid", "homepage": "https://www.ebi.ac.uk/ols4/ontologies/doid", "prefix": "doid", "name": "Human Disease Ontology", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/doid/terms?obo_id=DOID:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.doid.n2t": {"id": "bioregistry.doid.n2t", "sameas": "bioregistry.doid", "homepage": "http://disease-ontology.org/", "prefix": "doid", "name": "Human Disease Ontology at Northwestern University", "uri_format": "http://disease-ontology.org/term/DOID:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.doid.prefixcommons": {"id": "bioregistry.doid.prefixcommons", "sameas": "bioregistry.doid", "homepage": "http://diseaseontology.sourceforge.net/", "prefix": "do", "name": "Human disease ontology", "uri_format": "http://disease-ontology.org/term/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "health sciences"], "authority": "prefixcommons"}, "bioregistry.doid.wikidata": {"id": "bioregistry.doid.wikidata", "sameas": "bioregistry.doid", "homepage": "http://disease-ontology.org", "prefix": "P699", "name": "Disease Ontology ID", "uri_format": "http://www.disease-ontology.org/?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "health sciences"], "authority": "wikidata"}, "bioregistry.doid": {"id": "bioregistry.doid", "homepage": null, "prefix": "doid", "name": "Human Disease Ontology at Northwestern University", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/doid/terms?obo_id=DOID:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "health sciences"], "authority": "bioregistry"}, "bioregistry.dommino.miriam": {"id": "bioregistry.dommino.miriam", "sameas": "bioregistry.dommino", "homepage": "http://dommino.org/", "prefix": "dommino", "name": "DOMMINO", "uri_format": "http://orion.rnet.missouri.edu/~nz953/DOMMINO/index.php/result/show_network/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dommino.n2t": {"id": "bioregistry.dommino.n2t", "sameas": "bioregistry.dommino", "homepage": "http://dommino.org/", "prefix": "dommino", "name": "DOMMINO at University of Missouri", "uri_format": "http://orion.rnet.missouri.edu/~nz953/DOMMINO/index.php/result/show_network/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dommino": {"id": "bioregistry.dommino", "homepage": "http://korkinlab.org/dommino", "prefix": "dommino", "name": "Database of Macromolecular Interactions", "uri_format": "http://orion.rnet.missouri.edu/~nz953/DOMMINO/index.php/result/show_network/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.door.miriam": {"id": "bioregistry.door.miriam", "sameas": "bioregistry.door", "homepage": "http://csbl.bmb.uga.edu/DOOR/operon.php", "prefix": "door", "name": "DOOR", "uri_format": "http://csbl.bmb.uga.edu/DOOR/operon.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.door.n2t": {"id": "bioregistry.door.n2t", "sameas": "bioregistry.door", "homepage": "http://csbl.bmb.uga.edu/DOOR/operon.php", "prefix": "door", "name": "DOOR v1 at University of Georgia", "uri_format": "http://csbl.bmb.uga.edu/DOOR/operon.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.door.prefixcommons": {"id": "bioregistry.door.prefixcommons", "sameas": "bioregistry.door", "homepage": "http://csbl1.bmb.uga.edu/OperonDB/", "prefix": "door", "name": "Database of prOkaryotic OpeRons", "uri_format": "http://csbl1.bmb.uga.edu/OperonDB/genedetail.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.door": {"id": "bioregistry.door", "homepage": null, "prefix": "door", "name": "Database for Prokaryotic Operons", "uri_format": "http://csbl1.bmb.uga.edu/OperonDB/genedetail.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.doqcs.model.miriam": {"id": "bioregistry.doqcs.model.miriam", "sameas": "bioregistry.doqcs.model", "homepage": "http://doqcs.ncbs.res.in/", "prefix": "doqcs.model", "name": "Database of Quantitative Cellular Signaling: Model", "uri_format": "http://doqcs.ncbs.res.in/template.php?&y=accessiondetails&an=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.doqcs.model.n2t": {"id": "bioregistry.doqcs.model.n2t", "sameas": "bioregistry.doqcs.model", "homepage": "http://doqcs.ncbs.res.in/", "prefix": "doqcs.model", "name": "Database of Quantitative Cellular Signaling (DOQCS) - Model Access", "uri_format": "http://doqcs.ncbs.res.in/template.php?&y=accessiondetails&an=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.doqcs.model.prefixcommons": {"id": "bioregistry.doqcs.model.prefixcommons", "sameas": "bioregistry.doqcs.model", "homepage": "http://doqcs.ncbs.res.in/", "prefix": "doqcs.model", "name": "Database of Quantitative Cellular Signaling: Model", "uri_format": "http://doqcs.ncbs.res.in/template.php?&y=accessiondetails&an=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.doqcs.model": {"id": "bioregistry.doqcs.model", "homepage": null, "prefix": "doqcs.model", "name": "Database of Quantitative Cellular Signaling (DOQCS) - Model Access", "uri_format": "http://doqcs.ncbs.res.in/template.php?&y=accessiondetails&an=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.doqcs.pathway.miriam": {"id": "bioregistry.doqcs.pathway.miriam", "sameas": "bioregistry.doqcs.pathway", "homepage": "http://doqcs.ncbs.res.in/", "prefix": "doqcs.pathway", "name": "Database of Quantitative Cellular Signaling: Pathway", "uri_format": "http://doqcs.ncbs.res.in/template.php?&y=pathwaydetails&pn=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.doqcs.pathway.n2t": {"id": "bioregistry.doqcs.pathway.n2t", "sameas": "bioregistry.doqcs.pathway", "homepage": "http://doqcs.ncbs.res.in/", "prefix": "doqcs.pathway", "name": "Database of Quantitative Cellular Signaling (DOQCS) - Pathway Access", "uri_format": "http://doqcs.ncbs.res.in/template.php?&y=pathwaydetails&pn=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.doqcs.pathway.prefixcommons": {"id": "bioregistry.doqcs.pathway.prefixcommons", "sameas": "bioregistry.doqcs.pathway", "homepage": "http://doqcs.ncbs.res.in/", "prefix": "doqcs.pathway", "name": "Database of Quantitative Cellular Signaling: Pathway", "uri_format": "http://doqcs.ncbs.res.in/template.php?&y=pathwaydetails&pn=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.doqcs.pathway": {"id": "bioregistry.doqcs.pathway", "homepage": null, "prefix": "doqcs.pathway", "name": "Database of Quantitative Cellular Signaling (DOQCS) - Pathway Access", "uri_format": "http://doqcs.ncbs.res.in/template.php?&y=pathwaydetails&pn=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dpv.miriam": {"id": "bioregistry.dpv.miriam", "sameas": "bioregistry.dpv", "homepage": "http://www.dpvweb.net/", "prefix": "dpv", "name": "DPV", "uri_format": "http://www.dpvweb.net/dpv/showdpv.php?dpvno=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dpv.n2t": {"id": "bioregistry.dpv.n2t", "sameas": "bioregistry.dpv", "homepage": "http://www.dpvweb.net/", "prefix": "dpv", "name": "DPV at Rothamsted", "uri_format": "http://www.dpvweb.net/dpv/showdpv.php?dpvno=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dpv.prefixcommons": {"id": "bioregistry.dpv.prefixcommons", "sameas": "bioregistry.dpv", "homepage": "http://www.dpvweb.net", "prefix": "dpvweb", "name": "Description of Plant Viruses", "uri_format": "http://www.dpvweb.net/dpv/showdpv.php?dpvno=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.dpv": {"id": "bioregistry.dpv", "homepage": null, "prefix": "dpv", "name": "Description of Plant Viruses", "uri_format": "http://www.dpvweb.net/dpv/showdpv.php?dpvno=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.dragondb.allele.miriam": {"id": "bioregistry.dragondb.allele.miriam", "sameas": "bioregistry.dragondb.allele", "homepage": "http://www.antirrhinum.net/", "prefix": "dragondb.allele", "name": "DragonDB Allele", "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1&class=Allele", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dragondb.allele.n2t": {"id": "bioregistry.dragondb.allele.n2t", "sameas": "bioregistry.dragondb.allele", "homepage": "http://www.antirrhinum.net/", "prefix": "dragondb.allele", "name": "DragonDB Allele at University of British Columbia", "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1&class=Allele", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dragondb.allele": {"id": "bioregistry.dragondb.allele", "homepage": null, "prefix": "dragondb.allele", "name": "DragonDB Allele at University of British Columbia", "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1&class=Allele", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dragondb.dna.miriam": {"id": "bioregistry.dragondb.dna.miriam", "sameas": "bioregistry.dragondb.dna", "homepage": "http://www.antirrhinum.net/", "prefix": "dragondb.dna", "name": "DragonDB DNA", "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1;class=DNA", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dragondb.dna.n2t": {"id": "bioregistry.dragondb.dna.n2t", "sameas": "bioregistry.dragondb.dna", "homepage": "http://www.antirrhinum.net/", "prefix": "dragondb.dna", "name": "DragonDB DNA at University of British Columbia", "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1;class=DNA", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dragondb.dna": {"id": "bioregistry.dragondb.dna", "homepage": null, "prefix": "dragondb.dna", "name": "DragonDB DNA at University of British Columbia", "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1;class=DNA", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dragondb.locus.miriam": {"id": "bioregistry.dragondb.locus.miriam", "sameas": "bioregistry.dragondb.locus", "homepage": "http://www.antirrhinum.net/", "prefix": "dragondb.locus", "name": "DragonDB Locus", "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1&class=Locus", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dragondb.locus.n2t": {"id": "bioregistry.dragondb.locus.n2t", "sameas": "bioregistry.dragondb.locus", "homepage": "http://www.antirrhinum.net/", "prefix": "dragondb.locus", "name": "DragonDB Locus at University of British Columbia", "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1&class=Locus", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dragondb.locus": {"id": "bioregistry.dragondb.locus", "homepage": null, "prefix": "dragondb.locus", "name": "DragonDB Locus at University of British Columbia", "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1&class=Locus", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dragondb.protein.miriam": {"id": "bioregistry.dragondb.protein.miriam", "sameas": "bioregistry.dragondb.protein", "homepage": "http://www.antirrhinum.net/", "prefix": "dragondb.protein", "name": "DragonDB Protein", "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1;class=Peptide", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.dragondb.protein.n2t": {"id": "bioregistry.dragondb.protein.n2t", "sameas": "bioregistry.dragondb.protein", "homepage": "http://www.antirrhinum.net/", "prefix": "dragondb.protein", "name": "DragonDB Protein at University of British Columbia", "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1;class=Peptide", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.dragondb.protein": {"id": "bioregistry.dragondb.protein", "homepage": null, "prefix": "dragondb.protein", "name": "DragonDB Protein at University of British Columbia", "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1;class=Peptide", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.drduke.wikidata": {"id": "bioregistry.drduke.wikidata", "sameas": "bioregistry.drduke", "homepage": "https://phytochem.nal.usda.gov/phytochem/search/list", "prefix": "P10074", "name": "Dr. Duke's Phytochemical and Ethnobotanical Databases chemical ID", "uri_format": "https://phytochem.nal.usda.gov/phytochem/chemicals/show/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.drduke": {"id": "bioregistry.drduke", "homepage": null, "prefix": "drduke", "name": "Dr. Duke's Phytochemical and Ethnobotanical Databases chemical ID", "uri_format": "https://phytochem.nal.usda.gov/phytochem/chemicals/show/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.drsanv0.miriam": {"id": "bioregistry.drsanv0.miriam", "sameas": "bioregistry.drsanv0", "homepage": "https://www.genome.gov/", "prefix": "drs.anv0", "name": "AnVIL DRS", "uri_format": "https://data.terra.bio/ga4gh/drs/v1/objects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.drsanv0": {"id": "bioregistry.drsanv0", "homepage": null, "prefix": "drsanv0", "name": "AnVIL DRS", "uri_format": "https://data.terra.bio/ga4gh/drs/v1/objects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.drsc.miriam": {"id": "bioregistry.drsc.miriam", "sameas": "bioregistry.drsc", "homepage": "http://flyrnai.org/", "prefix": "drsc", "name": "DRSC", "uri_format": "http://www.flyrnai.org/cgi-bin/RNAi_gene_lookup_public.pl?gname=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.drsc.n2t": {"id": "bioregistry.drsc.n2t", "sameas": "bioregistry.drsc", "homepage": "http://flyrnai.org/", "prefix": "drsc", "name": "DRSC at Harvard Medical School", "uri_format": "http://www.flyrnai.org/cgi-bin/RNAi_gene_lookup_public.pl?gname=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.drsc": {"id": "bioregistry.drsc", "homepage": null, "prefix": "drsc", "name": "Drosophila RNAi Screening Center", "uri_format": "http://www.flyrnai.org/cgi-bin/RNAi_gene_lookup_public.pl?gname=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.drugbank.miriam": {"id": "bioregistry.drugbank.miriam", "sameas": "bioregistry.drugbank", "homepage": "http://www.drugbank.ca/", "prefix": "drugbank", "name": "DrugBank", "uri_format": "http://www.drugbank.ca/drugs/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.drugbank.n2t": {"id": "bioregistry.drugbank.n2t", "sameas": "bioregistry.drugbank", "homepage": "http://www.drugbank.ca/", "prefix": "drugbank", "name": "DrugBank drug information", "uri_format": "http://www.drugbank.ca/drugs/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.drugbank.prefixcommons": {"id": "bioregistry.drugbank.prefixcommons", "sameas": "bioregistry.drugbank", "homepage": "http://www.drugbank.ca/", "prefix": "drugbank", "name": "DrugBank", "uri_format": "http://www.drugbank.ca/drugs/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "pharmacology and pharmacy"], "authority": "prefixcommons"}, "bioregistry.drugbank.wikidata": {"id": "bioregistry.drugbank.wikidata", "sameas": "bioregistry.drugbank", "homepage": "https://www.drugbank.ca", "prefix": "P715", "name": "DrugBank ID", "uri_format": "https://go.drugbank.com/drugs/DB$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "pharmacology and pharmacy"], "authority": "wikidata"}, "bioregistry.drugbank.uniprot": {"id": "bioregistry.drugbank.uniprot", "sameas": "bioregistry.drugbank", "homepage": "https://www.drugbank.ca/", "prefix": "DB-0019", "name": "Drug and drug target database", "uri_format": "https://www.drugbank.ca/drugs/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "pharmacology and pharmacy"], "authority": "uniprot"}, "bioregistry.drugbank.cellosaurus": {"id": "bioregistry.drugbank.cellosaurus", "sameas": "bioregistry.drugbank", "homepage": "https://go.drugbank.com/", "prefix": "DrugBank", "name": "DrugBank database", "uri_format": "https://go.drugbank.com/drugs/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "pharmacology and pharmacy"], "authority": "cellosaurus"}, "bioregistry.drugbank.biocontext": {"id": "bioregistry.drugbank.biocontext", "sameas": "bioregistry.drugbank", "homepage": null, "prefix": "DrugBank", "name": null, "uri_format": "http://www.drugbank.ca/drugs/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "pharmacology and pharmacy"], "authority": "biocontext"}, "bioregistry.drugbank": {"id": "bioregistry.drugbank", "homepage": "http://www.drugbank.ca", "prefix": "drugbank", "name": "Drug and drug target database", "uri_format": "https://www.drugbank.ca/drugs/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "pharmacology and pharmacy"], "authority": "bioregistry"}, "bioregistry.drugbankv4.target.miriam": {"id": "bioregistry.drugbankv4.target.miriam", "sameas": "bioregistry.drugbankv4.target", "homepage": "http://www.drugbank.ca/targets", "prefix": "drugbankv4.target", "name": "DrugBank Target v4", "uri_format": "http://www.drugbank.ca/biodb/bio_entities/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.drugbankv4.target.n2t": {"id": "bioregistry.drugbankv4.target.n2t", "sameas": "bioregistry.drugbankv4.target", "homepage": "http://www.drugbank.ca/targets", "prefix": "drugbankv4.target", "name": "DrugBank Target information version 4", "uri_format": "http://www.drugbank.ca/biodb/bio_entities/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.drugbankv4.target": {"id": "bioregistry.drugbankv4.target", "homepage": null, "prefix": "drugbankv4.target", "name": "DrugBank Target information version 4", "uri_format": "http://www.drugbank.ca/biodb/bio_entities/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.drugcentral.miriam": {"id": "bioregistry.drugcentral.miriam", "sameas": "bioregistry.drugcentral", "homepage": "http://www.unm.edu/", "prefix": "drugcentral", "name": "DrugCentral", "uri_format": "https://drugcentral.org/drugcard/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.drugcentral.wikidata": {"id": "bioregistry.drugcentral.wikidata", "sameas": "bioregistry.drugcentral", "homepage": "https://drugcentral.org/", "prefix": "P11198", "name": "DrugCentral ID", "uri_format": "https://drugcentral.org/drugcard/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.drugcentral.uniprot": {"id": "bioregistry.drugcentral.uniprot", "sameas": "bioregistry.drugcentral", "homepage": "https://drugcentral.org/", "prefix": "DB-0239", "name": "DrugCentral", "uri_format": "https://drugcentral.org?q=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.drugcentral.biolink": {"id": "bioregistry.drugcentral.biolink", "sameas": "bioregistry.drugcentral", "homepage": null, "prefix": "DrugCentral", "name": null, "uri_format": "http://drugcentral.org/drugcard/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.drugcentral": {"id": "bioregistry.drugcentral", "homepage": "http://drugcentral.org", "prefix": "drugcentral", "name": "DrugCentral ID", "uri_format": "https://drugcentral.org?q=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.dsmz.cellosaurus": {"id": "bioregistry.dsmz.cellosaurus", "sameas": "bioregistry.dsmz", "homepage": "https://www.dsmz.de/collection/catalogue/human-and-animal-cell-lines/catalogue", "prefix": "DSMZ", "name": "Deutsche Sammlung von Mikroorganismen und Zellkulturen", "uri_format": "https://www.dsmz.de/collection/catalogue/details/culture/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.dsmz": {"id": "bioregistry.dsmz", "homepage": "https://www.dsmz.de", "prefix": "dsmz", "name": "Deutsche Sammlung von Mikroorganismen und Zellkulturen", "uri_format": "https://www.dsmz.de/collection/catalogue/details/culture/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ebisc.cellosaurus": {"id": "bioregistry.ebisc.cellosaurus", "sameas": "bioregistry.ebisc", "homepage": "https://www.ebisc.org", "prefix": "EBiSC", "name": "European Bank for induced pluripotent Stem Cells", "uri_format": "https://cells.ebisc.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.ebisc": {"id": "bioregistry.ebisc", "homepage": null, "prefix": "ebisc", "name": "European Bank for induced pluripotent Stem Cells", "uri_format": "https://cells.ebisc.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ecacc.cellosaurus": {"id": "bioregistry.ecacc.cellosaurus", "sameas": "bioregistry.ecacc", "homepage": "https://www.phe-culturecollections.org.uk/products/celllines/index.aspx", "prefix": "ECACC", "name": "European Collection of Cell Cultures", "uri_format": "https://www.phe-culturecollections.org.uk/products/celllines/generalcell/detail.jsp?refId=$1&collection=ecacc_gc", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.ecacc": {"id": "bioregistry.ecacc", "homepage": "https://www.phe-culturecollections.org.uk/collections/ecacc.aspx", "prefix": "ecacc", "name": "European Collection of Authenticated Cell Culture", "uri_format": "https://www.phe-culturecollections.org.uk/products/celllines/generalcell/detail.jsp?refId=$1&collection=ecacc_gc", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.eccode.miriam": {"id": "bioregistry.eccode.miriam", "sameas": "bioregistry.eccode", "homepage": "https://www.ebi.ac.uk/intenz/", "prefix": "ec-code", "name": "Enzyme Nomenclature", "uri_format": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.eccode.n2t": {"id": "bioregistry.eccode.n2t", "sameas": "bioregistry.eccode", "homepage": "https://www.ebi.ac.uk/intenz/", "prefix": "ec-code", "name": "IntEnZ (Integrated relational Enzyme database)", "uri_format": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.eccode.prefixcommons": {"id": "bioregistry.eccode.prefixcommons", "sameas": "bioregistry.eccode", "homepage": "http://www.ebi.ac.uk/intenz", "prefix": "intenz", "name": "Integrated relational Enzyme database", "uri_format": "http://www.ebi.ac.uk/intenz/query?cmd=SearchID&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.eccode.wikidata": {"id": "bioregistry.eccode.wikidata", "sameas": "bioregistry.eccode", "homepage": "http://www.chem.qmul.ac.uk/iubmb/enzyme/", "prefix": "P591", "name": "EC enzyme number", "uri_format": "http://enzyme.expasy.org/EC/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "wikidata"}, "bioregistry.eccode.go": {"id": "bioregistry.eccode.go", "sameas": "bioregistry.eccode", "homepage": "http://enzyme.expasy.org/", "prefix": "EC", "name": "Enzyme Commission", "uri_format": "https://enzyme.expasy.org/EC/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.eccode.uniprot": {"id": "bioregistry.eccode.uniprot", "sameas": "bioregistry.eccode", "homepage": "https://enzyme.expasy.org/", "prefix": "DB-0024", "name": "Enzyme nomenclature database", "uri_format": "https://enzyme.expasy.org/EC/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.eccode": {"id": "bioregistry.eccode", "homepage": "https://www.enzyme-database.org/", "prefix": "eccode", "name": "IntEnZ (Integrated relational Enzyme database)", "uri_format": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.echobase.miriam": {"id": "bioregistry.echobase.miriam", "sameas": "bioregistry.echobase", "homepage": "http://www.york.ac.uk/", "prefix": "echobase", "name": "EchoBASE", "uri_format": "http://www.york.ac.uk/res/thomas/Gene.cfm?recordID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.echobase.n2t": {"id": "bioregistry.echobase.n2t", "sameas": "bioregistry.echobase", "homepage": "http://www.york.ac.uk/", "prefix": "echobase", "name": "EchoBASE at the University of York", "uri_format": "http://www.york.ac.uk/res/thomas/Gene.cfm?recordID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.echobase.prefixcommons": {"id": "bioregistry.echobase.prefixcommons", "sameas": "bioregistry.echobase", "homepage": "http://www.ecoli-york.org/", "prefix": "echobase", "name": "EchoBASE - an integrated post-genomic database for E. coli", "uri_format": "http://www.york.ac.uk/res/thomas/Gene.cfm?recordID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.echobase.go": {"id": "bioregistry.echobase.go", "sameas": "bioregistry.echobase", "homepage": "https://www.york.ac.uk/res/thomas/", "prefix": "EchoBASE", "name": "EchoBASE post-genomic database for Escherichia coli", "uri_format": "https://www.york.ac.uk/res/thomas/Gene.cfm?&recordID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.echobase.uniprot": {"id": "bioregistry.echobase.uniprot", "sameas": "bioregistry.echobase", "homepage": "https://www.york.ac.uk/res/thomas/", "prefix": "DB-0020", "name": "EchoBASE - an integrated post-genomic database for E. coli", "uri_format": "https://www.york.ac.uk/res/thomas/Gene.cfm?recordID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.echobase": {"id": "bioregistry.echobase", "homepage": null, "prefix": "echobase", "name": "EchoBASE - an integrated post-genomic database for E. coli", "uri_format": "https://www.york.ac.uk/res/thomas/Gene.cfm?recordID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.eco.miriam": {"id": "bioregistry.eco.miriam", "sameas": "bioregistry.eco", "homepage": "http://bioportal.bioontology.org/ontologies/ECO", "prefix": "eco", "name": "Evidence Code Ontology", "uri_format": "http://purl.bioontology.org/ontology/ECO/ECO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.eco.n2t": {"id": "bioregistry.eco.n2t", "sameas": "bioregistry.eco", "homepage": "http://bioportal.bioontology.org/ontologies/ECO", "prefix": "eco", "name": "Evidence Code Ontology through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/ECO/ECO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.eco.go": {"id": "bioregistry.eco.go", "sameas": "bioregistry.eco", "homepage": "http://www.evidenceontology.org/", "prefix": "ECO", "name": "Evidence Code Ontology", "uri_format": "http://www.evidenceontology.org/browse/#ECO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.eco": {"id": "bioregistry.eco", "homepage": null, "prefix": "eco", "name": "Evidence Code Ontology through BioPortal", "uri_format": "http://www.evidenceontology.org/browse/#ECO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ecocyc.go": {"id": "bioregistry.ecocyc.go", "sameas": "bioregistry.ecocyc", "homepage": "https://ecocyc.org/", "prefix": "EcoCyc", "name": "Scientific database for the bacterium Escherichia coli K-12 MG1655", "uri_format": "https://ecocyc.org/ECOLI/NEW-IMAGE?type=PATHWAY&object=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.ecocyc": {"id": "bioregistry.ecocyc", "homepage": null, "prefix": "ecocyc", "name": "Scientific database for the bacterium Escherichia coli K-12 MG1655", "uri_format": "https://ecocyc.org/ECOLI/NEW-IMAGE?type=PATHWAY&object=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ecogene.miriam": {"id": "bioregistry.ecogene.miriam", "sameas": "bioregistry.ecogene", "homepage": "http://ecogene.org/", "prefix": "ecogene", "name": "EcoGene", "uri_format": "http://www.ecogene.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ecogene.n2t": {"id": "bioregistry.ecogene.n2t", "sameas": "bioregistry.ecogene", "homepage": "http://ecogene.org/", "prefix": "ecogene", "name": "EcoGene at University of Miami", "uri_format": "http://www.ecogene.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ecogene.prefixcommons": {"id": "bioregistry.ecogene.prefixcommons", "sameas": "bioregistry.ecogene", "homepage": "http://ecogene.org/", "prefix": "ecogene", "name": "Escherichia coli strain K12 genome database", "uri_format": "http://ecogene.org/geneInfo.php?eg_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.ecogene.biocontext": {"id": "bioregistry.ecogene.biocontext", "sameas": "bioregistry.ecogene", "homepage": null, "prefix": "EcoGene", "name": null, "uri_format": "http://ecogene.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "biocontext"}, "bioregistry.ecogene": {"id": "bioregistry.ecogene", "homepage": null, "prefix": "ecogene", "name": "Database of Escherichia coli Sequence and Function", "uri_format": "http://www.ecogene.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.ecoliwiki.miriam": {"id": "bioregistry.ecoliwiki.miriam", "sameas": "bioregistry.ecoliwiki", "homepage": "http://ecoliwiki.net/colipedia/", "prefix": "ecoliwiki", "name": "EcoliWiki", "uri_format": "http://ecoliwiki.net/colipedia/index.php/$1:Gene", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ecoliwiki.n2t": {"id": "bioregistry.ecoliwiki.n2t", "sameas": "bioregistry.ecoliwiki", "homepage": "http://ecoliwiki.net/colipedia/", "prefix": "ecoliwiki", "name": "EcoliWiki at Texas Agrilife Research", "uri_format": "http://ecoliwiki.net/colipedia/index.php/$1:Gene", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ecoliwiki": {"id": "bioregistry.ecoliwiki", "homepage": null, "prefix": "ecoliwiki", "name": "EcoliWiki at Texas Agrilife Research", "uri_format": "http://ecoliwiki.net/colipedia/index.php/$1:Gene", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ecto.biolink": {"id": "bioregistry.ecto.biolink", "sameas": "bioregistry.ecto", "homepage": null, "prefix": "ECTO", "name": null, "uri_format": "http://purl.obolibrary.org/obo/ECTO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.ecto": {"id": "bioregistry.ecto", "homepage": null, "prefix": "ecto", "name": "Environmental conditions, treatments and exposures ontology", "uri_format": "http://purl.obolibrary.org/obo/ECTO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ecyano.entity.miriam": {"id": "bioregistry.ecyano.entity.miriam", "sameas": "bioregistry.ecyano.entity", "homepage": "http://www.e-cyanobacterium.org/bcs/entity/", "prefix": "ecyano.entity", "name": "E-cyanobacterium entity", "uri_format": "http://e-cyanobacterium.org/bcs/entity/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ecyano.entity.n2t": {"id": "bioregistry.ecyano.entity.n2t", "sameas": "bioregistry.ecyano.entity", "homepage": "http://www.e-cyanobacterium.org/bcs/entity/", "prefix": "ecyano.entity", "name": "e-cyanobacterium entity at Masaryk University Brno", "uri_format": "http://e-cyanobacterium.org/bcs/entity/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ecyano.entity": {"id": "bioregistry.ecyano.entity", "homepage": null, "prefix": "ecyano.entity", "name": "e-cyanobacterium entity at Masaryk University Brno", "uri_format": "http://e-cyanobacterium.org/bcs/entity/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ecyano.experiment.miriam": {"id": "bioregistry.ecyano.experiment.miriam", "sameas": "bioregistry.ecyano.experiment", "homepage": "https://www.e-cyanobacterium.org/experiments-repository/", "prefix": "ecyano.experiment", "name": "E-cyanobacterium Experimental Data", "uri_format": "https://www.e-cyanobacterium.org/experiments-repository/?action=detail&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ecyano.experiment": {"id": "bioregistry.ecyano.experiment", "homepage": null, "prefix": "ecyano.experiment", "name": "E-cyanobacterium Experimental Data", "uri_format": "https://www.e-cyanobacterium.org/experiments-repository/?action=detail&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ecyano.model.miriam": {"id": "bioregistry.ecyano.model.miriam", "sameas": "bioregistry.ecyano.model", "homepage": "http://e-cyanobacterium.org/models/", "prefix": "ecyano.model", "name": "E-cyanobacterium model", "uri_format": "http://e-cyanobacterium.org/models/model/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ecyano.model.n2t": {"id": "bioregistry.ecyano.model.n2t", "sameas": "bioregistry.ecyano.model", "homepage": "http://e-cyanobacterium.org/models/", "prefix": "ecyano.model", "name": "e-cyanobacterium entity at Masaryk University Brno", "uri_format": "http://e-cyanobacterium.org/models/model/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ecyano.model": {"id": "bioregistry.ecyano.model", "homepage": null, "prefix": "ecyano.model", "name": "e-cyanobacterium entity at Masaryk University Brno", "uri_format": "http://e-cyanobacterium.org/models/model/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ecyano.rule.miriam": {"id": "bioregistry.ecyano.rule.miriam", "sameas": "bioregistry.ecyano.rule", "homepage": "http://www.e-cyanobacterium.org/bcs/rule/", "prefix": "ecyano.rule", "name": "E-cyanobacterium rule", "uri_format": "http://e-cyanobacterium.org/bcs/rule/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ecyano.rule.n2t": {"id": "bioregistry.ecyano.rule.n2t", "sameas": "bioregistry.ecyano.rule", "homepage": "http://www.e-cyanobacterium.org/bcs/rule/", "prefix": "ecyano.rule", "name": "e-cyanobacterium entity at Masaryk University Brno", "uri_format": "http://e-cyanobacterium.org/bcs/rule/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ecyano.rule": {"id": "bioregistry.ecyano.rule", "homepage": null, "prefix": "ecyano.rule", "name": "e-cyanobacterium entity at Masaryk University Brno", "uri_format": "http://e-cyanobacterium.org/bcs/rule/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.edam.miriam": {"id": "bioregistry.edam.miriam", "sameas": "bioregistry.edam", "homepage": "http://bioportal.bioontology.org/ontologies/EDAM", "prefix": "edam", "name": "EDAM Ontology", "uri_format": "http://purl.bioontology.org/ontology/EDAM/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.edam.n2t": {"id": "bioregistry.edam.n2t", "sameas": "bioregistry.edam", "homepage": "http://bioportal.bioontology.org/ontologies/EDAM", "prefix": "edam", "name": "EDAM through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/EDAM/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.edam": {"id": "bioregistry.edam", "homepage": null, "prefix": "edam", "name": "EDAM bioinformatics operations, types of data, data formats, identifiers, and topics", "uri_format": "http://purl.bioontology.org/ontology/EDAM/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.edam.data.biolink": {"id": "bioregistry.edam.data.biolink", "sameas": "bioregistry.edam.data", "homepage": null, "prefix": "EDAM-DATA", "name": null, "uri_format": "http://edamontology.org/data_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.edam.data": {"id": "bioregistry.edam.data", "homepage": "http://edamontology.org", "prefix": "edam.data", "name": "EDAM Data", "uri_format": "http://edamontology.org/data_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.edam.format.biolink": {"id": "bioregistry.edam.format.biolink", "sameas": "bioregistry.edam.format", "homepage": null, "prefix": "EDAM-FORMAT", "name": null, "uri_format": "http://edamontology.org/format_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.edam.format": {"id": "bioregistry.edam.format", "homepage": "http://edamontology.org", "prefix": "edam.format", "name": "EDAM Format", "uri_format": "http://edamontology.org/format_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.edam.operation.biolink": {"id": "bioregistry.edam.operation.biolink", "sameas": "bioregistry.edam.operation", "homepage": null, "prefix": "EDAM-OPERATION", "name": null, "uri_format": "http://edamontology.org/operation_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.edam.operation": {"id": "bioregistry.edam.operation", "homepage": "http://edamontology.org", "prefix": "edam.operation", "name": "EDAM Operation", "uri_format": "http://edamontology.org/operation_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.edam.topic.biolink": {"id": "bioregistry.edam.topic.biolink", "sameas": "bioregistry.edam.topic", "homepage": null, "prefix": "EDAM-TOPIC", "name": null, "uri_format": "http://edamontology.org/topic_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.edam.topic": {"id": "bioregistry.edam.topic", "homepage": "http://edamontology.org", "prefix": "edam.topic", "name": "EDAM Topic", "uri_format": "http://edamontology.org/topic_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.efo.miriam": {"id": "bioregistry.efo.miriam", "sameas": "bioregistry.efo", "homepage": "http://bioportal.bioontology.org/ontologies/EFO", "prefix": "efo", "name": "Experimental Factor Ontology", "uri_format": "http://purl.bioontology.org/ontology/EFO/efo:EFO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.efo.n2t": {"id": "bioregistry.efo.n2t", "sameas": "bioregistry.efo", "homepage": "http://bioportal.bioontology.org/ontologies/EFO", "prefix": "efo", "name": "EFO through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/EFO/efo:EFO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.efo.biolink": {"id": "bioregistry.efo.biolink", "sameas": "bioregistry.efo", "homepage": null, "prefix": "EFO", "name": null, "uri_format": "http://www.ebi.ac.uk/efo/EFO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.efo.cellosaurus": {"id": "bioregistry.efo.cellosaurus", "sameas": "bioregistry.efo", "homepage": "https://www.ebi.ac.uk/efo/", "prefix": "EFO", "name": "Experimental Factor Ontology", "uri_format": "https://www.ebi.ac.uk/efo/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.efo": {"id": "bioregistry.efo", "homepage": null, "prefix": "efo", "name": "Experimental Factor Ontology", "uri_format": "https://www.ebi.ac.uk/efo/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ega.dataset.miriam": {"id": "bioregistry.ega.dataset.miriam", "sameas": "bioregistry.ega.dataset", "homepage": "https://www.ebi.ac.uk/ega/dataset", "prefix": "ega.dataset", "name": "European Genome-phenome Archive Dataset", "uri_format": "https://www.ebi.ac.uk/ega/datasets/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ega.dataset.n2t": {"id": "bioregistry.ega.dataset.n2t", "sameas": "bioregistry.ega.dataset", "homepage": "https://www.ebi.ac.uk/ega/dataset", "prefix": "ega.dataset", "name": "EGA Dataset at European Bioinformatics Institute", "uri_format": "https://www.ebi.ac.uk/ega/datasets/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ega.dataset": {"id": "bioregistry.ega.dataset", "homepage": "https://ega-archive.org/", "prefix": "ega.dataset", "name": "EGA Dataset at European Bioinformatics Institute", "uri_format": "https://www.ebi.ac.uk/ega/datasets/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ega.study.miriam": {"id": "bioregistry.ega.study.miriam", "sameas": "bioregistry.ega.study", "homepage": "https://www.ebi.ac.uk/ega/studies", "prefix": "ega.study", "name": "European Genome-phenome Archive Study", "uri_format": "https://www.ebi.ac.uk/ega/studies/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ega.study.n2t": {"id": "bioregistry.ega.study.n2t", "sameas": "bioregistry.ega.study", "homepage": "https://www.ebi.ac.uk/ega/studies", "prefix": "ega.study", "name": "EGA Study at European Bioinformatics Institute", "uri_format": "https://www.ebi.ac.uk/ega/studies/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ega.study": {"id": "bioregistry.ega.study", "homepage": null, "prefix": "ega.study", "name": "EGA Study at European Bioinformatics Institute", "uri_format": "https://www.ebi.ac.uk/ega/studies/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.eggnog.miriam": {"id": "bioregistry.eggnog.miriam", "sameas": "bioregistry.eggnog", "homepage": "http://eggnog.embl.de/version_3.0/", "prefix": "eggnog", "name": "eggNOG", "uri_format": "http://eggnog.embl.de/version_3.0/cgi/search.py?search_term_0=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.eggnog.n2t": {"id": "bioregistry.eggnog.n2t", "sameas": "bioregistry.eggnog", "homepage": "http://eggnog.embl.de/version_3.0/", "prefix": "eggnog", "name": "eggNOG Version 3 at European Molecular Biology Laboratory", "uri_format": "http://eggnog.embl.de/version_3.0/cgi/search.py?search_term_0=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.eggnog.prefixcommons": {"id": "bioregistry.eggnog.prefixcommons", "sameas": "bioregistry.eggnog", "homepage": "http://eggnog.embl.de", "prefix": "eggnog", "name": "Evolutionary Genealogy of Genes: Non-supervised Orthologous Groups", "uri_format": "http://eggnog.embl.de/version_3.0/cgi/search.py?search_term_0=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.eggnog": {"id": "bioregistry.eggnog", "homepage": null, "prefix": "eggnog", "name": "Evolutionary Genealogy of Genes: Non-supervised Orthologous Groups", "uri_format": "http://eggnog.embl.de/version_3.0/cgi/search.py?search_term_0=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.elm.miriam": {"id": "bioregistry.elm.miriam", "sameas": "bioregistry.elm", "homepage": "http://elm.eu.org/", "prefix": "elm", "name": "ELM", "uri_format": "http://elm.eu.org/elms/elmPages/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.elm.n2t": {"id": "bioregistry.elm.n2t", "sameas": "bioregistry.elm", "homepage": "http://elm.eu.org/", "prefix": "elm", "name": "ELM at EMBL (Germany)", "uri_format": "http://elm.eu.org/elms/elmPages/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.elm.uniprot": {"id": "bioregistry.elm.uniprot", "sameas": "bioregistry.elm", "homepage": "http://elm.eu.org/", "prefix": "DB-0223", "name": "The Eukaryotic Linear Motif resource for Functional Sites in Proteins", "uri_format": "http://elm.eu.org/instances.html?q=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.elm": {"id": "bioregistry.elm", "homepage": null, "prefix": "elm", "name": "The Eukaryotic Linear Motif resource for Functional Sites in Proteins", "uri_format": "http://elm.eu.org/instances.html?q=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.emapa.go": {"id": "bioregistry.emapa.go", "sameas": "bioregistry.emapa", "homepage": "http://emouseatlas.org/", "prefix": "EMAPA", "name": "Mouse gross anatomy and development, abstract", "uri_format": "http://www.informatics.jax.org/vocab/gxd/anatomy/EMAPA:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.emapa": {"id": "bioregistry.emapa", "homepage": null, "prefix": "emapa", "name": "Mouse gross anatomy and development, abstract", "uri_format": "http://www.informatics.jax.org/vocab/gxd/anatomy/EMAPA:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.emdb.miriam": {"id": "bioregistry.emdb.miriam", "sameas": "bioregistry.emdb", "homepage": "https://www.ebi.ac.uk/pdbe/emdb/", "prefix": "emdb", "name": "Electron Microscopy Data Bank", "uri_format": "https://www.ebi.ac.uk/pdbe/entry/emdb/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.emdb.n2t": {"id": "bioregistry.emdb.n2t", "sameas": "bioregistry.emdb", "homepage": "https://www.ebi.ac.uk/pdbe/emdb/", "prefix": "emdb", "name": "EMDB at Protein Data Bank in Europe", "uri_format": "https://www.ebi.ac.uk/pdbe/entry/emdb/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.emdb": {"id": "bioregistry.emdb", "homepage": null, "prefix": "emdb", "name": "EMDB at Protein Data Bank in Europe", "uri_format": "https://www.ebi.ac.uk/pdbe/entry/emdb/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.empiar.miriam": {"id": "bioregistry.empiar.miriam", "sameas": "bioregistry.empiar", "homepage": "https://www.ebi.ac.uk", "prefix": "empiar", "name": "EMPIAR", "uri_format": "https://www.ebi.ac.uk/empiar/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.empiar": {"id": "bioregistry.empiar", "homepage": "https://www.ebi.ac.uk/pdbe/emdb", "prefix": "empiar", "name": "Electron Microscopy Public Image Archive", "uri_format": "https://www.ebi.ac.uk/empiar/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ena.embl.miriam": {"id": "bioregistry.ena.embl.miriam", "sameas": "bioregistry.ena.embl", "homepage": "https://www.ebi.ac.uk/ena/", "prefix": "ena.embl", "name": "ENA", "uri_format": "https://www.ebi.ac.uk/ena/browser/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ena.embl.n2t": {"id": "bioregistry.ena.embl.n2t", "sameas": "bioregistry.ena.embl", "homepage": "https://www.ncbi.nlm.nih.gov/Genbank/", "prefix": "ena.embl", "name": "ENA through GenBank", "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ena.embl.prefixcommons": {"id": "bioregistry.ena.embl.prefixcommons", "sameas": "bioregistry.ena.embl", "homepage": "http://www.ebi.ac.uk/ena/", "prefix": "ena", "name": "European Nucleotide Archive", "uri_format": "http://www.ebi.ac.uk/ena/data/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.ena.embl.go": {"id": "bioregistry.ena.embl.go", "sameas": "bioregistry.ena.embl", "homepage": "http://www.ebi.ac.uk/ena/", "prefix": "ENA", "name": "European Nucleotide Archive", "uri_format": "http://www.ebi.ac.uk/ena/data/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.ena.embl.uniprot": {"id": "bioregistry.ena.embl.uniprot", "sameas": "bioregistry.ena.embl", "homepage": "https://www.ebi.ac.uk/ena", "prefix": "DB-0022", "name": "EMBL nucleotide sequence database", "uri_format": "https://www.ebi.ac.uk/ena/browser/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.ena.embl": {"id": "bioregistry.ena.embl", "homepage": null, "prefix": "ena.embl", "name": "EMBL nucleotide sequence database", "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.encode.miriam": {"id": "bioregistry.encode.miriam", "sameas": "bioregistry.encode", "homepage": "www.encodeproject.org", "prefix": "encode", "name": "ENCODE: Encyclopedia of DNA Elements", "uri_format": "https://www.encodeproject.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.encode.n2t": {"id": "bioregistry.encode.n2t", "sameas": "bioregistry.encode", "homepage": "www.encodeproject.org", "prefix": "encode", "name": "ENCODE: Encyclopedia of DNA Elements", "uri_format": "https://www.encodeproject.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.encode.cellosaurus": {"id": "bioregistry.encode.cellosaurus", "sameas": "bioregistry.encode", "homepage": "https://www.encodeproject.org", "prefix": "ENCODE", "name": "Encyclopedia of DNA Elements", "uri_format": "https://www.encodeproject.org/biosamples/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.encode": {"id": "bioregistry.encode", "homepage": "https://www.encodeproject.org", "prefix": "encode", "name": "ENCODE: Encyclopedia of DNA Elements", "uri_format": "https://www.encodeproject.org/biosamples/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ensembl.miriam": {"id": "bioregistry.ensembl.miriam", "sameas": "bioregistry.ensembl", "homepage": "https://www.ensembl.org/", "prefix": "ensembl", "name": "Ensembl", "uri_format": "https://www.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ensembl.n2t": {"id": "bioregistry.ensembl.n2t", "sameas": "bioregistry.ensembl", "homepage": "https://www.ensembl.org/", "prefix": "ensembl", "name": "Ensembl at Sanger/EMBL-EBI", "uri_format": "https://www.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ensembl.prefixcommons": {"id": "bioregistry.ensembl.prefixcommons", "sameas": "bioregistry.ensembl", "homepage": "http://www.ensembl.org/", "prefix": "ensembl", "name": "Ensembl", "uri_format": "http://www.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.ensembl.wikidata": {"id": "bioregistry.ensembl.wikidata", "sameas": "bioregistry.ensembl", "homepage": "https://www.ensembl.org", "prefix": "P594", "name": "Ensembl gene ID", "uri_format": "https://identifiers.org/ensembl/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "wikidata"}, "bioregistry.ensembl.uniprot": {"id": "bioregistry.ensembl.uniprot", "sameas": "bioregistry.ensembl", "homepage": "https://www.ensembl.org/", "prefix": "DB-0023", "name": "Ensembl eukaryotic genome annotation project", "uri_format": "https://www.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.ensembl.biocontext": {"id": "bioregistry.ensembl.biocontext", "sameas": "bioregistry.ensembl", "homepage": null, "prefix": "ENSEMBL", "name": null, "uri_format": "http://ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "biocontext"}, "bioregistry.ensembl": {"id": "bioregistry.ensembl", "homepage": null, "prefix": "ensembl", "name": "Ensembl database of automatically annotated genomic data", "uri_format": "https://www.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.ensembl.bacteria.miriam": {"id": "bioregistry.ensembl.bacteria.miriam", "sameas": "bioregistry.ensembl.bacteria", "homepage": "https://bacteria.ensembl.org/", "prefix": "ensembl.bacteria", "name": "Ensembl Bacteria", "uri_format": "https://bacteria.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ensembl.bacteria.n2t": {"id": "bioregistry.ensembl.bacteria.n2t", "sameas": "bioregistry.ensembl.bacteria", "homepage": "https://bacteria.ensembl.org/", "prefix": "ensembl.bacteria", "name": "Ensembl Bacteria at EBI", "uri_format": "https://bacteria.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ensembl.bacteria.prefixcommons": {"id": "bioregistry.ensembl.bacteria.prefixcommons", "sameas": "bioregistry.ensembl.bacteria", "homepage": "http://bacteria.ensembl.org/", "prefix": "ensembl.bacteria", "name": "Ensembl Bacteria", "uri_format": "http://bacteria.ensembl.org/[?species_name]/Gene/Summary?g=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.ensembl.bacteria.uniprot": {"id": "bioregistry.ensembl.bacteria.uniprot", "sameas": "bioregistry.ensembl.bacteria", "homepage": "https://bacteria.ensembl.org/", "prefix": "DB-0147", "name": "Ensembl bacterial and archaeal genome annotation project", "uri_format": "https://www.ensemblgenomes.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.ensembl.bacteria": {"id": "bioregistry.ensembl.bacteria", "homepage": null, "prefix": "ensembl.bacteria", "name": "Ensembl bacterial and archaeal genome annotation project", "uri_format": "https://www.ensemblgenomes.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.ensembl.fungi.miriam": {"id": "bioregistry.ensembl.fungi.miriam", "sameas": "bioregistry.ensembl.fungi", "homepage": "https://fungi.ensembl.org/", "prefix": "ensembl.fungi", "name": "Ensembl Fungi", "uri_format": "https://fungi.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ensembl.fungi.n2t": {"id": "bioregistry.ensembl.fungi.n2t", "sameas": "bioregistry.ensembl.fungi", "homepage": "https://fungi.ensembl.org/", "prefix": "ensembl.fungi", "name": "Enzembl Fungi at EBI", "uri_format": "https://fungi.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ensembl.fungi.prefixcommons": {"id": "bioregistry.ensembl.fungi.prefixcommons", "sameas": "bioregistry.ensembl.fungi", "homepage": "http://fungi.ensembl.org/", "prefix": "ensembl.fungi", "name": "Ensembl Fungi", "uri_format": "http://fungi.ensembl.org/[?species_name]/Gene/Summary?g=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.ensembl.fungi.go": {"id": "bioregistry.ensembl.fungi.go", "sameas": "bioregistry.ensembl.fungi", "homepage": "http://fungi.ensembl.org/", "prefix": "EnsemblFungi", "name": "Ensembl Fungi, the Ensembl database for accessing genome-scale data from fungi.", "uri_format": "http://www.ensemblgenomes.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.ensembl.fungi.uniprot": {"id": "bioregistry.ensembl.fungi.uniprot", "sameas": "bioregistry.ensembl.fungi", "homepage": "https://fungi.ensembl.org/", "prefix": "DB-0148", "name": "Ensembl fungal genome annotation project", "uri_format": "https://www.ensemblgenomes.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.ensembl.fungi": {"id": "bioregistry.ensembl.fungi", "homepage": null, "prefix": "ensembl.fungi", "name": "Ensembl Fungi, the Ensembl database for accessing genome-scale data from fungi.", "uri_format": "https://www.ensemblgenomes.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.ensembl.metazoa.miriam": {"id": "bioregistry.ensembl.metazoa.miriam", "sameas": "bioregistry.ensembl.metazoa", "homepage": "https://metazoa.ensembl.org/", "prefix": "ensembl.metazoa", "name": "Ensembl Metazoa", "uri_format": "https://metazoa.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ensembl.metazoa.n2t": {"id": "bioregistry.ensembl.metazoa.n2t", "sameas": "bioregistry.ensembl.metazoa", "homepage": "https://metazoa.ensembl.org/", "prefix": "ensembl.metazoa", "name": "Enzembl Metazoa at EBI", "uri_format": "https://metazoa.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ensembl.metazoa.prefixcommons": {"id": "bioregistry.ensembl.metazoa.prefixcommons", "sameas": "bioregistry.ensembl.metazoa", "homepage": "http://metazoa.ensembl.org/", "prefix": "ensembl.metazoa", "name": "Ensembl Metazoa", "uri_format": "http://metazoa.ensembl.org/[?species_name]/Gene/Summary?g=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.ensembl.metazoa.go": {"id": "bioregistry.ensembl.metazoa.go", "sameas": "bioregistry.ensembl.metazoa", "homepage": "http://metazoa.ensembl.org/", "prefix": "EnsemblMetazoa", "name": "Ensembl Metazoa, the Ensembl database for accessing genome-scale data from non-vertebrate metazoa.", "uri_format": "http://www.ensemblgenomes.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.ensembl.metazoa.uniprot": {"id": "bioregistry.ensembl.metazoa.uniprot", "sameas": "bioregistry.ensembl.metazoa", "homepage": "https://metazoa.ensembl.org/", "prefix": "DB-0149", "name": "Ensembl metazoan genome annotation project", "uri_format": "https://www.ensemblgenomes.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.ensembl.metazoa": {"id": "bioregistry.ensembl.metazoa", "homepage": null, "prefix": "ensembl.metazoa", "name": "Ensembl Metazoa, the Ensembl database for accessing genome-scale data from non-vertebrate metazoa.", "uri_format": "https://www.ensemblgenomes.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.ensembl.plant.miriam": {"id": "bioregistry.ensembl.plant.miriam", "sameas": "bioregistry.ensembl.plant", "homepage": "https://plants.ensembl.org/", "prefix": "ensembl.plant", "name": "Ensembl Plants", "uri_format": "https://plants.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ensembl.plant.n2t": {"id": "bioregistry.ensembl.plant.n2t", "sameas": "bioregistry.ensembl.plant", "homepage": "https://plants.ensembl.org/", "prefix": "ensembl.plant", "name": "Enzembl Plants at EBI", "uri_format": "https://plants.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ensembl.plant.prefixcommons": {"id": "bioregistry.ensembl.plant.prefixcommons", "sameas": "bioregistry.ensembl.plant", "homepage": "http://plants.ensembl.org/", "prefix": "ensembl.plant", "name": "Ensembl Plants", "uri_format": "http://plants.ensembl.org/[?species_name]/Gene/Summary?g=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.ensembl.plant": {"id": "bioregistry.ensembl.plant", "homepage": null, "prefix": "ensembl.plant", "name": "Enzembl Plants at EBI", "uri_format": "https://plants.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.ensembl.protist.miriam": {"id": "bioregistry.ensembl.protist.miriam", "sameas": "bioregistry.ensembl.protist", "homepage": "https://protists.ensembl.org", "prefix": "ensembl.protist", "name": "Ensembl Protists", "uri_format": "https://protists.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ensembl.protist.n2t": {"id": "bioregistry.ensembl.protist.n2t", "sameas": "bioregistry.ensembl.protist", "homepage": "https://protists.ensembl.org", "prefix": "ensembl.protist", "name": "Ensembl Protists at EBI", "uri_format": "https://protists.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ensembl.protist.prefixcommons": {"id": "bioregistry.ensembl.protist.prefixcommons", "sameas": "bioregistry.ensembl.protist", "homepage": "http://protists.ensembl.org/", "prefix": "ensembl.protist", "name": "Ensembl Protists", "uri_format": "http://protists.ensembl.org/[?species_name]/Gene/Summary?g=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.ensembl.protist": {"id": "bioregistry.ensembl.protist", "homepage": null, "prefix": "ensembl.protist", "name": "Ensembl Protists at EBI", "uri_format": "https://protists.ensembl.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.envipath.miriam": {"id": "bioregistry.envipath.miriam", "sameas": "bioregistry.envipath", "homepage": "https://envipath.org/", "prefix": "envipath", "name": "enviPath", "uri_format": "https://envipath.org/package/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.envipath": {"id": "bioregistry.envipath", "homepage": null, "prefix": "envipath", "name": "enviPath", "uri_format": "https://envipath.org/package/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.envo.miriam": {"id": "bioregistry.envo.miriam", "sameas": "bioregistry.envo", "homepage": "http://purl.bioontology.org/ontology/ENVO/", "prefix": "envo", "name": "Environment Ontology", "uri_format": "http://purl.bioontology.org/ontology/ENVO/ENVO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.envo.n2t": {"id": "bioregistry.envo.n2t", "sameas": "bioregistry.envo", "homepage": "http://purl.bioontology.org/ontology/ENVO/", "prefix": "envo", "name": "The Environment Ontology through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/ENVO/ENVO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.envo": {"id": "bioregistry.envo", "homepage": null, "prefix": "envo", "name": "The Environment Ontology through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/ENVO/ENVO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.eo.miriam": {"id": "bioregistry.eo.miriam", "sameas": "bioregistry.eo", "homepage": "http://archive.gramene.org/db/ontology/search_term?id=EO:0007359", "prefix": "eo", "name": "Plant Environment Ontology", "uri_format": "http://archive.gramene.org/db/ontology/search?query=EO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.eo.n2t": {"id": "bioregistry.eo.n2t", "sameas": "bioregistry.eo", "homepage": "http://bioportal.bioontology.org/ontologies/PECO", "prefix": "eo", "name": "Plant Environment Ontology through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/PECO/EO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.eo": {"id": "bioregistry.eo", "homepage": null, "prefix": "eo", "name": "Plant Environment Ontology through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/PECO/EO:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "botany"], "authority": "bioregistry"}, "bioregistry.eolife.wikidata": {"id": "bioregistry.eolife.wikidata", "sameas": "bioregistry.eolife", "homepage": "http://eol.org/api/docs/pages", "prefix": "P830", "name": "Encyclopedia of Life ID", "uri_format": "https://eol.org/pages/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.eolife": {"id": "bioregistry.eolife", "homepage": "https://eol.org", "prefix": "eolife", "name": "Encyclopedia of Life ID", "uri_format": "https://eol.org/pages/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.epd.miriam": {"id": "bioregistry.epd.miriam", "sameas": "bioregistry.epd", "homepage": "https://epd.expasy.org/epd", "prefix": "epd", "name": "EPD", "uri_format": "https://epd.expasy.org/cgi-bin/epd/query_result.pl?out_format=NICE&Entry_0=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.epd.n2t": {"id": "bioregistry.epd.n2t", "sameas": "bioregistry.epd", "homepage": "http://epd.vital-it.ch/", "prefix": "epd", "name": "EPD at Swiss Institute of Bioinformatics", "uri_format": "http://epd.vital-it.ch/cgi-bin/query_result.pl?out_format=NICE&Entry_0=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.epd.uniprot": {"id": "bioregistry.epd.uniprot", "sameas": "bioregistry.epd", "homepage": "https://www.peptracker.com/epd/analytics/", "prefix": "DB-0205", "name": "Encyclopedia of Proteome Dynamics", "uri_format": "https://www.peptracker.com/epd/analytics/?protein_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.epd": {"id": "bioregistry.epd", "homepage": "https://epd.expasy.org/epd/", "prefix": "epd", "name": "EPD at Swiss Institute of Bioinformatics", "uri_format": "https://www.peptracker.com/epd/analytics/?protein_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.erm.miriam": {"id": "bioregistry.erm.miriam", "sameas": "bioregistry.erm", "homepage": "https://nanocommons.github.io/identifiers/", "prefix": "erm", "name": "European Registry of Materials", "uri_format": "https://nanocommons.github.io/identifiers/registry#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.erm.n2t": {"id": "bioregistry.erm.n2t", "sameas": "bioregistry.erm", "homepage": "https://nanocommons.github.io/identifiers/", "prefix": "erm", "name": "European Registry of Materials", "uri_format": "https://nanocommons.github.io/identifiers/registry#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.erm": {"id": "bioregistry.erm", "homepage": null, "prefix": "erm", "name": "European Registry of Materials Identifier", "uri_format": "https://nanocommons.github.io/identifiers/registry#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.eropmoscow.prefixcommons": {"id": "bioregistry.eropmoscow.prefixcommons", "sameas": "bioregistry.eropmoscow", "homepage": "http://erop.inbi.ras.ru", "prefix": "eropmoscow", "name": "Endogenous Regulatory OligoPeptide knowledgebase-Moscow", "uri_format": "http://erop.inbi.ras.ru/result2.php?PepName=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.eropmoscow": {"id": "bioregistry.eropmoscow", "homepage": null, "prefix": "eropmoscow", "name": "Endogenous Regulatory OligoPeptide knowledgebase-Moscow", "uri_format": "http://erop.inbi.ras.ru/result2.php?PepName=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.erv.miriam": {"id": "bioregistry.erv.miriam", "sameas": "bioregistry.erv", "homepage": "https://herv.img.cas.cz/", "prefix": "erv", "name": "Human Endogenous Retrovirus Database", "uri_format": "https://herv.img.cas.cz/s/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.erv.n2t": {"id": "bioregistry.erv.n2t", "sameas": "bioregistry.erv", "homepage": "https://herv.img.cas.cz/", "prefix": "erv", "name": "Human Endogenous Retrovirus Database", "uri_format": "https://herv.img.cas.cz/s/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.erv": {"id": "bioregistry.erv", "homepage": null, "prefix": "erv", "name": "Human Endogenous Retrovirus Database", "uri_format": "https://herv.img.cas.cz/s/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.esldb.prefixcommons": {"id": "bioregistry.esldb.prefixcommons", "sameas": "bioregistry.esldb", "homepage": "http://gpcr.biocomp.unibo.it/esldb", "prefix": "esldb", "name": "eukaryotic Subcellular Localization database", "uri_format": "http://gpcr.biocomp.unibo.it/cgi-bin/predictors/esldb/dettagli.cgi?codice=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.esldb": {"id": "bioregistry.esldb", "homepage": null, "prefix": "esldb", "name": "eukaryotic Subcellular Localization database", "uri_format": "http://gpcr.biocomp.unibo.it/cgi-bin/predictors/esldb/dettagli.cgi?codice=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.estdab.cellosaurus": {"id": "bioregistry.estdab.cellosaurus", "sameas": "bioregistry.estdab", "homepage": "https://www.ebi.ac.uk/ipd/estdab/", "prefix": "ESTDAB", "name": "European Searchable Tumour Line Database", "uri_format": "https://www.ebi.ac.uk/cgi-bin/ipd/estdab/print_cell.cgi?$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.estdab": {"id": "bioregistry.estdab", "homepage": null, "prefix": "estdab", "name": "European Searchable Tumour Line Database", "uri_format": "https://www.ebi.ac.uk/cgi-bin/ipd/estdab/print_cell.cgi?$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.eu89h.miriam": {"id": "bioregistry.eu89h.miriam", "sameas": "bioregistry.eu89h", "homepage": "http://data.jrc.ec.europa.eu/", "prefix": "eu89h", "name": "JRC Data Catalogue", "uri_format": "http://data.europa.eu/89h/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.eu89h.n2t": {"id": "bioregistry.eu89h.n2t", "sameas": "bioregistry.eu89h", "homepage": "http://data.jrc.ec.europa.eu/", "prefix": "eu89h", "name": "JRC Data Catalogue", "uri_format": "http://data.europa.eu/89h/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.eu89h": {"id": "bioregistry.eu89h", "homepage": null, "prefix": "eu89h", "name": "JRC Data Catalogue", "uri_format": "http://data.europa.eu/89h/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.euclinicaltrials.miriam": {"id": "bioregistry.euclinicaltrials.miriam", "sameas": "bioregistry.euclinicaltrials", "homepage": "https://www.clinicaltrialsregister.eu/", "prefix": "euclinicaltrials", "name": "EU Clinical Trials", "uri_format": "https://www.clinicaltrialsregister.eu/ctr-search/search?query=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.euclinicaltrials.n2t": {"id": "bioregistry.euclinicaltrials.n2t", "sameas": "bioregistry.euclinicaltrials", "homepage": "https://www.clinicaltrialsregister.eu/", "prefix": "euclinicaltrials", "name": "EU Clinical Trials at European Medicines Agency", "uri_format": "https://www.clinicaltrialsregister.eu/ctr-search/search?query=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.euclinicaltrials": {"id": "bioregistry.euclinicaltrials", "homepage": null, "prefix": "euclinicaltrials", "name": "EU Clinical Trials at European Medicines Agency", "uri_format": "https://www.clinicaltrialsregister.eu/ctr-search/search?query=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.eugenes.prefixcommons": {"id": "bioregistry.eugenes.prefixcommons", "sameas": "bioregistry.eugenes", "homepage": "http://eugenes.org/", "prefix": "eugenes", "name": "Eukaryotic Genes", "uri_format": "http://eugenes.org:7072/.bin/fbidq.html?$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.eugenes": {"id": "bioregistry.eugenes", "homepage": null, "prefix": "eugenes", "name": "Eukaryotic Genes", "uri_format": "http://eugenes.org:7072/.bin/fbidq.html?$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.ev.prefixcommons": {"id": "bioregistry.ev.prefixcommons", "sameas": "bioregistry.ev", "homepage": "http://www.evocontology.org/", "prefix": "evoc", "name": "eVOC (Expressed Sequence Annotation for Humans)", "uri_format": "http://www.evocontology.org/site/Main/BrowseEvoc?x_termid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "anatomy and morphology"], "authority": "prefixcommons"}, "bioregistry.ev": {"id": "bioregistry.ev", "homepage": null, "prefix": "ev", "name": "eVOC (Expressed Sequence Annotation for Humans)", "uri_format": "http://www.evocontology.org/site/Main/BrowseEvoc?x_termid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "anatomy and morphology"], "authority": "bioregistry"}, "bioregistry.exac.gene.miriam": {"id": "bioregistry.exac.gene.miriam", "sameas": "bioregistry.exac.gene", "homepage": "http://exac.broadinstitute.org/", "prefix": "exac.gene", "name": "ExAC Gene", "uri_format": "http://exac.broadinstitute.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.exac.gene.n2t": {"id": "bioregistry.exac.gene.n2t", "sameas": "bioregistry.exac.gene", "homepage": "http://exac.broadinstitute.org/", "prefix": "exac.gene", "name": "ExAC Gene at Exome Aggregation Consortium", "uri_format": "http://exac.broadinstitute.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.exac.gene": {"id": "bioregistry.exac.gene", "homepage": null, "prefix": "exac.gene", "name": "ExAC Gene at Exome Aggregation Consortium", "uri_format": "http://exac.broadinstitute.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.exac.transcript.miriam": {"id": "bioregistry.exac.transcript.miriam", "sameas": "bioregistry.exac.transcript", "homepage": "http://exac.broadinstitute.org/", "prefix": "exac.transcript", "name": "ExAC Transcript", "uri_format": "http://exac.broadinstitute.org/transcript/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.exac.transcript.n2t": {"id": "bioregistry.exac.transcript.n2t", "sameas": "bioregistry.exac.transcript", "homepage": "http://exac.broadinstitute.org/", "prefix": "exac.transcript", "name": "ExAC Transcript at Exome Aggregation Consortium", "uri_format": "http://exac.broadinstitute.org/transcript/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.exac.transcript": {"id": "bioregistry.exac.transcript", "homepage": null, "prefix": "exac.transcript", "name": "ExAC Transcript at Exome Aggregation Consortium", "uri_format": "http://exac.broadinstitute.org/transcript/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.exac.variant.miriam": {"id": "bioregistry.exac.variant.miriam", "sameas": "bioregistry.exac.variant", "homepage": "http://exac.broadinstitute.org/", "prefix": "exac.variant", "name": "ExAC Variant", "uri_format": "http://exac.broadinstitute.org/variant/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.exac.variant.n2t": {"id": "bioregistry.exac.variant.n2t", "sameas": "bioregistry.exac.variant", "homepage": "http://exac.broadinstitute.org/", "prefix": "exac.variant", "name": "ExAC Variant at Exome Aggregation Consortium", "uri_format": "http://exac.broadinstitute.org/variant/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.exac.variant": {"id": "bioregistry.exac.variant", "homepage": null, "prefix": "exac.variant", "name": "ExAC Variant at Exome Aggregation Consortium", "uri_format": "http://exac.broadinstitute.org/variant/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.exo.biolink": {"id": "bioregistry.exo.biolink", "sameas": "bioregistry.exo", "homepage": null, "prefix": "ExO", "name": null, "uri_format": "http://purl.obolibrary.org/obo/ExO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.exo": {"id": "bioregistry.exo", "homepage": null, "prefix": "exo", "name": "Exposure ontology (ExO)", "uri_format": "http://purl.obolibrary.org/obo/ExO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.fabio.biolink": {"id": "bioregistry.fabio.biolink", "sameas": "bioregistry.fabio", "homepage": null, "prefix": "fabio", "name": null, "uri_format": "http://purl.org/spar/fabio/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.fabio": {"id": "bioregistry.fabio", "homepage": "https://github.com/sparontologies/fabio", "prefix": "fabio", "name": "FaBiO, the FRBR-aligned Bibliographic Ontology", "uri_format": "http://purl.org/spar/fabio/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.facebase.miriam": {"id": "bioregistry.facebase.miriam", "sameas": "bioregistry.facebase", "homepage": "https://www.facebase.org", "prefix": "facebase", "name": "FaceBase Data Repository", "uri_format": "https://www.facebase.org/data/record/#1/isa:dataset/accession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.facebase.n2t": {"id": "bioregistry.facebase.n2t", "sameas": "bioregistry.facebase", "homepage": "https://www.facebase.org", "prefix": "facebase", "name": "FaceBase Data Repository", "uri_format": "https://www.facebase.org/data/record/#1/isa:dataset/accession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.facebase": {"id": "bioregistry.facebase", "homepage": null, "prefix": "facebase", "name": "FaceBase Data Repository", "uri_format": "https://www.facebase.org/data/record/#1/isa:dataset/accession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.fairsharing.miriam": {"id": "bioregistry.fairsharing.miriam", "sameas": "bioregistry.fairsharing", "homepage": "https://fairsharing.org/", "prefix": "fairsharing", "name": "FAIRsharing", "uri_format": "https://fairsharing.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.fairsharing.n2t": {"id": "bioregistry.fairsharing.n2t", "sameas": "bioregistry.fairsharing", "homepage": "https://fairsharing.org/", "prefix": "fairsharing", "name": "FAIRSharing at University of Oxford", "uri_format": "https://fairsharing.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.fairsharing": {"id": "bioregistry.fairsharing", "homepage": null, "prefix": "fairsharing", "name": "FAIRSharing at University of Oxford", "uri_format": "https://fairsharing.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.faldo.biocontext": {"id": "bioregistry.faldo.biocontext", "sameas": "bioregistry.faldo", "homepage": null, "prefix": "faldo", "name": null, "uri_format": "http://biohackathon.org/resource/faldo#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.faldo": {"id": "bioregistry.faldo", "homepage": "http://biohackathon.org/resource/faldo", "prefix": "faldo", "name": "Feature Annotation Location Description Ontology ", "uri_format": "http://biohackathon.org/resource/faldo#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.fbbt.go": {"id": "bioregistry.fbbt.go", "sameas": "bioregistry.fbbt", "homepage": "http://flybase.org/", "prefix": "FBbt", "name": "Drosophila gross anatomy", "uri_format": "http://flybase.org/cgi-bin/fbcvq.html?query=FBbt:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology", "anatomy and morphology"], "authority": "go"}, "bioregistry.fbbt": {"id": "bioregistry.fbbt", "homepage": null, "prefix": "fbbt", "name": "Drosophila Gross Anatomy Ontology", "uri_format": "http://flybase.org/cgi-bin/fbcvq.html?query=FBbt:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology", "anatomy and morphology"], "authority": "bioregistry"}, "bioregistry.fbol.miriam": {"id": "bioregistry.fbol.miriam", "sameas": "bioregistry.fbol", "homepage": "http://www.fungalbarcoding.org/", "prefix": "fbol", "name": "Fungal Barcode", "uri_format": "http://www.fungalbarcoding.org/BioloMICS.aspx?Table=Fungal barcodes&Rec=$1&Fields=All&ExactMatch=T", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.fbol.n2t": {"id": "bioregistry.fbol.n2t", "sameas": "bioregistry.fbol", "homepage": "http://www.fungalbarcoding.org/", "prefix": "fbol", "name": "Fungal Barcode at Fungal Biodiversity Centre", "uri_format": "http://www.fungalbarcoding.org/BioloMICS.aspx?Table=Fungal barcodes&Rec=$1&Fields=All&ExactMatch=T", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.fbol": {"id": "bioregistry.fbol", "homepage": null, "prefix": "fbol", "name": "International Fungal Working Group Fungal Barcoding.", "uri_format": "http://www.fungalbarcoding.org/BioloMICS.aspx?Table=Fungal barcodes&Rec=$1&Fields=All&ExactMatch=T", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.fcb.miriam": {"id": "bioregistry.fcb.miriam", "sameas": "bioregistry.fcb", "homepage": "https://w3id.org", "prefix": "fcb", "name": "the FAIR Cookbook", "uri_format": "https://w3id.org/faircookbook/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.fcb": {"id": "bioregistry.fcb", "homepage": null, "prefix": "fcb", "name": "the FAIR Cookbook", "uri_format": "https://w3id.org/faircookbook/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.fcsfree.cellosaurus": {"id": "bioregistry.fcsfree.cellosaurus", "sameas": "bioregistry.fcsfree", "homepage": "https://fcs-free.org/", "prefix": "FCS-free", "name": "Fetal Calf Serum-Free Database", "uri_format": "https://fcs-free.org/fcs-database?$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.fcsfree": {"id": "bioregistry.fcsfree", "homepage": "https://fcs-free.org", "prefix": "fcsfree", "name": "Fetal Calf Serum-Free Database", "uri_format": "https://fcs-free.org/fcs-database?$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.fishbase.species.wikidata": {"id": "bioregistry.fishbase.species.wikidata", "sameas": "bioregistry.fishbase.species", "homepage": null, "prefix": "P938", "name": "FishBase species ID", "uri_format": "https://www.fishbase.ca/summary/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.fishbase.species": {"id": "bioregistry.fishbase.species", "homepage": "http://fishbase.org", "prefix": "fishbase.species", "name": "FishBase species ID", "uri_format": "https://www.fishbase.ca/summary/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.flowrepository.miriam": {"id": "bioregistry.flowrepository.miriam", "sameas": "bioregistry.flowrepository", "homepage": "https://flowrepository.org/", "prefix": "flowrepository", "name": "FlowRepository", "uri_format": "https://flowrepository.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.flowrepository.n2t": {"id": "bioregistry.flowrepository.n2t", "sameas": "bioregistry.flowrepository", "homepage": "https://flowrepository.org/", "prefix": "flowrepository", "name": "FlowRepository", "uri_format": "https://flowrepository.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.flowrepository": {"id": "bioregistry.flowrepository", "homepage": null, "prefix": "flowrepository", "name": "FlowRepository", "uri_format": "https://flowrepository.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.flybase.miriam": {"id": "bioregistry.flybase.miriam", "sameas": "bioregistry.flybase", "homepage": "http://flybase.org/", "prefix": "fb", "name": "FlyBase", "uri_format": "http://flybase.org/reports/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.flybase.n2t": {"id": "bioregistry.flybase.n2t", "sameas": "bioregistry.flybase", "homepage": "https://www.alliancegenome.org", "prefix": "fb", "name": "FlyBase through the Alliance of Genome Resources", "uri_format": "https://www.alliancegenome.org/gene/FB:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.flybase.prefixcommons": {"id": "bioregistry.flybase.prefixcommons", "sameas": "bioregistry.flybase", "homepage": "http://flybase.org/", "prefix": "flybase", "name": "Drosophila genome database", "uri_format": "http://flybase.org/reports/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "anatomy and morphology"], "authority": "prefixcommons"}, "bioregistry.flybase.wikidata": {"id": "bioregistry.flybase.wikidata", "sameas": "bioregistry.flybase", "homepage": "http://flybase.org/", "prefix": "P3852", "name": "FlyBase Gene ID", "uri_format": "http://flybase.org/reports/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "anatomy and morphology"], "authority": "wikidata"}, "bioregistry.flybase.go": {"id": "bioregistry.flybase.go", "sameas": "bioregistry.flybase", "homepage": "http://flybase.org/", "prefix": "FB", "name": "FlyBase", "uri_format": "http://flybase.org/reports/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "anatomy and morphology"], "authority": "go"}, "bioregistry.flybase.uniprot": {"id": "bioregistry.flybase.uniprot", "sameas": "bioregistry.flybase", "homepage": "https://flybase.org/", "prefix": "DB-0026", "name": "Drosophila genome database", "uri_format": "https://flybase.org/reports/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "anatomy and morphology"], "authority": "uniprot"}, "bioregistry.flybase.cellosaurus": {"id": "bioregistry.flybase.cellosaurus", "sameas": "bioregistry.flybase", "homepage": "https://flybase.org", "prefix": "FlyBase", "name": "Drosophila genome database", "uri_format": "https://flybase.org/reports/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "anatomy and morphology"], "authority": "cellosaurus"}, "bioregistry.flybase.biocontext": {"id": "bioregistry.flybase.biocontext", "sameas": "bioregistry.flybase", "homepage": null, "prefix": "FlyBase", "name": null, "uri_format": "http://flybase.org/reports/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "anatomy and morphology"], "authority": "biocontext"}, "bioregistry.flybase": {"id": "bioregistry.flybase", "homepage": null, "prefix": "flybase", "name": "Database of Genetic and molecular data of Drosophila.", "uri_format": "https://www.alliancegenome.org/gene/FB:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "anatomy and morphology"], "authority": "bioregistry"}, "bioregistry.flymine.chromosome.prefixcommons": {"id": "bioregistry.flymine.chromosome.prefixcommons", "sameas": "bioregistry.flymine.chromosome", "homepage": "http://www.flymine.org/", "prefix": "flymine", "name": "FlyMine: An integrated database for Drosophila and Anopheles genomics", "uri_format": "http://www.flymine.org/release-25.0/objectDetails.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.flymine.chromosome": {"id": "bioregistry.flymine.chromosome", "homepage": null, "prefix": "flymine.chromosome", "name": "FlyMine: An integrated database for Drosophila and Anopheles genomics", "uri_format": "http://www.flymine.org/release-25.0/objectDetails.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.fma.miriam": {"id": "bioregistry.fma.miriam", "sameas": "bioregistry.fma", "homepage": "http://bioportal.bioontology.org/ontologies/FMA", "prefix": "fma", "name": "FMA", "uri_format": "http://purl.bioontology.org/ontology/FMA_subset/FMA:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.fma.n2t": {"id": "bioregistry.fma.n2t", "sameas": "bioregistry.fma", "homepage": "http://bioportal.bioontology.org/ontologies/FMA", "prefix": "fma", "name": "Foundational Model of Anatomy through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/FMA_subset/FMA:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.fma.wikidata": {"id": "bioregistry.fma.wikidata", "sameas": "bioregistry.fma", "homepage": "http://www.ontobee.org/ontology/fma", "prefix": "P1402", "name": "Foundational Model of Anatomy ID", "uri_format": "http://purl.org/sig/ont/fma/fma$1", "source": "bioregistry.io", "subjects": ["biological sciences", "anatomy and morphology"], "authority": "wikidata"}, "bioregistry.fma": {"id": "bioregistry.fma", "homepage": null, "prefix": "fma", "name": "Foundational Model of Anatomy through BioPortal", "uri_format": "http://purl.org/sig/ont/fma/fma$1", "source": "bioregistry.io", "subjects": ["biological sciences", "anatomy and morphology"], "authority": "bioregistry"}, "bioregistry.foaf.biolink": {"id": "bioregistry.foaf.biolink", "sameas": "bioregistry.foaf", "homepage": null, "prefix": "foaf", "name": null, "uri_format": "http://xmlns.com/foaf/0.1/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.foaf.biocontext": {"id": "bioregistry.foaf.biocontext", "sameas": "bioregistry.foaf", "homepage": null, "prefix": "foaf", "name": null, "uri_format": "http://xmlns.com/foaf/0.1/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.foaf": {"id": "bioregistry.foaf", "homepage": "http://xmlns.com/foaf/spec/", "prefix": "foaf", "name": "FOAF (people, organizations, groups)", "uri_format": "http://xmlns.com/foaf/0.1/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.foodb.compound.miriam": {"id": "bioregistry.foodb.compound.miriam", "sameas": "bioregistry.foodb.compound", "homepage": "http://foodb.ca/foods", "prefix": "foodb.compound", "name": "FooDB Compound", "uri_format": "http://foodb.ca/compounds/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.foodb.compound.n2t": {"id": "bioregistry.foodb.compound.n2t", "sameas": "bioregistry.foodb.compound", "homepage": "http://foodb.ca/foods", "prefix": "foodb.compound", "name": "FooDB database of food additives at University of Alberta", "uri_format": "http://foodb.ca/compounds/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.foodb.compound.wikidata": {"id": "bioregistry.foodb.compound.wikidata", "sameas": "bioregistry.foodb.compound", "homepage": null, "prefix": "P8117", "name": "FooDB compound ID", "uri_format": "https://foodb.ca/compounds/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.foodb.compound.biolink": {"id": "bioregistry.foodb.compound.biolink", "sameas": "bioregistry.foodb.compound", "homepage": null, "prefix": "foodb.compound", "name": null, "uri_format": "http://foodb.ca/foods/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.foodb.compound": {"id": "bioregistry.foodb.compound", "homepage": "https://foodb.ca/", "prefix": "foodb.compound", "name": "FooDB database of food additives at University of Alberta", "uri_format": "https://foodb.ca/compounds/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.foodb.food.biolink": {"id": "bioregistry.foodb.food.biolink", "sameas": "bioregistry.foodb.food", "homepage": null, "prefix": "foodb.food", "name": null, "uri_format": "http://foodb.ca/compounds/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.foodb.food": {"id": "bioregistry.foodb.food", "homepage": "https://foodb.ca/foods", "prefix": "foodb.food", "name": "FooDB Food", "uri_format": "http://foodb.ca/compounds/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.foodon.miriam": {"id": "bioregistry.foodon.miriam", "sameas": "bioregistry.foodon", "homepage": "https://foodon.org", "prefix": "foodon", "name": "FoodOn Food Ontology", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/foodon/terms?obo_id=FOODON:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.foodon.n2t": {"id": "bioregistry.foodon.n2t", "sameas": "bioregistry.foodon", "homepage": "https://foodon.org", "prefix": "foodon", "name": "FoodOn Food Ontology through OLS", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/foodon/terms?obo_id=FOODON:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.foodon": {"id": "bioregistry.foodon", "homepage": null, "prefix": "foodon", "name": "FoodOn Food Ontology through OLS", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/foodon/terms?obo_id=FOODON:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.fossilworks.journal.wikidata": {"id": "bioregistry.fossilworks.journal.wikidata", "sameas": "bioregistry.fossilworks.journal", "homepage": "http://www.fossilworks.org", "prefix": "P7720", "name": "Fossilworks ID for this journal article", "uri_format": "http://www.fossilworks.org/cgi-bin/bridge.pl?a=displayReference&reference_no=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.fossilworks.journal": {"id": "bioregistry.fossilworks.journal", "homepage": "http://fossilworks.org", "prefix": "fossilworks.journal", "name": "Fossilworks ID for this journal article", "uri_format": "http://www.fossilworks.org/cgi-bin/bridge.pl?a=displayReference&reference_no=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.fossilworks.taxon.wikidata": {"id": "bioregistry.fossilworks.taxon.wikidata", "sameas": "bioregistry.fossilworks.taxon", "homepage": "http://www.fossilworks.org", "prefix": "P842", "name": "Fossilworks taxon ID", "uri_format": "http://www.fossilworks.org/cgi-bin/bridge.pl?a=taxonInfo&taxon_no=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.fossilworks.taxon": {"id": "bioregistry.fossilworks.taxon", "homepage": "http://www.fossilworks.org", "prefix": "fossilworks.taxon", "name": "Fossilworks taxon ID", "uri_format": "http://www.fossilworks.org/cgi-bin/bridge.pl?a=taxonInfo&taxon_no=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.fplx.miriam": {"id": "bioregistry.fplx.miriam", "sameas": "bioregistry.fplx", "homepage": "https://sorgerlab.github.io/famplex", "prefix": "fplx", "name": "FamPlex", "uri_format": "https://sorgerlab.github.io/famplex/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.fplx.n2t": {"id": "bioregistry.fplx.n2t", "sameas": "bioregistry.fplx", "homepage": "http://bioportal.bioontology.org/ontologies/FPLX/", "prefix": "fplx", "name": "FPLX through BioPortal", "uri_format": "http://bioportal.bioontology.org/ontologies/FPLX/?p=classes&conceptid=http%3A%2F%2Fpurl.obolibrary.org%2Fobo%2FFPLX%23_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.fplx": {"id": "bioregistry.fplx", "homepage": "https://sorgerlab.github.io/famplex/", "prefix": "fplx", "name": "FPLX through BioPortal", "uri_format": "https://sorgerlab.github.io/famplex/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.fsnp.miriam": {"id": "bioregistry.fsnp.miriam", "sameas": "bioregistry.fsnp", "homepage": "http://compbio.cs.queensu.ca/F-SNP/", "prefix": "fsnp", "name": "F-SNP", "uri_format": "http://compbio.cs.queensu.ca/cgi-bin/compbio/search/main.cgi?search_mode=id&id_type=snp_id&id_val=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.fsnp.n2t": {"id": "bioregistry.fsnp.n2t", "sameas": "bioregistry.fsnp", "homepage": "http://compbio.cs.queensu.ca/F-SNP/", "prefix": "fsnp", "name": "F-SNP at Queen's University (Canada)", "uri_format": "http://compbio.cs.queensu.ca/cgi-bin/compbio/search/main.cgi?search_mode=id&id_type=snp_id&id_val=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.fsnp": {"id": "bioregistry.fsnp", "homepage": null, "prefix": "fsnp", "name": "F-SNP: a collection of functional SNPs, specifically prioritized for disease association studies", "uri_format": "http://compbio.cs.queensu.ca/cgi-bin/compbio/search/main.cgi?search_mode=id&id_type=snp_id&id_val=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.funcbase.fly.miriam": {"id": "bioregistry.funcbase.fly.miriam", "sameas": "bioregistry.funcbase.fly", "homepage": "http://func.mshri.on.ca/fly", "prefix": "funcbase.fly", "name": "FuncBase Fly", "uri_format": "http://func.mshri.on.ca/fly/genes/list_functional_scores/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.funcbase.fly.n2t": {"id": "bioregistry.funcbase.fly.n2t", "sameas": "bioregistry.funcbase.fly", "homepage": "http://func.mshri.on.ca/fly", "prefix": "funcbase.fly", "name": "FuncBase Fly at Harvard Medical School", "uri_format": "http://func.mshri.on.ca/fly/genes/list_functional_scores/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.funcbase.fly": {"id": "bioregistry.funcbase.fly", "homepage": null, "prefix": "funcbase.fly", "name": "FuncBase Fly at Harvard Medical School", "uri_format": "http://func.mshri.on.ca/fly/genes/list_functional_scores/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.funcbase.human.miriam": {"id": "bioregistry.funcbase.human.miriam", "sameas": "bioregistry.funcbase.human", "homepage": "http://func.mshri.on.ca/human/", "prefix": "funcbase.human", "name": "FuncBase Human", "uri_format": "http://func.mshri.on.ca/human/genes/list_functional_scores/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.funcbase.human.n2t": {"id": "bioregistry.funcbase.human.n2t", "sameas": "bioregistry.funcbase.human", "homepage": "http://func.mshri.on.ca/human/", "prefix": "funcbase.human", "name": "FuncBase Human at Harvard Medical School", "uri_format": "http://func.mshri.on.ca/human/genes/list_functional_scores/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.funcbase.human": {"id": "bioregistry.funcbase.human", "homepage": null, "prefix": "funcbase.human", "name": "FuncBase Human at Harvard Medical School", "uri_format": "http://func.mshri.on.ca/human/genes/list_functional_scores/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.funcbase.mouse.miriam": {"id": "bioregistry.funcbase.mouse.miriam", "sameas": "bioregistry.funcbase.mouse", "homepage": "http://func.mshri.on.ca/mouse/", "prefix": "funcbase.mouse", "name": "FuncBase Mouse", "uri_format": "http://func.mshri.on.ca/mouse/genes/list_functional_scores/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.funcbase.mouse.n2t": {"id": "bioregistry.funcbase.mouse.n2t", "sameas": "bioregistry.funcbase.mouse", "homepage": "http://func.mshri.on.ca/mouse/", "prefix": "funcbase.mouse", "name": "FuncBase Mouse at Harvard Medical School", "uri_format": "http://func.mshri.on.ca/mouse/genes/list_functional_scores/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.funcbase.mouse": {"id": "bioregistry.funcbase.mouse", "homepage": null, "prefix": "funcbase.mouse", "name": "FuncBase Mouse at Harvard Medical School", "uri_format": "http://func.mshri.on.ca/mouse/genes/list_functional_scores/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.funcbase.yeast.miriam": {"id": "bioregistry.funcbase.yeast.miriam", "sameas": "bioregistry.funcbase.yeast", "homepage": "http://func.mshri.on.ca/yeast", "prefix": "funcbase.yeast", "name": "FuncBase Yeast", "uri_format": "http://func.mshri.on.ca/yeast/genes/list_functional_scores/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.funcbase.yeast.n2t": {"id": "bioregistry.funcbase.yeast.n2t", "sameas": "bioregistry.funcbase.yeast", "homepage": "http://func.mshri.on.ca/yeast", "prefix": "funcbase.yeast", "name": "FuncBase Yeast at Harvard Medical School", "uri_format": "http://func.mshri.on.ca/yeast/genes/list_functional_scores/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.funcbase.yeast": {"id": "bioregistry.funcbase.yeast", "homepage": null, "prefix": "funcbase.yeast", "name": "FuncBase Yeast at Harvard Medical School", "uri_format": "http://func.mshri.on.ca/yeast/genes/list_functional_scores/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.funderregistry.miriam": {"id": "bioregistry.funderregistry.miriam", "sameas": "bioregistry.funderregistry", "homepage": "https://www.crossref.org/", "prefix": "funderregistry", "name": "FunderRegistry", "uri_format": "http://data.crossref.org/fundingdata/funder/10.13039/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.funderregistry": {"id": "bioregistry.funderregistry", "homepage": null, "prefix": "funderregistry", "name": "FunderRegistry", "uri_format": "http://data.crossref.org/fundingdata/funder/10.13039/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.fungidb.miriam": {"id": "bioregistry.fungidb.miriam", "sameas": "bioregistry.fungidb", "homepage": "https://fungidb.org/fungidb", "prefix": "fungidb", "name": "FungiDB", "uri_format": "https://fungidb.org/fungidb/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.fungidb.n2t": {"id": "bioregistry.fungidb.n2t", "sameas": "bioregistry.fungidb", "homepage": "https://fungidb.org/fungidb", "prefix": "fungidb", "name": "FungiDB at University of California", "uri_format": "https://fungidb.org/fungidb/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.fungidb": {"id": "bioregistry.fungidb", "homepage": null, "prefix": "fungidb", "name": "Fungal and Oomycete genomics resource", "uri_format": "https://fungidb.org/fungidb/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.fungorum.wikidata": {"id": "bioregistry.fungorum.wikidata", "sameas": "bioregistry.fungorum", "homepage": null, "prefix": "P1391", "name": "Index Fungorum ID", "uri_format": "http://www.indexfungorum.org/names/NamesRecord.asp?RecordID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.fungorum": {"id": "bioregistry.fungorum", "homepage": "http://www.indexfungorum.org", "prefix": "fungorum", "name": "Index Fungorum ID", "uri_format": "http://www.indexfungorum.org/names/NamesRecord.asp?RecordID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.fyeco.biolink": {"id": "bioregistry.fyeco.biolink", "sameas": "bioregistry.fyeco", "homepage": null, "prefix": "FYECO", "name": null, "uri_format": "https://www.pombase.org/term/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.fyeco": {"id": "bioregistry.fyeco", "homepage": "https://github.com/pombase/fypo", "prefix": "fyeco", "name": "Fission Yeast Experimental Conditions Ontology", "uri_format": "https://www.pombase.org/term/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.fypo.biolink": {"id": "bioregistry.fypo.biolink", "sameas": "bioregistry.fypo", "homepage": null, "prefix": "FYPO", "name": null, "uri_format": "http://purl.obolibrary.org/obo/FYPO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.fypo": {"id": "bioregistry.fypo", "homepage": null, "prefix": "fypo", "name": "Fission Yeast Phenotype Ontology (FYPO)", "uri_format": "http://purl.obolibrary.org/obo/FYPO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ga4ghdos.miriam": {"id": "bioregistry.ga4ghdos.miriam", "sameas": "bioregistry.ga4ghdos", "homepage": "http://github.com/ga4gh/data-object-service-schemas", "prefix": "ga4ghdos", "name": "Data Object Service", "uri_format": "https://dataguids.org/ga4gh/dos/v1/dataobjects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ga4ghdos.n2t": {"id": "bioregistry.ga4ghdos.n2t", "sameas": "bioregistry.ga4ghdos", "homepage": "http://github.com/ga4gh/data-object-service-schemas", "prefix": "ga4ghdos", "name": "Data Object Service", "uri_format": "https://dataguids.org/ga4gh/dos/v1/dataobjects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ga4ghdos": {"id": "bioregistry.ga4ghdos", "homepage": null, "prefix": "ga4ghdos", "name": "Data Object Service", "uri_format": "https://dataguids.org/ga4gh/dos/v1/dataobjects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gabi.miriam": {"id": "bioregistry.gabi.miriam", "sameas": "bioregistry.gabi", "homepage": "http://www.gabipd.org/", "prefix": "gabi", "name": "GABI", "uri_format": "http://www.gabipd.org/database/cgi-bin/GreenCards.pl.cgi?BioObjectId=$1&Mode=ShowBioObject", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gabi.n2t": {"id": "bioregistry.gabi.n2t", "sameas": "bioregistry.gabi", "homepage": "http://www.gabipd.org/", "prefix": "gabi", "name": "GABI at Max Planck", "uri_format": "http://www.gabipd.org/database/cgi-bin/GreenCards.pl.cgi?BioObjectId=$1&Mode=ShowBioObject", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gabi.prefixcommons": {"id": "bioregistry.gabi.prefixcommons", "sameas": "bioregistry.gabi", "homepage": "http://www.gabi.de/", "prefix": "gabi", "name": "Network of Different Plant Genomic Research Projects", "uri_format": "http://gabi.rzpd.de/database/cgi-bin/GreenCards.pl.cgi?BioObjectId=$1&Mode=ShowBioObject", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "botany"], "authority": "prefixcommons"}, "bioregistry.gabi": {"id": "bioregistry.gabi", "homepage": null, "prefix": "gabi", "name": "Network of Different Plant Genomic Research Projects", "uri_format": "http://www.gabipd.org/database/cgi-bin/GreenCards.pl.cgi?BioObjectId=$1&Mode=ShowBioObject", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "botany"], "authority": "bioregistry"}, "bioregistry.gard.wikidata": {"id": "bioregistry.gard.wikidata", "sameas": "bioregistry.gard", "homepage": "https://rarediseases.info.nih.gov/diseases/", "prefix": "P4317", "name": "GARD rare disease ID", "uri_format": "https://rarediseases.info.nih.gov/diseases/$1/index", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.gard": {"id": "bioregistry.gard", "homepage": "https://rarediseases.info.nih.gov/diseases", "prefix": "gard", "name": "Genetic and Rare Diseases Information Center", "uri_format": "https://rarediseases.info.nih.gov/diseases/$1/index", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gateway.miriam": {"id": "bioregistry.gateway.miriam", "sameas": "bioregistry.gateway", "homepage": "https://www.hdruk.ac.uk", "prefix": "gateway", "name": "gateway", "uri_format": "https://web.www.healthdatagateway.org/dataset/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gateway": {"id": "bioregistry.gateway", "homepage": null, "prefix": "gateway", "name": "Health Data Research Innovation Gateway", "uri_format": "https://web.www.healthdatagateway.org/dataset/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gaz.wikidata": {"id": "bioregistry.gaz.wikidata", "sameas": "bioregistry.gaz", "homepage": "http://obofoundry.org/ontology/gaz", "prefix": "P6778", "name": "OBO Gazetteer ID", "uri_format": "http://purl.obolibrary.org/obo/GAZ_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.gaz": {"id": "bioregistry.gaz", "homepage": null, "prefix": "gaz", "name": "OBO Gazetteer ID", "uri_format": "http://purl.obolibrary.org/obo/GAZ_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gbif.wikidata": {"id": "bioregistry.gbif.wikidata", "sameas": "bioregistry.gbif", "homepage": null, "prefix": "P846", "name": "GBIF taxon ID", "uri_format": "https://www.gbif.org/species/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.gbif": {"id": "bioregistry.gbif", "homepage": "https://www.gbif.org/species", "prefix": "gbif", "name": "Global Biodiversity Information Facility", "uri_format": "https://www.gbif.org/species/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gcst.miriam": {"id": "bioregistry.gcst.miriam", "sameas": "bioregistry.gcst", "homepage": "https://www.ebi.ac.uk", "prefix": "gcst", "name": "GWAS Catalog", "uri_format": "https://www.ebi.ac.uk/gwas/studies/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gcst.n2t": {"id": "bioregistry.gcst.n2t", "sameas": "bioregistry.gcst", "homepage": "https://www.ebi.ac.uk/gwas/studies", "prefix": "gcst", "name": "GWAS Catalog", "uri_format": "https://www.ebi.ac.uk/gwas/studies/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gcst": {"id": "bioregistry.gcst", "homepage": null, "prefix": "gcst", "name": "GWAS Catalog", "uri_format": "https://www.ebi.ac.uk/gwas/studies/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gdc.miriam": {"id": "bioregistry.gdc.miriam", "sameas": "bioregistry.gdc", "homepage": "https://gdc.cancer.gov", "prefix": "gdc", "name": "Genomic Data Commons Data Portal", "uri_format": "https://portal.gdc.cancer.gov/cases/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gdc.n2t": {"id": "bioregistry.gdc.n2t", "sameas": "bioregistry.gdc", "homepage": "https://gdc.cancer.gov", "prefix": "gdc", "name": "Genomic Data Commons", "uri_format": "https://portal.gdc.cancer.gov/cases/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gdc": {"id": "bioregistry.gdc", "homepage": null, "prefix": "gdc", "name": "Genomic Data Commons Data Portal", "uri_format": "https://portal.gdc.cancer.gov/cases/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gdsc.miriam": {"id": "bioregistry.gdsc.miriam", "sameas": "bioregistry.gdsc", "homepage": "https://www.cancerrxgene.org", "prefix": "gdsc", "name": "Genomics of Drug Sensitivity in Cancer", "uri_format": "https://www.cancerrxgene.org/translation/Drug/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gdsc.n2t": {"id": "bioregistry.gdsc.n2t", "sameas": "bioregistry.gdsc", "homepage": "https://www.cancerrxgene.org", "prefix": "gdsc", "name": "Genomics of Drug Sensitivity in Cancer", "uri_format": "https://www.cancerrxgene.org/translation/Drug/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gdsc.cellosaurus": {"id": "bioregistry.gdsc.cellosaurus", "sameas": "bioregistry.gdsc", "homepage": "https://www.cancerrxgene.org", "prefix": "GDSC", "name": "Genomics of Drug Sensitivity in Cancer Project", "uri_format": "https://www.cancerrxgene.org/translation/CellLine/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.gdsc": {"id": "bioregistry.gdsc", "homepage": null, "prefix": "gdsc", "name": "Genomics of Drug Sensitivity in Cancer Project", "uri_format": "https://www.cancerrxgene.org/translation/Drug/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.genatlas.miriam": {"id": "bioregistry.genatlas.miriam", "sameas": "bioregistry.genatlas", "homepage": "http://genatlas.medecine.univ-paris5.fr/", "prefix": "genatlas", "name": "Genatlas", "uri_format": "http://genatlas.medecine.univ-paris5.fr/fiche.php?symbol=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.genatlas.n2t": {"id": "bioregistry.genatlas.n2t", "sameas": "bioregistry.genatlas", "homepage": "http://genatlas.medecine.univ-paris5.fr/", "prefix": "genatlas", "name": "Genatlas at Paris Descartes University", "uri_format": "http://genatlas.medecine.univ-paris5.fr/fiche.php?symbol=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.genatlas.prefixcommons": {"id": "bioregistry.genatlas.prefixcommons", "sameas": "bioregistry.genatlas", "homepage": "http://www.genatlas.org/", "prefix": "genatlas", "name": "GenAtlas: human gene database", "uri_format": "http://genatlas.medecine.univ-paris5.fr/fiche.php?symbol=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.genatlas.uniprot": {"id": "bioregistry.genatlas.uniprot", "sameas": "bioregistry.genatlas", "homepage": "http://genatlas.medecine.univ-paris5.fr/", "prefix": "DB-0027", "name": "GenAtlas", "uri_format": "http://genatlas.medecine.univ-paris5.fr/fiche.php?symbol=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.genatlas": {"id": "bioregistry.genatlas", "homepage": null, "prefix": "genatlas", "name": "Genatlas at Paris Descartes University", "uri_format": "http://genatlas.medecine.univ-paris5.fr/fiche.php?symbol=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.genbank.prefixcommons": {"id": "bioregistry.genbank.prefixcommons", "sameas": "bioregistry.genbank", "homepage": "http://www.ncbi.nlm.nih.gov/genbank/", "prefix": "genbank", "name": "GenBank", "uri_format": "http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.genbank.uniprot": {"id": "bioregistry.genbank.uniprot", "sameas": "bioregistry.genbank", "homepage": "https://www.ncbi.nlm.nih.gov/", "prefix": "DB-0028", "name": "GenBank nucleotide sequence database", "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.genbank.biocontext": {"id": "bioregistry.genbank.biocontext", "sameas": "bioregistry.genbank", "homepage": null, "prefix": "GenBank", "name": null, "uri_format": "http://www.ncbi.nlm.nih.gov/nuccore/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "biocontext"}, "bioregistry.genbank": {"id": "bioregistry.genbank", "homepage": "https://www.ncbi.nlm.nih.gov/genbank/", "prefix": "genbank", "name": "GenBank nucleotide sequence database", "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.gendis.prefixcommons": {"id": "bioregistry.gendis.prefixcommons", "sameas": "bioregistry.gendis", "homepage": "http://caps.ncbs.res.in/gendis/home.html", "prefix": "gendis", "name": "Genomic Distribution of structural Superfamilies", "uri_format": "http://caps.ncbs.res.in/cgi-bin/mini/databases/gendis/sf.cgi?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.gendis": {"id": "bioregistry.gendis", "homepage": null, "prefix": "gendis", "name": "Genomic Distribution of structural Superfamilies", "uri_format": "http://caps.ncbs.res.in/cgi-bin/mini/databases/gendis/sf.cgi?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.genecards.miriam": {"id": "bioregistry.genecards.miriam", "sameas": "bioregistry.genecards", "homepage": "http://www.genecards.org/", "prefix": "genecards", "name": "GeneCards", "uri_format": "https://www.genecards.org/cgi-bin/carddisp.pl?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.genecards.n2t": {"id": "bioregistry.genecards.n2t", "sameas": "bioregistry.genecards", "homepage": "http://www.genecards.org/", "prefix": "genecards", "name": "GeneCards at Weizmann Institute", "uri_format": "https://www.genecards.org/cgi-bin/carddisp.pl?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.genecards.prefixcommons": {"id": "bioregistry.genecards.prefixcommons", "sameas": "bioregistry.genecards", "homepage": "http://bioinfo.weizmann.ac.il/genecards/", "prefix": "genecards", "name": "GeneCards: human genes, protein and diseases", "uri_format": "http://www.genecards.org/cgi-bin/carddisp.pl?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.genecards.uniprot": {"id": "bioregistry.genecards.uniprot", "sameas": "bioregistry.genecards", "homepage": "https://www.genecards.org/", "prefix": "DB-0030", "name": "GeneCards", "uri_format": "https://www.genecards.org/cgi-bin/carddisp.pl?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.genecards": {"id": "bioregistry.genecards", "homepage": null, "prefix": "genecards", "name": "GeneCards: human genes, protein and diseases", "uri_format": "https://www.genecards.org/cgi-bin/carddisp.pl?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.genecards.geneloc.prefixcommons": {"id": "bioregistry.genecards.geneloc.prefixcommons", "sameas": "bioregistry.genecards.geneloc", "homepage": "http://genecards.weizmann.ac.il/geneloc/", "prefix": "geneloc", "name": "Gene Location", "uri_format": "http://genecards.weizmann.ac.il/geneloc-bin/marker_cards.pl?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.genecards.geneloc": {"id": "bioregistry.genecards.geneloc", "homepage": null, "prefix": "genecards.geneloc", "name": "Gene Location", "uri_format": "http://genecards.weizmann.ac.il/geneloc-bin/marker_cards.pl?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.genecards.genenote.prefixcommons": {"id": "bioregistry.genecards.genenote.prefixcommons", "sameas": "bioregistry.genecards.genenote", "homepage": "http://genecards.weizmann.ac.il/genenote/", "prefix": "genenote", "name": "Gene Normal Tissue Expression", "uri_format": "http://bioinfo2.weizmann.ac.il/cgi-bin/genenote/GN_results.pl?keyword_type=2_gc_id&keyword=$1&data_type=norm2&results=yes", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.genecards.genenote": {"id": "bioregistry.genecards.genenote", "homepage": null, "prefix": "genecards.genenote", "name": "Gene Normal Tissue Expression", "uri_format": "http://bioinfo2.weizmann.ac.il/cgi-bin/genenote/GN_results.pl?keyword_type=2_gc_id&keyword=$1&data_type=norm2&results=yes", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.genedb.miriam": {"id": "bioregistry.genedb.miriam", "sameas": "bioregistry.genedb", "homepage": "https://www.genedb.org/", "prefix": "genedb", "name": "GeneDB", "uri_format": "https://www.genedb.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.genedb.n2t": {"id": "bioregistry.genedb.n2t", "sameas": "bioregistry.genedb", "homepage": "https://www.genedb.org/", "prefix": "genedb", "name": "GeneDB at Sanger Institute", "uri_format": "https://www.genedb.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.genedb.prefixcommons": {"id": "bioregistry.genedb.prefixcommons", "sameas": "bioregistry.genedb", "homepage": "http://www.genedb.org/", "prefix": "genedb", "name": "GeneDB", "uri_format": "http://www.genedb.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.genedb.wikidata": {"id": "bioregistry.genedb.wikidata", "sameas": "bioregistry.genedb", "homepage": "http://www.genedb.org/", "prefix": "P3382", "name": "GeneDB ID", "uri_format": "https://web.archive.org/web/*/https://www.genedb.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "wikidata"}, "bioregistry.genedb.go": {"id": "bioregistry.genedb.go", "sameas": "bioregistry.genedb", "homepage": "http://www.genedb.org/gene/", "prefix": "GeneDB", "name": "GeneDB", "uri_format": "http://www.genedb.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.genedb": {"id": "bioregistry.genedb", "homepage": null, "prefix": "genedb", "name": "Curated gene database for Leishmania major and Trypanosoma brucei", "uri_format": "https://www.genedb.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.genefarm.miriam": {"id": "bioregistry.genefarm.miriam", "sameas": "bioregistry.genefarm", "homepage": "http://urgi.versailles.inra.fr/Genefarm/", "prefix": "genefarm", "name": "GeneFarm", "uri_format": "https://urgi.versailles.inra.fr/Genefarm/Gene/display_gene.htpl?GENE_ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.genefarm.n2t": {"id": "bioregistry.genefarm.n2t", "sameas": "bioregistry.genefarm", "homepage": "http://urgi.versailles.inra.fr/Genefarm/", "prefix": "genefarm", "name": "GeneFarm at Unité de Recherche en Génomique Végétale", "uri_format": "https://urgi.versailles.inra.fr/Genefarm/Gene/display_gene.htpl?GENE_ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.genefarm.prefixcommons": {"id": "bioregistry.genefarm.prefixcommons", "sameas": "bioregistry.genefarm", "homepage": "http://urgi.versailles.inra.fr/Genefarm/index.htpl", "prefix": "genefarm", "name": "Structural and functional annotation of Arabidopsis thaliana gene and protein families.", "uri_format": "http://urgi.versailles.inra.fr/Genefarm/Gene/display_gene.htpl?GENE_ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "molecular biology"], "authority": "prefixcommons"}, "bioregistry.genefarm": {"id": "bioregistry.genefarm", "homepage": null, "prefix": "genefarm", "name": "Structural and functional annotation of Arabidopsis thaliana gene and protein families.", "uri_format": "https://urgi.versailles.inra.fr/Genefarm/Gene/display_gene.htpl?GENE_ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "molecular biology"], "authority": "bioregistry"}, "bioregistry.genetree.miriam": {"id": "bioregistry.genetree.miriam", "sameas": "bioregistry.genetree", "homepage": "http://www.ensembl.org/", "prefix": "genetree", "name": "GeneTree", "uri_format": "http://www.ensembl.org/Multi/GeneTree/Image?db=core;gt=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.genetree.n2t": {"id": "bioregistry.genetree.n2t", "sameas": "bioregistry.genetree", "homepage": "http://www.ensembl.org/", "prefix": "genetree", "name": "GeneTree at Ensembl", "uri_format": "http://www.ensembl.org/Multi/GeneTree/Image?db=core;gt=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.genetree.prefixcommons": {"id": "bioregistry.genetree.prefixcommons", "sameas": "bioregistry.genetree", "homepage": null, "prefix": "genetree", "name": "Ensembl GeneTree", "uri_format": "http://www.ensembl.org/Multi/GeneTree/Image?db=core;gt=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.genetree.uniprot": {"id": "bioregistry.genetree.uniprot", "sameas": "bioregistry.genetree", "homepage": "https://ensemblgenomes.org", "prefix": "DB-0162", "name": "Ensembl GeneTree", "uri_format": "https://www.ensemblgenomes.org/id-genetree/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "uniprot"}, "bioregistry.genetree": {"id": "bioregistry.genetree", "homepage": null, "prefix": "genetree", "name": "GeneTree at Ensembl", "uri_format": "https://www.ensemblgenomes.org/id-genetree/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.genewiki.miriam": {"id": "bioregistry.genewiki.miriam", "sameas": "bioregistry.genewiki", "homepage": "http://en.wikipedia.org/wiki/Gene_Wiki", "prefix": "genewiki", "name": "Gene Wiki", "uri_format": "http://plugins.biogps.org/cgi-bin/wp.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.genewiki.n2t": {"id": "bioregistry.genewiki.n2t", "sameas": "bioregistry.genewiki", "homepage": "http://en.wikipedia.org/wiki/Gene_Wiki", "prefix": "genewiki", "name": "Gene Wiki through BioGPS", "uri_format": "http://plugins.biogps.org/cgi-bin/wp.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.genewiki.uniprot": {"id": "bioregistry.genewiki.uniprot", "sameas": "bioregistry.genewiki", "homepage": "https://en.wikipedia.org/wiki/Portal:Gene_Wiki", "prefix": "DB-0180", "name": "The Gene Wiki collection of pages on human genes and proteins", "uri_format": "https://en.wikipedia.org/wiki/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.genewiki": {"id": "bioregistry.genewiki", "homepage": null, "prefix": "genewiki", "name": "The Gene Wiki collection of pages on human genes and proteins", "uri_format": "https://en.wikipedia.org/wiki/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.genpept.miriam": {"id": "bioregistry.genpept.miriam", "sameas": "bioregistry.genpept", "homepage": "https://www.ncbi.nlm.nih.gov/protein", "prefix": "genpept", "name": "GenPept", "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1?report=genpept", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.genpept.n2t": {"id": "bioregistry.genpept.n2t", "sameas": "bioregistry.genpept", "homepage": "https://www.ncbi.nlm.nih.gov/protein", "prefix": "genpept", "name": "GenPept at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1?report=genpept", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.genpept": {"id": "bioregistry.genpept", "homepage": null, "prefix": "genpept", "name": "GenPept at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1?report=genpept", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.genprop.miriam": {"id": "bioregistry.genprop.miriam", "sameas": "bioregistry.genprop", "homepage": "https://www.ebi.ac.uk/interpro/genomeproperties/", "prefix": "genprop", "name": "Genome Properties", "uri_format": "https://www.ebi.ac.uk/interpro/genomeproperties/#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.genprop.n2t": {"id": "bioregistry.genprop.n2t", "sameas": "bioregistry.genprop", "homepage": "https://www.ebi.ac.uk/interpro/genomeproperties/", "prefix": "genprop", "name": "Genome Properties", "uri_format": "https://www.ebi.ac.uk/interpro/genomeproperties/#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.genprop.prefixcommons": {"id": "bioregistry.genprop.prefixcommons", "sameas": "bioregistry.genprop", "homepage": "http://cmr.jcvi.org/tigr-scripts/CMR/shared/GenomePropertiesHomePage.cgi", "prefix": "jcvi.genprop", "name": "Genome Properties database at the J. Craig Venter Institute", "uri_format": "http://cmr.jcvi.org/tigr-scripts/CMR/shared/GenomePropDefinition.cgi?prop_acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.genprop": {"id": "bioregistry.genprop", "homepage": null, "prefix": "genprop", "name": "Genome Properties database at the J. Craig Venter Institute", "uri_format": "https://www.ebi.ac.uk/interpro/genomeproperties/#$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.geo.miriam": {"id": "bioregistry.geo.miriam", "sameas": "bioregistry.geo", "homepage": "https://www.ncbi.nlm.nih.gov/geo/", "prefix": "geo", "name": "GEO", "uri_format": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.geo.n2t": {"id": "bioregistry.geo.n2t", "sameas": "bioregistry.geo", "homepage": "https://www.ncbi.nlm.nih.gov/geo/", "prefix": "geo", "name": "Gene Expression Omnibus at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.geo.prefixcommons": {"id": "bioregistry.geo.prefixcommons", "sameas": "bioregistry.geo", "homepage": "http://www.ncbi.nlm.nih.gov/geo/", "prefix": "geo", "name": "Gene Expression Omnibus", "uri_format": "http://www.ncbi.nlm.nih.gov/sites/GDSbrowser?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.geo.go": {"id": "bioregistry.geo.go", "sameas": "bioregistry.geo", "homepage": "http://www.ncbi.nlm.nih.gov/geo/", "prefix": "GEO", "name": "NCBI Gene Expression Omnibus", "uri_format": "http://www.ncbi.nlm.nih.gov/sites/GDSbrowser?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.geo.cellosaurus": {"id": "bioregistry.geo.cellosaurus", "sameas": "bioregistry.geo", "homepage": "https://www.ncbi.nlm.nih.gov/geo/", "prefix": "GEO", "name": "Gene Expression Omnibus", "uri_format": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "cellosaurus"}, "bioregistry.geo": {"id": "bioregistry.geo", "homepage": null, "prefix": "geo", "name": "Gene Expression Omnibus at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.geogeo.miriam": {"id": "bioregistry.geogeo.miriam", "sameas": "bioregistry.geogeo", "homepage": "https://github.com/ufbmi", "prefix": "geogeo", "name": "Geographical Entity Ontology", "uri_format": "http://purl.obolibrary.org/obo/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.geogeo": {"id": "bioregistry.geogeo", "homepage": null, "prefix": "geogeo", "name": "Geographical Entity Ontology", "uri_format": "http://purl.obolibrary.org/obo/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.giardiadb.miriam": {"id": "bioregistry.giardiadb.miriam", "sameas": "bioregistry.giardiadb", "homepage": "https://giardiadb.org/giardiadb/", "prefix": "giardiadb", "name": "GiardiaDB", "uri_format": "https://giardiadb.org/giardiadb/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.giardiadb.n2t": {"id": "bioregistry.giardiadb.n2t", "sameas": "bioregistry.giardiadb", "homepage": "https://giardiadb.org/giardiadb/", "prefix": "giardiadb", "name": "GiardiaDB at EuPathDB", "uri_format": "https://giardiadb.org/giardiadb/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.giardiadb.prefixcommons": {"id": "bioregistry.giardiadb.prefixcommons", "sameas": "bioregistry.giardiadb", "homepage": "http://giardiadb.org", "prefix": "giardiadb", "name": "GiardiaDB", "uri_format": "http://giardiadb.org/giardiadb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&primary_key=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics"], "authority": "prefixcommons"}, "bioregistry.giardiadb": {"id": "bioregistry.giardiadb", "homepage": null, "prefix": "giardiadb", "name": "GiardiaDB at EuPathDB", "uri_format": "https://giardiadb.org/giardiadb/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics"], "authority": "bioregistry"}, "bioregistry.github.miriam": {"id": "bioregistry.github.miriam", "sameas": "bioregistry.github", "homepage": "https://github.com/", "prefix": "github", "name": "github", "uri_format": "https://github.com/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.github": {"id": "bioregistry.github", "homepage": null, "prefix": "github", "name": "github", "uri_format": "https://github.com/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gitlab.miriam": {"id": "bioregistry.gitlab.miriam", "sameas": "bioregistry.gitlab", "homepage": "https://gitlab.com/", "prefix": "gitlab", "name": "GitLab", "uri_format": "https://gitlab.com/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gitlab": {"id": "bioregistry.gitlab", "homepage": null, "prefix": "gitlab", "name": "GitLab", "uri_format": "https://gitlab.com/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.glida.gpcr.miriam": {"id": "bioregistry.glida.gpcr.miriam", "sameas": "bioregistry.glida.gpcr", "homepage": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/", "prefix": "glida.gpcr", "name": "GLIDA GPCR", "uri_format": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/gpcr_information.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.glida.gpcr.n2t": {"id": "bioregistry.glida.gpcr.n2t", "sameas": "bioregistry.glida.gpcr", "homepage": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/", "prefix": "glida.gpcr", "name": "GLIDA GPCR at Kyoto University", "uri_format": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/gpcr_information.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.glida.gpcr": {"id": "bioregistry.glida.gpcr", "homepage": null, "prefix": "glida.gpcr", "name": "GLIDA GPCR at Kyoto University", "uri_format": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/gpcr_information.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.glida.ligand.miriam": {"id": "bioregistry.glida.ligand.miriam", "sameas": "bioregistry.glida.ligand", "homepage": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/", "prefix": "glida.ligand", "name": "GLIDA Ligand", "uri_format": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/ligand_information.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.glida.ligand.n2t": {"id": "bioregistry.glida.ligand.n2t", "sameas": "bioregistry.glida.ligand", "homepage": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/", "prefix": "glida.ligand", "name": "GLIDA Ligand at Kyoto University", "uri_format": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/ligand_information.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.glida.ligand": {"id": "bioregistry.glida.ligand", "homepage": null, "prefix": "glida.ligand", "name": "GLIDA Ligand at Kyoto University", "uri_format": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/ligand_information.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.glycoepitope.miriam": {"id": "bioregistry.glycoepitope.miriam", "sameas": "bioregistry.glycoepitope", "homepage": "https://www.glycoepitope.jp/epitopes/", "prefix": "glycoepitope", "name": "GlycoEpitope", "uri_format": "https://www.glycoepitope.jp/epitopes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.glycoepitope.n2t": {"id": "bioregistry.glycoepitope.n2t", "sameas": "bioregistry.glycoepitope", "homepage": "https://www.glycoepitope.jp/epitopes/", "prefix": "glycoepitope", "name": "GlycoEpitope at Ritsumeikan University", "uri_format": "https://www.glycoepitope.jp/epitopes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.glycoepitope": {"id": "bioregistry.glycoepitope", "homepage": null, "prefix": "glycoepitope", "name": "GlycoEpitope at Ritsumeikan University", "uri_format": "https://www.glycoepitope.jp/epitopes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.glycomapsdb.prefixcommons": {"id": "bioregistry.glycomapsdb.prefixcommons", "sameas": "bioregistry.glycomapsdb", "homepage": "http://www.glycosciences.de/modeling/glycomapsdb/", "prefix": "glycomapsdb", "name": "GlycoMapsDB", "uri_format": "http://www.glycosciences.de/modeling/glycomapsdb/showdetails.php?mapid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.glycomapsdb": {"id": "bioregistry.glycomapsdb", "homepage": null, "prefix": "glycomapsdb", "name": "GlycoMapsDB", "uri_format": "http://www.glycosciences.de/modeling/glycomapsdb/showdetails.php?mapid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.glycomedb.miriam": {"id": "bioregistry.glycomedb.miriam", "sameas": "bioregistry.glycomedb", "homepage": "https://glytoucan.org/", "prefix": "glycomedb", "name": "GlycomeDB", "uri_format": "https://glytoucan.org/Structures/Glycans/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.glycomedb.n2t": {"id": "bioregistry.glycomedb.n2t", "sameas": "bioregistry.glycomedb", "homepage": "https://glytoucan.org/", "prefix": "glycomedb", "name": "GlycomeDB carbohydrate structure database", "uri_format": "https://glytoucan.org/Structures/Glycans/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.glycomedb.prefixcommons": {"id": "bioregistry.glycomedb.prefixcommons", "sameas": "bioregistry.glycomedb", "homepage": "http://www.glycome-db.org/showMenu.action?major=database", "prefix": "glycomedb", "name": "GlycomeDB Carbohydrate Structure Database", "uri_format": "http://www.glycome-db.org/database/showStructure.action?glycomeId=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.glycomedb": {"id": "bioregistry.glycomedb", "homepage": null, "prefix": "glycomedb", "name": "GlycomeDB carbohydrate structure database", "uri_format": "https://glytoucan.org/Structures/Glycans/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.glyconavi.miriam": {"id": "bioregistry.glyconavi.miriam", "sameas": "bioregistry.glyconavi", "homepage": "https://www.noguchi.or.jp/", "prefix": "glyconavi", "name": "GlycoNAVI", "uri_format": "https://glyconavi.org/hub/?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.glyconavi": {"id": "bioregistry.glyconavi", "homepage": null, "prefix": "glyconavi", "name": "GlycoNAVI", "uri_format": "https://glyconavi.org/hub/?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.glycopost.miriam": {"id": "bioregistry.glycopost.miriam", "sameas": "bioregistry.glycopost", "homepage": "https://glycopost.glycosmos.org", "prefix": "glycopost", "name": "GlycoPOST", "uri_format": "https://glycopost.glycosmos.org/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.glycopost": {"id": "bioregistry.glycopost", "homepage": null, "prefix": "glycopost", "name": "GlycoPOST", "uri_format": "https://glycopost.glycosmos.org/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.glygen.uniprot": {"id": "bioregistry.glygen.uniprot", "sameas": "bioregistry.glygen", "homepage": "https://glygen.org", "prefix": "DB-0254", "name": "GlyGen", "uri_format": "https://glygen.org/protein/$1#glycosylation", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.glygen": {"id": "bioregistry.glygen", "homepage": "https://glygen.org/glycan/", "prefix": "glygen", "name": "GlyGen: Computational and Informatics Resources for Glycoscience", "uri_format": "https://glygen.org/protein/$1#glycosylation", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.glytoucan.miriam": {"id": "bioregistry.glytoucan.miriam", "sameas": "bioregistry.glytoucan", "homepage": "https://glytoucan.org", "prefix": "glytoucan", "name": "GlyTouCan", "uri_format": "https://glytoucan.org/Structures/Glycans/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.glytoucan.n2t": {"id": "bioregistry.glytoucan.n2t", "sameas": "bioregistry.glytoucan", "homepage": "https://glytoucan.org", "prefix": "glytoucan", "name": "The Glycan Repository", "uri_format": "https://glytoucan.org/Structures/Glycans/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.glytoucan": {"id": "bioregistry.glytoucan", "homepage": null, "prefix": "glytoucan", "name": "The Glycan Repository", "uri_format": "https://glytoucan.org/Structures/Glycans/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gmd.miriam": {"id": "bioregistry.gmd.miriam", "sameas": "bioregistry.gmd", "homepage": "http://gmd.mpimp-golm.mpg.de/", "prefix": "gmd", "name": "Golm Metabolome Database", "uri_format": "http://gmd.mpimp-golm.mpg.de/Metabolites/$1.aspx", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gmd.n2t": {"id": "bioregistry.gmd.n2t", "sameas": "bioregistry.gmd", "homepage": "http://gmd.mpimp-golm.mpg.de/", "prefix": "gmd", "name": "Golm Metabolome Database at Max Planck Institute of Molecular Plant Physiology", "uri_format": "http://gmd.mpimp-golm.mpg.de/Metabolites/$1.aspx", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gmd": {"id": "bioregistry.gmd", "homepage": null, "prefix": "gmd", "name": "Golm Metabolome Database at Max Planck Institute of Molecular Plant Physiology", "uri_format": "http://gmd.mpimp-golm.mpg.de/Metabolites/$1.aspx", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gmd.analyte.miriam": {"id": "bioregistry.gmd.analyte.miriam", "sameas": "bioregistry.gmd.analyte", "homepage": "http://gmd.mpimp-golm.mpg.de/", "prefix": "gmd.analyte", "name": "Golm Metabolome Database Analyte", "uri_format": "http://gmd.mpimp-golm.mpg.de/Analytes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gmd.analyte.n2t": {"id": "bioregistry.gmd.analyte.n2t", "sameas": "bioregistry.gmd.analyte", "homepage": "http://gmd.mpimp-golm.mpg.de/", "prefix": "gmd.analyte", "name": "Golm Metabolome Database (Analyte) at Max Planck Institute of Molecular Plant Physiology", "uri_format": "http://gmd.mpimp-golm.mpg.de/Analytes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gmd.analyte": {"id": "bioregistry.gmd.analyte", "homepage": null, "prefix": "gmd.analyte", "name": "Golm Metabolome Database (Analyte) at Max Planck Institute of Molecular Plant Physiology", "uri_format": "http://gmd.mpimp-golm.mpg.de/Analytes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gmd.gcms.miriam": {"id": "bioregistry.gmd.gcms.miriam", "sameas": "bioregistry.gmd.gcms", "homepage": "http://gmd.mpimp-golm.mpg.de/", "prefix": "gmd.gcms", "name": "Golm Metabolome Database GC-MS spectra", "uri_format": "http://gmd.mpimp-golm.mpg.de/Spectrums/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gmd.gcms.n2t": {"id": "bioregistry.gmd.gcms.n2t", "sameas": "bioregistry.gmd.gcms", "homepage": "http://gmd.mpimp-golm.mpg.de/", "prefix": "gmd.gcms", "name": "Golm Metabolome Database (GC-MS Spectra) at Max Planck Institute of Molecular Plant Physiology", "uri_format": "http://gmd.mpimp-golm.mpg.de/Spectrums/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gmd.gcms": {"id": "bioregistry.gmd.gcms", "homepage": null, "prefix": "gmd.gcms", "name": "Golm Metabolome Database (GC-MS Spectra) at Max Planck Institute of Molecular Plant Physiology", "uri_format": "http://gmd.mpimp-golm.mpg.de/Spectrums/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gmd.profile.miriam": {"id": "bioregistry.gmd.profile.miriam", "sameas": "bioregistry.gmd.profile", "homepage": "http://gmd.mpimp-golm.mpg.de/", "prefix": "gmd.profile", "name": "Golm Metabolome Database Profile", "uri_format": "http://gmd.mpimp-golm.mpg.de/profile/default.aspx?XemlId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gmd.profile.n2t": {"id": "bioregistry.gmd.profile.n2t", "sameas": "bioregistry.gmd.profile", "homepage": "http://gmd.mpimp-golm.mpg.de/", "prefix": "gmd.profile", "name": "Golm Metabolome Database (Profile) at Max Planck Institute of Molecular Plant Physiology", "uri_format": "http://gmd.mpimp-golm.mpg.de/profile/default.aspx?XemlId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gmd.profile": {"id": "bioregistry.gmd.profile", "homepage": null, "prefix": "gmd.profile", "name": "Golm Metabolome Database (Profile) at Max Planck Institute of Molecular Plant Physiology", "uri_format": "http://gmd.mpimp-golm.mpg.de/profile/default.aspx?XemlId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gmd.ref.miriam": {"id": "bioregistry.gmd.ref.miriam", "sameas": "bioregistry.gmd.ref", "homepage": "http://gmd.mpimp-golm.mpg.de/", "prefix": "gmd.ref", "name": "Golm Metabolome Database Reference Substance", "uri_format": "http://gmd.mpimp-golm.mpg.de/ReferenceSubstances/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gmd.ref.n2t": {"id": "bioregistry.gmd.ref.n2t", "sameas": "bioregistry.gmd.ref", "homepage": "http://gmd.mpimp-golm.mpg.de/", "prefix": "gmd.ref", "name": "Golm Metabolome Database (Reference Substance) at Max Planck Institute of Molecular Plant Physiology", "uri_format": "http://gmd.mpimp-golm.mpg.de/ReferenceSubstances/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gmd.ref": {"id": "bioregistry.gmd.ref", "homepage": null, "prefix": "gmd.ref", "name": "Golm Metabolome Database (Reference Substance) at Max Planck Institute of Molecular Plant Physiology", "uri_format": "http://gmd.mpimp-golm.mpg.de/ReferenceSubstances/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gnd.miriam": {"id": "bioregistry.gnd.miriam", "sameas": "bioregistry.gnd", "homepage": "https://lobid.org/", "prefix": "gnd", "name": "Gemeinsame Normdatei", "uri_format": "https://lobid.org/gnd/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gnd": {"id": "bioregistry.gnd", "homepage": null, "prefix": "gnd", "name": "Integrated Authority File", "uri_format": "https://lobid.org/gnd/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gnpis.miriam": {"id": "bioregistry.gnpis.miriam", "sameas": "bioregistry.gnpis", "homepage": "https://urgi.versailles.inra.fr/gnpis/", "prefix": "gnpis", "name": "GnpIS", "uri_format": "https://urgi.versailles.inra.fr/gnpis/#result/term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gnpis.n2t": {"id": "bioregistry.gnpis.n2t", "sameas": "bioregistry.gnpis", "homepage": "https://urgi.versailles.inra.fr/gnpis/", "prefix": "gnpis", "name": "GnpIS", "uri_format": "https://urgi.versailles.inra.fr/gnpis/#result/term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gnpis": {"id": "bioregistry.gnpis", "homepage": null, "prefix": "gnpis", "name": "Genetic and Genomic Information System", "uri_format": "https://urgi.versailles.inra.fr/gnpis/#result/term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.go.miriam": {"id": "bioregistry.go.miriam", "sameas": "bioregistry.go", "homepage": "http://amigo.geneontology.org/", "prefix": "go", "name": "Gene Ontology", "uri_format": "http://amigo.geneontology.org/amigo/term/GO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.go.n2t": {"id": "bioregistry.go.n2t", "sameas": "bioregistry.go", "homepage": "http://amigo.geneontology.org/", "prefix": "go", "name": "AmiGO 2", "uri_format": "http://amigo.geneontology.org/amigo/term/GO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.go.prefixcommons": {"id": "bioregistry.go.prefixcommons", "sameas": "bioregistry.go", "homepage": "http://www.geneontology.org/", "prefix": "go", "name": "The Gene Ontology", "uri_format": "http://amigo.geneontology.org/cgi-bin/amigo/term-details.cgi?term=GO:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.go.wikidata": {"id": "bioregistry.go.wikidata", "sameas": "bioregistry.go", "homepage": "http://amigo.geneontology.org/", "prefix": "P686", "name": "Gene Ontology ID", "uri_format": "http://amigo.geneontology.org/amigo/term/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "wikidata"}, "bioregistry.go.uniprot": {"id": "bioregistry.go.uniprot", "sameas": "bioregistry.go", "homepage": "http://geneontology.org/", "prefix": "DB-0037", "name": "Gene Ontology", "uri_format": "https://www.ebi.ac.uk/QuickGO/term/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.go": {"id": "bioregistry.go", "homepage": null, "prefix": "go", "name": "Gene Ontology Database identifier", "uri_format": "https://www.ebi.ac.uk/QuickGO/term/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.go.gpi.biolink": {"id": "bioregistry.go.gpi.biolink", "sameas": "bioregistry.go.gpi", "homepage": null, "prefix": "gpi", "name": null, "uri_format": "https://github.com/geneontology/go-annotation/blob/master/specs/gpad-gpi-2-0.md#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.go.gpi": {"id": "bioregistry.go.gpi", "homepage": "http://geneontology.org/docs/gene-product-information-gpi-format/#db-object-id", "prefix": "go.gpi", "name": "Gene Product Information Schema", "uri_format": "https://github.com/geneontology/go-annotation/blob/master/specs/gpad-gpi-2-0.md#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.go.model.go": {"id": "bioregistry.go.model.go", "sameas": "bioregistry.go.model", "homepage": "http://www.geneontology.org/gocam", "prefix": "gomodel", "name": "Gene Ontology Causal Activity Model Database", "uri_format": "http://www.geneontology.org/gocam/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.go.model": {"id": "bioregistry.go.model", "homepage": null, "prefix": "go.model", "name": "Gene Ontology Causal Activity Model Database", "uri_format": "http://www.geneontology.org/gocam/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.go.ref.miriam": {"id": "bioregistry.go.ref.miriam", "sameas": "bioregistry.go.ref", "homepage": "http://www.geneontology.org/cgi-bin/references.cgi", "prefix": "go_ref", "name": "Gene Ontology Reference", "uri_format": "https://github.com/geneontology/go-site/blob/master/metadata/gorefs/goref-$1.md", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.go.ref.n2t": {"id": "bioregistry.go.ref.n2t", "sameas": "bioregistry.go.ref", "homepage": "http://www.geneontology.org/cgi-bin/references.cgi", "prefix": "go.ref", "name": "Gene Ontology Reference at The Gene Ontology Consortium", "uri_format": "http://www.geneontology.org/cgi-bin/references.cgi#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.go.ref.biocontext": {"id": "bioregistry.go.ref.biocontext", "sameas": "bioregistry.go.ref", "homepage": null, "prefix": "GO_REF", "name": null, "uri_format": "http://www.geneontology.org/cgi-bin/references.cgi#GO_REF:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.go.ref": {"id": "bioregistry.go.ref", "homepage": null, "prefix": "go.ref", "name": "Gene Ontology Reference at The Gene Ontology Consortium", "uri_format": "https://github.com/geneontology/go-site/blob/master/metadata/gorefs/goref-$1.md", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.goa.miriam": {"id": "bioregistry.goa.miriam", "sameas": "bioregistry.goa", "homepage": "https://www.ebi.ac.uk/GOA/", "prefix": "goa", "name": "GOA", "uri_format": "https://www.ebi.ac.uk/QuickGO/GProtein?ac=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.goa.n2t": {"id": "bioregistry.goa.n2t", "sameas": "bioregistry.goa", "homepage": "https://www.ebi.ac.uk/GOA/", "prefix": "goa", "name": "GOA through QuickGO", "uri_format": "https://www.ebi.ac.uk/QuickGO/GProtein?ac=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.goa.prefixcommons": {"id": "bioregistry.goa.prefixcommons", "sameas": "bioregistry.goa", "homepage": "http://www.ebi.ac.uk/GOA", "prefix": "goa", "name": "Gene Ontology Annotation", "uri_format": "http://www.ebi.ac.uk/QuickGO/GTerm?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.goa": {"id": "bioregistry.goa", "homepage": null, "prefix": "goa", "name": "Gene Ontology Annotation Database Identifier", "uri_format": "https://www.ebi.ac.uk/QuickGO/GProtein?ac=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.gold.miriam": {"id": "bioregistry.gold.miriam", "sameas": "bioregistry.gold", "homepage": "https://gold.jgi.doe.gov/", "prefix": "gold", "name": "Genomes OnLine Database (GOLD)", "uri_format": "https://gold.jgi.doe.gov/resolver?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gold.prefixcommons": {"id": "bioregistry.gold.prefixcommons", "sameas": "bioregistry.gold", "homepage": "http://www.genomesonline.org/", "prefix": "gold", "name": "Genomes Online Database", "uri_format": "http://genomesonline.org/cgi-bin/GOLD/bin/GOLDCards.cgi?goldstamp=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.gold": {"id": "bioregistry.gold", "homepage": null, "prefix": "gold", "name": "Joint Genome Institute, Genomes OnLine Database", "uri_format": "https://gold.jgi.doe.gov/resolver?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.gold.genome.miriam": {"id": "bioregistry.gold.genome.miriam", "sameas": "bioregistry.gold.genome", "homepage": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", "prefix": "gold.genome", "name": "GOLD genome", "uri_format": "http://www.genomesonline.org/cgi-bin/GOLD/GOLDCards.cgi?goldstamp=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gold.genome.n2t": {"id": "bioregistry.gold.genome.n2t", "sameas": "bioregistry.gold.genome", "homepage": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", "prefix": "gold.genome", "name": "GOLD genome at Department of Energy Joint Genome Institute", "uri_format": "http://www.genomesonline.org/cgi-bin/GOLD/GOLDCards.cgi?goldstamp=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gold.genome": {"id": "bioregistry.gold.genome", "homepage": null, "prefix": "gold.genome", "name": "GOLD genome at Department of Energy Joint Genome Institute", "uri_format": "http://www.genomesonline.org/cgi-bin/GOLD/GOLDCards.cgi?goldstamp=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gold.meta.miriam": {"id": "bioregistry.gold.meta.miriam", "sameas": "bioregistry.gold.meta", "homepage": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", "prefix": "gold.meta", "name": "GOLD metadata", "uri_format": "http://genomesonline.org/cgi-bin/GOLD/bin/GOLDCards.cgi?goldstamp=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gold.meta.n2t": {"id": "bioregistry.gold.meta.n2t", "sameas": "bioregistry.gold.meta", "homepage": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", "prefix": "gold.meta", "name": "GOLD metadata at Department of Energy Joint Genome Institute", "uri_format": "http://genomesonline.org/cgi-bin/GOLD/bin/GOLDCards.cgi?goldstamp=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gold.meta": {"id": "bioregistry.gold.meta", "homepage": null, "prefix": "gold.meta", "name": "GOLD metadata at Department of Energy Joint Genome Institute", "uri_format": "http://genomesonline.org/cgi-bin/GOLD/bin/GOLDCards.cgi?goldstamp=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.goldbook.wikidata": {"id": "bioregistry.goldbook.wikidata", "sameas": "bioregistry.goldbook", "homepage": "http://goldbook.iupac.org/", "prefix": "P4732", "name": "IUPAC Gold Book ID", "uri_format": "https://dx.doi.org/10.1351/goldbook.$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.goldbook": {"id": "bioregistry.goldbook", "homepage": "https://goldbook.iupac.org", "prefix": "goldbook", "name": "IUPAC Gold Book Compendium of Chemical Terminology", "uri_format": "https://dx.doi.org/10.1351/goldbook.$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.google.book.wikidata": {"id": "bioregistry.google.book.wikidata", "sameas": "bioregistry.google.book", "homepage": "https://books.google.com/books", "prefix": "P675", "name": "Google Books ID", "uri_format": "https://books.google.com/books?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.google.book": {"id": "bioregistry.google.book", "homepage": "https://books.google.com", "prefix": "google.book", "name": "Google Books ID", "uri_format": "https://books.google.com/books?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.google.patent.miriam": {"id": "bioregistry.google.patent.miriam", "sameas": "bioregistry.google.patent", "homepage": "https://www.google.com/patents/", "prefix": "google.patent", "name": "Google Patents", "uri_format": "https://www.google.com/patents/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.google.patent.n2t": {"id": "bioregistry.google.patent.n2t", "sameas": "bioregistry.google.patent", "homepage": "https://www.google.com/patents/", "prefix": "google.patent", "name": "Google Patents at Google", "uri_format": "https://www.google.com/patents/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.google.patent.cellosaurus": {"id": "bioregistry.google.patent.cellosaurus", "sameas": "bioregistry.google.patent", "homepage": "https://patents.google.com", "prefix": "Patent", "name": "Google Patents", "uri_format": "https://patents.google.com/patent/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.google.patent": {"id": "bioregistry.google.patent", "homepage": null, "prefix": "google.patent", "name": "Google Patents at Google", "uri_format": "https://www.google.com/patents/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.google.scholar.biolink": {"id": "bioregistry.google.scholar.biolink", "sameas": "bioregistry.google.scholar", "homepage": null, "prefix": "GSID", "name": null, "uri_format": "https://scholar.google.com/citations?user=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.google.scholar": {"id": "bioregistry.google.scholar", "homepage": "https://scholar.google.com/", "prefix": "google.scholar", "name": "Google Scholar Researcher", "uri_format": "https://scholar.google.com/citations?user=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gorel.biolink": {"id": "bioregistry.gorel.biolink", "sameas": "bioregistry.gorel", "homepage": null, "prefix": "GOREL", "name": null, "uri_format": "http://purl.obolibrary.org/obo/GOREL_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.gorel": {"id": "bioregistry.gorel", "homepage": "http://geneontology.org/docs/ontology-relations/", "prefix": "gorel", "name": "GO Extensions to OBO Relation Ontology Ontology", "uri_format": "http://purl.obolibrary.org/obo/GOREL_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gpcrdb.miriam": {"id": "bioregistry.gpcrdb.miriam", "sameas": "bioregistry.gpcrdb", "homepage": "http://www.gpcrdb.org/", "prefix": "gpcrdb", "name": "GPCRDB", "uri_format": "http://www.gpcrdb.org/protein/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gpcrdb.n2t": {"id": "bioregistry.gpcrdb.n2t", "sameas": "bioregistry.gpcrdb", "homepage": "http://www.gpcrdb.org/", "prefix": "gpcrdb", "name": "GPCRDB at Radboud University", "uri_format": "http://www.gpcrdb.org/protein/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gpcrdb.prefixcommons": {"id": "bioregistry.gpcrdb.prefixcommons", "sameas": "bioregistry.gpcrdb", "homepage": "http://www.gpcr.org/7tm/", "prefix": "gpcrdb", "name": "Information system for G protein-coupled receptors (GPCRs)", "uri_format": "http://www.gpcr.org/7tm/proteins/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.gpcrdb.uniprot": {"id": "bioregistry.gpcrdb.uniprot", "sameas": "bioregistry.gpcrdb", "homepage": "https://gpcrdb.org", "prefix": "DB-0038", "name": "Information system for G protein-coupled receptors (GPCRs)", "uri_format": "https://gpcrdb.org/protein/$1/", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.gpcrdb": {"id": "bioregistry.gpcrdb", "homepage": null, "prefix": "gpcrdb", "name": "Information system for G protein-coupled receptors (GPCRs)", "uri_format": "https://gpcrdb.org/protein/$1/", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.gpcrnava.prefixcommons": {"id": "bioregistry.gpcrnava.prefixcommons", "sameas": "bioregistry.gpcrnava", "homepage": "http://nava.liacs.nl/", "prefix": "gnd", "name": "GPCR Natural Variants database", "uri_format": "http://nava.liacs.nl/cgi-bin/nava.py?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.gpcrnava": {"id": "bioregistry.gpcrnava", "homepage": null, "prefix": "gpcrnava", "name": "GPCR Natural Variants database", "uri_format": "http://nava.liacs.nl/cgi-bin/nava.py?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.gpmdb.miriam": {"id": "bioregistry.gpmdb.miriam", "sameas": "bioregistry.gpmdb", "homepage": "http://gpmdb.thegpm.org/", "prefix": "gpmdb", "name": "GPMDB", "uri_format": "http://gpmdb.thegpm.org/~/dblist_gpmnum/gpmnum=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gpmdb.n2t": {"id": "bioregistry.gpmdb.n2t", "sameas": "bioregistry.gpmdb", "homepage": "http://gpmdb.thegpm.org/", "prefix": "gpmdb", "name": "GPMDB", "uri_format": "http://gpmdb.thegpm.org/~/dblist_gpmnum/gpmnum=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gpmdb": {"id": "bioregistry.gpmdb", "homepage": null, "prefix": "gpmdb", "name": "The Global Proteome Machine Database", "uri_format": "http://gpmdb.thegpm.org/~/dblist_gpmnum/gpmnum=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gramene.gene.miriam": {"id": "bioregistry.gramene.gene.miriam", "sameas": "bioregistry.gramene.gene", "homepage": "http://www.gramene.org/", "prefix": "gramene.gene", "name": "Gramene genes", "uri_format": "http://www.gramene.org/db/genes/search_gene?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gramene.gene.n2t": {"id": "bioregistry.gramene.gene.n2t", "sameas": "bioregistry.gramene.gene", "homepage": "http://www.gramene.org/", "prefix": "gramene.gene", "name": "Gramene Genes at Cold Spring Harbor", "uri_format": "http://www.gramene.org/db/genes/search_gene?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gramene.gene.go": {"id": "bioregistry.gramene.gene.go", "sameas": "bioregistry.gramene.gene", "homepage": "http://www.gramene.org/", "prefix": "GR_GENE", "name": "Gramene", "uri_format": "http://www.gramene.org/db/genes/search_gene?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.gramene.gene": {"id": "bioregistry.gramene.gene", "homepage": null, "prefix": "gramene.gene", "name": "Gramene Genes at Cold Spring Harbor", "uri_format": "http://www.gramene.org/db/genes/search_gene?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gramene.growthstage.miriam": {"id": "bioregistry.gramene.growthstage.miriam", "sameas": "bioregistry.gramene.growthstage", "homepage": "http://www.gramene.org/", "prefix": "gro", "name": "Gramene Growth Stage Ontology", "uri_format": "http://www.gramene.org/db/ontology/search?id=GRO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gramene.growthstage.n2t": {"id": "bioregistry.gramene.growthstage.n2t", "sameas": "bioregistry.gramene.growthstage", "homepage": "http://www.gramene.org/", "prefix": "gramene.growthstage", "name": "Gramene Growth Stage Ontology at Cold Spring Harbor", "uri_format": "http://www.gramene.org/db/ontology/search?id=GRO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gramene.growthstage.prefixcommons": {"id": "bioregistry.gramene.growthstage.prefixcommons", "sameas": "bioregistry.gramene.growthstage", "homepage": "http://www.gramene.org/plant_ontology/", "prefix": "gramene.po", "name": "Plant Ontology", "uri_format": "http://www.gramene.org/db/ontology/search?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "anatomy and morphology"], "authority": "prefixcommons"}, "bioregistry.gramene.growthstage": {"id": "bioregistry.gramene.growthstage", "homepage": null, "prefix": "gramene.growthstage", "name": "Gramene Growth Stage Ontology at Cold Spring Harbor", "uri_format": "http://www.gramene.org/db/ontology/search?id=GRO:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "anatomy and morphology"], "authority": "bioregistry"}, "bioregistry.gramene.protein.miriam": {"id": "bioregistry.gramene.protein.miriam", "sameas": "bioregistry.gramene.protein", "homepage": "http://www.gramene.org/", "prefix": "gramene.protein", "name": "Gramene protein", "uri_format": "http://www.gramene.org/db/protein/protein_search?protein_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gramene.protein.n2t": {"id": "bioregistry.gramene.protein.n2t", "sameas": "bioregistry.gramene.protein", "homepage": "http://www.gramene.org/", "prefix": "gramene.protein", "name": "Gramene Protein at Cold Spring Harbor", "uri_format": "http://www.gramene.org/db/protein/protein_search?protein_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gramene.protein.go": {"id": "bioregistry.gramene.protein.go", "sameas": "bioregistry.gramene.protein", "homepage": "http://www.gramene.org/", "prefix": "GR_PROTEIN", "name": "Gramene", "uri_format": "http://www.gramene.org/db/protein/protein_search?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.gramene.protein": {"id": "bioregistry.gramene.protein", "homepage": null, "prefix": "gramene.protein", "name": "Gramene Protein at Cold Spring Harbor", "uri_format": "http://www.gramene.org/db/protein/protein_search?protein_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gramene.qtl.miriam": {"id": "bioregistry.gramene.qtl.miriam", "sameas": "bioregistry.gramene.qtl", "homepage": "http://www.gramene.org/", "prefix": "gramene.qtl", "name": "Gramene QTL", "uri_format": "http://www.gramene.org/db/qtl/qtl_display?qtl_accession_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gramene.qtl.n2t": {"id": "bioregistry.gramene.qtl.n2t", "sameas": "bioregistry.gramene.qtl", "homepage": "http://www.gramene.org/", "prefix": "gramene.qtl", "name": "Gramene Quantitative Trait Loci at Cold Spring Harbor", "uri_format": "http://www.gramene.org/db/qtl/qtl_display?qtl_accession_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gramene.qtl.go": {"id": "bioregistry.gramene.qtl.go", "sameas": "bioregistry.gramene.qtl", "homepage": "http://www.gramene.org/", "prefix": "GR_QTL", "name": "Gramene", "uri_format": "http://www.gramene.org/db/qtl/qtl_display?qtl_accession_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.gramene.qtl": {"id": "bioregistry.gramene.qtl", "homepage": null, "prefix": "gramene.qtl", "name": "Gramene Quantitative Trait Loci at Cold Spring Harbor", "uri_format": "http://www.gramene.org/db/qtl/qtl_display?qtl_accession_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gramene.taxonomy.miriam": {"id": "bioregistry.gramene.taxonomy.miriam", "sameas": "bioregistry.gramene.taxonomy", "homepage": "http://www.gramene.org/", "prefix": "gramene.taxonomy", "name": "Gramene Taxonomy", "uri_format": "http://www.gramene.org/db/ontology/search?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gramene.taxonomy.n2t": {"id": "bioregistry.gramene.taxonomy.n2t", "sameas": "bioregistry.gramene.taxonomy", "homepage": "http://www.gramene.org/", "prefix": "gramene.taxonomy", "name": "Gramene Taxonomy at Cold Spring Harbor", "uri_format": "http://www.gramene.org/db/ontology/search?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gramene.taxonomy": {"id": "bioregistry.gramene.taxonomy", "homepage": null, "prefix": "gramene.taxonomy", "name": "Gramene Taxonomy at Cold Spring Harbor", "uri_format": "http://www.gramene.org/db/ontology/search?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.grassbase.wikidata": {"id": "bioregistry.grassbase.wikidata", "sameas": "bioregistry.grassbase", "homepage": "http://www.kew.org/data/grasses-syn/index.htm", "prefix": "P1832", "name": "GrassBase ID", "uri_format": "http://www.kew.org/data/grasses-db/www/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.grassbase": {"id": "bioregistry.grassbase", "homepage": "https://www.kew.org/data/grasses-syn/index.htm", "prefix": "grassbase", "name": "GrassBase ID", "uri_format": "http://www.kew.org/data/grasses-db/www/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.greengenes.miriam": {"id": "bioregistry.greengenes.miriam", "sameas": "bioregistry.greengenes", "homepage": "http://greengenes.lbl.gov/", "prefix": "greengenes", "name": "GreenGenes", "uri_format": "http://greengenes.lbl.gov/cgi-bin/show_one_record_v2.pl?prokMSA_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.greengenes.n2t": {"id": "bioregistry.greengenes.n2t", "sameas": "bioregistry.greengenes", "homepage": "http://greengenes.lbl.gov/", "prefix": "greengenes", "name": "GreenGenes at Lawrence Berkeley", "uri_format": "http://greengenes.lbl.gov/cgi-bin/show_one_record_v2.pl?prokMSA_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.greengenes.prefixcommons": {"id": "bioregistry.greengenes.prefixcommons", "sameas": "bioregistry.greengenes", "homepage": "http://greengenes.lbl.gov", "prefix": "greengenes", "name": "Greengenes:16S rRNA gene database", "uri_format": "http://greengenes.lbl.gov/cgi-bin/show_one_record_v2.pl?prokMSA_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.greengenes": {"id": "bioregistry.greengenes", "homepage": null, "prefix": "greengenes", "name": "Greengenes:16S rRNA gene database", "uri_format": "http://greengenes.lbl.gov/cgi-bin/show_one_record_v2.pl?prokMSA_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.grid.miriam": {"id": "bioregistry.grid.miriam", "sameas": "bioregistry.grid", "homepage": "https://www.grid.ac/", "prefix": "grid", "name": "GRID", "uri_format": "https://www.grid.ac/institutes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.grid.n2t": {"id": "bioregistry.grid.n2t", "sameas": "bioregistry.grid", "homepage": "https://www.grid.ac/", "prefix": "grid", "name": "GRID at Digital Science & Research Ltd.", "uri_format": "https://www.grid.ac/institutes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.grid": {"id": "bioregistry.grid", "homepage": null, "prefix": "grid", "name": "GRID at Digital Science & Research Ltd.", "uri_format": "https://www.grid.ac/institutes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.grin.prefixcommons": {"id": "bioregistry.grin.prefixcommons", "sameas": "bioregistry.grin", "homepage": "http://www.ars-grin.gov/", "prefix": "grin", "name": "Germplasm Resources Information Network", "uri_format": "http://www.ars.usda.gov/research/publications/publications.htm?seq_no_115=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.grin": {"id": "bioregistry.grin", "homepage": null, "prefix": "grin", "name": "Germplasm Resources Information Network", "uri_format": "http://www.ars.usda.gov/research/publications/publications.htm?seq_no_115=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.grin.taxonomy.miriam": {"id": "bioregistry.grin.taxonomy.miriam", "sameas": "bioregistry.grin.taxonomy", "homepage": "http://www.ars-grin.gov/cgi-bin/npgs/html/index.pl?language=en", "prefix": "grin.taxonomy", "name": "GRIN Plant Taxonomy", "uri_format": "http://www.ars-grin.gov/cgi-bin/npgs/html/taxon.pl?$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.grin.taxonomy.n2t": {"id": "bioregistry.grin.taxonomy.n2t", "sameas": "bioregistry.grin.taxonomy", "homepage": "http://www.ars-grin.gov/cgi-bin/npgs/html/index.pl?language=en", "prefix": "grin.taxonomy", "name": "GRIN at Maryland", "uri_format": "http://www.ars-grin.gov/cgi-bin/npgs/html/taxon.pl?$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.grin.taxonomy.go": {"id": "bioregistry.grin.taxonomy.go", "sameas": "bioregistry.grin.taxonomy", "homepage": "https://www.ars-grin.gov/", "prefix": "GRIN", "name": "Germplasm Resources Information Network", "uri_format": "https://npgsweb.ars-grin.gov/gringlobal/accessiondetail.aspx?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.grin.taxonomy": {"id": "bioregistry.grin.taxonomy", "homepage": null, "prefix": "grin.taxonomy", "name": "Germplasm Resources Information Network", "uri_format": "https://npgsweb.ars-grin.gov/gringlobal/accessiondetail.aspx?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.grsdb.miriam": {"id": "bioregistry.grsdb.miriam", "sameas": "bioregistry.grsdb", "homepage": "http://bioinformatics.ramapo.edu/GRSDB2/", "prefix": "grsdb", "name": "GRSDB", "uri_format": "http://bioinformatics.ramapo.edu/GRSDB2/geneview.php?geneID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.grsdb.n2t": {"id": "bioregistry.grsdb.n2t", "sameas": "bioregistry.grsdb", "homepage": "http://bioinformatics.ramapo.edu/GRSDB2/", "prefix": "grsdb", "name": "GRSDB v2 at Ramapo College of New Jersey", "uri_format": "http://bioinformatics.ramapo.edu/GRSDB2/geneview.php?geneID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.grsdb.prefixcommons": {"id": "bioregistry.grsdb.prefixcommons", "sameas": "bioregistry.grsdb", "homepage": "http://bioinformatics.ramapo.edu/GRSDB2/", "prefix": "grsdb", "name": "GRSDB", "uri_format": "http://bioinformatics.ramapo.edu/GRSDB2/geneview.php?geneID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.grsdb": {"id": "bioregistry.grsdb", "homepage": null, "prefix": "grsdb", "name": "GRSDB v2 at Ramapo College of New Jersey", "uri_format": "http://bioinformatics.ramapo.edu/GRSDB2/geneview.php?geneID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.gsso.miriam": {"id": "bioregistry.gsso.miriam", "sameas": "bioregistry.gsso", "homepage": "https://bioportal.bioontology.org/", "prefix": "gsso", "name": "Gender, Sex, and Sexual Orientation (GSSO) Ontology", "uri_format": "http://purl.obolibrary.org/obo/GSSO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gsso": {"id": "bioregistry.gsso", "homepage": null, "prefix": "gsso", "name": "GSSO - the Gender, Sex, and Sexual Orientation ontology", "uri_format": "http://purl.obolibrary.org/obo/GSSO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gtex.miriam": {"id": "bioregistry.gtex.miriam", "sameas": "bioregistry.gtex", "homepage": "https://www.gtexportal.org", "prefix": "gtex", "name": "GTEx", "uri_format": "https://www.gtexportal.org/home/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gtex.n2t": {"id": "bioregistry.gtex.n2t", "sameas": "bioregistry.gtex", "homepage": "https://www.gtexportal.org", "prefix": "gtex", "name": "The GTEx Project", "uri_format": "https://www.gtexportal.org/home/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gtex.biolink": {"id": "bioregistry.gtex.biolink", "sameas": "bioregistry.gtex", "homepage": null, "prefix": "GTEx", "name": null, "uri_format": "https://www.gtexportal.org/home/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.gtex": {"id": "bioregistry.gtex", "homepage": null, "prefix": "gtex", "name": "Genotype-Tissue Expression", "uri_format": "https://www.gtexportal.org/home/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gudmap.miriam": {"id": "bioregistry.gudmap.miriam", "sameas": "bioregistry.gudmap", "homepage": "http://www.gudmap.org/", "prefix": "gudmap", "name": "GUDMAP", "uri_format": "https://gudmap.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gudmap.n2t": {"id": "bioregistry.gudmap.n2t", "sameas": "bioregistry.gudmap", "homepage": "http://www.gudmap.org/", "prefix": "gudmap", "name": "GUDMAP", "uri_format": "https://gudmap.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gudmap": {"id": "bioregistry.gudmap", "homepage": null, "prefix": "gudmap", "name": "Genitourinary Development Molecular Anatomy Project", "uri_format": "https://gudmap.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gwascentral.marker.miriam": {"id": "bioregistry.gwascentral.marker.miriam", "sameas": "bioregistry.gwascentral.marker", "homepage": "https://www.gwascentral.org/markers/", "prefix": "gwascentral.marker", "name": "GWAS Central Marker", "uri_format": "https://www.gwascentral.org/marker/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gwascentral.marker.n2t": {"id": "bioregistry.gwascentral.marker.n2t", "sameas": "bioregistry.gwascentral.marker", "homepage": "https://www.gwascentral.org/markers/", "prefix": "gwascentral.marker", "name": "GWAS Central Marker at University of Leicester", "uri_format": "https://www.gwascentral.org/marker/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gwascentral.marker": {"id": "bioregistry.gwascentral.marker", "homepage": "https://www.gwascentral.org/markers", "prefix": "gwascentral.marker", "name": "GWAS Central Marker at University of Leicester", "uri_format": "https://www.gwascentral.org/marker/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gwascentral.phenotype.miriam": {"id": "bioregistry.gwascentral.phenotype.miriam", "sameas": "bioregistry.gwascentral.phenotype", "homepage": "https://www.gwascentral.org/phenotypes", "prefix": "gwascentral.phenotype", "name": "GWAS Central Phenotype", "uri_format": "https://www.gwascentral.org/phenotype/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gwascentral.phenotype.n2t": {"id": "bioregistry.gwascentral.phenotype.n2t", "sameas": "bioregistry.gwascentral.phenotype", "homepage": "https://www.gwascentral.org/phenotypes", "prefix": "gwascentral.phenotype", "name": "GWAS Central Phenotype at University of Leicester", "uri_format": "https://www.gwascentral.org/phenotype/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gwascentral.phenotype": {"id": "bioregistry.gwascentral.phenotype", "homepage": "https://www.gwascentral.org/phenotypes", "prefix": "gwascentral.phenotype", "name": "GWAS Central Phenotype at University of Leicester", "uri_format": "https://www.gwascentral.org/phenotype/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gwascentral.study.miriam": {"id": "bioregistry.gwascentral.study.miriam", "sameas": "bioregistry.gwascentral.study", "homepage": "https://www.gwascentral.org/studies", "prefix": "gwascentral.study", "name": "GWAS Central Study", "uri_format": "https://www.gwascentral.org/study/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gwascentral.study.n2t": {"id": "bioregistry.gwascentral.study.n2t", "sameas": "bioregistry.gwascentral.study", "homepage": "https://www.gwascentral.org/studies", "prefix": "gwascentral.study", "name": "GWAS Central Study at University of Leicester", "uri_format": "https://www.gwascentral.org/study/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gwascentral.study.prefixcommons": {"id": "bioregistry.gwascentral.study.prefixcommons", "sameas": "bioregistry.gwascentral.study", "homepage": "http://hgvbase.cgb.ki.se", "prefix": "hgvbase", "name": "Human Genome Variation Database: Genotype-to-Phenotype", "uri_format": "http://www.hgvbaseg2p.org/study/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.gwascentral.study": {"id": "bioregistry.gwascentral.study", "homepage": "https://www.gwascentral.org/studies", "prefix": "gwascentral.study", "name": "Human Genome Variation Database: Genotype-to-Phenotype", "uri_format": "https://www.gwascentral.org/study/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.gxa.expt.miriam": {"id": "bioregistry.gxa.expt.miriam", "sameas": "bioregistry.gxa.expt", "homepage": "https://www.ebi.ac.uk/gxa/", "prefix": "gxa.expt", "name": "GXA Expt", "uri_format": "https://www.ebi.ac.uk/gxa/experiments/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gxa.expt.n2t": {"id": "bioregistry.gxa.expt.n2t", "sameas": "bioregistry.gxa.expt", "homepage": "https://www.ebi.ac.uk/gxa/", "prefix": "gxa.expt", "name": "GXA Expt at EBI", "uri_format": "https://www.ebi.ac.uk/gxa/experiments/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gxa.expt": {"id": "bioregistry.gxa.expt", "homepage": null, "prefix": "gxa.expt", "name": "GXA Expt at EBI", "uri_format": "https://www.ebi.ac.uk/gxa/experiments/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.gxa.gene.miriam": {"id": "bioregistry.gxa.gene.miriam", "sameas": "bioregistry.gxa.gene", "homepage": "https://www.ebi.ac.uk/gxa/", "prefix": "gxa.gene", "name": "GXA Gene", "uri_format": "https://www.ebi.ac.uk/gxa/genes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.gxa.gene.n2t": {"id": "bioregistry.gxa.gene.n2t", "sameas": "bioregistry.gxa.gene", "homepage": "https://www.ebi.ac.uk/gxa/", "prefix": "gxa.gene", "name": "GXA Gene at EBI", "uri_format": "https://www.ebi.ac.uk/gxa/genes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.gxa.gene": {"id": "bioregistry.gxa.gene", "homepage": null, "prefix": "gxa.gene", "name": "GXA Gene at EBI", "uri_format": "https://www.ebi.ac.uk/gxa/genes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hagr.genage.prefixcommons": {"id": "bioregistry.hagr.genage.prefixcommons", "sameas": "bioregistry.hagr.genage", "homepage": "http://genomics.senescence.info/genes/", "prefix": "genage", "name": "GenAge: The Ageing Gene Database", "uri_format": "http://genomics.senescence.info/genes/details.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "developmental biology"], "authority": "prefixcommons"}, "bioregistry.hagr.genage": {"id": "bioregistry.hagr.genage", "homepage": null, "prefix": "hagr.genage", "name": "GenAge: The Ageing Gene Database", "uri_format": "http://genomics.senescence.info/genes/details.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "developmental biology"], "authority": "bioregistry"}, "bioregistry.hagr.gendr.prefixcommons": {"id": "bioregistry.hagr.gendr.prefixcommons", "sameas": "bioregistry.hagr.gendr", "homepage": "http://genomics.senescence.info/diet/", "prefix": "gendr", "name": "GenDR: The Dietary Restriction Gene Database", "uri_format": "http://genomics.senescence.info/diet/details.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "health sciences", "developmental biology"], "authority": "prefixcommons"}, "bioregistry.hagr.gendr": {"id": "bioregistry.hagr.gendr", "homepage": null, "prefix": "hagr.gendr", "name": "GenDR: The Dietary Restriction Gene Database", "uri_format": "http://genomics.senescence.info/diet/details.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "health sciences", "developmental biology"], "authority": "bioregistry"}, "bioregistry.hamap.miriam": {"id": "bioregistry.hamap.miriam", "sameas": "bioregistry.hamap", "homepage": "https://hamap.expasy.org/", "prefix": "hamap", "name": "HAMAP", "uri_format": "https://hamap.expasy.org/unirule/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hamap.n2t": {"id": "bioregistry.hamap.n2t", "sameas": "bioregistry.hamap", "homepage": "https://hamap.expasy.org/", "prefix": "hamap", "name": "HAPMAP at Swiss Institute of Bioinformatics", "uri_format": "https://hamap.expasy.org/unirule/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hamap.prefixcommons": {"id": "bioregistry.hamap.prefixcommons", "sameas": "bioregistry.hamap", "homepage": "http://us.expasy.org/sprot/hamap/", "prefix": "hamap", "name": "HAMAP database of microbial protein families", "uri_format": "http://us.expasy.org/unirule/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.hamap.go": {"id": "bioregistry.hamap.go", "sameas": "bioregistry.hamap", "homepage": "http://hamap.expasy.org/", "prefix": "HAMAP", "name": "High-quality Automated and Manual Annotation of microbial Proteomes", "uri_format": "http://hamap.expasy.org/unirule/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.hamap.uniprot": {"id": "bioregistry.hamap.uniprot", "sameas": "bioregistry.hamap", "homepage": "https://hamap.expasy.org/", "prefix": "DB-0041", "name": "HAMAP database of protein families", "uri_format": "https://hamap.expasy.org/signature/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.hamap": {"id": "bioregistry.hamap", "homepage": null, "prefix": "hamap", "name": "High-quality Automated and Manual Annotation of microbial Proteomes", "uri_format": "https://hamap.expasy.org/unirule/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.hancestro.biolink": {"id": "bioregistry.hancestro.biolink", "sameas": "bioregistry.hancestro", "homepage": null, "prefix": "HANCESTRO", "name": null, "uri_format": "http://www.ebi.ac.uk/ancestro/ancestro_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.hancestro": {"id": "bioregistry.hancestro", "homepage": null, "prefix": "hancestro", "name": "Human Ancestry Ontology", "uri_format": "http://www.ebi.ac.uk/ancestro/ancestro_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hbvar.prefixcommons": {"id": "bioregistry.hbvar.prefixcommons", "sameas": "bioregistry.hbvar", "homepage": "http://globin.cse.psu.edu/globin/hbvar", "prefix": "hbvar", "name": "A Database of Human Hemoglobin Variants and Thalassemias", "uri_format": "http://globin.bx.psu.edu/cgi-bin/hbvar/query_vars3?mode=output&display_format=page&i=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.hbvar": {"id": "bioregistry.hbvar", "homepage": null, "prefix": "hbvar", "name": "A Database of Human Hemoglobin Variants and Thalassemias", "uri_format": "http://globin.bx.psu.edu/cgi-bin/hbvar/query_vars3?mode=output&display_format=page&i=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.hcpcs.biolink": {"id": "bioregistry.hcpcs.biolink", "sameas": "bioregistry.hcpcs", "homepage": null, "prefix": "HCPCS", "name": null, "uri_format": "http://purl.bioontology.org/ontology/HCPCS/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.hcpcs": {"id": "bioregistry.hcpcs", "homepage": "https://www.cms.gov/Medicare/Coding/MedHCPCSGenInfo", "prefix": "hcpcs", "name": "Healthcare Common Procedure Coding System", "uri_format": "http://purl.bioontology.org/ontology/HCPCS/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hcvdb.miriam": {"id": "bioregistry.hcvdb.miriam", "sameas": "bioregistry.hcvdb", "homepage": "http://euhcvdb.ibcp.fr/euHCVdb/", "prefix": "hcvdb", "name": "HCVDB", "uri_format": "https://euhcvdb.ibcp.fr/euHCVdb/do/displayHCVEntry?primaryAC=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hcvdb.n2t": {"id": "bioregistry.hcvdb.n2t", "sameas": "bioregistry.hcvdb", "homepage": "http://euhcvdb.ibcp.fr/euHCVdb/", "prefix": "hcvdb", "name": "HCVDB at CNRS", "uri_format": "https://euhcvdb.ibcp.fr/euHCVdb/do/displayHCVEntry?primaryAC=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hcvdb.prefixcommons": {"id": "bioregistry.hcvdb.prefixcommons", "sameas": "bioregistry.hcvdb", "homepage": "http://hcv.lanl.gov/", "prefix": "hcv", "name": "Hepatitis C Virus (HCV) Database Project", "uri_format": "http://hcv.lanl.gov/components/sequence/HCV/asearch/query_one.comp?se_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.hcvdb": {"id": "bioregistry.hcvdb", "homepage": null, "prefix": "hcvdb", "name": "Hepatitis C Virus (HCV) Database Project", "uri_format": "https://euhcvdb.ibcp.fr/euHCVdb/do/displayHCVEntry?primaryAC=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.hdr.miriam": {"id": "bioregistry.hdr.miriam", "sameas": "bioregistry.hdr", "homepage": "http://research.nhgri.nih.gov/apps/homeodomain/web/", "prefix": "hdr", "name": "Homeodomain Research", "uri_format": "http://research.nhgri.nih.gov/apps/homeodomain/web/index.cgi?mode=view&view=proteins&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hdr.n2t": {"id": "bioregistry.hdr.n2t", "sameas": "bioregistry.hdr", "homepage": "http://research.nhgri.nih.gov/apps/homeodomain/web/", "prefix": "hdr", "name": "Homeodomain Research at National Human Genome Research Institute (NIH)", "uri_format": "http://research.nhgri.nih.gov/apps/homeodomain/web/index.cgi?mode=view&view=proteins&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hdr.prefixcommons": {"id": "bioregistry.hdr.prefixcommons", "sameas": "bioregistry.hdr", "homepage": "http://research.nhgri.nih.gov/homeodomain/", "prefix": "hdr", "name": "Homeodomain Resource Database", "uri_format": "http://research.nhgri.nih.gov/homeodomain/?mode=view&view=proteins&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.hdr": {"id": "bioregistry.hdr", "homepage": null, "prefix": "hdr", "name": "Homeodomain Research at National Human Genome Research Institute (NIH)", "uri_format": "http://research.nhgri.nih.gov/homeodomain/?mode=view&view=proteins&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.hgmd.miriam": {"id": "bioregistry.hgmd.miriam", "sameas": "bioregistry.hgmd", "homepage": "http://www.hgmd.cf.ac.uk/ac/index.php", "prefix": "hgmd", "name": "HGMD", "uri_format": "http://www.hgmd.cf.ac.uk/ac/gene.php?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hgmd.n2t": {"id": "bioregistry.hgmd.n2t", "sameas": "bioregistry.hgmd", "homepage": "http://www.hgmd.cf.ac.uk/ac/index.php", "prefix": "hgmd", "name": "HGMD at Cardiff University", "uri_format": "http://www.hgmd.cf.ac.uk/ac/gene.php?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hgmd.biocontext": {"id": "bioregistry.hgmd.biocontext", "sameas": "bioregistry.hgmd", "homepage": null, "prefix": "HGMD", "name": null, "uri_format": "http://www.hgmd.cf.ac.uk/ac/gene.php?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.hgmd": {"id": "bioregistry.hgmd", "homepage": null, "prefix": "hgmd", "name": "Human Gene Mutation Database", "uri_format": "http://www.hgmd.cf.ac.uk/ac/gene.php?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hgnc.miriam": {"id": "bioregistry.hgnc.miriam", "sameas": "bioregistry.hgnc", "homepage": "https://www.genenames.org", "prefix": "hgnc", "name": "HGNC", "uri_format": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hgnc.n2t": {"id": "bioregistry.hgnc.n2t", "sameas": "bioregistry.hgnc", "homepage": "https://www.genenames.org", "prefix": "hgnc", "name": "HUGO Genome Nomenclature Committee", "uri_format": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hgnc.prefixcommons": {"id": "bioregistry.hgnc.prefixcommons", "sameas": "bioregistry.hgnc", "homepage": "http://www.genenames.org/", "prefix": "hgnc", "name": "HUGO Gene Nomenclature Committee", "uri_format": "http://www.genenames.org/data/hgnc_data.php?hgnc_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.hgnc.wikidata": {"id": "bioregistry.hgnc.wikidata", "sameas": "bioregistry.hgnc", "homepage": "http://www.genenames.org/", "prefix": "P354", "name": "HGNC ID", "uri_format": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "wikidata"}, "bioregistry.hgnc.go": {"id": "bioregistry.hgnc.go", "sameas": "bioregistry.hgnc", "homepage": "http://www.genenames.org/", "prefix": "HGNC", "name": "HUGO Gene Nomenclature Committee", "uri_format": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.hgnc.uniprot": {"id": "bioregistry.hgnc.uniprot", "sameas": "bioregistry.hgnc", "homepage": "https://www.genenames.org/", "prefix": "DB-0042", "name": "Human Gene Nomenclature Database", "uri_format": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.hgnc.cellosaurus": {"id": "bioregistry.hgnc.cellosaurus", "sameas": "bioregistry.hgnc", "homepage": "https://www.genenames.org", "prefix": "HGNC", "name": "Human Gene Nomenclature Committee Database", "uri_format": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "cellosaurus"}, "bioregistry.hgnc.biocontext": {"id": "bioregistry.hgnc.biocontext", "sameas": "bioregistry.hgnc", "homepage": null, "prefix": "HGNC", "name": null, "uri_format": "http://www.genenames.org/cgi-bin/gene_symbol_report?hgnc_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "biocontext"}, "bioregistry.hgnc": {"id": "bioregistry.hgnc", "homepage": "http://www.genenames.org", "prefix": "hgnc", "name": "Human Gene Nomenclature Committee Database", "uri_format": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.hgnc.genefamily.miriam": {"id": "bioregistry.hgnc.genefamily.miriam", "sameas": "bioregistry.hgnc.genefamily", "homepage": "https://www.genenames.org/", "prefix": "hgnc.genefamily", "name": "HGNC gene family", "uri_format": "https://www.genenames.org/cgi-bin/genefamilies/set/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hgnc.genefamily.n2t": {"id": "bioregistry.hgnc.genefamily.n2t", "sameas": "bioregistry.hgnc.genefamily", "homepage": "https://www.genenames.org/", "prefix": "hgnc.genefamily", "name": "HGNC gene family at HUGO Genome Nomenclature Committee", "uri_format": "https://www.genenames.org/cgi-bin/genefamilies/set/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hgnc.genefamily": {"id": "bioregistry.hgnc.genefamily", "homepage": "http://www.genenames.org", "prefix": "hgnc.genefamily", "name": "HGNC gene family at HUGO Genome Nomenclature Committee", "uri_format": "https://www.genenames.org/cgi-bin/genefamilies/set/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hgnc.genegroup.miriam": {"id": "bioregistry.hgnc.genegroup.miriam", "sameas": "bioregistry.hgnc.genegroup", "homepage": "https://www.genenames.org", "prefix": "hgnc.genegroup", "name": "HGNC Gene Group", "uri_format": "https://www.genenames.org/cgi-bin/genefamilies/set/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hgnc.genegroup": {"id": "bioregistry.hgnc.genegroup", "homepage": null, "prefix": "hgnc.genegroup", "name": "HGNC Gene Group", "uri_format": "https://www.genenames.org/cgi-bin/genefamilies/set/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hgnc.symbol.miriam": {"id": "bioregistry.hgnc.symbol.miriam", "sameas": "bioregistry.hgnc.symbol", "homepage": "https://www.genenames.org/", "prefix": "hgnc.symbol", "name": "HGNC Symbol", "uri_format": "https://www.genenames.org/cgi-bin/gene_symbol_report?match=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hgnc.symbol.n2t": {"id": "bioregistry.hgnc.symbol.n2t", "sameas": "bioregistry.hgnc.symbol", "homepage": "https://www.genenames.org/", "prefix": "hgnc.symbol", "name": "HGNC Symbol at HUGO Genome Nomenclature Committee", "uri_format": "https://www.genenames.org/cgi-bin/gene_symbol_report?match=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hgnc.symbol.wikidata": {"id": "bioregistry.hgnc.symbol.wikidata", "sameas": "bioregistry.hgnc.symbol", "homepage": "http://www.genenames.org/", "prefix": "P353", "name": "HGNC gene symbol", "uri_format": "https://www.genenames.org/tools/search/#!/all?query=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.hgnc.symbol": {"id": "bioregistry.hgnc.symbol", "homepage": null, "prefix": "hgnc.symbol", "name": "HGNC Symbol at HUGO Genome Nomenclature Committee", "uri_format": "https://www.genenames.org/tools/search/#!/all?query=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hinv.locus.miriam": {"id": "bioregistry.hinv.locus.miriam", "sameas": "bioregistry.hinv.locus", "homepage": "http://h-invitational.jp/hinv/ahg-db/index.jsp", "prefix": "hinv.locus", "name": "H-InvDb Locus", "uri_format": "http://h-invitational.jp/hinv/spsoup/locus_view?hix_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hinv.locus.n2t": {"id": "bioregistry.hinv.locus.n2t", "sameas": "bioregistry.hinv.locus", "homepage": "http://h-invitational.jp/hinv/ahg-db/index.jsp", "prefix": "hinv.locus", "name": "H-Invitational Locus View at BIRC", "uri_format": "http://h-invitational.jp/hinv/spsoup/locus_view?hix_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hinv.locus": {"id": "bioregistry.hinv.locus", "homepage": null, "prefix": "hinv.locus", "name": "H-Invitational Locus View at BIRC", "uri_format": "http://h-invitational.jp/hinv/spsoup/locus_view?hix_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hinv.protein.miriam": {"id": "bioregistry.hinv.protein.miriam", "sameas": "bioregistry.hinv.protein", "homepage": "http://h-invitational.jp/hinv/ahg-db/index.jsp", "prefix": "hinv.protein", "name": "H-InvDb Protein", "uri_format": "http://h-invitational.jp/hinv/protein/protein_view.cgi?hip_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hinv.protein.n2t": {"id": "bioregistry.hinv.protein.n2t", "sameas": "bioregistry.hinv.protein", "homepage": "http://h-invitational.jp/hinv/ahg-db/index.jsp", "prefix": "hinv.protein", "name": "H-Invitational Protein View at BIRC", "uri_format": "http://h-invitational.jp/hinv/protein/protein_view.cgi?hip_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hinv.protein": {"id": "bioregistry.hinv.protein", "homepage": null, "prefix": "hinv.protein", "name": "H-Invitational Protein View at BIRC", "uri_format": "http://h-invitational.jp/hinv/protein/protein_view.cgi?hip_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hinv.transcript.miriam": {"id": "bioregistry.hinv.transcript.miriam", "sameas": "bioregistry.hinv.transcript", "homepage": "http://h-invitational.jp/hinv/ahg-db/index.jsp", "prefix": "hinv.transcript", "name": "H-InvDb Transcript", "uri_format": "http://h-invitational.jp/hinv/spsoup/transcript_view?hit_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hinv.transcript.n2t": {"id": "bioregistry.hinv.transcript.n2t", "sameas": "bioregistry.hinv.transcript", "homepage": "http://h-invitational.jp/hinv/ahg-db/index.jsp", "prefix": "hinv.transcript", "name": "H-Invitational Transcript View at BIRC", "uri_format": "http://h-invitational.jp/hinv/spsoup/transcript_view?hit_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hinv.transcript": {"id": "bioregistry.hinv.transcript", "homepage": null, "prefix": "hinv.transcript", "name": "H-Invitational Transcript View at BIRC", "uri_format": "http://h-invitational.jp/hinv/spsoup/transcript_view?hit_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hipsci.cellosaurus": {"id": "bioregistry.hipsci.cellosaurus", "sameas": "bioregistry.hipsci", "homepage": "https://www.hipsci.org", "prefix": "HipSci", "name": "Human Induced Pluripotent Stem Cells Initiative", "uri_format": "https://www.hipsci.org/lines/#/lines/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.hipsci": {"id": "bioregistry.hipsci", "homepage": null, "prefix": "hipsci", "name": "Human Induced Pluripotent Stem Cells Initiative", "uri_format": "https://www.hipsci.org/lines/#/lines/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hivreagentprogram.cellosaurus": {"id": "bioregistry.hivreagentprogram.cellosaurus", "sameas": "bioregistry.hivreagentprogram", "homepage": "https://www.hivreagentprogram.org/", "prefix": "HIVReagentProgram", "name": "NIH HIV Reagent Program", "uri_format": "https://www.hivreagentprogram.org/Catalog/HRPCellLines/$1.aspx", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.hivreagentprogram": {"id": "bioregistry.hivreagentprogram", "homepage": null, "prefix": "hivreagentprogram", "name": "NIH HIV Reagent Program", "uri_format": "https://www.hivreagentprogram.org/Catalog/HRPCellLines/$1.aspx", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hmdb.miriam": {"id": "bioregistry.hmdb.miriam", "sameas": "bioregistry.hmdb", "homepage": "http://www.hmdb.ca/", "prefix": "hmdb", "name": "HMDB", "uri_format": "http://www.hmdb.ca/metabolites/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hmdb.n2t": {"id": "bioregistry.hmdb.n2t", "sameas": "bioregistry.hmdb", "homepage": "http://www.hmdb.ca/", "prefix": "hmdb", "name": "The Human Metabolome Database", "uri_format": "http://www.hmdb.ca/metabolites/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hmdb.prefixcommons": {"id": "bioregistry.hmdb.prefixcommons", "sameas": "bioregistry.hmdb", "homepage": "http://www.hmdb.ca", "prefix": "hmdb", "name": "The Human Metabolome Database", "uri_format": "http://www.hmdb.ca/metabolites/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "prefixcommons"}, "bioregistry.hmdb.wikidata": {"id": "bioregistry.hmdb.wikidata", "sameas": "bioregistry.hmdb", "homepage": null, "prefix": "P2057", "name": "Human Metabolome Database ID", "uri_format": "https://www.hmdb.ca/metabolites/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "wikidata"}, "bioregistry.hmdb.biocontext": {"id": "bioregistry.hmdb.biocontext", "sameas": "bioregistry.hmdb", "homepage": null, "prefix": "HMDB", "name": null, "uri_format": "http://www.hmdb.ca/metabolites/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "biocontext"}, "bioregistry.hmdb": {"id": "bioregistry.hmdb", "homepage": null, "prefix": "hmdb", "name": "The Human Metabolome Database", "uri_format": "https://www.hmdb.ca/metabolites/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "bioregistry"}, "bioregistry.hogenom.miriam": {"id": "bioregistry.hogenom.miriam", "sameas": "bioregistry.hogenom", "homepage": "http://pbil.univ-lyon1.fr/databases/hogenom/", "prefix": "hogenom", "name": "HOGENOM", "uri_format": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?db=HOGENOM5&query=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hogenom.n2t": {"id": "bioregistry.hogenom.n2t", "sameas": "bioregistry.hogenom", "homepage": "http://pbil.univ-lyon1.fr/databases/hogenom/", "prefix": "hogenom", "name": "HOGENOM at CNRS", "uri_format": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?db=HOGENOM5&query=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hogenom.prefixcommons": {"id": "bioregistry.hogenom.prefixcommons", "sameas": "bioregistry.hogenom", "homepage": "http://pbil.univ-lyon1.fr/databases/hogenom.php", "prefix": "hogenom", "name": "The HOGENOM Database of Homologous Genes from Fully Sequenced Organisms", "uri_format": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?db=HOGENOM5&query=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.hogenom.uniprot": {"id": "bioregistry.hogenom.uniprot", "sameas": "bioregistry.hogenom", "homepage": "http://hogenom.univ-lyon1.fr/", "prefix": "DB-0044", "name": "The HOGENOM Database of Homologous Genes from Fully Sequenced Organisms", "uri_format": "http://hogenom.univ-lyon1.fr/query_sequence?seq=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.hogenom": {"id": "bioregistry.hogenom", "homepage": null, "prefix": "hogenom", "name": "The HOGENOM Database of Homologous Genes from Fully Sequenced Organisms", "uri_format": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?db=HOGENOM5&query=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.homd.seq.miriam": {"id": "bioregistry.homd.seq.miriam", "sameas": "bioregistry.homd.seq", "homepage": "http://www.homd.org/index.php", "prefix": "homd.seq", "name": "HOMD Sequence Metainformation", "uri_format": "http://www.homd.org/modules.php?op=modload&name=GenomeList&file=index&link=detailinfo&seqid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.homd.seq.n2t": {"id": "bioregistry.homd.seq.n2t", "sameas": "bioregistry.homd.seq", "homepage": "http://www.homd.org/index.php", "prefix": "homd.seq", "name": "HOMD sequence metainformation at The Forsyth Institute", "uri_format": "http://www.homd.org/modules.php?op=modload&name=GenomeList&file=index&link=detailinfo&seqid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.homd.seq.prefixcommons": {"id": "bioregistry.homd.seq.prefixcommons", "sameas": "bioregistry.homd.seq", "homepage": null, "prefix": "homd.seq", "name": "HOMD Sequence Metainformation", "uri_format": "http://www.homd.org/modules.php?op=modload&name=GenomeList&file=index&link=detailinfo&seqid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "microbiology"], "authority": "prefixcommons"}, "bioregistry.homd.seq": {"id": "bioregistry.homd.seq", "homepage": null, "prefix": "homd.seq", "name": "HOMD sequence metainformation at The Forsyth Institute", "uri_format": "http://www.homd.org/modules.php?op=modload&name=GenomeList&file=index&link=detailinfo&seqid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "microbiology"], "authority": "bioregistry"}, "bioregistry.homd.taxon.miriam": {"id": "bioregistry.homd.taxon.miriam", "sameas": "bioregistry.homd.taxon", "homepage": "http://www.homd.org/index.php", "prefix": "homd.taxon", "name": "HOMD Taxonomy", "uri_format": "http://www.homd.org/modules.php?op=modload&name=HOMD&file=index&oraltaxonid=$1&view=dynamic", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.homd.taxon.n2t": {"id": "bioregistry.homd.taxon.n2t", "sameas": "bioregistry.homd.taxon", "homepage": "http://www.homd.org/index.php", "prefix": "homd.taxon", "name": "HOMD taxon information at The Forsyth Institute", "uri_format": "http://www.homd.org/modules.php?op=modload&name=HOMD&file=index&oraltaxonid=$1&view=dynamic", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.homd.taxon.prefixcommons": {"id": "bioregistry.homd.taxon.prefixcommons", "sameas": "bioregistry.homd.taxon", "homepage": null, "prefix": "homd.taxon", "name": "HOMD Taxonomy", "uri_format": "http://www.homd.org/modules.php?op=modload&name=HOMD&file=index&oraltaxonid=$1&view=dynamic", "source": "bioregistry.io", "subjects": ["biological sciences", "microbiology"], "authority": "prefixcommons"}, "bioregistry.homd.taxon": {"id": "bioregistry.homd.taxon", "homepage": null, "prefix": "homd.taxon", "name": "HOMD taxon information at The Forsyth Institute", "uri_format": "http://www.homd.org/modules.php?op=modload&name=HOMD&file=index&oraltaxonid=$1&view=dynamic", "source": "bioregistry.io", "subjects": ["biological sciences", "microbiology"], "authority": "bioregistry"}, "bioregistry.homologene.miriam": {"id": "bioregistry.homologene.miriam", "sameas": "bioregistry.homologene", "homepage": "https://www.ncbi.nlm.nih.gov/homologene/", "prefix": "homologene", "name": "HomoloGene", "uri_format": "https://www.ncbi.nlm.nih.gov/homologene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.homologene.n2t": {"id": "bioregistry.homologene.n2t", "sameas": "bioregistry.homologene", "homepage": "https://www.ncbi.nlm.nih.gov/homologene/", "prefix": "homologene", "name": "Homologene at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/homologene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.homologene.prefixcommons": {"id": "bioregistry.homologene.prefixcommons", "sameas": "bioregistry.homologene", "homepage": "http://wwww.ncbi.nlm.nih.gov/homologene", "prefix": "homologene", "name": "NCBI Homologene", "uri_format": "http://www.ncbi.nlm.nih.gov/homologene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.homologene.wikidata": {"id": "bioregistry.homologene.wikidata", "sameas": "bioregistry.homologene", "homepage": "http://www.ncbi.nlm.nih.gov/homologene", "prefix": "P593", "name": "HomoloGene ID", "uri_format": "https://www.ncbi.nlm.nih.gov/homologene?term=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "wikidata"}, "bioregistry.homologene.biocontext": {"id": "bioregistry.homologene.biocontext", "sameas": "bioregistry.homologene", "homepage": null, "prefix": "HOMOLOGENE", "name": null, "uri_format": "http://www.ncbi.nlm.nih.gov/homologene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "biocontext"}, "bioregistry.homologene": {"id": "bioregistry.homologene", "homepage": null, "prefix": "homologene", "name": "NCBI HomoloGene Database", "uri_format": "https://www.ncbi.nlm.nih.gov/homologene?term=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.horizon_discovery.cellosaurus": {"id": "bioregistry.horizon_discovery.cellosaurus", "sameas": "bioregistry.horizon_discovery", "homepage": "https://horizondiscovery.com/", "prefix": "Horizon_Discovery", "name": "Horizon Discovery cell line collection", "uri_format": "https://horizondiscovery.com/en/search?searchterm=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.horizon_discovery": {"id": "bioregistry.horizon_discovery", "homepage": null, "prefix": "horizon_discovery", "name": "Horizon Discovery cell line collection", "uri_format": "https://horizondiscovery.com/en/search?searchterm=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hovergen.miriam": {"id": "bioregistry.hovergen.miriam", "sameas": "bioregistry.hovergen", "homepage": "http://pbil.univ-lyon1.fr/databases/hovergen.php", "prefix": "hovergen", "name": "HOVERGEN", "uri_format": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?query=$1&db=HOVERGEN", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hovergen.n2t": {"id": "bioregistry.hovergen.n2t", "sameas": "bioregistry.hovergen", "homepage": "http://pbil.univ-lyon1.fr/databases/hovergen.php", "prefix": "hovergen", "name": "Hovergen", "uri_format": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?query=$1&db=HOVERGEN", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hovergen.prefixcommons": {"id": "bioregistry.hovergen.prefixcommons", "sameas": "bioregistry.hovergen", "homepage": "http://pbil.univ-lyon1.fr/databases/hovergen.html", "prefix": "hovergen", "name": "HOVERGEN: Homologous Vertebrate Genes Database", "uri_format": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?query=$1&db=HOVERGEN", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.hovergen": {"id": "bioregistry.hovergen", "homepage": "https://pbil.univ-lyon1.fr/databases/hovergen.php", "prefix": "hovergen", "name": "HOVERGEN: Homologous Vertebrate Genes Database", "uri_format": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?query=$1&db=HOVERGEN", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.hp.miriam": {"id": "bioregistry.hp.miriam", "sameas": "bioregistry.hp", "homepage": "http://human-phenotype-ontology.github.io/", "prefix": "hp", "name": "Human Phenotype Ontology", "uri_format": "https://hpo.jax.org/app/browse/term/HP:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hp.n2t": {"id": "bioregistry.hp.n2t", "sameas": "bioregistry.hp", "homepage": "http://human-phenotype-ontology.github.io/", "prefix": "hp", "name": "Human Phenotype Ontology at Institute for Medical Genetics and Human Genetics", "uri_format": "http://compbio.charite.de/hpoweb/showterm?id=HP:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hp.wikidata": {"id": "bioregistry.hp.wikidata", "sameas": "bioregistry.hp", "homepage": "http://human-phenotype-ontology.github.io/about.html", "prefix": "P3841", "name": "Human Phenotype Ontology ID", "uri_format": "https://hpo.jax.org/app/browse/term/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.hp.biocontext": {"id": "bioregistry.hp.biocontext", "sameas": "bioregistry.hp", "homepage": null, "prefix": "HPO", "name": null, "uri_format": "http://human-phenotype-ontology.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.hp": {"id": "bioregistry.hp", "homepage": null, "prefix": "hp", "name": "Human Phenotype Ontology at Institute for Medical Genetics and Human Genetics", "uri_format": "https://hpo.jax.org/app/browse/term/HP:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hpa.miriam": {"id": "bioregistry.hpa.miriam", "sameas": "bioregistry.hpa", "homepage": "http://www.proteinatlas.org/", "prefix": "hpa", "name": "HPA", "uri_format": "http://www.proteinatlas.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hpa.n2t": {"id": "bioregistry.hpa.n2t", "sameas": "bioregistry.hpa", "homepage": "http://www.proteinatlas.org/", "prefix": "hpa", "name": "Human Protein Atlas at AlbaNova University", "uri_format": "http://www.proteinatlas.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hpa.prefixcommons": {"id": "bioregistry.hpa.prefixcommons", "sameas": "bioregistry.hpa", "homepage": "http://www.proteinatlas.org/", "prefix": "hpa", "name": "Human Protein Atlas", "uri_format": "http://www.proteinatlas.org/gene_info.php?ensembl_gene_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.hpa.go": {"id": "bioregistry.hpa.go", "sameas": "bioregistry.hpa", "homepage": "http://www.proteinatlas.org/", "prefix": "HPA", "name": "Human Protein Atlas tissue profile information", "uri_format": "http://www.proteinatlas.org/tissue_profile.php?antibody_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.hpa.uniprot": {"id": "bioregistry.hpa.uniprot", "sameas": "bioregistry.hpa", "homepage": "https://www.proteinatlas.org/", "prefix": "DB-0046", "name": "Human Protein Atlas", "uri_format": "https://www.proteinatlas.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.hpa": {"id": "bioregistry.hpa", "homepage": null, "prefix": "hpa", "name": "Human Protein Atlas tissue profile information", "uri_format": "https://www.proteinatlas.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.hpm.peptide.miriam": {"id": "bioregistry.hpm.peptide.miriam", "sameas": "bioregistry.hpm.peptide", "homepage": "http://www.humanproteomemap.org/index.php", "prefix": "hpm.peptide", "name": "Human Proteome Map Peptide", "uri_format": "http://www.humanproteomemap.org/spectrum.php?pep_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hpm.peptide.n2t": {"id": "bioregistry.hpm.peptide.n2t", "sameas": "bioregistry.hpm.peptide", "homepage": "http://www.humanproteomemap.org/index.php", "prefix": "hpm.peptide", "name": "Human Proteome Map Peptide at Institute of Bioinformatics (Bangalore)", "uri_format": "http://www.humanproteomemap.org/spectrum.php?pep_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hpm.peptide": {"id": "bioregistry.hpm.peptide", "homepage": null, "prefix": "hpm.peptide", "name": "Human Proteome Map Peptide at Institute of Bioinformatics (Bangalore)", "uri_format": "http://www.humanproteomemap.org/spectrum.php?pep_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hpm.protein.miriam": {"id": "bioregistry.hpm.protein.miriam", "sameas": "bioregistry.hpm.protein", "homepage": "http://www.humanproteomemap.org/index.php", "prefix": "hpm.protein", "name": "Human Proteome Map Protein", "uri_format": "http://www.humanproteomemap.org/protein.php?hpm_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hpm.protein.n2t": {"id": "bioregistry.hpm.protein.n2t", "sameas": "bioregistry.hpm.protein", "homepage": "http://www.humanproteomemap.org/index.php", "prefix": "hpm.protein", "name": "Human Proteome Map Protein at Institute of Bioinformatics (Bangalore)", "uri_format": "http://www.humanproteomemap.org/protein.php?hpm_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hpm.protein": {"id": "bioregistry.hpm.protein", "homepage": null, "prefix": "hpm.protein", "name": "Human Proteome Map Protein at Institute of Bioinformatics (Bangalore)", "uri_format": "http://www.humanproteomemap.org/protein.php?hpm_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hprd.miriam": {"id": "bioregistry.hprd.miriam", "sameas": "bioregistry.hprd", "homepage": "http://www.hprd.org/", "prefix": "hprd", "name": "HPRD", "uri_format": "http://www.hprd.org/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hprd.n2t": {"id": "bioregistry.hprd.n2t", "sameas": "bioregistry.hprd", "homepage": "http://www.hprd.org/", "prefix": "hprd", "name": "Human Protein Reference Database", "uri_format": "http://www.hprd.org/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hprd.biocontext": {"id": "bioregistry.hprd.biocontext", "sameas": "bioregistry.hprd", "homepage": null, "prefix": "HPRD", "name": null, "uri_format": "http://www.hprd.org/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "biocontext"}, "bioregistry.hprd": {"id": "bioregistry.hprd", "homepage": null, "prefix": "hprd", "name": "Human Protein Reference Database", "uri_format": "http://www.hprd.org/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.hpscreg.miriam": {"id": "bioregistry.hpscreg.miriam", "sameas": "bioregistry.hpscreg", "homepage": "https://hpscreg.eu/", "prefix": "hpscreg", "name": "Human Pluripotent Stem Cell Registry", "uri_format": "https://hpscreg.eu/cell-line/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hpscreg.n2t": {"id": "bioregistry.hpscreg.n2t", "sameas": "bioregistry.hpscreg", "homepage": "https://hpscreg.eu/", "prefix": "hpscreg", "name": "Human Pluripotent Stem Cell Registry", "uri_format": "https://hpscreg.eu/cell-line/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hpscreg.cellosaurus": {"id": "bioregistry.hpscreg.cellosaurus", "sameas": "bioregistry.hpscreg", "homepage": "https://hpscreg.eu", "prefix": "hPSCreg", "name": "Human Pluripotent Stem Cell Registry", "uri_format": "https://hpscreg.eu/cell-line/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.hpscreg": {"id": "bioregistry.hpscreg", "homepage": null, "prefix": "hpscreg", "name": "Human Pluripotent Stem Cell Registry", "uri_format": "https://hpscreg.eu/cell-line/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hsapdv.biolink": {"id": "bioregistry.hsapdv.biolink", "sameas": "bioregistry.hsapdv", "homepage": null, "prefix": "HsapDv", "name": null, "uri_format": "http://purl.obolibrary.org/obo/HsapDv_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.hsapdv": {"id": "bioregistry.hsapdv", "homepage": null, "prefix": "hsapdv", "name": "Human Developmental Stages Ontology", "uri_format": "http://purl.obolibrary.org/obo/HsapDv_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hsdb.wikidata": {"id": "bioregistry.hsdb.wikidata", "sameas": "bioregistry.hsdb", "homepage": null, "prefix": "P2062", "name": "HSDB ID", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/source/hsdb/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.hsdb": {"id": "bioregistry.hsdb", "homepage": "https://pubchem.ncbi.nlm.nih.gov/source/hsdb", "prefix": "hsdb", "name": "Hazardous Substances Data Bank", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/source/hsdb/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.hssp.miriam": {"id": "bioregistry.hssp.miriam", "sameas": "bioregistry.hssp", "homepage": "http://swift.cmbi.kun.nl/swift/hssp/", "prefix": "hssp", "name": "HSSP", "uri_format": "ftp://ftp.embl-heidelberg.de/pub/databases/protein_extras/hssp/$1.hssp.bz2", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.hssp.n2t": {"id": "bioregistry.hssp.n2t", "sameas": "bioregistry.hssp", "homepage": "ftp://ftp.cmbi.ru.nl/pub/molbio/data/hssp/", "prefix": "hssp", "name": "HSSP at CMBI", "uri_format": "ftp://ftp.cmbi.ru.nl/pub/molbio/data/hssp/$1.hssp.bz2", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.hssp": {"id": "bioregistry.hssp", "homepage": null, "prefix": "hssp", "name": "Database of homology-derived secondary structure of proteins", "uri_format": "ftp://ftp.embl-heidelberg.de/pub/databases/protein_extras/hssp/$1.hssp.bz2", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.huge.miriam": {"id": "bioregistry.huge.miriam", "sameas": "bioregistry.huge", "homepage": "http://www.kazusa.or.jp/huge/", "prefix": "huge", "name": "HUGE", "uri_format": "http://www.kazusa.or.jp/huge/gfpage/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.huge.n2t": {"id": "bioregistry.huge.n2t", "sameas": "bioregistry.huge", "homepage": "http://www.kazusa.or.jp/huge/", "prefix": "huge", "name": "HUGE at Kazusa DNA Research Institute", "uri_format": "http://www.kazusa.or.jp/huge/gfpage/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.huge.prefixcommons": {"id": "bioregistry.huge.prefixcommons", "sameas": "bioregistry.huge", "homepage": "http://www.kazusa.or.jp/huge/", "prefix": "huge", "name": "Human Unidentified Gene-Encoded large proteins database", "uri_format": "http://www.kazusa.or.jp/huge/cgi/view_direct.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.huge.uniprot": {"id": "bioregistry.huge.uniprot", "sameas": "bioregistry.huge", "homepage": "http://www.kazusa.or.jp/huge/", "prefix": "DB-0049", "name": "Human Unidentified Gene-Encoded large proteins database", "uri_format": "http://www.kazusa.or.jp/huge/gfpage/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "uniprot"}, "bioregistry.huge": {"id": "bioregistry.huge", "homepage": null, "prefix": "huge", "name": "Human Unidentified Gene-Encoded large proteins database", "uri_format": "http://www.kazusa.or.jp/huge/gfpage/$1/", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.iao.miriam": {"id": "bioregistry.iao.miriam", "sameas": "bioregistry.iao", "homepage": "http://www.ontobee.org/ontology/IAO", "prefix": "iao", "name": "Information Artifact Ontology", "uri_format": "http://purl.obolibrary.org/obo/IAO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.iao.n2t": {"id": "bioregistry.iao.n2t", "sameas": "bioregistry.iao", "homepage": "http://www.ontobee.org/ontology/IAO", "prefix": "iao", "name": "IAO through Ontobee", "uri_format": "http://purl.obolibrary.org/obo/IAO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.iao": {"id": "bioregistry.iao", "homepage": null, "prefix": "iao", "name": "Information Artifact Ontology (IAO)", "uri_format": "http://purl.obolibrary.org/obo/IAO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.icd10.miriam": {"id": "bioregistry.icd10.miriam", "sameas": "bioregistry.icd10", "homepage": "http://www.who.int/classifications/icd/en/", "prefix": "icd", "name": "ICD", "uri_format": "http://apps.who.int/classifications/icd10/browse/2010/en#/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.icd10.n2t": {"id": "bioregistry.icd10.n2t", "sameas": "bioregistry.icd10", "homepage": "http://www.who.int/classifications/icd/en/", "prefix": "icd", "name": "International Statistical Classification of Diseases and Related Health Problems", "uri_format": "http://apps.who.int/classifications/icd10/browse/2010/en#/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.icd10.prefixcommons": {"id": "bioregistry.icd10.prefixcommons", "sameas": "bioregistry.icd10", "homepage": "http://www.who.int/classifications/icd/en/", "prefix": "icd", "name": "International Classification of Diseases", "uri_format": "http://apps.who.int/classifications/icd10/browse/2010/en#/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "health sciences"], "authority": "prefixcommons"}, "bioregistry.icd10.wikidata": {"id": "bioregistry.icd10.wikidata", "sameas": "bioregistry.icd10", "homepage": null, "prefix": "P494", "name": "ICD-10", "uri_format": "https://icd.who.int/browse10/2019/en#/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "health sciences"], "authority": "wikidata"}, "bioregistry.icd10.biolink": {"id": "bioregistry.icd10.biolink", "sameas": "bioregistry.icd10", "homepage": null, "prefix": "ICD10", "name": null, "uri_format": "https://icd.codes/icd9cm/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "health sciences"], "authority": "biolink"}, "bioregistry.icd10": {"id": "bioregistry.icd10", "homepage": "https://icd.who.int/browse10", "prefix": "icd10", "name": "International Statistical Classification of Diseases and Related Health Problems", "uri_format": "https://icd.who.int/browse10/2019/en#/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "health sciences"], "authority": "bioregistry"}, "bioregistry.icd10cm.wikidata": {"id": "bioregistry.icd10cm.wikidata", "sameas": "bioregistry.icd10cm", "homepage": null, "prefix": "P4229", "name": "ICD-10-CM", "uri_format": "https://icdcodelookup.com/icd-10/codes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.icd10cm": {"id": "bioregistry.icd10cm", "homepage": "https://www.icd10data.com/ICD10CM", "prefix": "icd10cm", "name": "International Classification of Diseases, 10th Revision, Clinical Modification (ICD-10-CM)", "uri_format": "https://icdcodelookup.com/icd-10/codes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.icd10pcs.wikidata": {"id": "bioregistry.icd10pcs.wikidata", "sameas": "bioregistry.icd10pcs", "homepage": null, "prefix": "P1690", "name": "ICD-10-PCS", "uri_format": "https://www.findacode.com/code.php?set=ICD10PCS&c=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.icd10pcs": {"id": "bioregistry.icd10pcs", "homepage": "https://www.nlm.nih.gov/research/umls/sourcereleasedocs/current/ICD10PCS", "prefix": "icd10pcs", "name": "International Classification of Diseases, 10th Revision, Procedure Coding System (ICD-10-PCS)", "uri_format": "https://www.findacode.com/code.php?set=ICD10PCS&c=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.icd11.wikidata": {"id": "bioregistry.icd11.wikidata", "sameas": "bioregistry.icd11", "homepage": null, "prefix": "P7807", "name": "ICD-11 (foundation)", "uri_format": "https://icd.who.int/dev11/f/en#/http://id.who.int/icd/entity/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.icd11": {"id": "bioregistry.icd11", "homepage": "https://icd.who.int/", "prefix": "icd11", "name": "International Classification of Diseases, 11th Revision", "uri_format": "https://icd.who.int/dev11/f/en#/http://id.who.int/icd/entity/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.icd9.wikidata": {"id": "bioregistry.icd9.wikidata", "sameas": "bioregistry.icd9", "homepage": null, "prefix": "P493", "name": "ICD-9 ID", "uri_format": "http://www.icd9data.com/getICD9Code.ashx?icd9=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.icd9.biolink": {"id": "bioregistry.icd9.biolink", "sameas": "bioregistry.icd9", "homepage": null, "prefix": "ICD9", "name": null, "uri_format": "http://translator.ncats.nih.gov/ICD9_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.icd9": {"id": "bioregistry.icd9", "homepage": "https://www.cdc.gov/nchs/icd/icd9.htm", "prefix": "icd9", "name": "International Classification of Diseases, 9th Revision", "uri_format": "http://www.icd9data.com/getICD9Code.ashx?icd9=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.icd9cm.wikidata": {"id": "bioregistry.icd9cm.wikidata", "sameas": "bioregistry.icd9cm", "homepage": null, "prefix": "P1692", "name": "ICD-9-CM", "uri_format": "http://icd9cm.chrisendres.com/index.php?action=search&srchtext=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.icd9cm": {"id": "bioregistry.icd9cm", "homepage": "https://www.cdc.gov/nchs/icd/icd9cm.htm", "prefix": "icd9cm", "name": "International Classification of Diseases, Ninth Revision, Clinical Modification", "uri_format": "http://icd9cm.chrisendres.com/index.php?action=search&srchtext=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.icdc.miriam": {"id": "bioregistry.icdc.miriam", "sameas": "bioregistry.icdc", "homepage": "https://caninecommons.cancer.gov/#/", "prefix": "icdc", "name": "Integrated Canine Data Commons", "uri_format": "https://caninecommons.cancer.gov/#/study/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.icdc": {"id": "bioregistry.icdc", "homepage": null, "prefix": "icdc", "name": "Integrated Canine Data Commons", "uri_format": "https://caninecommons.cancer.gov/#/study/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.icdo.wikidata": {"id": "bioregistry.icdo.wikidata", "sameas": "bioregistry.icdo", "homepage": null, "prefix": "P563", "name": "ICD-O", "uri_format": "http://codes.iarc.fr/search.php?cx=009987501641899931167%3A2_7lsevqpdm&cof=FORID%3A9&ie=UTF-8&ie=ISO-8859-1&oe=ISO-8859-1&sa=&q=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.icdo": {"id": "bioregistry.icdo", "homepage": "https://www.who.int/classifications/icd/adaptations/oncology/en/", "prefix": "icdo", "name": "International Classification of Diseases for Oncology: ICD-O", "uri_format": "http://codes.iarc.fr/search.php?cx=009987501641899931167%3A2_7lsevqpdm&cof=FORID%3A9&ie=UTF-8&ie=ISO-8859-1&oe=ISO-8859-1&sa=&q=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.iceberg.element.miriam": {"id": "bioregistry.iceberg.element.miriam", "sameas": "bioregistry.iceberg.element", "homepage": "http://db-mml.sjtu.edu.cn/ICEberg/", "prefix": "iceberg.element", "name": "ICEberg element", "uri_format": "http://db-mml.sjtu.edu.cn/ICEberg/feature_page.php?ice_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.iceberg.element.n2t": {"id": "bioregistry.iceberg.element.n2t", "sameas": "bioregistry.iceberg.element", "homepage": "http://db-mml.sjtu.edu.cn/ICEberg/", "prefix": "iceberg.element", "name": "ICEberg element at Shanghai Jiaotong University", "uri_format": "http://db-mml.sjtu.edu.cn/ICEberg/feature_page.php?ice_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.iceberg.element": {"id": "bioregistry.iceberg.element", "homepage": "https://bioinfo-mml.sjtu.edu.cn/ICEberg2/browse_result.php?type=alpha&alpha=100", "prefix": "iceberg.element", "name": "ICEberg element at Shanghai Jiaotong University", "uri_format": "http://db-mml.sjtu.edu.cn/ICEberg/feature_page.php?ice_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.iceberg.family.miriam": {"id": "bioregistry.iceberg.family.miriam", "sameas": "bioregistry.iceberg.family", "homepage": "http://db-mml.sjtu.edu.cn/ICEberg/", "prefix": "iceberg.family", "name": "ICEberg family", "uri_format": "http://db-mml.sjtu.edu.cn/ICEberg/browse_result.php?type=fam&fam_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.iceberg.family.n2t": {"id": "bioregistry.iceberg.family.n2t", "sameas": "bioregistry.iceberg.family", "homepage": "http://db-mml.sjtu.edu.cn/ICEberg/", "prefix": "iceberg.family", "name": "ICEberg family at Shanghai Jiaotong University", "uri_format": "http://db-mml.sjtu.edu.cn/ICEberg/browse_result.php?type=fam&fam_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.iceberg.family": {"id": "bioregistry.iceberg.family", "homepage": "https://bioinfo-mml.sjtu.edu.cn/ICEberg2/browse_fam.php", "prefix": "iceberg.family", "name": "ICEberg family at Shanghai Jiaotong University", "uri_format": "http://db-mml.sjtu.edu.cn/ICEberg/browse_result.php?type=fam&fam_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.iclc.cellosaurus": {"id": "bioregistry.iclc.cellosaurus", "sameas": "bioregistry.iclc", "homepage": "http://www.iclc.it", "prefix": "ICLC", "name": "Interlab Cell Line Collection", "uri_format": "http://www.iclc.it/details/det_list.php?line_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.iclc": {"id": "bioregistry.iclc", "homepage": null, "prefix": "iclc", "name": "Interlab Cell Line Collection", "uri_format": "http://www.iclc.it/details/det_list.php?line_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ideal.miriam": {"id": "bioregistry.ideal.miriam", "sameas": "bioregistry.ideal", "homepage": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/", "prefix": "ideal", "name": "IDEAL", "uri_format": "http://idp1.force.cs.is.nagoya-u.ac.jp/IDEAL/ideal.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ideal.n2t": {"id": "bioregistry.ideal.n2t", "sameas": "bioregistry.ideal", "homepage": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/", "prefix": "ideal", "name": "IDEAL at Maebashi Institute of Technology", "uri_format": "http://idp1.force.cs.is.nagoya-u.ac.jp/IDEAL/idealItem.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ideal.uniprot": {"id": "bioregistry.ideal.uniprot", "sameas": "bioregistry.ideal", "homepage": "https://www.ideal-db.org/", "prefix": "DB-0251", "name": "Intrinsically Disordered proteins with Extensive Annotations and Literature", "uri_format": "https://www.ideal-db.org/ideal.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.ideal": {"id": "bioregistry.ideal", "homepage": "https://www.ideal-db.org", "prefix": "ideal", "name": "Intrinsically Disordered proteins with Extensive Annotations and Literature", "uri_format": "https://www.ideal-db.org/ideal.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ido.miriam": {"id": "bioregistry.ido.miriam", "sameas": "bioregistry.ido", "homepage": "https://www.ebi.ac.uk/ols4/ontologies/ido", "prefix": "ido", "name": "Infectious Disease Ontology", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/ido/terms?obo_id=IDO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ido.n2t": {"id": "bioregistry.ido.n2t", "sameas": "bioregistry.ido", "homepage": "https://www.ebi.ac.uk/ols/ontologies/ido", "prefix": "ido", "name": "IDO through OLS", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/ido/terms?obo_id=IDO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ido": {"id": "bioregistry.ido", "homepage": null, "prefix": "ido", "name": "Infectious Disease Ontology Core", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/ido/terms?obo_id=IDO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.idoo.miriam": {"id": "bioregistry.idoo.miriam", "sameas": "bioregistry.idoo", "homepage": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology", "prefix": "idoo", "name": "Identifiers.org Ontology", "uri_format": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.idoo.n2t": {"id": "bioregistry.idoo.n2t", "sameas": "bioregistry.idoo", "homepage": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology", "prefix": "idoo", "name": "Identifiers.org Ontology", "uri_format": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.idoo": {"id": "bioregistry.idoo", "homepage": null, "prefix": "idoo", "name": "Identifiers.org Ontology", "uri_format": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.idot.miriam": {"id": "bioregistry.idot.miriam", "sameas": "bioregistry.idot", "homepage": "https://identifiers.org/", "prefix": "idot", "name": "Identifiers.org Terms", "uri_format": "https://biomodels.net/vocab/idot.rdf#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.idot.n2t": {"id": "bioregistry.idot.n2t", "sameas": "bioregistry.idot", "homepage": "https://identifiers.org/", "prefix": "idot", "name": "IdoT via biomodels.net", "uri_format": "https://biomodels.net/vocab/idot.rdf#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.idot": {"id": "bioregistry.idot", "homepage": "http://biomodels.net/vocab/idot.rdf", "prefix": "idot", "name": "IdoT via biomodels.net", "uri_format": "https://biomodels.net/vocab/idot.rdf#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.idr.miriam": {"id": "bioregistry.idr.miriam", "sameas": "bioregistry.idr", "homepage": "https://idr.openmicroscopy.org", "prefix": "idr", "name": "Image Data Resource", "uri_format": "https://idr.openmicroscopy.org/search/?query=Name:idr$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.idr": {"id": "bioregistry.idr", "homepage": null, "prefix": "idr", "name": "Image Data Resource", "uri_format": "https://idr.openmicroscopy.org/search/?query=Name:idr$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.iedb.miriam": {"id": "bioregistry.iedb.miriam", "sameas": "bioregistry.iedb", "homepage": "https://www.lji.org/", "prefix": "iedb", "name": "Immune Epitope Database (IEDB)", "uri_format": "https://www.iedb.org/reference/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.iedb.prefixcommons": {"id": "bioregistry.iedb.prefixcommons", "sameas": "bioregistry.iedb", "homepage": "http://www.iedb.org", "prefix": "tied", "name": "The Immune Epitope Database (IEDB)", "uri_format": "http://www.iedb.org/epId/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.iedb": {"id": "bioregistry.iedb", "homepage": null, "prefix": "iedb", "name": "The Immune Epitope Database (IEDB)", "uri_format": "https://www.iedb.org/reference/$1", "source": "bioregistry.io", "subjects": ["biochemistry", "immunology"], "authority": "bioregistry"}, "bioregistry.iev.prefixcommons": {"id": "bioregistry.iev.prefixcommons", "sameas": "bioregistry.iev", "homepage": "http://www.inoh.org", "prefix": "iev", "name": "Event (INOH pathway ontology)", "uri_format": "http://www.inoh.org/ontology-viewer/cgi-bin/InohOVAttr.php?type=IEV&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.iev": {"id": "bioregistry.iev", "homepage": null, "prefix": "iev", "name": "Event (INOH pathway ontology)", "uri_format": "http://www.inoh.org/ontology-viewer/cgi-bin/InohOVAttr.php?type=IEV&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.igrhcellid.cellosaurus": {"id": "bioregistry.igrhcellid.cellosaurus", "sameas": "bioregistry.igrhcellid", "homepage": "http://igrcid.ibms.sinica.edu.tw/cgi-bin/index.cgi", "prefix": "IGRhCellID", "name": "Integrated Genomic Resources of human Cell Lines for Identification", "uri_format": "http://igrcid.ibms.sinica.edu.tw/cgi-bin/cell_line_view.cgi?cl_name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.igrhcellid": {"id": "bioregistry.igrhcellid", "homepage": null, "prefix": "igrhcellid", "name": "Integrated Genomic Resources of human Cell Lines for Identification", "uri_format": "http://igrcid.ibms.sinica.edu.tw/cgi-bin/cell_line_view.cgi?cl_name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.igsn.miriam": {"id": "bioregistry.igsn.miriam", "sameas": "bioregistry.igsn", "homepage": "http://www.geosamples.org/", "prefix": "igsn", "name": "International Geo Sample Number", "uri_format": "http://igsn.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.igsn.n2t": {"id": "bioregistry.igsn.n2t", "sameas": "bioregistry.igsn", "homepage": "http://www.geosamples.org/", "prefix": "igsn", "name": "International Geo Sample Number", "uri_format": "hdl.handle.net/10273/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.igsn": {"id": "bioregistry.igsn", "homepage": null, "prefix": "igsn", "name": "International Generic Sample Number", "uri_format": "http://igsn.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.igsr.cellosaurus": {"id": "bioregistry.igsr.cellosaurus", "sameas": "bioregistry.igsr", "homepage": "https://www.internationalgenome.org/", "prefix": "IGSR", "name": "International Genome Sample Resource", "uri_format": "https://www.internationalgenome.org/data-portal/sample/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.igsr": {"id": "bioregistry.igsr", "homepage": null, "prefix": "igsr", "name": "The International Genome Sample Resource", "uri_format": "https://www.internationalgenome.org/data-portal/sample/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.imanis.cellosaurus": {"id": "bioregistry.imanis.cellosaurus", "sameas": "bioregistry.imanis", "homepage": "https://www.imanislife.com/collections/cell-lines/", "prefix": "Imanis", "name": "Imanis Life Sciences cell line products", "uri_format": "https://www.imanislife.com/?s=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.imanis": {"id": "bioregistry.imanis", "homepage": null, "prefix": "imanis", "name": "Imanis Life Sciences cell line products", "uri_format": "https://www.imanislife.com/?s=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.imex.miriam": {"id": "bioregistry.imex.miriam", "sameas": "bioregistry.imex", "homepage": "https://www.imexconsortium.org/", "prefix": "imex", "name": "IMEx", "uri_format": "https://www.ebi.ac.uk/intact/imex/main.xhtml?query=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.imex.n2t": {"id": "bioregistry.imex.n2t", "sameas": "bioregistry.imex", "homepage": "https://www.imexconsortium.org/", "prefix": "imex", "name": "IMEx Consortium running at EBI", "uri_format": "https://www.ebi.ac.uk/intact/imex/main.xhtml?query=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.imex.prefixcommons": {"id": "bioregistry.imex.prefixcommons", "sameas": "bioregistry.imex", "homepage": "http://disber.net/imexdrupal/", "prefix": "imex", "name": "International Molecular Exchange", "uri_format": "http://www.ebi.ac.uk/intact/imex/main.xhtml?query=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.imex": {"id": "bioregistry.imex", "homepage": null, "prefix": "imex", "name": "International Molecular Exchange", "uri_format": "https://www.ebi.ac.uk/intact/imex/main.xhtml?query=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.img.gene.miriam": {"id": "bioregistry.img.gene.miriam", "sameas": "bioregistry.img.gene", "homepage": "http://img.jgi.doe.gov/", "prefix": "img.gene", "name": "Integrated Microbial Genomes Gene", "uri_format": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=GeneDetail&gene_oid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.img.gene.n2t": {"id": "bioregistry.img.gene.n2t", "sameas": "bioregistry.img.gene", "homepage": "http://img.jgi.doe.gov/", "prefix": "img.gene", "name": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", "uri_format": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=GeneDetail&gene_oid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.img.gene.prefixcommons": {"id": "bioregistry.img.gene.prefixcommons", "sameas": "bioregistry.img.gene", "homepage": null, "prefix": "img.gene", "name": "Integrated Microbial Genomes Gene", "uri_format": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=GeneDetail&gene_oid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.img.gene": {"id": "bioregistry.img.gene", "homepage": null, "prefix": "img.gene", "name": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", "uri_format": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=GeneDetail&gene_oid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.img.taxon.miriam": {"id": "bioregistry.img.taxon.miriam", "sameas": "bioregistry.img.taxon", "homepage": "http://img.jgi.doe.gov/", "prefix": "img.taxon", "name": "Integrated Microbial Genomes Taxon", "uri_format": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=TaxonDetail&taxon_oid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.img.taxon.n2t": {"id": "bioregistry.img.taxon.n2t", "sameas": "bioregistry.img.taxon", "homepage": "http://img.jgi.doe.gov/", "prefix": "img.taxon", "name": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", "uri_format": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=TaxonDetail&taxon_oid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.img.taxon.prefixcommons": {"id": "bioregistry.img.taxon.prefixcommons", "sameas": "bioregistry.img.taxon", "homepage": null, "prefix": "img.taxon", "name": "Integrated Microbial Genomes Taxon", "uri_format": "http://img.jgi.doe.gov/cgi-bin/m/main.cgi?section=TaxonDetail&taxon_oid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.img.taxon": {"id": "bioregistry.img.taxon", "homepage": null, "prefix": "img.taxon", "name": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", "uri_format": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=TaxonDetail&taxon_oid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.imgt.hla.miriam": {"id": "bioregistry.imgt.hla.miriam", "sameas": "bioregistry.imgt.hla", "homepage": "https://www.ebi.ac.uk/imgt/hla/allele.html", "prefix": "imgt.hla", "name": "IMGT HLA", "uri_format": "https://www.ebi.ac.uk/cgi-bin/imgt/hla/get_allele.cgi?$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.imgt.hla.n2t": {"id": "bioregistry.imgt.hla.n2t", "sameas": "bioregistry.imgt.hla", "homepage": "https://www.ebi.ac.uk/imgt/hla/allele.html", "prefix": "imgt.hla", "name": "IMGT HLA at EBI", "uri_format": "https://www.ebi.ac.uk/cgi-bin/imgt/hla/get_allele.cgi?$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.imgt.hla.prefixcommons": {"id": "bioregistry.imgt.hla.prefixcommons", "sameas": "bioregistry.imgt.hla", "homepage": "http://www.ebi.ac.uk/imgt/hla/", "prefix": "imgthla", "name": "IMGT/HLA", "uri_format": "http://www.ebi.ac.uk/cgi-bin/ipd/imgt/hla/get_allele.cgi?", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.imgt.hla.cellosaurus": {"id": "bioregistry.imgt.hla.cellosaurus", "sameas": "bioregistry.imgt.hla", "homepage": "https://www.ebi.ac.uk/ipd/imgt/hla/", "prefix": "IPD-IMGT/HLA", "name": "IPD-IMGT/HLA database", "uri_format": "https://www.ebi.ac.uk/ipd/imgt/hla/cells/cell/?cellid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "cellosaurus"}, "bioregistry.imgt.hla": {"id": "bioregistry.imgt.hla", "homepage": null, "prefix": "imgt.hla", "name": "IMGT/HLA human major histocompatibility complex sequence database", "uri_format": "https://www.ebi.ac.uk/ipd/imgt/hla/cells/cell/?cellid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.imgt.ligm.miriam": {"id": "bioregistry.imgt.ligm.miriam", "sameas": "bioregistry.imgt.ligm", "homepage": "http://www.imgt.org/", "prefix": "imgt.ligm", "name": "IMGT LIGM", "uri_format": "http://www.imgt.org/ligmdb/view?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.imgt.ligm.n2t": {"id": "bioregistry.imgt.ligm.n2t", "sameas": "bioregistry.imgt.ligm", "homepage": "http://www.imgt.org/", "prefix": "imgt.ligm", "name": "IMGT LIGM at CNRS", "uri_format": "http://www.imgt.org/ligmdb/view?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.imgt.ligm": {"id": "bioregistry.imgt.ligm", "homepage": null, "prefix": "imgt.ligm", "name": "ImMunoGeneTics database covering immunoglobulins and T-cell receptors", "uri_format": "http://www.imgt.org/ligmdb/view?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.imgt.primerdb.prefixcommons": {"id": "bioregistry.imgt.primerdb.prefixcommons", "sameas": "bioregistry.imgt.primerdb", "homepage": "http://imgt.org/IMGTPrimerDB/", "prefix": "imgt.primerdb", "name": "IMGT/PRIMER-DB", "uri_format": "http://imgt.org/IMGTPrimerDB/Check_PrDB.pl?numacc0=$1&origin=view&source=PrList", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.imgt.primerdb": {"id": "bioregistry.imgt.primerdb", "homepage": null, "prefix": "imgt.primerdb", "name": "IMGT/PRIMER-DB", "uri_format": "http://imgt.org/IMGTPrimerDB/Check_PrDB.pl?numacc0=$1&origin=view&source=PrList", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.imotdb.prefixcommons": {"id": "bioregistry.imotdb.prefixcommons", "sameas": "bioregistry.imotdb", "homepage": "http://caps.ncbs.res.in/imotdb/", "prefix": "imotdb", "name": "Database of Spatially Interacting Motifs in Proteins", "uri_format": "http://caps.ncbs.res.in/cgi-bin/mini/databases/imotdb/imotdb.cgi?sfcode=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.imotdb": {"id": "bioregistry.imotdb", "homepage": null, "prefix": "imotdb", "name": "Database of Spatially Interacting Motifs in Proteins", "uri_format": "http://caps.ncbs.res.in/cgi-bin/mini/databases/imotdb/imotdb.cgi?sfcode=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.imr.prefixcommons": {"id": "bioregistry.imr.prefixcommons", "sameas": "bioregistry.imr", "homepage": "http://www.inoh.org", "prefix": "imr", "name": "MoleculeRole Ontology (INOH Protein name/family name ontology)", "uri_format": "http://www.inoh.org/ontology-viewer/cgi-bin/InohOVAttr.php?type=IMR&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.imr": {"id": "bioregistry.imr", "homepage": null, "prefix": "imr", "name": "MoleculeRole Ontology (INOH Protein name/family name ontology)", "uri_format": "http://www.inoh.org/ontology-viewer/cgi-bin/InohOVAttr.php?type=IMR&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.inaturalist.observation.wikidata": {"id": "bioregistry.inaturalist.observation.wikidata", "sameas": "bioregistry.inaturalist.observation", "homepage": null, "prefix": "P5683", "name": "iNaturalist observation ID", "uri_format": "https://www.inaturalist.org/observations/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.inaturalist.observation": {"id": "bioregistry.inaturalist.observation", "homepage": "https://www.inaturalist.org/observations", "prefix": "inaturalist.observation", "name": "iNaturalist observation ID", "uri_format": "https://www.inaturalist.org/observations/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.inaturalist.place.wikidata": {"id": "bioregistry.inaturalist.place.wikidata", "sameas": "bioregistry.inaturalist.place", "homepage": null, "prefix": "P7471", "name": "iNaturalist place ID", "uri_format": "https://www.inaturalist.org/places/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.inaturalist.place": {"id": "bioregistry.inaturalist.place", "homepage": "https://www.inaturalist.org/places", "prefix": "inaturalist.place", "name": "iNaturalist place ID", "uri_format": "https://www.inaturalist.org/places/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.inaturalist.taxon.wikidata": {"id": "bioregistry.inaturalist.taxon.wikidata", "sameas": "bioregistry.inaturalist.taxon", "homepage": null, "prefix": "P3151", "name": "iNaturalist taxon ID", "uri_format": "https://www.inaturalist.org/taxa/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.inaturalist.taxon": {"id": "bioregistry.inaturalist.taxon", "homepage": "https://www.inaturalist.org/taxa", "prefix": "inaturalist.taxon", "name": "iNaturalist Taxonomy", "uri_format": "https://www.inaturalist.org/taxa/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.inchi.miriam": {"id": "bioregistry.inchi.miriam", "sameas": "bioregistry.inchi", "homepage": "http://www.chemspider.com/", "prefix": "inchi", "name": "InChI", "uri_format": "http://www.chemspider.com/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.inchi.n2t": {"id": "bioregistry.inchi.n2t", "sameas": "bioregistry.inchi", "homepage": "http://webbook.nist.gov/chemistry", "prefix": "inchi", "name": "InChI through NIST", "uri_format": "http://webbook.nist.gov/cgi/cbook.cgi?$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.inchi.wikidata": {"id": "bioregistry.inchi.wikidata", "sameas": "bioregistry.inchi", "homepage": null, "prefix": "P234", "name": "InChI", "uri_format": "https://chemapps.stolaf.edu/jmol/jmol.php?&model=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.inchi": {"id": "bioregistry.inchi", "homepage": null, "prefix": "inchi", "name": "IUPAC International Chemical Identifier", "uri_format": "https://chemapps.stolaf.edu/jmol/jmol.php?&model=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.inchikey.miriam": {"id": "bioregistry.inchikey.miriam", "sameas": "bioregistry.inchikey", "homepage": "http://www.chemspider.com/", "prefix": "inchikey", "name": "InChIKey", "uri_format": "http://www.chemspider.com/inchikey=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.inchikey.n2t": {"id": "bioregistry.inchikey.n2t", "sameas": "bioregistry.inchikey", "homepage": "http://cactus.nci.nih.gov/chemical/structure", "prefix": "inchikey", "name": "InChiKey resolver at NCI", "uri_format": "http://cactus.nci.nih.gov/chemical/structure/$1/names", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.inchikey.wikidata": {"id": "bioregistry.inchikey.wikidata", "sameas": "bioregistry.inchikey", "homepage": null, "prefix": "P235", "name": "InChIKey", "uri_format": "https://www.ncbi.nlm.nih.gov/sites/entrez?cmd=search&db=pccompound&term=%22$1%22%5BInChIKey%5D", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.inchikey": {"id": "bioregistry.inchikey", "homepage": null, "prefix": "inchikey", "name": "InChiKey resolver at NCI", "uri_format": "https://www.ncbi.nlm.nih.gov/sites/entrez?cmd=search&db=pccompound&term=%22$1%22%5BInChIKey%5D", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.innatedb.prefixcommons": {"id": "bioregistry.innatedb.prefixcommons", "sameas": "bioregistry.innatedb", "homepage": "http://www.innatedb.ca/", "prefix": "innatedb", "name": "A Knowledge Resource for Innate Immunity Interactions and Pathways", "uri_format": "http://www.innatedb.ca/getGeneCard.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.innatedb": {"id": "bioregistry.innatedb", "homepage": null, "prefix": "innatedb", "name": "A Knowledge Resource for Innate Immunity Interactions and Pathways", "uri_format": "http://www.innatedb.ca/getGeneCard.do?id=$1", "source": "bioregistry.io", "subjects": ["genetics", "biochemistry", "immunology"], "authority": "bioregistry"}, "bioregistry.ino.biolink": {"id": "bioregistry.ino.biolink", "sameas": "bioregistry.ino", "homepage": null, "prefix": "INO", "name": null, "uri_format": "http://purl.obolibrary.org/obo/INO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.ino": {"id": "bioregistry.ino", "homepage": null, "prefix": "ino", "name": "INO: Interaction Network Ontology", "uri_format": "http://purl.obolibrary.org/obo/INO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.insdc.miriam": {"id": "bioregistry.insdc.miriam", "sameas": "bioregistry.insdc", "homepage": "https://www.ncbi.nlm.nih.gov/Genbank/", "prefix": "insdc", "name": "Nucleotide Sequence Database", "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.insdc.n2t": {"id": "bioregistry.insdc.n2t", "sameas": "bioregistry.insdc", "homepage": "https://www.ncbi.nlm.nih.gov/nuccore/", "prefix": "insdc", "name": "INSDC through Nucleotide database at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.insdc": {"id": "bioregistry.insdc", "homepage": null, "prefix": "insdc", "name": "International Nucleotide Sequence Database Collaboration (GenBank, EMBL, DDBJ)", "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.insdc.cds.miriam": {"id": "bioregistry.insdc.cds.miriam", "sameas": "bioregistry.insdc.cds", "homepage": "http://getentry.ddbj.nig.ac.jp", "prefix": "insdc.cds", "name": "INSDC CDS", "uri_format": "http://getentry.ddbj.nig.ac.jp/getentry/dad/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.insdc.cds.n2t": {"id": "bioregistry.insdc.cds.n2t", "sameas": "bioregistry.insdc.cds", "homepage": "https://www.ncbi.nlm.nih.gov/protein/", "prefix": "insdc.cds", "name": "INSDC CDS through NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.insdc.cds": {"id": "bioregistry.insdc.cds", "homepage": null, "prefix": "insdc.cds", "name": "INSDC CDS through NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.insdc.gca.miriam": {"id": "bioregistry.insdc.gca.miriam", "sameas": "bioregistry.insdc.gca", "homepage": "https://www.ebi.ac.uk/ena/browse/genome-assembly-database", "prefix": "insdc.gca", "name": "Genome assembly database", "uri_format": "https://www.ebi.ac.uk/ena/data/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.insdc.gca.n2t": {"id": "bioregistry.insdc.gca.n2t", "sameas": "bioregistry.insdc.gca", "homepage": "https://www.ncbi.nlm.nih.gov/assembly/", "prefix": "insdc.gca", "name": "Genome assembly database NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/assembly/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.insdc.gca": {"id": "bioregistry.insdc.gca", "homepage": null, "prefix": "insdc.gca", "name": "Genome assembly database NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/assembly/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.insdc.sra.miriam": {"id": "bioregistry.insdc.sra.miriam", "sameas": "bioregistry.insdc.sra", "homepage": "https://www.ncbi.nlm.nih.gov/sra", "prefix": "insdc.sra", "name": "Sequence Read Archive", "uri_format": "https://www.ncbi.nlm.nih.gov/sra/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.insdc.sra.n2t": {"id": "bioregistry.insdc.sra.n2t", "sameas": "bioregistry.insdc.sra", "homepage": "https://www.ncbi.nlm.nih.gov/sra", "prefix": "insdc.sra", "name": "Sequence Read Archive at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/sra/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.insdc.sra": {"id": "bioregistry.insdc.sra", "homepage": null, "prefix": "insdc.sra", "name": "Sequence Read Archive at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/sra/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.intact.miriam": {"id": "bioregistry.intact.miriam", "sameas": "bioregistry.intact", "homepage": "https://www.ebi.ac.uk/intact/", "prefix": "intact", "name": "IntAct", "uri_format": "https://www.ebi.ac.uk/intact/interaction/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.intact.n2t": {"id": "bioregistry.intact.n2t", "sameas": "bioregistry.intact", "homepage": "https://www.ebi.ac.uk/intact/", "prefix": "intact", "name": "IntAct at EBI", "uri_format": "https://www.ebi.ac.uk/intact/interaction/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.intact.prefixcommons": {"id": "bioregistry.intact.prefixcommons", "sameas": "bioregistry.intact", "homepage": "http://www.ebi.ac.uk/intact", "prefix": "intact", "name": "The IntAct molecular interaction database", "uri_format": "http://www.ebi.ac.uk/intact/pages/details/details.xhtml?interactionAc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.intact.uniprot": {"id": "bioregistry.intact.uniprot", "sameas": "bioregistry.intact", "homepage": "https://www.ebi.ac.uk/intact/", "prefix": "DB-0051", "name": "Protein interaction database and analysis system", "uri_format": "https://www.ebi.ac.uk/intact/interactors/id:$1*", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.intact": {"id": "bioregistry.intact", "homepage": null, "prefix": "intact", "name": "Protein interaction database and analysis system", "uri_format": "https://www.ebi.ac.uk/intact/interactors/id:$1*", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.intact.molecule.miriam": {"id": "bioregistry.intact.molecule.miriam", "sameas": "bioregistry.intact.molecule", "homepage": "https://www.ebi.ac.uk/intact/", "prefix": "intact.molecule", "name": "IntAct Molecule", "uri_format": "https://www.ebi.ac.uk/intact/molecule/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.intact.molecule.n2t": {"id": "bioregistry.intact.molecule.n2t", "sameas": "bioregistry.intact.molecule", "homepage": "https://www.ebi.ac.uk/intact/", "prefix": "intact.molecule", "name": "IntAct Molecule at EBI", "uri_format": "https://www.ebi.ac.uk/intact/molecule/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.intact.molecule": {"id": "bioregistry.intact.molecule", "homepage": null, "prefix": "intact.molecule", "name": "IntAct Molecule at EBI", "uri_format": "https://www.ebi.ac.uk/intact/molecule/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.interfil.prefixcommons": {"id": "bioregistry.interfil.prefixcommons", "sameas": "bioregistry.interfil", "homepage": "http://www.interfil.org", "prefix": "interfil", "name": "Human Intermediate Filament Database", "uri_format": "http://www.interfil.org/details.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.interfil": {"id": "bioregistry.interfil", "homepage": null, "prefix": "interfil", "name": "Human Intermediate Filament Database", "uri_format": "http://www.interfil.org/details.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.interlex.miriam": {"id": "bioregistry.interlex.miriam", "sameas": "bioregistry.interlex", "homepage": "https://www.fdilab.org", "prefix": "ilx", "name": "InterLex", "uri_format": "https://scicrunch.org/scicrunch/interlex/view/ilx_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.interlex": {"id": "bioregistry.interlex", "homepage": null, "prefix": "interlex", "name": "Interlex ID", "uri_format": "https://scicrunch.org/scicrunch/interlex/view/ilx_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.interpro.miriam": {"id": "bioregistry.interpro.miriam", "sameas": "bioregistry.interpro", "homepage": "https://www.ebi.ac.uk/interpro/", "prefix": "interpro", "name": "InterPro", "uri_format": "https://www.ebi.ac.uk/interpro/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.interpro.n2t": {"id": "bioregistry.interpro.n2t", "sameas": "bioregistry.interpro", "homepage": "https://www.ebi.ac.uk/interpro/", "prefix": "interpro", "name": "InterPro", "uri_format": "https://www.ebi.ac.uk/interpro/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.interpro.prefixcommons": {"id": "bioregistry.interpro.prefixcommons", "sameas": "bioregistry.interpro", "homepage": "http://www.ebi.ac.uk/interpro", "prefix": "interpro", "name": "Integrated resource of protein families, domains and functional sites", "uri_format": "http://www.ebi.ac.uk/interpro/IEntry?ac=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.interpro.wikidata": {"id": "bioregistry.interpro.wikidata", "sameas": "bioregistry.interpro", "homepage": "https://www.ebi.ac.uk/interpro/", "prefix": "P2926", "name": "InterPro ID", "uri_format": "http://www.ebi.ac.uk/interpro/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "wikidata"}, "bioregistry.interpro.go": {"id": "bioregistry.interpro.go", "sameas": "bioregistry.interpro", "homepage": "http://www.ebi.ac.uk/interpro/", "prefix": "InterPro", "name": "InterPro database of protein domains and motifs", "uri_format": "http://www.ebi.ac.uk/interpro/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.interpro.uniprot": {"id": "bioregistry.interpro.uniprot", "sameas": "bioregistry.interpro", "homepage": "https://www.ebi.ac.uk/interpro/", "prefix": "DB-0052", "name": "Integrated resource of protein families, domains and functional sites", "uri_format": "https://www.ebi.ac.uk/interpro/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.interpro.biolink": {"id": "bioregistry.interpro.biolink", "sameas": "bioregistry.interpro", "homepage": null, "prefix": "interpro", "name": null, "uri_format": "https://www.ebi.ac.uk/interpro/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "biolink"}, "bioregistry.interpro": {"id": "bioregistry.interpro", "homepage": null, "prefix": "interpro", "name": "Integrated resource of protein families, domains and functional sites", "uri_format": "https://www.ebi.ac.uk/interpro/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.ipi.prefixcommons": {"id": "bioregistry.ipi.prefixcommons", "sameas": "bioregistry.ipi", "homepage": "http://www.ebi.ac.uk/IPI", "prefix": "ipi", "name": "International Protein Index", "uri_format": "http://www.ebi.ac.uk/cgi-bin/dbfetch?db=IPI&id=$1&format=default", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.ipi": {"id": "bioregistry.ipi", "homepage": null, "prefix": "ipi", "name": "International Protein Index", "uri_format": "http://www.ebi.ac.uk/cgi-bin/dbfetch?db=IPI&id=$1&format=default", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.ird.segment.miriam": {"id": "bioregistry.ird.segment.miriam", "sameas": "bioregistry.ird.segment", "homepage": "http://www.fludb.org/", "prefix": "ird.segment", "name": "IRD Segment Sequence", "uri_format": "http://www.fludb.org/brc/fluSegmentDetails.do?ncbiGenomicAccession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ird.segment.n2t": {"id": "bioregistry.ird.segment.n2t", "sameas": "bioregistry.ird.segment", "homepage": "http://www.fludb.org/", "prefix": "ird.segment", "name": "IRD at BioHealthBase", "uri_format": "http://www.fludb.org/brc/fluSegmentDetails.do?ncbiGenomicAccession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ird.segment.prefixcommons": {"id": "bioregistry.ird.segment.prefixcommons", "sameas": "bioregistry.ird.segment", "homepage": null, "prefix": "ird.segment", "name": "IRD Segment Sequence", "uri_format": "http://www.fludb.org/brc/fluSegmentDetails.do?ncbiGenomicAccession=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.ird.segment": {"id": "bioregistry.ird.segment", "homepage": null, "prefix": "ird.segment", "name": "IRD Segment Sequence", "uri_format": "http://www.fludb.org/brc/fluSegmentDetails.do?ncbiGenomicAccession=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.irefweb.miriam": {"id": "bioregistry.irefweb.miriam", "sameas": "bioregistry.irefweb", "homepage": "http://wodaklab.org/iRefWeb/", "prefix": "irefweb", "name": "iRefWeb", "uri_format": "http://wodaklab.org/iRefWeb/interaction/show/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.irefweb.n2t": {"id": "bioregistry.irefweb.n2t", "sameas": "bioregistry.irefweb", "homepage": "http://wodaklab.org/iRefWeb/", "prefix": "irefweb", "name": "iRefWeb Protein Interaction Reference Index", "uri_format": "http://wodaklab.org/iRefWeb/interaction/show/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.irefweb.prefixcommons": {"id": "bioregistry.irefweb.prefixcommons", "sameas": "bioregistry.irefweb", "homepage": "http://wodaklab.org/iRefWeb/", "prefix": "irefweb", "name": "Interaction Reference Index Web Interface", "uri_format": "http://wodaklab.org/iRefWeb/interaction/show/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.irefweb": {"id": "bioregistry.irefweb", "homepage": null, "prefix": "irefweb", "name": "iRefWeb Protein Interaction Reference Index", "uri_format": "http://wodaklab.org/iRefWeb/interaction/show/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.iresite.prefixcommons": {"id": "bioregistry.iresite.prefixcommons", "sameas": "bioregistry.iresite", "homepage": "http://www.iresite.org", "prefix": "iresite", "name": "IRESite: The database of experimentally verified IRES structures", "uri_format": "http://www.iresite.org/IRESite_web.php?page=view&entry_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.iresite": {"id": "bioregistry.iresite", "homepage": null, "prefix": "iresite", "name": "IRESite: The database of experimentally verified IRES structures", "uri_format": "http://www.iresite.org/IRESite_web.php?page=view&entry_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.isbn.miriam": {"id": "bioregistry.isbn.miriam", "sameas": "bioregistry.isbn", "homepage": "http://isbndb.com/", "prefix": "isbn", "name": "ISBN", "uri_format": "http://isbndb.com/search-all.html?kw=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.isbn.n2t": {"id": "bioregistry.isbn.n2t", "sameas": "bioregistry.isbn", "homepage": "http://isbndb.com/", "prefix": "isbn", "name": "ISBNDB - ISBN Database", "uri_format": "http://isbndb.com/search-all.html?kw=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.isbn.prefixcommons": {"id": "bioregistry.isbn.prefixcommons", "sameas": "bioregistry.isbn", "homepage": "http://isbndb.com/", "prefix": "isbn", "name": "International Standard Book Number", "uri_format": "http://isbndb.com/search-all.html?kw=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "prefixcommons"}, "bioregistry.isbn.go": {"id": "bioregistry.isbn.go", "sameas": "bioregistry.isbn", "homepage": "https://www.worldcat.org", "prefix": "ISBN", "name": "International Standard Book Number", "uri_format": "https://www.worldcat.org/search?q=bn%3A$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "go"}, "bioregistry.isbn.biolink": {"id": "bioregistry.isbn.biolink", "sameas": "bioregistry.isbn", "homepage": null, "prefix": "isbn", "name": null, "uri_format": "https://www.isbn-international.org/identifier/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "biolink"}, "bioregistry.isbn.biocontext": {"id": "bioregistry.isbn.biocontext", "sameas": "bioregistry.isbn", "homepage": null, "prefix": "ISBN-13", "name": null, "uri_format": "https://monarchinitiative.org/ISBN13_$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "biocontext"}, "bioregistry.isbn": {"id": "bioregistry.isbn", "homepage": null, "prefix": "isbn", "name": "International Standard Book Number", "uri_format": "https://www.worldcat.org/search?q=bn%3A$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "bioregistry"}, "bioregistry.isfinder.miriam": {"id": "bioregistry.isfinder.miriam", "sameas": "bioregistry.isfinder", "homepage": "http://www-is.biotoul.fr/i", "prefix": "isfinder", "name": "ISFinder", "uri_format": "https://www-is.biotoul.fr/scripts/ficheIS.php?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.isfinder.n2t": {"id": "bioregistry.isfinder.n2t", "sameas": "bioregistry.isfinder", "homepage": "http://www-is.biotoul.fr/i", "prefix": "isfinder", "name": "IS Finder at CNRS", "uri_format": "https://www-is.biotoul.fr/scripts/ficheIS.php?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.isfinder.prefixcommons": {"id": "bioregistry.isfinder.prefixcommons", "sameas": "bioregistry.isfinder", "homepage": "http://www-is.biotoul.fr", "prefix": "isfinder", "name": "IS Finder", "uri_format": "http://www-is.biotoul.fr/index.html?is_special_name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.isfinder": {"id": "bioregistry.isfinder", "homepage": null, "prefix": "isfinder", "name": "Insertion sequence elements database", "uri_format": "https://www-is.biotoul.fr/scripts/ficheIS.php?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.isni.miriam": {"id": "bioregistry.isni.miriam", "sameas": "bioregistry.isni", "homepage": "http://www.isni.org", "prefix": "isni", "name": "International Standard Name Identifier", "uri_format": "http://www.isni.org/isni/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.isni.n2t": {"id": "bioregistry.isni.n2t", "sameas": "bioregistry.isni", "homepage": "http://www.isni.org", "prefix": "isni", "name": "International Standard Name Identifier", "uri_format": "http://www.isni.org/isni/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.isni.biolink": {"id": "bioregistry.isni.biolink", "sameas": "bioregistry.isni", "homepage": null, "prefix": "isni", "name": null, "uri_format": "https://isni.org/isni/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.isni": {"id": "bioregistry.isni", "homepage": null, "prefix": "isni", "name": "International Standard Name Identifier", "uri_format": "https://isni.org/isni/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.issn.miriam": {"id": "bioregistry.issn.miriam", "sameas": "bioregistry.issn", "homepage": "https://portal.issn.org", "prefix": "issn", "name": "ISSN", "uri_format": "https://portal.issn.org/resource/ISSN/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.issn.n2t": {"id": "bioregistry.issn.n2t", "sameas": "bioregistry.issn", "homepage": "https://portal.issn.org", "prefix": "issn", "name": "ISSN Portal", "uri_format": "https://portal.issn.org/resource/ISSN/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.issn.biolink": {"id": "bioregistry.issn.biolink", "sameas": "bioregistry.issn", "homepage": null, "prefix": "issn", "name": null, "uri_format": "https://portal.issn.org/resource/ISSN/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.issn": {"id": "bioregistry.issn", "homepage": null, "prefix": "issn", "name": "International Standard Serial Number", "uri_format": "https://portal.issn.org/resource/ISSN/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.itis.wikidata": {"id": "bioregistry.itis.wikidata", "sameas": "bioregistry.itis", "homepage": "https://www.itis.gov", "prefix": "P815", "name": "ITIS TSN", "uri_format": "https://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&search_value=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.itis": {"id": "bioregistry.itis", "homepage": "https://www.itis.gov/", "prefix": "itis", "name": "Integrated Taxonomic Information System", "uri_format": "https://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&search_value=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ito.miriam": {"id": "bioregistry.ito.miriam", "sameas": "bioregistry.ito", "homepage": "https://bioportal.bioontology.org/", "prefix": "ito", "name": "Intelligence Task Ontology", "uri_format": "https://bioportal.bioontology.org/ontologies/ITO/?p=classes&conceptid=https://identifiers.org/ito:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ito": {"id": "bioregistry.ito", "homepage": "https://openbiolink.github.io/ITOExplorer/", "prefix": "ito", "name": "Intelligence Task Ontology and Knowledge Graph", "uri_format": "https://bioportal.bioontology.org/ontologies/ITO/?p=classes&conceptid=https://identifiers.org/ito:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.iuphar.family.miriam": {"id": "bioregistry.iuphar.family.miriam", "sameas": "bioregistry.iuphar.family", "homepage": "http://www.guidetopharmacology.org/", "prefix": "iuphar.family", "name": "IUPHAR family", "uri_format": "http://www.guidetopharmacology.org/GRAC/FamilyDisplayForward?familyId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.iuphar.family.n2t": {"id": "bioregistry.iuphar.family.n2t", "sameas": "bioregistry.iuphar.family", "homepage": "http://www.guidetopharmacology.org/", "prefix": "iuphar.family", "name": "The IUPHAR/BPS Guide to PHARMACOLOGY", "uri_format": "http://www.guidetopharmacology.org/GRAC/FamilyDisplayForward?familyId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.iuphar.family.prefixcommons": {"id": "bioregistry.iuphar.family.prefixcommons", "sameas": "bioregistry.iuphar.family", "homepage": "http://www.iuphar-db.org/DATABASE/ReceptorFamiliesForward?type=GPCR", "prefix": "iuphar.family", "name": "G protein-coupled receptors database", "uri_format": "http://www.iuphar-db.org/DATABASE/FamilyIntroductionForward?familyId=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.iuphar.family": {"id": "bioregistry.iuphar.family", "homepage": null, "prefix": "iuphar.family", "name": "The IUPHAR/BPS Guide to PHARMACOLOGY", "uri_format": "http://www.iuphar-db.org/DATABASE/FamilyIntroductionForward?familyId=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.iuphar.ligand.miriam": {"id": "bioregistry.iuphar.ligand.miriam", "sameas": "bioregistry.iuphar.ligand", "homepage": "http://www.guidetopharmacology.org/GRAC/LigandListForward?database=all", "prefix": "iuphar.ligand", "name": "IUPHAR ligand", "uri_format": "http://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.iuphar.ligand.n2t": {"id": "bioregistry.iuphar.ligand.n2t", "sameas": "bioregistry.iuphar.ligand", "homepage": "http://www.guidetopharmacology.org/GRAC/LigandListForward?database=all", "prefix": "iuphar.ligand", "name": "IUPHAR ligand at University of Edinburgh", "uri_format": "http://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.iuphar.ligand.wikidata": {"id": "bioregistry.iuphar.ligand.wikidata", "sameas": "bioregistry.iuphar.ligand", "homepage": "https://www.guidetopharmacology.org/", "prefix": "P595", "name": "Guide to Pharmacology Ligand ID", "uri_format": "https://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.iuphar.ligand.biolink": {"id": "bioregistry.iuphar.ligand.biolink", "sameas": "bioregistry.iuphar.ligand", "homepage": null, "prefix": "GTOPDB", "name": null, "uri_format": "https://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.iuphar.ligand": {"id": "bioregistry.iuphar.ligand", "homepage": null, "prefix": "iuphar.ligand", "name": "IUPHAR ligand at University of Edinburgh", "uri_format": "https://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.iuphar.receptor.miriam": {"id": "bioregistry.iuphar.receptor.miriam", "sameas": "bioregistry.iuphar.receptor", "homepage": "http://www.guidetopharmacology.org/targets.jsp", "prefix": "iuphar.receptor", "name": "IUPHAR receptor", "uri_format": "http://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.iuphar.receptor.n2t": {"id": "bioregistry.iuphar.receptor.n2t", "sameas": "bioregistry.iuphar.receptor", "homepage": "http://www.guidetopharmacology.org/targets.jsp", "prefix": "iuphar.receptor", "name": "IUPHAR Receptor at University of Edinburgh", "uri_format": "http://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.iuphar.receptor.wikidata": {"id": "bioregistry.iuphar.receptor.wikidata", "sameas": "bioregistry.iuphar.receptor", "homepage": "https://www.guidetopharmacology.org/GRAC/", "prefix": "P5458", "name": "Guide to Pharmacology Target ID", "uri_format": "https://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.iuphar.receptor.go": {"id": "bioregistry.iuphar.receptor.go", "sameas": "bioregistry.iuphar.receptor", "homepage": "http://www.iuphar.org/", "prefix": "IUPHAR_RECEPTOR", "name": "International Union of Pharmacology", "uri_format": "https://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.iuphar.receptor.uniprot": {"id": "bioregistry.iuphar.receptor.uniprot", "sameas": "bioregistry.iuphar.receptor", "homepage": "https://www.guidetopharmacology.org", "prefix": "DB-0182", "name": "IUPHAR/BPS Guide to PHARMACOLOGY", "uri_format": "https://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.iuphar.receptor": {"id": "bioregistry.iuphar.receptor", "homepage": null, "prefix": "iuphar.receptor", "name": "IUPHAR Receptor at University of Edinburgh", "uri_format": "https://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ivdb.prefixcommons": {"id": "bioregistry.ivdb.prefixcommons", "sameas": "bioregistry.ivdb", "homepage": "http://influenza.psych.ac.cn/", "prefix": "ivdb", "name": "Influenza Virus Database", "uri_format": "http://influenza.psych.ac.cn/search/detail.jsp?segment.gb_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.ivdb": {"id": "bioregistry.ivdb", "homepage": null, "prefix": "ivdb", "name": "Influenza Virus Database", "uri_format": "http://influenza.psych.ac.cn/search/detail.jsp?segment.gb_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.jax.biocontext": {"id": "bioregistry.jax.biocontext", "sameas": "bioregistry.jax", "homepage": null, "prefix": "JAX", "name": null, "uri_format": "http://jaxmice.jax.org/strain/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.jax": {"id": "bioregistry.jax", "homepage": "https://www.jax.org/strain", "prefix": "jax", "name": "Jackson Laboratories Strain", "uri_format": "http://jaxmice.jax.org/strain/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.jaxmice.miriam": {"id": "bioregistry.jaxmice.miriam", "sameas": "bioregistry.jaxmice", "homepage": "http://jaxmice.jax.org/", "prefix": "jaxmice", "name": "JAX Mice", "uri_format": "http://jaxmice.jax.org/strain/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.jaxmice.n2t": {"id": "bioregistry.jaxmice.n2t", "sameas": "bioregistry.jaxmice", "homepage": "http://jaxmice.jax.org/", "prefix": "jaxmice", "name": "JAX Mice at Jackson Laboratory", "uri_format": "http://jaxmice.jax.org/strain/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.jaxmice": {"id": "bioregistry.jaxmice", "homepage": null, "prefix": "jaxmice", "name": "JAX Mice at Jackson Laboratory", "uri_format": "http://jaxmice.jax.org/strain/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.jcggdb.miriam": {"id": "bioregistry.jcggdb.miriam", "sameas": "bioregistry.jcggdb", "homepage": "http://jcggdb.jp/index_en.html", "prefix": "jcggdb", "name": "JCGGDB", "uri_format": "http://jcggdb.jp/idb/jcggdb/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.jcggdb.n2t": {"id": "bioregistry.jcggdb.n2t", "sameas": "bioregistry.jcggdb", "homepage": "http://jcggdb.jp/index_en.html", "prefix": "jcggdb", "name": "JCGGDB at Advanced Science Institute (Japan)", "uri_format": "http://jcggdb.jp/idb/jcggdb/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.jcggdb": {"id": "bioregistry.jcggdb", "homepage": null, "prefix": "jcggdb", "name": "Japan Consortium for Glycobiology and Glycotechnology Database", "uri_format": "http://jcggdb.jp/idb/jcggdb/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.jcm.miriam": {"id": "bioregistry.jcm.miriam", "sameas": "bioregistry.jcm", "homepage": "http://www.jcm.riken.go.jp/", "prefix": "jcm", "name": "Japan Collection of Microorganisms", "uri_format": "http://www.jcm.riken.go.jp/cgi-bin/jcm/jcm_number?JCM=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.jcm.n2t": {"id": "bioregistry.jcm.n2t", "sameas": "bioregistry.jcm", "homepage": "http://www.jcm.riken.go.jp/", "prefix": "jcm", "name": "JCM at RIKEN BioResource Center", "uri_format": "http://www.jcm.riken.go.jp/cgi-bin/jcm/jcm_number?JCM=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.jcm.prefixcommons": {"id": "bioregistry.jcm.prefixcommons", "sameas": "bioregistry.jcm", "homepage": "http://www.jcm.riken.go.jp/", "prefix": "jcm", "name": "Japan Collection of Microorganisms", "uri_format": "http://www.jcm.riken.go.jp/cgi-bin/jcm/jcm_number?JCM=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "microbiology"], "authority": "prefixcommons"}, "bioregistry.jcm": {"id": "bioregistry.jcm", "homepage": null, "prefix": "jcm", "name": "Japan Collection of Microorganisms", "uri_format": "http://www.jcm.riken.go.jp/cgi-bin/jcm/jcm_number?JCM=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "microbiology"], "authority": "bioregistry"}, "bioregistry.jcrb.cellosaurus": {"id": "bioregistry.jcrb.cellosaurus", "sameas": "bioregistry.jcrb", "homepage": "http://cellbank.nibiohn.go.jp/english/", "prefix": "JCRB", "name": "Japanese Collection of Research Bioresources Cell Bank", "uri_format": "http://cellbank.nibiohn.go.jp//~cellbank/en/search_res_det.cgi?RNO=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.jcrb": {"id": "bioregistry.jcrb", "homepage": "https://cellbank.nibiohn.go.jp", "prefix": "jcrb", "name": "Japanese Collection of Research Bioresources Cell Bank", "uri_format": "http://cellbank.nibiohn.go.jp//~cellbank/en/search_res_det.cgi?RNO=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.jcsd.miriam": {"id": "bioregistry.jcsd.miriam", "sameas": "bioregistry.jcsd", "homepage": "http://jglobal.jst.go.jp/en/", "prefix": "jcsd", "name": "Japan Chemical Substance Dictionary", "uri_format": "http://jglobal.jst.go.jp/en/redirect?Nikkaji_No=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.jcsd.n2t": {"id": "bioregistry.jcsd.n2t", "sameas": "bioregistry.jcsd", "homepage": "http://jglobal.jst.go.jp/en/", "prefix": "jcsd", "name": "Japan Chemical Substance Dictionary", "uri_format": "http://jglobal.jst.go.jp/en/redirect?Nikkaji_No=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.jcsd.prefixcommons": {"id": "bioregistry.jcsd.prefixcommons", "sameas": "bioregistry.jcsd", "homepage": null, "prefix": "jcsd", "name": "Japan Chemical Substance Dictionary", "uri_format": "http://nikkajiweb.jst.go.jp/nikkaji_web/pages/top_e.jsp?CONTENT=syosai&SN=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences"], "authority": "prefixcommons"}, "bioregistry.jcsd": {"id": "bioregistry.jcsd", "homepage": null, "prefix": "jcsd", "name": "Japan Chemical Substance Dictionary", "uri_format": "http://nikkajiweb.jst.go.jp/nikkaji_web/pages/top_e.jsp?CONTENT=syosai&SN=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences"], "authority": "bioregistry"}, "bioregistry.jstor.miriam": {"id": "bioregistry.jstor.miriam", "sameas": "bioregistry.jstor", "homepage": "http://www.jstor.org/", "prefix": "jstor", "name": "JSTOR", "uri_format": "http://www.jstor.org/stable/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.jstor.n2t": {"id": "bioregistry.jstor.n2t", "sameas": "bioregistry.jstor", "homepage": "http://www.jstor.org/", "prefix": "jstor", "name": "JSTOR Online", "uri_format": "http://www.jstor.org/stable/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.jstor.go": {"id": "bioregistry.jstor.go", "sameas": "bioregistry.jstor", "homepage": "https://www.jstor.org/", "prefix": "JSTOR", "name": "Digital archive of scholarly articles", "uri_format": "https://www.jstor.org/stable/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.jstor": {"id": "bioregistry.jstor", "homepage": null, "prefix": "jstor", "name": "Digital archive of scholarly articles", "uri_format": "https://www.jstor.org/stable/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.jws.miriam": {"id": "bioregistry.jws.miriam", "sameas": "bioregistry.jws", "homepage": "http://jjj.biochem.sun.ac.za/models/", "prefix": "jws", "name": "JWS Online", "uri_format": "http://jjj.biochem.sun.ac.za/models/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.jws.n2t": {"id": "bioregistry.jws.n2t", "sameas": "bioregistry.jws", "homepage": "http://jjj.mib.ac.uk/index.html", "prefix": "jws", "name": "JWS Online Model Repository at Manchester", "uri_format": "http://jjj.mib.ac.uk/models/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.jws.prefixcommons": {"id": "bioregistry.jws.prefixcommons", "sameas": "bioregistry.jws", "homepage": "http://jjj.mib.ac.uk/index.html", "prefix": "jws", "name": "JWS Online Model Repository", "uri_format": "http://jjj.mib.ac.uk/cgi-bin/processModelSelection.py?keytype=modelname&keyword=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.jws": {"id": "bioregistry.jws", "homepage": null, "prefix": "jws", "name": "JWS Online Model Repository at Manchester", "uri_format": "http://jjj.mib.ac.uk/models/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kaggle.miriam": {"id": "bioregistry.kaggle.miriam", "sameas": "bioregistry.kaggle", "homepage": "https://kaggle.com", "prefix": "kaggle", "name": "Kaggle", "uri_format": "https://www.kaggle.com/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.kaggle.n2t": {"id": "bioregistry.kaggle.n2t", "sameas": "bioregistry.kaggle", "homepage": "https://kaggle.com", "prefix": "kaggle", "name": "Kaggle", "uri_format": "https://www.kaggle.com/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.kaggle": {"id": "bioregistry.kaggle", "homepage": null, "prefix": "kaggle", "name": "Kaggle", "uri_format": "https://www.kaggle.com/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kclb.cellosaurus": {"id": "bioregistry.kclb.cellosaurus", "sameas": "bioregistry.kclb", "homepage": "https://cellbank.snu.ac.kr/eng/", "prefix": "KCLB", "name": "Korean Cell Line Bank", "uri_format": "https://cellbank.snu.ac.kr/main/tmpl/sub_main.php?m_cd=6&m_id=0201&strQ=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.kclb": {"id": "bioregistry.kclb", "homepage": "https://cellbank.snu.ac.kr/english", "prefix": "kclb", "name": "Korean Cell Line Bank", "uri_format": "https://cellbank.snu.ac.kr/main/tmpl/sub_main.php?m_cd=6&m_id=0201&strQ=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kegg.miriam": {"id": "bioregistry.kegg.miriam", "sameas": "bioregistry.kegg", "homepage": "http://www.kegg.jp/", "prefix": "kegg", "name": "Kyoto Encyclopedia of Genes and Genomes", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.kegg.n2t": {"id": "bioregistry.kegg.n2t", "sameas": "bioregistry.kegg", "homepage": "http://www.kegg.jp/", "prefix": "kegg", "name": "KEGG at Kyoto University Bioinformatics Center", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.kegg.uniprot": {"id": "bioregistry.kegg.uniprot", "sameas": "bioregistry.kegg", "homepage": "https://www.genome.jp/kegg/", "prefix": "DB-0053", "name": "KEGG", "uri_format": "https://www.genome.jp/dbget-bin/www_bget?$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.kegg.biolink": {"id": "bioregistry.kegg.biolink", "sameas": "bioregistry.kegg", "homepage": null, "prefix": "KEGG", "name": null, "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.kegg": {"id": "bioregistry.kegg", "homepage": null, "prefix": "kegg", "name": "KEGG at Kyoto University Bioinformatics Center", "uri_format": "https://www.genome.jp/dbget-bin/www_bget?$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kegg.brite.prefixcommons": {"id": "bioregistry.kegg.brite.prefixcommons", "sameas": "bioregistry.kegg.brite", "homepage": "http://www.genome.jp/kegg/brite.html", "prefix": "kegg.brite", "name": "KEGG BRITE", "uri_format": "http://www.genome.jp/kegg-bin/get_htext?-p+/kegg/brite/br+br$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.kegg.brite.biolink": {"id": "bioregistry.kegg.brite.biolink", "sameas": "bioregistry.kegg.brite", "homepage": null, "prefix": "KEGG.BRITE", "name": null, "uri_format": "https://bioregistry.io/kegg.brite:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.kegg.brite": {"id": "bioregistry.kegg.brite", "homepage": null, "prefix": "kegg.brite", "name": "KEGG BRITE", "uri_format": "https://bioregistry.io/kegg.brite:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kegg.compound.miriam": {"id": "bioregistry.kegg.compound.miriam", "sameas": "bioregistry.kegg.compound", "homepage": "https://www.genome.jp/kegg/ligand.html", "prefix": "kegg.compound", "name": "KEGG Compound", "uri_format": "https://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.kegg.compound.n2t": {"id": "bioregistry.kegg.compound.n2t", "sameas": "bioregistry.kegg.compound", "homepage": "https://www.genome.jp/kegg/ligand.html", "prefix": "kegg.compound", "name": "KEGG LIGAND Database", "uri_format": "https://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.kegg.compound.prefixcommons": {"id": "bioregistry.kegg.compound.prefixcommons", "sameas": "bioregistry.kegg.compound", "homepage": "http://www.genome.jp/kegg/compound/", "prefix": "kegg.compound", "name": "KEGG Compound", "uri_format": "http://www.genome.jp/dbget-bin/www_bget?cpd:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.kegg.compound": {"id": "bioregistry.kegg.compound", "homepage": null, "prefix": "kegg.compound", "name": "KEGG LIGAND Database", "uri_format": "https://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kegg.dgroup.biolink": {"id": "bioregistry.kegg.dgroup.biolink", "sameas": "bioregistry.kegg.dgroup", "homepage": null, "prefix": "KEGG.DGROUP", "name": null, "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.kegg.dgroup": {"id": "bioregistry.kegg.dgroup", "homepage": "http://www.genome.jp/kegg/reaction/", "prefix": "kegg.dgroup", "name": "KEGG Drug Group", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kegg.disease.miriam": {"id": "bioregistry.kegg.disease.miriam", "sameas": "bioregistry.kegg.disease", "homepage": "http://www.genome.jp/kegg/disease/", "prefix": "kegg.disease", "name": "KEGG Disease", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.kegg.disease.n2t": {"id": "bioregistry.kegg.disease.n2t", "sameas": "bioregistry.kegg.disease", "homepage": "http://www.genome.jp/kegg/disease/", "prefix": "kegg.disease", "name": "KEGG Disease at Kyoto University Bioinformatics Center", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.kegg.disease.prefixcommons": {"id": "bioregistry.kegg.disease.prefixcommons", "sameas": "bioregistry.kegg.disease", "homepage": "http://www.genome.jp/kegg/disease/", "prefix": "kegg.disease", "name": "KEGG Disease", "uri_format": "http://www.genome.jp/dbget-bin/www_bget?ds:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.kegg.disease": {"id": "bioregistry.kegg.disease", "homepage": null, "prefix": "kegg.disease", "name": "KEGG Disease at Kyoto University Bioinformatics Center", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kegg.drug.miriam": {"id": "bioregistry.kegg.drug.miriam", "sameas": "bioregistry.kegg.drug", "homepage": "https://www.genome.jp/kegg/drug/", "prefix": "kegg.drug", "name": "KEGG Drug", "uri_format": "https://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.kegg.drug.n2t": {"id": "bioregistry.kegg.drug.n2t", "sameas": "bioregistry.kegg.drug", "homepage": "https://www.genome.jp/kegg/drug/", "prefix": "kegg.drug", "name": "KEGG DRUG Database", "uri_format": "https://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.kegg.drug.prefixcommons": {"id": "bioregistry.kegg.drug.prefixcommons", "sameas": "bioregistry.kegg.drug", "homepage": "http://www.genome.jp/kegg/drug/", "prefix": "kegg.drug", "name": "KEGG Drug", "uri_format": "http://www.genome.jp/dbget-bin/www_bget?dr:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.kegg.drug": {"id": "bioregistry.kegg.drug", "homepage": null, "prefix": "kegg.drug", "name": "KEGG DRUG Database", "uri_format": "https://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kegg.environ.miriam": {"id": "bioregistry.kegg.environ.miriam", "sameas": "bioregistry.kegg.environ", "homepage": "http://www.genome.jp/kegg/drug/environ.html", "prefix": "kegg.environ", "name": "KEGG Environ", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.kegg.environ.n2t": {"id": "bioregistry.kegg.environ.n2t", "sameas": "bioregistry.kegg.environ", "homepage": "http://www.genome.jp/kegg/drug/environ.html", "prefix": "kegg.environ", "name": "KEGG ENVIRON Database", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.kegg.environ": {"id": "bioregistry.kegg.environ", "homepage": null, "prefix": "kegg.environ", "name": "KEGG ENVIRON Database", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kegg.enzyme.go": {"id": "bioregistry.kegg.enzyme.go", "sameas": "bioregistry.kegg.enzyme", "homepage": "http://www.genome.jp/dbget-bin/www_bfind?enzyme", "prefix": "KEGG_ENZYME", "name": "KEGG Enzyme Database", "uri_format": "http://www.genome.jp/dbget-bin/www_bget?ec:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.kegg.enzyme.biolink": {"id": "bioregistry.kegg.enzyme.biolink", "sameas": "bioregistry.kegg.enzyme", "homepage": null, "prefix": "KEGG.ENZYME", "name": null, "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.kegg.enzyme": {"id": "bioregistry.kegg.enzyme", "homepage": null, "prefix": "kegg.enzyme", "name": "KEGG Enzyme Database", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kegg.genes.miriam": {"id": "bioregistry.kegg.genes.miriam", "sameas": "bioregistry.kegg.genes", "homepage": "http://www.genome.jp/kegg/genes.html", "prefix": "kegg.genes", "name": "KEGG Genes", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.kegg.genes.n2t": {"id": "bioregistry.kegg.genes.n2t", "sameas": "bioregistry.kegg.genes", "homepage": "http://www.genome.jp/kegg/genes.html", "prefix": "kegg.genes", "name": "KEGG GENES Database", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.kegg.genes.prefixcommons": {"id": "bioregistry.kegg.genes.prefixcommons", "sameas": "bioregistry.kegg.genes", "homepage": "http://www.genome.jp/kegg/genes.html", "prefix": "kegg.gene", "name": "KEGG Genes", "uri_format": "http://www.genome.jp/dbget-bin/www_bget?[?species]:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.kegg.genes.biolink": {"id": "bioregistry.kegg.genes.biolink", "sameas": "bioregistry.kegg.genes", "homepage": null, "prefix": "KEGG.GENES", "name": null, "uri_format": "https://bioregistry.io/kegg.genes:bsu:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "biolink"}, "bioregistry.kegg.genes": {"id": "bioregistry.kegg.genes", "homepage": null, "prefix": "kegg.genes", "name": "KEGG GENES Database", "uri_format": "https://bioregistry.io/kegg.genes:bsu:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.kegg.genome.miriam": {"id": "bioregistry.kegg.genome.miriam", "sameas": "bioregistry.kegg.genome", "homepage": "http://www.genome.jp/kegg/catalog/org_list.html", "prefix": "kegg.genome", "name": "KEGG Genome", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.kegg.genome.n2t": {"id": "bioregistry.kegg.genome.n2t", "sameas": "bioregistry.kegg.genome", "homepage": "http://www.genome.jp/kegg/catalog/org_list.html", "prefix": "kegg.genome", "name": "KEGG Genome Database", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.kegg.genome.prefixcommons": {"id": "bioregistry.kegg.genome.prefixcommons", "sameas": "bioregistry.kegg.genome", "homepage": "http://www.genome.jp/kegg/catalog/org_list.html", "prefix": "kegg.genome", "name": "KEGG Genome", "uri_format": "http://www.genome.jp/dbget-bin/www_bget?gn:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.kegg.genome": {"id": "bioregistry.kegg.genome", "homepage": null, "prefix": "kegg.genome", "name": "KEGG Genome Database", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kegg.glycan.miriam": {"id": "bioregistry.kegg.glycan.miriam", "sameas": "bioregistry.kegg.glycan", "homepage": "https://www.genome.jp/kegg/glycan/", "prefix": "kegg.glycan", "name": "KEGG Glycan", "uri_format": "https://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.kegg.glycan.n2t": {"id": "bioregistry.kegg.glycan.n2t", "sameas": "bioregistry.kegg.glycan", "homepage": "https://www.genome.jp/kegg/glycan/", "prefix": "kegg.glycan", "name": "KEGG GLYCAN Database", "uri_format": "https://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.kegg.glycan.prefixcommons": {"id": "bioregistry.kegg.glycan.prefixcommons", "sameas": "bioregistry.kegg.glycan", "homepage": "http://www.genome.jp/kegg/glycan/", "prefix": "kegg.glycan", "name": "KEGG Glycan", "uri_format": "http://www.genome.jp/dbget-bin/www_bget?gl:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.kegg.glycan": {"id": "bioregistry.kegg.glycan", "homepage": null, "prefix": "kegg.glycan", "name": "KEGG GLYCAN Database", "uri_format": "https://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kegg.ligand.go": {"id": "bioregistry.kegg.ligand.go", "sameas": "bioregistry.kegg.ligand", "homepage": "http://www.genome.ad.jp/kegg/docs/upd_ligand.html", "prefix": "KEGG_LIGAND", "name": "KEGG LIGAND Database", "uri_format": "http://www.genome.jp/dbget-bin/www_bget?cpd:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.kegg.ligand": {"id": "bioregistry.kegg.ligand", "homepage": null, "prefix": "kegg.ligand", "name": "KEGG LIGAND Database", "uri_format": "http://www.genome.jp/dbget-bin/www_bget?cpd:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kegg.metagenome.miriam": {"id": "bioregistry.kegg.metagenome.miriam", "sameas": "bioregistry.kegg.metagenome", "homepage": "http://www.genome.jp/kegg/catalog/org_list3.html", "prefix": "kegg.metagenome", "name": "KEGG Metagenome", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.kegg.metagenome.n2t": {"id": "bioregistry.kegg.metagenome.n2t", "sameas": "bioregistry.kegg.metagenome", "homepage": "http://www.genome.jp/kegg/catalog/org_list3.html", "prefix": "kegg.metagenome", "name": "KEGG Metagenome Database", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.kegg.metagenome.prefixcommons": {"id": "bioregistry.kegg.metagenome.prefixcommons", "sameas": "bioregistry.kegg.metagenome", "homepage": null, "prefix": "kegg.metagenome", "name": "KEGG Metagenome", "uri_format": "http://www.genome.jp/kegg-bin/show_organism?org=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.kegg.metagenome": {"id": "bioregistry.kegg.metagenome", "homepage": null, "prefix": "kegg.metagenome", "name": "KEGG Metagenome Database", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.kegg.module.miriam": {"id": "bioregistry.kegg.module.miriam", "sameas": "bioregistry.kegg.module", "homepage": "http://www.kegg.jp/kegg/module.html", "prefix": "kegg.module", "name": "KEGG Module", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.kegg.module.n2t": {"id": "bioregistry.kegg.module.n2t", "sameas": "bioregistry.kegg.module", "homepage": "http://www.kegg.jp/kegg/module.html", "prefix": "kegg.module", "name": "KEGG Module at Kyoto University Bioinformatics Center", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.kegg.module": {"id": "bioregistry.kegg.module", "homepage": null, "prefix": "kegg.module", "name": "KEGG Module at Kyoto University Bioinformatics Center", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kegg.orthology.miriam": {"id": "bioregistry.kegg.orthology.miriam", "sameas": "bioregistry.kegg.orthology", "homepage": "http://www.genome.jp/kegg/ko.html", "prefix": "kegg.orthology", "name": "KEGG Orthology", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.kegg.orthology.n2t": {"id": "bioregistry.kegg.orthology.n2t", "sameas": "bioregistry.kegg.orthology", "homepage": "http://www.genome.jp/kegg/ko.html", "prefix": "kegg.orthology", "name": "KEGG Orthology Database", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.kegg.orthology.prefixcommons": {"id": "bioregistry.kegg.orthology.prefixcommons", "sameas": "bioregistry.kegg.orthology", "homepage": "http://www.genome.jp/kegg/ko.html", "prefix": "kegg.orthology", "name": "KEGG Orthology", "uri_format": "http://www.genome.jp/dbget-bin/www_bget?ko:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.kegg.orthology": {"id": "bioregistry.kegg.orthology", "homepage": null, "prefix": "kegg.orthology", "name": "KEGG Orthology Database", "uri_format": "http://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kegg.pathway.miriam": {"id": "bioregistry.kegg.pathway.miriam", "sameas": "bioregistry.kegg.pathway", "homepage": "https://www.genome.jp/kegg/pathway.html", "prefix": "kegg.pathway", "name": "KEGG Pathway", "uri_format": "https://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.kegg.pathway.n2t": {"id": "bioregistry.kegg.pathway.n2t", "sameas": "bioregistry.kegg.pathway", "homepage": "https://www.genome.jp/kegg/pathway.html", "prefix": "kegg.pathway", "name": "KEGG PATHWAY Database", "uri_format": "https://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.kegg.pathway.prefixcommons": {"id": "bioregistry.kegg.pathway.prefixcommons", "sameas": "bioregistry.kegg.pathway", "homepage": "http://www.genome.jp/kegg/pathway.html", "prefix": "kegg.pathway", "name": "KEGG Pathway", "uri_format": "http://www.genome.jp/dbget-bin/www_bget?map$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.kegg.pathway.go": {"id": "bioregistry.kegg.pathway.go", "sameas": "bioregistry.kegg.pathway", "homepage": "http://www.genome.jp/kegg/pathway.html", "prefix": "KEGG_PATHWAY", "name": "KEGG Pathways Database", "uri_format": "http://www.genome.jp/dbget-bin/www_bget?path:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.kegg.pathway.biolink": {"id": "bioregistry.kegg.pathway.biolink", "sameas": "bioregistry.kegg.pathway", "homepage": null, "prefix": "KEGG.PATHWAY", "name": null, "uri_format": "https://bioregistry.io/kegg.pathway:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.kegg.pathway": {"id": "bioregistry.kegg.pathway", "homepage": null, "prefix": "kegg.pathway", "name": "KEGG Pathways Database", "uri_format": "https://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kegg.rclass.biolink": {"id": "bioregistry.kegg.rclass.biolink", "sameas": "bioregistry.kegg.rclass", "homepage": null, "prefix": "KEGG.RCLASS", "name": null, "uri_format": "https://www.genome.jp/dbget-bin/www_bget?rc:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.kegg.rclass": {"id": "bioregistry.kegg.rclass", "homepage": "http://www.genome.jp/kegg/reaction/", "prefix": "kegg.rclass", "name": "KEGG Reaction Class", "uri_format": "https://www.genome.jp/dbget-bin/www_bget?rc:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kegg.reaction.miriam": {"id": "bioregistry.kegg.reaction.miriam", "sameas": "bioregistry.kegg.reaction", "homepage": "https://www.genome.jp/kegg/reaction/", "prefix": "kegg.reaction", "name": "KEGG Reaction", "uri_format": "https://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.kegg.reaction.n2t": {"id": "bioregistry.kegg.reaction.n2t", "sameas": "bioregistry.kegg.reaction", "homepage": "https://www.genome.jp/kegg/reaction/", "prefix": "kegg.reaction", "name": "KEGG Reaction Database", "uri_format": "https://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.kegg.reaction.prefixcommons": {"id": "bioregistry.kegg.reaction.prefixcommons", "sameas": "bioregistry.kegg.reaction", "homepage": "http://www.genome.jp/kegg/reaction/", "prefix": "kegg.reaction", "name": "KEGG Reaction", "uri_format": "http://www.genome.jp/dbget-bin/www_bget?rn:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.kegg.reaction.wikidata": {"id": "bioregistry.kegg.reaction.wikidata", "sameas": "bioregistry.kegg.reaction", "homepage": "https://www.kegg.jp/", "prefix": "P665", "name": "KEGG ID", "uri_format": "https://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "wikidata"}, "bioregistry.kegg.reaction.go": {"id": "bioregistry.kegg.reaction.go", "sameas": "bioregistry.kegg.reaction", "homepage": "http://www.genome.jp/kegg/reaction/", "prefix": "KEGG_REACTION", "name": "KEGG Reaction Database", "uri_format": "http://www.genome.jp/dbget-bin/www_bget?rn:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.kegg.reaction": {"id": "bioregistry.kegg.reaction", "homepage": null, "prefix": "kegg.reaction", "name": "KEGG Reaction Database", "uri_format": "https://www.kegg.jp/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.kerafast.cellosaurus": {"id": "bioregistry.kerafast.cellosaurus", "sameas": "bioregistry.kerafast", "homepage": "https://www.kerafast.com/", "prefix": "Kerafast", "name": "Kerafast cell lines", "uri_format": "https://www.kerafast.com/Search?SearchTerm="$1"", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.kerafast": {"id": "bioregistry.kerafast", "homepage": null, "prefix": "kerafast", "name": "Kerafast cell lines", "uri_format": "https://www.kerafast.com/Search?SearchTerm="$1"", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.knapsack.miriam": {"id": "bioregistry.knapsack.miriam", "sameas": "bioregistry.knapsack", "homepage": "http://www.knapsackfamily.com/KNApSAcK/", "prefix": "knapsack", "name": "KNApSAcK", "uri_format": "http://www.knapsackfamily.com/knapsack_core/information.php?word=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.knapsack.n2t": {"id": "bioregistry.knapsack.n2t", "sameas": "bioregistry.knapsack", "homepage": "http://kanaya.aist-nara.ac.jp/KNApSAcK/", "prefix": "knapsack", "name": "KnapSack at Nara Institute", "uri_format": "http://kanaya.naist.jp/knapsack_jsp/information.jsp?word=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.knapsack.wikidata": {"id": "bioregistry.knapsack.wikidata", "sameas": "bioregistry.knapsack", "homepage": null, "prefix": "P2064", "name": "KNApSAcK ID", "uri_format": "http://www.knapsackfamily.com/knapsack_core/information.php?sname=C_ID&word=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.knapsack": {"id": "bioregistry.knapsack", "homepage": null, "prefix": "knapsack", "name": "KnapSack at Nara Institute", "uri_format": "http://www.knapsackfamily.com/knapsack_core/information.php?word=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.kyinno.cellosaurus": {"id": "bioregistry.kyinno.cellosaurus", "sameas": "bioregistry.kyinno", "homepage": "https://www.kyinno.com/", "prefix": "KYinno", "name": "KYinno cell lines", "uri_format": "https://innopedia.kyinno.com/DataBase/CellLine.aspx?file=$1.pdf", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.kyinno": {"id": "bioregistry.kyinno", "homepage": null, "prefix": "kyinno", "name": "KYinno cell lines", "uri_format": "https://innopedia.kyinno.com/DataBase/CellLine.aspx?file=$1.pdf", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.lcsh.wikidata": {"id": "bioregistry.lcsh.wikidata", "sameas": "bioregistry.lcsh", "homepage": "https://id.loc.gov", "prefix": "P244", "name": "Library of Congress authority ID", "uri_format": "https://id.loc.gov/authorities/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.lcsh": {"id": "bioregistry.lcsh", "homepage": "https://id.loc.gov/authorities", "prefix": "lcsh", "name": "Library of Congress Subject Headings", "uri_format": "https://id.loc.gov/authorities/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.leafsnap.wikidata": {"id": "bioregistry.leafsnap.wikidata", "sameas": "bioregistry.leafsnap", "homepage": "http://leafsnap.com/", "prefix": "P10538", "name": "Leafsnap ID", "uri_format": "http://leafsnap.com/species/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.leafsnap": {"id": "bioregistry.leafsnap", "homepage": null, "prefix": "leafsnap", "name": "Leafsnap ID", "uri_format": "http://leafsnap.com/species/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.lei.miriam": {"id": "bioregistry.lei.miriam", "sameas": "bioregistry.lei", "homepage": "https://www.gleif.org/", "prefix": "lei", "name": "Global LEI Index", "uri_format": "https://www.gleif.org/lei/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.lei.n2t": {"id": "bioregistry.lei.n2t", "sameas": "bioregistry.lei", "homepage": "https://www.gleif.org/", "prefix": "lei", "name": "Global LEI Index", "uri_format": "https://www.gleif.org/lei/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.lei": {"id": "bioregistry.lei", "homepage": null, "prefix": "lei", "name": "Global LEI Index", "uri_format": "https://www.gleif.org/lei/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.lgai.cede.miriam": {"id": "bioregistry.lgai.cede.miriam", "sameas": "bioregistry.lgai.cede", "homepage": "https://www.lgresearch.ai", "prefix": "lgai.cede", "name": "LG Chemical Entity Detection Dataset (LGCEDe)", "uri_format": "https://s3.us-east-2.amazonaws.com/lg.cede/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.lgai.cede": {"id": "bioregistry.lgai.cede", "homepage": null, "prefix": "lgai.cede", "name": "LG Chemical Entity Detection Dataset (LGCEDe)", "uri_format": "https://s3.us-east-2.amazonaws.com/lg.cede/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.lgic.miriam": {"id": "bioregistry.lgic.miriam", "sameas": "bioregistry.lgic", "homepage": "https://www.ebi.ac.uk/compneur-srv/LGICdb/LGICdb.php", "prefix": "lgic", "name": "Ligand-Gated Ion Channel database", "uri_format": "https://www.ebi.ac.uk/compneur-srv/LGICdb/HTML/$1.php", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.lgic.n2t": {"id": "bioregistry.lgic.n2t", "sameas": "bioregistry.lgic", "homepage": "https://www.ebi.ac.uk/compneur-srv/LGICdb/LGICdb.php", "prefix": "lgic", "name": "Ligand-Gated Ion Channel database at EBI", "uri_format": "https://www.ebi.ac.uk/compneur-srv/LGICdb/HTML/$1.php", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.lgic.prefixcommons": {"id": "bioregistry.lgic.prefixcommons", "sameas": "bioregistry.lgic", "homepage": "http://www.ebi.ac.uk/compneur-srv/LGICdb/", "prefix": "lgicdb", "name": "Ligand-Gated Ion Channel database", "uri_format": "http://www.ebi.ac.uk/compneur-srv/LGICdb/HTML/$1.php", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.lgic": {"id": "bioregistry.lgic", "homepage": null, "prefix": "lgic", "name": "Ligand-Gated Ion Channel database at EBI", "uri_format": "https://www.ebi.ac.uk/compneur-srv/LGICdb/HTML/$1.php", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.licebase.miriam": {"id": "bioregistry.licebase.miriam", "sameas": "bioregistry.licebase", "homepage": "https://licebase.org", "prefix": "licebase", "name": "LiceBase", "uri_format": "https://licebase.org/?q=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.licebase.n2t": {"id": "bioregistry.licebase.n2t", "sameas": "bioregistry.licebase", "homepage": "https://licebase.org", "prefix": "licebase", "name": "LiceBase", "uri_format": "https://licebase.org/?q=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.licebase": {"id": "bioregistry.licebase", "homepage": null, "prefix": "licebase", "name": "LiceBase", "uri_format": "https://licebase.org/?q=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ligandbook.miriam": {"id": "bioregistry.ligandbook.miriam", "sameas": "bioregistry.ligandbook", "homepage": "https://ligandbook.org/", "prefix": "ligandbook", "name": "LigandBook", "uri_format": "https://ligandbook.org/package/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ligandbook.n2t": {"id": "bioregistry.ligandbook.n2t", "sameas": "bioregistry.ligandbook", "homepage": "https://ligandbook.org/", "prefix": "ligandbook", "name": "LigandBook", "uri_format": "https://ligandbook.org/package/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ligandbook": {"id": "bioregistry.ligandbook", "homepage": null, "prefix": "ligandbook", "name": "LigandBook", "uri_format": "https://ligandbook.org/package/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ligandbox.miriam": {"id": "bioregistry.ligandbox.miriam", "sameas": "bioregistry.ligandbox", "homepage": "http://www.mypresto5.com/ligandbox/cgi-bin/index.cgi?LANG=en", "prefix": "ligandbox", "name": "LigandBox", "uri_format": "http://www.mypresto5.com/ligandbox/cgi-bin/liginf.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ligandbox.n2t": {"id": "bioregistry.ligandbox.n2t", "sameas": "bioregistry.ligandbox", "homepage": "http://ligandbox.protein.osaka-u.ac.jp/ligandbox//cgi-bin/index.cgi?LANG=en", "prefix": "ligandbox", "name": "LigandBox at", "uri_format": "http://ligandbox.protein.osaka-u.ac.jp/ligandbox/cgi-bin/liginf.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ligandbox": {"id": "bioregistry.ligandbox", "homepage": null, "prefix": "ligandbox", "name": "LigandBox at", "uri_format": "http://www.mypresto5.com/ligandbox/cgi-bin/liginf.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ligandexpo.miriam": {"id": "bioregistry.ligandexpo.miriam", "sameas": "bioregistry.ligandexpo", "homepage": "http://ligand-depot.rutgers.edu/index.html", "prefix": "ligandexpo", "name": "Ligand Expo", "uri_format": "http://ligand-depot.rutgers.edu/pyapps/ldHandler.py?formid=cc-index-search&target=$1&operation=ccid", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ligandexpo.n2t": {"id": "bioregistry.ligandexpo.n2t", "sameas": "bioregistry.ligandexpo", "homepage": "http://ligand-expo.rcsb.org/", "prefix": "ligandexpo", "name": "Ligand Expo at Rutgers", "uri_format": "http://ligand-expo.rcsb.org/pyapps/ldHandler.py?formid=cc-index-search&target=$1&operation=ccid", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ligandexpo.prefixcommons": {"id": "bioregistry.ligandexpo.prefixcommons", "sameas": "bioregistry.ligandexpo", "homepage": "http://ligand-depot.rutgers.edu/", "prefix": "ligandexpo", "name": "Ligand Expo", "uri_format": "http://ligand-depot.rutgers.edu/pyapps/ldHandler.py?formid=cc-index-search&target=$1&operation=ccid", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences", "biochemistry", "molecular biology"], "authority": "prefixcommons"}, "bioregistry.ligandexpo": {"id": "bioregistry.ligandexpo", "homepage": null, "prefix": "ligandexpo", "name": "Ligand Expo at Rutgers", "uri_format": "http://ligand-expo.rcsb.org/pyapps/ldHandler.py?formid=cc-index-search&target=$1&operation=ccid", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences", "biochemistry", "molecular biology"], "authority": "bioregistry"}, "bioregistry.ligea.cellosaurus": {"id": "bioregistry.ligea.cellosaurus", "sameas": "bioregistry.ligea", "homepage": "http://hpc-bioinformatics.cineca.it/fusion/main", "prefix": "LiGeA", "name": "Cancer cell LInes GEne fusions portAl", "uri_format": "http://hpc-bioinformatics.cineca.it/fusion/cell_line/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.ligea": {"id": "bioregistry.ligea", "homepage": null, "prefix": "ligea", "name": "Cancer cell LInes GEne fusions portAl", "uri_format": "http://hpc-bioinformatics.cineca.it/fusion/cell_line/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.limore.cellosaurus": {"id": "bioregistry.limore.cellosaurus", "sameas": "bioregistry.limore", "homepage": "https://www.picb.ac.cn/limore/home", "prefix": "LIMORE", "name": "Liver Cancer Model Repository", "uri_format": "https://www.picb.ac.cn/limore/cellLines/single?para=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.limore": {"id": "bioregistry.limore", "homepage": null, "prefix": "limore", "name": "Liver Cancer Model Repository", "uri_format": "https://www.picb.ac.cn/limore/cellLines/single?para=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.lincs.cell.miriam": {"id": "bioregistry.lincs.cell.miriam", "sameas": "bioregistry.lincs.cell", "homepage": "http://lincsportal.ccs.miami.edu/cells/", "prefix": "lincs.cell", "name": "LINCS Cell", "uri_format": "http://lincsportal.ccs.miami.edu/cells/#/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.lincs.cell.n2t": {"id": "bioregistry.lincs.cell.n2t", "sameas": "bioregistry.lincs.cell", "homepage": "http://lincsportal.ccs.miami.edu/cells/", "prefix": "lincs.cell", "name": "LINCS Portal", "uri_format": "http://lincsportal.ccs.miami.edu/cells/#/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.lincs.cell.cellosaurus": {"id": "bioregistry.lincs.cell.cellosaurus", "sameas": "bioregistry.lincs.cell", "homepage": "http://lincsportal.ccs.miami.edu/cells/", "prefix": "LINCS_LDP", "name": "LINCS Data Portal", "uri_format": "http://lincsportal.ccs.miami.edu/cells/#/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.lincs.cell": {"id": "bioregistry.lincs.cell", "homepage": null, "prefix": "lincs.cell", "name": "LINCS Data Portal", "uri_format": "http://lincsportal.ccs.miami.edu/cells/#/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.lincs.data.miriam": {"id": "bioregistry.lincs.data.miriam", "sameas": "bioregistry.lincs.data", "homepage": "http://lincsportal.ccs.miami.edu/datasets/", "prefix": "lincs.data", "name": "LINCS Data", "uri_format": "http://lincsportal.ccs.miami.edu/datasets/#/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.lincs.data.n2t": {"id": "bioregistry.lincs.data.n2t", "sameas": "bioregistry.lincs.data", "homepage": "http://lincsportal.ccs.miami.edu/datasets/", "prefix": "lincs.data", "name": "LINCS Data at University of Miami", "uri_format": "http://lincsportal.ccs.miami.edu/datasets/#/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.lincs.data": {"id": "bioregistry.lincs.data", "homepage": null, "prefix": "lincs.data", "name": "LINCS Data at University of Miami", "uri_format": "http://lincsportal.ccs.miami.edu/datasets/#/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.lincs.protein.miriam": {"id": "bioregistry.lincs.protein.miriam", "sameas": "bioregistry.lincs.protein", "homepage": "http://lincs.hms.harvard.edu/db/proteins/", "prefix": "lincs.protein", "name": "LINCS Protein", "uri_format": "http://lincs.hms.harvard.edu/db/proteins/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.lincs.protein.n2t": {"id": "bioregistry.lincs.protein.n2t", "sameas": "bioregistry.lincs.protein", "homepage": "http://lincs.hms.harvard.edu/db/proteins/", "prefix": "lincs.protein", "name": "LINCS Protein at Harvard Medical School", "uri_format": "http://lincs.hms.harvard.edu/db/proteins/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.lincs.protein": {"id": "bioregistry.lincs.protein", "homepage": null, "prefix": "lincs.protein", "name": "LINCS Protein at Harvard Medical School", "uri_format": "http://lincs.hms.harvard.edu/db/proteins/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.lincs.smallmolecule.miriam": {"id": "bioregistry.lincs.smallmolecule.miriam", "sameas": "bioregistry.lincs.smallmolecule", "homepage": "http://lincsportal.ccs.miami.edu/SmallMolecules/", "prefix": "lincs.smallmolecule", "name": "LINCS Small Molecule", "uri_format": "http://lincsportal.ccs.miami.edu/SmallMolecules/#/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.lincs.smallmolecule.n2t": {"id": "bioregistry.lincs.smallmolecule.n2t", "sameas": "bioregistry.lincs.smallmolecule", "homepage": "http://lincsportal.ccs.miami.edu/SmallMolecules/", "prefix": "lincs.smallmolecule", "name": "LINCS Portal", "uri_format": "http://lincsportal.ccs.miami.edu/SmallMolecules/#/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.lincs.smallmolecule": {"id": "bioregistry.lincs.smallmolecule", "homepage": null, "prefix": "lincs.smallmolecule", "name": "LINCS Small Molecule", "uri_format": "http://lincsportal.ccs.miami.edu/SmallMolecules/#/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.linguist.miriam": {"id": "bioregistry.linguist.miriam", "sameas": "bioregistry.linguist", "homepage": "https://github.com/", "prefix": "linguist", "name": "Linguist", "uri_format": "https://raw.githubusercontent.com/github/linguist/master/lib/linguist/languages.yml#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.linguist": {"id": "bioregistry.linguist", "homepage": "https://github.com/github/linguist", "prefix": "linguist", "name": "Linguist", "uri_format": "https://raw.githubusercontent.com/github/linguist/master/lib/linguist/languages.yml#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.linkml.biolink": {"id": "bioregistry.linkml.biolink", "sameas": "bioregistry.linkml", "homepage": null, "prefix": "linkml", "name": null, "uri_format": "https://w3id.org/linkml/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.linkml": {"id": "bioregistry.linkml", "homepage": "https://linkml.io/linkml-model/docs/SchemaDefinition/", "prefix": "linkml", "name": "Linked (Open) Data Modeling Language", "uri_format": "https://w3id.org/linkml/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.lipidbank.miriam": {"id": "bioregistry.lipidbank.miriam", "sameas": "bioregistry.lipidbank", "homepage": "http://lipidbank.jp/index.html", "prefix": "lipidbank", "name": "LipidBank", "uri_format": "http://lipidbank.jp/cgi-bin/detail.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.lipidbank.n2t": {"id": "bioregistry.lipidbank.n2t", "sameas": "bioregistry.lipidbank", "homepage": "http://lipidbank.jp/index.html", "prefix": "lipidbank", "name": "LipidBank the Lipid database", "uri_format": "http://lipidbank.jp/cgi-bin/detail.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.lipidbank.prefixcommons": {"id": "bioregistry.lipidbank.prefixcommons", "sameas": "bioregistry.lipidbank", "homepage": "http://lipidbank.jp/index.html", "prefix": "lipidbank", "name": "LipidBank", "uri_format": "http://lipidbank.jp/cgi-bin/detail.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.lipidbank": {"id": "bioregistry.lipidbank", "homepage": null, "prefix": "lipidbank", "name": "LipidBank the Lipid database", "uri_format": "http://lipidbank.jp/cgi-bin/detail.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.lipidmaps.miriam": {"id": "bioregistry.lipidmaps.miriam", "sameas": "bioregistry.lipidmaps", "homepage": "http://www.lipidmaps.org", "prefix": "lipidmaps", "name": "LIPID MAPS", "uri_format": "http://www.lipidmaps.org/data/LMSDRecord.php?LMID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.lipidmaps.n2t": {"id": "bioregistry.lipidmaps.n2t", "sameas": "bioregistry.lipidmaps", "homepage": "http://www.lipidmaps.org", "prefix": "lipidmaps", "name": "Department of Bioengineering and the San Diego Supercomputer Center", "uri_format": "http://www.lipidmaps.org/data/LMSDRecord.php?LMID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.lipidmaps.prefixcommons": {"id": "bioregistry.lipidmaps.prefixcommons", "sameas": "bioregistry.lipidmaps", "homepage": "http://www.lipidmaps.org", "prefix": "lipidmaps", "name": "LIPID MAPS", "uri_format": "http://www.lipidmaps.org/data/get_lm_lipids_dbgif.php?LM_ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.lipidmaps.wikidata": {"id": "bioregistry.lipidmaps.wikidata", "sameas": "bioregistry.lipidmaps", "homepage": null, "prefix": "P2063", "name": "LIPID MAPS ID", "uri_format": "https://www.lipidmaps.org/data/structure/LMSDSearch.php?Mode=ProcessClassSearch&LMID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "wikidata"}, "bioregistry.lipidmaps": {"id": "bioregistry.lipidmaps", "homepage": null, "prefix": "lipidmaps", "name": "Department of Bioengineering and the San Diego Supercomputer Center", "uri_format": "https://www.lipidmaps.org/data/structure/LMSDSearch.php?Mode=ProcessClassSearch&LMID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.loinc.wikidata": {"id": "bioregistry.loinc.wikidata", "sameas": "bioregistry.loinc", "homepage": "https://loinc.org/", "prefix": "P4338", "name": "LOINC ID", "uri_format": "https://loinc.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.loinc.biolink": {"id": "bioregistry.loinc.biolink", "sameas": "bioregistry.loinc", "homepage": null, "prefix": "LOINC", "name": null, "uri_format": "http://loinc.org/rdf/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.loinc": {"id": "bioregistry.loinc", "homepage": "https://loinc.org/", "prefix": "loinc", "name": "Logical Observation Identifiers Names and Codes", "uri_format": "https://loinc.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.lonza.cellosaurus": {"id": "bioregistry.lonza.cellosaurus", "sameas": "bioregistry.lonza", "homepage": "https://knowledge.lonza.com", "prefix": "Lonza", "name": "Lonza Cell and Transfection Database", "uri_format": "https://knowledge.lonza.com/cell?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.lonza": {"id": "bioregistry.lonza", "homepage": "https://knowledge.lonza.com", "prefix": "lonza", "name": "Lonza Cell and Transfection Database", "uri_format": "https://knowledge.lonza.com/cell?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.loqate.prefixcommons": {"id": "bioregistry.loqate.prefixcommons", "sameas": "bioregistry.loqate", "homepage": "http://www.weizmann.ac.il/molgen/loqate/", "prefix": "loqate", "name": "The localization and quantitation atlas of the yeast proteome", "uri_format": "http://www.weizmann.ac.il/molgen/loqate/gene/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.loqate": {"id": "bioregistry.loqate", "homepage": null, "prefix": "loqate", "name": "The localization and quantitation atlas of the yeast proteome", "uri_format": "http://www.weizmann.ac.il/molgen/loqate/gene/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.lrg.miriam": {"id": "bioregistry.lrg.miriam", "sameas": "bioregistry.lrg", "homepage": "http://www.lrg-sequence.org/", "prefix": "lrg", "name": "Locus Reference Genomic", "uri_format": "http://ftp.ebi.ac.uk/pub/databases/lrgex/$1.xml", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.lrg.n2t": {"id": "bioregistry.lrg.n2t", "sameas": "bioregistry.lrg", "homepage": "http://uswest.ensembl.org/", "prefix": "lrg", "name": "Locus Reference Genomic through Ensembl mirror (US west)", "uri_format": "http://uswest.ensembl.org/Homo_sapiens/LRG/Summary?lrg=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.lrg": {"id": "bioregistry.lrg", "homepage": null, "prefix": "lrg", "name": "Locus Reference Genomic through Ensembl mirror (US west)", "uri_format": "http://uswest.ensembl.org/Homo_sapiens/LRG/Summary?lrg=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ma.miriam": {"id": "bioregistry.ma.miriam", "sameas": "bioregistry.ma", "homepage": "http://www.informatics.jax.org/", "prefix": "ma", "name": "Mouse Adult Gross Anatomy", "uri_format": "http://www.informatics.jax.org/searches/AMA.cgi?id=MA:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ma.n2t": {"id": "bioregistry.ma.n2t", "sameas": "bioregistry.ma", "homepage": "http://www.informatics.jax.org/", "prefix": "ma", "name": "Mouse Adult Gross Anatomy at The Jackson Laboratory", "uri_format": "http://www.informatics.jax.org/searches/AMA.cgi?id=MA:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ma.go": {"id": "bioregistry.ma.go", "sameas": "bioregistry.ma", "homepage": "http://www.informatics.jax.org/", "prefix": "MA", "name": "Adult Mouse Anatomical Dictionary", "uri_format": "http://www.informatics.jax.org/searches/AMA.cgi?id=MA:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology", "anatomy and morphology"], "authority": "go"}, "bioregistry.ma": {"id": "bioregistry.ma", "homepage": null, "prefix": "ma", "name": "Mouse Adult Gross Anatomy at The Jackson Laboratory", "uri_format": "http://www.informatics.jax.org/searches/AMA.cgi?id=MA:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology", "anatomy and morphology"], "authority": "bioregistry"}, "bioregistry.macie.miriam": {"id": "bioregistry.macie.miriam", "sameas": "bioregistry.macie", "homepage": "https://www.ebi.ac.uk/thornton-srv/databases/MACiE/index.html", "prefix": "macie", "name": "MACiE", "uri_format": "https://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/MACiE/entry/getPage.pl?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.macie.n2t": {"id": "bioregistry.macie.n2t", "sameas": "bioregistry.macie", "homepage": "https://www.ebi.ac.uk/thornton-srv/databases/MACiE/index.html", "prefix": "macie", "name": "MACiE database of mechanisms, annotation and classification in enzymes", "uri_format": "https://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/MACiE/entry/getPage.pl?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.macie.prefixcommons": {"id": "bioregistry.macie.prefixcommons", "sameas": "bioregistry.macie", "homepage": "http://www.ebi.ac.uk/thornton-srv/databases/MACiE/", "prefix": "macie", "name": "MACiE", "uri_format": "http://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/MACiE/getPage.pl?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.macie": {"id": "bioregistry.macie", "homepage": null, "prefix": "macie", "name": "MACiE database of mechanisms, annotation and classification in enzymes", "uri_format": "https://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/MACiE/entry/getPage.pl?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.maizegdb.locus.miriam": {"id": "bioregistry.maizegdb.locus.miriam", "sameas": "bioregistry.maizegdb.locus", "homepage": "http://www.maizegdb.org/", "prefix": "maizegdb.locus", "name": "MaizeGDB Locus", "uri_format": "http://www.maizegdb.org/cgi-bin/displaylocusrecord.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.maizegdb.locus.n2t": {"id": "bioregistry.maizegdb.locus.n2t", "sameas": "bioregistry.maizegdb.locus", "homepage": "http://www.maizegdb.org/", "prefix": "maizegdb.locus", "name": "MaizeGDB at Missouri", "uri_format": "http://www.maizegdb.org/cgi-bin/displaylocusrecord.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.maizegdb.locus.prefixcommons": {"id": "bioregistry.maizegdb.locus.prefixcommons", "sameas": "bioregistry.maizegdb.locus", "homepage": "http://www.maizegdb.org", "prefix": "maizegdb", "name": "Maize Genetics and Genomics Database", "uri_format": "http://www.maizegdb.org/cgi-bin/displaylocusrecord.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.maizegdb.locus.go": {"id": "bioregistry.maizegdb.locus.go", "sameas": "bioregistry.maizegdb.locus", "homepage": "https://www.maizegdb.org/", "prefix": "MaizeGDB_Locus", "name": "MaizeGDB", "uri_format": "https://www.maizegdb.org/gene_center/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.maizegdb.locus.uniprot": {"id": "bioregistry.maizegdb.locus.uniprot", "sameas": "bioregistry.maizegdb.locus", "homepage": "https://www.maizegdb.org/", "prefix": "DB-0058", "name": "Maize Genetics and Genomics Database", "uri_format": "https://www.maizegdb.org/data_center/gene_product?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.maizegdb.locus": {"id": "bioregistry.maizegdb.locus", "homepage": null, "prefix": "maizegdb.locus", "name": "Maize Genome Database unique identifiers", "uri_format": "https://www.maizegdb.org/gene_center/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.mamo.miriam": {"id": "bioregistry.mamo.miriam", "sameas": "bioregistry.mamo", "homepage": "http://bioportal.bioontology.org/ontologies/MAMO", "prefix": "mamo", "name": "Mathematical Modelling Ontology", "uri_format": "http://bioportal.bioontology.org/ontologies/MAMO/?p=classes&conceptid=http://identifiers.org/mamo/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mamo.n2t": {"id": "bioregistry.mamo.n2t", "sameas": "bioregistry.mamo", "homepage": "http://bioportal.bioontology.org/ontologies/MAMO", "prefix": "mamo", "name": "MAMO through BioPortal", "uri_format": "http://bioportal.bioontology.org/ontologies/MAMO/?p=classes&conceptid=http://identifiers.org/mamo/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mamo": {"id": "bioregistry.mamo", "homepage": null, "prefix": "mamo", "name": "Mathematical Modelling Ontology", "uri_format": "http://bioportal.bioontology.org/ontologies/MAMO/?p=classes&conceptid=http://identifiers.org/mamo/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mampol.prefixcommons": {"id": "bioregistry.mampol.prefixcommons", "sameas": "bioregistry.mampol", "homepage": "http://mampol.uab.es", "prefix": "mampol", "name": "Mammalia Polymorphism Database", "uri_format": "http://mampol.uab.es/cgi-bin/MamPol_s2.pl?Accession=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.mampol": {"id": "bioregistry.mampol", "homepage": null, "prefix": "mampol", "name": "Mammalia Polymorphism Database", "uri_format": "http://mampol.uab.es/cgi-bin/MamPol_s2.pl?Accession=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.massbank.miriam": {"id": "bioregistry.massbank.miriam", "sameas": "bioregistry.massbank", "homepage": "http://www.massbank.jp", "prefix": "massbank", "name": "MassBank", "uri_format": "https://massbank.jp/RecordDisplay?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.massbank.n2t": {"id": "bioregistry.massbank.n2t", "sameas": "bioregistry.massbank", "homepage": "http://www.massbank.jp", "prefix": "massbank", "name": "MassBank in Japan", "uri_format": "http://www.massbank.jp/jsp/FwdRecord.jsp?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.massbank.wikidata": {"id": "bioregistry.massbank.wikidata", "sameas": "bioregistry.massbank", "homepage": "https://massbank.eu/", "prefix": "P6689", "name": "MassBank accession ID", "uri_format": "https://massbank.eu/MassBank/RecordDisplay?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.massbank": {"id": "bioregistry.massbank", "homepage": null, "prefix": "massbank", "name": "MassBank accession ID", "uri_format": "https://massbank.jp/RecordDisplay?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.massive.miriam": {"id": "bioregistry.massive.miriam", "sameas": "bioregistry.massive", "homepage": "https://massive.ucsd.edu/ProteoSAFe/static/massive.jsp", "prefix": "massive", "name": "MassIVE", "uri_format": "https://massive.ucsd.edu/ProteoSAFe/QueryMSV?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.massive.n2t": {"id": "bioregistry.massive.n2t", "sameas": "bioregistry.massive", "homepage": "https://massive.ucsd.edu/ProteoSAFe/static/massive.jsp", "prefix": "massive", "name": "MassIVE", "uri_format": "https://massive.ucsd.edu/ProteoSAFe/QueryMSV?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.massive.uniprot": {"id": "bioregistry.massive.uniprot", "sameas": "bioregistry.massive", "homepage": "https://massive.ucsd.edu/", "prefix": "DB-0241", "name": "MassIVE - Mass Spectrometry Interactive Virtual Environment", "uri_format": "https://massive.ucsd.edu/ProteoSAFe/protein_explorer.jsp?libraries=2&protein_name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.massive": {"id": "bioregistry.massive", "homepage": null, "prefix": "massive", "name": "MassIVE - Mass Spectrometry Interactive Virtual Environment", "uri_format": "https://massive.ucsd.edu/ProteoSAFe/protein_explorer.jsp?libraries=2&protein_name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.matrixdb.prefixcommons": {"id": "bioregistry.matrixdb.prefixcommons", "sameas": "bioregistry.matrixdb", "homepage": "http://matrixdb.ibcp.fr", "prefix": "matrixdb", "name": "MatrixDB: Extracellular Matrix interactions database", "uri_format": "http://matrixdb.ibcp.fr/cgi-bin/model/report/default?name=$1&class=Association", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.matrixdb": {"id": "bioregistry.matrixdb", "homepage": "http://matrixdb.univ-lyon1.fr/", "prefix": "matrixdb", "name": "MatrixDB: Extracellular Matrix interactions database", "uri_format": "http://matrixdb.ibcp.fr/cgi-bin/model/report/default?name=$1&class=Association", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.matrixdb.association.miriam": {"id": "bioregistry.matrixdb.association.miriam", "sameas": "bioregistry.matrixdb.association", "homepage": "http://matrixdb.univ-lyon1.fr/", "prefix": "matrixdb.association", "name": "MatrixDB", "uri_format": "http://matrixdb.univ-lyon1.fr//cgi-bin/current/newPort?type=association&value=$1&class=Association", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.matrixdb.association.n2t": {"id": "bioregistry.matrixdb.association.n2t", "sameas": "bioregistry.matrixdb.association", "homepage": "http://matrixdb.univ-lyon1.fr/", "prefix": "matrixdb.association", "name": "MatrixDB Association", "uri_format": "http://matrixdb.univ-lyon1.fr//cgi-bin/current/newPort?type=association&value=$1&class=Association", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.matrixdb.association": {"id": "bioregistry.matrixdb.association", "homepage": null, "prefix": "matrixdb.association", "name": "MatrixDB Association", "uri_format": "http://matrixdb.univ-lyon1.fr//cgi-bin/current/newPort?type=association&value=$1&class=Association", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.maxo.biolink": {"id": "bioregistry.maxo.biolink", "sameas": "bioregistry.maxo", "homepage": null, "prefix": "MAXO", "name": null, "uri_format": "http://purl.obolibrary.org/obo/MAXO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.maxo": {"id": "bioregistry.maxo", "homepage": null, "prefix": "maxo", "name": "Medical Action Ontology", "uri_format": "http://purl.obolibrary.org/obo/MAXO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mdm.miriam": {"id": "bioregistry.mdm.miriam", "sameas": "bioregistry.mdm", "homepage": "https://medical-data-models.org/", "prefix": "mdm", "name": "MDM", "uri_format": "https://medical-data-models.org/forms/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mdm.n2t": {"id": "bioregistry.mdm.n2t", "sameas": "bioregistry.mdm", "homepage": "https://medical-data-models.org/", "prefix": "mdm", "name": "MDM at University of Muenster", "uri_format": "https://medical-data-models.org/forms/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mdm": {"id": "bioregistry.mdm", "homepage": null, "prefix": "mdm", "name": "Mapping of Drug Names and MeSH 2022", "uri_format": "https://medical-data-models.org/forms/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.meddra.miriam": {"id": "bioregistry.meddra.miriam", "sameas": "bioregistry.meddra", "homepage": "http://bioportal.bioontology.org/ontologies/MEDDRA", "prefix": "meddra", "name": "MedDRA", "uri_format": "http://purl.bioontology.org/ontology/MEDDRA/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.meddra.n2t": {"id": "bioregistry.meddra.n2t", "sameas": "bioregistry.meddra", "homepage": "http://bioportal.bioontology.org/ontologies/MEDDRA", "prefix": "meddra", "name": "MedDRA through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/MEDDRA/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.meddra.wikidata": {"id": "bioregistry.meddra.wikidata", "sameas": "bioregistry.meddra", "homepage": null, "prefix": "P3201", "name": "Medical Dictionary for Regulatory Activities ID", "uri_format": "http://bioportal.bioontology.org/ontologies/MEDDRA?p=classes&conceptid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.meddra.biocontext": {"id": "bioregistry.meddra.biocontext", "sameas": "bioregistry.meddra", "homepage": null, "prefix": "MEDDRA", "name": null, "uri_format": "http://purl.bioontology.org/ontology/MEDDRA/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.meddra": {"id": "bioregistry.meddra", "homepage": null, "prefix": "meddra", "name": "Medical Dictionary for Regulatory Activities Terminology (MedDRA)", "uri_format": "http://purl.bioontology.org/ontology/MEDDRA/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.medgen.miriam": {"id": "bioregistry.medgen.miriam", "sameas": "bioregistry.medgen", "homepage": "https://www.ncbi.nlm.nih.gov/medgen/", "prefix": "medgen", "name": "MedGen", "uri_format": "https://www.ncbi.nlm.nih.gov/medgen/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.medgen.n2t": {"id": "bioregistry.medgen.n2t", "sameas": "bioregistry.medgen", "homepage": "https://www.ncbi.nlm.nih.gov/medgen/", "prefix": "medgen", "name": "MedGen at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/medgen/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.medgen.biolink": {"id": "bioregistry.medgen.biolink", "sameas": "bioregistry.medgen", "homepage": null, "prefix": "medgen", "name": null, "uri_format": "https://www.ncbi.nlm.nih.gov/medgen/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.medgen.biocontext": {"id": "bioregistry.medgen.biocontext", "sameas": "bioregistry.medgen", "homepage": null, "prefix": "MedGen", "name": null, "uri_format": "http://www.ncbi.nlm.nih.gov/medgen/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.medgen": {"id": "bioregistry.medgen", "homepage": null, "prefix": "medgen", "name": "Human Medical Genetics", "uri_format": "https://www.ncbi.nlm.nih.gov/medgen/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.medlineplus.miriam": {"id": "bioregistry.medlineplus.miriam", "sameas": "bioregistry.medlineplus", "homepage": "http://www.nlm.nih.gov/medlineplus/", "prefix": "medlineplus", "name": "MedlinePlus", "uri_format": "http://www.nlm.nih.gov/medlineplus/ency/article/$1.htm", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.medlineplus.n2t": {"id": "bioregistry.medlineplus.n2t", "sameas": "bioregistry.medlineplus", "homepage": "http://www.nlm.nih.gov/medlineplus/", "prefix": "medlineplus", "name": "MedlinePlus at NCBI", "uri_format": "http://www.nlm.nih.gov/medlineplus/ency/article/$1.htm", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.medlineplus": {"id": "bioregistry.medlineplus", "homepage": null, "prefix": "medlineplus", "name": "MedlinePlus Health Topics", "uri_format": "http://www.nlm.nih.gov/medlineplus/ency/article/$1.htm", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.merops.entry.miriam": {"id": "bioregistry.merops.entry.miriam", "sameas": "bioregistry.merops.entry", "homepage": "http://merops.sanger.ac.uk/index.htm", "prefix": "merops.inhibitor", "name": "MEROPS Inhibitor", "uri_format": "http://merops.sanger.ac.uk/cgi-bin/pepsum?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.merops.entry.n2t": {"id": "bioregistry.merops.entry.n2t", "sameas": "bioregistry.merops.entry", "homepage": "http://merops.sanger.ac.uk/index.htm", "prefix": "merops.inhibitor", "name": "MEROPS Inhibitor at Sanger Institute", "uri_format": "http://merops.sanger.ac.uk/cgi-bin/pepsum?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.merops.entry.prefixcommons": {"id": "bioregistry.merops.entry.prefixcommons", "sameas": "bioregistry.merops.entry", "homepage": "http://merops.sanger.ac.uk/", "prefix": "merops", "name": "MEROPS - the Peptidase Database", "uri_format": "http://merops.sanger.ac.uk/cgi-bin/pepsum?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.merops.entry.go": {"id": "bioregistry.merops.entry.go", "sameas": "bioregistry.merops.entry", "homepage": "https://www.ebi.ac.uk/merops/", "prefix": "MEROPS", "name": "MEROPS peptidase database", "uri_format": "https://www.ebi.ac.uk/merops/cgi-bin/pepsum?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.merops.entry": {"id": "bioregistry.merops.entry", "homepage": null, "prefix": "merops.entry", "name": "MEROPS Inhibitor at Sanger Institute", "uri_format": "https://www.ebi.ac.uk/merops/cgi-bin/pepsum?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.merops.family.miriam": {"id": "bioregistry.merops.family.miriam", "sameas": "bioregistry.merops.family", "homepage": "http://merops.sanger.ac.uk/index.htm", "prefix": "merops.family", "name": "MEROPS Family", "uri_format": "http://merops.sanger.ac.uk/cgi-bin/famsum?family=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.merops.family.n2t": {"id": "bioregistry.merops.family.n2t", "sameas": "bioregistry.merops.family", "homepage": "http://merops.sanger.ac.uk/index.htm", "prefix": "merops.family", "name": "Merops Family at Sanger Institute", "uri_format": "http://merops.sanger.ac.uk/cgi-bin/famsum?family=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.merops.family": {"id": "bioregistry.merops.family", "homepage": null, "prefix": "merops.family", "name": "Merops Family at Sanger Institute", "uri_format": "http://merops.sanger.ac.uk/cgi-bin/famsum?family=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mesh.miriam": {"id": "bioregistry.mesh.miriam", "sameas": "bioregistry.mesh", "homepage": "http://id.nlm.nih.gov/mesh/", "prefix": "mesh", "name": "MeSH", "uri_format": "http://id.nlm.nih.gov/mesh/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mesh.n2t": {"id": "bioregistry.mesh.n2t", "sameas": "bioregistry.mesh", "homepage": "http://id.nlm.nih.gov/mesh/", "prefix": "mesh", "name": "MeSH Linked Data at National Library of Medicine", "uri_format": "http://id.nlm.nih.gov/mesh/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mesh.wikidata": {"id": "bioregistry.mesh.wikidata", "sameas": "bioregistry.mesh", "homepage": "http://www.nlm.nih.gov", "prefix": "P486", "name": "MeSH descriptor ID", "uri_format": "https://meshb.nlm.nih.gov/record/ui?ui=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.mesh.go": {"id": "bioregistry.mesh.go", "sameas": "bioregistry.mesh", "homepage": "https://meshb.nlm.nih.gov", "prefix": "MeSH", "name": "Medical Subject Headings", "uri_format": "http://id.nlm.nih.gov/mesh/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.mesh.biolink": {"id": "bioregistry.mesh.biolink", "sameas": "bioregistry.mesh", "homepage": null, "prefix": "MESH", "name": null, "uri_format": "http://id.nlm.nih.gov/mesh/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.mesh.cellosaurus": {"id": "bioregistry.mesh.cellosaurus", "sameas": "bioregistry.mesh", "homepage": "https://www.ncbi.nlm.nih.gov/mesh", "prefix": "MeSH", "name": "Medical Subject Headings", "uri_format": "https://www.nlm.nih.gov/cgi/mesh/2013/MB_cgi?field=uid&term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.mesh": {"id": "bioregistry.mesh", "homepage": null, "prefix": "mesh", "name": "MeSH Linked Data at National Library of Medicine", "uri_format": "https://www.nlm.nih.gov/cgi/mesh/2013/MB_cgi?field=uid&term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mesh.2012.miriam": {"id": "bioregistry.mesh.2012.miriam", "sameas": "bioregistry.mesh.2012", "homepage": "http://www.nlm.nih.gov/mesh/", "prefix": "mesh.2012", "name": "MeSH 2012", "uri_format": "http://www.nlm.nih.gov/cgi/mesh/2012/MB_cgi?mode=&index=$1&view=expanded", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mesh.2012.n2t": {"id": "bioregistry.mesh.2012.n2t", "sameas": "bioregistry.mesh.2012", "homepage": "http://www.nlm.nih.gov/mesh/", "prefix": "mesh.2012", "name": "MeSH at National Library of Medicine", "uri_format": "http://www.nlm.nih.gov/cgi/mesh/2012/MB_cgi?mode=&index=$1&view=expanded", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mesh.2012": {"id": "bioregistry.mesh.2012", "homepage": null, "prefix": "mesh.2012", "name": "MeSH at National Library of Medicine", "uri_format": "http://www.nlm.nih.gov/cgi/mesh/2012/MB_cgi?mode=&index=$1&view=expanded", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mesh.2013.miriam": {"id": "bioregistry.mesh.2013.miriam", "sameas": "bioregistry.mesh.2013", "homepage": "http://www.nlm.nih.gov/mesh/", "prefix": "mesh.2013", "name": "MeSH 2013", "uri_format": "http://www.nlm.nih.gov/cgi/mesh/2013/MB_cgi?mode=&index=$1&view=expanded", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mesh.2013.n2t": {"id": "bioregistry.mesh.2013.n2t", "sameas": "bioregistry.mesh.2013", "homepage": "http://www.nlm.nih.gov/mesh/", "prefix": "mesh.2013", "name": "MeSH 2013 at National Library of Medicine", "uri_format": "http://www.nlm.nih.gov/cgi/mesh/2013/MB_cgi?mode=&index=$1&view=expanded", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mesh.2013": {"id": "bioregistry.mesh.2013", "homepage": null, "prefix": "mesh.2013", "name": "MeSH 2013 at National Library of Medicine", "uri_format": "http://www.nlm.nih.gov/cgi/mesh/2013/MB_cgi?mode=&index=$1&view=expanded", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.metabolights.miriam": {"id": "bioregistry.metabolights.miriam", "sameas": "bioregistry.metabolights", "homepage": "https://www.ebi.ac.uk/metabolights/", "prefix": "metabolights", "name": "MetaboLights", "uri_format": "https://www.ebi.ac.uk/metabolights/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.metabolights.n2t": {"id": "bioregistry.metabolights.n2t", "sameas": "bioregistry.metabolights", "homepage": "https://www.ebi.ac.uk/metabolights/", "prefix": "metabolights", "name": "MetaboLights at EBI", "uri_format": "https://www.ebi.ac.uk/metabolights/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.metabolights.wikidata": {"id": "bioregistry.metabolights.wikidata", "sameas": "bioregistry.metabolights", "homepage": null, "prefix": "P3890", "name": "MetaboLights Compound ID", "uri_format": "https://www.ebi.ac.uk/metabolights/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.metabolights.cellosaurus": {"id": "bioregistry.metabolights.cellosaurus", "sameas": "bioregistry.metabolights", "homepage": "https://www.ebi.ac.uk/metabolights/", "prefix": "MetaboLights", "name": "MetaboLights database for metabolomics experiments and derived information", "uri_format": "https://www.ebi.ac.uk/metabolights/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.metabolights": {"id": "bioregistry.metabolights", "homepage": null, "prefix": "metabolights", "name": "MetaboLights database for metabolomics experiments and derived information", "uri_format": "https://www.ebi.ac.uk/metabolights/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.metacyc.compound.miriam": {"id": "bioregistry.metacyc.compound.miriam", "sameas": "bioregistry.metacyc.compound", "homepage": "https://metacyc.org", "prefix": "metacyc.compound", "name": "MetaCyc Compound", "uri_format": "https://metacyc.org/compound?orgid=META&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.metacyc.compound.n2t": {"id": "bioregistry.metacyc.compound.n2t", "sameas": "bioregistry.metacyc.compound", "homepage": "https://metacyc.org", "prefix": "metacyc.compound", "name": "MetaCyc Metabolic Pathway Database", "uri_format": "https://metacyc.org/compound?orgid=META&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.metacyc.compound.go": {"id": "bioregistry.metacyc.compound.go", "sameas": "bioregistry.metacyc.compound", "homepage": "https://metacyc.org/", "prefix": "MetaCyc", "name": "Metabolic Encyclopedia of metabolic and other pathways", "uri_format": "https://biocyc.org/META/NEW-IMAGE?type=NIL&object=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.metacyc.compound.biolink": {"id": "bioregistry.metacyc.compound.biolink", "sameas": "bioregistry.metacyc.compound", "homepage": null, "prefix": "MetaCyc", "name": null, "uri_format": "http://translator.ncats.nih.gov/MetaCyc_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.metacyc.compound": {"id": "bioregistry.metacyc.compound", "homepage": null, "prefix": "metacyc.compound", "name": "Metabolic Encyclopedia of metabolic and other pathways", "uri_format": "https://metacyc.org/compound?orgid=META&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.metacyc.reaction.miriam": {"id": "bioregistry.metacyc.reaction.miriam", "sameas": "bioregistry.metacyc.reaction", "homepage": "https://metacyc.org", "prefix": "metacyc.reaction", "name": "MetaCyc Reaction", "uri_format": "https://metacyc.org/META/NEW-IMAGE?type=REACTION&object=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.metacyc.reaction.n2t": {"id": "bioregistry.metacyc.reaction.n2t", "sameas": "bioregistry.metacyc.reaction", "homepage": "https://metacyc.org", "prefix": "metacyc.reaction", "name": "MetaCyc Metabolic Pathway Database - Reaction", "uri_format": "https://metacyc.org/META/NEW-IMAGE?type=REACTION&object=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.metacyc.reaction.biolink": {"id": "bioregistry.metacyc.reaction.biolink", "sameas": "bioregistry.metacyc.reaction", "homepage": null, "prefix": "metacyc.reaction", "name": null, "uri_format": "http://identifiers.org/metacyc.reaction:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.metacyc.reaction": {"id": "bioregistry.metacyc.reaction", "homepage": null, "prefix": "metacyc.reaction", "name": "MetaCyc Metabolic Pathway Database - Reaction", "uri_format": "https://metacyc.org/META/NEW-IMAGE?type=REACTION&object=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.metanetx.chemical.miriam": {"id": "bioregistry.metanetx.chemical.miriam", "sameas": "bioregistry.metanetx.chemical", "homepage": "https://www.metanetx.org/", "prefix": "metanetx.chemical", "name": "MetaNetX chemical", "uri_format": "https://www.metanetx.org/chem_info/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.metanetx.chemical.n2t": {"id": "bioregistry.metanetx.chemical.n2t", "sameas": "bioregistry.metanetx.chemical", "homepage": "http://www.metanetx.org/", "prefix": "metanetx.chemical", "name": "MetaNetX chemical at SIB Swiss Institute of Bioinformatics", "uri_format": "https://www.metanetx.org/chem_info/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.metanetx.chemical": {"id": "bioregistry.metanetx.chemical", "homepage": null, "prefix": "metanetx.chemical", "name": "MetaNetX chemical at SIB Swiss Institute of Bioinformatics", "uri_format": "https://www.metanetx.org/chem_info/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.metanetx.compartment.miriam": {"id": "bioregistry.metanetx.compartment.miriam", "sameas": "bioregistry.metanetx.compartment", "homepage": "https://www.metanetx.org/", "prefix": "metanetx.compartment", "name": "MetaNetX compartment", "uri_format": "https://www.metanetx.org/comp_info/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.metanetx.compartment.n2t": {"id": "bioregistry.metanetx.compartment.n2t", "sameas": "bioregistry.metanetx.compartment", "homepage": "http://www.metanetx.org/", "prefix": "metanetx.compartment", "name": "MetaNetX compartment at SIB Swiss Institute of Bioinformatics", "uri_format": "http://www.metanetx.org/comp_info/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.metanetx.compartment": {"id": "bioregistry.metanetx.compartment", "homepage": null, "prefix": "metanetx.compartment", "name": "MetaNetX compartment at SIB Swiss Institute of Bioinformatics", "uri_format": "https://www.metanetx.org/comp_info/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.metanetx.reaction.miriam": {"id": "bioregistry.metanetx.reaction.miriam", "sameas": "bioregistry.metanetx.reaction", "homepage": "https://www.metanetx.org/", "prefix": "metanetx.reaction", "name": "MetaNetX reaction", "uri_format": "https://www.metanetx.org/equa_info/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.metanetx.reaction.n2t": {"id": "bioregistry.metanetx.reaction.n2t", "sameas": "bioregistry.metanetx.reaction", "homepage": "http://www.metanetx.org/", "prefix": "metanetx.reaction", "name": "MetaNetX reaction at SIB Swiss Institute of Bioinformatics", "uri_format": "http://www.metanetx.org/equa_info/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.metanetx.reaction.biolink": {"id": "bioregistry.metanetx.reaction.biolink", "sameas": "bioregistry.metanetx.reaction", "homepage": null, "prefix": "METANETX.REACTION", "name": null, "uri_format": "https://www.metanetx.org/equa_info/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.metanetx.reaction": {"id": "bioregistry.metanetx.reaction", "homepage": null, "prefix": "metanetx.reaction", "name": "MetaNetX reaction at SIB Swiss Institute of Bioinformatics", "uri_format": "https://www.metanetx.org/equa_info/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.metatlas.miriam": {"id": "bioregistry.metatlas.miriam", "sameas": "bioregistry.metatlas", "homepage": "https://metabolicatlas.org", "prefix": "metatlas", "name": "Metabolic Atlas", "uri_format": "https://metabolicatlas.org/identifier/MetabolicAtlas/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.metatlas": {"id": "bioregistry.metatlas", "homepage": "https://metabolicatlas.org", "prefix": "metatlas", "name": "Metabolic Atlas", "uri_format": "https://metabolicatlas.org/identifier/MetabolicAtlas/$1", "source": "bioregistry.io", "subjects": ["chemical sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.metlin.miriam": {"id": "bioregistry.metlin.miriam", "sameas": "bioregistry.metlin", "homepage": "http://masspec.scripps.edu/", "prefix": "metlin", "name": "METLIN", "uri_format": "http://metlin.scripps.edu/metabo_info.php?molid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.metlin.n2t": {"id": "bioregistry.metlin.n2t", "sameas": "bioregistry.metlin", "homepage": "http://masspec.scripps.edu/", "prefix": "metlin", "name": "METLIN at Scripps Center, Molecular Biology and Center for Mass Spectrometry, La Jolla", "uri_format": "http://metlin.scripps.edu/metabo_info.php?molid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.metlin": {"id": "bioregistry.metlin", "homepage": null, "prefix": "metlin", "name": "METLIN at Scripps Center, Molecular Biology and Center for Mass Spectrometry, La Jolla", "uri_format": "http://metlin.scripps.edu/metabo_info.php?molid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.metnetdb.prefixcommons": {"id": "bioregistry.metnetdb.prefixcommons", "sameas": "bioregistry.metnetdb", "homepage": "http://www.metnetdb.org/MetNet_db.htm", "prefix": "metnetdb", "name": "Metabolic Network Exchange", "uri_format": "http://metnetonline.org/browse_pathway2.php?pthID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.metnetdb": {"id": "bioregistry.metnetdb", "homepage": null, "prefix": "metnetdb", "name": "Metabolic Network Exchange Database", "uri_format": "http://metnetonline.org/browse_pathway2.php?pthID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.mex.miriam": {"id": "bioregistry.mex.miriam", "sameas": "bioregistry.mex", "homepage": "https://www.metabolome-express.org/", "prefix": "mex", "name": "Metabolome Express", "uri_format": "https://www.metabolome-express.org/datasetview.php?datasetid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mex.n2t": {"id": "bioregistry.mex.n2t", "sameas": "bioregistry.mex", "homepage": "https://www.metabolome-express.org/", "prefix": "mex", "name": "Metabolome Express", "uri_format": "https://www.metabolome-express.org/datasetview.php?datasetid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mex": {"id": "bioregistry.mex", "homepage": null, "prefix": "mex", "name": "Metabolome Express", "uri_format": "https://www.metabolome-express.org/datasetview.php?datasetid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mge.miriam": {"id": "bioregistry.mge.miriam", "sameas": "bioregistry.mge", "homepage": "http://aclame.ulb.ac.be/", "prefix": "mge", "name": "Aclame", "uri_format": "http://aclame.ulb.ac.be/perl/Aclame/Genomes/mge_view.cgi?view=info&id=mge:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mge.n2t": {"id": "bioregistry.mge.n2t", "sameas": "bioregistry.mge", "homepage": "http://aclame.ulb.ac.be/", "prefix": "mge", "name": "Aclame database of mobile genetic elements", "uri_format": "http://aclame.ulb.ac.be/perl/Aclame/Genomes/mge_view.cgi?view=info&id=mge:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mge.prefixcommons": {"id": "bioregistry.mge.prefixcommons", "sameas": "bioregistry.mge", "homepage": "http://aclame.ulb.ac.be", "prefix": "aclame", "name": "A CLAssification of Mobile genetic Elements", "uri_format": "http://aclame.ulb.ac.be/perl/Aclame/Genomes/mge_view.cgi?view=info&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.mge": {"id": "bioregistry.mge", "homepage": null, "prefix": "mge", "name": "A CLAssification of Mobile genetic Elements", "uri_format": "http://aclame.ulb.ac.be/perl/Aclame/Genomes/mge_view.cgi?view=info&id=mge:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.mgi.miriam": {"id": "bioregistry.mgi.miriam", "sameas": "bioregistry.mgi", "homepage": "http://www.informatics.jax.org/", "prefix": "mgi", "name": "Mouse Genome Database", "uri_format": "http://www.informatics.jax.org/accession/MGI:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mgi.n2t": {"id": "bioregistry.mgi.n2t", "sameas": "bioregistry.mgi", "homepage": "http://www.informatics.jax.org/", "prefix": "mgi", "name": "Mouse Genome Informatics Database", "uri_format": "http://www.informatics.jax.org/accession/MGI:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mgi.prefixcommons": {"id": "bioregistry.mgi.prefixcommons", "sameas": "bioregistry.mgi", "homepage": "http://www.informatics.jax.org/", "prefix": "mgi", "name": "Mouse genome database (MGD) from Mouse Genome Informatics (MGI)", "uri_format": "http://www.informatics.jax.org/searches/accession_report.cgi?id=mgi:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.mgi.wikidata": {"id": "bioregistry.mgi.wikidata", "sameas": "bioregistry.mgi", "homepage": "http://www.informatics.jax.org/", "prefix": "P671", "name": "Mouse Genome Informatics ID", "uri_format": "http://www.informatics.jax.org/accession/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "wikidata"}, "bioregistry.mgi.uniprot": {"id": "bioregistry.mgi.uniprot", "sameas": "bioregistry.mgi", "homepage": "http://www.informatics.jax.org/", "prefix": "DB-0060", "name": "Mouse genome database (MGD) from Mouse Genome Informatics (MGI)", "uri_format": "http://www.informatics.jax.org/marker/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.mgi.cellosaurus": {"id": "bioregistry.mgi.cellosaurus", "sameas": "bioregistry.mgi", "homepage": "http://www.informatics.jax.org", "prefix": "MGI", "name": "Mouse Genome Database (MGD) from Mouse Genome Informatics", "uri_format": "http://www.informatics.jax.org/marker/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "cellosaurus"}, "bioregistry.mgi.biocontext": {"id": "bioregistry.mgi.biocontext", "sameas": "bioregistry.mgi", "homepage": null, "prefix": "MGI", "name": null, "uri_format": "http://www.informatics.jax.org/accession/MGI:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "biocontext"}, "bioregistry.mgi": {"id": "bioregistry.mgi", "homepage": null, "prefix": "mgi", "name": "Mouse Genome Database - a Mouse Genome Informatics (MGI) Resource", "uri_format": "http://www.informatics.jax.org/searches/accession_report.cgi?id=mgi:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.mgnify.proj.miriam": {"id": "bioregistry.mgnify.proj.miriam", "sameas": "bioregistry.mgnify.proj", "homepage": "https://www.ebi.ac.uk/metagenomics", "prefix": "mgnify.proj", "name": "MGnify Project", "uri_format": "https://www.ebi.ac.uk/metagenomics/projects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mgnify.proj.n2t": {"id": "bioregistry.mgnify.proj.n2t", "sameas": "bioregistry.mgnify.proj", "homepage": "https://www.ebi.ac.uk/metagenomics", "prefix": "mgnify.proj", "name": "MGnify Project", "uri_format": "https://www.ebi.ac.uk/metagenomics/projects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mgnify.proj": {"id": "bioregistry.mgnify.proj", "homepage": null, "prefix": "mgnify.proj", "name": "MGnify Project", "uri_format": "https://www.ebi.ac.uk/metagenomics/projects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mgnify.samp.miriam": {"id": "bioregistry.mgnify.samp.miriam", "sameas": "bioregistry.mgnify.samp", "homepage": "https://www.ebi.ac.uk/metagenomics", "prefix": "mgnify.samp", "name": "MGnify Sample", "uri_format": "https://www.ebi.ac.uk/metagenomics/samples/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mgnify.samp.n2t": {"id": "bioregistry.mgnify.samp.n2t", "sameas": "bioregistry.mgnify.samp", "homepage": "https://www.ebi.ac.uk/metagenomics", "prefix": "mgnify.samp", "name": "MGnify Sample", "uri_format": "https://www.ebi.ac.uk/metagenomics/samples/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mgnify.samp": {"id": "bioregistry.mgnify.samp", "homepage": null, "prefix": "mgnify.samp", "name": "MGnify Sample", "uri_format": "https://www.ebi.ac.uk/metagenomics/samples/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mi.miriam": {"id": "bioregistry.mi.miriam", "sameas": "bioregistry.mi", "homepage": "https://www.ebi.ac.uk/ols4/ontologies/mi", "prefix": "mi", "name": "Molecular Interactions Ontology", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/mi/terms?obo_id=MI:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mi.n2t": {"id": "bioregistry.mi.n2t", "sameas": "bioregistry.mi", "homepage": "https://www.ebi.ac.uk/ols/ontologies/mi", "prefix": "psimi", "name": "Molecular Interactions Ontology through OLS", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/mi/terms?obo_id=MI:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mi.biolink": {"id": "bioregistry.mi.biolink", "sameas": "bioregistry.mi", "homepage": null, "prefix": "MI", "name": null, "uri_format": "http://purl.obolibrary.org/obo/MI_$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "biolink"}, "bioregistry.mi": {"id": "bioregistry.mi", "homepage": null, "prefix": "mi", "name": "Proteomic Standard Initiative for Molecular Interaction", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/mi/terms?obo_id=MI:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.microscope.miriam": {"id": "bioregistry.microscope.miriam", "sameas": "bioregistry.microscope", "homepage": "http://www.genoscope.cns.fr/agc/microscope", "prefix": "microscope", "name": "MicroScope", "uri_format": "http://www.genoscope.cns.fr/agc/microscope/mage/info.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.microscope.n2t": {"id": "bioregistry.microscope.n2t", "sameas": "bioregistry.microscope", "homepage": "http://www.genoscope.cns.fr/agc/microscope", "prefix": "microscope", "name": "MicroScope", "uri_format": "http://www.genoscope.cns.fr/agc/microscope/mage/info.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.microscope": {"id": "bioregistry.microscope", "homepage": null, "prefix": "microscope", "name": "Microbial Genome Annotation & Analysis Platform", "uri_format": "http://www.genoscope.cns.fr/agc/microscope/mage/info.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.microsporidia.miriam": {"id": "bioregistry.microsporidia.miriam", "sameas": "bioregistry.microsporidia", "homepage": "http://microsporidiadb.org/micro/", "prefix": "microsporidia", "name": "MicrosporidiaDB", "uri_format": "http://microsporidiadb.org/micro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.microsporidia.n2t": {"id": "bioregistry.microsporidia.n2t", "sameas": "bioregistry.microsporidia", "homepage": "http://microsporidiadb.org/micro/", "prefix": "microsporidia", "name": "MicrosporidiaDB at EuPathDB", "uri_format": "http://microsporidiadb.org/micro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.microsporidia.prefixcommons": {"id": "bioregistry.microsporidia.prefixcommons", "sameas": "bioregistry.microsporidia", "homepage": "http://microsporidiadb.org/micro/", "prefix": "microsporidia", "name": "MicrosporidiaDB", "uri_format": "http://microsporidiadb.org/micro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics"], "authority": "prefixcommons"}, "bioregistry.microsporidia": {"id": "bioregistry.microsporidia", "homepage": null, "prefix": "microsporidia", "name": "MicrosporidiaDB at EuPathDB", "uri_format": "http://microsporidiadb.org/micro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics"], "authority": "bioregistry"}, "bioregistry.millipore.cellosaurus": {"id": "bioregistry.millipore.cellosaurus", "sameas": "bioregistry.millipore", "homepage": "https://www.merckmillipore.com/", "prefix": "Millipore", "name": "Merck Millipore (EMD Millipore)", "uri_format": "https://www.merckmillipore.com/catalogue/item/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.millipore": {"id": "bioregistry.millipore", "homepage": null, "prefix": "millipore", "name": "Merck Millipore (EMD Millipore)", "uri_format": "https://www.merckmillipore.com/catalogue/item/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mimodb.miriam": {"id": "bioregistry.mimodb.miriam", "sameas": "bioregistry.mimodb", "homepage": "http://immunet.cn/bdb/", "prefix": "mimodb", "name": "MimoDB", "uri_format": "http://immunet.cn/bdb/index.php/mimoset/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mimodb.n2t": {"id": "bioregistry.mimodb.n2t", "sameas": "bioregistry.mimodb", "homepage": "http://immunet.cn/bdb/", "prefix": "mimodb", "name": "BDB at University of Electronic Science and Technology of China", "uri_format": "http://immunet.cn/bdb/index.php/mimoset/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mimodb.prefixcommons": {"id": "bioregistry.mimodb.prefixcommons", "sameas": "bioregistry.mimodb", "homepage": "http://immunet.cn/mimodb/", "prefix": "mimodb", "name": "MimoDB", "uri_format": "http://immunet.cn/mimodb/browse.php?table=mimoset&ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.mimodb": {"id": "bioregistry.mimodb", "homepage": null, "prefix": "mimodb", "name": "BDB at University of Electronic Science and Technology of China", "uri_format": "http://immunet.cn/mimodb/browse.php?table=mimoset&ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.minid.miriam": {"id": "bioregistry.minid.miriam", "sameas": "bioregistry.minid", "homepage": "https://fair-research.org", "prefix": "minid", "name": "Minimal Viable Identifier", "uri_format": "https://hdl.handle.net/hdl:20.500.12582/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.minid.n2t": {"id": "bioregistry.minid.n2t", "sameas": "bioregistry.minid", "homepage": "http://minid.bd2k.org", "prefix": "minid", "name": "Minimal Identifiers for Transient Data", "uri_format": "http://n2t.net/ark:/57799/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.minid": {"id": "bioregistry.minid", "homepage": null, "prefix": "minid", "name": "Minimal Identifiers for Transient Data", "uri_format": "https://hdl.handle.net/hdl:20.500.12582/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.minid.test.miriam": {"id": "bioregistry.minid.test.miriam", "sameas": "bioregistry.minid.test", "homepage": "https://fair-research.org", "prefix": "minid.test", "name": "MINID Test", "uri_format": "https://hdl.handle.net/hdl:20.500.12633/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.minid.test": {"id": "bioregistry.minid.test", "homepage": null, "prefix": "minid.test", "name": "MINID Test", "uri_format": "https://hdl.handle.net/hdl:20.500.12633/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mint.miriam": {"id": "bioregistry.mint.miriam", "sameas": "bioregistry.mint", "homepage": "http://mint.bio.uniroma2.it/mint/", "prefix": "mint", "name": "MINT", "uri_format": "http://mint.bio.uniroma2.it/mint/search/inFrameInteraction.do?interactionAc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mint.n2t": {"id": "bioregistry.mint.n2t", "sameas": "bioregistry.mint", "homepage": "https://www.ebi.ac.uk/intact/", "prefix": "mint", "name": "MINT subset through IntAct", "uri_format": "https://www.ebi.ac.uk/intact/query/interaction_id:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mint.prefixcommons": {"id": "bioregistry.mint.prefixcommons", "sameas": "bioregistry.mint", "homepage": "http://mint.bio.uniroma2.it/mint/", "prefix": "mint", "name": "Molecular INTeraction Database", "uri_format": "http://mint.bio.uniroma2.it/mint/search/interactor.do?queryType=protein&interactorAc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.mint.uniprot": {"id": "bioregistry.mint.uniprot", "sameas": "bioregistry.mint", "homepage": "https://mint.bio.uniroma2.it/", "prefix": "DB-0158", "name": "Molecular INTeraction database", "uri_format": "https://mint.bio.uniroma2.it/cgi-bin/protein.py?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.mint": {"id": "bioregistry.mint", "homepage": "https://mint.bio.uniroma2.it", "prefix": "mint", "name": "Molecular Interaction Database", "uri_format": "https://www.ebi.ac.uk/intact/query/interaction_id:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.mipmod.miriam": {"id": "bioregistry.mipmod.miriam", "sameas": "bioregistry.mipmod", "homepage": "http://bioinfo.iitk.ac.in/MIPModDB", "prefix": "mipmod", "name": "MIPModDB", "uri_format": "http://bioinfo.iitk.ac.in/MIPModDB/result.php?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mipmod.n2t": {"id": "bioregistry.mipmod.n2t", "sameas": "bioregistry.mipmod", "homepage": "http://bioinfo.iitk.ac.in/MIPModDB", "prefix": "mipmod", "name": "MIPModDB at Indian Institute of Technology Kanpur", "uri_format": "http://bioinfo.iitk.ac.in/MIPModDB/result.php?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mipmod.prefixcommons": {"id": "bioregistry.mipmod.prefixcommons", "sameas": "bioregistry.mipmod", "homepage": "http://bioinfo.iitk.ac.in/MIPModDB", "prefix": "mipmod", "name": "MIPModDB", "uri_format": "http://bioinfo.iitk.ac.in/MIPModDB/result.php?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.mipmod": {"id": "bioregistry.mipmod", "homepage": null, "prefix": "mipmod", "name": "MIPModDB at Indian Institute of Technology Kanpur", "uri_format": "http://bioinfo.iitk.ac.in/MIPModDB/result.php?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.mir.miriam": {"id": "bioregistry.mir.miriam", "sameas": "bioregistry.mir", "homepage": "https://registry.identifiers.org/registry", "prefix": "mir", "name": "Identifiers.org Registry", "uri_format": "https://resolver.api.identifiers.org/resolveMirId/MIR:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mir.n2t": {"id": "bioregistry.mir.n2t", "sameas": "bioregistry.mir", "homepage": "https://identifiers.org/registry", "prefix": "mir", "name": "Identifiers.org Registry through EBI", "uri_format": "https://identifiers.org/registry?query=\"MIR:$1\"", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mir": {"id": "bioregistry.mir", "homepage": null, "prefix": "mir", "name": "Identifiers.org Registry through EBI", "uri_format": "https://resolver.api.identifiers.org/resolveMirId/MIR:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mirbase.miriam": {"id": "bioregistry.mirbase.miriam", "sameas": "bioregistry.mirbase", "homepage": "http://www.mirbase.org/", "prefix": "mirbase", "name": "miRBase Sequence", "uri_format": "http://www.mirbase.org/cgi-bin/mirna_entry.pl?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mirbase.n2t": {"id": "bioregistry.mirbase.n2t", "sameas": "bioregistry.mirbase", "homepage": "http://www.mirbase.org/", "prefix": "mirbase", "name": "miRBase Sequence Database", "uri_format": "http://www.mirbase.org/cgi-bin/mirna_entry.pl?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mirbase.prefixcommons": {"id": "bioregistry.mirbase.prefixcommons", "sameas": "bioregistry.mirbase", "homepage": "http://www.mirbase.org/", "prefix": "mirbase", "name": "miRBase Sequence Database", "uri_format": "http://www.mirbase.org/cgi-bin/mirna_entry.pl?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.mirbase.wikidata": {"id": "bioregistry.mirbase.wikidata", "sameas": "bioregistry.mirbase", "homepage": "http://www.mirbase.org/", "prefix": "P2870", "name": "miRBase pre-miRNA ID", "uri_format": "http://www.mirbase.org/cgi-bin/mirna_entry.pl?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "wikidata"}, "bioregistry.mirbase.biolink": {"id": "bioregistry.mirbase.biolink", "sameas": "bioregistry.mirbase", "homepage": null, "prefix": "mirbase", "name": null, "uri_format": "http://identifiers.org/mirbase$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "biolink"}, "bioregistry.mirbase": {"id": "bioregistry.mirbase", "homepage": "http://www.mirbase.org/", "prefix": "mirbase", "name": "miRBase Sequence Database", "uri_format": "http://www.mirbase.org/cgi-bin/mirna_entry.pl?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.mirbase.mature.miriam": {"id": "bioregistry.mirbase.mature.miriam", "sameas": "bioregistry.mirbase.mature", "homepage": "http://www.mirbase.org/", "prefix": "mirbase.mature", "name": "miRBase mature sequence", "uri_format": "http://www.mirbase.org/cgi-bin/mature.pl?mature_acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mirbase.mature.n2t": {"id": "bioregistry.mirbase.mature.n2t", "sameas": "bioregistry.mirbase.mature", "homepage": "http://www.mirbase.org/", "prefix": "mirbase.mature", "name": "miRBase", "uri_format": "http://www.mirbase.org/cgi-bin/mature.pl?mature_acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mirbase.mature.prefixcommons": {"id": "bioregistry.mirbase.mature.prefixcommons", "sameas": "bioregistry.mirbase.mature", "homepage": null, "prefix": "mirbase.mature", "name": "miRBase mature sequence", "uri_format": "http://www.mirbase.org/cgi-bin/mature.pl?mature_acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "molecular biology"], "authority": "prefixcommons"}, "bioregistry.mirbase.mature.wikidata": {"id": "bioregistry.mirbase.mature.wikidata", "sameas": "bioregistry.mirbase.mature", "homepage": "http://www.mirbase.org/", "prefix": "P2871", "name": "miRBase mature miRNA ID", "uri_format": "http://www.mirbase.org/cgi-bin/mature.pl?mature_acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "molecular biology"], "authority": "wikidata"}, "bioregistry.mirbase.mature": {"id": "bioregistry.mirbase.mature", "homepage": "http://www.mirbase.org/", "prefix": "mirbase.mature", "name": "miRBase mature sequence", "uri_format": "http://www.mirbase.org/cgi-bin/mature.pl?mature_acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "molecular biology"], "authority": "bioregistry"}, "bioregistry.mirex.miriam": {"id": "bioregistry.mirex.miriam", "sameas": "bioregistry.mirex", "homepage": "http://comgen.pl/mirex/?page=home", "prefix": "mirex", "name": "mirEX", "uri_format": "http://comgen.pl/mirex1/?page=results/record&name=$1&exref=pp2a&limit=yes", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mirex.n2t": {"id": "bioregistry.mirex.n2t", "sameas": "bioregistry.mirex", "homepage": "http://comgen.pl/mirex/?page=home", "prefix": "mirex", "name": "mirEX at Adam Mickiewicz University", "uri_format": "http://comgen.pl/mirex1/?page=results/record&name=$1&exref=pp2a&limit=yes", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mirex": {"id": "bioregistry.mirex", "homepage": null, "prefix": "mirex", "name": "mirEX at Adam Mickiewicz University", "uri_format": "http://comgen.pl/mirex1/?page=results/record&name=$1&exref=pp2a&limit=yes", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.miriam.miriam": {"id": "bioregistry.miriam.miriam", "sameas": "bioregistry.miriam", "homepage": "https://www.ebi.ac.uk", "prefix": "identifiers.namespace", "name": "Identifiers.org namespace", "uri_format": "https://registry.identifiers.org/registry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.miriam": {"id": "bioregistry.miriam", "homepage": null, "prefix": "miriam", "name": "Minimal Information Required In the Annotation of Models", "uri_format": "https://registry.identifiers.org/registry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.miriam.collection.n2t": {"id": "bioregistry.miriam.collection.n2t", "sameas": "bioregistry.miriam.collection", "homepage": "https://www.ebi.ac.uk/miriam/", "prefix": "miriam.collection", "name": "MIRIAM Resources (data collection)", "uri_format": "https://www.ebi.ac.uk/miriam/main/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.miriam.collection": {"id": "bioregistry.miriam.collection", "homepage": null, "prefix": "miriam.collection", "name": "MIRIAM Resources (data collection)", "uri_format": "https://www.ebi.ac.uk/miriam/main/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.miriam.resource.miriam": {"id": "bioregistry.miriam.resource.miriam", "sameas": "bioregistry.miriam.resource", "homepage": "https://www.ebi.ac.uk/miriam/", "prefix": "miriam.resource", "name": "MIRIAM Registry resource", "uri_format": "https://www.ebi.ac.uk/miriam/main/resources/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.miriam.resource.n2t": {"id": "bioregistry.miriam.resource.n2t", "sameas": "bioregistry.miriam.resource", "homepage": "https://www.ebi.ac.uk/miriam/", "prefix": "miriam.resource", "name": "MIRIAM Registry (resources)", "uri_format": "https://www.ebi.ac.uk/miriam/main/resources/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.miriam.resource.prefixcommons": {"id": "bioregistry.miriam.resource.prefixcommons", "sameas": "bioregistry.miriam.resource", "homepage": "http://www.ebi.ac.uk/miriam/", "prefix": "miriam.resource", "name": "MIRIAM Resources", "uri_format": "http://www.ebi.ac.uk/miriam/main/resources/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.miriam.resource": {"id": "bioregistry.miriam.resource", "homepage": null, "prefix": "miriam.resource", "name": "MIRIAM Legacy Registry Identifier", "uri_format": "https://www.ebi.ac.uk/miriam/main/resources/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mirnest.miriam": {"id": "bioregistry.mirnest.miriam", "sameas": "bioregistry.mirnest", "homepage": "http://rhesus.amu.edu.pl/mirnest/copy/", "prefix": "mirnest", "name": "miRNEST", "uri_format": "http://rhesus.amu.edu.pl/mirnest/copy/details.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mirnest.n2t": {"id": "bioregistry.mirnest.n2t", "sameas": "bioregistry.mirnest", "homepage": "http://rhesus.amu.edu.pl/mirnest/copy/", "prefix": "mirnest", "name": "miRNEST at Adam Mickiewicz University", "uri_format": "http://rhesus.amu.edu.pl/mirnest/copy/details.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mirnest.prefixcommons": {"id": "bioregistry.mirnest.prefixcommons", "sameas": "bioregistry.mirnest", "homepage": "http://lemur.amu.edu.pl/share/php/mirnest/", "prefix": "mirnest", "name": "miRNEST", "uri_format": "http://lemur.amu.edu.pl/share/php/mirnest/search.php?search_term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.mirnest": {"id": "bioregistry.mirnest", "homepage": null, "prefix": "mirnest", "name": "miRNEST at Adam Mickiewicz University", "uri_format": "http://rhesus.amu.edu.pl/mirnest/copy/details.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mirtarbase.miriam": {"id": "bioregistry.mirtarbase.miriam", "sameas": "bioregistry.mirtarbase", "homepage": "http://mirtarbase.mbc.nctu.edu.tw/", "prefix": "mirtarbase", "name": "miRTarBase", "uri_format": "http://mirtarbase.mbc.nctu.edu.tw/php/detail.php?mirtid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mirtarbase.n2t": {"id": "bioregistry.mirtarbase.n2t", "sameas": "bioregistry.mirtarbase", "homepage": "http://mirtarbase.mbc.nctu.edu.tw/", "prefix": "mirtarbase", "name": "miRTarBase at National Chiao Tung University", "uri_format": "http://mirtarbase.mbc.nctu.edu.tw/php/detail.php?mirtid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mirtarbase.wikidata": {"id": "bioregistry.mirtarbase.wikidata", "sameas": "bioregistry.mirtarbase", "homepage": "http://mirtarbase.mbc.nctu.edu.tw/php/download.php", "prefix": "P2646", "name": "mirTarBase ID", "uri_format": "http://mirtarbase.mbc.nctu.edu.tw/php/detail.php?mirtid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.mirtarbase": {"id": "bioregistry.mirtarbase", "homepage": null, "prefix": "mirtarbase", "name": "miRTarBase at National Chiao Tung University", "uri_format": "http://mirtarbase.mbc.nctu.edu.tw/php/detail.php?mirtid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mlc.miriam": {"id": "bioregistry.mlc.miriam", "sameas": "bioregistry.mlc", "homepage": "https://mlcommons.org/en/", "prefix": "mlc", "name": "MLCommons Association", "uri_format": "https://www.mlcommons.org/mlc-id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mlc": {"id": "bioregistry.mlc", "homepage": null, "prefix": "mlc", "name": "MLCommons Association", "uri_format": "https://www.mlcommons.org/mlc-id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mmdb.miriam": {"id": "bioregistry.mmdb.miriam", "sameas": "bioregistry.mmdb", "homepage": "http://www.ncbi.nlm.nih.gov/sites/entrez?db=structure", "prefix": "mmdb", "name": "Molecular Modeling Database", "uri_format": "http://www.ncbi.nlm.nih.gov/Structure/mmdb/mmdbsrv.cgi?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mmdb.n2t": {"id": "bioregistry.mmdb.n2t", "sameas": "bioregistry.mmdb", "homepage": "http://www.ncbi.nlm.nih.gov/sites/entrez?db=structure", "prefix": "mmdb", "name": "MMDB at NCBI", "uri_format": "http://www.ncbi.nlm.nih.gov/Structure/mmdb/mmdbsrv.cgi?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mmdb.prefixcommons": {"id": "bioregistry.mmdb.prefixcommons", "sameas": "bioregistry.mmdb", "homepage": "http://www.ncbi.nlm.nih.gov/Structure/", "prefix": "mmdb", "name": "Molecular Modeling Database", "uri_format": "http://www.ncbi.nlm.nih.gov/Structure/mmdb/mmdbsrv.cgi?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.mmdb": {"id": "bioregistry.mmdb", "homepage": null, "prefix": "mmdb", "name": "Molecular Modeling Database", "uri_format": "http://www.ncbi.nlm.nih.gov/Structure/mmdb/mmdbsrv.cgi?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.mmmp.biomaps.miriam": {"id": "bioregistry.mmmp.biomaps.miriam", "sameas": "bioregistry.mmmp.biomaps", "homepage": "http://www.mmmp.org/MMMP/public/biomap/listBiomap.mmmp", "prefix": "mmmp:biomaps", "name": "Melanoma Molecular Map Project Biomaps", "uri_format": "http://www.mmmp.org/MMMP/public/biomap/viewBiomap.mmmp?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mmmp.biomaps.n2t": {"id": "bioregistry.mmmp.biomaps.n2t", "sameas": "bioregistry.mmmp.biomaps", "homepage": "http://www.mmmp.org/MMMP/public/biomap/listBiomap.mmmp", "prefix": "biomaps", "name": "main webpage", "uri_format": "http://www.mmmp.org/MMMP/public/biomap/viewBiomap.mmmp?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mmmp.biomaps.prefixcommons": {"id": "bioregistry.mmmp.biomaps.prefixcommons", "sameas": "bioregistry.mmmp.biomaps", "homepage": "http://www.mmmp.org/MMMP/", "prefix": "mmmp", "name": "Melanoma Molecular Map Project", "uri_format": "http://www.mmmp.org/MMMP/public/biomap/viewBiomap.mmmp?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.mmmp.biomaps.biolink": {"id": "bioregistry.mmmp.biomaps.biolink", "sameas": "bioregistry.mmmp.biomaps", "homepage": null, "prefix": "mmmp.biomaps", "name": null, "uri_format": "https://bioregistry.io/mmmp.biomaps:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "biolink"}, "bioregistry.mmmp.biomaps": {"id": "bioregistry.mmmp.biomaps", "homepage": null, "prefix": "mmmp.biomaps", "name": "Melanoma Molecular Map Project Biomaps", "uri_format": "https://bioregistry.io/mmmp.biomaps:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.mmp.cat.miriam": {"id": "bioregistry.mmp.cat.miriam", "sameas": "bioregistry.mmp.cat", "homepage": "https://mmp.sfb.uit.no/databases/marcat/", "prefix": "mmp.cat", "name": "MarCat", "uri_format": "https://mmp.sfb.uit.no/databases/marcat/#/records/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mmp.cat.n2t": {"id": "bioregistry.mmp.cat.n2t", "sameas": "bioregistry.mmp.cat", "homepage": "https://mmp.sfb.uit.no/databases/marcat/", "prefix": "mmp.cat", "name": "MarCat through SfB", "uri_format": "https://mmp.sfb.uit.no/databases/marcat/#/records/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mmp.cat": {"id": "bioregistry.mmp.cat", "homepage": null, "prefix": "mmp.cat", "name": "MarCat through SfB", "uri_format": "https://mmp.sfb.uit.no/databases/marcat/#/records/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mmp.db.miriam": {"id": "bioregistry.mmp.db.miriam", "sameas": "bioregistry.mmp.db", "homepage": "https://mmp.sfb.uit.no/databases/mardb/", "prefix": "mmp.db", "name": "MarDB", "uri_format": "https://mmp.sfb.uit.no/databases/mardb/#/records/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mmp.db.n2t": {"id": "bioregistry.mmp.db.n2t", "sameas": "bioregistry.mmp.db", "homepage": "https://mmp.sfb.uit.no/databases/mardb/", "prefix": "mmp.db", "name": "MarDB through SfB", "uri_format": "https://mmp.sfb.uit.no/databases/mardb/#/records/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mmp.db": {"id": "bioregistry.mmp.db", "homepage": null, "prefix": "mmp.db", "name": "MarDB through SfB", "uri_format": "https://mmp.sfb.uit.no/databases/mardb/#/records/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mmp.fun.miriam": {"id": "bioregistry.mmp.fun.miriam", "sameas": "bioregistry.mmp.fun", "homepage": "https://mmp.sfb.uit.no/databases/marfun", "prefix": "mmp.fun", "name": "MarFun", "uri_format": "https://mmp.sfb.uit.no/databases/marfun/#/records/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mmp.fun": {"id": "bioregistry.mmp.fun", "homepage": null, "prefix": "mmp.fun", "name": "MarFun", "uri_format": "https://mmp.sfb.uit.no/databases/marfun/#/records/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mmp.ref.miriam": {"id": "bioregistry.mmp.ref.miriam", "sameas": "bioregistry.mmp.ref", "homepage": "https://mmp.sfb.uit.no/databases/marref/", "prefix": "mmp.ref", "name": "MarRef", "uri_format": "https://mmp.sfb.uit.no/databases/marref/#/records/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mmp.ref.n2t": {"id": "bioregistry.mmp.ref.n2t", "sameas": "bioregistry.mmp.ref", "homepage": "https://mmp.sfb.uit.no/databases/marref/", "prefix": "mmp.ref", "name": "MarRef through SfB", "uri_format": "https://mmp.sfb.uit.no/databases/marref/#/records/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mmp.ref": {"id": "bioregistry.mmp.ref", "homepage": null, "prefix": "mmp.ref", "name": "MarRef through SfB", "uri_format": "https://mmp.sfb.uit.no/databases/marref/#/records/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mmrrc.miriam": {"id": "bioregistry.mmrrc.miriam", "sameas": "bioregistry.mmrrc", "homepage": "http://www.mmrrc.org/", "prefix": "mmrrc", "name": "MMRRC", "uri_format": "http://www.mmrrc.org/catalog/getSDS.php?mmrrc_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mmrrc.n2t": {"id": "bioregistry.mmrrc.n2t", "sameas": "bioregistry.mmrrc", "homepage": "http://www.mmrrc.org/", "prefix": "mmrrc", "name": "MMRRC at University of North Carolina", "uri_format": "http://www.mmrrc.org/catalog/getSDS.php?mmrrc_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mmrrc.cellosaurus": {"id": "bioregistry.mmrrc.cellosaurus", "sameas": "bioregistry.mmrrc", "homepage": "https://www.mmrrc.org/", "prefix": "MMRRC", "name": "Mutant Mouse Resource & Research Centers", "uri_format": "https://www.mmrrc.org/catalog/getSDS.php?mmrrc_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.mmrrc.biocontext": {"id": "bioregistry.mmrrc.biocontext", "sameas": "bioregistry.mmrrc", "homepage": null, "prefix": "MMRRC", "name": null, "uri_format": "https://www.mmrrc.org/catalog/sds.php?mmrrc_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.mmrrc": {"id": "bioregistry.mmrrc", "homepage": "https://www.mmrrc.org", "prefix": "mmrrc", "name": "Mutant Mouse Resource and Research Centers", "uri_format": "https://www.mmrrc.org/catalog/sds.php?mmrrc_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mmsinc.prefixcommons": {"id": "bioregistry.mmsinc.prefixcommons", "sameas": "bioregistry.mmsinc", "homepage": "http://mms.dsfarm.unipd.it/MMsINC", "prefix": "mmsinc", "name": "MMsINC", "uri_format": "http://mms.dsfarm.unipd.it/mmsinc/search/molecule.php?mmscode=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.mmsinc": {"id": "bioregistry.mmsinc", "homepage": null, "prefix": "mmsinc", "name": "MMsINC", "uri_format": "http://mms.dsfarm.unipd.it/mmsinc/search/molecule.php?mmscode=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mmusdv.biolink": {"id": "bioregistry.mmusdv.biolink", "sameas": "bioregistry.mmusdv", "homepage": null, "prefix": "MmusDv", "name": null, "uri_format": "http://purl.obolibrary.org/obo/MMUSDV_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.mmusdv": {"id": "bioregistry.mmusdv", "homepage": null, "prefix": "mmusdv", "name": "Mouse Developmental Stages", "uri_format": "http://purl.obolibrary.org/obo/MMUSDV_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mo.miriam": {"id": "bioregistry.mo.miriam", "sameas": "bioregistry.mo", "homepage": "http://bioportal.bioontology.org/", "prefix": "mo", "name": "MGED Ontology", "uri_format": "http://purl.bioontology.org/ontology/MO/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mo.n2t": {"id": "bioregistry.mo.n2t", "sameas": "bioregistry.mo", "homepage": "http://bioportal.bioontology.org/", "prefix": "mo", "name": "MGED Ontology at BioPortal", "uri_format": "http://purl.bioontology.org/ontology/MO/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mo": {"id": "bioregistry.mo", "homepage": null, "prefix": "mo", "name": "Microarray and Gene Expression Data Ontology", "uri_format": "http://purl.bioontology.org/ontology/MO/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mobidb.miriam": {"id": "bioregistry.mobidb.miriam", "sameas": "bioregistry.mobidb", "homepage": "https://mobidb.org/", "prefix": "mobidb", "name": "MobiDB", "uri_format": "https://mobidb.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mobidb.n2t": {"id": "bioregistry.mobidb.n2t", "sameas": "bioregistry.mobidb", "homepage": "http://mobidb.bio.unipd.it", "prefix": "mobidb", "name": "MobiDB", "uri_format": "http://mobidb.bio.unipd.it/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mobidb.uniprot": {"id": "bioregistry.mobidb.uniprot", "sameas": "bioregistry.mobidb", "homepage": "https://mobidb.bio.unipd.it/", "prefix": "DB-0183", "name": "MobiDB", "uri_format": "https://mobidb.bio.unipd.it/entries/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.mobidb": {"id": "bioregistry.mobidb", "homepage": "http://mobidb.bio.unipd.it", "prefix": "mobidb", "name": "MobiDB", "uri_format": "https://mobidb.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mod.miriam": {"id": "bioregistry.mod.miriam", "sameas": "bioregistry.mod", "homepage": "http://bioportal.bioontology.org/ontologies/PSIMOD", "prefix": "mod", "name": "Protein Modification Ontology", "uri_format": "http://bioportal.bioontology.org/ontologies/1041?p=terms&conceptid=MOD:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mod.n2t": {"id": "bioregistry.mod.n2t", "sameas": "bioregistry.mod", "homepage": "http://bioportal.bioontology.org/ontologies/PSIMOD", "prefix": "mod", "name": "Protein modifications ontology through BioPortal", "uri_format": "http://bioportal.bioontology.org/ontologies/1041?p=terms&conceptid=MOD:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mod": {"id": "bioregistry.mod", "homepage": null, "prefix": "mod", "name": "Proteomics Standards Initiative protein modification ontology", "uri_format": "http://bioportal.bioontology.org/ontologies/1041?p=terms&conceptid=MOD:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.modeldb.miriam": {"id": "bioregistry.modeldb.miriam", "sameas": "bioregistry.modeldb", "homepage": "https://modeldb.science", "prefix": "modeldb", "name": "ModelDB", "uri_format": "https://modeldb.science/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.modeldb.n2t": {"id": "bioregistry.modeldb.n2t", "sameas": "bioregistry.modeldb", "homepage": "http://senselab.med.yale.edu/ModelDB/", "prefix": "modeldb", "name": "ModelDB at SenseLab", "uri_format": "http://senselab.med.yale.edu/ModelDB/ShowModel.asp?model=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.modeldb.prefixcommons": {"id": "bioregistry.modeldb.prefixcommons", "sameas": "bioregistry.modeldb", "homepage": "http://senselab.med.yale.edu/ModelDB/", "prefix": "modeldb", "name": "ModelDB", "uri_format": "http://senselab.med.yale.edu/ModelDB/ShowModel.asp?model=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.modeldb": {"id": "bioregistry.modeldb", "homepage": null, "prefix": "modeldb", "name": "ModelDB at SenseLab", "uri_format": "https://modeldb.science/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.modeldb.concept.miriam": {"id": "bioregistry.modeldb.concept.miriam", "sameas": "bioregistry.modeldb.concept", "homepage": "https://www.yale.edu", "prefix": "modeldb.concept", "name": "ModelDB concept", "uri_format": "https://senselab.med.yale.edu/ModelDB/ModelList?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.modeldb.concept": {"id": "bioregistry.modeldb.concept", "homepage": null, "prefix": "modeldb.concept", "name": "ModelDB concept", "uri_format": "https://senselab.med.yale.edu/ModelDB/ModelList?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.molbase.miriam": {"id": "bioregistry.molbase.miriam", "sameas": "bioregistry.molbase", "homepage": "http://www.molbase.com/", "prefix": "molbase", "name": "Molbase", "uri_format": "http://www.molbase.com/en/index.php?app=search&search_keyword=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.molbase.n2t": {"id": "bioregistry.molbase.n2t", "sameas": "bioregistry.molbase", "homepage": "http://www.molbase.com/", "prefix": "molbase", "name": "Molbase at Chinese Academy of Sciences", "uri_format": "http://www.molbase.com/en/index.php?app=search&search_keyword=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.molbase": {"id": "bioregistry.molbase", "homepage": null, "prefix": "molbase", "name": "Molbase at Chinese Academy of Sciences", "uri_format": "http://www.molbase.com/en/index.php?app=search&search_keyword=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.molmedb.miriam": {"id": "bioregistry.molmedb.miriam", "sameas": "bioregistry.molmedb", "homepage": "http://www.upol.cz/en/", "prefix": "molmedb", "name": "MolMeDB", "uri_format": "https://molmedb.upol.cz/mol/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.molmedb": {"id": "bioregistry.molmedb", "homepage": null, "prefix": "molmedb", "name": "MolMeDB: Molecules on Membranes Database", "uri_format": "https://molmedb.upol.cz/mol/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.molmovdb.prefixcommons": {"id": "bioregistry.molmovdb.prefixcommons", "sameas": "bioregistry.molmovdb", "homepage": "http://bioinfo.mbb.yale.edu/MolMovDB/", "prefix": "molmovdb", "name": "Database of Macromolecular Movements", "uri_format": "http://www.molmovdb.org/cgi-bin/morph.cgi?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.molmovdb": {"id": "bioregistry.molmovdb", "homepage": null, "prefix": "molmovdb", "name": "Database of Macromolecular Movements", "uri_format": "http://www.molmovdb.org/cgi-bin/morph.cgi?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.mondo.wikidata": {"id": "bioregistry.mondo.wikidata", "sameas": "bioregistry.mondo", "homepage": "https://github.com/monarch-initiative/mondo", "prefix": "P5270", "name": "Mondo ID", "uri_format": "http://www.bioregistry.io/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.mondo": {"id": "bioregistry.mondo", "homepage": null, "prefix": "mondo", "name": "Monarch Disease Ontology", "uri_format": "http://www.bioregistry.io/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.morpheus.miriam": {"id": "bioregistry.morpheus.miriam", "sameas": "bioregistry.morpheus", "homepage": "https://morpheus.gitlab.io/", "prefix": "morpheus", "name": "Morpheus model repository", "uri_format": "https://morpheus.gitlab.io/models/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.morpheus": {"id": "bioregistry.morpheus", "homepage": null, "prefix": "morpheus", "name": "Morpheus model repository", "uri_format": "https://morpheus.gitlab.io/models/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mp.miriam": {"id": "bioregistry.mp.miriam", "sameas": "bioregistry.mp", "homepage": "http://www.informatics.jax.org/", "prefix": "mp", "name": "Mammalian Phenotype Ontology", "uri_format": "http://www.informatics.jax.org/searches/Phat.cgi?id=MP:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mp.n2t": {"id": "bioregistry.mp.n2t", "sameas": "bioregistry.mp", "homepage": "https://bioportal.bioontology.org/ontologies/MP", "prefix": "mp", "name": "Mammalian Phenotype Ontology through BioPortal", "uri_format": "https://bioportal.bioontology.org/ontologies/MP/MP:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mp.prefixcommons": {"id": "bioregistry.mp.prefixcommons", "sameas": "bioregistry.mp", "homepage": "http://www.informatics.jax.org/searches/MP_form.shtml", "prefix": "mp", "name": "Mammalian phenotype", "uri_format": "http://www.informatics.jax.org/searches/Phat.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology"], "authority": "prefixcommons"}, "bioregistry.mp": {"id": "bioregistry.mp", "homepage": null, "prefix": "mp", "name": "Mammalian Phenotype Ontology through BioPortal", "uri_format": "https://bioportal.bioontology.org/ontologies/MP/MP:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology"], "authority": "bioregistry"}, "bioregistry.mpid.miriam": {"id": "bioregistry.mpid.miriam", "sameas": "bioregistry.mpid", "homepage": "http://www.jcvi.org/mpidb/about.php", "prefix": "mpid", "name": "Microbial Protein Interaction Database", "uri_format": "http://www.jcvi.org/mpidb/experiment.php?interaction_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mpid.n2t": {"id": "bioregistry.mpid.n2t", "sameas": "bioregistry.mpid", "homepage": "http://www.jcvi.org/mpidb/about.php", "prefix": "mpid", "name": "Microbial Protein Interaction Database", "uri_format": "http://www.jcvi.org/mpidb/experiment.php?interaction_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mpid.prefixcommons": {"id": "bioregistry.mpid.prefixcommons", "sameas": "bioregistry.mpid", "homepage": "http://www.jcvi.org/mpidb/", "prefix": "mpi", "name": "Microbial Protein Interaction Database", "uri_format": "http://www.jcvi.org/mpidb/interaction.php?pname=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.mpid": {"id": "bioregistry.mpid", "homepage": null, "prefix": "mpid", "name": "Microbial Protein Interaction Database", "uri_format": "http://www.jcvi.org/mpidb/interaction.php?pname=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.ms.miriam": {"id": "bioregistry.ms.miriam", "sameas": "bioregistry.ms", "homepage": "https://bioportal.bioontology.org/ontologies/MS", "prefix": "ms", "name": "Mass Spectrometry Controlled Vocabulary", "uri_format": "http://purl.bioontology.org/ontology/MS/MS:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ms.n2t": {"id": "bioregistry.ms.n2t", "sameas": "bioregistry.ms", "homepage": "https://bioportal.bioontology.org/ontologies/MS", "prefix": "ms", "name": "Mass Spectrometry Controlled Vocabulary through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/MS/MS:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ms": {"id": "bioregistry.ms", "homepage": null, "prefix": "ms", "name": "Mass Spectrometry Controlled Vocabulary through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/MS/MS:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.msigdb.biolink": {"id": "bioregistry.msigdb.biolink", "sameas": "bioregistry.msigdb", "homepage": null, "prefix": "MSigDB", "name": null, "uri_format": "https://www.gsea-msigdb.org/gsea/msigdb/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.msigdb": {"id": "bioregistry.msigdb", "homepage": "https://www.gsea-msigdb.org", "prefix": "msigdb", "name": "Molecular Signatures Database", "uri_format": "https://www.gsea-msigdb.org/gsea/msigdb/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mtbd.prefixcommons": {"id": "bioregistry.mtbd.prefixcommons", "sameas": "bioregistry.mtbd", "homepage": "http://tumor.informatics.jax.org", "prefix": "mtbd", "name": "Mouse Tumor Biology Database", "uri_format": "http://tumor.informatics.jax.org/mtbwi/strainDetails.do?key=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.mtbd": {"id": "bioregistry.mtbd", "homepage": null, "prefix": "mtbd", "name": "Mouse Tumor Biology Database", "uri_format": "http://tumor.informatics.jax.org/mtbwi/strainDetails.do?key=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.multicellds.cell_line.miriam": {"id": "bioregistry.multicellds.cell_line.miriam", "sameas": "bioregistry.multicellds.cell_line", "homepage": "http://multicellds.org/MultiCellDB.php", "prefix": "multicellds.cell_line", "name": "MultiCellDS Digital Cell Line", "uri_format": "http://multicellds.org/MultiCellDB/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.multicellds.cell_line.n2t": {"id": "bioregistry.multicellds.cell_line.n2t", "sameas": "bioregistry.multicellds.cell_line", "homepage": "http://multicellds.org/MultiCellDB.php", "prefix": "multicellds.cell_line", "name": "MultiCellDS Digital Cell Line at Keck School of Medicine", "uri_format": "http://multicellds.org/MultiCellDB/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.multicellds.cell_line": {"id": "bioregistry.multicellds.cell_line", "homepage": null, "prefix": "multicellds.cell_line", "name": "MultiCellDS Digital Cell Line at Keck School of Medicine", "uri_format": "http://multicellds.org/MultiCellDB/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.multicellds.collection.miriam": {"id": "bioregistry.multicellds.collection.miriam", "sameas": "bioregistry.multicellds.collection", "homepage": "http://multicellds.org/MultiCellDB.php", "prefix": "multicellds.collection", "name": "MultiCellDS collection", "uri_format": "http://multicellds.org/MultiCellDB/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.multicellds.collection.n2t": {"id": "bioregistry.multicellds.collection.n2t", "sameas": "bioregistry.multicellds.collection", "homepage": "http://multicellds.org/MultiCellDB.php", "prefix": "multicellds.collection", "name": "MultiCellDScollection at Keck School of Medicine", "uri_format": "http://multicellds.org/MultiCellDB/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.multicellds.collection": {"id": "bioregistry.multicellds.collection", "homepage": null, "prefix": "multicellds.collection", "name": "MultiCellDScollection at Keck School of Medicine", "uri_format": "http://multicellds.org/MultiCellDB/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.multicellds.snapshot.miriam": {"id": "bioregistry.multicellds.snapshot.miriam", "sameas": "bioregistry.multicellds.snapshot", "homepage": "http://multicellds.org/MultiCellDB.php", "prefix": "multicellds.snapshot", "name": "MultiCellDS Digital snapshot", "uri_format": "http://multicellds.org/MultiCellDB/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.multicellds.snapshot.n2t": {"id": "bioregistry.multicellds.snapshot.n2t", "sameas": "bioregistry.multicellds.snapshot", "homepage": "http://multicellds.org/MultiCellDB.php", "prefix": "multicellds.snapshot", "name": "MultiCellDS snapshot at Keck School of Medicine", "uri_format": "http://multicellds.org/MultiCellDB/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.multicellds.snapshot": {"id": "bioregistry.multicellds.snapshot", "homepage": null, "prefix": "multicellds.snapshot", "name": "MultiCellDS snapshot at Keck School of Medicine", "uri_format": "http://multicellds.org/MultiCellDB/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mw.project.miriam": {"id": "bioregistry.mw.project.miriam", "sameas": "bioregistry.mw.project", "homepage": "http://www.metabolomicsworkbench.org/", "prefix": "mw.project", "name": "Metabolomics Workbench Project", "uri_format": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Project&ProjectID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mw.project.n2t": {"id": "bioregistry.mw.project.n2t", "sameas": "bioregistry.mw.project", "homepage": "http://www.metabolomicsworkbench.org/", "prefix": "mw.project", "name": "Metabolomics Workbench Project", "uri_format": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Project&ProjectID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mw.project": {"id": "bioregistry.mw.project", "homepage": null, "prefix": "mw.project", "name": "Metabolomics Workbench Project", "uri_format": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Project&ProjectID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mw.study.miriam": {"id": "bioregistry.mw.study.miriam", "sameas": "bioregistry.mw.study", "homepage": "http://www.metabolomicsworkbench.org/", "prefix": "mw.study", "name": "Metabolomics Workbench Study", "uri_format": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Study&StudyID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mw.study.n2t": {"id": "bioregistry.mw.study.n2t", "sameas": "bioregistry.mw.study", "homepage": "http://www.metabolomicsworkbench.org/", "prefix": "mw.study", "name": "Metabolomics Workbench Study", "uri_format": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Study&StudyID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mw.study": {"id": "bioregistry.mw.study", "homepage": null, "prefix": "mw.study", "name": "Metabolomics Workbench Study", "uri_format": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Study&StudyID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.myco.lepra.miriam": {"id": "bioregistry.myco.lepra.miriam", "sameas": "bioregistry.myco.lepra", "homepage": "http://mycobrowser.epfl.ch/leprosy.html", "prefix": "myco.lepra", "name": "MycoBrowser leprae", "uri_format": "http://mycobrowser.epfl.ch/leprosysearch.php?gene+name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.myco.lepra.n2t": {"id": "bioregistry.myco.lepra.n2t", "sameas": "bioregistry.myco.lepra", "homepage": "http://mycobrowser.epfl.ch/leprosy.html", "prefix": "myco.lepra", "name": "MycoBrowser leprae at Global Health Institute", "uri_format": "http://mycobrowser.epfl.ch/leprosysearch.php?gene+name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.myco.lepra.prefixcommons": {"id": "bioregistry.myco.lepra.prefixcommons", "sameas": "bioregistry.myco.lepra", "homepage": "http://mycobrowser.epfl.ch/leprosy.html", "prefix": "myco.lepra", "name": "MycoBrowser leprae", "uri_format": "http://mycobrowser.epfl.ch/leprosysearch.php?gene+name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.myco.lepra": {"id": "bioregistry.myco.lepra", "homepage": null, "prefix": "myco.lepra", "name": "MycoBrowser leprae at Global Health Institute", "uri_format": "http://mycobrowser.epfl.ch/leprosysearch.php?gene+name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.myco.marinum.miriam": {"id": "bioregistry.myco.marinum.miriam", "sameas": "bioregistry.myco.marinum", "homepage": "http://mycobrowser.epfl.ch/marinolist.html", "prefix": "myco.marinum", "name": "MycoBrowser marinum", "uri_format": "http://mycobrowser.epfl.ch/marinosearch.php?gene+name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.myco.marinum.n2t": {"id": "bioregistry.myco.marinum.n2t", "sameas": "bioregistry.myco.marinum", "homepage": "http://mycobrowser.epfl.ch/marinolist.html", "prefix": "myco.marinum", "name": "MycoBrowser marinum at Global Health Institute", "uri_format": "http://mycobrowser.epfl.ch/marinosearch.php?gene+name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.myco.marinum.prefixcommons": {"id": "bioregistry.myco.marinum.prefixcommons", "sameas": "bioregistry.myco.marinum", "homepage": "http://mycobrowser.epfl.ch/marinolist.html", "prefix": "myco.marinum", "name": "MycoBrowser marinum", "uri_format": "http://mycobrowser.epfl.ch/marinosearch.php?gene+name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.myco.marinum": {"id": "bioregistry.myco.marinum", "homepage": null, "prefix": "myco.marinum", "name": "MycoBrowser marinum at Global Health Institute", "uri_format": "http://mycobrowser.epfl.ch/marinosearch.php?gene+name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.myco.smeg.miriam": {"id": "bioregistry.myco.smeg.miriam", "sameas": "bioregistry.myco.smeg", "homepage": "http://mycobrowser.epfl.ch/smegmalist.html", "prefix": "myco.smeg", "name": "MycoBrowser smegmatis", "uri_format": "http://mycobrowser.epfl.ch/smegmasearch.php?gene+name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.myco.smeg.n2t": {"id": "bioregistry.myco.smeg.n2t", "sameas": "bioregistry.myco.smeg", "homepage": "http://mycobrowser.epfl.ch/smegmalist.html", "prefix": "myco.smeg", "name": "MycoBrowser smegmatis at Global Health Institute", "uri_format": "http://mycobrowser.epfl.ch/smegmasearch.php?gene+name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.myco.smeg.prefixcommons": {"id": "bioregistry.myco.smeg.prefixcommons", "sameas": "bioregistry.myco.smeg", "homepage": "http://mycobrowser.epfl.ch/smegmalist.html", "prefix": "myco.smeg", "name": "MycoBrowser smegmatis", "uri_format": "http://mycobrowser.epfl.ch/smegmasearch.php?gene+name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.myco.smeg": {"id": "bioregistry.myco.smeg", "homepage": null, "prefix": "myco.smeg", "name": "MycoBrowser smegmatis at Global Health Institute", "uri_format": "http://mycobrowser.epfl.ch/smegmasearch.php?gene+name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.myco.tuber.miriam": {"id": "bioregistry.myco.tuber.miriam", "sameas": "bioregistry.myco.tuber", "homepage": "http://tuberculist.epfl.ch/", "prefix": "myco.tuber", "name": "MycoBrowser tuberculosis", "uri_format": "http://tuberculist.epfl.ch/quicksearch.php?gene+name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.myco.tuber.n2t": {"id": "bioregistry.myco.tuber.n2t", "sameas": "bioregistry.myco.tuber", "homepage": "http://tuberculist.epfl.ch/", "prefix": "myco.tuber", "name": "MycoBrowser tuberculosis at Global Health Institute", "uri_format": "http://tuberculist.epfl.ch/quicksearch.php?gene+name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.myco.tuber.prefixcommons": {"id": "bioregistry.myco.tuber.prefixcommons", "sameas": "bioregistry.myco.tuber", "homepage": "http://tuberculist.epfl.ch", "prefix": "tuberculist", "name": "Mycobacterium tuberculosis strain H37Rv genome database", "uri_format": "http://tuberculist.epfl.ch/quicksearch.php?gene+name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.myco.tuber.uniprot": {"id": "bioregistry.myco.tuber.uniprot", "sameas": "bioregistry.myco.tuber", "homepage": "https://mycobrowser.epfl.ch/", "prefix": "DB-0106", "name": "Mycobacterium tuberculosis strain H37Rv genome database", "uri_format": "https://mycobrowser.epfl.ch/genes/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "uniprot"}, "bioregistry.myco.tuber": {"id": "bioregistry.myco.tuber", "homepage": null, "prefix": "myco.tuber", "name": "Mycobacterium tuberculosis strain H37Rv genome database", "uri_format": "https://mycobrowser.epfl.ch/genes/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.mycobank.miriam": {"id": "bioregistry.mycobank.miriam", "sameas": "bioregistry.mycobank", "homepage": "http://www.mycobank.org/", "prefix": "mycobank", "name": "MycoBank", "uri_format": "http://www.mycobank.org/Biolomics.aspx?Table=Mycobank&MycoBankNr_=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mycobank.n2t": {"id": "bioregistry.mycobank.n2t", "sameas": "bioregistry.mycobank", "homepage": "http://www.mycobank.org/", "prefix": "mycobank", "name": "MycoBank at Fungal Biodiversity Centre", "uri_format": "http://www.mycobank.org/Biolomics.aspx?Table=Mycobank&MycoBankNr_=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mycobank.prefixcommons": {"id": "bioregistry.mycobank.prefixcommons", "sameas": "bioregistry.mycobank", "homepage": "http://www.mycobank.org", "prefix": "mycobank", "name": "Fungal Nomenclature and Species Bank", "uri_format": "http://www.mycobank.org/MycoTaxo.aspx?Link=T&Rec=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.mycobank": {"id": "bioregistry.mycobank", "homepage": null, "prefix": "mycobank", "name": "MycoBank at Fungal Biodiversity Centre", "uri_format": "http://www.mycobank.org/MycoTaxo.aspx?Link=T&Rec=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.mzspec.miriam": {"id": "bioregistry.mzspec.miriam", "sameas": "bioregistry.mzspec", "homepage": "http://proteomecentral.proteomexchange.org/", "prefix": "mzspec", "name": "Universal Spectrum Identifier", "uri_format": "http://proteomecentral.proteomexchange.org/usi/?usi=mzspec:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.mzspec.n2t": {"id": "bioregistry.mzspec.n2t", "sameas": "bioregistry.mzspec", "homepage": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/ShowObservedSpectrum", "prefix": "mzspec", "name": "Universal Spectrum Identifier through Peptide Atlas", "uri_format": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/ShowObservedSpectrum?usi=mzspec:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.mzspec": {"id": "bioregistry.mzspec", "homepage": null, "prefix": "mzspec", "name": "Universal Spectrum Identifier through Peptide Atlas", "uri_format": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/ShowObservedSpectrum?usi=mzspec:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.nando.miriam": {"id": "bioregistry.nando.miriam", "sameas": "bioregistry.nando", "homepage": "https://nanbyodata.jp/", "prefix": "nando", "name": "Nanbyo Disease Ontology", "uri_format": "https://nanbyodata.jp/disease/NANDO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.nando": {"id": "bioregistry.nando", "homepage": null, "prefix": "nando", "name": "Nanbyo Disease Ontology", "uri_format": "https://nanbyodata.jp/disease/NANDO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.napdi.miriam": {"id": "bioregistry.napdi.miriam", "sameas": "bioregistry.napdi", "homepage": "https://repo.napdi.org/", "prefix": "napdi", "name": "Natural Product-Drug Interaction Research Data Repository", "uri_format": "https://repo.napdi.org/study/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.napdi.n2t": {"id": "bioregistry.napdi.n2t", "sameas": "bioregistry.napdi", "homepage": "https://repo.napdi.org/", "prefix": "napdi", "name": "Natural Product-Drug Interaction Research Data Repository", "uri_format": "https://repo.napdi.org/study/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.napdi": {"id": "bioregistry.napdi", "homepage": null, "prefix": "napdi", "name": "Natural Product-Drug Interaction Research Data Repository", "uri_format": "https://repo.napdi.org/study/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.napp.miriam": {"id": "bioregistry.napp.miriam", "sameas": "bioregistry.napp", "homepage": "http://napp.u-psud.fr/", "prefix": "napp", "name": "NAPP", "uri_format": "http://rna.igmors.u-psud.fr/NAPP/Niveau2.php?specie=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.napp.n2t": {"id": "bioregistry.napp.n2t", "sameas": "bioregistry.napp", "homepage": "http://napp.u-psud.fr/", "prefix": "napp", "name": "NAPP at CNRS", "uri_format": "http://rna.igmors.u-psud.fr/NAPP/Niveau2.php?specie=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.napp.prefixcommons": {"id": "bioregistry.napp.prefixcommons", "sameas": "bioregistry.napp", "homepage": "http://napp.u-psud.fr/", "prefix": "napp", "name": "NAPP: Nucleic Acids Phylogenetic Profiling", "uri_format": "http://napp.u-psud.fr/Niveau2.php?specie=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "molecular biology"], "authority": "prefixcommons"}, "bioregistry.napp": {"id": "bioregistry.napp", "homepage": null, "prefix": "napp", "name": "NAPP: Nucleic Acids Phylogenetic Profiling", "uri_format": "http://rna.igmors.u-psud.fr/NAPP/Niveau2.php?specie=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "molecular biology"], "authority": "bioregistry"}, "bioregistry.narcis.miriam": {"id": "bioregistry.narcis.miriam", "sameas": "bioregistry.narcis", "homepage": "http://www.narcis.nl/?Language=en", "prefix": "narcis", "name": "NARCIS", "uri_format": "http://www.narcis.nl/publication/RecordID/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.narcis.n2t": {"id": "bioregistry.narcis.n2t", "sameas": "bioregistry.narcis", "homepage": "http://www.narcis.nl/?Language=en", "prefix": "narcis", "name": "NARCIS at The Hague", "uri_format": "http://www.narcis.nl/publication/RecordID/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.narcis": {"id": "bioregistry.narcis", "homepage": "http://www.narcis.nl", "prefix": "narcis", "name": "National Academic Research and Collaborations Information System", "uri_format": "http://www.narcis.nl/publication/RecordID/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.nasc.miriam": {"id": "bioregistry.nasc.miriam", "sameas": "bioregistry.nasc", "homepage": "http://arabidopsis.info/", "prefix": "nasc", "name": "NASC code", "uri_format": "http://arabidopsis.info/StockInfo?NASC_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.nasc.n2t": {"id": "bioregistry.nasc.n2t", "sameas": "bioregistry.nasc", "homepage": "http://arabidopsis.info/", "prefix": "nasc", "name": "NASC at University of Nottingham", "uri_format": "http://arabidopsis.info/StockInfo?NASC_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.nasc.prefixcommons": {"id": "bioregistry.nasc.prefixcommons", "sameas": "bioregistry.nasc", "homepage": "http://arabidopsis.info", "prefix": "nasc", "name": "Nottingham Arabidopsis Stock Centre Seeds Database", "uri_format": "http://arabidopsis.info/StockInfo?NASC_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.nasc": {"id": "bioregistry.nasc", "homepage": null, "prefix": "nasc", "name": "Nottingham Arabidopsis Stock Centre Seeds Database", "uri_format": "http://arabidopsis.info/StockInfo?NASC_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.nbn.miriam": {"id": "bioregistry.nbn.miriam", "sameas": "bioregistry.nbn", "homepage": "http://nbn-resolving.org/resolve_urn.htm", "prefix": "nbn", "name": "National Bibliography Number", "uri_format": "http://nbn-resolving.org/resolver?identifier=$1&verb=redirect", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.nbn.n2t": {"id": "bioregistry.nbn.n2t", "sameas": "bioregistry.nbn", "homepage": "http://nbn-resolving.org/resolve_urn.htm", "prefix": "nbn", "name": "NBN through URN Resolver at German National Library", "uri_format": "http://nbn-resolving.org/resolver?identifier=urn:nbn:$1&verb=redirect", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.nbn": {"id": "bioregistry.nbn", "homepage": null, "prefix": "nbn", "name": "NBN through URN Resolver at German National Library", "uri_format": "http://nbn-resolving.org/resolver?identifier=urn:nbn:$1&verb=redirect", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.nbrc.miriam": {"id": "bioregistry.nbrc.miriam", "sameas": "bioregistry.nbrc", "homepage": "http://www.nbrc.nite.go.jp/e/index.html", "prefix": "nbrc", "name": "NITE Biological Research Center Catalogue", "uri_format": "http://www.nbrc.nite.go.jp/NBRC2/NBRCCatalogueDetailServlet?ID=NBRC&CAT=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.nbrc.n2t": {"id": "bioregistry.nbrc.n2t", "sameas": "bioregistry.nbrc", "homepage": "http://www.nbrc.nite.go.jp/e/index.html", "prefix": "nbrc", "name": "NBRC Catalogue at National Institute of Technology Evaluation", "uri_format": "http://www.nbrc.nite.go.jp/NBRC2/NBRCCatalogueDetailServlet?ID=NBRC&CAT=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.nbrc.prefixcommons": {"id": "bioregistry.nbrc.prefixcommons", "sameas": "bioregistry.nbrc", "homepage": "http://www.nbrc.nite.go.jp/e/index.html", "prefix": "nbrc", "name": "NITE Biological Research Center Catalogue", "uri_format": "http://www.nbrc.nite.go.jp/NBRC2/NBRCCatalogueDetailServlet?ID=NBRC&CAT=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "microbiology"], "authority": "prefixcommons"}, "bioregistry.nbrc": {"id": "bioregistry.nbrc", "homepage": null, "prefix": "nbrc", "name": "NBRC Catalogue at National Institute of Technology Evaluation", "uri_format": "http://www.nbrc.nite.go.jp/NBRC2/NBRCCatalogueDetailServlet?ID=NBRC&CAT=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "microbiology"], "authority": "bioregistry"}, "bioregistry.ncats.bioplanet.biolink": {"id": "bioregistry.ncats.bioplanet.biolink", "sameas": "bioregistry.ncats.bioplanet", "homepage": null, "prefix": "ncats.bioplanet", "name": null, "uri_format": "https://tripod.nih.gov/bioplanet/detail.jsp?pid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.ncats.bioplanet": {"id": "bioregistry.ncats.bioplanet", "homepage": "https://tripod.nih.gov/bioplanet/", "prefix": "ncats.bioplanet", "name": "National Center for Advancing Translation Sciences BioPlanet", "uri_format": "https://tripod.nih.gov/bioplanet/detail.jsp?pid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ncats.drug.biolink": {"id": "bioregistry.ncats.drug.biolink", "sameas": "bioregistry.ncats.drug", "homepage": null, "prefix": "ncats.drug", "name": null, "uri_format": "https://drugs.ncats.io/drug/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.ncats.drug": {"id": "bioregistry.ncats.drug", "homepage": "https://drugs.ncats.io/", "prefix": "ncats.drug", "name": "NCATS Drugs", "uri_format": "https://drugs.ncats.io/drug/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ncbi.assembly.miriam": {"id": "bioregistry.ncbi.assembly.miriam", "sameas": "bioregistry.ncbi.assembly", "homepage": "https://www.ncbi.nlm.nih.gov/", "prefix": "assembly", "name": "Assembly", "uri_format": "https://www.ncbi.nlm.nih.gov/datasets/genome/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ncbi.assembly.biocontext": {"id": "bioregistry.ncbi.assembly.biocontext", "sameas": "bioregistry.ncbi.assembly", "homepage": null, "prefix": "NCBIAssembly", "name": null, "uri_format": "http://www.ncbi.nlm.nih.gov/assembly/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.ncbi.assembly": {"id": "bioregistry.ncbi.assembly", "homepage": null, "prefix": "ncbi.assembly", "name": "NCBI Assembly", "uri_format": "https://www.ncbi.nlm.nih.gov/datasets/genome/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ncbi.genome.biocontext": {"id": "bioregistry.ncbi.genome.biocontext", "sameas": "bioregistry.ncbi.genome", "homepage": null, "prefix": "NCBIGenome", "name": null, "uri_format": "http://www.ncbi.nlm.nih.gov/genome/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.ncbi.genome": {"id": "bioregistry.ncbi.genome", "homepage": "https://www.ncbi.nlm.nih.gov/genome", "prefix": "ncbi.genome", "name": "NCBI Genome", "uri_format": "http://www.ncbi.nlm.nih.gov/genome/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ncbigene.miriam": {"id": "bioregistry.ncbigene.miriam", "sameas": "bioregistry.ncbigene", "homepage": "https://www.ncbi.nlm.nih.gov/gene", "prefix": "ncbigene", "name": "NCBI Gene", "uri_format": "https://www.ncbi.nlm.nih.gov/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ncbigene.n2t": {"id": "bioregistry.ncbigene.n2t", "sameas": "bioregistry.ncbigene", "homepage": "https://www.ncbi.nlm.nih.gov/gene", "prefix": "ncbigene", "name": "Entrez Gene (NCBI)", "uri_format": "https://www.ncbi.nlm.nih.gov/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ncbigene.prefixcommons": {"id": "bioregistry.ncbigene.prefixcommons", "sameas": "bioregistry.ncbigene", "homepage": "http://www.ncbi.nlm.nih.gov/gene", "prefix": "ncbigene", "name": "NCBI Gene", "uri_format": "http://www.ncbi.nlm.nih.gov/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.ncbigene.wikidata": {"id": "bioregistry.ncbigene.wikidata", "sameas": "bioregistry.ncbigene", "homepage": null, "prefix": "P351", "name": "Entrez Gene ID", "uri_format": "https://www.ncbi.nlm.nih.gov/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "wikidata"}, "bioregistry.ncbigene.go": {"id": "bioregistry.ncbigene.go", "sameas": "bioregistry.ncbigene", "homepage": "http://www.ncbi.nlm.nih.gov/", "prefix": "NCBIGene", "name": "NCBI Gene", "uri_format": "https://www.ncbi.nlm.nih.gov/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.ncbigene.uniprot": {"id": "bioregistry.ncbigene.uniprot", "sameas": "bioregistry.ncbigene", "homepage": "https://www.ncbi.nlm.nih.gov/gene", "prefix": "DB-0118", "name": "Database of genes from NCBI RefSeq genomes", "uri_format": "https://www.ncbi.nlm.nih.gov/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.ncbigene.biolink": {"id": "bioregistry.ncbigene.biolink", "sameas": "bioregistry.ncbigene", "homepage": null, "prefix": "NCBIGene", "name": null, "uri_format": "http://identifiers.org/ncbigene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "biolink"}, "bioregistry.ncbigene.biocontext": {"id": "bioregistry.ncbigene.biocontext", "sameas": "bioregistry.ncbigene", "homepage": null, "prefix": "NCBIGene", "name": null, "uri_format": "http://www.ncbi.nlm.nih.gov/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "biocontext"}, "bioregistry.ncbigene": {"id": "bioregistry.ncbigene", "homepage": null, "prefix": "ncbigene", "name": "Entrez Gene Database (replaces NCBI Locus Link)", "uri_format": "https://www.ncbi.nlm.nih.gov/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.ncbigi.go": {"id": "bioregistry.ncbigi.go", "sameas": "bioregistry.ncbigi", "homepage": "http://www.ncbi.nlm.nih.gov/", "prefix": "NCBI_gi", "name": "NCBI databases", "uri_format": "http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.ncbigi": {"id": "bioregistry.ncbigi", "homepage": "https://www.ncbi.nlm.nih.gov/genbank/sequenceids/", "prefix": "ncbigi", "name": "GenInfo identifier, used as a unique sequence identifier for nucleotide and proteins", "uri_format": "http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ncbiprotein.miriam": {"id": "bioregistry.ncbiprotein.miriam", "sameas": "bioregistry.ncbiprotein", "homepage": "https://www.ncbi.nlm.nih.gov/protein", "prefix": "ncbiprotein", "name": "NCBI Protein", "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ncbiprotein.n2t": {"id": "bioregistry.ncbiprotein.n2t", "sameas": "bioregistry.ncbiprotein", "homepage": "https://www.ncbi.nlm.nih.gov/protein", "prefix": "ncbiprotein", "name": "NCBI Protein at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ncbiprotein.prefixcommons": {"id": "bioregistry.ncbiprotein.prefixcommons", "sameas": "bioregistry.ncbiprotein", "homepage": "http://www.ncbi.nlm.nih.gov/protein", "prefix": "ncbi.protein", "name": "NCBI Protein", "uri_format": "http://www.ncbi.nlm.nih.gov/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.ncbiprotein.biocontext": {"id": "bioregistry.ncbiprotein.biocontext", "sameas": "bioregistry.ncbiprotein", "homepage": null, "prefix": "NCBIProtein", "name": null, "uri_format": "http://www.ncbi.nlm.nih.gov/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "biocontext"}, "bioregistry.ncbiprotein": {"id": "bioregistry.ncbiprotein", "homepage": null, "prefix": "ncbiprotein", "name": "NCBI Protein at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.ncbitaxon.miriam": {"id": "bioregistry.ncbitaxon.miriam", "sameas": "bioregistry.ncbitaxon", "homepage": "https://www.ncbi.nlm.nih.gov/Taxonomy/", "prefix": "taxonomy", "name": "Taxonomy", "uri_format": "https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ncbitaxon.n2t": {"id": "bioregistry.ncbitaxon.n2t", "sameas": "bioregistry.ncbitaxon", "homepage": "https://www.ncbi.nlm.nih.gov/Taxonomy/", "prefix": "taxonomy", "name": "NCBI Taxonomy", "uri_format": "https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ncbitaxon.prefixcommons": {"id": "bioregistry.ncbitaxon.prefixcommons", "sameas": "bioregistry.ncbitaxon", "homepage": "http://www.ncbi.nlm.nih.gov/taxonomy", "prefix": "taxonomy", "name": "NCBI Taxonomy", "uri_format": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.ncbitaxon.wikidata": {"id": "bioregistry.ncbitaxon.wikidata", "sameas": "bioregistry.ncbitaxon", "homepage": "http://www.ncbi.nlm.nih.gov/taxonomy", "prefix": "P685", "name": "NCBI taxonomy ID", "uri_format": "https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "wikidata"}, "bioregistry.ncbitaxon.go": {"id": "bioregistry.ncbitaxon.go", "sameas": "bioregistry.ncbitaxon", "homepage": "http://www.ncbi.nlm.nih.gov/Taxonomy/taxonomyhome.html/", "prefix": "taxon", "name": "NCBI Taxonomy", "uri_format": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "go"}, "bioregistry.ncbitaxon.cellosaurus": {"id": "bioregistry.ncbitaxon.cellosaurus", "sameas": "bioregistry.ncbitaxon", "homepage": "https://www.ncbi.nlm.nih.gov/taxonomy", "prefix": "NCBI_TaxID", "name": "NCBI taxonomy database", "uri_format": "https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=$1&lvl=3", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "cellosaurus"}, "bioregistry.ncbitaxon": {"id": "bioregistry.ncbitaxon", "homepage": null, "prefix": "ncbitaxon", "name": "National Center for Biotechnology Information (NCBI) Organismal Classification", "uri_format": "https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=$1&lvl=3", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.ncim.miriam": {"id": "bioregistry.ncim.miriam", "sameas": "bioregistry.ncim", "homepage": "http://ncim.nci.nih.gov/", "prefix": "ncim", "name": "NCIm", "uri_format": "http://ncim.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20MetaThesaurus&code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ncim.n2t": {"id": "bioregistry.ncim.n2t", "sameas": "bioregistry.ncim", "homepage": "http://ncim.nci.nih.gov/", "prefix": "ncim", "name": "NCIm at National Cancer Institue", "uri_format": "http://ncim.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20MetaThesaurus&code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ncim": {"id": "bioregistry.ncim", "homepage": null, "prefix": "ncim", "name": "NCIm at National Cancer Institue", "uri_format": "http://ncim.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20MetaThesaurus&code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ncit.miriam": {"id": "bioregistry.ncit.miriam", "sameas": "bioregistry.ncit", "homepage": "http://ncit.nci.nih.gov/", "prefix": "ncit", "name": "NCIt", "uri_format": "http://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI%20Thesaurus&code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ncit.n2t": {"id": "bioregistry.ncit.n2t", "sameas": "bioregistry.ncit", "homepage": "http://ncit.nci.nih.gov/", "prefix": "ncit", "name": "NCIt at National Cancer Institute", "uri_format": "http://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI%20Thesaurus&code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ncit.prefixcommons": {"id": "bioregistry.ncit.prefixcommons", "sameas": "bioregistry.ncit", "homepage": "https://cabig.nci.nih.gov/community/concepts/EVS/", "prefix": "ncit", "name": "NCI Thesaurus", "uri_format": "http://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI%20Thesaurus&code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.ncit.wikidata": {"id": "bioregistry.ncit.wikidata", "sameas": "bioregistry.ncit", "homepage": "http://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=14.10d&code=C75016", "prefix": "P1748", "name": "NCI Thesaurus ID", "uri_format": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI%20Thesaurus&code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.ncit.cellosaurus": {"id": "bioregistry.ncit.cellosaurus", "sameas": "bioregistry.ncit", "homepage": "https://ncit.nci.nih.gov/ncitbrowser", "prefix": "NCIt", "name": "NCI thesaurus", "uri_format": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.ncit": {"id": "bioregistry.ncit", "homepage": null, "prefix": "ncit", "name": "National Cancer Institute Thesaurus", "uri_format": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ndc.miriam": {"id": "bioregistry.ndc.miriam", "sameas": "bioregistry.ndc", "homepage": "http://www.accessdata.fda.gov/scripts/cder/ndc/", "prefix": "ndc", "name": "National Drug Code", "uri_format": "http://www.hipaaspace.com/Medical_Billing/Coding/National.Drug.Codes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ndc.n2t": {"id": "bioregistry.ndc.n2t", "sameas": "bioregistry.ndc", "homepage": "http://www.accessdata.fda.gov/scripts/cder/ndc/", "prefix": "ndc", "name": "National Drug Code at Food and Drug Administration", "uri_format": "http://www.hipaaspace.com/Medical_Billing/Coding/National.Drug.Codes/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ndc.wikidata": {"id": "bioregistry.ndc.wikidata", "sameas": "bioregistry.ndc", "homepage": "https://www.nlm.nih.gov/research/umls/rxnorm/docs/rxnormfiles.html", "prefix": "P3640", "name": "National Drug Code", "uri_format": "https://ndclist.com/ndc/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.ndc": {"id": "bioregistry.ndc", "homepage": null, "prefix": "ndc", "name": "National Drug Code at Food and Drug Administration", "uri_format": "https://ndclist.com/ndc/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.nddf.biolink": {"id": "bioregistry.nddf.biolink", "sameas": "bioregistry.nddf", "homepage": null, "prefix": "NDDF", "name": null, "uri_format": "http://purl.bioontology.org/ontology/NDDF/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.nddf": {"id": "bioregistry.nddf", "homepage": "https://www.nlm.nih.gov/research/umls/sourcereleasedocs/current/NDDF", "prefix": "nddf", "name": "National Drug Data File", "uri_format": "http://purl.bioontology.org/ontology/NDDF/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ndfrt.wikidata": {"id": "bioregistry.ndfrt.wikidata", "sameas": "bioregistry.ndfrt", "homepage": "https://rxnav.nlm.nih.gov/", "prefix": "P2115", "name": "NDF-RT ID", "uri_format": "https://bioportal.bioontology.org/ontologies/NDFRT?p=classes&conceptid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.ndfrt": {"id": "bioregistry.ndfrt", "homepage": "https://www.nlm.nih.gov/research/umls/sourcereleasedocs/current/NDFRT", "prefix": "ndfrt", "name": "National Drug File - Reference Terminology", "uri_format": "https://bioportal.bioontology.org/ontologies/NDFRT?p=classes&conceptid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.nembase.prefixcommons": {"id": "bioregistry.nembase.prefixcommons", "sameas": "bioregistry.nembase", "homepage": "http://www.nematodes.org", "prefix": "nembase", "name": "Nematode & Neglected Genomics", "uri_format": "http://www.nematodes.org/nembase4/cluster.php?cluster=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.nembase": {"id": "bioregistry.nembase", "homepage": null, "prefix": "nembase", "name": "Nematode & Neglected Genomics", "uri_format": "http://www.nematodes.org/nembase4/cluster.php?cluster=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.nemo.miriam": {"id": "bioregistry.nemo.miriam", "sameas": "bioregistry.nemo", "homepage": "https://www.nemoarchive.org", "prefix": "nemo", "name": "Neuroscience Multi-Omic BRAIN Initiative Data", "uri_format": "https://assets.nemoarchive.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.nemo": {"id": "bioregistry.nemo", "homepage": null, "prefix": "nemo", "name": "Neuroscience Multi-Omic BRAIN Initiative Data", "uri_format": "https://assets.nemoarchive.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.neurolex.miriam": {"id": "bioregistry.neurolex.miriam", "sameas": "bioregistry.neurolex", "homepage": "http://www.neurolex.org/wiki/Main_Page", "prefix": "neurolex", "name": "NeuroLex", "uri_format": "http://www.neurolex.org/wiki/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.neurolex.n2t": {"id": "bioregistry.neurolex.n2t", "sameas": "bioregistry.neurolex", "homepage": "http://www.neurolex.org/wiki/Main_Page", "prefix": "neurolex", "name": "NeuroLex Neuroscience Lexicon", "uri_format": "http://www.neurolex.org/wiki/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.neurolex.prefixcommons": {"id": "bioregistry.neurolex.prefixcommons", "sameas": "bioregistry.neurolex", "homepage": "http://www.neurolex.org/wiki/Main_Page", "prefix": "neurolex", "name": "NeuroLex", "uri_format": "http://www.neurolex.org/wiki/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "neurobiology"], "authority": "prefixcommons"}, "bioregistry.neurolex": {"id": "bioregistry.neurolex", "homepage": "https://github.com/SciCrunch/NIF-Ontology", "prefix": "neurolex", "name": "NIF Standard Ontology: Neurolex", "uri_format": "http://www.neurolex.org/wiki/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "neurobiology"], "authority": "bioregistry"}, "bioregistry.neuromorpho.miriam": {"id": "bioregistry.neuromorpho.miriam", "sameas": "bioregistry.neuromorpho", "homepage": "http://neuromorpho.org/index.jsp", "prefix": "neuromorpho", "name": "NeuroMorpho", "uri_format": "http://neuromorpho.org/neuron_info.jsp?neuron_name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.neuromorpho.n2t": {"id": "bioregistry.neuromorpho.n2t", "sameas": "bioregistry.neuromorpho", "homepage": "http://neuromorpho.org/index.jsp", "prefix": "neuromorpho", "name": "NeuroMorpho", "uri_format": "http://neuromorpho.org/neuron_info.jsp?neuron_name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.neuromorpho.prefixcommons": {"id": "bioregistry.neuromorpho.prefixcommons", "sameas": "bioregistry.neuromorpho", "homepage": "http://neuromorpho.org/neuroMorpho/index.jsp", "prefix": "neuromorpho", "name": "NeuroMorpho", "uri_format": "http://neuromorpho.org/neuroMorpho/neuron_info.jsp?neuron_name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "anatomy and morphology"], "authority": "prefixcommons"}, "bioregistry.neuromorpho": {"id": "bioregistry.neuromorpho", "homepage": null, "prefix": "neuromorpho", "name": "NeuroMorpho", "uri_format": "http://neuromorpho.org/neuron_info.jsp?neuron_name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "anatomy and morphology"], "authority": "bioregistry"}, "bioregistry.neuronames.wikidata": {"id": "bioregistry.neuronames.wikidata", "sameas": "bioregistry.neuronames", "homepage": null, "prefix": "P4394", "name": "NeuroNames ID (plain mode)", "uri_format": "http://braininfo.rprc.washington.edu/centraldirectory.aspx?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.neuronames": {"id": "bioregistry.neuronames", "homepage": "http://braininfo.rprc.washington.edu/", "prefix": "neuronames", "name": "NeuroNames ID (plain mode)", "uri_format": "http://braininfo.rprc.washington.edu/centraldirectory.aspx?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.neurondb.miriam": {"id": "bioregistry.neurondb.miriam", "sameas": "bioregistry.neurondb", "homepage": "http://senselab.med.yale.edu/NeuronDB/", "prefix": "neurondb", "name": "NeuronDB", "uri_format": "http://senselab.med.yale.edu/NeuronDB/NeuronProp.aspx?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.neurondb.n2t": {"id": "bioregistry.neurondb.n2t", "sameas": "bioregistry.neurondb", "homepage": "http://senselab.med.yale.edu/NeuronDB/", "prefix": "neurondb", "name": "NeuronDB at SenseLab", "uri_format": "http://senselab.med.yale.edu/NeuronDB/NeuronProp.aspx?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.neurondb.prefixcommons": {"id": "bioregistry.neurondb.prefixcommons", "sameas": "bioregistry.neurondb", "homepage": "http://senselab.med.yale.edu/NeuronDB/", "prefix": "neurondb", "name": "NeuronDB", "uri_format": "http://senselab.med.yale.edu/NeuronDB/NeuronProp.aspx?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "anatomy and morphology"], "authority": "prefixcommons"}, "bioregistry.neurondb": {"id": "bioregistry.neurondb", "homepage": null, "prefix": "neurondb", "name": "NeuronDB at SenseLab", "uri_format": "http://senselab.med.yale.edu/NeuronDB/NeuronProp.aspx?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "anatomy and morphology"], "authority": "bioregistry"}, "bioregistry.neurovault.collection.miriam": {"id": "bioregistry.neurovault.collection.miriam", "sameas": "bioregistry.neurovault.collection", "homepage": "http://neurovault.org", "prefix": "neurovault.collection", "name": "NeuroVault Collection", "uri_format": "https://neurovault.org/collections/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.neurovault.collection.n2t": {"id": "bioregistry.neurovault.collection.n2t", "sameas": "bioregistry.neurovault.collection", "homepage": "http://neurovault.org", "prefix": "neurovault.collection", "name": "NeuroVault Collection", "uri_format": "https://neurovault.org/collections/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.neurovault.collection": {"id": "bioregistry.neurovault.collection", "homepage": null, "prefix": "neurovault.collection", "name": "NeuroVault Collection", "uri_format": "https://neurovault.org/collections/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.neurovault.image.miriam": {"id": "bioregistry.neurovault.image.miriam", "sameas": "bioregistry.neurovault.image", "homepage": "http://neurovault.org", "prefix": "neurovault.image", "name": "NeuroVault Image", "uri_format": "https://neurovault.org/images/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.neurovault.image.n2t": {"id": "bioregistry.neurovault.image.n2t", "sameas": "bioregistry.neurovault.image", "homepage": "http://neurovault.org", "prefix": "neurovault.image", "name": "NeuroVault", "uri_format": "https://neurovault.org/images/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.neurovault.image": {"id": "bioregistry.neurovault.image", "homepage": null, "prefix": "neurovault.image", "name": "NeuroVault Image", "uri_format": "https://neurovault.org/images/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.nextdb.miriam": {"id": "bioregistry.nextdb.miriam", "sameas": "bioregistry.nextdb", "homepage": "http://nematode.lab.nig.ac.jp/", "prefix": "nextdb", "name": "NEXTDB", "uri_format": "http://nematode.lab.nig.ac.jp/db2/ShowCloneInfo.php?clone=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.nextdb.n2t": {"id": "bioregistry.nextdb.n2t", "sameas": "bioregistry.nextdb", "homepage": "http://nematode.lab.nig.ac.jp/", "prefix": "nextdb", "name": "NEXTDB at Shizuoka", "uri_format": "http://nematode.lab.nig.ac.jp/db2/ShowCloneInfo.php?clone=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.nextdb.prefixcommons": {"id": "bioregistry.nextdb.prefixcommons", "sameas": "bioregistry.nextdb", "homepage": "http://nematode.lab.nig.ac.jp/", "prefix": "nextdb", "name": "Nematode Expression Pattern DataBase", "uri_format": "http://nematode.lab.nig.ac.jp/cgi-bin/dbest/SrchByCosmid.sh?csmd=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.nextdb": {"id": "bioregistry.nextdb", "homepage": null, "prefix": "nextdb", "name": "Nematode Expression Pattern DataBase", "uri_format": "http://nematode.lab.nig.ac.jp/db2/ShowCloneInfo.php?clone=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.nextprot.miriam": {"id": "bioregistry.nextprot.miriam", "sameas": "bioregistry.nextprot", "homepage": "https://www.nextprot.org/", "prefix": "nextprot", "name": "nextProt", "uri_format": "https://www.nextprot.org/db/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.nextprot.n2t": {"id": "bioregistry.nextprot.n2t", "sameas": "bioregistry.nextprot", "homepage": "https://www.nextprot.org/", "prefix": "nextprot", "name": "nextProt at Swiss Institute of Bioinformatics", "uri_format": "https://www.nextprot.org/db/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.nextprot.uniprot": {"id": "bioregistry.nextprot.uniprot", "sameas": "bioregistry.nextprot", "homepage": "https://www.nextprot.org/", "prefix": "DB-0161", "name": "neXtProt; the human protein knowledge platform", "uri_format": "https://www.nextprot.org/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.nextprot": {"id": "bioregistry.nextprot", "homepage": null, "prefix": "nextprot", "name": "neXtProt; the human protein knowledge platform", "uri_format": "https://www.nextprot.org/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ngl.miriam": {"id": "bioregistry.ngl.miriam", "sameas": "bioregistry.ngl", "homepage": "https://genelab-data.ndc.nasa.gov/genelab/", "prefix": "ngl", "name": "NASA GeneLab", "uri_format": "https://genelab-data.ndc.nasa.gov/genelab/accession/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ngl.n2t": {"id": "bioregistry.ngl.n2t", "sameas": "bioregistry.ngl", "homepage": "https://genelab-data.ndc.nasa.gov/genelab/", "prefix": "ngl", "name": "NASA GeneLab", "uri_format": "https://genelab-data.ndc.nasa.gov/genelab/accession/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ngl": {"id": "bioregistry.ngl", "homepage": null, "prefix": "ngl", "name": "NASA GeneLab", "uri_format": "https://genelab-data.ndc.nasa.gov/genelab/accession/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.nhcdr.cellosaurus": {"id": "bioregistry.nhcdr.cellosaurus", "sameas": "bioregistry.nhcdr", "homepage": "https://stemcells.nindsgenetics.org", "prefix": "NHCDR", "name": "NINDS Human Cell and Data Repository", "uri_format": "https://stemcells.nindsgenetics.org?line=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.nhcdr": {"id": "bioregistry.nhcdr", "homepage": null, "prefix": "nhcdr", "name": "NINDS Human Cell and Data Repository", "uri_format": "https://stemcells.nindsgenetics.org?line=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.niaest.miriam": {"id": "bioregistry.niaest.miriam", "sameas": "bioregistry.niaest", "homepage": "http://lgsun.grc.nia.nih.gov/cDNA/", "prefix": "niaest", "name": "NIAEST", "uri_format": "http://lgsun.grc.nia.nih.gov/cgi-bin/pro3?sname1=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.niaest.n2t": {"id": "bioregistry.niaest.n2t", "sameas": "bioregistry.niaest", "homepage": "http://lgsun.grc.nia.nih.gov/cDNA/", "prefix": "niaest", "name": "NIAEST at National Institute on Aging", "uri_format": "http://lgsun.grc.nia.nih.gov/cgi-bin/pro3?sname1=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.niaest.prefixcommons": {"id": "bioregistry.niaest.prefixcommons", "sameas": "bioregistry.niaest", "homepage": "http://lgsun.grc.nia.nih.gov/cDNA/cDNA.html", "prefix": "niaest", "name": "NIA Mouse cDNA Project", "uri_format": "http://lgsun.grc.nia.nih.gov/cgi-bin/pro3?sname1=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.niaest": {"id": "bioregistry.niaest", "homepage": null, "prefix": "niaest", "name": "NIAEST at National Institute on Aging", "uri_format": "http://lgsun.grc.nia.nih.gov/cgi-bin/pro3?sname1=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.nlfff.miriam": {"id": "bioregistry.nlfff.miriam", "sameas": "bioregistry.nlfff", "homepage": "https://nlfff.dataset.deepsolar.space/en/", "prefix": "nlfff", "name": "NLFFF Database", "uri_format": "http://database.deepsolar.space:18080/dbs/nlfff/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.nlfff": {"id": "bioregistry.nlfff", "homepage": null, "prefix": "nlfff", "name": "NLFFF Database", "uri_format": "http://database.deepsolar.space:18080/dbs/nlfff/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.nlm.biolink": {"id": "bioregistry.nlm.biolink", "sameas": "bioregistry.nlm", "homepage": null, "prefix": "NLMID", "name": null, "uri_format": "https://www.ncbi.nlm.nih.gov/nlmcatalog/?term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.nlm": {"id": "bioregistry.nlm", "homepage": "https://www.ncbi.nlm.nih.gov/nlmcatalog", "prefix": "nlm", "name": "National Library of Medicine Classification", "uri_format": "https://www.ncbi.nlm.nih.gov/nlmcatalog/?term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.nlx.sub.go": {"id": "bioregistry.nlx.sub.go", "sameas": "bioregistry.nlx.sub", "homepage": "http://www.neurolex.org/wiki", "prefix": "NIF_Subcellular", "name": "Neuroscience Information Framework standard ontology, subcellular hierarchy", "uri_format": "http://www.neurolex.org/wiki/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.nlx.sub": {"id": "bioregistry.nlx.sub", "homepage": "https://github.com/SciCrunch/NIF-Ontology", "prefix": "nlx.sub", "name": "Neuroscience Information Framework standard ontology, subcellular hierarchy", "uri_format": "http://www.neurolex.org/wiki/$1", "source": "bioregistry.io", "subjects": ["cell biology"], "authority": "bioregistry"}, "bioregistry.nmdc.miriam": {"id": "bioregistry.nmdc.miriam", "sameas": "bioregistry.nmdc", "homepage": "https://ror.org/02jbv0t02", "prefix": "nmdc", "name": "National Microbiome Data Collaborative", "uri_format": "https://drs.microbiomedata.org/objects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.nmdc": {"id": "bioregistry.nmdc", "homepage": "https://microbiomedata.org/", "prefix": "nmdc", "name": "National Microbiome Data Collaborative", "uri_format": "https://drs.microbiomedata.org/objects/$1", "source": "bioregistry.io", "subjects": ["microbiology"], "authority": "bioregistry"}, "bioregistry.nmpdr.prefixcommons": {"id": "bioregistry.nmpdr.prefixcommons", "sameas": "bioregistry.nmpdr", "homepage": "http://www.nmpdr.org", "prefix": "nmpdr", "name": "National Microbial Pathogen Data Resource", "uri_format": "http://www.nmpdr.org/FIG/wiki/rest.cgi/NmpdrPlugin/SeedViewer?page=Annotation;feature=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.nmpdr": {"id": "bioregistry.nmpdr", "homepage": null, "prefix": "nmpdr", "name": "National Microbial Pathogen Data Resource", "uri_format": "http://www.nmpdr.org/FIG/wiki/rest.cgi/NmpdrPlugin/SeedViewer?page=Annotation;feature=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.nmr.miriam": {"id": "bioregistry.nmr.miriam", "sameas": "bioregistry.nmr", "homepage": "https://www.ebi.ac.uk/ols/ontologies/nmrcv", "prefix": "nmr", "name": "Nuclear Magnetic Resonance Controlled Vocabulary", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/nmrcv/terms?short_form=NMR:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.nmr.n2t": {"id": "bioregistry.nmr.n2t", "sameas": "bioregistry.nmr", "homepage": "https://www.ebi.ac.uk/ols/ontologies/nmrcv", "prefix": "nmr", "name": "NMR through OLS", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/nmrcv/terms?short_form=NMR:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.nmr": {"id": "bioregistry.nmr", "homepage": null, "prefix": "nmr", "name": "NMR-instrument specific component of metabolomics investigations", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/nmrcv/terms?short_form=NMR:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.nmrshiftdb2.miriam": {"id": "bioregistry.nmrshiftdb2.miriam", "sameas": "bioregistry.nmrshiftdb2", "homepage": "https://nmrshiftdb.nmr.uni-koeln.de", "prefix": "nmrshiftdb2", "name": "NMR Shift Database", "uri_format": "https://nmrshiftdb.nmr.uni-koeln.de/molecule/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.nmrshiftdb2.wikidata": {"id": "bioregistry.nmrshiftdb2.wikidata", "sameas": "bioregistry.nmrshiftdb2", "homepage": "https://nmrshiftdb.nmr.uni-koeln.de/", "prefix": "P9405", "name": "NMRShiftDB structure ID", "uri_format": "https://nmrshiftdb.nmr.uni-koeln.de/molecule/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.nmrshiftdb2": {"id": "bioregistry.nmrshiftdb2", "homepage": null, "prefix": "nmrshiftdb2", "name": "NMRShiftDB structure ID", "uri_format": "https://nmrshiftdb.nmr.uni-koeln.de/molecule/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.noaa.wikidata": {"id": "bioregistry.noaa.wikidata", "sameas": "bioregistry.noaa", "homepage": "https://www.fisheries.noaa.gov/species-directory", "prefix": "P6049", "name": "NOAA Fisheries Species Directory ID", "uri_format": "https://www.fisheries.noaa.gov/species/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.noaa": {"id": "bioregistry.noaa", "homepage": "https://www.fisheries.noaa.gov/species-directory", "prefix": "noaa", "name": "NOAA Fisheries Species Directory ID", "uri_format": "https://www.fisheries.noaa.gov/species/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.noncodev3.miriam": {"id": "bioregistry.noncodev3.miriam", "sameas": "bioregistry.noncodev3", "homepage": "http://www.noncode.org/", "prefix": "noncodev3", "name": "NONCODE v3", "uri_format": "http://www.noncode.org/NONCODERv3/ncrna.php?ncid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.noncodev3.n2t": {"id": "bioregistry.noncodev3.n2t", "sameas": "bioregistry.noncodev3", "homepage": "http://www.noncode.org/", "prefix": "noncodev3", "name": "NONCODE at Chinese Academy of Sciences", "uri_format": "http://www.noncode.org/NONCODERv3/ncrna.php?ncid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.noncodev3.prefixcommons": {"id": "bioregistry.noncodev3.prefixcommons", "sameas": "bioregistry.noncodev3", "homepage": "http://www.noncode.org/", "prefix": "noncode", "name": "NONCODE", "uri_format": "http://www.noncode.org/NONCODERv3/ncrna.php?ncid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "molecular biology"], "authority": "prefixcommons"}, "bioregistry.noncodev3": {"id": "bioregistry.noncodev3", "homepage": null, "prefix": "noncodev3", "name": "NONCODE at Chinese Academy of Sciences", "uri_format": "http://www.noncode.org/NONCODERv3/ncrna.php?ncid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "molecular biology"], "authority": "bioregistry"}, "bioregistry.noncodev4.gene.miriam": {"id": "bioregistry.noncodev4.gene.miriam", "sameas": "bioregistry.noncodev4.gene", "homepage": "http://www.bioinfo.org/NONCODEv4/", "prefix": "noncodev4.gene", "name": "NONCODE v4 Gene", "uri_format": "http://www.bioinfo.org/NONCODEv4/show_gene.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.noncodev4.gene.n2t": {"id": "bioregistry.noncodev4.gene.n2t", "sameas": "bioregistry.noncodev4.gene", "homepage": "http://www.bioinfo.org/NONCODEv4/", "prefix": "noncodev4.gene", "name": "NONCODE v4 Gene at Chinese Academy of Sciences", "uri_format": "http://www.bioinfo.org/NONCODEv4/show_gene.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.noncodev4.gene": {"id": "bioregistry.noncodev4.gene", "homepage": null, "prefix": "noncodev4.gene", "name": "NONCODE v4 Gene at Chinese Academy of Sciences", "uri_format": "http://www.bioinfo.org/NONCODEv4/show_gene.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.noncodev4.rna.miriam": {"id": "bioregistry.noncodev4.rna.miriam", "sameas": "bioregistry.noncodev4.rna", "homepage": "http://www.bioinfo.org/NONCODEv4/", "prefix": "noncodev4.rna", "name": "NONCODE v4 Transcript", "uri_format": "http://www.bioinfo.org/NONCODEv4/show_rna.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.noncodev4.rna.n2t": {"id": "bioregistry.noncodev4.rna.n2t", "sameas": "bioregistry.noncodev4.rna", "homepage": "http://www.bioinfo.org/NONCODEv4/", "prefix": "noncodev4.rna", "name": "NONCODE v4 Transcript at Chinese Academy of Sciences", "uri_format": "http://www.bioinfo.org/NONCODEv4/show_rna.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.noncodev4.rna": {"id": "bioregistry.noncodev4.rna", "homepage": null, "prefix": "noncodev4.rna", "name": "NONCODE v4 Transcript at Chinese Academy of Sciences", "uri_format": "http://www.bioinfo.org/NONCODEv4/show_rna.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.norine.miriam": {"id": "bioregistry.norine.miriam", "sameas": "bioregistry.norine", "homepage": "http://bioinfo.lifl.fr/norine/", "prefix": "norine", "name": "NORINE", "uri_format": "http://bioinfo.lifl.fr/norine/result.jsp?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.norine.n2t": {"id": "bioregistry.norine.n2t", "sameas": "bioregistry.norine", "homepage": "http://bioinfo.lifl.fr/norine/", "prefix": "norine", "name": "NORINE at Computer Science Laboratory of Lille", "uri_format": "http://bioinfo.lifl.fr/norine/result.jsp?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.norine.prefixcommons": {"id": "bioregistry.norine.prefixcommons", "sameas": "bioregistry.norine", "homepage": "http://bioinfo.lifl.fr/norine/", "prefix": "norine", "name": "Non-Ribosomal Peptides Database", "uri_format": "http://bioinfo.lifl.fr/norine/result.jsp?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.norine": {"id": "bioregistry.norine", "homepage": null, "prefix": "norine", "name": "NORINE at Computer Science Laboratory of Lille", "uri_format": "http://bioinfo.lifl.fr/norine/result.jsp?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.nucleardb.miriam": {"id": "bioregistry.nucleardb.miriam", "sameas": "bioregistry.nucleardb", "homepage": "http://www.receptors.org/nucleardb/", "prefix": "nuclearbd", "name": "NucleaRDB", "uri_format": "http://www.receptors.org/nucleardb/proteins/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.nucleardb.n2t": {"id": "bioregistry.nucleardb.n2t", "sameas": "bioregistry.nucleardb", "homepage": "http://www.receptors.org/nucleardb/", "prefix": "nuclearbd", "name": "NucleaRDB at Radboud University Nijmegen Medical Centre", "uri_format": "http://www.receptors.org/nucleardb/proteins/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.nucleardb.prefixcommons": {"id": "bioregistry.nucleardb.prefixcommons", "sameas": "bioregistry.nucleardb", "homepage": "http://www.receptors.org/NR/", "prefix": "nucleardb", "name": "NucleaRDB: An Information System for Nuclear Receptors", "uri_format": "http://www.receptors.org/NR/seq/DR/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.nucleardb": {"id": "bioregistry.nucleardb", "homepage": null, "prefix": "nucleardb", "name": "NucleaRDB at Radboud University Nijmegen Medical Centre", "uri_format": "http://www.receptors.org/nucleardb/proteins/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.nucleotide.miriam": {"id": "bioregistry.nucleotide.miriam", "sameas": "bioregistry.nucleotide", "homepage": "https://www.ncbi.nlm.nih.gov/", "prefix": "nucleotide", "name": "Nucleotide", "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.nucleotide": {"id": "bioregistry.nucleotide", "homepage": null, "prefix": "nucleotide", "name": "Nucleotide", "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.oa.biocontext": {"id": "bioregistry.oa.biocontext", "sameas": "bioregistry.oa", "homepage": null, "prefix": "oa", "name": null, "uri_format": "http://www.w3.org/ns/oa#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.oa": {"id": "bioregistry.oa", "homepage": "http://www.w3.org/ns/oa", "prefix": "oa", "name": "Web Annotation Ontology", "uri_format": "http://www.w3.org/ns/oa#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.oban.biolink": {"id": "bioregistry.oban.biolink", "sameas": "bioregistry.oban", "homepage": null, "prefix": "OBAN", "name": null, "uri_format": "http://purl.org/oban/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.oban.biocontext": {"id": "bioregistry.oban.biocontext", "sameas": "bioregistry.oban", "homepage": null, "prefix": "OBAN", "name": null, "uri_format": "http://purl.org/oban/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.oban": {"id": "bioregistry.oban", "homepage": "https://github.com/EBISPOT/OBAN", "prefix": "oban", "name": "Open Biomedical Annotations", "uri_format": "http://purl.org/oban/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.obi.miriam": {"id": "bioregistry.obi.miriam", "sameas": "bioregistry.obi", "homepage": "http://www.ontobee.org/", "prefix": "obi", "name": "Ontology for Biomedical Investigations", "uri_format": "http://purl.obolibrary.org/obo/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.obi.n2t": {"id": "bioregistry.obi.n2t", "sameas": "bioregistry.obi", "homepage": "http://www.ontobee.org/", "prefix": "obi", "name": "OBI through Ontobee", "uri_format": "http://purl.obolibrary.org/obo/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.obi": {"id": "bioregistry.obi", "homepage": null, "prefix": "obi", "name": "Ontology for Biomedical Investigations", "uri_format": "http://purl.obolibrary.org/obo/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.oboinowl.biolink": {"id": "bioregistry.oboinowl.biolink", "sameas": "bioregistry.oboinowl", "homepage": null, "prefix": "oboformat", "name": null, "uri_format": "http://www.geneontology.org/formats/oboInOwl#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.oboinowl.biocontext": {"id": "bioregistry.oboinowl.biocontext", "sameas": "bioregistry.oboinowl", "homepage": null, "prefix": "oboInOwl", "name": null, "uri_format": "http://www.geneontology.org/formats/oboInOwl#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.oboinowl": {"id": "bioregistry.oboinowl", "homepage": "https://github.com/geneontology/go-ontology/tree/master/contrib", "prefix": "oboinowl", "name": "OBO Format Syntax and Semantics", "uri_format": "http://www.geneontology.org/formats/oboInOwl#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.obv.miriam": {"id": "bioregistry.obv.miriam", "sameas": "bioregistry.obv", "homepage": "https://www.obvsg.at/", "prefix": "obv", "name": "Austrian Library Network", "uri_format": "https://permalink.obvsg.at/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.obv": {"id": "bioregistry.obv", "homepage": null, "prefix": "obv", "name": "Austrian Library Network", "uri_format": "https://permalink.obvsg.at/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.occ.miriam": {"id": "bioregistry.occ.miriam", "sameas": "bioregistry.occ", "homepage": "https://w3id.org/oc/corpus", "prefix": "occ", "name": "OpenCitations Corpus", "uri_format": "https://w3id.org/oc/corpus/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.occ.n2t": {"id": "bioregistry.occ.n2t", "sameas": "bioregistry.occ", "homepage": "https://w3id.org/oc/corpus", "prefix": "occ", "name": "OpenCitations Corpus", "uri_format": "https://w3id.org/oc/corpus/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.occ": {"id": "bioregistry.occ", "homepage": null, "prefix": "occ", "name": "OpenCitations Corpus", "uri_format": "https://w3id.org/oc/corpus/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.oci.miriam": {"id": "bioregistry.oci.miriam", "sameas": "bioregistry.oci", "homepage": "http://opencitations.net", "prefix": "oci", "name": "OCI", "uri_format": "https://w3id.org/oc/oci/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.oci.n2t": {"id": "bioregistry.oci.n2t", "sameas": "bioregistry.oci", "homepage": "http://opencitations.net", "prefix": "oci", "name": "OpenCitations", "uri_format": "https://w3id.org/oc/oci/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.oci": {"id": "bioregistry.oci", "homepage": null, "prefix": "oci", "name": "Open Citation Identifier", "uri_format": "https://w3id.org/oc/oci/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ocid.miriam": {"id": "bioregistry.ocid.miriam", "sameas": "bioregistry.ocid", "homepage": "https://ontochem.com/", "prefix": "ocid", "name": "Ontology Concept Identifiers", "uri_format": "https://ocid.ontochem.com/prefname?ocid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ocid": {"id": "bioregistry.ocid", "homepage": null, "prefix": "ocid", "name": "Ontology Concept Identifiers", "uri_format": "https://ocid.ontochem.com/prefname?ocid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.oclc.miriam": {"id": "bioregistry.oclc.miriam", "sameas": "bioregistry.oclc", "homepage": "https://www.oclc.org/en/about.html", "prefix": "oclc", "name": "Online Computer Library Center (OCLC) WorldCat", "uri_format": "https://www.worldcat.org/oclc/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.oclc.n2t": {"id": "bioregistry.oclc.n2t", "sameas": "bioregistry.oclc", "homepage": "https://www.oclc.org/en/about.html", "prefix": "oclc", "name": "Online Computer Library Center (OCLC) WorldCat", "uri_format": "https://www.worldcat.org/oclc/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.oclc": {"id": "bioregistry.oclc", "homepage": null, "prefix": "oclc", "name": "Online Computer Library Center (OCLC) WorldCat", "uri_format": "https://www.worldcat.org/oclc/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.odam.miriam": {"id": "bioregistry.odam.miriam", "sameas": "bioregistry.odam", "homepage": "https://metabolome.cgfb.u-bordeaux.fr/", "prefix": "odam", "name": "Open Data for Access and Mining", "uri_format": "http://pmb-bordeaux.fr/getdata/json/$1/datapackage?links=1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.odam": {"id": "bioregistry.odam", "homepage": null, "prefix": "odam", "name": "Open Data for Access and Mining", "uri_format": "http://pmb-bordeaux.fr/getdata/json/$1/datapackage?links=1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.odc.sci.miriam": {"id": "bioregistry.odc.sci.miriam", "sameas": "bioregistry.odc.sci", "homepage": "https://odc-sci.org", "prefix": "odc.sci", "name": "Open Data Commons for Spinal Cord Injury", "uri_format": "https://odc-sci.org/data/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.odc.sci": {"id": "bioregistry.odc.sci", "homepage": null, "prefix": "odc.sci", "name": "Open Data Commons for Spinal Cord Injury", "uri_format": "https://odc-sci.org/data/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.odc.tbi.miriam": {"id": "bioregistry.odc.tbi.miriam", "sameas": "bioregistry.odc.tbi", "homepage": "https://odc-tbi.org", "prefix": "odc.tbi", "name": "Open Data Commons for Traumatic Brain Injury", "uri_format": "https://odc-tbi.org/data/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.odc.tbi": {"id": "bioregistry.odc.tbi", "homepage": null, "prefix": "odc.tbi", "name": "Open Data Commons for Traumatic Brain Injury", "uri_format": "https://odc-tbi.org/data/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.odor.miriam": {"id": "bioregistry.odor.miriam", "sameas": "bioregistry.odor", "homepage": "http://senselab.med.yale.edu/OdorDB", "prefix": "odor", "name": "Odor Molecules DataBase", "uri_format": "http://senselab.med.yale.edu/OdorDB/Data/$1/?db=5", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.odor.n2t": {"id": "bioregistry.odor.n2t", "sameas": "bioregistry.odor", "homepage": "http://senselab.med.yale.edu/OdorDB", "prefix": "odor", "name": "Odor Molecules DataBase at Yale University School of Medicine", "uri_format": "http://senselab.med.yale.edu/OdorDB/Data/$1/?db=5", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.odor": {"id": "bioregistry.odor", "homepage": null, "prefix": "odor", "name": "Odor Molecules DataBase at Yale University School of Medicine", "uri_format": "http://senselab.med.yale.edu/OdorDB/Data/$1/?db=5", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.oid.miriam": {"id": "bioregistry.oid.miriam", "sameas": "bioregistry.oid", "homepage": "http://www.oid-info.com/introduction.htm", "prefix": "oid", "name": "OID Repository", "uri_format": "http://www.oid-info.com/cgi-bin/display?oid=$1&submit=Display&action=display", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.oid.n2t": {"id": "bioregistry.oid.n2t", "sameas": "bioregistry.oid", "homepage": "http://www.oid-info.com/introduction.htm", "prefix": "oid", "name": "OID Repository", "uri_format": "http://www.oid-info.com/cgi-bin/display?oid=$1&submit=Display&action=display", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.oid": {"id": "bioregistry.oid", "homepage": null, "prefix": "oid", "name": "ISO Object Identifier", "uri_format": "http://www.oid-info.com/cgi-bin/display?oid=$1&submit=Display&action=display", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.oma.grp.miriam": {"id": "bioregistry.oma.grp.miriam", "sameas": "bioregistry.oma.grp", "homepage": "https://omabrowser.org/cgi-bin/gateway.pl", "prefix": "oma.grp", "name": "OMA Group", "uri_format": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayGroup&p1=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.oma.grp.n2t": {"id": "bioregistry.oma.grp.n2t", "sameas": "bioregistry.oma.grp", "homepage": "https://omabrowser.org/cgi-bin/gateway.pl", "prefix": "oma.grp", "name": "OMA Group through OMA browser at ETH Zurich", "uri_format": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayGroup&p1=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.oma.grp": {"id": "bioregistry.oma.grp", "homepage": null, "prefix": "oma.grp", "name": "OMA Group through OMA browser at ETH Zurich", "uri_format": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayGroup&p1=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.oma.hog.miriam": {"id": "bioregistry.oma.hog.miriam", "sameas": "bioregistry.oma.hog", "homepage": "https://omabrowser.org", "prefix": "oma.hog", "name": "OMA HOGs", "uri_format": "https://omabrowser.org/oma/hog/resolve/HOG:$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.oma.hog": {"id": "bioregistry.oma.hog", "homepage": null, "prefix": "oma.hog", "name": "OMA HOGs", "uri_format": "https://omabrowser.org/oma/hog/resolve/HOG:$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.oma.protein.miriam": {"id": "bioregistry.oma.protein.miriam", "sameas": "bioregistry.oma.protein", "homepage": "https://omabrowser.org/cgi-bin/gateway.pl", "prefix": "oma.protein", "name": "OMA Protein", "uri_format": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayEntry&p1=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.oma.protein.n2t": {"id": "bioregistry.oma.protein.n2t", "sameas": "bioregistry.oma.protein", "homepage": "https://omabrowser.org/cgi-bin/gateway.pl", "prefix": "oma.protein", "name": "OMA Protein through OMA browser at ETH Zurich", "uri_format": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayEntry&p1=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.oma.protein": {"id": "bioregistry.oma.protein", "homepage": null, "prefix": "oma.protein", "name": "OMA Protein through OMA browser at ETH Zurich", "uri_format": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayEntry&p1=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.omia.miriam": {"id": "bioregistry.omia.miriam", "sameas": "bioregistry.omia", "homepage": "http://omia.angis.org.au/", "prefix": "omia", "name": "OMIA", "uri_format": "http://omia.angis.org.au/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.omia.n2t": {"id": "bioregistry.omia.n2t", "sameas": "bioregistry.omia", "homepage": "http://omia.angis.org.au/", "prefix": "omia", "name": "OMIA at University of Sydney", "uri_format": "http://omia.angis.org.au/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.omia.prefixcommons": {"id": "bioregistry.omia.prefixcommons", "sameas": "bioregistry.omia", "homepage": "http://omia.angis.org.au/", "prefix": "omia", "name": "Online Mendelian Inheritance in Animals", "uri_format": "http://omia.angis.org.au/retrieve.shtml?pid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.omia": {"id": "bioregistry.omia", "homepage": "https://omia.org", "prefix": "omia", "name": "Online Mendelian Inheritance in Animals", "uri_format": "http://omia.angis.org.au/retrieve.shtml?pid=$1", "source": "bioregistry.io", "subjects": ["medical and health sciences", "genetics", "biological sciences"], "authority": "bioregistry"}, "bioregistry.omid.miriam": {"id": "bioregistry.omid.miriam", "sameas": "bioregistry.omid", "homepage": "http://opencitations.net/", "prefix": "omid", "name": "OpenCitations Meta Identifier", "uri_format": "https://w3id.org/oc/meta/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.omid": {"id": "bioregistry.omid", "homepage": null, "prefix": "omid", "name": "OpenCitations Meta Identifier", "uri_format": "https://w3id.org/oc/meta/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.omim.miriam": {"id": "bioregistry.omim.miriam", "sameas": "bioregistry.omim", "homepage": "https://omim.org/", "prefix": "mim", "name": "OMIM", "uri_format": "https://omim.org/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.omim.n2t": {"id": "bioregistry.omim.n2t", "sameas": "bioregistry.omim", "homepage": "https://omim.org/", "prefix": "mim", "name": "OMIM at John Hopkins", "uri_format": "https://omim.org/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.omim.prefixcommons": {"id": "bioregistry.omim.prefixcommons", "sameas": "bioregistry.omim", "homepage": "http://www.ncbi.nlm.nih.gov/omim/", "prefix": "omim", "name": "Online Mendelian Inheritance in Man", "uri_format": "http://www.ncbi.nlm.nih.gov/omim/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.omim.wikidata": {"id": "bioregistry.omim.wikidata", "sameas": "bioregistry.omim", "homepage": null, "prefix": "P492", "name": "OMIM ID", "uri_format": "https://omim.org/OMIM:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "wikidata"}, "bioregistry.omim.go": {"id": "bioregistry.omim.go", "sameas": "bioregistry.omim", "homepage": "https://omim.org/", "prefix": "OMIM", "name": "Mendelian Inheritance in Man", "uri_format": "https://omim.org/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.omim.uniprot": {"id": "bioregistry.omim.uniprot", "sameas": "bioregistry.omim", "homepage": "https://www.omim.org/", "prefix": "DB-0062", "name": "Online Mendelian Inheritance in Man (OMIM)", "uri_format": "https://www.omim.org/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.omim": {"id": "bioregistry.omim", "homepage": null, "prefix": "omim", "name": "Online Mendelian Inheritance in Man Ontology", "uri_format": "https://www.omim.org/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.omim.ps.biolink": {"id": "bioregistry.omim.ps.biolink", "sameas": "bioregistry.omim.ps", "homepage": null, "prefix": "OMIM.PS", "name": null, "uri_format": "https://www.omim.org/phenotypicSeries/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.omim.ps": {"id": "bioregistry.omim.ps", "homepage": "https://www.omim.org/phenotypicSeriesTitles/all", "prefix": "omim.ps", "name": "OMIM Phenotypic Series", "uri_format": "https://www.omim.org/phenotypicSeries/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.omit.miriam": {"id": "bioregistry.omit.miriam", "sameas": "bioregistry.omit", "homepage": "https://www.ebi.ac.uk/ols4/ontologies/omit/", "prefix": "omit", "name": "OMIT", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/omit/terms?short_form=OMIT_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.omit.n2t": {"id": "bioregistry.omit.n2t", "sameas": "bioregistry.omit", "homepage": "https://www.ebi.ac.uk/ols/ontologies/omit/", "prefix": "omit", "name": "Ontology for miRNA Target (OMIT) through OLS", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/omit/terms?short_form=OMIT_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.omit": {"id": "bioregistry.omit", "homepage": null, "prefix": "omit", "name": "Ontology for miRNA Target (OMIT) through OLS", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/omit/terms?short_form=OMIT_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.opb.miriam": {"id": "bioregistry.opb.miriam", "sameas": "bioregistry.opb", "homepage": "http://bioportal.bioontology.org/ontologies/OPB", "prefix": "opb", "name": "Ontology of Physics for Biology", "uri_format": "http://purl.bioontology.org/ontology/OPB?conceptid=http%3A%2F%2Fbhi.washington.edu%2FOPB%23$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.opb.n2t": {"id": "bioregistry.opb.n2t", "sameas": "bioregistry.opb", "homepage": "http://bioportal.bioontology.org/ontologies/OPB", "prefix": "opb", "name": "Ontology of Physics for Biology through Bioportal", "uri_format": "http://purl.bioontology.org/ontology/OPB?conceptid=http%3A%2F%2Fbhi.washington.edu%2FOPB%23$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.opb": {"id": "bioregistry.opb", "homepage": null, "prefix": "opb", "name": "Ontology of Physics for Biology through Bioportal", "uri_format": "http://purl.bioontology.org/ontology/OPB?conceptid=http%3A%2F%2Fbhi.washington.edu%2FOPB%23$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.opm.miriam": {"id": "bioregistry.opm.miriam", "sameas": "bioregistry.opm", "homepage": "http://opm.phar.umich.edu/", "prefix": "opm", "name": "OPM", "uri_format": "http://opm.phar.umich.edu/protein.php?pdbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.opm.n2t": {"id": "bioregistry.opm.n2t", "sameas": "bioregistry.opm", "homepage": "http://opm.phar.umich.edu/", "prefix": "opm", "name": "OPM at University of Michigan", "uri_format": "http://opm.phar.umich.edu/protein.php?pdbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.opm": {"id": "bioregistry.opm", "homepage": null, "prefix": "opm", "name": "Orientations of Proteins in Membranes Database", "uri_format": "http://opm.phar.umich.edu/protein.php?pdbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.orcid.miriam": {"id": "bioregistry.orcid.miriam", "sameas": "bioregistry.orcid", "homepage": "https://orcid.org", "prefix": "orcid", "name": "ORCID", "uri_format": "https://orcid.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.orcid.n2t": {"id": "bioregistry.orcid.n2t", "sameas": "bioregistry.orcid", "homepage": "https://orcid.org", "prefix": "orcid", "name": "ORCID at Bethesda", "uri_format": "https://orcid.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.orcid.wikidata": {"id": "bioregistry.orcid.wikidata", "sameas": "bioregistry.orcid", "homepage": "https://orcid.org/", "prefix": "P496", "name": "ORCID iD", "uri_format": "https://orcid.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.orcid.go": {"id": "bioregistry.orcid.go", "sameas": "bioregistry.orcid", "homepage": "https://orcid.org/", "prefix": "orcid", "name": "Open Researcher and Contributor", "uri_format": "https://orcid.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.orcid.biolink": {"id": "bioregistry.orcid.biolink", "sameas": "bioregistry.orcid", "homepage": null, "prefix": "ORCID", "name": null, "uri_format": "https://orcid.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.orcid": {"id": "bioregistry.orcid", "homepage": null, "prefix": "orcid", "name": "Open Researcher and Contributor ID Registry", "uri_format": "https://orcid.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ordb.miriam": {"id": "bioregistry.ordb.miriam", "sameas": "bioregistry.ordb", "homepage": "http://senselab.med.yale.edu/OrDB/", "prefix": "ordb", "name": "Olfactory Receptor Database", "uri_format": "http://senselab.med.yale.edu/ORDB/Data/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ordb.n2t": {"id": "bioregistry.ordb.n2t", "sameas": "bioregistry.ordb", "homepage": "http://senselab.med.yale.edu/OrDB/", "prefix": "ordb", "name": "Olfactory Receptor Database at Yale University School of Medicine", "uri_format": "http://senselab.med.yale.edu/ORDB/Data/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ordb.prefixcommons": {"id": "bioregistry.ordb.prefixcommons", "sameas": "bioregistry.ordb", "homepage": "http://senselab.med.yale.edu/senselab/ordb/", "prefix": "ordb", "name": "Olfactory Receptor Database", "uri_format": "http://senselab.med.yale.edu/ordb/eavdata.asp?o=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.ordb": {"id": "bioregistry.ordb", "homepage": null, "prefix": "ordb", "name": "Olfactory Receptor Database at Yale University School of Medicine", "uri_format": "http://senselab.med.yale.edu/ordb/eavdata.asp?o=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.oridb.sacch.miriam": {"id": "bioregistry.oridb.sacch.miriam", "sameas": "bioregistry.oridb.sacch", "homepage": "http://cerevisiae.oridb.org/index.php", "prefix": "oridb.sacch", "name": "OriDB Saccharomyces", "uri_format": "http://cerevisiae.oridb.org/details.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.oridb.sacch.n2t": {"id": "bioregistry.oridb.sacch.n2t", "sameas": "bioregistry.oridb.sacch", "homepage": "http://cerevisiae.oridb.org/index.php", "prefix": "oridb.sacch", "name": "OriDB Saccharomyces at University of Nottingham", "uri_format": "http://cerevisiae.oridb.org/details.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.oridb.sacch": {"id": "bioregistry.oridb.sacch", "homepage": null, "prefix": "oridb.sacch", "name": "OriDB Saccharomyces at University of Nottingham", "uri_format": "http://cerevisiae.oridb.org/details.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.oridb.schizo.miriam": {"id": "bioregistry.oridb.schizo.miriam", "sameas": "bioregistry.oridb.schizo", "homepage": "http://pombe.oridb.org/index.php", "prefix": "oridb.schizo", "name": "OriDB Schizosaccharomyces", "uri_format": "http://pombe.oridb.org/details.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.oridb.schizo.n2t": {"id": "bioregistry.oridb.schizo.n2t", "sameas": "bioregistry.oridb.schizo", "homepage": "http://pombe.oridb.org/index.php", "prefix": "oridb.schizo", "name": "OriDB Schizosaccharomyces at University of Nottingham", "uri_format": "http://pombe.oridb.org/details.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.oridb.schizo": {"id": "bioregistry.oridb.schizo", "homepage": null, "prefix": "oridb.schizo", "name": "OriDB Schizosaccharomyces at University of Nottingham", "uri_format": "http://pombe.oridb.org/details.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.orphanet.miriam": {"id": "bioregistry.orphanet.miriam", "sameas": "bioregistry.orphanet", "homepage": "http://www.orpha.net/consor/", "prefix": "orphanet", "name": "Orphanet", "uri_format": "http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng=EN&Expert=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.orphanet.n2t": {"id": "bioregistry.orphanet.n2t", "sameas": "bioregistry.orphanet", "homepage": "http://www.orpha.net/consor/", "prefix": "orphanet", "name": "Orphanet at Inserm", "uri_format": "http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng=EN&Expert=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.orphanet.prefixcommons": {"id": "bioregistry.orphanet.prefixcommons", "sameas": "bioregistry.orphanet", "homepage": "http://www.orpha.net/consor/cgi-bin/home.php?Lng=GB", "prefix": "orphanet", "name": "Orphanet; a database dedicated to information on rare diseases and orphan drugs", "uri_format": "http://www.orpha.net/consor/cgi-bin/OC_Exp.php?lng=EN&Expert=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "health sciences", "pharmacology and pharmacy"], "authority": "prefixcommons"}, "bioregistry.orphanet.wikidata": {"id": "bioregistry.orphanet.wikidata", "sameas": "bioregistry.orphanet", "homepage": "https://www.orpha.net", "prefix": "P1550", "name": "Orphanet ID", "uri_format": "https://www.orpha.net/consor/cgi-bin//OC_Exp.php?lng=EN&Expert=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "health sciences", "pharmacology and pharmacy"], "authority": "wikidata"}, "bioregistry.orphanet.uniprot": {"id": "bioregistry.orphanet.uniprot", "sameas": "bioregistry.orphanet", "homepage": "https://www.orpha.net/consor/cgi-bin/index.php", "prefix": "DB-0068", "name": "Orphanet; a database dedicated to information on rare diseases and orphan drugs", "uri_format": "https://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng=GB&Expert=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "health sciences", "pharmacology and pharmacy"], "authority": "uniprot"}, "bioregistry.orphanet.biolink": {"id": "bioregistry.orphanet.biolink", "sameas": "bioregistry.orphanet", "homepage": null, "prefix": "orphanet", "name": null, "uri_format": "http://www.orpha.net/ORDO/Orphanet_$1", "source": "bioregistry.io", "subjects": ["biological sciences", "health sciences", "pharmacology and pharmacy"], "authority": "biolink"}, "bioregistry.orphanet.biocontext": {"id": "bioregistry.orphanet.biocontext", "sameas": "bioregistry.orphanet", "homepage": null, "prefix": "Orphanet", "name": null, "uri_format": "http://www.orpha.net/ORDO/Orphanet_$1", "source": "bioregistry.io", "subjects": ["biological sciences", "health sciences", "pharmacology and pharmacy"], "authority": "biocontext"}, "bioregistry.orphanet": {"id": "bioregistry.orphanet", "homepage": null, "prefix": "orphanet", "name": "Orphanet; a database dedicated to information on rare diseases and orphan drugs", "uri_format": "https://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng=GB&Expert=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "health sciences", "pharmacology and pharmacy"], "authority": "bioregistry"}, "bioregistry.orphanet.ordo.miriam": {"id": "bioregistry.orphanet.ordo.miriam", "sameas": "bioregistry.orphanet.ordo", "homepage": "https://www.ebi.ac.uk/ols/ontologies/ordo", "prefix": "orphanet.ordo", "name": "Orphanet Rare Disease Ontology", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/ordo/terms?short_form=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.orphanet.ordo.n2t": {"id": "bioregistry.orphanet.ordo.n2t", "sameas": "bioregistry.orphanet.ordo", "homepage": "https://www.ebi.ac.uk/ols/ontologies/ordo", "prefix": "orphanet.ordo", "name": "ORDO via OLS", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/ordo/terms?short_form=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.orphanet.ordo.biolink": {"id": "bioregistry.orphanet.ordo.biolink", "sameas": "bioregistry.orphanet.ordo", "homepage": null, "prefix": "ORPHA", "name": null, "uri_format": "http://www.orpha.net/ORDO/Orphanet_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.orphanet.ordo.cellosaurus": {"id": "bioregistry.orphanet.ordo.cellosaurus", "sameas": "bioregistry.orphanet.ordo", "homepage": "https://www.ebi.ac.uk/ols/ontologies/ordo", "prefix": "ORDO", "name": "Orphanet Rare Disease Ontology", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/ordo/terms?iri=http://www.orpha.net/ORDO/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.orphanet.ordo": {"id": "bioregistry.orphanet.ordo", "homepage": null, "prefix": "orphanet.ordo", "name": "Orphanet Rare Diseases Ontology", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/ordo/terms?short_form=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.orthodb.miriam": {"id": "bioregistry.orthodb.miriam", "sameas": "bioregistry.orthodb", "homepage": "http://cegg.unige.ch/orthodb4", "prefix": "orthodb", "name": "OrthoDB", "uri_format": "http://cegg.unige.ch/orthodb/results?searchtext=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.orthodb.n2t": {"id": "bioregistry.orthodb.n2t", "sameas": "bioregistry.orthodb", "homepage": "http://cegg.unige.ch/orthodb4", "prefix": "orthodb", "name": "OrthoDB at Swiss Institute of Bioinformatics", "uri_format": "http://cegg.unige.ch/orthodb/results?searchtext=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.orthodb.prefixcommons": {"id": "bioregistry.orthodb.prefixcommons", "sameas": "bioregistry.orthodb", "homepage": "http://cegg.unige.ch/orthodb/browse", "prefix": "orthodb", "name": "Database of Orthologous Groups", "uri_format": "http://cegg.unige.ch/orthodb3/results?searchtext=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.orthodb.uniprot": {"id": "bioregistry.orthodb.uniprot", "sameas": "bioregistry.orthodb", "homepage": "https://www.orthodb.org", "prefix": "DB-0143", "name": "Database of Orthologous Groups", "uri_format": "https://www.orthodb.org/?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics", "biochemistry"], "authority": "uniprot"}, "bioregistry.orthodb": {"id": "bioregistry.orthodb", "homepage": "https://www.orthodb.org", "prefix": "orthodb", "name": "OrthoDB at Swiss Institute of Bioinformatics", "uri_format": "https://www.orthodb.org/?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.oryzabase.gene.miriam": {"id": "bioregistry.oryzabase.gene.miriam", "sameas": "bioregistry.oryzabase.gene", "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "prefix": "oryzabase.gene", "name": "Oryzabase Gene", "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/gene/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.oryzabase.gene.n2t": {"id": "bioregistry.oryzabase.gene.n2t", "sameas": "bioregistry.oryzabase.gene", "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "prefix": "oryzabase.gene", "name": "Oryzabase v4 Gene at National Institute of Genetics (Japan)", "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/gene/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.oryzabase.gene": {"id": "bioregistry.oryzabase.gene", "homepage": null, "prefix": "oryzabase.gene", "name": "Oryzabase v4 Gene at National Institute of Genetics (Japan)", "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/gene/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.oryzabase.mutant.miriam": {"id": "bioregistry.oryzabase.mutant.miriam", "sameas": "bioregistry.oryzabase.mutant", "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "prefix": "oryzabase.mutant", "name": "Oryzabase Mutant", "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/inducedMutationLine/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.oryzabase.mutant.n2t": {"id": "bioregistry.oryzabase.mutant.n2t", "sameas": "bioregistry.oryzabase.mutant", "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "prefix": "oryzabase.mutant", "name": "Oryzabase v4 Mutant at National Institute of Genetics (Japan)", "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/inducedMutationLine/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.oryzabase.mutant": {"id": "bioregistry.oryzabase.mutant", "homepage": null, "prefix": "oryzabase.mutant", "name": "Oryzabase v4 Mutant at National Institute of Genetics (Japan)", "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/inducedMutationLine/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.oryzabase.reference.miriam": {"id": "bioregistry.oryzabase.reference.miriam", "sameas": "bioregistry.oryzabase.reference", "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "prefix": "oryzabase.reference", "name": "Oryzabase", "uri_format": "https://shigen.nig.ac.jp/rice/oryzabase/reference/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.oryzabase.reference.n2t": {"id": "bioregistry.oryzabase.reference.n2t", "sameas": "bioregistry.oryzabase.reference", "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "prefix": "oryzabase.reference", "name": "Oryzabase", "uri_format": "https://shigen.nig.ac.jp/rice/oryzabase/reference/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.oryzabase.reference": {"id": "bioregistry.oryzabase.reference", "homepage": null, "prefix": "oryzabase.reference", "name": "Oryzabase Reference", "uri_format": "https://shigen.nig.ac.jp/rice/oryzabase/reference/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.oryzabase.stage.miriam": {"id": "bioregistry.oryzabase.stage.miriam", "sameas": "bioregistry.oryzabase.stage", "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "prefix": "oryzabase.stage", "name": "Oryzabase Stage", "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/devstageineachorgan/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.oryzabase.stage.n2t": {"id": "bioregistry.oryzabase.stage.n2t", "sameas": "bioregistry.oryzabase.stage", "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "prefix": "oryzabase.stage", "name": "Oryzabase v4 Stage at National Institute of Genetics (Japan)", "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/devstageineachorgan/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.oryzabase.stage": {"id": "bioregistry.oryzabase.stage", "homepage": null, "prefix": "oryzabase.stage", "name": "Oryzabase v4 Stage at National Institute of Genetics (Japan)", "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/devstageineachorgan/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.oryzabase.strain.miriam": {"id": "bioregistry.oryzabase.strain.miriam", "sameas": "bioregistry.oryzabase.strain", "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "prefix": "oryzabase.strain", "name": "Oryzabase Strain", "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/wildCore/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.oryzabase.strain.n2t": {"id": "bioregistry.oryzabase.strain.n2t", "sameas": "bioregistry.oryzabase.strain", "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "prefix": "oryzabase.strain", "name": "Oryzabase v4 Strain at National Institute of Genetics (Japan)", "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/wildCore/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.oryzabase.strain": {"id": "bioregistry.oryzabase.strain", "homepage": null, "prefix": "oryzabase.strain", "name": "Oryzabase v4 Strain at National Institute of Genetics (Japan)", "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/wildCore/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.otl.miriam": {"id": "bioregistry.otl.miriam", "sameas": "bioregistry.otl", "homepage": "http://oryzatagline.cirad.fr/", "prefix": "otl", "name": "Oryza Tag Line", "uri_format": "http://oryzatagline.cirad.fr/cgi-bin/general_mutant.pl?line=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.otl.n2t": {"id": "bioregistry.otl.n2t", "sameas": "bioregistry.otl", "homepage": "http://oryzatagline.cirad.fr/", "prefix": "otl", "name": "Oryza Tag Line at CIRAD-INRA-SUPAGRO-UMI", "uri_format": "http://oryzatagline.cirad.fr/cgi-bin/general_mutant.pl?line=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.otl.prefixcommons": {"id": "bioregistry.otl.prefixcommons", "sameas": "bioregistry.otl", "homepage": "http://urgi.versailles.inra.fr/OryzaTagLine/", "prefix": "otl", "name": "Oryza Tag Line: An integrated database for the functional analysis of the rice genome", "uri_format": "http://urgi.versailles.inra.fr/OryzaTagLine/cgi-bin/general_mutant.pl?line=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.otl": {"id": "bioregistry.otl", "homepage": null, "prefix": "otl", "name": "Oryza Tag Line: An integrated database for the functional analysis of the rice genome", "uri_format": "http://urgi.versailles.inra.fr/OryzaTagLine/cgi-bin/general_mutant.pl?line=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.otol.wikidata": {"id": "bioregistry.otol.wikidata", "sameas": "bioregistry.otol", "homepage": "https://tree.opentreeoflife.org/opentree", "prefix": "P9157", "name": "Open Tree of Life ID", "uri_format": "https://tree.opentreeoflife.org/taxonomy/browse?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.otol": {"id": "bioregistry.otol", "homepage": "https://tree.opentreeoflife.org", "prefix": "otol", "name": "Open Tree of Life ID", "uri_format": "https://tree.opentreeoflife.org/taxonomy/browse?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.owl.biocontext": {"id": "bioregistry.owl.biocontext", "sameas": "bioregistry.owl", "homepage": null, "prefix": "owl", "name": null, "uri_format": "http://www.w3.org/2002/07/owl#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.owl": {"id": "bioregistry.owl", "homepage": "https://www.w3.org/TR/owl-features/", "prefix": "owl", "name": "The OWL 2 Schema vocabulary (OWL 2)", "uri_format": "http://www.w3.org/2002/07/owl#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.owlstar.biolink": {"id": "bioregistry.owlstar.biolink", "sameas": "bioregistry.owlstar", "homepage": null, "prefix": "os", "name": null, "uri_format": "https://github.com/cmungall/owlstar/blob/master/owlstar.ttl$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.owlstar": {"id": "bioregistry.owlstar", "homepage": "https://linkml.io/owlstar/", "prefix": "owlstar", "name": "Ontological Interpretations for Web Property Graphs", "uri_format": "https://github.com/cmungall/owlstar/blob/master/owlstar.ttl$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.p3db.protein.miriam": {"id": "bioregistry.p3db.protein.miriam", "sameas": "bioregistry.p3db.protein", "homepage": "http://www.p3db.org/", "prefix": "p3db.protein", "name": "P3DB Protein", "uri_format": "http://www.p3db.org/protein.php?id=$1&ref=0", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.p3db.protein.n2t": {"id": "bioregistry.p3db.protein.n2t", "sameas": "bioregistry.p3db.protein", "homepage": "http://www.p3db.org/", "prefix": "p3db.protein", "name": "P3DB Protein at University of Missouri", "uri_format": "http://www.p3db.org/protein.php?id=$1&ref=0", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.p3db.protein.prefixcommons": {"id": "bioregistry.p3db.protein.prefixcommons", "sameas": "bioregistry.p3db.protein", "homepage": "http://www.p3db.org", "prefix": "p3db", "name": "Plant Protein Phosphorylation Database", "uri_format": "http://digbio.missouri.edu/p3db/data/protein.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.p3db.protein": {"id": "bioregistry.p3db.protein", "homepage": null, "prefix": "p3db.protein", "name": "P3DB Protein at University of Missouri", "uri_format": "http://www.p3db.org/protein.php?id=$1&ref=0", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.p3db.site.miriam": {"id": "bioregistry.p3db.site.miriam", "sameas": "bioregistry.p3db.site", "homepage": "http://www.p3db.org/", "prefix": "p3db.site", "name": "P3DB Site", "uri_format": "http://www.p3db.org/phosphosite.php?id=$1&ref=0", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.p3db.site.n2t": {"id": "bioregistry.p3db.site.n2t", "sameas": "bioregistry.p3db.site", "homepage": "http://www.p3db.org/", "prefix": "p3db.site", "name": "P3DB Site at University of Missouri", "uri_format": "http://www.p3db.org/phosphosite.php?id=$1&ref=0", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.p3db.site": {"id": "bioregistry.p3db.site", "homepage": null, "prefix": "p3db.site", "name": "P3DB Site at University of Missouri", "uri_format": "http://www.p3db.org/phosphosite.php?id=$1&ref=0", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.paleodb.miriam": {"id": "bioregistry.paleodb.miriam", "sameas": "bioregistry.paleodb", "homepage": "http://paleodb.org/", "prefix": "paleodb", "name": "PaleoDB", "uri_format": "http://fossilworks.org/?a=taxonInfo&taxon_no=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.paleodb.n2t": {"id": "bioregistry.paleodb.n2t", "sameas": "bioregistry.paleodb", "homepage": "http://paleodb.org/", "prefix": "paleodb", "name": "PaleoDB at Macquarie University", "uri_format": "http://fossilworks.org/?a=taxonInfo&taxon_no=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.paleodb.prefixcommons": {"id": "bioregistry.paleodb.prefixcommons", "sameas": "bioregistry.paleodb", "homepage": null, "prefix": "paleodb", "name": "Paleobiology Database", "uri_format": "http://paleodb.geology.wisc.edu/cgi-bin/bridge.pl?a=basicTaxonInfo&taxon_no=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.paleodb": {"id": "bioregistry.paleodb", "homepage": null, "prefix": "paleodb", "name": "PaleoDB at Macquarie University", "uri_format": "http://paleodb.geology.wisc.edu/cgi-bin/bridge.pl?a=basicTaxonInfo&taxon_no=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pandit.prefixcommons": {"id": "bioregistry.pandit.prefixcommons", "sameas": "bioregistry.pandit", "homepage": "http://www.ebi.ac.uk/goldman-srv/pandit", "prefix": "pandit", "name": "Protein and Associated NucleotideDomains with Inferred Trees", "uri_format": "http://www.ebi.ac.uk/goldman-srv/pandit/pandit.cgi?action=browse&fam=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pandit": {"id": "bioregistry.pandit", "homepage": null, "prefix": "pandit", "name": "Protein and Associated NucleotideDomains with Inferred Trees", "uri_format": "http://www.ebi.ac.uk/goldman-srv/pandit/pandit.cgi?action=browse&fam=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.panther.family.miriam": {"id": "bioregistry.panther.family.miriam", "sameas": "bioregistry.panther.family", "homepage": "http://www.pantherdb.org/", "prefix": "panther.family", "name": "PANTHER Family", "uri_format": "http://www.pantherdb.org/panther/family.do?clsAccession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.panther.family.n2t": {"id": "bioregistry.panther.family.n2t", "sameas": "bioregistry.panther.family", "homepage": "http://www.pantherdb.org/", "prefix": "panther.family", "name": "PANTHER Family at USC (Los Angeles)", "uri_format": "http://www.pantherdb.org/panther/family.do?clsAccession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.panther.family.prefixcommons": {"id": "bioregistry.panther.family.prefixcommons", "sameas": "bioregistry.panther.family", "homepage": "http://www.pantherdb.org", "prefix": "panther", "name": "Protein ANalysis THrough Evolutionary Relationships: Classification of Genes and Proteins", "uri_format": "http://www.pantherdb.org/panther/family.do?clsAccession=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.panther.family.go": {"id": "bioregistry.panther.family.go", "sameas": "bioregistry.panther.family", "homepage": "http://www.pantherdb.org/", "prefix": "PANTHER", "name": "Protein ANalysis THrough Evolutionary Relationships Classification System", "uri_format": "http://www.pantherdb.org/panther/lookupId.jsp?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "go"}, "bioregistry.panther.family.uniprot": {"id": "bioregistry.panther.family.uniprot", "sameas": "bioregistry.panther.family", "homepage": "http://www.pantherdb.org/", "prefix": "DB-0069", "name": "The PANTHER Classification System", "uri_format": "http://www.pantherdb.org/panther/family.do?clsAccession=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "uniprot"}, "bioregistry.panther.family.biolink": {"id": "bioregistry.panther.family.biolink", "sameas": "bioregistry.panther.family", "homepage": null, "prefix": "PANTHER.FAMILY", "name": null, "uri_format": "http://www.pantherdb.org/panther/family.do?clsAccession=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "biolink"}, "bioregistry.panther.family": {"id": "bioregistry.panther.family", "homepage": null, "prefix": "panther.family", "name": "Protein ANalysis THrough Evolutionary Relationships: Classification of Genes and Proteins", "uri_format": "http://www.pantherdb.org/panther/lookupId.jsp?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.panther.node.miriam": {"id": "bioregistry.panther.node.miriam", "sameas": "bioregistry.panther.node", "homepage": "http://pantree.org/", "prefix": "panther.node", "name": "PANTHER Node", "uri_format": "http://www.pantree.org/node/annotationNode.jsp?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.panther.node.n2t": {"id": "bioregistry.panther.node.n2t", "sameas": "bioregistry.panther.node", "homepage": "http://pantree.org/", "prefix": "panther.node", "name": "PANTHER Node at USC (Los Angeles)", "uri_format": "http://www.pantree.org/node/annotationNode.jsp?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.panther.node": {"id": "bioregistry.panther.node", "homepage": null, "prefix": "panther.node", "name": "PANTHER Node at USC (Los Angeles)", "uri_format": "http://www.pantree.org/node/annotationNode.jsp?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.panther.pathway.miriam": {"id": "bioregistry.panther.pathway.miriam", "sameas": "bioregistry.panther.pathway", "homepage": "http://www.pantherdb.org/", "prefix": "panther.pathway", "name": "PANTHER Pathway", "uri_format": "http://www.pantherdb.org/pathway/pathwayDiagram.jsp?catAccession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.panther.pathway.n2t": {"id": "bioregistry.panther.pathway.n2t", "sameas": "bioregistry.panther.pathway", "homepage": "http://www.pantherdb.org/", "prefix": "panther.pathway", "name": "PANTHER Pathway at USC (Los Angeles)", "uri_format": "http://www.pantherdb.org/pathway/pathwayDiagram.jsp?catAccession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.panther.pathway": {"id": "bioregistry.panther.pathway", "homepage": null, "prefix": "panther.pathway", "name": "PANTHER Pathway at USC (Los Angeles)", "uri_format": "http://www.pantherdb.org/pathway/pathwayDiagram.jsp?catAccession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.panther.pthcmp.miriam": {"id": "bioregistry.panther.pthcmp.miriam", "sameas": "bioregistry.panther.pthcmp", "homepage": "http://www.pantherdb.org/", "prefix": "panther.pthcmp", "name": "PANTHER Pathway Component", "uri_format": "http://www.pantherdb.org/pathway/pathCatDetail.do?clsAccession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.panther.pthcmp.n2t": {"id": "bioregistry.panther.pthcmp.n2t", "sameas": "bioregistry.panther.pthcmp", "homepage": "http://www.pantherdb.org/", "prefix": "panther.pthcmp", "name": "PANTHER Pathway Component at USC (Los Angeles)", "uri_format": "http://www.pantherdb.org/pathway/pathCatDetail.do?clsAccession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.panther.pthcmp": {"id": "bioregistry.panther.pthcmp", "homepage": null, "prefix": "panther.pthcmp", "name": "PANTHER Pathway Component at USC (Los Angeles)", "uri_format": "http://www.pantherdb.org/pathway/pathCatDetail.do?clsAccession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pass2.miriam": {"id": "bioregistry.pass2.miriam", "sameas": "bioregistry.pass2", "homepage": "http://caps.ncbs.res.in/pass2/", "prefix": "pass2", "name": "PASS2", "uri_format": "http://caps.ncbs.res.in/cgi-bin/pass2//show_sf.py?sf_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pass2.n2t": {"id": "bioregistry.pass2.n2t", "sameas": "bioregistry.pass2", "homepage": "http://caps.ncbs.res.in/pass2/", "prefix": "pass2", "name": "PASS2 at National centre for Biological Sciences (India)", "uri_format": "http://caps.ncbs.res.in/cgi-bin/pass2//show_sf.py?sf_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pass2.prefixcommons": {"id": "bioregistry.pass2.prefixcommons", "sameas": "bioregistry.pass2", "homepage": "http://www.ncbs.res.in/~faculty/mini/campass/pass2.html", "prefix": "pass2", "name": "Protein Alignments organised as Structural Superfamilies", "uri_format": "http://caps.ncbs.res.in/cgi-bin/mini/databases/campass/pass/pass.cgi?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.pass2": {"id": "bioregistry.pass2", "homepage": "http://caps.ncbs.res.in/pass2", "prefix": "pass2", "name": "PASS2 at National centre for Biological Sciences (India)", "uri_format": "http://caps.ncbs.res.in/cgi-bin/pass2//show_sf.py?sf_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.pathguide.prefixcommons": {"id": "bioregistry.pathguide.prefixcommons", "sameas": "bioregistry.pathguide", "homepage": "http://pathguide.org", "prefix": "pathguide", "name": "Pathguide: The Pathway Resource List", "uri_format": "http://www.pathguide.org/fullrecord.php?organisms=all&availability=all&standards=all&order=alphabetic&DBID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pathguide": {"id": "bioregistry.pathguide", "homepage": null, "prefix": "pathguide", "name": "Pathguide: The Pathway Resource List", "uri_format": "http://www.pathguide.org/fullrecord.php?organisms=all&availability=all&standards=all&order=alphabetic&DBID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.pathoplant.prefixcommons": {"id": "bioregistry.pathoplant.prefixcommons", "sameas": "bioregistry.pathoplant", "homepage": "http://www.pathoplant.de", "prefix": "pathoplant", "name": "PathoPlant\u00ae", "uri_format": "http://www.pathoplant.de/detail.php?accNo=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pathoplant": {"id": "bioregistry.pathoplant", "homepage": null, "prefix": "pathoplant", "name": "PathoPlant\u00ae", "uri_format": "http://www.pathoplant.de/detail.php?accNo=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.pathwaycommons.miriam": {"id": "bioregistry.pathwaycommons.miriam", "sameas": "bioregistry.pathwaycommons", "homepage": "http://www.pathwaycommons.org/pc/", "prefix": "pathwaycommons", "name": "Pathway Commons", "uri_format": "http://www.pathwaycommons.org/pc/record2.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pathwaycommons.n2t": {"id": "bioregistry.pathwaycommons.n2t", "sameas": "bioregistry.pathwaycommons", "homepage": "http://www.pathwaycommons.org/pc/", "prefix": "pathwaycommons", "name": "Pathway Commons", "uri_format": "http://www.pathwaycommons.org/pc/record2.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pathwaycommons.prefixcommons": {"id": "bioregistry.pathwaycommons.prefixcommons", "sameas": "bioregistry.pathwaycommons", "homepage": "http://www.pathwaycommons.org/pc/", "prefix": "pathwaycommons", "name": "Pathway Commons", "uri_format": "http://www.pathwaycommons.org/pc/record2.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.pathwaycommons.uniprot": {"id": "bioregistry.pathwaycommons.uniprot", "sameas": "bioregistry.pathwaycommons", "homepage": "http://www.pathwaycommons.org", "prefix": "DB-0253", "name": "Pathway Commons web resource for biological pathway data", "uri_format": "http://apps.pathwaycommons.org/search?q=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.pathwaycommons": {"id": "bioregistry.pathwaycommons", "homepage": null, "prefix": "pathwaycommons", "name": "Pathway Commons web resource for biological pathway data", "uri_format": "http://www.pathwaycommons.org/pc/record2.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pato.miriam": {"id": "bioregistry.pato.miriam", "sameas": "bioregistry.pato", "homepage": "http://bioportal.bioontology.org/ontologies/PATO", "prefix": "pato", "name": "PATO", "uri_format": "http://purl.bioontology.org/ontology/PATO/PATO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pato.n2t": {"id": "bioregistry.pato.n2t", "sameas": "bioregistry.pato", "homepage": "http://bioportal.bioontology.org/ontologies/PATO", "prefix": "pato", "name": "PATO through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/PATO/PATO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pato": {"id": "bioregistry.pato", "homepage": null, "prefix": "pato", "name": "PATO - the Phenotype And Trait Ontology", "uri_format": "http://purl.bioontology.org/ontology/PATO/PATO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pav.biolink": {"id": "bioregistry.pav.biolink", "sameas": "bioregistry.pav", "homepage": null, "prefix": "pav", "name": null, "uri_format": "http://purl.org/pav/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.pav.biocontext": {"id": "bioregistry.pav.biocontext", "sameas": "bioregistry.pav", "homepage": null, "prefix": "pav", "name": null, "uri_format": "http://purl.org/pav/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.pav": {"id": "bioregistry.pav", "homepage": "https://pav-ontology.github.io/pav/", "prefix": "pav", "name": "Provenance, Authoring, and Versioning Vocabulary", "uri_format": "http://purl.org/pav/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.paxdb.organism.miriam": {"id": "bioregistry.paxdb.organism.miriam", "sameas": "bioregistry.paxdb.organism", "homepage": "http://pax-db.org/", "prefix": "paxdb.organism", "name": "PaxDb Organism", "uri_format": "http://pax-db.org/#!species/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.paxdb.organism.n2t": {"id": "bioregistry.paxdb.organism.n2t", "sameas": "bioregistry.paxdb.organism", "homepage": "http://pax-db.org/", "prefix": "paxdb.organism", "name": "PaxDb v3 at University of Zurich", "uri_format": "http://pax-db.org/#!species/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.paxdb.organism": {"id": "bioregistry.paxdb.organism", "homepage": null, "prefix": "paxdb.organism", "name": "PaxDb v3 at University of Zurich", "uri_format": "http://pax-db.org/#!species/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.paxdb.protein.miriam": {"id": "bioregistry.paxdb.protein.miriam", "sameas": "bioregistry.paxdb.protein", "homepage": "http://pax-db.org/", "prefix": "paxdb.protein", "name": "PaxDb Protein", "uri_format": "http://pax-db.org/#!protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.paxdb.protein.n2t": {"id": "bioregistry.paxdb.protein.n2t", "sameas": "bioregistry.paxdb.protein", "homepage": "http://pax-db.org/", "prefix": "paxdb.protein", "name": "PaxDb v3 at University of Zurich", "uri_format": "http://pax-db.org/#!protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.paxdb.protein": {"id": "bioregistry.paxdb.protein", "homepage": null, "prefix": "paxdb.protein", "name": "PaxDb v3 at University of Zurich", "uri_format": "http://pax-db.org/#!protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pazar.miriam": {"id": "bioregistry.pazar.miriam", "sameas": "bioregistry.pazar", "homepage": "http://www.pazar.info/", "prefix": "pazar", "name": "Pazar Transcription Factor", "uri_format": "http://www.pazar.info/cgi-bin/tf_search.cgi?geneID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pazar.n2t": {"id": "bioregistry.pazar.n2t", "sameas": "bioregistry.pazar", "homepage": "http://www.pazar.info/", "prefix": "pazar", "name": "Pazar Transcription Factor at University of British Columbia", "uri_format": "http://www.pazar.info/cgi-bin/tf_search.cgi?geneID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pazar.prefixcommons": {"id": "bioregistry.pazar.prefixcommons", "sameas": "bioregistry.pazar", "homepage": "http://www.pazar.info/", "prefix": "pazar", "name": "PAZAR", "uri_format": "http://www.pazar.info/cgi-bin/tf_search.cgi?searchtab=tfs&ID_list=PAZAR_TF&geneID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.pazar": {"id": "bioregistry.pazar", "homepage": null, "prefix": "pazar", "name": "Pazar Transcription Factor at University of British Columbia", "uri_format": "http://www.pazar.info/cgi-bin/tf_search.cgi?searchtab=tfs&ID_list=PAZAR_TF&geneID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.pdb.miriam": {"id": "bioregistry.pdb.miriam", "sameas": "bioregistry.pdb", "homepage": "https://www.wwpdb.org/", "prefix": "pdb", "name": "Protein Data Bank", "uri_format": "https://www.wwpdb.org/pdb?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pdb.n2t": {"id": "bioregistry.pdb.n2t", "sameas": "bioregistry.pdb", "homepage": "https://www.pdb.org/", "prefix": "pdb", "name": "RCSB PDB", "uri_format": "https://www.rcsb.org/pdb/explore/explore.do?structureId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pdb.prefixcommons": {"id": "bioregistry.pdb.prefixcommons", "sameas": "bioregistry.pdb", "homepage": "http://www.pdbj.org/", "prefix": "pdbj", "name": "Protein Data Bank Japan", "uri_format": "http://service.pdbj.org/mine/Detail?PDBID=$1&PAGEID=Summary", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pdb.wikidata": {"id": "bioregistry.pdb.wikidata", "sameas": "bioregistry.pdb", "homepage": "https://www.rcsb.org/", "prefix": "P638", "name": "PDB structure ID", "uri_format": "https://www.rcsb.org/structure/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "wikidata"}, "bioregistry.pdb.go": {"id": "bioregistry.pdb.go", "sameas": "bioregistry.pdb", "homepage": "https://www.rcsb.org/pdb/", "prefix": "PDB", "name": "Protein Data Bank", "uri_format": "https://www.rcsb.org/structure/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.pdb.uniprot": {"id": "bioregistry.pdb.uniprot", "sameas": "bioregistry.pdb", "homepage": "https://pdbj.org/", "prefix": "DB-0172", "name": "Protein Data Bank Japan", "uri_format": "https://pdbj.org/mine/summary/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.pdb.biocontext": {"id": "bioregistry.pdb.biocontext", "sameas": "bioregistry.pdb", "homepage": null, "prefix": "PDB", "name": null, "uri_format": "http://www.ebi.ac.uk/pdbsum/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "biocontext"}, "bioregistry.pdb": {"id": "bioregistry.pdb", "homepage": null, "prefix": "pdb", "name": "Biological macromolecule three dimensional structure database", "uri_format": "https://www.wwpdb.org/pdb?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.pdb-ccd.miriam": {"id": "bioregistry.pdb-ccd.miriam", "sameas": "bioregistry.pdb-ccd", "homepage": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/", "prefix": "pdb-ccd", "name": "Chemical Component Dictionary", "uri_format": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/chemicalCompound/show/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pdb-ccd.n2t": {"id": "bioregistry.pdb-ccd.n2t", "sameas": "bioregistry.pdb-ccd", "homepage": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/", "prefix": "pdb-ccd", "name": "Protein Data Bank Chemical Component Dictionary at EBI", "uri_format": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/chemicalCompound/show/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pdb-ccd.prefixcommons": {"id": "bioregistry.pdb-ccd.prefixcommons", "sameas": "bioregistry.pdb-ccd", "homepage": "http://www.ebi.ac.uk/msd-srv/msdchem/cgi-bin/cgi.pl?APPLICATION=1", "prefix": "ccd", "name": "Chemical Component Dictionary", "uri_format": "http://www.ebi.ac.uk/msd-srv/msdchem/cgi-bin/cgi.pl?FUNCTION=record&ENTITY=CHEM_COMP&PRIMARYKEY=$1&APPLICATION=1", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences"], "authority": "prefixcommons"}, "bioregistry.pdb-ccd": {"id": "bioregistry.pdb-ccd", "homepage": null, "prefix": "pdb-ccd", "name": "Protein Data Bank Chemical Component Dictionary at EBI", "uri_format": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/chemicalCompound/show/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "chemical sciences"], "authority": "bioregistry"}, "bioregistry.pdb.ligand.miriam": {"id": "bioregistry.pdb.ligand.miriam", "sameas": "bioregistry.pdb.ligand", "homepage": "http://www.pdb.org/", "prefix": "pdb.ligand", "name": "Protein Data Bank Ligand", "uri_format": "http://www.rcsb.org/pdb/ligand/ligandsummary.do?hetId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pdb.ligand.n2t": {"id": "bioregistry.pdb.ligand.n2t", "sameas": "bioregistry.pdb.ligand", "homepage": "http://www.pdb.org/", "prefix": "pdb.ligand", "name": "PDB Ligand at RCSB", "uri_format": "http://www.rcsb.org/pdb/ligand/ligandsummary.do?hetId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pdb.ligand.wikidata": {"id": "bioregistry.pdb.ligand.wikidata", "sameas": "bioregistry.pdb.ligand", "homepage": "http://www.wwpdb.org/", "prefix": "P3636", "name": "PDB ligand ID", "uri_format": "https://www.rcsb.org/ligand/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "wikidata"}, "bioregistry.pdb.ligand": {"id": "bioregistry.pdb.ligand", "homepage": null, "prefix": "pdb.ligand", "name": "Protein Data Bank Ligand", "uri_format": "https://www.rcsb.org/ligand/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.pdbsum.prefixcommons": {"id": "bioregistry.pdbsum.prefixcommons", "sameas": "bioregistry.pdbsum", "homepage": "http://www.ebi.ac.uk/pdbsum", "prefix": "pdbsum", "name": "PDBsum; at-a-glance overview of macromolecular structures", "uri_format": "http://www.ebi.ac.uk/pdbsum/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pdbsum.uniprot": {"id": "bioregistry.pdbsum.uniprot", "sameas": "bioregistry.pdbsum", "homepage": "https://www.ebi.ac.uk/pdbsum/", "prefix": "DB-0119", "name": "PDBsum; at-a-glance overview of macromolecular structures", "uri_format": "https://www.ebi.ac.uk/pdbsum/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.pdbsum": {"id": "bioregistry.pdbsum", "homepage": null, "prefix": "pdbsum", "name": "PDBsum; at-a-glance overview of macromolecular structures", "uri_format": "https://www.ebi.ac.uk/pdbsum/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.ped.miriam": {"id": "bioregistry.ped.miriam", "sameas": "bioregistry.ped", "homepage": "https://proteinensemble.org/", "prefix": "ped", "name": "Protein Ensemble Database", "uri_format": "https://proteinensemble.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ped": {"id": "bioregistry.ped", "homepage": null, "prefix": "ped", "name": "Protein Ensemble Database", "uri_format": "https://proteinensemble.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ped.ensemble.miriam": {"id": "bioregistry.ped.ensemble.miriam", "sameas": "bioregistry.ped.ensemble", "homepage": "https://proteinensemble.org/", "prefix": "ped.ensemble", "name": "Protein Ensemble Database ensemble", "uri_format": "https://proteinensemble.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ped.ensemble": {"id": "bioregistry.ped.ensemble", "homepage": null, "prefix": "ped.ensemble", "name": "Protein Ensemble Database ensemble", "uri_format": "https://proteinensemble.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pennsieve.miriam": {"id": "bioregistry.pennsieve.miriam", "sameas": "bioregistry.pennsieve", "homepage": "https://discover.pennsieve.io", "prefix": "ps", "name": "Pennsieve", "uri_format": "https://discover.pennsieve.io/package/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pennsieve": {"id": "bioregistry.pennsieve", "homepage": null, "prefix": "pennsieve", "name": "Pennsieve", "uri_format": "https://discover.pennsieve.io/package/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pepbank.prefixcommons": {"id": "bioregistry.pepbank.prefixcommons", "sameas": "bioregistry.pepbank", "homepage": "http://pepbank.mgh.harvard.edu/", "prefix": "pepbank", "name": "PepBank Peptide Database", "uri_format": "http://pepbank.mgh.harvard.edu/interactions/details/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pepbank": {"id": "bioregistry.pepbank", "homepage": null, "prefix": "pepbank", "name": "PepBank Peptide Database", "uri_format": "http://pepbank.mgh.harvard.edu/interactions/details/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.peptideatlas.miriam": {"id": "bioregistry.peptideatlas.miriam", "sameas": "bioregistry.peptideatlas", "homepage": "http://www.peptideatlas.org/", "prefix": "peptideatlas", "name": "PeptideAtlas", "uri_format": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/Summarize_Peptide?query=QUERY&searchForThis=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.peptideatlas.n2t": {"id": "bioregistry.peptideatlas.n2t", "sameas": "bioregistry.peptideatlas", "homepage": "http://www.peptideatlas.org/", "prefix": "peptideatlas", "name": "PeptideAtlas at ISB", "uri_format": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/Summarize_Peptide?query=QUERY&searchForThis=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.peptideatlas.prefixcommons": {"id": "bioregistry.peptideatlas.prefixcommons", "sameas": "bioregistry.peptideatlas", "homepage": "http://www.peptideatlas.org", "prefix": "peptideatlas", "name": "PeptideAtlas", "uri_format": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/GetProtein?atlas_build_id=242&protein_name=$1&action=QUERY", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "mass spectrometry"], "authority": "prefixcommons"}, "bioregistry.peptideatlas.uniprot": {"id": "bioregistry.peptideatlas.uniprot", "sameas": "bioregistry.peptideatlas", "homepage": "http://www.peptideatlas.org", "prefix": "DB-0071", "name": "PeptideAtlas", "uri_format": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/Search?action=GO&search_key=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "mass spectrometry"], "authority": "uniprot"}, "bioregistry.peptideatlas": {"id": "bioregistry.peptideatlas", "homepage": null, "prefix": "peptideatlas", "name": "PeptideAtlas at ISB", "uri_format": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/Summarize_Peptide?query=QUERY&searchForThis=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "mass spectrometry"], "authority": "bioregistry"}, "bioregistry.peptideatlas.dataset.miriam": {"id": "bioregistry.peptideatlas.dataset.miriam", "sameas": "bioregistry.peptideatlas.dataset", "homepage": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/PASS_Summary", "prefix": "peptideatlas.dataset", "name": "PeptideAtlas Dataset", "uri_format": "http://www.peptideatlas.org/PASS/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.peptideatlas.dataset.n2t": {"id": "bioregistry.peptideatlas.dataset.n2t", "sameas": "bioregistry.peptideatlas.dataset", "homepage": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/PASS_Summary", "prefix": "peptideatlas.dataset", "name": "PeptideAtlas Dataset", "uri_format": "http://www.peptideatlas.org/PASS/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.peptideatlas.dataset": {"id": "bioregistry.peptideatlas.dataset", "homepage": null, "prefix": "peptideatlas.dataset", "name": "PeptideAtlas Dataset", "uri_format": "http://www.peptideatlas.org/PASS/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.perkinelmer.cellosaurus": {"id": "bioregistry.perkinelmer.cellosaurus", "sameas": "bioregistry.perkinelmer", "homepage": "https://www.perkinelmer.com/", "prefix": "PerkinElmer", "name": "PerkinElmer cell line collection", "uri_format": "https://www.perkinelmer.com/searchresult?searchName=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.perkinelmer": {"id": "bioregistry.perkinelmer", "homepage": null, "prefix": "perkinelmer", "name": "PerkinElmer cell line collection", "uri_format": "https://www.perkinelmer.com/searchresult?searchName=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.peroxibase.miriam": {"id": "bioregistry.peroxibase.miriam", "sameas": "bioregistry.peroxibase", "homepage": "http://peroxibase.toulouse.inra.fr/", "prefix": "peroxibase", "name": "Peroxibase", "uri_format": "http://peroxibase.toulouse.inra.fr/browse/process/view_perox.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.peroxibase.n2t": {"id": "bioregistry.peroxibase.n2t", "sameas": "bioregistry.peroxibase", "homepage": "http://peroxibase.toulouse.inra.fr/", "prefix": "peroxibase", "name": "Peroxibase at University of Geneva", "uri_format": "http://peroxibase.toulouse.inra.fr/browse/process/view_perox.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.peroxibase.prefixcommons": {"id": "bioregistry.peroxibase.prefixcommons", "sameas": "bioregistry.peroxibase", "homepage": "http://peroxibase.toulouse.inra.fr/", "prefix": "peroxibase", "name": "PeroxiBase, a peroxidase database", "uri_format": "http://peroxibase.toulouse.inra.fr/listing.php?action=view&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.peroxibase.uniprot": {"id": "bioregistry.peroxibase.uniprot", "sameas": "bioregistry.peroxibase", "homepage": "http://peroxibase.toulouse.inra.fr/", "prefix": "DB-0072", "name": "PeroxiBase, a peroxidase database", "uri_format": "http://peroxibase.toulouse.inra.fr/display_perox/view_perox/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.peroxibase": {"id": "bioregistry.peroxibase", "homepage": null, "prefix": "peroxibase", "name": "Peroxibase at University of Geneva", "uri_format": "http://peroxibase.toulouse.inra.fr/listing.php?action=view&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.pfam.miriam": {"id": "bioregistry.pfam.miriam", "sameas": "bioregistry.pfam", "homepage": "https://www.ebi.ac.uk/interpro/", "prefix": "pfam", "name": "Pfam", "uri_format": "https://www.ebi.ac.uk/interpro/entry/pfam/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pfam.n2t": {"id": "bioregistry.pfam.n2t", "sameas": "bioregistry.pfam", "homepage": "https://pfam.xfam.org/", "prefix": "pfam", "name": "Pfam at EMBL-EBI", "uri_format": "https://pfam.xfam.org/family/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pfam.prefixcommons": {"id": "bioregistry.pfam.prefixcommons", "sameas": "bioregistry.pfam", "homepage": "http://pfam.sanger.ac.uk/", "prefix": "pfam", "name": "Sanger Pfam Mirror", "uri_format": "http://pfam.sanger.ac.uk/family?entry=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pfam.wikidata": {"id": "bioregistry.pfam.wikidata", "sameas": "bioregistry.pfam", "homepage": "https://pfam.xfam.org/", "prefix": "P3519", "name": "Pfam ID", "uri_format": "https://pfam.xfam.org/family?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "wikidata"}, "bioregistry.pfam.uniprot": {"id": "bioregistry.pfam.uniprot", "sameas": "bioregistry.pfam", "homepage": "http://pfam-legacy.xfam.org/", "prefix": "DB-0073", "name": "Pfam protein domain database", "uri_format": "https://www.ebi.ac.uk/interpro/entry/pfam/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.pfam": {"id": "bioregistry.pfam", "homepage": null, "prefix": "pfam", "name": "Pfam database of protein families", "uri_format": "https://www.ebi.ac.uk/interpro/entry/pfam/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.pgs.miriam": {"id": "bioregistry.pgs.miriam", "sameas": "bioregistry.pgs", "homepage": "http://pgscatalog.org", "prefix": "pgs", "name": "Polygenic Score Catalog", "uri_format": "https://www.pgscatalog.org/pgs/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pgs": {"id": "bioregistry.pgs", "homepage": null, "prefix": "pgs", "name": "Polygenic Score Catalog", "uri_format": "https://www.pgscatalog.org/pgs/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pgx.miriam": {"id": "bioregistry.pgx.miriam", "sameas": "bioregistry.pgx", "homepage": "https://progenetix.org/", "prefix": "pgx", "name": "Progenetix", "uri_format": "https://progenetix.org/services/ids/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pgx.n2t": {"id": "bioregistry.pgx.n2t", "sameas": "bioregistry.pgx", "homepage": "http://progenetix.org/", "prefix": "pgx", "name": "Progenetix", "uri_format": "http://progenetix.org/pgx:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pgx.cellosaurus": {"id": "bioregistry.pgx.cellosaurus", "sameas": "bioregistry.pgx", "homepage": "https://progenetix.org/", "prefix": "Progenetix", "name": "Cancer genome data @ progenetix.org", "uri_format": "https://progenetix.org/biosamples/by-curie/cellosaurus:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.pgx": {"id": "bioregistry.pgx", "homepage": null, "prefix": "pgx", "name": "Cancer genome data @ progenetix.org", "uri_format": "https://progenetix.org/services/ids/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pharmacodb.cell.cellosaurus": {"id": "bioregistry.pharmacodb.cell.cellosaurus", "sameas": "bioregistry.pharmacodb.cell", "homepage": "https://pharmacodb.ca/", "prefix": "PharmacoDB", "name": "PharmacoDB integrative pharmacogenomic database", "uri_format": "https://pharmacodb.ca/cell_lines/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.pharmacodb.cell": {"id": "bioregistry.pharmacodb.cell", "homepage": "https://pharmacodb.ca/cell_lines", "prefix": "pharmacodb.cell", "name": "PharmacoDB integrative pharmacogenomic database", "uri_format": "https://pharmacodb.ca/cell_lines/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pharmgkb.disease.miriam": {"id": "bioregistry.pharmgkb.disease.miriam", "sameas": "bioregistry.pharmgkb.disease", "homepage": "http://www.pharmgkb.org/", "prefix": "pharmgkb.disease", "name": "PharmGKB Disease", "uri_format": "http://www.pharmgkb.org/disease/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pharmgkb.disease.n2t": {"id": "bioregistry.pharmgkb.disease.n2t", "sameas": "bioregistry.pharmgkb.disease", "homepage": "http://www.pharmgkb.org/", "prefix": "pharmgkb.disease", "name": "PharmGKB Disease at Stanford", "uri_format": "http://www.pharmgkb.org/disease/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pharmgkb.disease.prefixcommons": {"id": "bioregistry.pharmgkb.disease.prefixcommons", "sameas": "bioregistry.pharmgkb.disease", "homepage": null, "prefix": "pharmgkb.disease", "name": "PharmGKB Disease", "uri_format": "http://www.pharmgkb.org/disease/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.pharmgkb.disease.biolink": {"id": "bioregistry.pharmgkb.disease.biolink", "sameas": "bioregistry.pharmgkb.disease", "homepage": null, "prefix": "PHARMGKB.DISEASE", "name": null, "uri_format": "https://www.pharmgkb.org/disease/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "biolink"}, "bioregistry.pharmgkb.disease": {"id": "bioregistry.pharmgkb.disease", "homepage": null, "prefix": "pharmgkb.disease", "name": "PharmGKB Disease at Stanford", "uri_format": "https://www.pharmgkb.org/disease/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.pharmgkb.drug.miriam": {"id": "bioregistry.pharmgkb.drug.miriam", "sameas": "bioregistry.pharmgkb.drug", "homepage": "http://www.pharmgkb.org/", "prefix": "pharmgkb.drug", "name": "PharmGKB Drug", "uri_format": "http://www.pharmgkb.org/drug/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pharmgkb.drug.n2t": {"id": "bioregistry.pharmgkb.drug.n2t", "sameas": "bioregistry.pharmgkb.drug", "homepage": "http://www.pharmgkb.org/", "prefix": "pharmgkb.drug", "name": "PharmGKB Drug at Stanford", "uri_format": "http://www.pharmgkb.org/drug/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pharmgkb.drug.prefixcommons": {"id": "bioregistry.pharmgkb.drug.prefixcommons", "sameas": "bioregistry.pharmgkb.drug", "homepage": null, "prefix": "pharmgkb.drug", "name": "PharmGKB Drug", "uri_format": "http://www.pharmgkb.org/drug/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "pharmacology and pharmacy"], "authority": "prefixcommons"}, "bioregistry.pharmgkb.drug": {"id": "bioregistry.pharmgkb.drug", "homepage": null, "prefix": "pharmgkb.drug", "name": "PharmGKB Drug at Stanford", "uri_format": "http://www.pharmgkb.org/drug/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "pharmacology and pharmacy"], "authority": "bioregistry"}, "bioregistry.pharmgkb.gene.miriam": {"id": "bioregistry.pharmgkb.gene.miriam", "sameas": "bioregistry.pharmgkb.gene", "homepage": "http://www.pharmgkb.org/", "prefix": "pharmgkb.gene", "name": "PharmGKB Gene", "uri_format": "http://www.pharmgkb.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pharmgkb.gene.n2t": {"id": "bioregistry.pharmgkb.gene.n2t", "sameas": "bioregistry.pharmgkb.gene", "homepage": "http://www.pharmgkb.org/", "prefix": "pharmgkb.gene", "name": "PharmGKB Gene at Stanford", "uri_format": "http://www.pharmgkb.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pharmgkb.gene.prefixcommons": {"id": "bioregistry.pharmgkb.gene.prefixcommons", "sameas": "bioregistry.pharmgkb.gene", "homepage": null, "prefix": "pharmgkb.gene", "name": "PharmGKB Gene", "uri_format": "http://www.pharmgkb.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.pharmgkb.gene.go": {"id": "bioregistry.pharmgkb.gene.go", "sameas": "bioregistry.pharmgkb.gene", "homepage": "https://www.pharmgkb.org", "prefix": "PharmGKB", "name": "Pharmacogenetics and Pharmacogenomics Knowledge Base", "uri_format": "https://www.pharmgkb.org/do/serve?objId=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.pharmgkb.gene.uniprot": {"id": "bioregistry.pharmgkb.gene.uniprot", "sameas": "bioregistry.pharmgkb.gene", "homepage": "https://www.pharmgkb.org/", "prefix": "DB-0074", "name": "The Pharmacogenetics and Pharmacogenomics Knowledge Base", "uri_format": "https://www.pharmgkb.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.pharmgkb.gene.biolink": {"id": "bioregistry.pharmgkb.gene.biolink", "sameas": "bioregistry.pharmgkb.gene", "homepage": null, "prefix": "PHARMGKB.GENE", "name": null, "uri_format": "https://www.pharmgkb.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "biolink"}, "bioregistry.pharmgkb.gene": {"id": "bioregistry.pharmgkb.gene", "homepage": null, "prefix": "pharmgkb.gene", "name": "The Pharmacogenetics and Pharmacogenomics Knowledge Base", "uri_format": "https://www.pharmgkb.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.pharmgkb.pathways.miriam": {"id": "bioregistry.pharmgkb.pathways.miriam", "sameas": "bioregistry.pharmgkb.pathways", "homepage": "http://www.pharmgkb.org/", "prefix": "pharmgkb.pathways", "name": "PharmGKB Pathways", "uri_format": "http://www.pharmgkb.org/pathway/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pharmgkb.pathways.n2t": {"id": "bioregistry.pharmgkb.pathways.n2t", "sameas": "bioregistry.pharmgkb.pathways", "homepage": "http://www.pharmgkb.org/", "prefix": "pharmgkb.pathways", "name": "PharmGKB at Stanford", "uri_format": "http://www.pharmgkb.org/pathway/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pharmgkb.pathways.prefixcommons": {"id": "bioregistry.pharmgkb.pathways.prefixcommons", "sameas": "bioregistry.pharmgkb.pathways", "homepage": null, "prefix": "pharmgkb.pathways", "name": "PharmGKB Pathways", "uri_format": "http://www.pharmgkb.org/pathway/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.pharmgkb.pathways.wikidata": {"id": "bioregistry.pharmgkb.pathways.wikidata", "sameas": "bioregistry.pharmgkb.pathways", "homepage": "https://www.pharmgkb.org/", "prefix": "P7001", "name": "PharmGKB ID", "uri_format": "https://www.pharmgkb.org/accession/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "wikidata"}, "bioregistry.pharmgkb.pathways.biolink": {"id": "bioregistry.pharmgkb.pathways.biolink", "sameas": "bioregistry.pharmgkb.pathways", "homepage": null, "prefix": "PHARMGKB.PATHWAYS", "name": null, "uri_format": "https://www.pharmgkb.org/pathway/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "biolink"}, "bioregistry.pharmgkb.pathways": {"id": "bioregistry.pharmgkb.pathways", "homepage": null, "prefix": "pharmgkb.pathways", "name": "Pathway ID (PharmGKB)", "uri_format": "https://www.pharmgkb.org/pathway/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.pharmvar.prefixcommons": {"id": "bioregistry.pharmvar.prefixcommons", "sameas": "bioregistry.pharmvar", "homepage": "https://www.pharmvar.org", "prefix": "pharmvar", "name": "PharmVar", "uri_format": "https://www.pharmvar.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.pharmvar": {"id": "bioregistry.pharmvar", "homepage": null, "prefix": "pharmvar", "name": "Pharmacogene Variation Consortium", "uri_format": "https://www.pharmvar.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.phenolexplorer.miriam": {"id": "bioregistry.phenolexplorer.miriam", "sameas": "bioregistry.phenolexplorer", "homepage": "http://www.phenol-explorer.eu/foods/", "prefix": "phenolexplorer", "name": "Phenol-Explorer", "uri_format": "http://phenol-explorer.eu/foods/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.phenolexplorer.n2t": {"id": "bioregistry.phenolexplorer.n2t", "sameas": "bioregistry.phenolexplorer", "homepage": "http://www.phenol-explorer.eu/foods/", "prefix": "phenolexplorer", "name": "Phenol-Explorer Database on Phenol content of foods", "uri_format": "http://phenol-explorer.eu/foods/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.phenolexplorer": {"id": "bioregistry.phenolexplorer", "homepage": null, "prefix": "phenolexplorer", "name": "Phenol-Explorer Database on Phenol content of foods", "uri_format": "http://phenol-explorer.eu/foods/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.phosphopoint.kinase.miriam": {"id": "bioregistry.phosphopoint.kinase.miriam", "sameas": "bioregistry.phosphopoint.kinase", "homepage": "http://kinase.bioinformatics.tw/", "prefix": "phosphopoint.kinase", "name": "PhosphoPoint Kinase", "uri_format": "http://kinase.bioinformatics.tw/showall.jsp?type=Kinase&info=Gene&name=$1&drawing=0&sorting=0&kinome=1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.phosphopoint.kinase.n2t": {"id": "bioregistry.phosphopoint.kinase.n2t", "sameas": "bioregistry.phosphopoint.kinase", "homepage": "http://kinase.bioinformatics.tw/", "prefix": "phosphopoint.kinase", "name": "PhosphoPoint Kinase at National Taiwan University", "uri_format": "http://kinase.bioinformatics.tw/showall.jsp?type=Kinase&info=Gene&name=$1&drawing=0&sorting=0&kinome=1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.phosphopoint.kinase": {"id": "bioregistry.phosphopoint.kinase", "homepage": null, "prefix": "phosphopoint.kinase", "name": "PhosphoPoint Kinase at National Taiwan University", "uri_format": "http://kinase.bioinformatics.tw/showall.jsp?type=Kinase&info=Gene&name=$1&drawing=0&sorting=0&kinome=1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.phosphopoint.protein.miriam": {"id": "bioregistry.phosphopoint.protein.miriam", "sameas": "bioregistry.phosphopoint.protein", "homepage": "http://kinase.bioinformatics.tw/", "prefix": "phosphopoint.protein", "name": "PhosphoPoint Phosphoprotein", "uri_format": "http://kinase.bioinformatics.tw/showall.jsp?type=PhosphoProtein&info=Gene&name=$1&drawing=0&sorting=0&kinome=0", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.phosphopoint.protein.n2t": {"id": "bioregistry.phosphopoint.protein.n2t", "sameas": "bioregistry.phosphopoint.protein", "homepage": "http://kinase.bioinformatics.tw/", "prefix": "phosphopoint.protein", "name": "PhosphoPoint Phosphoprotein at National Taiwan University", "uri_format": "http://kinase.bioinformatics.tw/showall.jsp?type=PhosphoProtein&info=Gene&name=$1&drawing=0&sorting=0&kinome=0", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.phosphopoint.protein": {"id": "bioregistry.phosphopoint.protein", "homepage": null, "prefix": "phosphopoint.protein", "name": "PhosphoPoint Phosphoprotein at National Taiwan University", "uri_format": "http://kinase.bioinformatics.tw/showall.jsp?type=PhosphoProtein&info=Gene&name=$1&drawing=0&sorting=0&kinome=0", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.phosphosite.protein.miriam": {"id": "bioregistry.phosphosite.protein.miriam", "sameas": "bioregistry.phosphosite.protein", "homepage": "http://www.phosphosite.org/homeAction.do", "prefix": "phosphosite.protein", "name": "PhosphoSite Protein", "uri_format": "http://www.phosphosite.org/proteinAction.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.phosphosite.protein.n2t": {"id": "bioregistry.phosphosite.protein.n2t", "sameas": "bioregistry.phosphosite.protein", "homepage": "http://www.phosphosite.org/homeAction.do", "prefix": "phosphosite.protein", "name": "PhosphoSite", "uri_format": "http://www.phosphosite.org/proteinAction.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.phosphosite.protein": {"id": "bioregistry.phosphosite.protein", "homepage": null, "prefix": "phosphosite.protein", "name": "PhosphoSite Protein", "uri_format": "http://www.phosphosite.org/proteinAction.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.phosphosite.residue.miriam": {"id": "bioregistry.phosphosite.residue.miriam", "sameas": "bioregistry.phosphosite.residue", "homepage": "http://www.phosphosite.org/homeAction.do", "prefix": "phosphosite.residue", "name": "PhosphoSite Residue", "uri_format": "http://www.phosphosite.org/siteAction.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.phosphosite.residue.n2t": {"id": "bioregistry.phosphosite.residue.n2t", "sameas": "bioregistry.phosphosite.residue", "homepage": "http://www.phosphosite.org/homeAction.do", "prefix": "phosphosite.residue", "name": "PhosphoSite Residue", "uri_format": "http://www.phosphosite.org/siteAction.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.phosphosite.residue": {"id": "bioregistry.phosphosite.residue", "homepage": null, "prefix": "phosphosite.residue", "name": "PhosphoSite Residue", "uri_format": "http://www.phosphosite.org/siteAction.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.phylomedb.miriam": {"id": "bioregistry.phylomedb.miriam", "sameas": "bioregistry.phylomedb", "homepage": "http://phylomedb.org/", "prefix": "phylomedb", "name": "PhylomeDB", "uri_format": "http://phylomedb.org/?seqid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.phylomedb.n2t": {"id": "bioregistry.phylomedb.n2t", "sameas": "bioregistry.phylomedb", "homepage": "http://phylomedb.org/", "prefix": "phylomedb", "name": "PhylomeDB at Centro de Investigación Príncipe Felipe", "uri_format": "http://phylomedb.org/?seqid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.phylomedb.prefixcommons": {"id": "bioregistry.phylomedb.prefixcommons", "sameas": "bioregistry.phylomedb", "homepage": "http://phylomedb.bioinfo.cipf.es", "prefix": "phylomedb", "name": "Database for complete collections of gene phylogenies", "uri_format": "http://phylomedb.org/?seqid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.phylomedb.uniprot": {"id": "bioregistry.phylomedb.uniprot", "sameas": "bioregistry.phylomedb", "homepage": "http://phylomedb.org/", "prefix": "DB-0144", "name": "Database for complete collections of gene phylogenies", "uri_format": "http://phylomedb.org/search_phylome/?seqid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "uniprot"}, "bioregistry.phylomedb": {"id": "bioregistry.phylomedb", "homepage": null, "prefix": "phylomedb", "name": "PhylomeDB at Centro de Investigación Príncipe Felipe", "uri_format": "http://phylomedb.org/search_phylome/?seqid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.phytozome.locus.miriam": {"id": "bioregistry.phytozome.locus.miriam", "sameas": "bioregistry.phytozome.locus", "homepage": "http://www.phytozome.net/", "prefix": "phytozome.locus", "name": "Phytozome Locus", "uri_format": "http://www.phytozome.net/genePage.php?crown&method=0&search=1&detail=1&searchText=locusname:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.phytozome.locus.n2t": {"id": "bioregistry.phytozome.locus.n2t", "sameas": "bioregistry.phytozome.locus", "homepage": "http://www.phytozome.net/", "prefix": "phytozome.locus", "name": "Phytozome Locus at Joint Genome Institute", "uri_format": "http://www.phytozome.net/genePage.php?crown&method=0&search=1&detail=1&searchText=locusname:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.phytozome.locus": {"id": "bioregistry.phytozome.locus", "homepage": null, "prefix": "phytozome.locus", "name": "Phytozome Locus at Joint Genome Institute", "uri_format": "http://www.phytozome.net/genePage.php?crown&method=0&search=1&detail=1&searchText=locusname:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pibase.prefixcommons": {"id": "bioregistry.pibase.prefixcommons", "sameas": "bioregistry.pibase", "homepage": "http://salilab.org/pibase", "prefix": "pibase", "name": "PIBASE: a database of structurally defined protein interfaces", "uri_format": "http://modbase.compbio.ucsf.edu/pibase-cgi/get_details.pl?object_type=complexes&bdp_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pibase": {"id": "bioregistry.pibase", "homepage": null, "prefix": "pibase", "name": "PIBASE: a database of structurally defined protein interfaces", "uri_format": "http://modbase.compbio.ucsf.edu/pibase-cgi/get_details.pl?object_type=complexes&bdp_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.pid.pathway.miriam": {"id": "bioregistry.pid.pathway.miriam", "sameas": "bioregistry.pid.pathway", "homepage": "http://pid.nci.nih.gov/", "prefix": "pid.pathway", "name": "NCI Pathway Interaction Database: Pathway", "uri_format": "http://pid.nci.nih.gov/search/pathway_landing.shtml?what=graphic&jpg=on&pathway_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pid.pathway.n2t": {"id": "bioregistry.pid.pathway.n2t", "sameas": "bioregistry.pid.pathway", "homepage": "http://pid.nci.nih.gov/", "prefix": "pid.pathway", "name": "NCI Pathway Interaction Database (Pathway)", "uri_format": "http://pid.nci.nih.gov/search/pathway_landing.shtml?what=graphic&jpg=on&pathway_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pid.pathway.prefixcommons": {"id": "bioregistry.pid.pathway.prefixcommons", "sameas": "bioregistry.pid.pathway", "homepage": "http://pid.nci.nih.gov/", "prefix": "pid", "name": "Pathway Interaction Database", "uri_format": "http://pid.nci.nih.gov/search/pathway_landing.shtml?what=graphic&jpg=on&pathway_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pid.pathway": {"id": "bioregistry.pid.pathway", "homepage": null, "prefix": "pid.pathway", "name": "NCI Pathway Interaction Database (Pathway)", "uri_format": "http://pid.nci.nih.gov/search/pathway_landing.shtml?what=graphic&jpg=on&pathway_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.pigqtldb.miriam": {"id": "bioregistry.pigqtldb.miriam", "sameas": "bioregistry.pigqtldb", "homepage": "https://www.animalgenome.org/QTLdb", "prefix": "pigqtldb", "name": "Animal Genome Pig QTL", "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pigqtldb.n2t": {"id": "bioregistry.pigqtldb.n2t", "sameas": "bioregistry.pigqtldb", "homepage": "http://www.animalgenome.org/cgi-bin/QTLdb/SS/index", "prefix": "pigqtldb", "name": "Animal QTL Pig at Iowa State University", "uri_format": "http://www.animalgenome.org/cgi-bin/QTLdb/SS/qdetails?QTL_ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pigqtldb.prefixcommons": {"id": "bioregistry.pigqtldb.prefixcommons", "sameas": "bioregistry.pigqtldb", "homepage": "http://www.animalgenome.org/cgi-bin/QTLdb/SS/index", "prefix": "pigqtldb", "name": "Pig Quantitative Trait Locus database", "uri_format": "http://www.animalgenome.org/cgi-bin/QTLdb/SS/qdetails?QTL_ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.pigqtldb": {"id": "bioregistry.pigqtldb", "homepage": null, "prefix": "pigqtldb", "name": "Animal QTL Pig at Iowa State University", "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.pina.miriam": {"id": "bioregistry.pina.miriam", "sameas": "bioregistry.pina", "homepage": "http://cbg.garvan.unsw.edu.au/pina/", "prefix": "pina", "name": "PINA", "uri_format": "http://cbg.garvan.unsw.edu.au/pina/interactome.oneP.do?ac=$1&showExtend=null", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pina.n2t": {"id": "bioregistry.pina.n2t", "sameas": "bioregistry.pina", "homepage": "http://cbg.garvan.unsw.edu.au/pina/", "prefix": "pina", "name": "Protein Interaction Network Analysis (PINA) at Garvan Institute", "uri_format": "http://cbg.garvan.unsw.edu.au/pina/interactome.oneP.do?ac=$1&showExtend=null", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pina": {"id": "bioregistry.pina", "homepage": null, "prefix": "pina", "name": "Protein Interaction Network Analysis (PINA) at Garvan Institute", "uri_format": "http://cbg.garvan.unsw.edu.au/pina/interactome.oneP.do?ac=$1&showExtend=null", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.piroplasma.miriam": {"id": "bioregistry.piroplasma.miriam", "sameas": "bioregistry.piroplasma", "homepage": "http://piroplasmadb.org/", "prefix": "piroplasma", "name": "PiroplasmaDB", "uri_format": "http://piroplasmadb.org/piro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.piroplasma.n2t": {"id": "bioregistry.piroplasma.n2t", "sameas": "bioregistry.piroplasma", "homepage": "http://piroplasmadb.org/", "prefix": "piroplasma", "name": "PiroplasmaBD at EuPathDB", "uri_format": "http://piroplasmadb.org/piro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.piroplasma": {"id": "bioregistry.piroplasma", "homepage": null, "prefix": "piroplasma", "name": "PiroplasmaBD at EuPathDB", "uri_format": "http://piroplasmadb.org/piro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pirsf.miriam": {"id": "bioregistry.pirsf.miriam", "sameas": "bioregistry.pirsf", "homepage": "https://pir.georgetown.edu/", "prefix": "pirsf", "name": "PIRSF", "uri_format": "https://pir.georgetown.edu/cgi-bin/ipcSF?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pirsf.n2t": {"id": "bioregistry.pirsf.n2t", "sameas": "bioregistry.pirsf", "homepage": "https://pir.georgetown.edu/", "prefix": "pirsf", "name": "PIRSF", "uri_format": "https://pir.georgetown.edu/cgi-bin/ipcSF?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pirsf.prefixcommons": {"id": "bioregistry.pirsf.prefixcommons", "sameas": "bioregistry.pirsf", "homepage": "http://pir.georgetown.edu/pirsf/", "prefix": "pirsf", "name": "PIRSF; a whole-protein classification database", "uri_format": "http://pir.georgetown.edu/cgi-bin/ipcSF?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pirsf.go": {"id": "bioregistry.pirsf.go", "sameas": "bioregistry.pirsf", "homepage": "http://pir.georgetown.edu/pirsf/", "prefix": "PIRSF", "name": "PIR Superfamily Classification System", "uri_format": "http://pir.georgetown.edu/cgi-bin/ipcSF?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.pirsf.uniprot": {"id": "bioregistry.pirsf.uniprot", "sameas": "bioregistry.pirsf", "homepage": "https://proteininformationresource.org/pirwww/dbinfo/pirsf.shtml", "prefix": "DB-0079", "name": "PIRSF; a whole-protein classification database", "uri_format": "https://proteininformationresource.org/cgi-bin/ipcSF?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.pirsf": {"id": "bioregistry.pirsf", "homepage": null, "prefix": "pirsf", "name": "PIRSF; a whole-protein classification database", "uri_format": "https://proteininformationresource.org/cgi-bin/ipcSF?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.pkdb.miriam": {"id": "bioregistry.pkdb.miriam", "sameas": "bioregistry.pkdb", "homepage": "https://www.hu-berlin.de/?set_language=en&cl=en", "prefix": "pkdb", "name": "PK-DB", "uri_format": "https://pk-db.com/data/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pkdb": {"id": "bioregistry.pkdb", "homepage": null, "prefix": "pkdb", "name": "Pharmacokinetics Database", "uri_format": "https://pk-db.com/data/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.planttfdb.miriam": {"id": "bioregistry.planttfdb.miriam", "sameas": "bioregistry.planttfdb", "homepage": "http://planttfdb.cbi.pku.edu.cn", "prefix": "planttfdb", "name": "Plant Transcription Factor Database", "uri_format": "http://planttfdb.cbi.pku.edu.cn/tf.php?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.planttfdb.n2t": {"id": "bioregistry.planttfdb.n2t", "sameas": "bioregistry.planttfdb", "homepage": "http://planttfdb.cbi.pku.edu.cn", "prefix": "planttfdb", "name": "PlantTFDB at Peking University", "uri_format": "http://planttfdb.cbi.pku.edu.cn/tf.php?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.planttfdb.prefixcommons": {"id": "bioregistry.planttfdb.prefixcommons", "sameas": "bioregistry.planttfdb", "homepage": "http://planttfdb.cbi.pku.edu.cn", "prefix": "planttfdb", "name": "Plant Transcription Factor Database", "uri_format": "http://planttfdb.cbi.pku.edu.cn/tf.php?sp=[?species_name]&did=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.planttfdb": {"id": "bioregistry.planttfdb", "homepage": null, "prefix": "planttfdb", "name": "Plant Transcription Factor Database", "uri_format": "http://planttfdb.cbi.pku.edu.cn/tf.php?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.plasmodb.miriam": {"id": "bioregistry.plasmodb.miriam", "sameas": "bioregistry.plasmodb", "homepage": "http://plasmodb.org/plasmo/", "prefix": "plasmodb", "name": "PlasmoDB", "uri_format": "http://plasmodb.org/plasmo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.plasmodb.n2t": {"id": "bioregistry.plasmodb.n2t", "sameas": "bioregistry.plasmodb", "homepage": "http://plasmodb.org/plasmo/", "prefix": "plasmodb", "name": "PlasmoDB at EuPathDB", "uri_format": "http://plasmodb.org/plasmo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.plasmodb.prefixcommons": {"id": "bioregistry.plasmodb.prefixcommons", "sameas": "bioregistry.plasmodb", "homepage": "http://PlasmoDB.org", "prefix": "plasmodb", "name": "PlasmoDB", "uri_format": "http://plasmodb.org/plasmo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1&project_id=PlasmoDB", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.plasmodb.go": {"id": "bioregistry.plasmodb.go", "sameas": "bioregistry.plasmodb", "homepage": "https://plasmodb.org", "prefix": "PlasmoDB", "name": "PlasmoDB", "uri_format": "https://plasmodb.org/plasmo/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.plasmodb": {"id": "bioregistry.plasmodb", "homepage": null, "prefix": "plasmodb", "name": "Plasmodium Genome Resources", "uri_format": "https://plasmodb.org/plasmo/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.pmap.cutdb.miriam": {"id": "bioregistry.pmap.cutdb.miriam", "sameas": "bioregistry.pmap.cutdb", "homepage": "http://cutdb.burnham.org", "prefix": "pmap.cutdb", "name": "CutDB", "uri_format": "http://cutdb.burnham.org/relation/show/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pmap.cutdb.n2t": {"id": "bioregistry.pmap.cutdb.n2t", "sameas": "bioregistry.pmap.cutdb", "homepage": "http://cutdb.burnham.org", "prefix": "pmap.cutdb", "name": "CutDB at The Burnham Institute for Medical Research", "uri_format": "http://cutdb.burnham.org/relation/show/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pmap.cutdb.prefixcommons": {"id": "bioregistry.pmap.cutdb.prefixcommons", "sameas": "bioregistry.pmap.cutdb", "homepage": "http://www.proteolysis.org/", "prefix": "pmap.cutdb", "name": "CutDB - Proteolytic event database", "uri_format": "http://www.proteolysis.org/proteases/m_summarypg/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pmap.cutdb": {"id": "bioregistry.pmap.cutdb", "homepage": null, "prefix": "pmap.cutdb", "name": "CutDB at The Burnham Institute for Medical Research", "uri_format": "http://www.proteolysis.org/proteases/m_summarypg/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.pmap.substratedb.miriam": {"id": "bioregistry.pmap.substratedb.miriam", "sameas": "bioregistry.pmap.substratedb", "homepage": "http://substrate.burnham.org/", "prefix": "pmap.substratedb", "name": "SubstrateDB", "uri_format": "http://substrate.burnham.org/protein/annotation/$1/html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pmap.substratedb.n2t": {"id": "bioregistry.pmap.substratedb.n2t", "sameas": "bioregistry.pmap.substratedb", "homepage": "http://substrate.burnham.org/", "prefix": "pmap.substratedb", "name": "SubstrateDB at The Burnham Institute for Medical Research", "uri_format": "http://substrate.burnham.org/protein/annotation/$1/html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pmap.substratedb.prefixcommons": {"id": "bioregistry.pmap.substratedb.prefixcommons", "sameas": "bioregistry.pmap.substratedb", "homepage": null, "prefix": "pmap.substratedb", "name": "SubstrateDB - Protease substrates", "uri_format": "http://substrate.burnham.org/protein/annotation/$1/html", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pmap.substratedb": {"id": "bioregistry.pmap.substratedb", "homepage": null, "prefix": "pmap.substratedb", "name": "SubstrateDB at The Burnham Institute for Medical Research", "uri_format": "http://substrate.burnham.org/protein/annotation/$1/html", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.pmc.miriam": {"id": "bioregistry.pmc.miriam", "sameas": "bioregistry.pmc", "homepage": "http://europepmc.org/", "prefix": "pmc", "name": "PMC International", "uri_format": "http://europepmc.org/articles/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pmc.n2t": {"id": "bioregistry.pmc.n2t", "sameas": "bioregistry.pmc", "homepage": "http://europepmc.org/", "prefix": "pmc", "name": "Europe PMC", "uri_format": "http://europepmc.org/articles/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pmc.prefixcommons": {"id": "bioregistry.pmc.prefixcommons", "sameas": "bioregistry.pmc", "homepage": "http://www.pubmedcentral.nih.gov/", "prefix": "pmc", "name": "Pubmed Central", "uri_format": "http://www.ncbi.nlm.nih.gov/pmc/articles/$1/?tool=pmcentrez", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "prefixcommons"}, "bioregistry.pmc.wikidata": {"id": "bioregistry.pmc.wikidata", "sameas": "bioregistry.pmc", "homepage": "https://www.ncbi.nlm.nih.gov/pmc/", "prefix": "P932", "name": "PMCID", "uri_format": "http://europepmc.org/articles/PMC$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "wikidata"}, "bioregistry.pmc.go": {"id": "bioregistry.pmc.go", "sameas": "bioregistry.pmc", "homepage": "https://www.ncbi.nlm.nih.gov/pmc/", "prefix": "PMCID", "name": "Pubmed Central", "uri_format": "https://www.ncbi.nlm.nih.gov/pmc/articles/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "go"}, "bioregistry.pmc.biolink": {"id": "bioregistry.pmc.biolink", "sameas": "bioregistry.pmc", "homepage": null, "prefix": "PMC", "name": null, "uri_format": "http://europepmc.org/articles/PMC$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "biolink"}, "bioregistry.pmc.biocontext": {"id": "bioregistry.pmc.biocontext", "sameas": "bioregistry.pmc", "homepage": null, "prefix": "PMCID", "name": null, "uri_format": "http://www.ncbi.nlm.nih.gov/pmc/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "biocontext"}, "bioregistry.pmc": {"id": "bioregistry.pmc", "homepage": null, "prefix": "pmc", "name": "PMC International", "uri_format": "https://www.ncbi.nlm.nih.gov/pmc/articles/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "bioregistry"}, "bioregistry.pmdb.miriam": {"id": "bioregistry.pmdb.miriam", "sameas": "bioregistry.pmdb", "homepage": "https://bioinformatics.cineca.it/PMDB/", "prefix": "pmdb", "name": "Protein Model Database", "uri_format": "https://bioinformatics.cineca.it/PMDB/user//search.php?idsearch=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pmdb.n2t": {"id": "bioregistry.pmdb.n2t", "sameas": "bioregistry.pmdb", "homepage": "https://bioinformatics.cineca.it/PMDB/", "prefix": "pmdb", "name": "Protein Model Database at University of Rome", "uri_format": "https://bioinformatics.cineca.it/PMDB/user//search.php?idsearch=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pmdb.prefixcommons": {"id": "bioregistry.pmdb.prefixcommons", "sameas": "bioregistry.pmdb", "homepage": "http://www.caspur.it/PMDB/", "prefix": "pmdb", "name": "Protein Model Database", "uri_format": "http://mi.caspur.it/PMDB/user/search.php?idsearch=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pmdb": {"id": "bioregistry.pmdb", "homepage": null, "prefix": "pmdb", "name": "Protein Model Database at University of Rome", "uri_format": "https://bioinformatics.cineca.it/PMDB/user//search.php?idsearch=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.pmp.n2t": {"id": "bioregistry.pmp.n2t", "sameas": "bioregistry.pmp", "homepage": "http://www.proteinmodelportal.org/", "prefix": "pmp", "name": "PMP at University of Basel", "uri_format": "http://www.proteinmodelportal.org/query/uniprot/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pmp.prefixcommons": {"id": "bioregistry.pmp.prefixcommons", "sameas": "bioregistry.pmp", "homepage": "http://www.proteinmodelportal.org/", "prefix": "pmp", "name": "Protein Model Portal", "uri_format": "http://www.proteinmodelportal.org/query/uniprot/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pmp": {"id": "bioregistry.pmp", "homepage": null, "prefix": "pmp", "name": "PMP at University of Basel", "uri_format": "http://www.proteinmodelportal.org/query/uniprot/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.pmr.miriam": {"id": "bioregistry.pmr.miriam", "sameas": "bioregistry.pmr", "homepage": "https://www.auckland.ac.nz/en.html", "prefix": "pmr", "name": "Physiome Model Repository", "uri_format": "https://models.physiomeproject.org/exposure/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pmr": {"id": "bioregistry.pmr", "homepage": null, "prefix": "pmr", "name": "Physical Medicine and Rehabilitation", "uri_format": "https://models.physiomeproject.org/exposure/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pmr.workspace.miriam": {"id": "bioregistry.pmr.workspace.miriam", "sameas": "bioregistry.pmr.workspace", "homepage": "https://www.auckland.ac.nz/en.html", "prefix": "pmr.workspace", "name": "Physiome Model Repository workspace", "uri_format": "https://models.physiomeproject.org/workspace/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pmr.workspace": {"id": "bioregistry.pmr.workspace", "homepage": null, "prefix": "pmr.workspace", "name": "Physiome Model Repository workspace", "uri_format": "https://models.physiomeproject.org/workspace/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.po.miriam": {"id": "bioregistry.po.miriam", "sameas": "bioregistry.po", "homepage": "http://www.plantontology.org/", "prefix": "po", "name": "Plant Ontology", "uri_format": "http://www.plantontology.org/amigo/go.cgi?view=details&query=PO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.po.n2t": {"id": "bioregistry.po.n2t", "sameas": "bioregistry.po", "homepage": "http://bioportal.bioontology.org/ontologies/PO", "prefix": "po", "name": "Plant Ontology through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/PO/PO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.po.prefixcommons": {"id": "bioregistry.po.prefixcommons", "sameas": "bioregistry.po", "homepage": "http://www.plantontology.org/", "prefix": "po", "name": "Plant Ontology", "uri_format": "http://www.plantontology.org/amigo/go.cgi?view=details&search_constraint=terms&depth=0&query=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.po": {"id": "bioregistry.po", "homepage": null, "prefix": "po", "name": "Plant Ontology through BioPortal", "uri_format": "http://www.plantontology.org/amigo/go.cgi?view=details&search_constraint=terms&depth=0&query=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pocketome.miriam": {"id": "bioregistry.pocketome.miriam", "sameas": "bioregistry.pocketome", "homepage": "http://www.pocketome.org/sfSearch.cgi?act=browseall", "prefix": "pocketome", "name": "Pocketome", "uri_format": "http://www.pocketome.org/files/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pocketome.n2t": {"id": "bioregistry.pocketome.n2t", "sameas": "bioregistry.pocketome", "homepage": "http://www.pocketome.org/sfSearch.cgi?act=browseall", "prefix": "pocketome", "name": "Pocketome at UCSD Skaggs School", "uri_format": "http://www.pocketome.org/files/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pocketome": {"id": "bioregistry.pocketome", "homepage": null, "prefix": "pocketome", "name": "Pocketome: an encyclopedia of small-molecule binding sites in 4D", "uri_format": "http://www.pocketome.org/files/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.polbase.miriam": {"id": "bioregistry.polbase.miriam", "sameas": "bioregistry.polbase", "homepage": "http://polbase.neb.com/", "prefix": "polbase", "name": "PolBase", "uri_format": "https://polbase.neb.com/polymerases/$1#sequences", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.polbase.n2t": {"id": "bioregistry.polbase.n2t", "sameas": "bioregistry.polbase", "homepage": "http://polbase.neb.com/", "prefix": "polbase", "name": "PolBase at New England BioLabs", "uri_format": "https://polbase.neb.com/polymerases/$1#sequences", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.polbase": {"id": "bioregistry.polbase", "homepage": null, "prefix": "polbase", "name": "PolBase at New England BioLabs", "uri_format": "https://polbase.neb.com/polymerases/$1#sequences", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pombase.miriam": {"id": "bioregistry.pombase.miriam", "sameas": "bioregistry.pombase", "homepage": "https://www.pombase.org/", "prefix": "pombase", "name": "PomBase", "uri_format": "https://www.pombase.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pombase.n2t": {"id": "bioregistry.pombase.n2t", "sameas": "bioregistry.pombase", "homepage": "http://www.pombase.org/", "prefix": "pombase", "name": "PomBase at University of Cambridge", "uri_format": "http://www.pombase.org/spombe/result/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pombase.wikidata": {"id": "bioregistry.pombase.wikidata", "sameas": "bioregistry.pombase", "homepage": null, "prefix": "P6245", "name": "PomBase systematic ID", "uri_format": "https://www.pombase.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.pombase.go": {"id": "bioregistry.pombase.go", "sameas": "bioregistry.pombase", "homepage": "https://www.pombase.org/", "prefix": "PomBase", "name": "PomBase", "uri_format": "https://www.pombase.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.pombase.uniprot": {"id": "bioregistry.pombase.uniprot", "sameas": "bioregistry.pombase", "homepage": "https://www.pombase.org/", "prefix": "DB-0031", "name": "Schizosaccharomyces pombe database", "uri_format": "https://www.pombase.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.pombase.biolink": {"id": "bioregistry.pombase.biolink", "sameas": "bioregistry.pombase", "homepage": null, "prefix": "PomBase", "name": null, "uri_format": "https://www.pombase.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.pombase.biocontext": {"id": "bioregistry.pombase.biocontext", "sameas": "bioregistry.pombase", "homepage": null, "prefix": "PomBase", "name": null, "uri_format": "https://www.pombase.org/spombe/result/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.pombase": {"id": "bioregistry.pombase", "homepage": null, "prefix": "pombase", "name": "Database of Structural and Functional Data for Schizosaccaromyces pombe", "uri_format": "https://www.pombase.org/spombe/result/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pr.miriam": {"id": "bioregistry.pr.miriam", "sameas": "bioregistry.pr", "homepage": "https://proconsortium.org/", "prefix": "pr", "name": "Protein Ontology", "uri_format": "https://proconsortium.org/app/entry/PR:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pr.n2t": {"id": "bioregistry.pr.n2t", "sameas": "bioregistry.pr", "homepage": "https://proconsortium.org/", "prefix": "pr", "name": "Protein Ontology at Georgetown", "uri_format": "https://proconsortium.org/app/entry/PR:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pr.prefixcommons": {"id": "bioregistry.pr.prefixcommons", "sameas": "bioregistry.pr", "homepage": "http://pir.georgetown.edu/pro/", "prefix": "pr", "name": "PRotein Ontology (PRO)", "uri_format": "http://pir.georgetown.edu/cgi-bin/pro/entry_pro?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pr.wikidata": {"id": "bioregistry.pr.wikidata", "sameas": "bioregistry.pr", "homepage": "https://pir.georgetown.edu/pro/pro.shtml", "prefix": "P4926", "name": "PRotein Ontology ID", "uri_format": "https://proconsortium.org/app/entry/$1/", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "wikidata"}, "bioregistry.pr.go": {"id": "bioregistry.pr.go", "sameas": "bioregistry.pr", "homepage": "https://proconsortium.org/", "prefix": "PR", "name": "Protein Ontology", "uri_format": "https://proconsortium.org/app/entry/PR_$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.pr.uniprot": {"id": "bioregistry.pr.uniprot", "sameas": "bioregistry.pr", "homepage": "https://proconsortium.org/", "prefix": "DB-0181", "name": "Protein Ontology", "uri_format": "https://proconsortium.org/app/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.pr": {"id": "bioregistry.pr", "homepage": null, "prefix": "pr", "name": "Protein Ontology at Georgetown", "uri_format": "https://proconsortium.org/app/entry/PR_$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.pride.miriam": {"id": "bioregistry.pride.miriam", "sameas": "bioregistry.pride", "homepage": "https://www.ebi.ac.uk/pride/", "prefix": "pride", "name": "PRIDE", "uri_format": "https://www.ebi.ac.uk/pride/archive/assays/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pride.n2t": {"id": "bioregistry.pride.n2t", "sameas": "bioregistry.pride", "homepage": "https://www.ebi.ac.uk/pride/", "prefix": "pride", "name": "PRIDE at EBI", "uri_format": "https://www.ebi.ac.uk/pride/archive/assays/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pride.prefixcommons": {"id": "bioregistry.pride.prefixcommons", "sameas": "bioregistry.pride", "homepage": "http://www.ebi.ac.uk/pride/", "prefix": "pride", "name": "PRoteomics IDEntifications database", "uri_format": "http://www.ebi.ac.uk/pride/experimentLink.do?experimentAccessionNumber=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pride.uniprot": {"id": "bioregistry.pride.uniprot", "sameas": "bioregistry.pride", "homepage": "https://www.ebi.ac.uk/pride", "prefix": "DB-0130", "name": "PRoteomics IDEntifications database", "uri_format": "https://www.ebi.ac.uk/pride/searchSummary.do?queryTypeSelected=identification%20accession%20number&identificationAccessionNumber=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.pride": {"id": "bioregistry.pride", "homepage": null, "prefix": "pride", "name": "PRoteomics IDEntifications database", "uri_format": "https://www.ebi.ac.uk/pride/searchSummary.do?queryTypeSelected=identification%20accession%20number&identificationAccessionNumber=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.pride.project.miriam": {"id": "bioregistry.pride.project.miriam", "sameas": "bioregistry.pride.project", "homepage": "https://www.ebi.ac.uk/pride/", "prefix": "pride.project", "name": "PRIDE Project", "uri_format": "https://www.ebi.ac.uk/pride/archive/projects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pride.project.n2t": {"id": "bioregistry.pride.project.n2t", "sameas": "bioregistry.pride.project", "homepage": "https://www.ebi.ac.uk/pride/", "prefix": "pride.project", "name": "PRIDE Project at EBI", "uri_format": "https://www.ebi.ac.uk/pride/archive/projects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pride.project.cellosaurus": {"id": "bioregistry.pride.project.cellosaurus", "sameas": "bioregistry.pride.project", "homepage": "https://www.ebi.ac.uk/pride/archive/", "prefix": "PRIDE", "name": "PRoteomics IDEntifications archive", "uri_format": "https://www.ebi.ac.uk/pride/archive/projects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.pride.project": {"id": "bioregistry.pride.project", "homepage": null, "prefix": "pride.project", "name": "PRoteomics IDEntifications archive", "uri_format": "https://www.ebi.ac.uk/pride/archive/projects/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.prints.miriam": {"id": "bioregistry.prints.miriam", "sameas": "bioregistry.prints", "homepage": "http://www.bioinf.manchester.ac.uk/dbbrowser/sprint/", "prefix": "prints", "name": "PRINTS", "uri_format": "http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?prints_accn=$1&display_opts=Prints&category=None&queryform=false®expr=off", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.prints.n2t": {"id": "bioregistry.prints.n2t", "sameas": "bioregistry.prints", "homepage": "http://www.bioinf.manchester.ac.uk/dbbrowser/sprint/", "prefix": "prints", "name": "PRINTS through SPRINT", "uri_format": "http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?prints_accn=$1&display_opts=Prints&category=None&queryform=false®expr=off", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.prints.prefixcommons": {"id": "bioregistry.prints.prefixcommons", "sameas": "bioregistry.prints", "homepage": "http://www.bioinf.manchester.ac.uk/dbbrowser/sprint/", "prefix": "sprint", "name": "SPRINT", "uri_format": "http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?prints_accn=$1&display_opts=Prints&category=None&queryform=false®expr=off", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.prints.go": {"id": "bioregistry.prints.go", "sameas": "bioregistry.prints", "homepage": "http://www.bioinf.manchester.ac.uk/dbbrowser/PRINTS/", "prefix": "PRINTS", "name": "PRINTS compendium of protein fingerprints", "uri_format": "http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?display_opts=Prints&category=None&queryform=false®expr=off&prints_accn=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.prints.uniprot": {"id": "bioregistry.prints.uniprot", "sameas": "bioregistry.prints", "homepage": "http://www.bioinf.manchester.ac.uk/dbbrowser/PRINTS/", "prefix": "DB-0082", "name": "Protein Motif fingerprint database; a protein domain database", "uri_format": "http://umber.sbs.man.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?display_opts=Prints&category=None&queryform=false&prints_accn=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.prints": {"id": "bioregistry.prints", "homepage": null, "prefix": "prints", "name": "Protein Motif fingerprint database; a protein domain database", "uri_format": "http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?prints_accn=$1&display_opts=Prints&category=None&queryform=false®expr=off", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.probesanddrugs.wikidata": {"id": "bioregistry.probesanddrugs.wikidata", "sameas": "bioregistry.probesanddrugs", "homepage": "https://www.probes-drugs.org", "prefix": "P11199", "name": "Probes And Drugs ID", "uri_format": "https://www.probes-drugs.org/compound/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.probesanddrugs": {"id": "bioregistry.probesanddrugs", "homepage": "https://www.probes-drugs.org", "prefix": "probesanddrugs", "name": "Probes And Drugs ID", "uri_format": "https://www.probes-drugs.org/compound/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.probonto.miriam": {"id": "bioregistry.probonto.miriam", "sameas": "bioregistry.probonto", "homepage": "https://www.ebi.ac.uk/ols/ontologies/probonto", "prefix": "probonto", "name": "ProbOnto", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/probonto/terms?short_form=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.probonto.n2t": {"id": "bioregistry.probonto.n2t", "sameas": "bioregistry.probonto", "homepage": "https://www.ebi.ac.uk/ols/ontologies/probonto", "prefix": "probonto", "name": "ProbOnto through OLS", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/probonto/terms?short_form=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.probonto": {"id": "bioregistry.probonto", "homepage": null, "prefix": "probonto", "name": "Ontology and Knowledge Base of Probability Distributions", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/probonto/terms?short_form=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.prodom.miriam": {"id": "bioregistry.prodom.miriam", "sameas": "bioregistry.prodom", "homepage": "http://prodom.prabi.fr/prodom/current/html/home.php", "prefix": "prodom", "name": "ProDom", "uri_format": "http://prodom.prabi.fr/prodom/current/cgi-bin/request.pl?question=DBEN&query=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.prodom.n2t": {"id": "bioregistry.prodom.n2t", "sameas": "bioregistry.prodom", "homepage": "http://prodom.prabi.fr/prodom/current/html/home.php", "prefix": "prodom", "name": "ProDom Protein Domain Database", "uri_format": "http://prodom.prabi.fr/prodom/current/cgi-bin/request.pl?question=DBEN&query=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.prodom.prefixcommons": {"id": "bioregistry.prodom.prefixcommons", "sameas": "bioregistry.prodom", "homepage": "http://prodom.prabi.fr/", "prefix": "prodom", "name": "ProDom; a protein domain database", "uri_format": "http://prodom.prabi.fr/prodom/current/cgi-bin/request.pl?question=DBEN&query=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.prodom": {"id": "bioregistry.prodom", "homepage": null, "prefix": "prodom", "name": "ProDom; a protein domain database", "uri_format": "http://prodom.prabi.fr/prodom/current/cgi-bin/request.pl?question=DBEN&query=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.proglyc.miriam": {"id": "bioregistry.proglyc.miriam", "sameas": "bioregistry.proglyc", "homepage": "http://www.proglycprot.org/", "prefix": "proglyc", "name": "ProGlycProt", "uri_format": "http://www.proglycprot.org/detail.aspx?ProId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.proglyc.n2t": {"id": "bioregistry.proglyc.n2t", "sameas": "bioregistry.proglyc", "homepage": "http://www.proglycprot.org/", "prefix": "proglyc", "name": "ProGlycProt at IMT", "uri_format": "http://www.proglycprot.org/detail.aspx?ProId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.proglyc": {"id": "bioregistry.proglyc", "homepage": null, "prefix": "proglyc", "name": "ProGlycProt at IMT", "uri_format": "http://www.proglycprot.org/detail.aspx?ProId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.prosite.miriam": {"id": "bioregistry.prosite.miriam", "sameas": "bioregistry.prosite", "homepage": "https://www.expasy.org/prosite/", "prefix": "prosite", "name": "PROSITE", "uri_format": "https://prosite.expasy.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.prosite.n2t": {"id": "bioregistry.prosite.n2t", "sameas": "bioregistry.prosite", "homepage": "https://www.expasy.org/prosite/", "prefix": "prosite", "name": "ExPASy PROSITE", "uri_format": "https://prosite.expasy.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.prosite.prefixcommons": {"id": "bioregistry.prosite.prefixcommons", "sameas": "bioregistry.prosite", "homepage": "http://www.expasy.org/prosite", "prefix": "prosite", "name": "PROSITE; a protein domain and family database", "uri_format": "http://www.expasy.org/cgi-bin/nicesite.pl?$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.prosite.wikidata": {"id": "bioregistry.prosite.wikidata", "sameas": "bioregistry.prosite", "homepage": null, "prefix": "P4355", "name": "PROSITE documentation ID", "uri_format": "https://prosite.expasy.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "wikidata"}, "bioregistry.prosite.go": {"id": "bioregistry.prosite.go", "sameas": "bioregistry.prosite", "homepage": "https://prosite.expasy.org/", "prefix": "Prosite", "name": "Prosite database of protein families and domains", "uri_format": "https://prosite.expasy.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.prosite.uniprot": {"id": "bioregistry.prosite.uniprot", "sameas": "bioregistry.prosite", "homepage": "https://prosite.expasy.org/", "prefix": "DB-0084", "name": "PROSITE; a protein domain and family database", "uri_format": "https://prosite.expasy.org/doc/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.prosite": {"id": "bioregistry.prosite", "homepage": null, "prefix": "prosite", "name": "Prosite database of protein families and domains", "uri_format": "https://prosite.expasy.org/doc/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.protclustdb.miriam": {"id": "bioregistry.protclustdb.miriam", "sameas": "bioregistry.protclustdb", "homepage": "https://www.ncbi.nlm.nih.gov/proteinclusters?db=proteinclusters", "prefix": "protclustdb", "name": "ProtClustDB", "uri_format": "https://www.ncbi.nlm.nih.gov/sites/entrez?Db=proteinclusters&Cmd=DetailsSearch&Term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.protclustdb.n2t": {"id": "bioregistry.protclustdb.n2t", "sameas": "bioregistry.protclustdb", "homepage": "https://www.ncbi.nlm.nih.gov/proteinclusters?db=proteinclusters", "prefix": "protclustdb", "name": "ProtClustDB at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/sites/entrez?Db=proteinclusters&Cmd=DetailsSearch&Term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.protclustdb.prefixcommons": {"id": "bioregistry.protclustdb.prefixcommons", "sameas": "bioregistry.protclustdb", "homepage": "http://www.ncbi.nlm.nih.gov/sites/entrez?db=proteinclusters", "prefix": "protclustdb", "name": "ProtClustDB", "uri_format": "http://www.ncbi.nlm.nih.gov/sites/entrez?Db=proteinclusters&Cmd=ShowDetailView&TermToSearch=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.protclustdb": {"id": "bioregistry.protclustdb", "homepage": null, "prefix": "protclustdb", "name": "NCBI Protein Clusters Database", "uri_format": "https://www.ncbi.nlm.nih.gov/sites/entrez?Db=proteinclusters&Cmd=DetailsSearch&Term=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.protcom.prefixcommons": {"id": "bioregistry.protcom.prefixcommons", "sameas": "bioregistry.protcom", "homepage": "http://www.ces.clemson.edu/compbio/protcom", "prefix": "protcom", "name": "Database of protein-protein complexes", "uri_format": "http://www.ces.clemson.edu/compbio/protcom/print_file.cgi?pdbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.protcom": {"id": "bioregistry.protcom", "homepage": null, "prefix": "protcom", "name": "Database of protein-protein complexes", "uri_format": "http://www.ces.clemson.edu/compbio/protcom/print_file.cgi?pdbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.proteomicsdb.peptide.miriam": {"id": "bioregistry.proteomicsdb.peptide.miriam", "sameas": "bioregistry.proteomicsdb.peptide", "homepage": "https://www.proteomicsdb.org/#peptideSearch", "prefix": "proteomicsdb.peptide", "name": "ProteomicsDB Peptide", "uri_format": "https://www.proteomicsdb.org/#human/proteinDetails/$1/peptides/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.proteomicsdb.peptide.n2t": {"id": "bioregistry.proteomicsdb.peptide.n2t", "sameas": "bioregistry.proteomicsdb.peptide", "homepage": "https://www.proteomicsdb.org/#peptideSearch", "prefix": "proteomicsdb.peptide", "name": "Proteomics DB Peptide at Center for Integrated Protein Science", "uri_format": "https://www.proteomicsdb.org/#human/proteinDetails/$1/peptides/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.proteomicsdb.peptide": {"id": "bioregistry.proteomicsdb.peptide", "homepage": null, "prefix": "proteomicsdb.peptide", "name": "Proteomics DB Peptide at Center for Integrated Protein Science", "uri_format": "https://www.proteomicsdb.org/#human/proteinDetails/$1/peptides/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.proteomicsdb.protein.miriam": {"id": "bioregistry.proteomicsdb.protein.miriam", "sameas": "bioregistry.proteomicsdb.protein", "homepage": "https://www.proteomicsdb.org/#human", "prefix": "proteomicsdb.protein", "name": "ProteomicsDB Protein", "uri_format": "https://www.proteomicsdb.org/#human/proteinDetails/$1/summary", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.proteomicsdb.protein.n2t": {"id": "bioregistry.proteomicsdb.protein.n2t", "sameas": "bioregistry.proteomicsdb.protein", "homepage": "https://www.proteomicsdb.org/#human", "prefix": "proteomicsdb.protein", "name": "Proteomics DB Protein at Center for Integrated Protein Science", "uri_format": "https://www.proteomicsdb.org/#human/proteinDetails/$1/summary", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.proteomicsdb.protein": {"id": "bioregistry.proteomicsdb.protein", "homepage": null, "prefix": "proteomicsdb.protein", "name": "Proteomics DB Protein at Center for Integrated Protein Science", "uri_format": "https://www.proteomicsdb.org/#human/proteinDetails/$1/summary", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.protonet.cluster.miriam": {"id": "bioregistry.protonet.cluster.miriam", "sameas": "bioregistry.protonet.cluster", "homepage": "http://www.protonet.cs.huji.ac.il/", "prefix": "protonet.cluster", "name": "ProtoNet Cluster", "uri_format": "http://www.protonet.cs.huji.ac.il/requested/cluster_card.php?cluster=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.protonet.cluster.n2t": {"id": "bioregistry.protonet.cluster.n2t", "sameas": "bioregistry.protonet.cluster", "homepage": "http://www.protonet.cs.huji.ac.il/", "prefix": "protonet.cluster", "name": "ProtoNet at Hebrew University", "uri_format": "http://www.protonet.cs.huji.ac.il/requested/cluster_card.php?cluster=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.protonet.cluster.prefixcommons": {"id": "bioregistry.protonet.cluster.prefixcommons", "sameas": "bioregistry.protonet.cluster", "homepage": null, "prefix": "protonet.cluster", "name": "ProtoNet Cluster", "uri_format": "http://www.protonet.cs.huji.ac.il/requested/cluster_card.php?cluster=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.protonet.cluster": {"id": "bioregistry.protonet.cluster", "homepage": null, "prefix": "protonet.cluster", "name": "ProtoNet at Hebrew University", "uri_format": "http://www.protonet.cs.huji.ac.il/requested/cluster_card.php?cluster=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.protonet.proteincard.miriam": {"id": "bioregistry.protonet.proteincard.miriam", "sameas": "bioregistry.protonet.proteincard", "homepage": "http://www.protonet.cs.huji.ac.il/", "prefix": "protonet.proteincard", "name": "ProtoNet ProteinCard", "uri_format": "http://www.protonet.cs.huji.ac.il/requested/protein_card.php?protein_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.protonet.proteincard.n2t": {"id": "bioregistry.protonet.proteincard.n2t", "sameas": "bioregistry.protonet.proteincard", "homepage": "http://www.protonet.cs.huji.ac.il/", "prefix": "protonet.proteincard", "name": "ProtoNet at Hebrew University", "uri_format": "http://www.protonet.cs.huji.ac.il/requested/protein_card.php?protein_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.protonet.proteincard.prefixcommons": {"id": "bioregistry.protonet.proteincard.prefixcommons", "sameas": "bioregistry.protonet.proteincard", "homepage": null, "prefix": "protonet.proteincard", "name": "ProtoNet ProteinCard", "uri_format": "http://www.protonet.cs.huji.ac.il/requested/protein_card.php?protein_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.protonet.proteincard": {"id": "bioregistry.protonet.proteincard", "homepage": null, "prefix": "protonet.proteincard", "name": "ProtoNet at Hebrew University", "uri_format": "http://www.protonet.cs.huji.ac.il/requested/protein_card.php?protein_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.prov.biolink": {"id": "bioregistry.prov.biolink", "sameas": "bioregistry.prov", "homepage": null, "prefix": "prov", "name": null, "uri_format": "http://www.w3.org/ns/prov#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.prov.biocontext": {"id": "bioregistry.prov.biocontext", "sameas": "bioregistry.prov", "homepage": null, "prefix": "prov", "name": null, "uri_format": "http://www.w3.org/ns/prov#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.prov": {"id": "bioregistry.prov", "homepage": "https://www.w3.org/ns/prov", "prefix": "prov", "name": "Superset of Provenance Ontology", "uri_format": "http://www.w3.org/ns/prov#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pscdb.miriam": {"id": "bioregistry.pscdb.miriam", "sameas": "bioregistry.pscdb", "homepage": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/index.html", "prefix": "pscdb", "name": "PSCDB", "uri_format": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pscdb.n2t": {"id": "bioregistry.pscdb.n2t", "sameas": "bioregistry.pscdb", "homepage": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/index.html", "prefix": "pscdb", "name": "PSCDB at Nagoya University", "uri_format": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pscdb": {"id": "bioregistry.pscdb", "homepage": null, "prefix": "pscdb", "name": "Protein Structural Change Database", "uri_format": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pseudogene.prefixcommons": {"id": "bioregistry.pseudogene.prefixcommons", "sameas": "bioregistry.pseudogene", "homepage": "http://www.pseudogene.org/", "prefix": "pseudogene", "name": "PseudoGene", "uri_format": "http://tables.pseudogene.org/[?species_name]/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.pseudogene": {"id": "bioregistry.pseudogene", "homepage": "http://www.pseudogene.org", "prefix": "pseudogene", "name": "PseudoGene", "uri_format": "http://tables.pseudogene.org/[?species_name]/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.pseudomonas.miriam": {"id": "bioregistry.pseudomonas.miriam", "sameas": "bioregistry.pseudomonas", "homepage": "http://www.pseudomonas.com/", "prefix": "pseudomonas", "name": "Pseudomonas Genome Database", "uri_format": "http://www.pseudomonas.com/feature/show/?locus_tag=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pseudomonas.n2t": {"id": "bioregistry.pseudomonas.n2t", "sameas": "bioregistry.pseudomonas", "homepage": "http://www.pseudomonas.com/", "prefix": "pseudomonas", "name": "Pseudomonas Genome Database at Simon Fraser University", "uri_format": "http://www.pseudomonas.com/feature/show/?locus_tag=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pseudomonas": {"id": "bioregistry.pseudomonas", "homepage": null, "prefix": "pseudomonas", "name": "Pseudomonas Genome Database at Simon Fraser University", "uri_format": "http://www.pseudomonas.com/feature/show/?locus_tag=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.psipar.miriam": {"id": "bioregistry.psipar.miriam", "sameas": "bioregistry.psipar", "homepage": "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=PAR", "prefix": "psipar", "name": "Protein Affinity Reagents", "uri_format": "https://www.ebi.ac.uk/ontology-lookup/?termId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.psipar.n2t": {"id": "bioregistry.psipar.n2t", "sameas": "bioregistry.psipar", "homepage": "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=PAR", "prefix": "psipar", "name": "Protein Affinity Reagents through OLS", "uri_format": "https://www.ebi.ac.uk/ontology-lookup/?termId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.psipar": {"id": "bioregistry.psipar", "homepage": "https://www.psidev.info/psi-par", "prefix": "psipar", "name": "Protein Affinity Reagents through OLS", "uri_format": "https://www.ebi.ac.uk/ontology-lookup/?termId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pubchem.bioassay.miriam": {"id": "bioregistry.pubchem.bioassay.miriam", "sameas": "bioregistry.pubchem.bioassay", "homepage": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=pcassay", "prefix": "pubchem.bioassay", "name": "PubChem-bioassay", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/bioassay/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pubchem.bioassay.n2t": {"id": "bioregistry.pubchem.bioassay.n2t", "sameas": "bioregistry.pubchem.bioassay", "homepage": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=pcassay ", "prefix": "pubchem.bioassay", "name": "PubChem Bioassay at NCBI", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/assay/assay.cgi?aid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pubchem.bioassay.prefixcommons": {"id": "bioregistry.pubchem.bioassay.prefixcommons", "sameas": "bioregistry.pubchem.bioassay", "homepage": "http://www.ncbi.nlm.nih.gov/sites/entrez?db=pcassay", "prefix": "pubchem.bioassay", "name": "Pubchem: Bioassays", "uri_format": "http://pubchem.ncbi.nlm.nih.gov/assay/assay.cgi?aid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.pubchem.bioassay.go": {"id": "bioregistry.pubchem.bioassay.go", "sameas": "bioregistry.pubchem.bioassay", "homepage": "https://pubchem.ncbi.nlm.nih.gov", "prefix": "PubChem_BioAssay", "name": "NCBI PubChem database of bioassay records", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/bioassay/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.pubchem.bioassay": {"id": "bioregistry.pubchem.bioassay", "homepage": null, "prefix": "pubchem.bioassay", "name": "NCBI PubChem database of bioassay records", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/bioassay/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pubchem.compound.miriam": {"id": "bioregistry.pubchem.compound.miriam", "sameas": "bioregistry.pubchem.compound", "homepage": "https://pubchem.ncbi.nlm.nih.gov/", "prefix": "pubchem.compound", "name": "PubChem-compound", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/compound/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pubchem.compound.n2t": {"id": "bioregistry.pubchem.compound.n2t", "sameas": "bioregistry.pubchem.compound", "homepage": "https://pubchem.ncbi.nlm.nih.gov/", "prefix": "pubchem.compound", "name": "NCBI PubChem Compound", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?cid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pubchem.compound.prefixcommons": {"id": "bioregistry.pubchem.compound.prefixcommons", "sameas": "bioregistry.pubchem.compound", "homepage": null, "prefix": "pubchem.compound", "name": "Pubchem: Compounds", "uri_format": "http://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?db=pccompound&term=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "prefixcommons"}, "bioregistry.pubchem.compound.wikidata": {"id": "bioregistry.pubchem.compound.wikidata", "sameas": "bioregistry.pubchem.compound", "homepage": "http://pubchem.ncbi.nlm.nih.gov", "prefix": "P662", "name": "PubChem CID", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/compound/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "wikidata"}, "bioregistry.pubchem.compound.go": {"id": "bioregistry.pubchem.compound.go", "sameas": "bioregistry.pubchem.compound", "homepage": "https://pubchem.ncbi.nlm.nih.gov", "prefix": "PubChem_Compound", "name": "NCBI PubChem database of chemical structures", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/compound/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "go"}, "bioregistry.pubchem.compound.biolink": {"id": "bioregistry.pubchem.compound.biolink", "sameas": "bioregistry.pubchem.compound", "homepage": null, "prefix": "CID", "name": null, "uri_format": "http://pubchem.ncbi.nlm.nih.gov/compound/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "biolink"}, "bioregistry.pubchem.compound.cellosaurus": {"id": "bioregistry.pubchem.compound.cellosaurus", "sameas": "bioregistry.pubchem.compound", "homepage": "https://pubchem.ncbi.nlm.nih.gov", "prefix": "PubChem", "name": "PubChem compound database", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/compound/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "cellosaurus"}, "bioregistry.pubchem.compound": {"id": "bioregistry.pubchem.compound", "homepage": null, "prefix": "pubchem.compound", "name": "NCBI PubChem database of chemical structures", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?cid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "bioregistry"}, "bioregistry.pubchem.substance.miriam": {"id": "bioregistry.pubchem.substance.miriam", "sameas": "bioregistry.pubchem.substance", "homepage": "https://pubchem.ncbi.nlm.nih.gov/", "prefix": "pubchem.substance", "name": "PubChem-substance", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/substance/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pubchem.substance.n2t": {"id": "bioregistry.pubchem.substance.n2t", "sameas": "bioregistry.pubchem.substance", "homepage": "https://pubchem.ncbi.nlm.nih.gov/", "prefix": "pubchem.substance", "name": "NCBI PubChem Substance", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?sid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pubchem.substance.prefixcommons": {"id": "bioregistry.pubchem.substance.prefixcommons", "sameas": "bioregistry.pubchem.substance", "homepage": null, "prefix": "pubchem.substance", "name": "Pubchem: Substances", "uri_format": "http://www.ncbi.nlm.nih.gov/sites/entrez?cmd=search&db=pcsubstance&term=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.pubchem.substance.wikidata": {"id": "bioregistry.pubchem.substance.wikidata", "sameas": "bioregistry.pubchem.substance", "homepage": "https://www.ncbi.nlm.nih.gov/pcsubstance", "prefix": "P2153", "name": "PubChem Substance ID (SID)", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/substance/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "wikidata"}, "bioregistry.pubchem.substance.go": {"id": "bioregistry.pubchem.substance.go", "sameas": "bioregistry.pubchem.substance", "homepage": "https://pubchem.ncbi.nlm.nih.gov", "prefix": "PubChem_Substance", "name": "NCBI PubChem database of chemical substances", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/substance/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.pubchem.substance": {"id": "bioregistry.pubchem.substance", "homepage": null, "prefix": "pubchem.substance", "name": "NCBI PubChem database of chemical substances", "uri_format": "https://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?sid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.publons.publication.wikidata": {"id": "bioregistry.publons.publication.wikidata", "sameas": "bioregistry.publons.publication", "homepage": null, "prefix": "P3431", "name": "Publons publication ID", "uri_format": "https://publons.com/publon/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.publons.publication": {"id": "bioregistry.publons.publication", "homepage": "https://publons.com", "prefix": "publons.publication", "name": "Publons publication ID", "uri_format": "https://publons.com/publon/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.publons.researcher.biolink": {"id": "bioregistry.publons.researcher.biolink", "sameas": "bioregistry.publons.researcher", "homepage": null, "prefix": "ResearchID", "name": null, "uri_format": "https://publons.com/researcher/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.publons.researcher": {"id": "bioregistry.publons.researcher", "homepage": "https://publons.com/researcher", "prefix": "publons.researcher", "name": "Publons Researcher", "uri_format": "https://publons.com/researcher/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pubmed.miriam": {"id": "bioregistry.pubmed.miriam", "sameas": "bioregistry.pubmed", "homepage": "https://www.ncbi.nlm.nih.gov/PubMed/", "prefix": "pubmed", "name": "PubMed", "uri_format": "https://www.ncbi.nlm.nih.gov/pubmed/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pubmed.n2t": {"id": "bioregistry.pubmed.n2t", "sameas": "bioregistry.pubmed", "homepage": "https://www.ncbi.nlm.nih.gov/PubMed/", "prefix": "pubmed", "name": "NCBI PubMed", "uri_format": "https://www.ncbi.nlm.nih.gov/pubmed/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pubmed.prefixcommons": {"id": "bioregistry.pubmed.prefixcommons", "sameas": "bioregistry.pubmed", "homepage": "http://www.ncbi.nlm.nih.gov/pubmed/", "prefix": "pubmed", "name": "PubMed", "uri_format": "http://www.ncbi.nlm.nih.gov/pubmed/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "prefixcommons"}, "bioregistry.pubmed.wikidata": {"id": "bioregistry.pubmed.wikidata", "sameas": "bioregistry.pubmed", "homepage": "https://pubmed.ncbi.nlm.nih.gov", "prefix": "P698", "name": "PubMed ID", "uri_format": "https://pubmed.ncbi.nlm.nih.gov/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "wikidata"}, "bioregistry.pubmed.go": {"id": "bioregistry.pubmed.go", "sameas": "bioregistry.pubmed", "homepage": "https://www.ncbi.nlm.nih.gov/pubmed", "prefix": "PMID", "name": "PubMed", "uri_format": "http://www.ncbi.nlm.nih.gov/pubmed/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "go"}, "bioregistry.pubmed.cellosaurus": {"id": "bioregistry.pubmed.cellosaurus", "sameas": "bioregistry.pubmed", "homepage": "https://www.ncbi.nlm.nih.gov/pubmed", "prefix": "PubMed", "name": "PubMed", "uri_format": "https://www.ncbi.nlm.nih.gov/pubmed/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "cellosaurus"}, "bioregistry.pubmed": {"id": "bioregistry.pubmed", "homepage": null, "prefix": "pubmed", "name": "PubMed Identifier", "uri_format": "https://www.ncbi.nlm.nih.gov/pubmed/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "library sciences"], "authority": "bioregistry"}, "bioregistry.pw.miriam": {"id": "bioregistry.pw.miriam", "sameas": "bioregistry.pw", "homepage": "http://rgd.mcw.edu/rgdweb/ontology/search.html", "prefix": "pw", "name": "Pathway Ontology", "uri_format": "http://rgd.mcw.edu/rgdweb/ontology/annot.html?acc_id=PW:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pw.n2t": {"id": "bioregistry.pw.n2t", "sameas": "bioregistry.pw", "homepage": "http://bioportal.bioontology.org/ontologies/PW", "prefix": "pw", "name": "Pathway Ontology through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/PW/PW:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.pw.prefixcommons": {"id": "bioregistry.pw.prefixcommons", "sameas": "bioregistry.pw", "homepage": "ftp://rgd.mcw.edu/pub/data_release/ontology_obo_files/", "prefix": "pw", "name": "Pathway ontology", "uri_format": "http://rgd.mcw.edu/rgdweb/ontology/annot.html?acc_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.pw.wikidata": {"id": "bioregistry.pw.wikidata", "sameas": "bioregistry.pw", "homepage": "http://bioportal.bioontology.org/ontologies/PW", "prefix": "P7333", "name": "Pathway Ontology ID", "uri_format": "https://purl.bioontology.org/ontology/PW/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.pw": {"id": "bioregistry.pw", "homepage": null, "prefix": "pw", "name": "Pathway Ontology through BioPortal", "uri_format": "https://purl.bioontology.org/ontology/PW/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.px.miriam": {"id": "bioregistry.px.miriam", "sameas": "bioregistry.px", "homepage": "http://www.proteomexchange.org/", "prefix": "px", "name": "ProteomeXchange", "uri_format": "http://proteomecentral.proteomexchange.org/cgi/GetDataset?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.px.n2t": {"id": "bioregistry.px.n2t", "sameas": "bioregistry.px", "homepage": "http://www.proteomexchange.org/", "prefix": "px", "name": "ProteomeXchange at Seattle", "uri_format": "http://proteomecentral.proteomexchange.org/cgi/GetDataset?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.px": {"id": "bioregistry.px", "homepage": null, "prefix": "px", "name": "ProteomeXchange at Seattle", "uri_format": "http://proteomecentral.proteomexchange.org/cgi/GetDataset?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.pypi.miriam": {"id": "bioregistry.pypi.miriam", "sameas": "bioregistry.pypi", "homepage": "https://www.python.org/psf/", "prefix": "pypi", "name": "PyPI", "uri_format": "https://pypi.org/project/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.pypi": {"id": "bioregistry.pypi", "homepage": null, "prefix": "pypi", "name": "PyPI", "uri_format": "https://pypi.org/project/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.qtldb.miriam": {"id": "bioregistry.qtldb.miriam", "sameas": "bioregistry.qtldb", "homepage": "https://www.animalgenome.org/QTLdb", "prefix": "qtldb", "name": "Animal Genome QTL", "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.qtldb": {"id": "bioregistry.qtldb", "homepage": null, "prefix": "qtldb", "name": "Animal Genome QTL", "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.qudt.biolink": {"id": "bioregistry.qudt.biolink", "sameas": "bioregistry.qudt", "homepage": null, "prefix": "qud", "name": null, "uri_format": "http://qudt.org/1.1/schema/qudt#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.qudt": {"id": "bioregistry.qudt", "homepage": "https://qudt.org", "prefix": "qudt", "name": "Quantities, Units, Dimensions, and Types Ontology", "uri_format": "http://qudt.org/1.1/schema/qudt#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.rapdb.locus.miriam": {"id": "bioregistry.rapdb.locus.miriam", "sameas": "bioregistry.rapdb.locus", "homepage": "https://rapdb.dna.affrc.go.jp/", "prefix": "rapdb.locus", "name": "RAP-DB Locus", "uri_format": "https://rapdb.dna.affrc.go.jp/viewer/gbrowse_details/irgsp1?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.rapdb.locus": {"id": "bioregistry.rapdb.locus", "homepage": null, "prefix": "rapdb.locus", "name": "RAP-DB Locus", "uri_format": "https://rapdb.dna.affrc.go.jp/viewer/gbrowse_details/irgsp1?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.rapdb.transcript.miriam": {"id": "bioregistry.rapdb.transcript.miriam", "sameas": "bioregistry.rapdb.transcript", "homepage": "https://rapdb.dna.affrc.go.jp/", "prefix": "rapdb.transcript", "name": "RAP-DB Transcript", "uri_format": "https://rapdb.dna.affrc.go.jp/viewer/gene_detail/irgsp1?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.rapdb.transcript.prefixcommons": {"id": "bioregistry.rapdb.transcript.prefixcommons", "sameas": "bioregistry.rapdb.transcript", "homepage": "http://rapdb.dna.affrc.go.jp/", "prefix": "rapdb", "name": "The Rice Annotation Project Database", "uri_format": "http://rapdb.dna.affrc.go.jp/viewer/gbrowse_details/build5?name=[$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.rapdb.transcript.go": {"id": "bioregistry.rapdb.transcript.go", "sameas": "bioregistry.rapdb.transcript", "homepage": "https://rapdb.dna.affrc.go.jp", "prefix": "RAP-DB", "name": "Rice annotation Project database", "uri_format": "https://rapdb.dna.affrc.go.jp/viewer/gene_detail/irgsp1?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.rapdb.transcript": {"id": "bioregistry.rapdb.transcript", "homepage": null, "prefix": "rapdb.transcript", "name": "The Rice Annotation Project Database", "uri_format": "https://rapdb.dna.affrc.go.jp/viewer/gene_detail/irgsp1?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.ratmap.prefixcommons": {"id": "bioregistry.ratmap.prefixcommons", "sameas": "bioregistry.ratmap", "homepage": "http://ratmap.org", "prefix": "ratmap", "name": "RatMap, the rat genome database", "uri_format": "http://ratmap.org/Showgene.php?gene_stable_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.ratmap": {"id": "bioregistry.ratmap", "homepage": null, "prefix": "ratmap", "name": "RatMap, the rat genome database", "uri_format": "http://ratmap.org/Showgene.php?gene_stable_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.rbk.miriam": {"id": "bioregistry.rbk.miriam", "sameas": "bioregistry.rbk", "homepage": "https://www.rebuildingakidney.org/", "prefix": "rbk", "name": "Rebuilding a Kidney", "uri_format": "https://www.rebuildingakidney.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.rbk.n2t": {"id": "bioregistry.rbk.n2t", "sameas": "bioregistry.rbk", "homepage": "https://www.rebuildingakidney.org/", "prefix": "rbk", "name": "Rebuilding a Kidney", "uri_format": "https://www.rebuildingakidney.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.rbk": {"id": "bioregistry.rbk", "homepage": null, "prefix": "rbk", "name": "(Re)Building a Kidney", "uri_format": "https://www.rebuildingakidney.org/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.rcb.cellosaurus": {"id": "bioregistry.rcb.cellosaurus", "sameas": "bioregistry.rcb", "homepage": "https://cell.brc.riken.jp/en/rcb", "prefix": "RCB", "name": "RIKEN Bioresource Center Cell Bank", "uri_format": "http://cellbank.brc.riken.jp/cell_bank/CellInfo/?cellNo=$1&lang=En", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.rcb": {"id": "bioregistry.rcb", "homepage": "https://cell.brc.riken.jp/en/rcb", "prefix": "rcb", "name": "RIKEN Bioresource Center Cell Bank", "uri_format": "http://cellbank.brc.riken.jp/cell_bank/CellInfo/?cellNo=$1&lang=En", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.rdf.biocontext": {"id": "bioregistry.rdf.biocontext", "sameas": "bioregistry.rdf", "homepage": null, "prefix": "rdf", "name": null, "uri_format": "http://www.w3.org/1999/02/22-rdf-syntax-ns#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.rdf": {"id": "bioregistry.rdf", "homepage": "http://www.w3.org/1999/02/22-rdf-syntax-ns", "prefix": "rdf", "name": "Resource Description Framework", "uri_format": "http://www.w3.org/1999/02/22-rdf-syntax-ns#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.rdfs.biocontext": {"id": "bioregistry.rdfs.biocontext", "sameas": "bioregistry.rdfs", "homepage": null, "prefix": "rdfs", "name": null, "uri_format": "http://www.w3.org/2000/01/rdf-schema#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.rdfs": {"id": "bioregistry.rdfs", "homepage": "https://www.w3.org/TR/rdf-schema/", "prefix": "rdfs", "name": "Resource Description Framework Schema", "uri_format": "http://www.w3.org/2000/01/rdf-schema#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.re3data.miriam": {"id": "bioregistry.re3data.miriam", "sameas": "bioregistry.re3data", "homepage": "https://datacite.org", "prefix": "re3data", "name": "re3data", "uri_format": "https://www.re3data.org/repository/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.re3data": {"id": "bioregistry.re3data", "homepage": null, "prefix": "re3data", "name": "Schema for the description of research data repositories", "uri_format": "https://www.re3data.org/repository/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.reactome.miriam": {"id": "bioregistry.reactome.miriam", "sameas": "bioregistry.reactome", "homepage": "https://www.reactome.org/", "prefix": "reactome", "name": "Reactome", "uri_format": "https://reactome.org/content/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.reactome.n2t": {"id": "bioregistry.reactome.n2t", "sameas": "bioregistry.reactome", "homepage": "https://www.reactome.org/", "prefix": "reactome", "name": "Reactome, a curated knowledgebase of biological pathways", "uri_format": "https://reactome.org/content/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.reactome.prefixcommons": {"id": "bioregistry.reactome.prefixcommons", "sameas": "bioregistry.reactome", "homepage": "http://www.reactome.org", "prefix": "reactome", "name": "Reactome - a curated knowledgebase of biological pathways", "uri_format": "http://www.reactome.org/cgi-bin/eventbrowser_st_id?FROM_REACTOME=1&ST_ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.reactome.wikidata": {"id": "bioregistry.reactome.wikidata", "sameas": "bioregistry.reactome", "homepage": "http://www.reactome.org/", "prefix": "P3937", "name": "Reactome ID", "uri_format": "https://reactome.org/content/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.reactome.go": {"id": "bioregistry.reactome.go", "sameas": "bioregistry.reactome", "homepage": "https://www.reactome.org/", "prefix": "Reactome", "name": "Reactome - a curated knowledgebase of biological pathways", "uri_format": "https://www.reactome.org/content/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.reactome": {"id": "bioregistry.reactome", "homepage": null, "prefix": "reactome", "name": "Reactome - a curated knowledgebase of biological pathways", "uri_format": "https://www.reactome.org/content/detail/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.rebase.miriam": {"id": "bioregistry.rebase.miriam", "sameas": "bioregistry.rebase", "homepage": "http://rebase.neb.com/rebase/", "prefix": "rebase", "name": "REBASE", "uri_format": "http://rebase.neb.com/rebase/enz/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.rebase.n2t": {"id": "bioregistry.rebase.n2t", "sameas": "bioregistry.rebase", "homepage": "http://rebase.neb.com/rebase/", "prefix": "rebase", "name": "REBASE at New England Biolabs", "uri_format": "http://rebase.neb.com/rebase/enz/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.rebase.prefixcommons": {"id": "bioregistry.rebase.prefixcommons", "sameas": "bioregistry.rebase", "homepage": "http://rebase.neb.com", "prefix": "rebase", "name": "Restriction enzymes and methylases database", "uri_format": "http://rebase.neb.com/rebase/enz/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.rebase.wikidata": {"id": "bioregistry.rebase.wikidata", "sameas": "bioregistry.rebase", "homepage": null, "prefix": "P4866", "name": "REBASE Enzyme Number", "uri_format": "http://rebase.neb.com/cgi-bin/reb_get.pl?enzname=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "wikidata"}, "bioregistry.rebase.go": {"id": "bioregistry.rebase.go", "sameas": "bioregistry.rebase", "homepage": "http://rebase.neb.com/rebase/rebase.html", "prefix": "REBASE", "name": "REBASE restriction enzyme database", "uri_format": "http://rebase.neb.com/rebase/enz/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "go"}, "bioregistry.rebase.uniprot": {"id": "bioregistry.rebase.uniprot", "sameas": "bioregistry.rebase", "homepage": "http://rebase.neb.com/rebase/rebase.html", "prefix": "DB-0089", "name": "Restriction enzymes and methylases database", "uri_format": "http://rebase.neb.com/rebase/enz/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "uniprot"}, "bioregistry.rebase": {"id": "bioregistry.rebase", "homepage": null, "prefix": "rebase", "name": "Restriction enzymes and methylases database", "uri_format": "http://rebase.neb.com/rebase/enz/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.receptome.family.prefixcommons": {"id": "bioregistry.receptome.family.prefixcommons", "sameas": "bioregistry.receptome.family", "homepage": "http://www.receptome.org/HPMR/", "prefix": "hpmr", "name": "Human Plasma Membrane Receptome", "uri_format": "http://www.receptome.org/HPMR/Families/Frameset_family.asp?FamId=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.receptome.family": {"id": "bioregistry.receptome.family", "homepage": "http://www.receptome.org", "prefix": "receptome.family", "name": "Human Plasma Membrane Receptome Families", "uri_format": "http://www.receptome.org/HPMR/Families/Frameset_family.asp?FamId=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.redfly.prefixcommons": {"id": "bioregistry.redfly.prefixcommons", "sameas": "bioregistry.redfly", "homepage": "http://redfly.ccr.buffalo.edu", "prefix": "redfly", "name": "Regulatory Elements Database for Drosophila", "uri_format": "http://redfly.ccr.buffalo.edu/?content=/view_detail.php&crm_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.redfly": {"id": "bioregistry.redfly", "homepage": null, "prefix": "redfly", "name": "Regulatory Elements Database for Drosophila", "uri_format": "http://redfly.ccr.buffalo.edu/?content=/view_detail.php&crm_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.refseq.miriam": {"id": "bioregistry.refseq.miriam", "sameas": "bioregistry.refseq", "homepage": "https://www.ncbi.nlm.nih.gov/projects/RefSeq/", "prefix": "refseq", "name": "RefSeq", "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.refseq.n2t": {"id": "bioregistry.refseq.n2t", "sameas": "bioregistry.refseq", "homepage": "https://www.ncbi.nlm.nih.gov/projects/RefSeq/", "prefix": "refseq", "name": "The NCBI Reference Sequence database", "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.refseq.prefixcommons": {"id": "bioregistry.refseq.prefixcommons", "sameas": "bioregistry.refseq", "homepage": "http://www.ncbi.nlm.nih.gov/RefSeq/", "prefix": "refseq", "name": "Reference Sequence Database", "uri_format": "http://www.ncbi.nlm.nih.gov/nuccore/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.refseq.uniprot": {"id": "bioregistry.refseq.uniprot", "sameas": "bioregistry.refseq", "homepage": "https://www.ncbi.nlm.nih.gov/refseq/", "prefix": "DB-0117", "name": "NCBI Reference Sequences", "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "uniprot"}, "bioregistry.refseq.biocontext": {"id": "bioregistry.refseq.biocontext", "sameas": "bioregistry.refseq", "homepage": null, "prefix": "RefSeq", "name": null, "uri_format": "http://www.ncbi.nlm.nih.gov/refseq/?term=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "biocontext"}, "bioregistry.refseq": {"id": "bioregistry.refseq", "homepage": null, "prefix": "refseq", "name": "The NCBI Reference Sequence database", "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.repeatsdb.protein.miriam": {"id": "bioregistry.repeatsdb.protein.miriam", "sameas": "bioregistry.repeatsdb.protein", "homepage": "https://repeatsdb.org/", "prefix": "repeatsdb.protein", "name": "RepeatsDB Protein", "uri_format": "https://repeatsdb.org/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.repeatsdb.protein": {"id": "bioregistry.repeatsdb.protein", "homepage": null, "prefix": "repeatsdb.protein", "name": "RepeatsDB Protein", "uri_format": "https://repeatsdb.org/protein/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.repeatsdb.structure.miriam": {"id": "bioregistry.repeatsdb.structure.miriam", "sameas": "bioregistry.repeatsdb.structure", "homepage": "https://repeatsdb.org/", "prefix": "repeatsdb.structure", "name": "RepeatsDB Structure", "uri_format": "https://repeatsdb.org/structure/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.repeatsdb.structure": {"id": "bioregistry.repeatsdb.structure", "homepage": null, "prefix": "repeatsdb.structure", "name": "RepeatsDB Structure", "uri_format": "https://repeatsdb.org/structure/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.resid.miriam": {"id": "bioregistry.resid.miriam", "sameas": "bioregistry.resid", "homepage": "http://pir0.georgetown.edu/resid/", "prefix": "resid", "name": "RESID", "uri_format": "http://pir0.georgetown.edu/cgi-bin/resid?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.resid.n2t": {"id": "bioregistry.resid.n2t", "sameas": "bioregistry.resid", "homepage": "http://pir0.georgetown.edu/resid/", "prefix": "resid", "name": "RESID at Georgetown University", "uri_format": "http://pir0.georgetown.edu/cgi-bin/resid?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.resid.prefixcommons": {"id": "bioregistry.resid.prefixcommons", "sameas": "bioregistry.resid", "homepage": "http://www.ebi.ac.uk/RESID/", "prefix": "resid", "name": "RESID Database of Protein Modifications", "uri_format": "http://srs.ebi.ac.uk/srsbin/cgi-bin/wgetz?-id+6JSUg1NA6u4+-e+[RESID:'$1']", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.resid.go": {"id": "bioregistry.resid.go", "sameas": "bioregistry.resid", "homepage": "https://proteininformationresource.org/resid/resid.shtml", "prefix": "RESID", "name": "RESID Database of Protein Modifications", "uri_format": "https://proteininformationresource.org/cgi-bin/resid?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.resid": {"id": "bioregistry.resid", "homepage": "https://proteininformationresource.org/resid/", "prefix": "resid", "name": "RESID Database of Protein Modifications", "uri_format": "https://proteininformationresource.org/cgi-bin/resid?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.rfam.miriam": {"id": "bioregistry.rfam.miriam", "sameas": "bioregistry.rfam", "homepage": "https://rfam.xfam.org/", "prefix": "rfam", "name": "RFAM", "uri_format": "https://rfam.xfam.org/family/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.rfam.n2t": {"id": "bioregistry.rfam.n2t", "sameas": "bioregistry.rfam", "homepage": "https://rfam.xfam.org/", "prefix": "rfam", "name": "Rfam at EMBL-EBI", "uri_format": "https://rfam.xfam.org/family/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.rfam.go": {"id": "bioregistry.rfam.go", "sameas": "bioregistry.rfam", "homepage": "https://rfam.org", "prefix": "Rfam", "name": "Rfam database of RNA families", "uri_format": "https://rfam.org/family/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.rfam": {"id": "bioregistry.rfam", "homepage": null, "prefix": "rfam", "name": "RNA families database of alignments and CMs", "uri_format": "https://rfam.xfam.org/family/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.rfc.n2t": {"id": "bioregistry.rfc.n2t", "sameas": "bioregistry.rfc", "homepage": "https://www.ietf.org/", "prefix": "rfc", "name": "Internet Standard -- IETF Request for Comments", "uri_format": "https://tools.ietf.org/rfc/rfc$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.rfc": {"id": "bioregistry.rfc", "homepage": null, "prefix": "rfc", "name": "Internet Standard -- IETF Request for Comments", "uri_format": "https://tools.ietf.org/rfc/rfc$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.rgap.prefixcommons": {"id": "bioregistry.rgap.prefixcommons", "sameas": "bioregistry.rgap", "homepage": "http://rice.plantbiology.msu.edu/", "prefix": "rgap", "name": "Rice Genome Annotation Project", "uri_format": "http://rice.plantbiology.msu.edu/cgi-bin/gbrowse/rice/?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.rgap": {"id": "bioregistry.rgap", "homepage": null, "prefix": "rgap", "name": "Rice Genome Annotation Project", "uri_format": "http://rice.plantbiology.msu.edu/cgi-bin/gbrowse/rice/?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.rgd.miriam": {"id": "bioregistry.rgd.miriam", "sameas": "bioregistry.rgd", "homepage": "http://rgd.mcw.edu/", "prefix": "rgd", "name": "Rat Genome Database", "uri_format": "http://rgd.mcw.edu/rgdweb/report/gene/main.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.rgd.n2t": {"id": "bioregistry.rgd.n2t", "sameas": "bioregistry.rgd", "homepage": "http://rgd.mcw.edu/", "prefix": "rgd", "name": "Rat Genome Database", "uri_format": "http://rgd.mcw.edu/rgdweb/report/gene/main.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.rgd.prefixcommons": {"id": "bioregistry.rgd.prefixcommons", "sameas": "bioregistry.rgd", "homepage": "http://rgd.mcw.edu/genes/", "prefix": "rgd", "name": "Rat Genome Database", "uri_format": "http://rgd.mcw.edu/tools/genes/genes_view.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.rgd.wikidata": {"id": "bioregistry.rgd.wikidata", "sameas": "bioregistry.rgd", "homepage": "https://rgd.mcw.edu/", "prefix": "P3853", "name": "Rat Genome Database ID", "uri_format": "https://rgd.mcw.edu/rgdweb/report/gene/main.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "wikidata"}, "bioregistry.rgd.go": {"id": "bioregistry.rgd.go", "sameas": "bioregistry.rgd", "homepage": "https://rgd.mcw.edu/", "prefix": "RGD", "name": "Rat Genome Database", "uri_format": "https://rgd.mcw.edu/rgdweb/search/search.html?term=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.rgd.uniprot": {"id": "bioregistry.rgd.uniprot", "sameas": "bioregistry.rgd", "homepage": "https://rgd.mcw.edu/", "prefix": "DB-0091", "name": "Rat Genome Database", "uri_format": "https://rgd.mcw.edu/rgdweb/report/gene/main.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.rgd.cellosaurus": {"id": "bioregistry.rgd.cellosaurus", "sameas": "bioregistry.rgd", "homepage": "https://rgd.mcw.edu", "prefix": "RGD", "name": "Rat Genome Database", "uri_format": "https://rgd.mcw.edu/rgdweb/report/gene/main.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "cellosaurus"}, "bioregistry.rgd.biocontext": {"id": "bioregistry.rgd.biocontext", "sameas": "bioregistry.rgd", "homepage": null, "prefix": "RGD", "name": null, "uri_format": "http://rgd.mcw.edu/rgdweb/report/gene/main.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "biocontext"}, "bioregistry.rgd": {"id": "bioregistry.rgd", "homepage": null, "prefix": "rgd", "name": "Rat Genome Database ID", "uri_format": "https://rgd.mcw.edu/rgdweb/search/search.html?term=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.rgd.qtl.miriam": {"id": "bioregistry.rgd.qtl.miriam", "sameas": "bioregistry.rgd.qtl", "homepage": "http://rgd.mcw.edu/", "prefix": "rgd.qtl", "name": "Rat Genome Database qTL", "uri_format": "http://rgd.mcw.edu/rgdweb/report/qtl/main.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.rgd.qtl.n2t": {"id": "bioregistry.rgd.qtl.n2t", "sameas": "bioregistry.rgd.qtl", "homepage": "http://rgd.mcw.edu/", "prefix": "rgd.qtl", "name": "Rat Genome Database qTL at Medical College of Wisconsin", "uri_format": "http://rgd.mcw.edu/rgdweb/report/qtl/main.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.rgd.qtl": {"id": "bioregistry.rgd.qtl", "homepage": null, "prefix": "rgd.qtl", "name": "Rat Genome Database qTL at Medical College of Wisconsin", "uri_format": "http://rgd.mcw.edu/rgdweb/report/qtl/main.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.rgd.strain.miriam": {"id": "bioregistry.rgd.strain.miriam", "sameas": "bioregistry.rgd.strain", "homepage": "http://rgd.mcw.edu/", "prefix": "rgd.strain", "name": "Rat Genome Database strain", "uri_format": "http://rgd.mcw.edu/rgdweb/report/strain/main.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.rgd.strain.n2t": {"id": "bioregistry.rgd.strain.n2t", "sameas": "bioregistry.rgd.strain", "homepage": "http://rgd.mcw.edu/", "prefix": "rgd.strain", "name": "Rat Genome Database strain at Medical College of Wisconsin", "uri_format": "http://rgd.mcw.edu/rgdweb/report/strain/main.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.rgd.strain": {"id": "bioregistry.rgd.strain", "homepage": null, "prefix": "rgd.strain", "name": "Rat Genome Database strain at Medical College of Wisconsin", "uri_format": "http://rgd.mcw.edu/rgdweb/report/strain/main.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.rhea.miriam": {"id": "bioregistry.rhea.miriam", "sameas": "bioregistry.rhea", "homepage": "https://www.rhea-db.org/", "prefix": "rhea", "name": "Rhea", "uri_format": "https://www.rhea-db.org/rhea/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.rhea.n2t": {"id": "bioregistry.rhea.n2t", "sameas": "bioregistry.rhea", "homepage": "https://www.rhea-db.org/", "prefix": "rhea", "name": "Rhea", "uri_format": "https://www.rhea-db.org/reaction?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.rhea.prefixcommons": {"id": "bioregistry.rhea.prefixcommons", "sameas": "bioregistry.rhea", "homepage": "http://www.ebi.ac.uk/rhea/", "prefix": "rhea", "name": "Reaction database", "uri_format": "http://www.ebi.ac.uk/rhea//reaction.xhtml?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.rhea.go": {"id": "bioregistry.rhea.go", "sameas": "bioregistry.rhea", "homepage": "https://www.rhea-db.org", "prefix": "RHEA", "name": "Rhea, the Annotated Reactions Database", "uri_format": "https://www.rhea-db.org/rhea/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.rhea": {"id": "bioregistry.rhea", "homepage": null, "prefix": "rhea", "name": "Rhea, the Annotated Reactions Database", "uri_format": "https://www.rhea-db.org/rhea/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ricecyc.prefixcommons": {"id": "bioregistry.ricecyc.prefixcommons", "sameas": "bioregistry.ricecyc", "homepage": "http://www.gramene.org/pathway/ricecyc.html", "prefix": "ricecyc", "name": "Rice Metabolic Pathways", "uri_format": "http://pathway.gramene.org/RICE/NEW-IMAGE?type=PATHWAY&object=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.ricecyc": {"id": "bioregistry.ricecyc", "homepage": null, "prefix": "ricecyc", "name": "Rice Metabolic Pathways", "uri_format": "http://pathway.gramene.org/RICE/NEW-IMAGE?type=PATHWAY&object=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.ricegap.miriam": {"id": "bioregistry.ricegap.miriam", "sameas": "bioregistry.ricegap", "homepage": "http://rice.plantbiology.msu.edu/annotation_pseudo_current.shtml", "prefix": "ricegap", "name": "Rice Genome Annotation Project", "uri_format": "http://rice.plantbiology.msu.edu/cgi-bin/ORF_infopage.cgi?&orf=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ricegap.n2t": {"id": "bioregistry.ricegap.n2t", "sameas": "bioregistry.ricegap", "homepage": "http://rice.plantbiology.msu.edu/annotation_pseudo_current.shtml", "prefix": "ricegap", "name": "Rice Genome Annotation Project at TIGR", "uri_format": "http://rice.plantbiology.msu.edu/cgi-bin/ORF_infopage.cgi?&orf=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ricegap": {"id": "bioregistry.ricegap", "homepage": null, "prefix": "ricegap", "name": "Rice Genome Annotation Project at TIGR", "uri_format": "http://rice.plantbiology.msu.edu/cgi-bin/ORF_infopage.cgi?&orf=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ricenetdb.compound.miriam": {"id": "bioregistry.ricenetdb.compound.miriam", "sameas": "bioregistry.ricenetdb.compound", "homepage": "http://bis.zju.edu.cn/ricenetdb", "prefix": "ricenetdb.compound", "name": "RiceNetDB Compound", "uri_format": "http://bis.zju.edu.cn/ricenetdb/compounddetails.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ricenetdb.compound.n2t": {"id": "bioregistry.ricenetdb.compound.n2t", "sameas": "bioregistry.ricenetdb.compound", "homepage": "http://bis.zju.edu.cn/ricenetdb", "prefix": "ricenetdb.compound", "name": "RiceNetDB Compound", "uri_format": "http://bis.zju.edu.cn/ricenetdb/compounddetails.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ricenetdb.compound": {"id": "bioregistry.ricenetdb.compound", "homepage": null, "prefix": "ricenetdb.compound", "name": "RiceNetDB Compound", "uri_format": "http://bis.zju.edu.cn/ricenetdb/compounddetails.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ricenetdb.gene.miriam": {"id": "bioregistry.ricenetdb.gene.miriam", "sameas": "bioregistry.ricenetdb.gene", "homepage": "http://bis.zju.edu.cn/ricenetdb/", "prefix": "ricenetdb.gene", "name": "RiceNetDB Gene", "uri_format": "http://bis.zju.edu.cn/ricenetdb/genedetails.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ricenetdb.gene.n2t": {"id": "bioregistry.ricenetdb.gene.n2t", "sameas": "bioregistry.ricenetdb.gene", "homepage": "http://bis.zju.edu.cn/ricenetdb/", "prefix": "ricenetdb.gene", "name": "RiceNetDB", "uri_format": "http://bis.zju.edu.cn/ricenetdb/genedetails.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ricenetdb.gene": {"id": "bioregistry.ricenetdb.gene", "homepage": null, "prefix": "ricenetdb.gene", "name": "RiceNetDB Gene", "uri_format": "http://bis.zju.edu.cn/ricenetdb/genedetails.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ricenetdb.mirna.miriam": {"id": "bioregistry.ricenetdb.mirna.miriam", "sameas": "bioregistry.ricenetdb.mirna", "homepage": "http://bis.zju.edu.cn/ricenetdb", "prefix": "ricenetdb.mirna", "name": "RiceNetDB miRNA", "uri_format": "http://bis.zju.edu.cn/ricenetdb/miRNAdetails.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ricenetdb.mirna.n2t": {"id": "bioregistry.ricenetdb.mirna.n2t", "sameas": "bioregistry.ricenetdb.mirna", "homepage": "http://bis.zju.edu.cn/ricenetdb", "prefix": "ricenetdb.mirna", "name": "RiceNetDB miRNA", "uri_format": "http://bis.zju.edu.cn/ricenetdb/miRNAdetails.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ricenetdb.mirna": {"id": "bioregistry.ricenetdb.mirna", "homepage": null, "prefix": "ricenetdb.mirna", "name": "RiceNetDB miRNA", "uri_format": "http://bis.zju.edu.cn/ricenetdb/miRNAdetails.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ricenetdb.protein.miriam": {"id": "bioregistry.ricenetdb.protein.miriam", "sameas": "bioregistry.ricenetdb.protein", "homepage": "http://bis.zju.edu.cn/ricenetdb/", "prefix": "ricenetdb.protein", "name": "RiceNetDB Protein", "uri_format": "http://bis.zju.edu.cn/ricenetdb/proteindetails.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ricenetdb.protein.n2t": {"id": "bioregistry.ricenetdb.protein.n2t", "sameas": "bioregistry.ricenetdb.protein", "homepage": "http://bis.zju.edu.cn/ricenetdb/", "prefix": "ricenetdb.protein", "name": "RiceNetDB", "uri_format": "http://bis.zju.edu.cn/ricenetdb/proteindetails.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ricenetdb.protein": {"id": "bioregistry.ricenetdb.protein", "homepage": null, "prefix": "ricenetdb.protein", "name": "RiceNetDB Protein", "uri_format": "http://bis.zju.edu.cn/ricenetdb/proteindetails.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ricenetdb.reaction.miriam": {"id": "bioregistry.ricenetdb.reaction.miriam", "sameas": "bioregistry.ricenetdb.reaction", "homepage": "http://bis.zju.edu.cn/ricenetdb", "prefix": "ricenetdb.reaction", "name": "RiceNetDB Reaction", "uri_format": "http://bis.zju.edu.cn/ricenetdb/reactiondetails.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ricenetdb.reaction.n2t": {"id": "bioregistry.ricenetdb.reaction.n2t", "sameas": "bioregistry.ricenetdb.reaction", "homepage": "http://bis.zju.edu.cn/ricenetdb", "prefix": "ricenetdb.reaction", "name": "RiceNetDB Reaction", "uri_format": "http://bis.zju.edu.cn/ricenetdb/reactiondetails.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ricenetdb.reaction": {"id": "bioregistry.ricenetdb.reaction", "homepage": null, "prefix": "ricenetdb.reaction", "name": "RiceNetDB Reaction", "uri_format": "http://bis.zju.edu.cn/ricenetdb/reactiondetails.php?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.rism.miriam": {"id": "bioregistry.rism.miriam", "sameas": "bioregistry.rism", "homepage": "https://rism.digital/", "prefix": "rism", "name": "RISM Online", "uri_format": "https://rism.online/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.rism": {"id": "bioregistry.rism", "homepage": null, "prefix": "rism", "name": "RISM Online", "uri_format": "https://rism.online/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.rna_sstrand.prefixcommons": {"id": "bioregistry.rna_sstrand.prefixcommons", "sameas": "bioregistry.rna_sstrand", "homepage": "http://www.rnasoft.ca/sstrand", "prefix": "rna_sstrand", "name": "RNA SSTRAND", "uri_format": "http://www.rnasoft.ca/sstrand/show_results.php?molecule_ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.rna_sstrand": {"id": "bioregistry.rna_sstrand", "homepage": null, "prefix": "rna_sstrand", "name": "RNA SSTRAND", "uri_format": "http://www.rnasoft.ca/sstrand/show_results.php?molecule_ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.rnacentral.miriam": {"id": "bioregistry.rnacentral.miriam", "sameas": "bioregistry.rnacentral", "homepage": "https://rnacentral.org/", "prefix": "rnacentral", "name": "RNAcentral", "uri_format": "https://rnacentral.org/rna/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.rnacentral.n2t": {"id": "bioregistry.rnacentral.n2t", "sameas": "bioregistry.rnacentral", "homepage": "https://rnacentral.org/", "prefix": "rnacentral", "name": "RNAcentral through EMBL-EBI", "uri_format": "https://rnacentral.org/rna/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.rnacentral.wikidata": {"id": "bioregistry.rnacentral.wikidata", "sameas": "bioregistry.rnacentral", "homepage": "https://rnacentral.org/", "prefix": "P8697", "name": "RNACentral ID", "uri_format": "https://rnacentral.org/rna/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.rnacentral.go": {"id": "bioregistry.rnacentral.go", "sameas": "bioregistry.rnacentral", "homepage": "https://rnacentral.org", "prefix": "RNAcentral", "name": "RNAcentral", "uri_format": "https://rnacentral.org/rna/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.rnacentral": {"id": "bioregistry.rnacentral", "homepage": null, "prefix": "rnacentral", "name": "Noncoding RNA Sequence Database", "uri_format": "https://rnacentral.org/rna/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.rnajunction.prefixcommons": {"id": "bioregistry.rnajunction.prefixcommons", "sameas": "bioregistry.rnajunction", "homepage": "http://rnajunction.abcc.ncifcrf.gov", "prefix": "rnajunction", "name": "RNAJunction: A Database of RNA Junction and Kissing loop Structure", "uri_format": "http://rnajunction.abcc.ncifcrf.gov/JunctionPage.php?jid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.rnajunction": {"id": "bioregistry.rnajunction", "homepage": null, "prefix": "rnajunction", "name": "RNAJunction: A Database of RNA Junction and Kissing loop Structure", "uri_format": "http://rnajunction.abcc.ncifcrf.gov/JunctionPage.php?jid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.rnamods.miriam": {"id": "bioregistry.rnamods.miriam", "sameas": "bioregistry.rnamods", "homepage": "http://rna-mdb.cas.albany.edu/RNAmods/rnaover.htm", "prefix": "rnamods", "name": "RNA Modification Database", "uri_format": "http://mods.rna.albany.edu/mods/modifications/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.rnamods.n2t": {"id": "bioregistry.rnamods.n2t", "sameas": "bioregistry.rnamods", "homepage": "http://rna-mdb.cas.albany.edu/RNAmods/rnaover.htm", "prefix": "rnamods", "name": "RNA Modification Database at University of Utah", "uri_format": "http://mods.rna.albany.edu/mods/modifications/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.rnamods.prefixcommons": {"id": "bioregistry.rnamods.prefixcommons", "sameas": "bioregistry.rnamods", "homepage": "http://medlib.med.utah.edu/RNAmods/", "prefix": "rnamods", "name": "RNA Modification Database", "uri_format": "http://s59.cas.albany.edu/RNAmods/cgi-bin/rnashow.cgi?$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.rnamods.go": {"id": "bioregistry.rnamods.go", "sameas": "bioregistry.rnamods", "homepage": "https://mods.rna.albany.edu/", "prefix": "RNAmods", "name": "RNA Modification Database", "uri_format": "https://mods.rna.albany.edu/mods/modifications/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "go"}, "bioregistry.rnamods": {"id": "bioregistry.rnamods", "homepage": null, "prefix": "rnamods", "name": "RNA Modification Database at University of Utah", "uri_format": "https://mods.rna.albany.edu/mods/modifications/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.rnavdb.prefixcommons": {"id": "bioregistry.rnavdb.prefixcommons", "sameas": "bioregistry.rnavdb", "homepage": "http://virus.zoo.ox.ac.uk/rnavirusdb/", "prefix": "rvd", "name": "RNA Virus Database", "uri_format": "http://virus.zoo.ox.ac.uk/rnavirusdb/virus.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.rnavdb": {"id": "bioregistry.rnavdb", "homepage": null, "prefix": "rnavdb", "name": "RNA Virus Database", "uri_format": "http://virus.zoo.ox.ac.uk/rnavirusdb/virus.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.ro.miriam": {"id": "bioregistry.ro.miriam", "sameas": "bioregistry.ro", "homepage": "http://obofoundry.org/ontology/ro.html", "prefix": "ro", "name": "Relation Ontology", "uri_format": "http://purl.obolibrary.org/obo/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ro.n2t": {"id": "bioregistry.ro.n2t", "sameas": "bioregistry.ro", "homepage": "http://obofoundry.org/ontology/ro.html", "prefix": "ro", "name": "OBO Relation Ontology through OntoBee", "uri_format": "http://purl.obolibrary.org/obo/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ro.biolink": {"id": "bioregistry.ro.biolink", "sameas": "bioregistry.ro", "homepage": null, "prefix": "RO", "name": null, "uri_format": "http://purl.obolibrary.org/obo/RO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.ro": {"id": "bioregistry.ro", "homepage": null, "prefix": "ro", "name": "OBO Relation Ontology through OntoBee", "uri_format": "http://purl.obolibrary.org/obo/RO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ror.miriam": {"id": "bioregistry.ror.miriam", "sameas": "bioregistry.ror", "homepage": "https://ror.org", "prefix": "ror", "name": "ROR", "uri_format": "https://ror.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ror.n2t": {"id": "bioregistry.ror.n2t", "sameas": "bioregistry.ror", "homepage": "http://ror.org", "prefix": "ror", "name": "Research Organization Registry", "uri_format": "https://ror.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ror": {"id": "bioregistry.ror", "homepage": null, "prefix": "ror", "name": "Research Organization Registry", "uri_format": "https://ror.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.rouge.miriam": {"id": "bioregistry.rouge.miriam", "sameas": "bioregistry.rouge", "homepage": "http://www.kazusa.or.jp/rouge/", "prefix": "rouge", "name": "Rouge", "uri_format": "http://www.kazusa.or.jp/rouge/gfpage/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.rouge.n2t": {"id": "bioregistry.rouge.n2t", "sameas": "bioregistry.rouge", "homepage": "http://www.kazusa.or.jp/rouge/", "prefix": "rouge", "name": "Rouge at Kazusa DNA Research Institute", "uri_format": "http://www.kazusa.or.jp/rouge/gfpage/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.rouge.prefixcommons": {"id": "bioregistry.rouge.prefixcommons", "sameas": "bioregistry.rouge", "homepage": "http://www.kazusa.or.jp/rouge/", "prefix": "rouge", "name": "A Database of Rodent Unidentified Gene-Encoded Large Proteins Analyzed", "uri_format": "http://www.kazusa.or.jp/rouge/gfpage/$1/", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.rouge.uniprot": {"id": "bioregistry.rouge.uniprot", "sameas": "bioregistry.rouge", "homepage": "http://www.kazusa.or.jp/rouge/", "prefix": "DB-0092", "name": "Rodent Unidentified Gene-Encoded large proteins database", "uri_format": "http://www.kazusa.or.jp/rouge/gfpage/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "uniprot"}, "bioregistry.rouge": {"id": "bioregistry.rouge", "homepage": null, "prefix": "rouge", "name": "A Database of Rodent Unidentified Gene-Encoded Large Proteins Analyzed", "uri_format": "http://www.kazusa.or.jp/rouge/gfpage/$1/", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.rrid.miriam": {"id": "bioregistry.rrid.miriam", "sameas": "bioregistry.rrid", "homepage": "https://scicrunch.org/resolver", "prefix": "rrid", "name": "RRID", "uri_format": "https://scicrunch.org/resolver/RRID:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.rrid.n2t": {"id": "bioregistry.rrid.n2t", "sameas": "bioregistry.rrid", "homepage": "https://scicrunch.org/resolver", "prefix": "rrid", "name": "RRID at SciCrunch", "uri_format": "https://scicrunch.org/resolver/RRID:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.rrid": {"id": "bioregistry.rrid", "homepage": null, "prefix": "rrid", "name": "Research Resource Identification", "uri_format": "https://scicrunch.org/resolver/RRID:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.runbiosimulations.miriam": {"id": "bioregistry.runbiosimulations.miriam", "sameas": "bioregistry.runbiosimulations", "homepage": "https://icahn.mssm.edu/", "prefix": "runbiosimulations", "name": "runBioSimulations", "uri_format": "https://run.biosimulations.org/simulations/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.runbiosimulations": {"id": "bioregistry.runbiosimulations", "homepage": null, "prefix": "runbiosimulations", "name": "runBioSimulations", "uri_format": "https://run.biosimulations.org/simulations/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.rxno.wikidata": {"id": "bioregistry.rxno.wikidata", "sameas": "bioregistry.rxno", "homepage": "https://github.com/rsc-ontologies/rxno", "prefix": "P2106", "name": "RXNO Ontology", "uri_format": "http://www.rsc.org/publishing/journals/prospect/ontology.asp?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.rxno": {"id": "bioregistry.rxno", "homepage": null, "prefix": "rxno", "name": "Name Reaction Ontology", "uri_format": "http://www.rsc.org/publishing/journals/prospect/ontology.asp?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.rxnorm.wikidata": {"id": "bioregistry.rxnorm.wikidata", "sameas": "bioregistry.rxnorm", "homepage": null, "prefix": "P3345", "name": "RxNorm ID", "uri_format": "https://mor.nlm.nih.gov/RxNav/search?searchBy=RXCUI&searchTerm=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.rxnorm.biolink": {"id": "bioregistry.rxnorm.biolink", "sameas": "bioregistry.rxnorm", "homepage": null, "prefix": "RXNORM", "name": null, "uri_format": "http://purl.bioontology.org/ontology/RXNORM/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.rxnorm.biocontext": {"id": "bioregistry.rxnorm.biocontext", "sameas": "bioregistry.rxnorm", "homepage": null, "prefix": "RXCUI", "name": null, "uri_format": "http://purl.bioontology.org/ontology/RXNORM/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.rxnorm": {"id": "bioregistry.rxnorm", "homepage": "https://www.nlm.nih.gov/research/umls/rxnorm/", "prefix": "rxnorm", "name": "RxNorm ID", "uri_format": "https://mor.nlm.nih.gov/RxNav/search?searchBy=RXCUI&searchTerm=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.s_mart_db.prefixcommons": {"id": "bioregistry.s_mart_db.prefixcommons", "sameas": "bioregistry.s_mart_db", "homepage": "http://smartdb.bioinf.med.uni-goettingen.de/", "prefix": "s_mart_db", "name": "The S/MAR transaction DataBase", "uri_format": "http://smartdb.bioinf.med.uni-goettingen.de/cgi-bin/SMARtDB/getSMAR.cgi?$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.s_mart_db": {"id": "bioregistry.s_mart_db", "homepage": null, "prefix": "s_mart_db", "name": "The S/MAR transaction DataBase", "uri_format": "http://smartdb.bioinf.med.uni-goettingen.de/cgi-bin/SMARtDB/getSMAR.cgi?$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.sabiork.compound.miriam": {"id": "bioregistry.sabiork.compound.miriam", "sameas": "bioregistry.sabiork.compound", "homepage": "http://sabiork.h-its.org/", "prefix": "sabiork.compound", "name": "SABIO-RK Compound", "uri_format": "http://sabiork.h-its.org/newSearch?q=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sabiork.compound.n2t": {"id": "bioregistry.sabiork.compound.n2t", "sameas": "bioregistry.sabiork.compound", "homepage": "http://sabiork.h-its.org/", "prefix": "sabiork.compound", "name": "SABIO-RK Compound", "uri_format": "http://sabiork.h-its.org/newSearch?q=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.sabiork.compound": {"id": "bioregistry.sabiork.compound", "homepage": null, "prefix": "sabiork.compound", "name": "SABIO-RK Compound", "uri_format": "http://sabiork.h-its.org/newSearch?q=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.sabiork.ec.miriam": {"id": "bioregistry.sabiork.ec.miriam", "sameas": "bioregistry.sabiork.ec", "homepage": "http://sabiork.h-its.org/", "prefix": "sabiork.ec", "name": "SABIO-RK EC Record", "uri_format": "http://sabiork.h-its.org/newSearch?q=ecnumber:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sabiork.ec.n2t": {"id": "bioregistry.sabiork.ec.n2t", "sameas": "bioregistry.sabiork.ec", "homepage": "http://sabiork.h-its.org/", "prefix": "sabiork.ec", "name": "SABIO-RK Reaction Kinetics Database - Enzyme Classification (EC)", "uri_format": "http://sabiork.h-its.org/newSearch?q=ecnumber:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.sabiork.ec.prefixcommons": {"id": "bioregistry.sabiork.ec.prefixcommons", "sameas": "bioregistry.sabiork.ec", "homepage": null, "prefix": "sabiork.ec", "name": "SABIO-RK EC Record", "uri_format": "http://sabiork.h-its.org/index2.jsp?EC=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.sabiork.ec": {"id": "bioregistry.sabiork.ec", "homepage": null, "prefix": "sabiork.ec", "name": "SABIO-RK Reaction Kinetics Database - Enzyme Classification (EC)", "uri_format": "http://sabiork.h-its.org/newSearch?q=ecnumber:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.sabiork.kineticrecord.miriam": {"id": "bioregistry.sabiork.kineticrecord.miriam", "sameas": "bioregistry.sabiork.kineticrecord", "homepage": "http://sabiork.h-its.org/", "prefix": "sabiork.kineticrecord", "name": "SABIO-RK Kinetic Record", "uri_format": "http://sabiork.h-its.org/kineticLawEntry.jsp?viewData=true&kinlawid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sabiork.kineticrecord.n2t": {"id": "bioregistry.sabiork.kineticrecord.n2t", "sameas": "bioregistry.sabiork.kineticrecord", "homepage": "http://sabiork.h-its.org/", "prefix": "sabiork.kineticrecord", "name": "SABIO-RK Reaction Kinetics Database - Kinetic Dataset", "uri_format": "http://sabiork.h-its.org/kineticLawEntry.jsp?viewData=true&kinlawid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.sabiork.kineticrecord.prefixcommons": {"id": "bioregistry.sabiork.kineticrecord.prefixcommons", "sameas": "bioregistry.sabiork.kineticrecord", "homepage": null, "prefix": "sabiork.kinetic", "name": "SABIO-RK Kinetic Record", "uri_format": "http://sabiork.h-its.org/kineticLawEntry.jsp?kinlawid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.sabiork.kineticrecord.go": {"id": "bioregistry.sabiork.kineticrecord.go", "sameas": "bioregistry.sabiork.kineticrecord", "homepage": "http://sabio.villa-bosch.de/", "prefix": "SABIO-RK", "name": "SABIO Reaction Kinetics", "uri_format": "http://sabio.villa-bosch.de/reacdetails.jsp?reactid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.sabiork.kineticrecord": {"id": "bioregistry.sabiork.kineticrecord", "homepage": null, "prefix": "sabiork.kineticrecord", "name": "SABIO-RK Reaction Kinetics Database - Kinetic Dataset", "uri_format": "http://sabiork.h-its.org/kineticLawEntry.jsp?viewData=true&kinlawid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.sabiork.reaction.miriam": {"id": "bioregistry.sabiork.reaction.miriam", "sameas": "bioregistry.sabiork.reaction", "homepage": "http://sabiork.h-its.org/", "prefix": "sabiork.reaction", "name": "SABIO-RK Reaction", "uri_format": "http://sabiork.h-its.org/newSearch?q=sabioreactionid:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sabiork.reaction.n2t": {"id": "bioregistry.sabiork.reaction.n2t", "sameas": "bioregistry.sabiork.reaction", "homepage": "http://sabiork.h-its.org/", "prefix": "sabiork.reaction", "name": "SABIO-RK reaction", "uri_format": "http://sabiork.h-its.org/newSearch?q=sabioreactionid:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.sabiork.reaction.prefixcommons": {"id": "bioregistry.sabiork.reaction.prefixcommons", "sameas": "bioregistry.sabiork.reaction", "homepage": null, "prefix": "sabiork.reaction", "name": "SABIO-RK Reaction Record", "uri_format": "http://sabiork.h-its.org/index2.jsp?reac=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.sabiork.reaction.uniprot": {"id": "bioregistry.sabiork.reaction.uniprot", "sameas": "bioregistry.sabiork.reaction", "homepage": "https://sabiork.h-its.org/", "prefix": "DB-0177", "name": "SABIO-RK", "uri_format": "https://sabiork.h-its.org/newSearch?q=UniProtKB_AC:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.sabiork.reaction": {"id": "bioregistry.sabiork.reaction", "homepage": null, "prefix": "sabiork.reaction", "name": "SABIO-RK Biochemical Reaction Kinetics Database", "uri_format": "https://sabiork.h-its.org/newSearch?q=UniProtKB_AC:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.sasbdb.miriam": {"id": "bioregistry.sasbdb.miriam", "sameas": "bioregistry.sasbdb", "homepage": "http://www.sasbdb.org/", "prefix": "sasbdb", "name": "SASBDB", "uri_format": "http://www.sasbdb.org/data/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sasbdb.n2t": {"id": "bioregistry.sasbdb.n2t", "sameas": "bioregistry.sasbdb", "homepage": "http://www.sasbdb.org/", "prefix": "sasbdb", "name": "SASBDB at European Molecular Biology Laboratory", "uri_format": "http://www.sasbdb.org/data/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.sasbdb.uniprot": {"id": "bioregistry.sasbdb.uniprot", "sameas": "bioregistry.sasbdb", "homepage": "https://www.sasbdb.org/", "prefix": "DB-0258", "name": "Small Angle Scattering Biological Data Bank", "uri_format": "https://www.sasbdb.org/uniprot/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.sasbdb": {"id": "bioregistry.sasbdb", "homepage": null, "prefix": "sasbdb", "name": "SASBDB at European Molecular Biology Laboratory", "uri_format": "https://www.sasbdb.org/uniprot/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.sbo.miriam": {"id": "bioregistry.sbo.miriam", "sameas": "bioregistry.sbo", "homepage": "https://www.ebi.ac.uk/ols4/ontologies/sbo", "prefix": "sbo", "name": "Systems Biology Ontology", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/sbo/terms?obo_id=SBO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sbo.n2t": {"id": "bioregistry.sbo.n2t", "sameas": "bioregistry.sbo", "homepage": "https://www.ebi.ac.uk/sbo/", "prefix": "sbo", "name": "SBO", "uri_format": "https://www.ebi.ac.uk/sbo/main/SBO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.sbo.prefixcommons": {"id": "bioregistry.sbo.prefixcommons", "sameas": "bioregistry.sbo", "homepage": "http://www.ebi.ac.uk/sbo/", "prefix": "sbo", "name": "Systems Biology Ontology", "uri_format": "http://www.ebi.ac.uk/sbo/main/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.sbo": {"id": "bioregistry.sbo", "homepage": null, "prefix": "sbo", "name": "Systems Biology Ontology", "uri_format": "https://www.ebi.ac.uk/sbo/main/SBO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.schema.biolink": {"id": "bioregistry.schema.biolink", "sameas": "bioregistry.schema", "homepage": null, "prefix": "schema", "name": null, "uri_format": "http://schema.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.sciflection.miriam": {"id": "bioregistry.sciflection.miriam", "sameas": "bioregistry.sciflection", "homepage": "https://sciformation.com/sciflection.html", "prefix": "sciflection", "name": "Sciflection", "uri_format": "https://sciflection.com/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sciflection": {"id": "bioregistry.sciflection", "homepage": null, "prefix": "sciflection", "name": "Sciflection", "uri_format": "https://sciflection.com/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.scop.miriam": {"id": "bioregistry.scop.miriam", "sameas": "bioregistry.scop", "homepage": "http://scop.mrc-lmb.cam.ac.uk/scop/", "prefix": "scop", "name": "SCOP", "uri_format": "http://scop.mrc-lmb.cam.ac.uk/scop/search.cgi?sunid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.scop.n2t": {"id": "bioregistry.scop.n2t", "sameas": "bioregistry.scop", "homepage": "http://scop.berkeley.edu/", "prefix": "scop", "name": "SCOP at Berkeley", "uri_format": "http://scop.berkeley.edu/sunid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.scop": {"id": "bioregistry.scop", "homepage": "https://scop.berkeley.edu", "prefix": "scop", "name": "Structural Classification of Proteins - Unique Identifier", "uri_format": "http://scop.mrc-lmb.cam.ac.uk/scop/search.cgi?sunid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.scopus.wikidata": {"id": "bioregistry.scopus.wikidata", "sameas": "bioregistry.scopus", "homepage": "https://www.scopus.com/freelookup/form/author.uri", "prefix": "P1153", "name": "Scopus author ID", "uri_format": "https://www.scopus.com/authid/detail.uri?authorId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.scopus.biolink": {"id": "bioregistry.scopus.biolink", "sameas": "bioregistry.scopus", "homepage": null, "prefix": "ScopusID", "name": null, "uri_format": "https://www.scopus.com/authid/detail.uri?authorId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.scopus": {"id": "bioregistry.scopus", "homepage": "https://www.scopus.com", "prefix": "scopus", "name": "Scopus Researcher", "uri_format": "https://www.scopus.com/authid/detail.uri?authorId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.scopus.affiliation.wikidata": {"id": "bioregistry.scopus.affiliation.wikidata", "sameas": "bioregistry.scopus.affiliation", "homepage": "http://info.sciencedirect.com/scopus/scopus-in-detail/tools/affiliationidentifier", "prefix": "P1155", "name": "Scopus affiliation ID", "uri_format": "https://www.scopus.com/affil/profile.uri?afid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.scopus.affiliation": {"id": "bioregistry.scopus.affiliation", "homepage": null, "prefix": "scopus.affiliation", "name": "Scopus affiliation ID", "uri_format": "https://www.scopus.com/affil/profile.uri?afid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.scopus.publication.wikidata": {"id": "bioregistry.scopus.publication.wikidata", "sameas": "bioregistry.scopus.publication", "homepage": null, "prefix": "P1156", "name": "Scopus source ID", "uri_format": "https://www.scopus.com/sourceid/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.scopus.publication": {"id": "bioregistry.scopus.publication", "homepage": "https://www.scopus.com/", "prefix": "scopus.publication", "name": "Scopus Publication", "uri_format": "https://www.scopus.com/sourceid/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.scopus.work.wikidata": {"id": "bioregistry.scopus.work.wikidata", "sameas": "bioregistry.scopus.work", "homepage": null, "prefix": "P1154", "name": "Scopus EID", "uri_format": "http://www.scopus.com/record/display.url?origin=inward&eid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.scopus.work": {"id": "bioregistry.scopus.work", "homepage": "https://www.scopus.com/", "prefix": "scopus.work", "name": "Scopus Work", "uri_format": "http://www.scopus.com/record/display.url?origin=inward&eid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.scpd.prefixcommons": {"id": "bioregistry.scpd.prefixcommons", "sameas": "bioregistry.scpd", "homepage": "http://rulai.cshl.edu/SCPD/", "prefix": "scpd", "name": "Saccharomyces cerevisiae promoter database", "uri_format": "http://rulai.cshl.edu/cgi-bin/SCPD/getgene2?$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.scpd": {"id": "bioregistry.scpd", "homepage": null, "prefix": "scpd", "name": "Saccharomyces cerevisiae promoter database", "uri_format": "http://rulai.cshl.edu/cgi-bin/SCPD/getgene2?$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.scretf.miriam": {"id": "bioregistry.scretf.miriam", "sameas": "bioregistry.scretf", "homepage": "http://stormo.wustl.edu/ScerTF/", "prefix": "scretf", "name": "ScerTF", "uri_format": "http://stormo.wustl.edu/ScerTF/details/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.scretf.n2t": {"id": "bioregistry.scretf.n2t", "sameas": "bioregistry.scretf", "homepage": "http://stormo.wustl.edu/ScerTF/", "prefix": "scretf", "name": "ScerTF at Washington University", "uri_format": "http://stormo.wustl.edu/ScerTF/details/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.scretf": {"id": "bioregistry.scretf", "homepage": null, "prefix": "scretf", "name": "ScerTF at Washington University", "uri_format": "http://stormo.wustl.edu/ScerTF/details/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.sdap.prefixcommons": {"id": "bioregistry.sdap.prefixcommons", "sameas": "bioregistry.sdap", "homepage": "http://fermi.utmb.edu/SDAP", "prefix": "sdap", "name": "Structural Database of Allergenic Proteins", "uri_format": "http://fermi.utmb.edu/cgi-bin/SDAP/sdap_02?dB_Type=0&allid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.sdap": {"id": "bioregistry.sdap", "homepage": null, "prefix": "sdap", "name": "Structural Database of Allergenic Proteins", "uri_format": "http://fermi.utmb.edu/cgi-bin/SDAP/sdap_02?dB_Type=0&allid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.sdbs.miriam": {"id": "bioregistry.sdbs.miriam", "sameas": "bioregistry.sdbs", "homepage": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/direct_frame_top.cgi", "prefix": "sdbs", "name": "Spectral Database for Organic Compounds", "uri_format": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/cre_frame_disp.cgi?sdbsno=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sdbs.n2t": {"id": "bioregistry.sdbs.n2t", "sameas": "bioregistry.sdbs", "homepage": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/direct_frame_top.cgi", "prefix": "sdbs", "name": "SDBS at AIST", "uri_format": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/cre_frame_disp.cgi?sdbsno=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.sdbs": {"id": "bioregistry.sdbs", "homepage": null, "prefix": "sdbs", "name": "Spectral Database for Organic Compounds", "uri_format": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/cre_frame_disp.cgi?sdbsno=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.sedml.format.miriam": {"id": "bioregistry.sedml.format.miriam", "sameas": "bioregistry.sedml.format", "homepage": "http://sed-ml.org/", "prefix": "sedml.format", "name": "SED-ML data format", "uri_format": "https://sed-ml.org/urns.html#format:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sedml.format": {"id": "bioregistry.sedml.format", "homepage": null, "prefix": "sedml.format", "name": "SED-ML data format", "uri_format": "https://sed-ml.org/urns.html#format:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.sedml.language.miriam": {"id": "bioregistry.sedml.language.miriam", "sameas": "bioregistry.sedml.language", "homepage": "http://sed-ml.org/", "prefix": "sedml.language", "name": "SED-ML model format", "uri_format": "https://sed-ml.org/urns.html#language:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sedml.language": {"id": "bioregistry.sedml.language", "homepage": null, "prefix": "sedml.language", "name": "SED-ML model format", "uri_format": "https://sed-ml.org/urns.html#language:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.seed.n2t": {"id": "bioregistry.seed.n2t", "sameas": "bioregistry.seed", "homepage": "http://seed-viewer.theseed.org/seedviewer.cgi", "prefix": "seed", "name": "SEED Subsystem at Argonne National Laboratory", "uri_format": "http://seed-viewer.theseed.org/seedviewer.cgi?page=Subsystems&subsystem=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.seed.go": {"id": "bioregistry.seed.go", "sameas": "bioregistry.seed", "homepage": "http://www.theseed.org", "prefix": "SEED", "name": "The SEED;", "uri_format": "http://www.theseed.org/linkin.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.seed": {"id": "bioregistry.seed", "homepage": null, "prefix": "seed", "name": "SEED Subsystem at Argonne National Laboratory", "uri_format": "http://www.theseed.org/linkin.cgi?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.seed.compound.miriam": {"id": "bioregistry.seed.compound.miriam", "sameas": "bioregistry.seed.compound", "homepage": "http://modelseed.org/", "prefix": "seed.compound", "name": "SEED Compound", "uri_format": "http://modelseed.org/biochem/compounds/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.seed.compound.n2t": {"id": "bioregistry.seed.compound.n2t", "sameas": "bioregistry.seed.compound", "homepage": "http://modelseed.org/", "prefix": "seed.compound", "name": "SEED Compound at Argonne National Laboratory", "uri_format": "http://modelseed.org/biochem/compounds/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.seed.compound": {"id": "bioregistry.seed.compound", "homepage": null, "prefix": "seed.compound", "name": "SEED Compound at Argonne National Laboratory", "uri_format": "http://modelseed.org/biochem/compounds/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.seed.reaction.miriam": {"id": "bioregistry.seed.reaction.miriam", "sameas": "bioregistry.seed.reaction", "homepage": "http://modelseed.org/biochem/reactions/", "prefix": "seed.reaction", "name": "SEED Reactions", "uri_format": "http://modelseed.org/biochem/reactions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.seed.reaction.n2t": {"id": "bioregistry.seed.reaction.n2t", "sameas": "bioregistry.seed.reaction", "homepage": "http://modelseed.org/biochem/reactions/", "prefix": "seed.reaction", "name": "SEED Reactions", "uri_format": "http://modelseed.org/biochem/reactions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.seed.reaction.biolink": {"id": "bioregistry.seed.reaction.biolink", "sameas": "bioregistry.seed.reaction", "homepage": null, "prefix": "SEED.REACTION", "name": null, "uri_format": "https://modelseed.org/biochem/reactions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.seed.reaction": {"id": "bioregistry.seed.reaction", "homepage": null, "prefix": "seed.reaction", "name": "SEED Reactions", "uri_format": "https://modelseed.org/biochem/reactions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.seinet.wikidata": {"id": "bioregistry.seinet.wikidata", "sameas": "bioregistry.seinet", "homepage": "http://swbiodiversity.org/seinet/index.php", "prefix": "P6209", "name": "SEINet ID", "uri_format": "http://swbiodiversity.org/seinet/taxa/index.php?taxon=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.seinet": {"id": "bioregistry.seinet", "homepage": "https://swbiodiversity.org/seinet/index.php", "prefix": "seinet", "name": "Southwestern Environmental Information Network", "uri_format": "http://swbiodiversity.org/seinet/taxa/index.php?taxon=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.sgd.miriam": {"id": "bioregistry.sgd.miriam", "sameas": "bioregistry.sgd", "homepage": "https://www.yeastgenome.org/", "prefix": "sgd", "name": "SGD", "uri_format": "https://www.yeastgenome.org/locus/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sgd.n2t": {"id": "bioregistry.sgd.n2t", "sameas": "bioregistry.sgd", "homepage": "https://www.yeastgenome.org/", "prefix": "sgd", "name": "SGD", "uri_format": "https://www.yeastgenome.org/locus/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.sgd.prefixcommons": {"id": "bioregistry.sgd.prefixcommons", "sameas": "bioregistry.sgd", "homepage": "http://www.yeastgenome.org/", "prefix": "sgd", "name": "Saccharomyces Genome Database", "uri_format": "http://db.yeastgenome.org/cgi-bin/locus.pl?dbid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics", "molecular biology"], "authority": "prefixcommons"}, "bioregistry.sgd.wikidata": {"id": "bioregistry.sgd.wikidata", "sameas": "bioregistry.sgd", "homepage": "http://www.yeastgenome.org", "prefix": "P3406", "name": "Saccharomyces Genome Database ID", "uri_format": "http://www.yeastgenome.org/locus/$1/overview", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics", "molecular biology"], "authority": "wikidata"}, "bioregistry.sgd.go": {"id": "bioregistry.sgd.go", "sameas": "bioregistry.sgd", "homepage": "http://www.yeastgenome.org/", "prefix": "SGD", "name": "Saccharomyces Genome Database", "uri_format": "https://www.yeastgenome.org/locus/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics", "molecular biology"], "authority": "go"}, "bioregistry.sgd.uniprot": {"id": "bioregistry.sgd.uniprot", "sameas": "bioregistry.sgd", "homepage": "https://www.yeastgenome.org/", "prefix": "DB-0095", "name": "Saccharomyces Genome Database", "uri_format": "https://www.yeastgenome.org/locus/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics", "molecular biology"], "authority": "uniprot"}, "bioregistry.sgd.biocontext": {"id": "bioregistry.sgd.biocontext", "sameas": "bioregistry.sgd", "homepage": null, "prefix": "SGD", "name": null, "uri_format": "https://www.yeastgenome.org/locus/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics", "molecular biology"], "authority": "biocontext"}, "bioregistry.sgd": {"id": "bioregistry.sgd", "homepage": null, "prefix": "sgd", "name": "Saccharomyces Genome Database ID", "uri_format": "https://www.yeastgenome.org/locus/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics", "molecular biology"], "authority": "bioregistry"}, "bioregistry.sgd.pathways.miriam": {"id": "bioregistry.sgd.pathways.miriam", "sameas": "bioregistry.sgd.pathways", "homepage": "http://pathway.yeastgenome.org/", "prefix": "sgd.pathways", "name": "Saccharomyces genome database pathways", "uri_format": "http://pathway.yeastgenome.org/YEAST/new-image?type=PATHWAY&object=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sgd.pathways.n2t": {"id": "bioregistry.sgd.pathways.n2t", "sameas": "bioregistry.sgd.pathways", "homepage": "http://pathway.yeastgenome.org/", "prefix": "sgd.pathways", "name": "Saccharomyces cerevisiae pathways at SGD.", "uri_format": "http://pathway.yeastgenome.org/YEAST/new-image?type=PATHWAY&object=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.sgd.pathways.prefixcommons": {"id": "bioregistry.sgd.pathways.prefixcommons", "sameas": "bioregistry.sgd.pathways", "homepage": "http://www.yeastgenome.org/", "prefix": "sgd.pathways", "name": "Saccharomyces genome database pathways", "uri_format": "http://pathway.yeastgenome.org/YEAST/new-image?type=PATHWAY&object=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.sgd.pathways": {"id": "bioregistry.sgd.pathways", "homepage": null, "prefix": "sgd.pathways", "name": "Saccharomyces cerevisiae pathways at SGD.", "uri_format": "http://pathway.yeastgenome.org/YEAST/new-image?type=PATHWAY&object=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.sgn.miriam": {"id": "bioregistry.sgn.miriam", "sameas": "bioregistry.sgn", "homepage": "http://solgenomics.net/", "prefix": "sgn", "name": "Sol Genomics Network", "uri_format": "http://solgenomics.net/phenome/locus_display.pl?locus_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sgn.n2t": {"id": "bioregistry.sgn.n2t", "sameas": "bioregistry.sgn", "homepage": "http://solgenomics.net/", "prefix": "sgn", "name": "Sol Genomics Network at Boyce Thompson Institute for Plant Research", "uri_format": "http://solgenomics.net/phenome/locus_display.pl?locus_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.sgn.prefixcommons": {"id": "bioregistry.sgn.prefixcommons", "sameas": "bioregistry.sgn", "homepage": "http://www.sgn.cornell.edu", "prefix": "sgn", "name": "Sol Genomics Network", "uri_format": "http://solgenomics.net/phenome/locus_display.pl?locus_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "botany"], "authority": "prefixcommons"}, "bioregistry.sgn.go": {"id": "bioregistry.sgn.go", "sameas": "bioregistry.sgn", "homepage": "https://www.sgn.cornell.edu/", "prefix": "SGN", "name": "Sol Genomics Network", "uri_format": "http://solgenomics.net/phenome/locus_display.pl?locus_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "botany"], "authority": "go"}, "bioregistry.sgn": {"id": "bioregistry.sgn", "homepage": null, "prefix": "sgn", "name": "Sol Genomics Network at Boyce Thompson Institute for Plant Research", "uri_format": "http://solgenomics.net/phenome/locus_display.pl?locus_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "botany"], "authority": "bioregistry"}, "bioregistry.sheepqtldb.miriam": {"id": "bioregistry.sheepqtldb.miriam", "sameas": "bioregistry.sheepqtldb", "homepage": "https://www.animalgenome.org/QTLdb", "prefix": "sheepqtldb", "name": "Animal Genome Sheep QTL", "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sheepqtldb.n2t": {"id": "bioregistry.sheepqtldb.n2t", "sameas": "bioregistry.sheepqtldb", "homepage": "http://www.animalgenome.org/cgi-bin/QTLdb/OA/index", "prefix": "sheepqtldb", "name": "Animal QTL Sheep at Iowa State University", "uri_format": "http://www.animalgenome.org/cgi-bin/QTLdb/OA/qdetails?QTL_ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.sheepqtldb.prefixcommons": {"id": "bioregistry.sheepqtldb.prefixcommons", "sameas": "bioregistry.sheepqtldb", "homepage": "http://www.animalgenome.org/cgi-bin/QTLdb/OA/index", "prefix": "sheepqtldb", "name": "Sheep Quantitative Trait Locus database", "uri_format": "http://www.animalgenome.org/cgi-bin/QTLdb/OA/qdetails?QTL_ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.sheepqtldb": {"id": "bioregistry.sheepqtldb", "homepage": null, "prefix": "sheepqtldb", "name": "Animal QTL Sheep at Iowa State University", "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.shibase.prefixcommons": {"id": "bioregistry.shibase.prefixcommons", "sameas": "bioregistry.shibase", "homepage": "http://www.mgc.ac.cn/ShiBASE/", "prefix": "shibase", "name": "ShiBASE", "uri_format": "http://www.mgc.ac.cn/cgi-bin/ShiBASE/ShiBASE_query.cgi?synonym=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.shibase": {"id": "bioregistry.shibase", "homepage": null, "prefix": "shibase", "name": "ShiBASE", "uri_format": "http://www.mgc.ac.cn/cgi-bin/ShiBASE/ShiBASE_query.cgi?synonym=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.sider.drug.miriam": {"id": "bioregistry.sider.drug.miriam", "sameas": "bioregistry.sider.drug", "homepage": "http://sideeffects.embl.de/", "prefix": "sider.drug", "name": "SIDER Drug", "uri_format": "http://sideeffects.embl.de/drugs/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sider.drug.n2t": {"id": "bioregistry.sider.drug.n2t", "sameas": "bioregistry.sider.drug", "homepage": "http://sideeffects.embl.de/", "prefix": "sider.drug", "name": "SIDER Drug v2 at EMBL (Heidelberg)", "uri_format": "http://sideeffects.embl.de/drugs/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.sider.drug": {"id": "bioregistry.sider.drug", "homepage": null, "prefix": "sider.drug", "name": "SIDER Drug v2 at EMBL (Heidelberg)", "uri_format": "http://sideeffects.embl.de/drugs/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.sider.effect.miriam": {"id": "bioregistry.sider.effect.miriam", "sameas": "bioregistry.sider.effect", "homepage": "http://sideeffects.embl.de/", "prefix": "sider.effect", "name": "SIDER Side Effect", "uri_format": "http://sideeffects.embl.de/se/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sider.effect.n2t": {"id": "bioregistry.sider.effect.n2t", "sameas": "bioregistry.sider.effect", "homepage": "http://sideeffects.embl.de/", "prefix": "sider.effect", "name": "SIDER Side Effect v2 at EMBL (Heidelberg)", "uri_format": "http://sideeffects.embl.de/se/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.sider.effect": {"id": "bioregistry.sider.effect", "homepage": null, "prefix": "sider.effect", "name": "SIDER Side Effect v2 at EMBL (Heidelberg)", "uri_format": "http://sideeffects.embl.de/se/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.signaling-gateway.miriam": {"id": "bioregistry.signaling-gateway.miriam", "sameas": "bioregistry.signaling-gateway", "homepage": "http://www.signaling-gateway.org/molecule", "prefix": "signaling-gateway", "name": "Signaling Gateway", "uri_format": "http://www.signaling-gateway.org/molecule/query?afcsid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.signaling-gateway.n2t": {"id": "bioregistry.signaling-gateway.n2t", "sameas": "bioregistry.signaling-gateway", "homepage": "http://www.signaling-gateway.org/molecule", "prefix": "signaling-gateway", "name": "Signaling Gateway Molecule Pages", "uri_format": "http://www.signaling-gateway.org/molecule/query?afcsid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.signaling-gateway.prefixcommons": {"id": "bioregistry.signaling-gateway.prefixcommons", "sameas": "bioregistry.signaling-gateway", "homepage": "http://www.signaling-gateway.org/molecule/", "prefix": "signaling-gateway", "name": "The Signaling Gateway", "uri_format": "http://www.signaling-gateway.org/molecule/query?afcsid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.signaling-gateway": {"id": "bioregistry.signaling-gateway", "homepage": null, "prefix": "signaling-gateway", "name": "Signaling Gateway Molecule Pages", "uri_format": "http://www.signaling-gateway.org/molecule/query?afcsid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.signor.miriam": {"id": "bioregistry.signor.miriam", "sameas": "bioregistry.signor", "homepage": "https://signor.uniroma2.it/", "prefix": "signor", "name": "SIGNOR", "uri_format": "https://signor.uniroma2.it/relation_result.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.signor.uniprot": {"id": "bioregistry.signor.uniprot", "sameas": "bioregistry.signor", "homepage": "https://signor.uniroma2.it/", "prefix": "DB-0206", "name": "SIGNOR Signaling Network Open Resource", "uri_format": "https://signor.uniroma2.it/relation_result.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.signor": {"id": "bioregistry.signor", "homepage": null, "prefix": "signor", "name": "SIGNOR Signaling Network Open Resource", "uri_format": "https://signor.uniroma2.it/relation_result.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.sio.miriam": {"id": "bioregistry.sio.miriam", "sameas": "bioregistry.sio", "homepage": "https://www.ebi.ac.uk/ols4/ontologies/sio", "prefix": "sio", "name": "Semanticscience Integrated Ontology", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/sio/terms?short_form=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sio.biolink": {"id": "bioregistry.sio.biolink", "sameas": "bioregistry.sio", "homepage": null, "prefix": "SIO", "name": null, "uri_format": "http://semanticscience.org/resource/SIO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.sio.biocontext": {"id": "bioregistry.sio.biocontext", "sameas": "bioregistry.sio", "homepage": null, "prefix": "SIO", "name": null, "uri_format": "http://semanticscience.org/resource/SIO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.sio": {"id": "bioregistry.sio", "homepage": null, "prefix": "sio", "name": "Semanticscience Integrated Ontology", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/sio/terms?short_form=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.sisu.miriam": {"id": "bioregistry.sisu.miriam", "sameas": "bioregistry.sisu", "homepage": "http://www.sisuproject.fi/", "prefix": "sisu", "name": "SISu", "uri_format": "http://search.sisuproject.fi/#/variant/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sisu.n2t": {"id": "bioregistry.sisu.n2t", "sameas": "bioregistry.sisu", "homepage": "http://www.sisuproject.fi/", "prefix": "sisu", "name": "SISu", "uri_format": "http://search.sisuproject.fi/#/variant/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.sisu": {"id": "bioregistry.sisu", "homepage": null, "prefix": "sisu", "name": "Sequencing Initiative Suomi", "uri_format": "http://search.sisuproject.fi/#/variant/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.sitex.miriam": {"id": "bioregistry.sitex.miriam", "sameas": "bioregistry.sitex", "homepage": "http://www-bionet.sscc.ru/sitex/", "prefix": "sitex", "name": "SitEx", "uri_format": "http://www-bionet.sscc.ru/sitex/index.php?siteid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sitex.n2t": {"id": "bioregistry.sitex.n2t", "sameas": "bioregistry.sitex", "homepage": "http://www-bionet.sscc.ru/sitex/", "prefix": "sitex", "name": "SitEx at Novosibirsk State University", "uri_format": "http://www-bionet.sscc.ru/sitex/index.php?siteid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.sitex.prefixcommons": {"id": "bioregistry.sitex.prefixcommons", "sameas": "bioregistry.sitex", "homepage": "http://www-bionet.sscc.ru/sitex/", "prefix": "sitex", "name": "SitEx database of eukaryotic protein functional sites", "uri_format": "http://www-bionet.sscc.ru/sitex/index.php?siteid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics"], "authority": "prefixcommons"}, "bioregistry.sitex": {"id": "bioregistry.sitex", "homepage": null, "prefix": "sitex", "name": "SitEx database of eukaryotic protein functional sites", "uri_format": "http://www-bionet.sscc.ru/sitex/index.php?siteid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "cell biology", "genetics"], "authority": "bioregistry"}, "bioregistry.skip.cellosaurus": {"id": "bioregistry.skip.cellosaurus", "sameas": "bioregistry.skip", "homepage": "https://www.skip.stemcellinformatics.org/en/", "prefix": "SKIP", "name": "Stemcell Knowledge and Information Portal", "uri_format": "https://skip.stemcellinformatics.org/SKIPSearch/cell_line_detail?accession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.skip": {"id": "bioregistry.skip", "homepage": "https://skip.stemcellinformatics.org/en/", "prefix": "skip", "name": "Stemcell Knowledge and Information Portal", "uri_format": "https://skip.stemcellinformatics.org/SKIPSearch/cell_line_detail?accession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.skm.miriam": {"id": "bioregistry.skm.miriam", "sameas": "bioregistry.skm", "homepage": "http://www.nib.si/eng/", "prefix": "skm", "name": "Stress Knowledge Map", "uri_format": "https://skm.nib.si/api/pss/reactions?reaction_id=$1&return_field=summary", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.skm": {"id": "bioregistry.skm", "homepage": null, "prefix": "skm", "name": "Stress Knowledge Map", "uri_format": "https://skm.nib.si/api/pss/reactions?reaction_id=$1&return_field=summary", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.skos.biocontext": {"id": "bioregistry.skos.biocontext", "sameas": "bioregistry.skos", "homepage": null, "prefix": "skos", "name": null, "uri_format": "http://www.w3.org/2004/02/skos/core#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.skos": {"id": "bioregistry.skos", "homepage": "https://www.w3.org/2004/02/skos/", "prefix": "skos", "name": "Simple Knowledge Organization System", "uri_format": "http://www.w3.org/2004/02/skos/core#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.slkbase.cellosaurus": {"id": "bioregistry.slkbase.cellosaurus", "sameas": "bioregistry.slkbase", "homepage": "https://sumlineknowledgebase.com/", "prefix": "SLKBase", "name": "SUM Breast Cancer Cell Line Knowledge Base", "uri_format": "https://sumlineknowledgebase.com/?page_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.slkbase": {"id": "bioregistry.slkbase", "homepage": null, "prefix": "slkbase", "name": "SUM Breast Cancer Cell Line Knowledge Base", "uri_format": "https://sumlineknowledgebase.com/?page_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.slm.miriam": {"id": "bioregistry.slm.miriam", "sameas": "bioregistry.slm", "homepage": "http://www.swisslipids.org/#/", "prefix": "slm", "name": "SwissLipids", "uri_format": "http://www.swisslipids.org/#/entity/SLM:$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.slm.n2t": {"id": "bioregistry.slm.n2t", "sameas": "bioregistry.slm", "homepage": "http://www.swisslipids.org/#/", "prefix": "swisslipid", "name": "SwissLipids at Swiss Institute of Bioinformatics", "uri_format": "http://www.swisslipids.org/#/entity/SLM:$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.slm.wikidata": {"id": "bioregistry.slm.wikidata", "sameas": "bioregistry.slm", "homepage": "https://www.swisslipids.org/#/", "prefix": "P8691", "name": "SwissLipids ID", "uri_format": "https://www.swisslipids.org/#/entity/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.slm.uniprot": {"id": "bioregistry.slm.uniprot", "sameas": "bioregistry.slm", "homepage": "https://www.swisslipids.org", "prefix": "DB-0197", "name": "SwissLipids knowledge resource for lipid biology", "uri_format": "https://www.swisslipids.org/#/entity/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.slm": {"id": "bioregistry.slm", "homepage": null, "prefix": "slm", "name": "SwissLipids at Swiss Institute of Bioinformatics", "uri_format": "https://www.swisslipids.org/#/entity/$1/", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.smart.miriam": {"id": "bioregistry.smart.miriam", "sameas": "bioregistry.smart", "homepage": "http://smart.embl-heidelberg.de/", "prefix": "smart", "name": "SMART", "uri_format": "http://smart.embl-heidelberg.de/smart/do_annotation.pl?DOMAIN=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.smart.n2t": {"id": "bioregistry.smart.n2t", "sameas": "bioregistry.smart", "homepage": "http://smart.embl-heidelberg.de/", "prefix": "smart", "name": "SMART (Simple Modular Architecture Research Tool)", "uri_format": "http://smart.embl-heidelberg.de/smart/do_annotation.pl?DOMAIN=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.smart.prefixcommons": {"id": "bioregistry.smart.prefixcommons", "sameas": "bioregistry.smart", "homepage": "http://smart.embl.de/", "prefix": "smart", "name": "Simple Modular Architecture Research Tool; a protein domain database", "uri_format": "http://smart.embl-heidelberg.de/smart/do_annotation.pl?DOMAIN=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.smart.go": {"id": "bioregistry.smart.go", "sameas": "bioregistry.smart", "homepage": "http://smart.embl-heidelberg.de/", "prefix": "SMART", "name": "Simple Modular Architecture Research Tool", "uri_format": "http://smart.embl-heidelberg.de/smart/do_annotation.pl?BLAST=DUMMY&DOMAIN=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.smart.uniprot": {"id": "bioregistry.smart.uniprot", "sameas": "bioregistry.smart", "homepage": "http://smart.embl.de/", "prefix": "DB-0097", "name": "Simple Modular Architecture Research Tool; a protein domain database", "uri_format": "http://smart.embl.de/smart/do_annotation.pl?DOMAIN=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.smart": {"id": "bioregistry.smart", "homepage": null, "prefix": "smart", "name": "Simple Modular Architecture Research Tool; a protein domain database", "uri_format": "http://smart.embl.de/smart/do_annotation.pl?DOMAIN=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.smiles.wikidata": {"id": "bioregistry.smiles.wikidata", "sameas": "bioregistry.smiles", "homepage": null, "prefix": "P233", "name": "canonical SMILES", "uri_format": "https://chemapps.stolaf.edu/jmol/jmol.php?model=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.smiles": {"id": "bioregistry.smiles", "homepage": "https://www.daylight.com/dayhtml/doc/theory/theory.smiles.html", "prefix": "smiles", "name": "Simplified Molecular Input Line Entry Specification Format", "uri_format": "https://chemapps.stolaf.edu/jmol/jmol.php?model=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.smpdb.miriam": {"id": "bioregistry.smpdb.miriam", "sameas": "bioregistry.smpdb", "homepage": "https://smpdb.ca/", "prefix": "smpdb", "name": "Small Molecule Pathway Database", "uri_format": "http://smpdb.ca/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.smpdb.n2t": {"id": "bioregistry.smpdb.n2t", "sameas": "bioregistry.smpdb", "homepage": "http://www.smpdb.ca/pathways", "prefix": "smpdb", "name": "Small Molecule Pathway Database", "uri_format": "http://smpdb.ca/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.smpdb.prefixcommons": {"id": "bioregistry.smpdb.prefixcommons", "sameas": "bioregistry.smpdb", "homepage": "http://www.smpdb.ca/", "prefix": "smpdb", "name": "Small Molecule Pathway Database", "uri_format": "http://pathman.smpdb.ca/pathways/$1/pathway", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "prefixcommons"}, "bioregistry.smpdb.biolink": {"id": "bioregistry.smpdb.biolink", "sameas": "bioregistry.smpdb", "homepage": null, "prefix": "PathWhiz", "name": null, "uri_format": "http://smpdb.ca/pathways/#$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "biolink"}, "bioregistry.smpdb.biocontext": {"id": "bioregistry.smpdb.biocontext", "sameas": "bioregistry.smpdb", "homepage": null, "prefix": "SMPDB", "name": null, "uri_format": "http://smpdb.ca/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "biocontext"}, "bioregistry.smpdb": {"id": "bioregistry.smpdb", "homepage": null, "prefix": "smpdb", "name": "Small Molecule Pathway Database", "uri_format": "http://smpdb.ca/view/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry", "chemical sciences"], "authority": "bioregistry"}, "bioregistry.snap.prefixcommons": {"id": "bioregistry.snap.prefixcommons", "sameas": "bioregistry.snap", "homepage": "http://snap.humgen.au.dk", "prefix": "snap", "name": "SNAP: a SNP Annotation Platform", "uri_format": "http://snap.humgen.au.dk/views/geneview.cgi?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.snap": {"id": "bioregistry.snap", "homepage": "http://ontology.buffalo.edu/smith/articles/SNAP_SPAN.pdf", "prefix": "snap", "name": "SNAP: a SNP Annotation Platform", "uri_format": "http://snap.humgen.au.dk/views/geneview.cgi?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.snomedct.miriam": {"id": "bioregistry.snomedct.miriam", "sameas": "bioregistry.snomedct", "homepage": "http://www.snomedbrowser.com/", "prefix": "snomedct", "name": "SNOMED CT", "uri_format": "http://www.snomedbrowser.com/Codes/Details/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.snomedct.n2t": {"id": "bioregistry.snomedct.n2t", "sameas": "bioregistry.snomedct", "homepage": "http://www.snomedbrowser.com/", "prefix": "snomedct", "name": "SNOMED-CT at The National Pathology Exchange", "uri_format": "http://www.snomedbrowser.com/Codes/Details/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.snomedct.wikidata": {"id": "bioregistry.snomedct.wikidata", "sameas": "bioregistry.snomedct", "homepage": "http://snomed.info/", "prefix": "P5806", "name": "SNOMED CT ID", "uri_format": "http://snomed.info/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.snomedct.biolink": {"id": "bioregistry.snomedct.biolink", "sameas": "bioregistry.snomedct", "homepage": null, "prefix": "SNOMEDCT", "name": null, "uri_format": "http://snomed.info/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.snomedct": {"id": "bioregistry.snomedct", "homepage": null, "prefix": "snomedct", "name": "Systematized Nomenclature of Medicine - Clinical Terms", "uri_format": "http://www.snomedbrowser.com/Codes/Details/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.snornabase.prefixcommons": {"id": "bioregistry.snornabase.prefixcommons", "sameas": "bioregistry.snornabase", "homepage": "http://www-snorna.biotoul.fr/", "prefix": "snornalbmedb", "name": "snoRNA-LBME-db", "uri_format": "http://www-snorna.biotoul.fr/plus.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.snornabase": {"id": "bioregistry.snornabase", "homepage": "https://www-snorna.biotoul.fr/", "prefix": "snornabase", "name": "snoRNA-LBME-db", "uri_format": "http://www-snorna.biotoul.fr/plus.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.snp2tfbs.miriam": {"id": "bioregistry.snp2tfbs.miriam", "sameas": "bioregistry.snp2tfbs", "homepage": "https://ccg.epfl.ch/snp2tfbs/", "prefix": "snp2tfbs", "name": "SNP2TFBS", "uri_format": "https://ccg.epfl.ch/cgi-bin/snp2tfbs/snpviewer_form_parser.cgi?snpid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.snp2tfbs": {"id": "bioregistry.snp2tfbs", "homepage": null, "prefix": "snp2tfbs", "name": "SNP to Transcription Factor Binding Sites", "uri_format": "https://ccg.epfl.ch/cgi-bin/snp2tfbs/snpviewer_form_parser.cgi?snpid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.snp500cancer.prefixcommons": {"id": "bioregistry.snp500cancer.prefixcommons", "sameas": "bioregistry.snp500cancer", "homepage": "http://snp500cancer.nci.nih.gov", "prefix": "snp500cancer", "name": "SNP500Cancer", "uri_format": "http://snp500cancer.nci.nih.gov/snp.cfm?both_snp_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.snp500cancer": {"id": "bioregistry.snp500cancer", "homepage": null, "prefix": "snp500cancer", "name": "SNP500Cancer", "uri_format": "http://snp500cancer.nci.nih.gov/snp.cfm?both_snp_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.so.miriam": {"id": "bioregistry.so.miriam", "sameas": "bioregistry.so", "homepage": "http://www.sequenceontology.org/", "prefix": "so", "name": "Sequence Ontology", "uri_format": "http://www.sequenceontology.org/miso/current_release/term/SO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.so.n2t": {"id": "bioregistry.so.n2t", "sameas": "bioregistry.so", "homepage": "http://bioportal.bioontology.org/ontologies/SO", "prefix": "so", "name": "Sequence Ontology through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/SO/SO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.so.prefixcommons": {"id": "bioregistry.so.prefixcommons", "sameas": "bioregistry.so", "homepage": "http://www.sequenceontology.org/", "prefix": "so", "name": "Sequence Ontology", "uri_format": "http://www.sequenceontology.org/miso/current_release/term/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.so": {"id": "bioregistry.so", "homepage": null, "prefix": "so", "name": "Sequence types and features ontology", "uri_format": "http://www.sequenceontology.org/miso/current_release/term/SO:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.soybase.miriam": {"id": "bioregistry.soybase.miriam", "sameas": "bioregistry.soybase", "homepage": "http://soybase.org/", "prefix": "soybase", "name": "SoyBase", "uri_format": "http://www.soybase.org/sbt/search/search_results.php?category=SNP&search_term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.soybase.n2t": {"id": "bioregistry.soybase.n2t", "sameas": "bioregistry.soybase", "homepage": "http://soybase.org/", "prefix": "soybase", "name": "SoyBase at Iowa State University", "uri_format": "http://www.soybase.org/sbt/search/search_results.php?category=SNP&search_term=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.soybase": {"id": "bioregistry.soybase", "homepage": null, "prefix": "soybase", "name": "SoyBase at Iowa State University", "uri_format": "http://www.soybase.org/sbt/search/search_results.php?category=SNP&search_term=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology"], "authority": "bioregistry"}, "bioregistry.spbase.prefixcommons": {"id": "bioregistry.spbase.prefixcommons", "sameas": "bioregistry.spbase", "homepage": "http://spbase.org", "prefix": "spbase", "name": "SpBase", "uri_format": "http://www.spbase.org/SpBase/search/viewAnnoGeneInfo.php?spu_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.spbase": {"id": "bioregistry.spbase", "homepage": null, "prefix": "spbase", "name": "SpBase", "uri_format": "http://www.spbase.org/SpBase/search/viewAnnoGeneInfo.php?spu_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.spd.wikidata": {"id": "bioregistry.spd.wikidata", "sameas": "bioregistry.spd", "homepage": null, "prefix": "P4537", "name": "Spider Ontology ID", "uri_format": "http://purl.obolibrary.org/obo/SPD_$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology", "anatomy and morphology"], "authority": "wikidata"}, "bioregistry.spd": {"id": "bioregistry.spd", "homepage": null, "prefix": "spd", "name": "Spider Anatomy Ontology", "uri_format": "http://purl.obolibrary.org/obo/SPD_$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology", "anatomy and morphology"], "authority": "bioregistry"}, "bioregistry.spdx.miriam": {"id": "bioregistry.spdx.miriam", "sameas": "bioregistry.spdx", "homepage": "https://spdx.org", "prefix": "spdx", "name": "SPDX License List", "uri_format": "https://spdx.org/licenses/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.spdx.n2t": {"id": "bioregistry.spdx.n2t", "sameas": "bioregistry.spdx", "homepage": "https://spdx.org", "prefix": "spdx", "name": "SPDX License List", "uri_format": "https://spdx.org/licenses/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.spdx": {"id": "bioregistry.spdx", "homepage": "https://spdx.org/licenses", "prefix": "spdx", "name": "Software Package Data Exchange License", "uri_format": "https://spdx.org/licenses/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.spike.map.miriam": {"id": "bioregistry.spike.map.miriam", "sameas": "bioregistry.spike.map", "homepage": "http://www.cs.tau.ac.il/~spike/", "prefix": "spike.map", "name": "SPIKE Map", "uri_format": "http://www.cs.tau.ac.il/~spike/maps/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.spike.map.n2t": {"id": "bioregistry.spike.map.n2t", "sameas": "bioregistry.spike.map", "homepage": "http://www.cs.tau.ac.il/~spike/", "prefix": "spike.map", "name": "SPIKE database at Tel Aviv University", "uri_format": "http://www.cs.tau.ac.il/~spike/maps/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.spike.map": {"id": "bioregistry.spike.map", "homepage": null, "prefix": "spike.map", "name": "Signaling Pathway Integrated Knowledge Engine", "uri_format": "http://www.cs.tau.ac.il/~spike/maps/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.splash.miriam": {"id": "bioregistry.splash.miriam", "sameas": "bioregistry.splash", "homepage": "http://mona.fiehnlab.ucdavis.edu/", "prefix": "splash", "name": "SPLASH", "uri_format": "http://mona.fiehnlab.ucdavis.edu/#/spectra/splash/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.splash.n2t": {"id": "bioregistry.splash.n2t", "sameas": "bioregistry.splash", "homepage": "http://mona.fiehnlab.ucdavis.edu/", "prefix": "splash", "name": "Mass Bank of North America (MoNA)", "uri_format": "http://mona.fiehnlab.ucdavis.edu/#/spectra/splash/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.splash": {"id": "bioregistry.splash", "homepage": null, "prefix": "splash", "name": "Mass Bank of North America (MoNA)", "uri_format": "http://mona.fiehnlab.ucdavis.edu/#/spectra/splash/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.splicenest.prefixcommons": {"id": "bioregistry.splicenest.prefixcommons", "sameas": "bioregistry.splicenest", "homepage": "http://splicenest.molgen.mpg.de/", "prefix": "splicenest", "name": "SpliceNest", "uri_format": "http://splicenest.molgen.mpg.de/cgi-bin/splicegraph.cgi?cluster=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.splicenest": {"id": "bioregistry.splicenest", "homepage": null, "prefix": "splicenest", "name": "SpliceNest", "uri_format": "http://splicenest.molgen.mpg.de/cgi-bin/splicegraph.cgi?cluster=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.spp.miriam": {"id": "bioregistry.spp.miriam", "sameas": "bioregistry.spp", "homepage": "https://www.signalingpathways.org/index.jsf", "prefix": "spp", "name": "Signaling Pathways Project", "uri_format": "https://www.signalingpathways.org/datasets/dataset.jsf?doi=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.spp": {"id": "bioregistry.spp", "homepage": null, "prefix": "spp", "name": "Signaling Pathways Project", "uri_format": "https://www.signalingpathways.org/datasets/dataset.jsf?doi=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.sstoss.prefixcommons": {"id": "bioregistry.sstoss.prefixcommons", "sameas": "bioregistry.sstoss", "homepage": "http://caps.ncbs.res.in/SSTOSS/index.htm", "prefix": "sstoss", "name": "Sequence-Structural Templates of Single-member Superfamilies", "uri_format": "http://caps.ncbs.res.in/cgi-bin/mini/databases/SSTOSS/sstoss.cgi?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.sstoss": {"id": "bioregistry.sstoss", "homepage": null, "prefix": "sstoss", "name": "Sequence-Structural Templates of Single-member Superfamilies", "uri_format": "http://caps.ncbs.res.in/cgi-bin/mini/databases/SSTOSS/sstoss.cgi?code=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.stap.miriam": {"id": "bioregistry.stap.miriam", "sameas": "bioregistry.stap", "homepage": "http://psb.kobic.re.kr/STAP/refinement/", "prefix": "stap", "name": "STAP", "uri_format": "http://psb.kobic.re.kr/STAP/refinement1/result.php?search=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.stap.n2t": {"id": "bioregistry.stap.n2t", "sameas": "bioregistry.stap", "homepage": "http://psb.kobic.re.kr/STAP/refinement/", "prefix": "stap", "name": "STAP at Korean Bioinformation Center", "uri_format": "http://psb.kobic.re.kr/STAP/refinement1/result.php?search=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.stap": {"id": "bioregistry.stap", "homepage": null, "prefix": "stap", "name": "Statistical Torsional Angles Potentials of NMR Refinement Database", "uri_format": "http://psb.kobic.re.kr/STAP/refinement1/result.php?search=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.stitch.miriam": {"id": "bioregistry.stitch.miriam", "sameas": "bioregistry.stitch", "homepage": "http://stitch.embl.de/", "prefix": "stitch", "name": "STITCH", "uri_format": "http://stitch.embl.de/interactions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.stitch.n2t": {"id": "bioregistry.stitch.n2t", "sameas": "bioregistry.stitch", "homepage": "http://stitch.embl.de/", "prefix": "stitch", "name": "STITCH", "uri_format": "http://stitch.embl.de/interactions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.stitch": {"id": "bioregistry.stitch", "homepage": null, "prefix": "stitch", "name": "Search Tool for Interactions of Chemicals", "uri_format": "http://stitch.embl.de/interactions/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.storedb.miriam": {"id": "bioregistry.storedb.miriam", "sameas": "bioregistry.storedb", "homepage": "https://www.storedb.org/", "prefix": "storedb", "name": "STOREDB", "uri_format": "https://www.storedb.org/?$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.storedb.n2t": {"id": "bioregistry.storedb.n2t", "sameas": "bioregistry.storedb", "homepage": "https://www.storedb.org/", "prefix": "storedb", "name": "STOREDB at University of Cambridge", "uri_format": "https://www.storedb.org/?$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.storedb": {"id": "bioregistry.storedb", "homepage": null, "prefix": "storedb", "name": "STOREDB at University of Cambridge", "uri_format": "https://www.storedb.org/?$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.string.miriam": {"id": "bioregistry.string.miriam", "sameas": "bioregistry.string", "homepage": "http://string.embl.de/", "prefix": "string", "name": "STRING", "uri_format": "http://string.embl.de/interactions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.string.n2t": {"id": "bioregistry.string.n2t", "sameas": "bioregistry.string", "homepage": "http://string-db.org/", "prefix": "string", "name": "STRING Mirror at Heidelberg", "uri_format": "http://string-db.org/interactions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.string.uniprot": {"id": "bioregistry.string.uniprot", "sameas": "bioregistry.string", "homepage": "https://string-db.org/", "prefix": "DB-0141", "name": "STRING", "uri_format": "https://string-db.org/network/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.string": {"id": "bioregistry.string", "homepage": null, "prefix": "string", "name": "Search Tool for Retrieval of Interacting Genes/Proteins", "uri_format": "https://string-db.org/network/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.sty.biolink": {"id": "bioregistry.sty.biolink", "sameas": "bioregistry.sty", "homepage": null, "prefix": "UMLSSG", "name": null, "uri_format": "https://lhncbc.nlm.nih.gov/semanticnetwork/download/sg_archive/SemGroups-v04.txt$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.sty": {"id": "bioregistry.sty", "homepage": "https://lhncbc.nlm.nih.gov/semanticnetwork/", "prefix": "sty", "name": "UMLS Semantic Types Ontology", "uri_format": "https://lhncbc.nlm.nih.gov/semanticnetwork/download/sg_archive/SemGroups-v04.txt$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.subtilist.miriam": {"id": "bioregistry.subtilist.miriam", "sameas": "bioregistry.subtilist", "homepage": "http://genolist.pasteur.fr/SubtiList/", "prefix": "subtilist", "name": "SubtiList", "uri_format": "http://genolist.pasteur.fr/SubtiList/genome.cgi?external_query+$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.subtilist.n2t": {"id": "bioregistry.subtilist.n2t", "sameas": "bioregistry.subtilist", "homepage": "http://genolist.pasteur.fr/SubtiList/", "prefix": "subtilist", "name": "SubtiList at Pasteur Institute", "uri_format": "http://genolist.pasteur.fr/SubtiList/genome.cgi?external_query+$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.subtilist": {"id": "bioregistry.subtilist", "homepage": null, "prefix": "subtilist", "name": "Bacillus subtilis strain 168 genome database", "uri_format": "http://genolist.pasteur.fr/SubtiList/genome.cgi?external_query+$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.subtiwiki.miriam": {"id": "bioregistry.subtiwiki.miriam", "sameas": "bioregistry.subtiwiki", "homepage": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/Main_Page", "prefix": "subtiwiki", "name": "SubtiWiki", "uri_format": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.subtiwiki.n2t": {"id": "bioregistry.subtiwiki.n2t", "sameas": "bioregistry.subtiwiki", "homepage": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/Main_Page", "prefix": "subtiwiki", "name": "SubtiWiki website", "uri_format": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.subtiwiki.prefixcommons": {"id": "bioregistry.subtiwiki.prefixcommons", "sameas": "bioregistry.subtiwiki", "homepage": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/Main_Page", "prefix": "subtiwiki", "name": "SubtiWiki", "uri_format": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.subtiwiki": {"id": "bioregistry.subtiwiki", "homepage": null, "prefix": "subtiwiki", "name": "SubtiWiki website", "uri_format": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.sugarbind.miriam": {"id": "bioregistry.sugarbind.miriam", "sameas": "bioregistry.sugarbind", "homepage": "http://sugarbind.expasy.org/", "prefix": "sugarbind", "name": "SugarBind", "uri_format": "http://sugarbind.expasy.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.sugarbind.n2t": {"id": "bioregistry.sugarbind.n2t", "sameas": "bioregistry.sugarbind", "homepage": "http://sugarbind.expasy.org/", "prefix": "sugarbind", "name": "SugarBind", "uri_format": "http://sugarbind.expasy.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.sugarbind": {"id": "bioregistry.sugarbind", "homepage": null, "prefix": "sugarbind", "name": "SugarBind", "uri_format": "http://sugarbind.expasy.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.supfam.miriam": {"id": "bioregistry.supfam.miriam", "sameas": "bioregistry.supfam", "homepage": "http://supfam.org/SUPERFAMILY/", "prefix": "supfam", "name": "SUPFAM", "uri_format": "http://supfam.org/SUPERFAMILY/cgi-bin/scop.cgi?ipid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.supfam.n2t": {"id": "bioregistry.supfam.n2t", "sameas": "bioregistry.supfam", "homepage": "http://supfam.org/SUPERFAMILY/", "prefix": "supfam", "name": "SUPFAM at MRC and University of Bristol", "uri_format": "http://supfam.org/SUPERFAMILY/cgi-bin/scop.cgi?ipid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.supfam.prefixcommons": {"id": "bioregistry.supfam.prefixcommons", "sameas": "bioregistry.supfam", "homepage": "http://supfam.org", "prefix": "superfamily", "name": "SUPERFAMILY database of structural and functional annotation", "uri_format": "http://supfam.org/SUPERFAMILY/cgi-bin/scop.cgi?sunid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.supfam.uniprot": {"id": "bioregistry.supfam.uniprot", "sameas": "bioregistry.supfam", "homepage": "https://supfam.org", "prefix": "DB-0155", "name": "Superfamily database of structural and functional annotation", "uri_format": "https://supfam.org/SUPERFAMILY/cgi-bin/scop.cgi?ipid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "uniprot"}, "bioregistry.supfam": {"id": "bioregistry.supfam", "homepage": null, "prefix": "supfam", "name": "SUPERFAMILY database of structural and functional annotation", "uri_format": "https://supfam.org/SUPERFAMILY/cgi-bin/scop.cgi?ipid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.swh.miriam": {"id": "bioregistry.swh.miriam", "sameas": "bioregistry.swh", "homepage": "https://archive.softwareheritage.org", "prefix": "swh", "name": "Software Heritage", "uri_format": "https://archive.softwareheritage.org/browse/swh:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.swh.n2t": {"id": "bioregistry.swh.n2t", "sameas": "bioregistry.swh", "homepage": "https://archive.softwareheritage.org", "prefix": "swh", "name": "Software Heritage", "uri_format": "https://archive.softwareheritage.org/browse/swh:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.swh": {"id": "bioregistry.swh", "homepage": null, "prefix": "swh", "name": "Software Heritage", "uri_format": "https://archive.softwareheritage.org/browse/swh:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.swiss-model.miriam": {"id": "bioregistry.swiss-model.miriam", "sameas": "bioregistry.swiss-model", "homepage": "https://swissmodel.expasy.org", "prefix": "swiss-model", "name": "SWISS-MODEL Repository", "uri_format": "https://swissmodel.expasy.org/repository/uniprot/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.swiss-model.n2t": {"id": "bioregistry.swiss-model.n2t", "sameas": "bioregistry.swiss-model", "homepage": "https://swissmodel.expasy.org", "prefix": "swiss-model", "name": "SWISS-MODEL at SIB Swiss Institute of Bioinformatics", "uri_format": "https://swissmodel.expasy.org/repository/uniprot/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.swiss-model.prefixcommons": {"id": "bioregistry.swiss-model.prefixcommons", "sameas": "bioregistry.swiss-model", "homepage": "http://swissmodel.expasy.org/", "prefix": "swissmodel", "name": "SWISS-MODEL repository of 3D protein structure models", "uri_format": "http://swissmodel.expasy.org/repository/smr.php?sptr_ac=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.swiss-model": {"id": "bioregistry.swiss-model", "homepage": null, "prefix": "swiss-model", "name": "SWISS-MODEL repository of 3D protein structure models", "uri_format": "https://swissmodel.expasy.org/repository/uniprot/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.swissregulon.miriam": {"id": "bioregistry.swissregulon.miriam", "sameas": "bioregistry.swissregulon", "homepage": "http://swissregulon.unibas.ch", "prefix": "swissregulon", "name": "SwissRegulon", "uri_format": "http://swissregulon.unibas.ch/query/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.swissregulon.n2t": {"id": "bioregistry.swissregulon.n2t", "sameas": "bioregistry.swissregulon", "homepage": "http://swissregulon.unibas.ch", "prefix": "swissregulon", "name": "SwissRegulon", "uri_format": "http://swissregulon.unibas.ch/query/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.swissregulon": {"id": "bioregistry.swissregulon", "homepage": null, "prefix": "swissregulon", "name": "SwissRegulon", "uri_format": "http://swissregulon.unibas.ch/query/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.symp.wikidata": {"id": "bioregistry.symp.wikidata", "sameas": "bioregistry.symp", "homepage": "https://github.com/DiseaseOntology/SymptomOntology", "prefix": "P8656", "name": "Symptom Ontology ID", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/symp/terms?iri=http://purl.obolibrary.org/obo/SYMP_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.symp": {"id": "bioregistry.symp", "homepage": null, "prefix": "symp", "name": "Symptom Ontology ID", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/symp/terms?iri=http://purl.obolibrary.org/obo/SYMP_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.t3db.miriam": {"id": "bioregistry.t3db.miriam", "sameas": "bioregistry.t3db", "homepage": "http://www.t3db.org/", "prefix": "t3db", "name": "T3DB", "uri_format": "http://www.t3db.org/toxins/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.t3db.n2t": {"id": "bioregistry.t3db.n2t", "sameas": "bioregistry.t3db", "homepage": "http://www.t3db.org/", "prefix": "t3db", "name": "Toxin and Toxin Target Database", "uri_format": "http://www.t3db.org/toxins/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.t3db.prefixcommons": {"id": "bioregistry.t3db.prefixcommons", "sameas": "bioregistry.t3db", "homepage": "http://www.t3db.org/", "prefix": "t3db", "name": "Toxin and Toxin Target Database", "uri_format": "http://www.t3db.org/toxins/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.t3db": {"id": "bioregistry.t3db", "homepage": null, "prefix": "t3db", "name": "Toxin and Toxin Target Database", "uri_format": "http://www.t3db.org/toxins/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.tair.gene.miriam": {"id": "bioregistry.tair.gene.miriam", "sameas": "bioregistry.tair.gene", "homepage": "http://arabidopsis.org/index.jsp", "prefix": "tair.gene", "name": "TAIR Gene", "uri_format": "http://arabidopsis.org/servlets/TairObject?accession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.tair.gene.n2t": {"id": "bioregistry.tair.gene.n2t", "sameas": "bioregistry.tair.gene", "homepage": "http://arabidopsis.org/index.jsp", "prefix": "tair.gene", "name": "The Arabidopsis Information Resource (TAIR) Gene", "uri_format": "http://arabidopsis.org/servlets/TairObject?accession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.tair.gene.prefixcommons": {"id": "bioregistry.tair.gene.prefixcommons", "sameas": "bioregistry.tair.gene", "homepage": null, "prefix": "tair.gene", "name": "TAIR-Gene", "uri_format": "http://arabidopsis.org/servlets/TairObject?accession=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.tair.gene": {"id": "bioregistry.tair.gene", "homepage": null, "prefix": "tair.gene", "name": "The Arabidopsis Information Resource (TAIR) Gene", "uri_format": "http://arabidopsis.org/servlets/TairObject?accession=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.tair.locus.miriam": {"id": "bioregistry.tair.locus.miriam", "sameas": "bioregistry.tair.locus", "homepage": "http://arabidopsis.org/index.jsp", "prefix": "tair.locus", "name": "TAIR Locus", "uri_format": "http://www.arabidopsis.org/servlets/TairObject?accession=Locus:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.tair.locus.n2t": {"id": "bioregistry.tair.locus.n2t", "sameas": "bioregistry.tair.locus", "homepage": "http://arabidopsis.org/index.jsp", "prefix": "tair.locus", "name": "The Arabidopsis Information Resource (TAIR) Locus", "uri_format": "http://www.arabidopsis.org/servlets/TairObject?accession=Locus:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.tair.locus.prefixcommons": {"id": "bioregistry.tair.locus.prefixcommons", "sameas": "bioregistry.tair.locus", "homepage": null, "prefix": "tair.locus", "name": "TAIR-Locus", "uri_format": "http://arabidopsis.org/servlets/TairObject?type=locus&name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.tair.locus": {"id": "bioregistry.tair.locus", "homepage": null, "prefix": "tair.locus", "name": "The Arabidopsis Information Resource (TAIR) Locus", "uri_format": "http://www.arabidopsis.org/servlets/TairObject?accession=Locus:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.tair.protein.miriam": {"id": "bioregistry.tair.protein.miriam", "sameas": "bioregistry.tair.protein", "homepage": "http://arabidopsis.org/index.jsp", "prefix": "tair.protein", "name": "TAIR Protein", "uri_format": "http://arabidopsis.org/servlets/TairObject?accession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.tair.protein.n2t": {"id": "bioregistry.tair.protein.n2t", "sameas": "bioregistry.tair.protein", "homepage": "http://arabidopsis.org/index.jsp", "prefix": "tair.protein", "name": "The Arabidopsis Information Resource (TAIR) Protein", "uri_format": "http://arabidopsis.org/servlets/TairObject?accession=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.tair.protein.prefixcommons": {"id": "bioregistry.tair.protein.prefixcommons", "sameas": "bioregistry.tair.protein", "homepage": null, "prefix": "tair.protein", "name": "TAIR-Protein", "uri_format": "http://arabidopsis.org/servlets/TairObject?accession=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.tair.protein": {"id": "bioregistry.tair.protein", "homepage": null, "prefix": "tair.protein", "name": "The Arabidopsis Information Resource (TAIR) Protein", "uri_format": "http://arabidopsis.org/servlets/TairObject?accession=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.tarbase.miriam": {"id": "bioregistry.tarbase.miriam", "sameas": "bioregistry.tarbase", "homepage": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index", "prefix": "tarbase", "name": "TarBase", "uri_format": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index&mirnas=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.tarbase.n2t": {"id": "bioregistry.tarbase.n2t", "sameas": "bioregistry.tarbase", "homepage": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index", "prefix": "tarbase", "name": "TarBase v7 at University of Thessaly", "uri_format": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index&mirnas=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.tarbase": {"id": "bioregistry.tarbase", "homepage": null, "prefix": "tarbase", "name": "TarBase v7 at University of Thessaly", "uri_format": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index&mirnas=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.tcb.cellosaurus": {"id": "bioregistry.tcb.cellosaurus", "sameas": "bioregistry.tcb", "homepage": "https://www.pirbright.ac.uk/tick-cell-lines-views-page", "prefix": "TCB", "name": "Tick Cell Biobank", "uri_format": "https://www.pirbright.ac.uk/node/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.tcb": {"id": "bioregistry.tcb", "homepage": null, "prefix": "tcb", "name": "Tick Cell Biobank", "uri_format": "https://www.pirbright.ac.uk/node/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.tccd.prefixcommons": {"id": "bioregistry.tccd.prefixcommons", "sameas": "bioregistry.tccd", "homepage": "http://www.itb.cnr.it/cellcycle", "prefix": "tccd", "name": "The Cell Cycle DB", "uri_format": "http://www.itb.cnr.it/cellcycle/gene_rep.php?gene_name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.tccd": {"id": "bioregistry.tccd", "homepage": null, "prefix": "tccd", "name": "The Cell Cycle DB", "uri_format": "http://www.itb.cnr.it/cellcycle/gene_rep.php?gene_name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.tcdb.miriam": {"id": "bioregistry.tcdb.miriam", "sameas": "bioregistry.tcdb", "homepage": "http://www.tcdb.org/", "prefix": "tcdb", "name": "Transport Classification Database", "uri_format": "http://www.tcdb.org/search/result.php?tc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.tcdb.n2t": {"id": "bioregistry.tcdb.n2t", "sameas": "bioregistry.tcdb", "homepage": "http://www.tcdb.org/", "prefix": "tcdb", "name": "TCDB", "uri_format": "http://www.tcdb.org/search/result.php?tc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.tcdb.prefixcommons": {"id": "bioregistry.tcdb.prefixcommons", "sameas": "bioregistry.tcdb", "homepage": "http://www.tcdb.org/", "prefix": "tcdb", "name": "Transport Classification Database", "uri_format": "http://www.tcdb.org/search/result.php?tc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.tcdb.wikidata": {"id": "bioregistry.tcdb.wikidata", "sameas": "bioregistry.tcdb", "homepage": "https://www.tcdb.org", "prefix": "P7260", "name": "Transporter Classification Database ID", "uri_format": "http://www.tcdb.org/search/result.php?tc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "wikidata"}, "bioregistry.tcdb.go": {"id": "bioregistry.tcdb.go", "sameas": "bioregistry.tcdb", "homepage": "http://www.tcdb.org/", "prefix": "TC", "name": "Transport Protein Database", "uri_format": "http://www.tcdb.org/tcdb/index.php?tc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.tcdb.uniprot": {"id": "bioregistry.tcdb.uniprot", "sameas": "bioregistry.tcdb", "homepage": "http://www.tcdb.org/", "prefix": "DB-0135", "name": "Transport Classification Database", "uri_format": "http://www.tcdb.org/search/result.php?tc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.tcdb": {"id": "bioregistry.tcdb", "homepage": "https://www.tcdb.org", "prefix": "tcdb", "name": "Transporter Classification Database ID", "uri_format": "http://www.tcdb.org/tcdb/index.php?tc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.tfclass.go": {"id": "bioregistry.tfclass.go", "sameas": "bioregistry.tfclass", "homepage": "http://tfclass.bioinf.med.uni-goettingen.de/", "prefix": "TFClass", "name": "TFClass is a resource for the classification of eukaryotic transcription factors based on the characteristics of their DNA-binding domains", "uri_format": "http://tfclass.bioinf.med.uni-goettingen.de/?tfclass=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.tfclass": {"id": "bioregistry.tfclass", "homepage": "http://tfclass.bioinf.med.uni-goettingen.de", "prefix": "tfclass", "name": "TFClass is a resource for the classification of eukaryotic transcription factors based on the characteristics of their DNA-binding domains", "uri_format": "http://tfclass.bioinf.med.uni-goettingen.de/?tfclass=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.tgd.miriam": {"id": "bioregistry.tgd.miriam", "sameas": "bioregistry.tgd", "homepage": "http://ciliate.org/index.php/", "prefix": "tgd", "name": "Tetrahymena Genome Database", "uri_format": "http://ciliate.org/index.php/feature/details/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.tgd.n2t": {"id": "bioregistry.tgd.n2t", "sameas": "bioregistry.tgd", "homepage": "http://ciliate.org/index.php/", "prefix": "tgd", "name": "TGD at Stanford University", "uri_format": "http://ciliate.org/index.php/feature/details/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.tgd.prefixcommons": {"id": "bioregistry.tgd.prefixcommons", "sameas": "bioregistry.tgd", "homepage": "http://phage.bioc.tulane.edu", "prefix": "tgd", "name": "T4-like genome database", "uri_format": "http://phage.bioc.tulane.edu/cgi-bin/gbrowse/$1?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.tgd": {"id": "bioregistry.tgd", "homepage": null, "prefix": "tgd", "name": "Tetrahymena Genome Database", "uri_format": "http://phage.bioc.tulane.edu/cgi-bin/gbrowse/$1?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.tigrfam.miriam": {"id": "bioregistry.tigrfam.miriam", "sameas": "bioregistry.tigrfam", "homepage": "http://www.jcvi.org/cgi-bin/tigrfams/Listing.cgi", "prefix": "tigrfam", "name": "TIGRFAMS", "uri_format": "http://www.jcvi.org/cgi-bin/tigrfams/HmmReportPage.cgi?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.tigrfam.n2t": {"id": "bioregistry.tigrfam.n2t", "sameas": "bioregistry.tigrfam", "homepage": "http://www.jcvi.org/cgi-bin/tigrfams/Listing.cgi", "prefix": "tigrfam", "name": "TIGRFAM at JCVI", "uri_format": "http://www.jcvi.org/cgi-bin/tigrfams/HmmReportPage.cgi?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.tigrfam.prefixcommons": {"id": "bioregistry.tigrfam.prefixcommons", "sameas": "bioregistry.tigrfam", "homepage": "http://www.jcvi.org/cms/research/projects/tigrfams/", "prefix": "tigrfams", "name": "TIGRFAMs HMM collection at the J. Craig Venter Institute", "uri_format": "http://cmr.jcvi.org/cgi-bin/CMR/HmmReport.cgi?hmm_acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.tigrfam": {"id": "bioregistry.tigrfam", "homepage": null, "prefix": "tigrfam", "name": "TIGRFAMs HMM collection at the J. Craig Venter Institute", "uri_format": "http://www.jcvi.org/cgi-bin/tigrfams/HmmReportPage.cgi?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.tkg.cellosaurus": {"id": "bioregistry.tkg.cellosaurus", "sameas": "bioregistry.tkg", "homepage": "http://www2.idac.tohoku.ac.jp/dep/ccr/", "prefix": "TKG", "name": "Tohoku University cell line catalog", "uri_format": "http://www2.idac.tohoku.ac.jp/dep/ccr/TKGdate/TKGvo10%n/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.tkg": {"id": "bioregistry.tkg", "homepage": "http://www2.idac.tohoku.ac.jp/dep/ccr/", "prefix": "tkg", "name": "Tohoku University cell line catalog", "uri_format": "http://www2.idac.tohoku.ac.jp/dep/ccr/TKGdate/TKGvo10%n/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.tngb.cellosaurus": {"id": "bioregistry.tngb.cellosaurus", "sameas": "bioregistry.tngb", "homepage": "http://biobanknetwork.telethon.it/", "prefix": "TNGB", "name": "Telethon Network of Genetic Biobanks", "uri_format": "http://biobanknetwork.telethon.it/Sample/View?sampleId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.tngb": {"id": "bioregistry.tngb", "homepage": null, "prefix": "tngb", "name": "Telethon Network of Genetic Biobanks", "uri_format": "http://biobanknetwork.telethon.it/Sample/View?sampleId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.togovar.miriam": {"id": "bioregistry.togovar.miriam", "sameas": "bioregistry.togovar", "homepage": "https://grch38.togovar.org/", "prefix": "togovar", "name": "TogoVar", "uri_format": "https://grch38.togovar.org/variant/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.togovar": {"id": "bioregistry.togovar", "homepage": null, "prefix": "togovar", "name": "TogoVar", "uri_format": "https://grch38.togovar.org/variant/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.tokue.cellosaurus": {"id": "bioregistry.tokue.cellosaurus", "sameas": "bioregistry.tokue", "homepage": "http://cell-lines.toku-e.com", "prefix": "TOKU-E", "name": "TOKU-E Cell-culture Database", "uri_format": "http://cell-lines.toku-e.com/Cell-Lines_$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.tokue": {"id": "bioregistry.tokue", "homepage": null, "prefix": "tokue", "name": "TOKU-E Cell-culture Database", "uri_format": "http://cell-lines.toku-e.com/Cell-Lines_$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.tol.miriam": {"id": "bioregistry.tol.miriam", "sameas": "bioregistry.tol", "homepage": "http://tolweb.org/tree/", "prefix": "tol", "name": "Tree of Life", "uri_format": "http://tolweb.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.tol.n2t": {"id": "bioregistry.tol.n2t", "sameas": "bioregistry.tol", "homepage": "http://tolweb.org/tree/", "prefix": "tol", "name": "Tree of Life Web", "uri_format": "http://tolweb.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.tol.wikidata": {"id": "bioregistry.tol.wikidata", "sameas": "bioregistry.tol", "homepage": "http://tolweb.org/tree/", "prefix": "P5221", "name": "Tree of Life Web Project ID", "uri_format": "http://tolweb.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.tol": {"id": "bioregistry.tol", "homepage": null, "prefix": "tol", "name": "Tree of Life Web Project ID", "uri_format": "http://tolweb.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.topdb.miriam": {"id": "bioregistry.topdb.miriam", "sameas": "bioregistry.topdb", "homepage": "http://topdb.enzim.hu/", "prefix": "topdb", "name": "TOPDB", "uri_format": "http://topdb.enzim.hu/?m=show&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.topdb.n2t": {"id": "bioregistry.topdb.n2t", "sameas": "bioregistry.topdb", "homepage": "http://topdb.enzim.hu/", "prefix": "topdb", "name": "TOPDB at Hungarian Academy of Sciences", "uri_format": "http://topdb.enzim.hu/?m=show&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.topdb.prefixcommons": {"id": "bioregistry.topdb.prefixcommons", "sameas": "bioregistry.topdb", "homepage": "http://topdb.enzim.hu", "prefix": "topdb", "name": "The Topology Databank", "uri_format": "http://topdb.enzim.hu/?m=show&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.topdb": {"id": "bioregistry.topdb", "homepage": null, "prefix": "topdb", "name": "Topology Data Bank of Transmembrane Proteins", "uri_format": "http://topdb.enzim.hu/?m=show&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.topfind.miriam": {"id": "bioregistry.topfind.miriam", "sameas": "bioregistry.topfind", "homepage": "http://clipserve.clip.ubc.ca/topfind", "prefix": "topfind", "name": "TopFind", "uri_format": "http://clipserve.clip.ubc.ca/topfind/proteins/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.topfind.n2t": {"id": "bioregistry.topfind.n2t", "sameas": "bioregistry.topfind", "homepage": "http://clipserve.clip.ubc.ca/topfind", "prefix": "topfind", "name": "TopFind at University of British Columbia", "uri_format": "http://clipserve.clip.ubc.ca/topfind/proteins/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.topfind": {"id": "bioregistry.topfind", "homepage": "https://topfind.clip.msl.ubc.ca", "prefix": "topfind", "name": "Termini-Oriented Protein Function INferred Database", "uri_format": "http://clipserve.clip.ubc.ca/topfind/proteins/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.toxoplasma.miriam": {"id": "bioregistry.toxoplasma.miriam", "sameas": "bioregistry.toxoplasma", "homepage": "http://toxodb.org/toxo/", "prefix": "toxoplasma", "name": "ToxoDB", "uri_format": "http://toxodb.org/toxo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.toxoplasma.n2t": {"id": "bioregistry.toxoplasma.n2t", "sameas": "bioregistry.toxoplasma", "homepage": "http://toxodb.org/toxo/", "prefix": "toxoplasma", "name": "ToxoDB at EuPathDB", "uri_format": "http://toxodb.org/toxo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.toxoplasma": {"id": "bioregistry.toxoplasma", "homepage": null, "prefix": "toxoplasma", "name": "ToxoDB at EuPathDB", "uri_format": "http://toxodb.org/toxo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.transportdb.prefixcommons": {"id": "bioregistry.transportdb.prefixcommons", "sameas": "bioregistry.transportdb", "homepage": "http://www.membranetransport.org", "prefix": "transportdb", "name": "TransportDB", "uri_format": "http://www.membranetransport.org/protein.php?pOID=mmar1&pSynonym=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.transportdb": {"id": "bioregistry.transportdb", "homepage": null, "prefix": "transportdb", "name": "TransportDB", "uri_format": "http://www.membranetransport.org/protein.php?pOID=mmar1&pSynonym=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.transyt.miriam": {"id": "bioregistry.transyt.miriam", "sameas": "bioregistry.transyt", "homepage": "https://www.bio.di.uminho.pt/", "prefix": "transyt", "name": "TranSyT", "uri_format": "https://transyt.bio.di.uminho.pt/reactions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.transyt": {"id": "bioregistry.transyt", "homepage": null, "prefix": "transyt", "name": "Transport Systems Tracker", "uri_format": "https://transyt.bio.di.uminho.pt/reactions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.tred.prefixcommons": {"id": "bioregistry.tred.prefixcommons", "sameas": "bioregistry.tred", "homepage": "http://rulai.cshl.edu/TRED", "prefix": "tred", "name": "Transcriptional Regulatory Element Database", "uri_format": "http://rulai.cshl.edu/cgi-bin/TRED/tred.cgi?process=geneInfo&gid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.tred": {"id": "bioregistry.tred", "homepage": null, "prefix": "tred", "name": "Transcriptional Regulatory Element Database", "uri_format": "http://rulai.cshl.edu/cgi-bin/TRED/tred.cgi?process=geneInfo&gid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.treebase.miriam": {"id": "bioregistry.treebase.miriam", "sameas": "bioregistry.treebase", "homepage": "http://treebase.org/", "prefix": "treebase", "name": "TreeBASE", "uri_format": "http://purl.org/phylo/treebase/phylows/study/$1?format=html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.treebase.n2t": {"id": "bioregistry.treebase.n2t", "sameas": "bioregistry.treebase", "homepage": "http://treebase.org/", "prefix": "treebase", "name": "TreeBASE (hosted at National Evolutionary Synthesis Center)", "uri_format": "http://purl.org/phylo/treebase/phylows/study/$1?format=html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.treebase.prefixcommons": {"id": "bioregistry.treebase.prefixcommons", "sameas": "bioregistry.treebase", "homepage": "http://www.treebase.org/", "prefix": "treebase", "name": "TreeBase", "uri_format": "http://www.treebase.org/treebase-web/search/study/summary.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.treebase": {"id": "bioregistry.treebase", "homepage": null, "prefix": "treebase", "name": "TreeBASE (hosted at National Evolutionary Synthesis Center)", "uri_format": "http://www.treebase.org/treebase-web/search/study/summary.html?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.treefam.miriam": {"id": "bioregistry.treefam.miriam", "sameas": "bioregistry.treefam", "homepage": "http://www.treefam.org/", "prefix": "treefam", "name": "TreeFam", "uri_format": "http://www.treefam.org/family/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.treefam.n2t": {"id": "bioregistry.treefam.n2t", "sameas": "bioregistry.treefam", "homepage": "http://www.treefam.org/", "prefix": "treefam", "name": "TreeFam database", "uri_format": "http://www.treefam.org/family/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.treefam.prefixcommons": {"id": "bioregistry.treefam.prefixcommons", "sameas": "bioregistry.treefam", "homepage": "http://www.treefam.org", "prefix": "treefam", "name": "TreeFam", "uri_format": "http://www.treefam.org/cgi-bin/TFinfo.pl?ac=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.treefam.uniprot": {"id": "bioregistry.treefam.uniprot", "sameas": "bioregistry.treefam", "homepage": "http://www.treefam.org", "prefix": "DB-0185", "name": "TreeFam database of animal gene trees", "uri_format": "http://www.treefam.org/family/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.treefam": {"id": "bioregistry.treefam", "homepage": null, "prefix": "treefam", "name": "TreeFam database of animal gene trees", "uri_format": "http://www.treefam.org/family/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.trichdb.miriam": {"id": "bioregistry.trichdb.miriam", "sameas": "bioregistry.trichdb", "homepage": "http://trichdb.org/trichdb/", "prefix": "trichdb", "name": "TrichDB", "uri_format": "http://trichdb.org/trichdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.trichdb.n2t": {"id": "bioregistry.trichdb.n2t", "sameas": "bioregistry.trichdb", "homepage": "http://trichdb.org/trichdb/", "prefix": "trichdb", "name": "TrichDB at EuPathDB", "uri_format": "http://trichdb.org/trichdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.trichdb": {"id": "bioregistry.trichdb", "homepage": null, "prefix": "trichdb", "name": "TrichDB at EuPathDB", "uri_format": "http://trichdb.org/trichdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.tritrypdb.miriam": {"id": "bioregistry.tritrypdb.miriam", "sameas": "bioregistry.tritrypdb", "homepage": "http://tritrypdb.org/tritrypdb/", "prefix": "tritrypdb", "name": "TriTrypDB", "uri_format": "http://tritrypdb.org/tritrypdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.tritrypdb.n2t": {"id": "bioregistry.tritrypdb.n2t", "sameas": "bioregistry.tritrypdb", "homepage": "http://tritrypdb.org/tritrypdb/", "prefix": "tritrypdb", "name": "TriTrypDB at EuPathDB", "uri_format": "http://tritrypdb.org/tritrypdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.tritrypdb.go": {"id": "bioregistry.tritrypdb.go", "sameas": "bioregistry.tritrypdb", "homepage": "https://tritrypdb.org/", "prefix": "TriTrypDB", "name": "TriTrypDB", "uri_format": "https://tritrypdb.org/tritrypdb/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.tritrypdb": {"id": "bioregistry.tritrypdb", "homepage": null, "prefix": "tritrypdb", "name": "TriTrypDB at EuPathDB", "uri_format": "https://tritrypdb.org/tritrypdb/app/record/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.trnadbce.prefixcommons": {"id": "bioregistry.trnadbce.prefixcommons", "sameas": "bioregistry.trnadbce", "homepage": "http://trna.nagahama-i-bio.ac.jp", "prefix": "trnadbce", "name": "tRNA Gene Database", "uri_format": "http://trna.nagahama-i-bio.ac.jp/cgi-bin/trnadb/whole_detail.cgi?SID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.trnadbce": {"id": "bioregistry.trnadbce", "homepage": null, "prefix": "trnadbce", "name": "tRNA Gene Database", "uri_format": "http://trna.nagahama-i-bio.ac.jp/cgi-bin/trnadb/whole_detail.cgi?SID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.ttd.drug.miriam": {"id": "bioregistry.ttd.drug.miriam", "sameas": "bioregistry.ttd.drug", "homepage": "http://bidd.nus.edu.sg/group/ttd/ttd.asp", "prefix": "ttd.drug", "name": "TTD Drug", "uri_format": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDRUG.asp?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ttd.drug.n2t": {"id": "bioregistry.ttd.drug.n2t", "sameas": "bioregistry.ttd.drug", "homepage": "http://bidd.nus.edu.sg/group/ttd/ttd.asp", "prefix": "ttd.drug", "name": "Therapeutic Target Database Drug", "uri_format": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDRUG.asp?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ttd.drug": {"id": "bioregistry.ttd.drug", "homepage": null, "prefix": "ttd.drug", "name": "Therapeutic Target Database Drug", "uri_format": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDRUG.asp?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ttd.target.miriam": {"id": "bioregistry.ttd.target.miriam", "sameas": "bioregistry.ttd.target", "homepage": "http://bidd.nus.edu.sg/group/ttd/ttd.asp", "prefix": "ttd.target", "name": "TTD Target", "uri_format": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDetail.asp?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ttd.target.n2t": {"id": "bioregistry.ttd.target.n2t", "sameas": "bioregistry.ttd.target", "homepage": "http://bidd.nus.edu.sg/group/ttd/ttd.asp", "prefix": "ttd.target", "name": "Therapeutic Target Database Target", "uri_format": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDetail.asp?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ttd.target": {"id": "bioregistry.ttd.target", "homepage": null, "prefix": "ttd.target", "name": "Therapeutic Target Database Target", "uri_format": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDetail.asp?ID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.uberon.miriam": {"id": "bioregistry.uberon.miriam", "sameas": "bioregistry.uberon", "homepage": "https://www.ebi.ac.uk/ols4/ontologies/uberon", "prefix": "uberon", "name": "UBERON", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/uberon/terms?obo_id=UBERON:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.uberon.n2t": {"id": "bioregistry.uberon.n2t", "sameas": "bioregistry.uberon", "homepage": "http://bioportal.bioontology.org/ontologies/UBERON", "prefix": "uberon", "name": "UBERON through bioPortal", "uri_format": "http://purl.bioontology.org/ontology/UBERON/UBERON:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.uberon.wikidata": {"id": "bioregistry.uberon.wikidata", "sameas": "bioregistry.uberon", "homepage": "http://uberon.github.io", "prefix": "P1554", "name": "UBERON ID", "uri_format": "http://purl.obolibrary.org/obo/UBERON_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.uberon.cellosaurus": {"id": "bioregistry.uberon.cellosaurus", "sameas": "bioregistry.uberon", "homepage": "https://uberon.github.io/", "prefix": "UBERON", "name": "Uber-anatomy ontology", "uri_format": "https://www.ebi.ac.uk/ols/ontologies/cl/terms?iri=http://purl.obolibrary.org/obo/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.uberon": {"id": "bioregistry.uberon", "homepage": null, "prefix": "uberon", "name": "Uberon multi-species anatomy ontology", "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/uberon/terms?obo_id=UBERON:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ubio.namebank.miriam": {"id": "bioregistry.ubio.namebank.miriam", "sameas": "bioregistry.ubio.namebank", "homepage": "http://www.ubio.org", "prefix": "ubio.namebank", "name": "uBio NameBank", "uri_format": "http://www.ubio.org/browser/details.php?namebankID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ubio.namebank.n2t": {"id": "bioregistry.ubio.namebank.n2t", "sameas": "bioregistry.ubio.namebank", "homepage": "http://www.ubio.org", "prefix": "ubio.namebank", "name": "uBio NameBank at The Marine Biological Laboratory", "uri_format": "http://www.ubio.org/browser/details.php?namebankID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ubio.namebank": {"id": "bioregistry.ubio.namebank", "homepage": null, "prefix": "ubio.namebank", "name": "uBio NameBank at The Marine Biological Laboratory", "uri_format": "http://www.ubio.org/browser/details.php?namebankID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ucsc.wikidata": {"id": "bioregistry.ucsc.wikidata", "sameas": "bioregistry.ucsc", "homepage": "https://genome.ucsc.edu", "prefix": "P2576", "name": "UCSC Genome Browser assembly ID", "uri_format": "https://genome.ucsc.edu/cgi-bin/hgTracks?db=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.ucsc.uniprot": {"id": "bioregistry.ucsc.uniprot", "sameas": "bioregistry.ucsc", "homepage": "https://genome.ucsc.edu/", "prefix": "DB-0139", "name": "UCSC genome browser", "uri_format": "https://genome.ucsc.edu/cgi-bin/hgLinkIn?resource=uniprot&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.ucsc.biocontext": {"id": "bioregistry.ucsc.biocontext", "sameas": "bioregistry.ucsc", "homepage": null, "prefix": "UCSC", "name": null, "uri_format": "ftp://hgdownload.cse.ucsc.edu/goldenPath/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.ucsc": {"id": "bioregistry.ucsc", "homepage": "https://genome.ucsc.edu/", "prefix": "ucsc", "name": "UCSC Genome Browser assembly ID", "uri_format": "https://genome.ucsc.edu/cgi-bin/hgTracks?db=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ukprn.wikidata": {"id": "bioregistry.ukprn.wikidata", "sameas": "bioregistry.ukprn", "homepage": "https://www.ukrlp.co.uk/", "prefix": "P4971", "name": "UK Provider Reference Number", "uri_format": "https://www.ukrlp.co.uk/ukrlp/ukrlp_provider.page_pls_provDetails?x=&pn_p_id=$1&pv_status=VERIFIED&pv_vis_code=L", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.ukprn": {"id": "bioregistry.ukprn", "homepage": "https://www.ukrlp.co.uk", "prefix": "ukprn", "name": "UK Provider Reference Number", "uri_format": "https://www.ukrlp.co.uk/ukrlp/ukrlp_provider.page_pls_provDetails?x=&pn_p_id=$1&pv_status=VERIFIED&pv_vis_code=L", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.umbbd.compound.miriam": {"id": "bioregistry.umbbd.compound.miriam", "sameas": "bioregistry.umbbd.compound", "homepage": "http://umbbd.ethz.ch/", "prefix": "umbbd.compound", "name": "UM-BBD Compound", "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=c&compID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.umbbd.compound.n2t": {"id": "bioregistry.umbbd.compound.n2t", "sameas": "bioregistry.umbbd.compound", "homepage": "http://umbbd.ethz.ch/", "prefix": "umbbd.compound", "name": "Biocatalysis/Biodegradation Database Mirror (Compound) at ETH Zurich", "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=c&compID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.umbbd.compound.wikidata": {"id": "bioregistry.umbbd.compound.wikidata", "sameas": "bioregistry.umbbd.compound", "homepage": "http://eawag-bbd.ethz.ch/servlets/pageservlet?ptype=allcomps", "prefix": "P8121", "name": "UM-BBD compound ID", "uri_format": "http://eawag-bbd.ethz.ch/servlets/pageservlet?ptype=c&compID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.umbbd.compound": {"id": "bioregistry.umbbd.compound", "homepage": null, "prefix": "umbbd.compound", "name": "Biocatalysis/Biodegradation Database Mirror (Compound) at ETH Zurich", "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=c&compID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.umbbd.enzyme.miriam": {"id": "bioregistry.umbbd.enzyme.miriam", "sameas": "bioregistry.umbbd.enzyme", "homepage": "http://umbbd.ethz.ch/", "prefix": "umbbd.enzyme", "name": "UM-BBD Enzyme", "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=ep&enzymeID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.umbbd.enzyme.n2t": {"id": "bioregistry.umbbd.enzyme.n2t", "sameas": "bioregistry.umbbd.enzyme", "homepage": "http://umbbd.ethz.ch/", "prefix": "umbbd.enzyme", "name": "Biocatalysis/Biodegradation Database Mirror (Enzyme) at ETH Zurich", "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=ep&enzymeID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.umbbd.enzyme.go": {"id": "bioregistry.umbbd.enzyme.go", "sameas": "bioregistry.umbbd.enzyme", "homepage": "http://eawag-bbd.ethz.ch/", "prefix": "UM-BBD_enzymeID", "name": "EAWAG Biocatalysis/Biodegradation Database", "uri_format": "http://eawag-bbd.ethz.ch/servlets/pageservlet?ptype=ep&enzymeID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.umbbd.enzyme": {"id": "bioregistry.umbbd.enzyme", "homepage": null, "prefix": "umbbd.enzyme", "name": "Biocatalysis/Biodegradation Database Mirror (Enzyme) at ETH Zurich", "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=ep&enzymeID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.umbbd.pathway.miriam": {"id": "bioregistry.umbbd.pathway.miriam", "sameas": "bioregistry.umbbd.pathway", "homepage": "http://umbbd.ethz.ch/", "prefix": "umbbd.pathway", "name": "UM-BBD Pathway", "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=p&pathway_abbr=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.umbbd.pathway.n2t": {"id": "bioregistry.umbbd.pathway.n2t", "sameas": "bioregistry.umbbd.pathway", "homepage": "http://umbbd.ethz.ch/", "prefix": "umbbd.pathway", "name": "Biocatalysis/Biodegradation Database Mirror (Pathway) at ETH Zurich", "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=p&pathway_abbr=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.umbbd.pathway.go": {"id": "bioregistry.umbbd.pathway.go", "sameas": "bioregistry.umbbd.pathway", "homepage": "http://eawag-bbd.ethz.ch/", "prefix": "UM-BBD_pathwayID", "name": "EAWAG Biocatalysis/Biodegradation Database", "uri_format": "http://eawag-bbd.ethz.ch/$1/$1_map.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.umbbd.pathway": {"id": "bioregistry.umbbd.pathway", "homepage": null, "prefix": "umbbd.pathway", "name": "Biocatalysis/Biodegradation Database Mirror (Pathway) at ETH Zurich", "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=p&pathway_abbr=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.umbbd.reaction.miriam": {"id": "bioregistry.umbbd.reaction.miriam", "sameas": "bioregistry.umbbd.reaction", "homepage": "http://umbbd.ethz.ch/", "prefix": "umbbd.reaction", "name": "UM-BBD Reaction", "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=r&reacID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.umbbd.reaction.n2t": {"id": "bioregistry.umbbd.reaction.n2t", "sameas": "bioregistry.umbbd.reaction", "homepage": "http://umbbd.ethz.ch/", "prefix": "umbbd.reaction", "name": "Biocatalysis/Biodegradation Database Mirror (Reaction) at ETH Zurich", "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=r&reacID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.umbbd.reaction.go": {"id": "bioregistry.umbbd.reaction.go", "sameas": "bioregistry.umbbd.reaction", "homepage": "http://eawag-bbd.ethz.ch/", "prefix": "UM-BBD_reactionID", "name": "EAWAG Biocatalysis/Biodegradation Database", "uri_format": "http://eawag-bbd.ethz.ch/servlets/pageservlet?ptype=r&reacID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.umbbd.reaction": {"id": "bioregistry.umbbd.reaction", "homepage": null, "prefix": "umbbd.reaction", "name": "Biocatalysis/Biodegradation Database Mirror (Reaction) at ETH Zurich", "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=r&reacID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.umbbd.rule.miriam": {"id": "bioregistry.umbbd.rule.miriam", "sameas": "bioregistry.umbbd.rule", "homepage": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=allrules", "prefix": "umbbd.rule", "name": "UM-BBD Biotransformation Rule", "uri_format": "http://www.umbbd.ethz.ch/servlets/rule.jsp?rule=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.umbbd.rule.n2t": {"id": "bioregistry.umbbd.rule.n2t", "sameas": "bioregistry.umbbd.rule", "homepage": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=allrules", "prefix": "umbbd.rule", "name": "Biocatalysis/Biodegradation Database Mirror (Biotransformation Rule) at ETH Zurich", "uri_format": "http://www.umbbd.ethz.ch/servlets/rule.jsp?rule=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.umbbd.rule.go": {"id": "bioregistry.umbbd.rule.go", "sameas": "bioregistry.umbbd.rule", "homepage": "http://eawag-bbd.ethz.ch/", "prefix": "UM-BBD_ruleID", "name": "EAWAG Biocatalysis/Biodegradation Database", "uri_format": "http://eawag-bbd.ethz.ch/servlets/rule.jsp?rule=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.umbbd.rule": {"id": "bioregistry.umbbd.rule", "homepage": null, "prefix": "umbbd.rule", "name": "Biocatalysis/Biodegradation Database Mirror (Biotransformation Rule) at ETH Zurich", "uri_format": "http://www.umbbd.ethz.ch/servlets/rule.jsp?rule=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.umls.miriam": {"id": "bioregistry.umls.miriam", "sameas": "bioregistry.umls", "homepage": "http://linkedlifedata.com/", "prefix": "umls", "name": "UMLS", "uri_format": "http://linkedlifedata.com/resource/umls/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.umls.n2t": {"id": "bioregistry.umls.n2t", "sameas": "bioregistry.umls", "homepage": "http://linkedlifedata.com/", "prefix": "umls", "name": "Unified Medical Language System at LinkedLifeData", "uri_format": "http://linkedlifedata.com/resource/umls/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.umls.wikidata": {"id": "bioregistry.umls.wikidata", "sameas": "bioregistry.umls", "homepage": "https://www.nlm.nih.gov/research/umls/rxnorm/", "prefix": "P2892", "name": "UMLS CUI", "uri_format": "https://ncim-stage.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20Metathesaurus&code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.umls.biocontext": {"id": "bioregistry.umls.biocontext", "sameas": "bioregistry.umls", "homepage": null, "prefix": "UMLS", "name": null, "uri_format": "http://linkedlifedata.com/resource/umls/id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.umls": {"id": "bioregistry.umls", "homepage": "https://www.nlm.nih.gov/research/umls", "prefix": "umls", "name": "Unified Medical Language System Concept Unique Identifier", "uri_format": "https://ncim-stage.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20Metathesaurus&code=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.unichem.wikidata": {"id": "bioregistry.unichem.wikidata", "sameas": "bioregistry.unichem", "homepage": "https://chembl.gitbook.io/unichem/downloads", "prefix": "P11089", "name": "UniChem compound ID", "uri_format": "https://www.ebi.ac.uk/unichem/compoundsources?type=uci&compound=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.unichem": {"id": "bioregistry.unichem", "homepage": null, "prefix": "unichem", "name": "UniChem compound ID", "uri_format": "https://www.ebi.ac.uk/unichem/compoundsources?type=uci&compound=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.unigene.miriam": {"id": "bioregistry.unigene.miriam", "sameas": "bioregistry.unigene", "homepage": "http://www.ncbi.nlm.nih.gov/unigene", "prefix": "unigene", "name": "UniGene", "uri_format": "http://www.ncbi.nlm.nih.gov/UniGene/clust.cgi?UGID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.unigene.n2t": {"id": "bioregistry.unigene.n2t", "sameas": "bioregistry.unigene", "homepage": "http://www.ncbi.nlm.nih.gov/unigene", "prefix": "unigene", "name": "UniGene at NCBI", "uri_format": "http://www.ncbi.nlm.nih.gov/UniGene/clust.cgi?UGID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.unigene.prefixcommons": {"id": "bioregistry.unigene.prefixcommons", "sameas": "bioregistry.unigene", "homepage": "http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=unigene", "prefix": "unigene", "name": "UniGene gene-oriented nucleotide sequence clusters", "uri_format": "http://www.ncbi.nlm.nih.gov/UniGene/clust.cgi?UGID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.unigene": {"id": "bioregistry.unigene", "homepage": null, "prefix": "unigene", "name": "UniGene gene-oriented nucleotide sequence clusters", "uri_format": "http://www.ncbi.nlm.nih.gov/UniGene/clust.cgi?UGID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.unii.miriam": {"id": "bioregistry.unii.miriam", "sameas": "bioregistry.unii", "homepage": "https://precision.fda.gov/uniisearch", "prefix": "unii", "name": "UNII", "uri_format": "https://precision.fda.gov/uniisearch/srs/unii/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.unii.n2t": {"id": "bioregistry.unii.n2t", "sameas": "bioregistry.unii", "homepage": "http://fdasis.nlm.nih.gov/srs/", "prefix": "unii", "name": "UNII at U.S. Food and Drug Administration", "uri_format": "http://fdasis.nlm.nih.gov/srs/srsdirect.jsp?regno=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.unii.wikidata": {"id": "bioregistry.unii.wikidata", "sameas": "bioregistry.unii", "homepage": "http://fdasis.nlm.nih.gov/srs", "prefix": "P652", "name": "UNII", "uri_format": "https://precision.fda.gov/uniisearch/srs/unii/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.unii.biocontext": {"id": "bioregistry.unii.biocontext", "sameas": "bioregistry.unii", "homepage": null, "prefix": "UNII", "name": null, "uri_format": "http://fdasis.nlm.nih.gov/srs/unii/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.unii": {"id": "bioregistry.unii", "homepage": null, "prefix": "unii", "name": "UNII at U.S. Food and Drug Administration", "uri_format": "https://precision.fda.gov/uniisearch/srs/unii/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.unimod.miriam": {"id": "bioregistry.unimod.miriam", "sameas": "bioregistry.unimod", "homepage": "http://www.unimod.org/", "prefix": "unimod", "name": "Unimod", "uri_format": "http://www.unimod.org/modifications_view.php?editid1=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.unimod.n2t": {"id": "bioregistry.unimod.n2t", "sameas": "bioregistry.unimod", "homepage": "http://www.unimod.org/", "prefix": "unimod", "name": "Unimod at Matrix Sciences Ltd.", "uri_format": "http://www.unimod.org/modifications_view.php?editid1=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.unimod": {"id": "bioregistry.unimod", "homepage": null, "prefix": "unimod", "name": "Unimod protein modification database for mass spectrometry", "uri_format": "http://www.unimod.org/modifications_view.php?editid1=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.uniparc.miriam": {"id": "bioregistry.uniparc.miriam", "sameas": "bioregistry.uniparc", "homepage": "https://www.ebi.ac.uk/uniparc/", "prefix": "uniparc", "name": "UniParc", "uri_format": "https://www.ebi.ac.uk/cgi-bin/dbfetch?db=uniparc&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.uniparc.n2t": {"id": "bioregistry.uniparc.n2t", "sameas": "bioregistry.uniparc", "homepage": "http://www.uniprot.org/uniparc/", "prefix": "uniparc", "name": "UniParc through UniProt", "uri_format": "http://www.uniprot.org/uniparc/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.uniparc.prefixcommons": {"id": "bioregistry.uniparc.prefixcommons", "sameas": "bioregistry.uniparc", "homepage": "http://www.ebi.ac.uk/uniparc/", "prefix": "uniparc", "name": "UniProt Archive", "uri_format": "http://www.ebi.ac.uk/cgi-bin/dbfetch?db=uniparc&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.uniparc.go": {"id": "bioregistry.uniparc.go", "sameas": "bioregistry.uniparc", "homepage": "https://www.uniprot.org/uniparc/", "prefix": "UniParc", "name": "UniProt Archive", "uri_format": "https://www.uniprot.org/uniparc/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.uniparc": {"id": "bioregistry.uniparc", "homepage": null, "prefix": "uniparc", "name": "UniParc through UniProt", "uri_format": "https://www.uniprot.org/uniparc/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.unipathway.compound.n2t": {"id": "bioregistry.unipathway.compound.n2t", "sameas": "bioregistry.unipathway.compound", "homepage": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", "prefix": "unipathway.compound", "name": "UniPathway Compound at Swiss Institute of Bioinformatics (SIB)", "uri_format": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upc?upid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.unipathway.compound": {"id": "bioregistry.unipathway.compound", "homepage": null, "prefix": "unipathway.compound", "name": "UniPathway Compound at Swiss Institute of Bioinformatics (SIB)", "uri_format": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upc?upid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.unipathway.reaction.n2t": {"id": "bioregistry.unipathway.reaction.n2t", "sameas": "bioregistry.unipathway.reaction", "homepage": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", "prefix": "unipathway.reaction", "name": "UniPathway Reaction at Swiss Institute of Bioinformatics (SIB)", "uri_format": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/ucr?upid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.unipathway.reaction": {"id": "bioregistry.unipathway.reaction", "homepage": null, "prefix": "unipathway.reaction", "name": "UniPathway Reaction at Swiss Institute of Bioinformatics (SIB)", "uri_format": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/ucr?upid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.uniprot.miriam": {"id": "bioregistry.uniprot.miriam", "sameas": "bioregistry.uniprot", "homepage": "https://www.uniprot.org/", "prefix": "uniprot", "name": "UniProt Knowledgebase", "uri_format": "https://purl.uniprot.org/uniprot/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.uniprot.n2t": {"id": "bioregistry.uniprot.n2t", "sameas": "bioregistry.uniprot", "homepage": "https://www.uniprot.org/", "prefix": "uniprot", "name": "Universal Protein Resource using Persistent URL system", "uri_format": "https://purl.uniprot.org/uniprot/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.uniprot.prefixcommons": {"id": "bioregistry.uniprot.prefixcommons", "sameas": "bioregistry.uniprot", "homepage": "http://www.uniprot.org/", "prefix": "uniprot", "name": "UniProt Knowledgebase", "uri_format": "http://www.uniprot.org/uniprot/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.uniprot.wikidata": {"id": "bioregistry.uniprot.wikidata", "sameas": "bioregistry.uniprot", "homepage": "http://mygene.info", "prefix": "P352", "name": "UniProt protein ID", "uri_format": "https://www.uniprot.org/uniprot/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "wikidata"}, "bioregistry.uniprot.go": {"id": "bioregistry.uniprot.go", "sameas": "bioregistry.uniprot", "homepage": "http://www.uniprot.org", "prefix": "UniProtKB", "name": "Universal Protein Knowledgebase", "uri_format": "https://www.uniprot.org/uniprot/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "go"}, "bioregistry.uniprot.biolink": {"id": "bioregistry.uniprot.biolink", "sameas": "bioregistry.uniprot", "homepage": null, "prefix": "UniProtKB", "name": null, "uri_format": "http://purl.uniprot.org/uniprot/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "biolink"}, "bioregistry.uniprot.cellosaurus": {"id": "bioregistry.uniprot.cellosaurus", "sameas": "bioregistry.uniprot", "homepage": null, "prefix": "UniProtKB", "name": "UniProt knowledgebase", "uri_format": "https://www.uniprot.org/uniprotkb/$1/entry", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "cellosaurus"}, "bioregistry.uniprot": {"id": "bioregistry.uniprot", "homepage": "http://www.uniprot.org", "prefix": "uniprot", "name": "section of the UniProt Knowledgebase, containing annotated records, which include curator-evaluated computational analysis, as well as, information extracted from the literature", "uri_format": "https://www.uniprot.org/uniprotkb/$1/entry", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.uniprot.chain.miriam": {"id": "bioregistry.uniprot.chain.miriam", "sameas": "bioregistry.uniprot.chain", "homepage": "https://www.uniprot.org", "prefix": "uniprot.chain", "name": "UniProt Chain", "uri_format": "http://purl.uniprot.org/annotation/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.uniprot.chain": {"id": "bioregistry.uniprot.chain", "homepage": null, "prefix": "uniprot.chain", "name": "UniProt Chain", "uri_format": "http://purl.uniprot.org/annotation/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.uniprot.disease.wikidata": {"id": "bioregistry.uniprot.disease.wikidata", "sameas": "bioregistry.uniprot.disease", "homepage": null, "prefix": "P11430", "name": "UniProt disease ID", "uri_format": "https://www.uniprot.org/diseases/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.uniprot.disease.biolink": {"id": "bioregistry.uniprot.disease.biolink", "sameas": "bioregistry.uniprot.disease", "homepage": null, "prefix": "SPDI", "name": null, "uri_format": "https://api.ncbi.nlm.nih.gov/variation/v0/spdi/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.uniprot.disease": {"id": "bioregistry.uniprot.disease", "homepage": "https://www.uniprot.org/diseases/", "prefix": "uniprot.disease", "name": "UniProt disease ID", "uri_format": "https://www.uniprot.org/diseases/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.uniprot.isoform.miriam": {"id": "bioregistry.uniprot.isoform.miriam", "sameas": "bioregistry.uniprot.isoform", "homepage": "http://www.uniprot.org/", "prefix": "uniprot.isoform", "name": "UniProt Isoform", "uri_format": "http://www.uniprot.org/uniprot/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.uniprot.isoform.n2t": {"id": "bioregistry.uniprot.isoform.n2t", "sameas": "bioregistry.uniprot.isoform", "homepage": "http://www.uniprot.org/uniparc/", "prefix": "uniprot.isoform", "name": "UniProt Isoform through UniParc", "uri_format": "http://www.uniprot.org/uniparc/?query=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.uniprot.isoform.biolink": {"id": "bioregistry.uniprot.isoform.biolink", "sameas": "bioregistry.uniprot.isoform", "homepage": null, "prefix": "UNIPROT.ISOFORM", "name": null, "uri_format": "http://purl.uniprot.org/isoforms/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.uniprot.isoform": {"id": "bioregistry.uniprot.isoform", "homepage": null, "prefix": "uniprot.isoform", "name": "UniProt Isoform through UniParc", "uri_format": "http://www.uniprot.org/uniprot/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.uniprot.journal.wikidata": {"id": "bioregistry.uniprot.journal.wikidata", "sameas": "bioregistry.uniprot.journal", "homepage": "https://www.uniprot.org/journals", "prefix": "P4616", "name": "UniProt journal ID", "uri_format": "https://www.uniprot.org/journals/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.uniprot.journal": {"id": "bioregistry.uniprot.journal", "homepage": null, "prefix": "uniprot.journal", "name": "UniProt journal ID", "uri_format": "https://www.uniprot.org/journals/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.uniprot.keyword.prefixcommons": {"id": "bioregistry.uniprot.keyword.prefixcommons", "sameas": "bioregistry.uniprot.keyword", "homepage": "http://www.uniprot.org/keywords/", "prefix": "uniprot.kw", "name": "UniProt Knowledgebase keywords", "uri_format": "http://www.uniprot.org/keywords/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.uniprot.keyword.go": {"id": "bioregistry.uniprot.keyword.go", "sameas": "bioregistry.uniprot.keyword", "homepage": "http://www.uniprot.org/keywords/", "prefix": "UniProtKB-KW", "name": "UniProt Knowledgebase keywords", "uri_format": "https://www.uniprot.org/keywords/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.uniprot.keyword": {"id": "bioregistry.uniprot.keyword", "homepage": null, "prefix": "uniprot.keyword", "name": "UniProt Knowledgebase keywords", "uri_format": "https://www.uniprot.org/keywords/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.uniprot.location.go": {"id": "bioregistry.uniprot.location.go", "sameas": "bioregistry.uniprot.location", "homepage": "https://www.uniprot.org/locations/", "prefix": "UniProtKB-SubCell", "name": "UniProt Knowledgebase Subcellular Location vocabulary", "uri_format": "http://www.uniprot.org/locations/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.uniprot.location": {"id": "bioregistry.uniprot.location", "homepage": "https://www.uniprot.org/locations/", "prefix": "uniprot.location", "name": "UniProt Knowledgebase Subcellular Location vocabulary", "uri_format": "http://www.uniprot.org/locations/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.uniprot.tissue.miriam": {"id": "bioregistry.uniprot.tissue.miriam", "sameas": "bioregistry.uniprot.tissue", "homepage": "https://www.uniprot.org/docs/tisslist.txt", "prefix": "tissuelist", "name": "Tissue List", "uri_format": "https://www.uniprot.org/tissues/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.uniprot.tissue.n2t": {"id": "bioregistry.uniprot.tissue.n2t", "sameas": "bioregistry.uniprot.tissue", "homepage": "https://www.uniprot.org/docs/tisslist.txt", "prefix": "tissuelist", "name": "Tissue List at Swiss Institute of Bioinformatics", "uri_format": "https://www.uniprot.org/tissues/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.uniprot.tissue": {"id": "bioregistry.uniprot.tissue", "homepage": null, "prefix": "uniprot.tissue", "name": "Tissue List at Swiss Institute of Bioinformatics", "uri_format": "https://www.uniprot.org/tissues/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.uniref.miriam": {"id": "bioregistry.uniref.miriam", "sameas": "bioregistry.uniref", "homepage": "https://www.uniprot.org/", "prefix": "uniref", "name": "UniRef", "uri_format": "https://www.uniprot.org/uniref/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.uniref": {"id": "bioregistry.uniref", "homepage": null, "prefix": "uniref", "name": "Sequence cluster ID (UniRef)", "uri_format": "https://www.uniprot.org/uniref/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.unirule.go": {"id": "bioregistry.unirule.go", "sameas": "bioregistry.unirule", "homepage": "https://www.uniprot.org/unirule/", "prefix": "UniRule", "name": "Manually curated rules for automatic annotation of UniProtKB unreviewed entries", "uri_format": "https://www.uniprot.org/unirule/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.unirule": {"id": "bioregistry.unirule", "homepage": "https://www.uniprot.org/unirule/", "prefix": "unirule", "name": "Manually curated rules for automatic annotation of UniProtKB unreviewed entries", "uri_format": "https://www.uniprot.org/unirule/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.unists.miriam": {"id": "bioregistry.unists.miriam", "sameas": "bioregistry.unists", "homepage": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=unists", "prefix": "unists", "name": "UniSTS", "uri_format": "https://www.ncbi.nlm.nih.gov/genome/sts/sts.cgi?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.unists.n2t": {"id": "bioregistry.unists.n2t", "sameas": "bioregistry.unists", "homepage": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=unists", "prefix": "unists", "name": "UniSTS at NCBI", "uri_format": "https://www.ncbi.nlm.nih.gov/genome/sts/sts.cgi?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.unists.prefixcommons": {"id": "bioregistry.unists.prefixcommons", "sameas": "bioregistry.unists", "homepage": "http://www.ncbi.nlm.nih.gov/unists", "prefix": "unists", "name": "NCBI UniSTS", "uri_format": "http://www.ncbi.nlm.nih.gov/genome/sts/sts.cgi?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.unists": {"id": "bioregistry.unists", "homepage": null, "prefix": "unists", "name": "Database of Sequence Tagged Sites", "uri_format": "https://www.ncbi.nlm.nih.gov/genome/sts/sts.cgi?uid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.unite.miriam": {"id": "bioregistry.unite.miriam", "sameas": "bioregistry.unite", "homepage": "http://unite.ut.ee/", "prefix": "unite", "name": "Unite", "uri_format": "http://unite.ut.ee/bl_forw.php?nimi=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.unite.n2t": {"id": "bioregistry.unite.n2t", "sameas": "bioregistry.unite", "homepage": "http://unite.ut.ee/", "prefix": "unite", "name": "Unite at University of Tartu", "uri_format": "http://unite.ut.ee/bl_forw.php?nimi=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.unite.prefixcommons": {"id": "bioregistry.unite.prefixcommons", "sameas": "bioregistry.unite", "homepage": "http://unite.ut.ee/index.php", "prefix": "unite", "name": "Molecular database for the identification of fungi", "uri_format": "http://unite.ut.ee/bl_forw.php?nimi=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.unite": {"id": "bioregistry.unite", "homepage": null, "prefix": "unite", "name": "Molecular database for the identification of fungi", "uri_format": "http://unite.ut.ee/bl_forw.php?nimi=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.uo.miriam": {"id": "bioregistry.uo.miriam", "sameas": "bioregistry.uo", "homepage": "http://bioportal.bioontology.org/ontologies/UO", "prefix": "uo", "name": "Unit Ontology", "uri_format": "http://purl.bioontology.org/ontology/UO/UO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.uo.n2t": {"id": "bioregistry.uo.n2t", "sameas": "bioregistry.uo", "homepage": "http://bioportal.bioontology.org/ontologies/UO", "prefix": "uo", "name": "Unit Ontology through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/UO/UO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.uo": {"id": "bioregistry.uo", "homepage": null, "prefix": "uo", "name": "Unit Ontology through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/UO/UO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.upa.prefixcommons": {"id": "bioregistry.upa.prefixcommons", "sameas": "bioregistry.upa", "homepage": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", "prefix": "unipathway", "name": "UniPathway, a metabolic door to UniProtKB/Swiss-Prot", "uri_format": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upa?upid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.upa.go": {"id": "bioregistry.upa.go", "sameas": "bioregistry.upa", "homepage": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", "prefix": "UniPathway", "name": "UniPathway", "uri_format": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upa?upid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.upa": {"id": "bioregistry.upa", "homepage": null, "prefix": "upa", "name": "UniPathway, a metabolic door to UniProtKB/Swiss-Prot", "uri_format": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upa?upid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.uspto.miriam": {"id": "bioregistry.uspto.miriam", "sameas": "bioregistry.uspto", "homepage": "http://patft.uspto.gov/netahtml/PTO/index.html", "prefix": "uspto", "name": "USPTO", "uri_format": "http://patft.uspto.gov/netacgi/nph-Parser?Sect2=PTO1&Sect2=HITOFF&p=1&u=/netahtml/PTO/search-bool.html&r=1&f=G&l=50&d=PALL&RefSrch=yes&Query=PN/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.uspto.n2t": {"id": "bioregistry.uspto.n2t", "sameas": "bioregistry.uspto", "homepage": "http://patft.uspto.gov/netahtml/PTO/index.html", "prefix": "uspto", "name": "USPTO patents at USPTO", "uri_format": "http://patft.uspto.gov/netacgi/nph-Parser?Sect2=PTO1&Sect2=HITOFF&p=1&u=/netahtml/PTO/search-bool.html&r=1&f=G&l=50&d=PALL&RefSrch=yes&Query=PN/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.uspto": {"id": "bioregistry.uspto", "homepage": null, "prefix": "uspto", "name": "United States Patent and Trademark Office", "uri_format": "http://patft.uspto.gov/netacgi/nph-Parser?Sect2=PTO1&Sect2=HITOFF&p=1&u=/netahtml/PTO/search-bool.html&r=1&f=G&l=50&d=PALL&RefSrch=yes&Query=PN/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.utrdb.miriam": {"id": "bioregistry.utrdb.miriam", "sameas": "bioregistry.utrdb", "homepage": "https://utrdb.cloud.ba.infn.it/utrdb/index_107.html", "prefix": "utrdb", "name": "UTRdb", "uri_format": "https://utrdb.cloud.ba.infn.it/cgi-bin/utrdb/utrdb?e=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.utrdb": {"id": "bioregistry.utrdb", "homepage": null, "prefix": "utrdb", "name": "UTRdb", "uri_format": "https://utrdb.cloud.ba.infn.it/cgi-bin/utrdb/utrdb?e=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.validatordb.miriam": {"id": "bioregistry.validatordb.miriam", "sameas": "bioregistry.validatordb", "homepage": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/", "prefix": "validatordb", "name": "ValidatorDB", "uri_format": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.validatordb.n2t": {"id": "bioregistry.validatordb.n2t", "sameas": "bioregistry.validatordb", "homepage": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/", "prefix": "validatordb", "name": "ValidatorDB", "uri_format": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.validatordb": {"id": "bioregistry.validatordb", "homepage": null, "prefix": "validatordb", "name": "ValidatorDB", "uri_format": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.vandf.biolink": {"id": "bioregistry.vandf.biolink", "sameas": "bioregistry.vandf", "homepage": null, "prefix": "VANDF", "name": null, "uri_format": "https://www.nlm.nih.gov/research/umls/sourcereleasedocs/current/VANDF/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.vandf": {"id": "bioregistry.vandf", "homepage": "https://www.nlm.nih.gov/research/umls/sourcereleasedocs/current/VANDF", "prefix": "vandf", "name": "Veterans Health Administration National Drug File", "uri_format": "https://www.nlm.nih.gov/research/umls/sourcereleasedocs/current/VANDF/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.vario.miriam": {"id": "bioregistry.vario.miriam", "sameas": "bioregistry.vario", "homepage": "http://bioportal.bioontology.org/ontologies/VARIO", "prefix": "vario", "name": "VariO", "uri_format": "http://purl.bioontology.org/ontology/VARIO/VariO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.vario.n2t": {"id": "bioregistry.vario.n2t", "sameas": "bioregistry.vario", "homepage": "http://bioportal.bioontology.org/ontologies/VARIO", "prefix": "vario", "name": "VariO through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/VARIO/VariO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.vario": {"id": "bioregistry.vario", "homepage": null, "prefix": "vario", "name": "VariO through BioPortal", "uri_format": "http://purl.bioontology.org/ontology/VARIO/VariO:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.vbase2.miriam": {"id": "bioregistry.vbase2.miriam", "sameas": "bioregistry.vbase2", "homepage": "http://www.vbase2.org/vbase2.php", "prefix": "vbase2", "name": "Vbase2", "uri_format": "http://www.vbase2.org/vgene.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.vbase2.n2t": {"id": "bioregistry.vbase2.n2t", "sameas": "bioregistry.vbase2", "homepage": "http://www.vbase2.org/vbase2.php", "prefix": "vbase2", "name": "Vbase2 at German Research Centre for Biotechnology", "uri_format": "http://www.vbase2.org/vgene.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.vbase2.prefixcommons": {"id": "bioregistry.vbase2.prefixcommons", "sameas": "bioregistry.vbase2", "homepage": "http://www.vbase2.org", "prefix": "vbase2", "name": "VBASE2", "uri_format": "http://www.vbase2.org/vgene.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.vbase2": {"id": "bioregistry.vbase2", "homepage": null, "prefix": "vbase2", "name": "Integrative database of germ-line V genes from the immunoglobulin loci of human and mouse", "uri_format": "http://www.vbase2.org/vgene.php?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.vbrc.miriam": {"id": "bioregistry.vbrc.miriam", "sameas": "bioregistry.vbrc", "homepage": "http://vbrc.org/", "prefix": "vbrc", "name": "VBRC", "uri_format": "http://vbrc.org/gene_detail.asp?gene_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.vbrc.n2t": {"id": "bioregistry.vbrc.n2t", "sameas": "bioregistry.vbrc", "homepage": "http://vbrc.org/", "prefix": "vbrc", "name": "VBRC at University of Alabama", "uri_format": "http://vbrc.org/gene_detail.asp?gene_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.vbrc": {"id": "bioregistry.vbrc", "homepage": null, "prefix": "vbrc", "name": "Viral Bioinformatics Resource Center", "uri_format": "http://vbrc.org/gene_detail.asp?gene_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.vcell.miriam": {"id": "bioregistry.vcell.miriam", "sameas": "bioregistry.vcell", "homepage": "https://health.uconn.edu/", "prefix": "vcell", "name": "VCell Published Models", "uri_format": "https://vcell.org/biomodel-$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.vcell": {"id": "bioregistry.vcell", "homepage": null, "prefix": "vcell", "name": "VCell Published Models", "uri_format": "https://vcell.org/biomodel-$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.vectorbase.miriam": {"id": "bioregistry.vectorbase.miriam", "sameas": "bioregistry.vectorbase", "homepage": "https://www.vectorbase.org/", "prefix": "vectorbase", "name": "VectorBase", "uri_format": "https://vectorbase.org/gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.vectorbase.n2t": {"id": "bioregistry.vectorbase.n2t", "sameas": "bioregistry.vectorbase", "homepage": "https://www.vectorbase.org/", "prefix": "vectorbase", "name": "Vectorbase at EMBL-EBI", "uri_format": "https://www.vectorbase.org/search/site/$1?&site=\"Genome\"", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.vectorbase.prefixcommons": {"id": "bioregistry.vectorbase.prefixcommons", "sameas": "bioregistry.vectorbase", "homepage": "http://www.vectorbase.org/index.php", "prefix": "vectorbase", "name": "Invertebrate Vectors of Human Pathogens", "uri_format": "http://www.vectorbase.org/[?species_name]/Gene/Summary?db=core;g=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.vectorbase": {"id": "bioregistry.vectorbase", "homepage": null, "prefix": "vectorbase", "name": "Bioinformatics Resource Center for Invertebrate Vectors of Human Pathogens", "uri_format": "https://www.vectorbase.org/search/site/$1?&site=\"Genome\"", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "biochemistry"], "authority": "bioregistry"}, "bioregistry.vega.prefixcommons": {"id": "bioregistry.vega.prefixcommons", "sameas": "bioregistry.vega", "homepage": "http://vega.sanger.ac.uk/", "prefix": "vega", "name": "The Vertebrate Genome Annotation Database", "uri_format": "http://vega.sanger.ac.uk/[?species_name]/Gene/Summary?g=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.vega": {"id": "bioregistry.vega", "homepage": "https://vega.archive.ensembl.org/index.html", "prefix": "vega", "name": "The Vertebrate Genome Annotation Database", "uri_format": "http://vega.sanger.ac.uk/[?species_name]/Gene/Summary?g=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.vegbank.miriam": {"id": "bioregistry.vegbank.miriam", "sameas": "bioregistry.vegbank", "homepage": "http://vegbank.org/", "prefix": "vegbank", "name": "VegBank", "uri_format": "http://vegbank.org/cite/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.vegbank": {"id": "bioregistry.vegbank", "homepage": null, "prefix": "vegbank", "name": "VegBank", "uri_format": "http://vegbank.org/cite/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.vfb.miriam": {"id": "bioregistry.vfb.miriam", "sameas": "bioregistry.vfb", "homepage": "https://VirtualFlyBrain.org", "prefix": "vfb", "name": "Virtual Fly Brain", "uri_format": "http://virtualflybrain.org/reports/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.vfb.n2t": {"id": "bioregistry.vfb.n2t", "sameas": "bioregistry.vfb", "homepage": "https://VirtualFlyBrain.org", "prefix": "vfb", "name": "Virtual Fly Brain", "uri_format": "http://virtualflybrain.org/reports/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.vfb": {"id": "bioregistry.vfb", "homepage": null, "prefix": "vfb", "name": "Virtual Fly Brain", "uri_format": "http://virtualflybrain.org/reports/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.vfdb.gene.miriam": {"id": "bioregistry.vfdb.gene.miriam", "sameas": "bioregistry.vfdb.gene", "homepage": "http://www.mgc.ac.cn/VFs/", "prefix": "vfdb.gene", "name": "VFDB Gene", "uri_format": "http://www.mgc.ac.cn/cgi-bin/VFs/gene.cgi?GeneID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.vfdb.gene.n2t": {"id": "bioregistry.vfdb.gene.n2t", "sameas": "bioregistry.vfdb.gene", "homepage": "http://www.mgc.ac.cn/VFs/", "prefix": "vfdb.gene", "name": "VFDB Gene at Institute of Pathogen Biology", "uri_format": "http://www.mgc.ac.cn/cgi-bin/VFs/gene.cgi?GeneID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.vfdb.gene": {"id": "bioregistry.vfdb.gene", "homepage": null, "prefix": "vfdb.gene", "name": "VFDB Gene at Institute of Pathogen Biology", "uri_format": "http://www.mgc.ac.cn/cgi-bin/VFs/gene.cgi?GeneID=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.vfdb.genus.miriam": {"id": "bioregistry.vfdb.genus.miriam", "sameas": "bioregistry.vfdb.genus", "homepage": "http://www.mgc.ac.cn/VFs/", "prefix": "vfdb.genus", "name": "VFDB Genus", "uri_format": "http://www.mgc.ac.cn/cgi-bin/VFs/genus.cgi?Genus=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.vfdb.genus.n2t": {"id": "bioregistry.vfdb.genus.n2t", "sameas": "bioregistry.vfdb.genus", "homepage": "http://www.mgc.ac.cn/VFs/", "prefix": "vfdb.genus", "name": "VFDB Genus at Institute of Pathogen Biology", "uri_format": "http://www.mgc.ac.cn/cgi-bin/VFs/genus.cgi?Genus=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.vfdb.genus": {"id": "bioregistry.vfdb.genus", "homepage": null, "prefix": "vfdb.genus", "name": "VFDB Genus at Institute of Pathogen Biology", "uri_format": "http://www.mgc.ac.cn/cgi-bin/VFs/genus.cgi?Genus=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.vgnc.miriam": {"id": "bioregistry.vgnc.miriam", "sameas": "bioregistry.vgnc", "homepage": "https://vertebrate.genenames.org", "prefix": "vgnc", "name": "VGNC", "uri_format": "https://vertebrate.genenames.org/data/gene-symbol-report/#!/vgnc_id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.vgnc.uniprot": {"id": "bioregistry.vgnc.uniprot", "sameas": "bioregistry.vgnc", "homepage": "https://vertebrate.genenames.org/", "prefix": "DB-0226", "name": "Vertebrate Gene Nomenclature Database", "uri_format": "https://vertebrate.genenames.org/data/gene-symbol-report/#!/vgnc_id/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "uniprot"}, "bioregistry.vgnc.cellosaurus": {"id": "bioregistry.vgnc.cellosaurus", "sameas": "bioregistry.vgnc", "homepage": "https://vertebrate.genenames.org/", "prefix": "VGNC", "name": "Vertebrate Gene Nomenclature Committee Database", "uri_format": "https://vertebrate.genenames.org/data/gene-symbol-report/#!/vgnc_id/VGNC:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.vgnc": {"id": "bioregistry.vgnc", "homepage": null, "prefix": "vgnc", "name": "Vertebrate Gene Nomenclature Committee Database", "uri_format": "https://vertebrate.genenames.org/data/gene-symbol-report/#!/vgnc_id/VGNC:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.viaf.miriam": {"id": "bioregistry.viaf.miriam", "sameas": "bioregistry.viaf", "homepage": "http://viaf.org", "prefix": "viaf", "name": "Virtual International Authority File", "uri_format": "http://viaf.org/viaf/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.viaf.n2t": {"id": "bioregistry.viaf.n2t", "sameas": "bioregistry.viaf", "homepage": "http://viaf.org", "prefix": "viaf", "name": "Virtual International Authority File", "uri_format": "http://viaf.org/viaf/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.viaf": {"id": "bioregistry.viaf", "homepage": null, "prefix": "viaf", "name": "Virtual International Authority File", "uri_format": "http://viaf.org/viaf/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.viperdb.prefixcommons": {"id": "bioregistry.viperdb.prefixcommons", "sameas": "bioregistry.viperdb", "homepage": "http://viperdb.scripps.edu/", "prefix": "viperdb", "name": "VIPERdb", "uri_format": "http://viperdb.scripps.edu/info_page.php?VDB=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.viperdb": {"id": "bioregistry.viperdb", "homepage": null, "prefix": "viperdb", "name": "VIPERdb", "uri_format": "http://viperdb.scripps.edu/info_page.php?VDB=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.vipr.miriam": {"id": "bioregistry.vipr.miriam", "sameas": "bioregistry.vipr", "homepage": "http://www.viprbrc.org/brc/home.do?decorator=vipr", "prefix": "vipr", "name": "ViPR Strain", "uri_format": "http://www.viprbrc.org/brc/viprStrainDetails.do?strainName=$1&decorator=arena", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.vipr.n2t": {"id": "bioregistry.vipr.n2t", "sameas": "bioregistry.vipr", "homepage": "http://www.viprbrc.org/brc/home.do?decorator=vipr", "prefix": "vipr", "name": "ViPR Strain at J. Craig Venter Institute", "uri_format": "http://www.viprbrc.org/brc/viprStrainDetails.do?strainName=$1&decorator=arena", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.vipr": {"id": "bioregistry.vipr", "homepage": null, "prefix": "vipr", "name": "Virus Pathogen Database and Analysis Resource", "uri_format": "http://www.viprbrc.org/brc/viprStrainDetails.do?strainName=$1&decorator=arena", "source": "bioregistry.io", "subjects": ["immunology"], "authority": "bioregistry"}, "bioregistry.viralzone.miriam": {"id": "bioregistry.viralzone.miriam", "sameas": "bioregistry.viralzone", "homepage": "http://www.expasy.org/viralzone/", "prefix": "viralzone", "name": "ViralZone", "uri_format": "http://viralzone.expasy.org/all_by_protein/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.viralzone.n2t": {"id": "bioregistry.viralzone.n2t", "sameas": "bioregistry.viralzone", "homepage": "http://www.expasy.org/viralzone/", "prefix": "viralzone", "name": "ViralZone at SIB", "uri_format": "http://viralzone.expasy.org/all_by_protein/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.viralzone.prefixcommons": {"id": "bioregistry.viralzone.prefixcommons", "sameas": "bioregistry.viralzone", "homepage": "http://viralzone.expasy.org/", "prefix": "vz", "name": "ViralZone", "uri_format": "http://viralzone.expasy.org/all_by_protein/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "microbiology"], "authority": "prefixcommons"}, "bioregistry.viralzone.go": {"id": "bioregistry.viralzone.go", "sameas": "bioregistry.viralzone", "homepage": "http://viralzone.expasy.org/", "prefix": "VZ", "name": "ViralZone", "uri_format": "http://viralzone.expasy.org/all_by_protein/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "microbiology"], "authority": "go"}, "bioregistry.viralzone": {"id": "bioregistry.viralzone", "homepage": null, "prefix": "viralzone", "name": "ViralZone at SIB", "uri_format": "http://viralzone.expasy.org/all_by_protein/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences", "microbiology"], "authority": "bioregistry"}, "bioregistry.virmirdb.prefixcommons": {"id": "bioregistry.virmirdb.prefixcommons", "sameas": "bioregistry.virmirdb", "homepage": "http://alk.ibms.sinica.edu.tw", "prefix": "virmirdb", "name": "Vir-Mir db", "uri_format": "http://alk.ibms.sinica.edu.tw/cgi-bin/miRNA/virus.cgi?tax_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.virmirdb": {"id": "bioregistry.virmirdb", "homepage": null, "prefix": "virmirdb", "name": "Vir-Mir db", "uri_format": "http://alk.ibms.sinica.edu.tw/cgi-bin/miRNA/virus.cgi?tax_id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.viroligo.prefixcommons": {"id": "bioregistry.viroligo.prefixcommons", "sameas": "bioregistry.viroligo", "homepage": "http://viroligo.okstate.edu", "prefix": "viroligo", "name": "VirOligo", "uri_format": "http://viroligo.okstate.edu/main.php?vid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.viroligo": {"id": "bioregistry.viroligo", "homepage": null, "prefix": "viroligo", "name": "VirOligo", "uri_format": "http://viroligo.okstate.edu/main.php?vid=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.virsirna.miriam": {"id": "bioregistry.virsirna.miriam", "sameas": "bioregistry.virsirna", "homepage": "http://crdd.osdd.net/servers/virsirnadb", "prefix": "virsirna", "name": "VIRsiRNA", "uri_format": "http://crdd.osdd.net/servers/virsirnadb/record.php?details=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.virsirna.n2t": {"id": "bioregistry.virsirna.n2t", "sameas": "bioregistry.virsirna", "homepage": "http://crdd.osdd.net/servers/virsirnadb", "prefix": "virsirna", "name": "VIRsiRNA at Institute of Microbial Technology", "uri_format": "http://crdd.osdd.net/servers/virsirnadb/record.php?details=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.virsirna": {"id": "bioregistry.virsirna", "homepage": null, "prefix": "virsirna", "name": "VIRsiRNA at Institute of Microbial Technology", "uri_format": "http://crdd.osdd.net/servers/virsirnadb/record.php?details=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.virushostdb.prefixcommons": {"id": "bioregistry.virushostdb.prefixcommons", "sameas": "bioregistry.virushostdb", "homepage": "https://www.genome.jp/virushostdb/", "prefix": "virushostdb", "name": "Virus-HostDB", "uri_format": "https://www.genome.jp/virushostdb/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "microbiology"], "authority": "prefixcommons"}, "bioregistry.virushostdb": {"id": "bioregistry.virushostdb", "homepage": null, "prefix": "virushostdb", "name": "Virus-HostDB", "uri_format": "https://www.genome.jp/virushostdb/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "microbiology"], "authority": "bioregistry"}, "bioregistry.vita.prefixcommons": {"id": "bioregistry.vita.prefixcommons", "sameas": "bioregistry.vita", "homepage": "http://vita.mbc.nctu.edu.tw/", "prefix": "vita", "name": "ViTa: virus' miRNA target", "uri_format": "http://vita.mbc.nctu.edu.tw/search.php?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.vita": {"id": "bioregistry.vita", "homepage": null, "prefix": "vita", "name": "ViTa: virus' miRNA target", "uri_format": "http://vita.mbc.nctu.edu.tw/search.php?acc=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.vmc.biolink": {"id": "bioregistry.vmc.biolink", "sameas": "bioregistry.vmc", "homepage": null, "prefix": "VMC", "name": null, "uri_format": "https://github.com/ga4gh/vr-spec/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.vmc": {"id": "bioregistry.vmc", "homepage": null, "prefix": "vmc", "name": "Variation Modelling Collaboration", "uri_format": "https://github.com/ga4gh/vr-spec/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.vmhgene.miriam": {"id": "bioregistry.vmhgene.miriam", "sameas": "bioregistry.vmhgene", "homepage": "https://www.vmh.life/", "prefix": "vmhgene", "name": "VMH Gene", "uri_format": "https://www.vmh.life/#gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.vmhgene": {"id": "bioregistry.vmhgene", "homepage": null, "prefix": "vmhgene", "name": "VMH Gene", "uri_format": "https://www.vmh.life/#gene/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.vmhmetabolite.miriam": {"id": "bioregistry.vmhmetabolite.miriam", "sameas": "bioregistry.vmhmetabolite", "homepage": "https://www.vmh.life/", "prefix": "vmhmetabolite", "name": "VMH metabolite", "uri_format": "https://www.vmh.life/#metabolite/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.vmhmetabolite.n2t": {"id": "bioregistry.vmhmetabolite.n2t", "sameas": "bioregistry.vmhmetabolite", "homepage": "http://vmh.uni.lu", "prefix": "vmhmetabolite", "name": "VMH metabolite", "uri_format": "http://vmh.uni.lu/#metabolite/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.vmhmetabolite": {"id": "bioregistry.vmhmetabolite", "homepage": null, "prefix": "vmhmetabolite", "name": "VMH metabolite", "uri_format": "https://www.vmh.life/#metabolite/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.vmhreaction.miriam": {"id": "bioregistry.vmhreaction.miriam", "sameas": "bioregistry.vmhreaction", "homepage": "https://www.vmh.life/", "prefix": "vmhreaction", "name": "VMH reaction", "uri_format": "https://www.vmh.life/#reaction/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.vmhreaction.n2t": {"id": "bioregistry.vmhreaction.n2t", "sameas": "bioregistry.vmhreaction", "homepage": "https://vmh.uni.lu", "prefix": "vmhreaction", "name": "VMH reaction", "uri_format": "https://vmh.uni.lu/#reaction/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.vmhreaction": {"id": "bioregistry.vmhreaction", "homepage": null, "prefix": "vmhreaction", "name": "VMH reaction", "uri_format": "https://www.vmh.life/#reaction/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.void.biocontext": {"id": "bioregistry.void.biocontext", "sameas": "bioregistry.void", "homepage": null, "prefix": "void", "name": null, "uri_format": "http://rdfs.org/ns/void#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.void": {"id": "bioregistry.void", "homepage": "http://vocab.deri.ie/void", "prefix": "void", "name": "Vocabulary of Interlinked Datasets", "uri_format": "http://rdfs.org/ns/void#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.wb.rnai.miriam": {"id": "bioregistry.wb.rnai.miriam", "sameas": "bioregistry.wb.rnai", "homepage": "https://www.wormbase.org/", "prefix": "wb.rnai", "name": "WormBase RNAi", "uri_format": "https://www.wormbase.org/species/c_elegans/rnai/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.wb.rnai.n2t": {"id": "bioregistry.wb.rnai.n2t", "sameas": "bioregistry.wb.rnai", "homepage": "https://www.wormbase.org/", "prefix": "wb.rnai", "name": "WormBase RNAi", "uri_format": "https://www.wormbase.org/species/c_elegans/rnai/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.wb.rnai": {"id": "bioregistry.wb.rnai", "homepage": null, "prefix": "wb.rnai", "name": "WormBase RNAi", "uri_format": "https://www.wormbase.org/species/c_elegans/rnai/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.wbbt.prefixcommons": {"id": "bioregistry.wbbt.prefixcommons", "sameas": "bioregistry.wbbt", "homepage": "http://www.wormbase.org/", "prefix": "wbbt", "name": "C. elegans gross anatomy", "uri_format": "http://wormbase.org/db/ontology/anatomy?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology", "anatomy and morphology"], "authority": "prefixcommons"}, "bioregistry.wbbt.biolink": {"id": "bioregistry.wbbt.biolink", "sameas": "bioregistry.wbbt", "homepage": null, "prefix": "WBbt", "name": null, "uri_format": "http://purl.obolibrary.org/obo/WBbt_$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology", "anatomy and morphology"], "authority": "biolink"}, "bioregistry.wbbt": {"id": "bioregistry.wbbt", "homepage": null, "prefix": "wbbt", "name": "C. elegans Gross Anatomy Vocabulary", "uri_format": "http://wormbase.org/db/ontology/anatomy?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology", "anatomy and morphology"], "authority": "bioregistry"}, "bioregistry.wbls.go": {"id": "bioregistry.wbls.go", "sameas": "bioregistry.wbls", "homepage": "http://www.wormbase.org/", "prefix": "WBls", "name": "C. elegans development", "uri_format": "http://www.wormbase.org/get?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology"], "authority": "go"}, "bioregistry.wbls.biolink": {"id": "bioregistry.wbls.biolink", "sameas": "bioregistry.wbls", "homepage": null, "prefix": "WBls", "name": null, "uri_format": "http://purl.obolibrary.org/obo/WBls_$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology"], "authority": "biolink"}, "bioregistry.wbls": {"id": "bioregistry.wbls", "homepage": null, "prefix": "wbls", "name": "C. elegans Development Vocabulary", "uri_format": "http://www.wormbase.org/get?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology"], "authority": "bioregistry"}, "bioregistry.wbphenotype.go": {"id": "bioregistry.wbphenotype.go", "sameas": "bioregistry.wbphenotype", "homepage": "http://www.wormbase.org/", "prefix": "WBPhenotype", "name": "WormBase phenotype ontology", "uri_format": "http://www.wormbase.org/get?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology"], "authority": "go"}, "bioregistry.wbphenotype": {"id": "bioregistry.wbphenotype", "homepage": null, "prefix": "wbphenotype", "name": "C. elegans Phenotype Vocabulary", "uri_format": "http://www.wormbase.org/get?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology"], "authority": "bioregistry"}, "bioregistry.wgs84.biolink": {"id": "bioregistry.wgs84.biolink", "sameas": "bioregistry.wgs84", "homepage": null, "prefix": "wgs", "name": null, "uri_format": "http://www.w3.org/2003/01/geo/wgs84_pos$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.wgs84": {"id": "bioregistry.wgs84", "homepage": "https://www.w3.org/2003/01/geo/wgs84_pos", "prefix": "wgs84", "name": "WGS84 Geo Positioning", "uri_format": "http://www.w3.org/2003/01/geo/wgs84_pos$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.wicell.cellosaurus": {"id": "bioregistry.wicell.cellosaurus", "sameas": "bioregistry.wicell", "homepage": "https://www.wicell.org", "prefix": "WiCell", "name": "WiCell Research Institute Cell Collection", "uri_format": "https://www.wicell.org/home/stem-cells/catalog-of-stem-cell-lines/$1.cmsx?closable=true", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.wicell": {"id": "bioregistry.wicell", "homepage": null, "prefix": "wicell", "name": "WiCell Research Institute Cell Collection", "uri_format": "https://www.wicell.org/home/stem-cells/catalog-of-stem-cell-lines/$1.cmsx?closable=true", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.wikidata.miriam": {"id": "bioregistry.wikidata.miriam", "sameas": "bioregistry.wikidata", "homepage": "https://www.wikidata.org/", "prefix": "wikidata", "name": "Wikidata", "uri_format": "http://www.wikidata.org/entity/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.wikidata.n2t": {"id": "bioregistry.wikidata.n2t", "sameas": "bioregistry.wikidata", "homepage": "https://www.wikidata.org/", "prefix": "wikidata", "name": "Wikidata at Wikimedia Foundation", "uri_format": "https://www.wikidata.org/wiki/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.wikidata.biolink": {"id": "bioregistry.wikidata.biolink", "sameas": "bioregistry.wikidata", "homepage": null, "prefix": "WIKIDATA", "name": null, "uri_format": "https://www.wikidata.org/entity/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.wikidata.cellosaurus": {"id": "bioregistry.wikidata.cellosaurus", "sameas": "bioregistry.wikidata", "homepage": "https://www.wikidata.org/wiki/Wikidata:Main_Page", "prefix": "Wikidata", "name": "Wikidata", "uri_format": "https://www.wikidata.org/wiki/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.wikidata": {"id": "bioregistry.wikidata", "homepage": null, "prefix": "wikidata", "name": "Wikidata at Wikimedia Foundation", "uri_format": "https://www.wikidata.org/wiki/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.wikidata.property.biolink": {"id": "bioregistry.wikidata.property.biolink", "sameas": "bioregistry.wikidata.property", "homepage": null, "prefix": "WIKIDATA_PROPERTY", "name": null, "uri_format": "https://www.wikidata.org/prop/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.wikidata.property.biocontext": {"id": "bioregistry.wikidata.property.biocontext", "sameas": "bioregistry.wikidata.property", "homepage": null, "prefix": "WD_Prop", "name": null, "uri_format": "https://www.wikidata.org/wiki/Property:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.wikidata.property": {"id": "bioregistry.wikidata.property", "homepage": "https://www.wikidata.org", "prefix": "wikidata.property", "name": "Wikidata Property", "uri_format": "https://www.wikidata.org/wiki/Property:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.wikigenes.miriam": {"id": "bioregistry.wikigenes.miriam", "sameas": "bioregistry.wikigenes", "homepage": "http://www.wikigenes.org/", "prefix": "wikigenes", "name": "WikiGenes", "uri_format": "http://www.wikigenes.org/e/gene/e/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.wikigenes.n2t": {"id": "bioregistry.wikigenes.n2t", "sameas": "bioregistry.wikigenes", "homepage": "http://www.wikigenes.org/", "prefix": "wikigenes", "name": "WikiGenes at Massachusetts Institute of Technology", "uri_format": "http://www.wikigenes.org/e/gene/e/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.wikigenes": {"id": "bioregistry.wikigenes", "homepage": null, "prefix": "wikigenes", "name": "WikiGenes at Massachusetts Institute of Technology", "uri_format": "http://www.wikigenes.org/e/gene/e/$1.html", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.wikipathways.miriam": {"id": "bioregistry.wikipathways.miriam", "sameas": "bioregistry.wikipathways", "homepage": "http://www.wikipathways.org/", "prefix": "wikipathways", "name": "WikiPathways", "uri_format": "http://www.wikipathways.org/instance/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.wikipathways.n2t": {"id": "bioregistry.wikipathways.n2t", "sameas": "bioregistry.wikipathways", "homepage": "http://www.wikipathways.org/", "prefix": "wikipathways", "name": "Wikipathways", "uri_format": "http://www.wikipathways.org/instance/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.wikipathways.prefixcommons": {"id": "bioregistry.wikipathways.prefixcommons", "sameas": "bioregistry.wikipathways", "homepage": "http://wikipathways.org/", "prefix": "wikipathways", "name": "WikiPathways", "uri_format": "http://www.wikipathways.org/index.php/Pathway:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.wikipathways.wikidata": {"id": "bioregistry.wikipathways.wikidata", "sameas": "bioregistry.wikipathways", "homepage": "http://www.wikipathways.org", "prefix": "P2410", "name": "WikiPathways ID", "uri_format": "https://new.wikipathways.org/pathways/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.wikipathways": {"id": "bioregistry.wikipathways", "homepage": null, "prefix": "wikipathways", "name": "Pathway ID (WikiPathways)", "uri_format": "https://new.wikipathways.org/pathways/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.wikipedia.en.miriam": {"id": "bioregistry.wikipedia.en.miriam", "sameas": "bioregistry.wikipedia.en", "homepage": "http://en.wikipedia.org/wiki/Main_Page", "prefix": "wikipedia.en", "name": "Wikipedia (En)", "uri_format": "http://en.wikipedia.org/wiki/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.wikipedia.en.n2t": {"id": "bioregistry.wikipedia.en.n2t", "sameas": "bioregistry.wikipedia.en", "homepage": "http://wiki.dbpedia.org/", "prefix": "wikipedia.en", "name": "Wikipedia structured content through DBpedia", "uri_format": "http://dbpedia.org/page/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.wikipedia.en.prefixcommons": {"id": "bioregistry.wikipedia.en.prefixcommons", "sameas": "bioregistry.wikipedia.en", "homepage": "http://en.wikipedia.org/", "prefix": "wikipedia", "name": "Wikipedia", "uri_format": "http://en.wikipedia.org/wiki/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "prefixcommons"}, "bioregistry.wikipedia.en.go": {"id": "bioregistry.wikipedia.en.go", "sameas": "bioregistry.wikipedia.en", "homepage": "http://en.wikipedia.org/", "prefix": "Wikipedia", "name": "Wikipedia", "uri_format": "http://en.wikipedia.org/wiki/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "go"}, "bioregistry.wikipedia.en": {"id": "bioregistry.wikipedia.en", "homepage": null, "prefix": "wikipedia.en", "name": "Wikipedia structured content through DBpedia", "uri_format": "http://en.wikipedia.org/wiki/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.worfdb.miriam": {"id": "bioregistry.worfdb.miriam", "sameas": "bioregistry.worfdb", "homepage": "http://worfdb.dfci.harvard.edu/", "prefix": "worfdb", "name": "Worfdb", "uri_format": "http://worfdb.dfci.harvard.edu/index.php?search_type=name&page=showresultrc&race_query=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.worfdb.n2t": {"id": "bioregistry.worfdb.n2t", "sameas": "bioregistry.worfdb", "homepage": "http://worfdb.dfci.harvard.edu/", "prefix": "worfdb", "name": "Worm Orf DB at Harvard", "uri_format": "http://worfdb.dfci.harvard.edu/index.php?search_type=name&page=showresultrc&race_query=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.worfdb.prefixcommons": {"id": "bioregistry.worfdb.prefixcommons", "sameas": "bioregistry.worfdb", "homepage": "http://worfdb.dfci.harvard.edu/", "prefix": "worfdb", "name": "The C.elegans ORFeome cloning project", "uri_format": "http://worfdb.dfci.harvard.edu/searchallwormorfs.pl?sid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.worfdb": {"id": "bioregistry.worfdb", "homepage": null, "prefix": "worfdb", "name": "The C.elegans ORFeome cloning project", "uri_format": "http://worfdb.dfci.harvard.edu/searchallwormorfs.pl?sid=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.world2dpage.prefixcommons": {"id": "bioregistry.world2dpage.prefixcommons", "sameas": "bioregistry.world2dpage", "homepage": "http://world-2dpage.expasy.org/repository/", "prefix": "world2dpage", "name": "The World-2DPAGE database", "uri_format": "http://world-2dpage.expasy.org/repository/database=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.world2dpage.uniprot": {"id": "bioregistry.world2dpage.uniprot", "sameas": "bioregistry.world2dpage", "homepage": "https://world-2dpage.expasy.org/repository/", "prefix": "DB-0121", "name": "The World-2DPAGE database", "uri_format": "https://world-2dpage.expasy.org/repository/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "uniprot"}, "bioregistry.world2dpage": {"id": "bioregistry.world2dpage", "homepage": null, "prefix": "world2dpage", "name": "The World-2DPAGE database", "uri_format": "https://world-2dpage.expasy.org/repository/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.wormbase.miriam": {"id": "bioregistry.wormbase.miriam", "sameas": "bioregistry.wormbase", "homepage": "https://www.wormbase.org/", "prefix": "wb", "name": "WormBase", "uri_format": "https://www.wormbase.org/get?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.wormbase.n2t": {"id": "bioregistry.wormbase.n2t", "sameas": "bioregistry.wormbase", "homepage": "https://www.wormbase.org/", "prefix": "wb", "name": "WormBase", "uri_format": "https://www.wormbase.org/get?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.wormbase.wikidata": {"id": "bioregistry.wormbase.wikidata", "sameas": "bioregistry.wormbase", "homepage": "http://www.wormbase.org", "prefix": "P3860", "name": "Wormbase Gene ID", "uri_format": "http://www.wormbase.org/db/gene/gene?name=$1;class=Gene", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "anatomy and morphology"], "authority": "wikidata"}, "bioregistry.wormbase.go": {"id": "bioregistry.wormbase.go", "sameas": "bioregistry.wormbase", "homepage": "http://www.wormbase.org/", "prefix": "WB_REF", "name": "WormBase database of nematode biology", "uri_format": "http://www.wormbase.org/get?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "anatomy and morphology"], "authority": "go"}, "bioregistry.wormbase.uniprot": {"id": "bioregistry.wormbase.uniprot", "sameas": "bioregistry.wormbase", "homepage": "https://www.wormbase.org/", "prefix": "DB-0110", "name": "WormBase", "uri_format": "https://wormbase.org/db/seq/protein?name=$1;class=CDS", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "anatomy and morphology"], "authority": "uniprot"}, "bioregistry.wormbase.biolink": {"id": "bioregistry.wormbase.biolink", "sameas": "bioregistry.wormbase", "homepage": null, "prefix": "WBVocab", "name": null, "uri_format": "http://bio2rdf.org/wormbase_vocabulary$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "anatomy and morphology"], "authority": "biolink"}, "bioregistry.wormbase.biocontext": {"id": "bioregistry.wormbase.biocontext", "sameas": "bioregistry.wormbase", "homepage": null, "prefix": "WormBase", "name": null, "uri_format": "https://www.wormbase.org/get?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "anatomy and morphology"], "authority": "biocontext"}, "bioregistry.wormbase": {"id": "bioregistry.wormbase", "homepage": null, "prefix": "wormbase", "name": "Caenorhabditis elegans Genome Database", "uri_format": "https://www.wormbase.org/get?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics", "anatomy and morphology"], "authority": "bioregistry"}, "bioregistry.wormpep.miriam": {"id": "bioregistry.wormpep.miriam", "sameas": "bioregistry.wormpep", "homepage": "https://www.wormbase.org/db/seq/protein", "prefix": "wormpep", "name": "Wormpep", "uri_format": "https://www.wormbase.org/db/seq/protein?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.wormpep.n2t": {"id": "bioregistry.wormpep.n2t", "sameas": "bioregistry.wormpep", "homepage": "https://www.wormbase.org/db/seq/protein", "prefix": "wormpep", "name": "Wormpep (Master)", "uri_format": "https://www.wormbase.org/db/seq/protein?name=WP:$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.wormpep.prefixcommons": {"id": "bioregistry.wormpep.prefixcommons", "sameas": "bioregistry.wormpep", "homepage": "http://www.wormbase.org/db/seq/protein", "prefix": "wormpep", "name": "Caenorhabditis elegans genome sequencing project protein database", "uri_format": "http://www.wormbase.org/db/seq/protein?name=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.wormpep": {"id": "bioregistry.wormpep", "homepage": null, "prefix": "wormpep", "name": "Caenorhabditis elegans genome sequencing project protein database", "uri_format": "https://www.wormbase.org/db/seq/protein?name=WP:$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.worms.miriam": {"id": "bioregistry.worms.miriam", "sameas": "bioregistry.worms", "homepage": "http://www.marinespecies.org/", "prefix": "worms", "name": "World Register of Marine Species", "uri_format": "http://www.marinespecies.org/aphia.php?p=taxdetails&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.worms.n2t": {"id": "bioregistry.worms.n2t", "sameas": "bioregistry.worms", "homepage": "http://www.marinespecies.org/", "prefix": "worms", "name": "World Register of Marine Species", "uri_format": "http://www.marinespecies.org/aphia.php?p=taxdetails&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.worms.wikidata": {"id": "bioregistry.worms.wikidata", "sameas": "bioregistry.worms", "homepage": "https://www.marinespecies.org/aphia.php?p=search", "prefix": "P850", "name": "WoRMS-ID for taxa", "uri_format": "https://www.marinespecies.org/aphia.php?p=taxdetails&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.worms": {"id": "bioregistry.worms", "homepage": null, "prefix": "worms", "name": "World Register of Marine Species", "uri_format": "https://www.marinespecies.org/aphia.php?p=taxdetails&id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.wos.wikidata": {"id": "bioregistry.wos.wikidata", "sameas": "bioregistry.wos", "homepage": null, "prefix": "P8372", "name": "Web of Science ID (work)", "uri_format": "https://gateway.webofknowledge.com/gateway/Gateway.cgi?GWVersion=2&SrcApp=Publons&SrcAuth=Publons_CEL&KeyUT=WOS:$1&DestLinkType=FullRecord&DestApp=WOS_CPL", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.wos": {"id": "bioregistry.wos", "homepage": "https://www.webofscience.com", "prefix": "wos", "name": "Web of Science ID (work)", "uri_format": "https://gateway.webofknowledge.com/gateway/Gateway.cgi?GWVersion=2&SrcApp=Publons&SrcAuth=Publons_CEL&KeyUT=WOS:$1&DestLinkType=FullRecord&DestApp=WOS_CPL", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.wwf.ecoregion.wikidata": {"id": "bioregistry.wwf.ecoregion.wikidata", "sameas": "bioregistry.wwf.ecoregion", "homepage": "https://www.worldwildlife.org/biomes", "prefix": "P1294", "name": "WWF ecoregion code", "uri_format": "http://www.worldwildlife.org/ecoregions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.wwf.ecoregion": {"id": "bioregistry.wwf.ecoregion", "homepage": "https://www.worldwildlife.org/biomes", "prefix": "wwf.ecoregion", "name": "World Wildlife Fund Ecoregion", "uri_format": "http://www.worldwildlife.org/ecoregions/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.xenbase.miriam": {"id": "bioregistry.xenbase.miriam", "sameas": "bioregistry.xenbase", "homepage": "https://www.xenbase.org/", "prefix": "xenbase", "name": "Xenbase", "uri_format": "https://www.xenbase.org/entry/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.xenbase.n2t": {"id": "bioregistry.xenbase.n2t", "sameas": "bioregistry.xenbase", "homepage": "http://www.xenbase.org/", "prefix": "xenbase", "name": "Xenbase at University of Calgary", "uri_format": "http://www.xenbase.org/gene/showgene.do?method=displayGeneSummary&geneId=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.xenbase.prefixcommons": {"id": "bioregistry.xenbase.prefixcommons", "sameas": "bioregistry.xenbase", "homepage": "http://www.xenbase.org", "prefix": "xenbase", "name": "Xenopus laevis and tropicalis biology and genomics resource", "uri_format": "http://www.xenbase.org/gene/showgene.do?method=display&geneId=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.xenbase.uniprot": {"id": "bioregistry.xenbase.uniprot", "sameas": "bioregistry.xenbase", "homepage": "https://www.xenbase.org/", "prefix": "DB-0129", "name": "Xenopus laevis and tropicalis biology and genomics resource", "uri_format": "https://www.xenbase.org/gene/showgene.do?method=display&geneId=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "uniprot"}, "bioregistry.xenbase.biolink": {"id": "bioregistry.xenbase.biolink", "sameas": "bioregistry.xenbase", "homepage": null, "prefix": "Xenbase", "name": null, "uri_format": "http://www.xenbase.org/gene/showgene.do?method=display&geneId=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "biolink"}, "bioregistry.xenbase.biocontext": {"id": "bioregistry.xenbase.biocontext", "sameas": "bioregistry.xenbase", "homepage": null, "prefix": "Xenbase", "name": null, "uri_format": "http://www.xenbase.org/gene/showgene.do?method=display&geneId=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "biocontext"}, "bioregistry.xenbase": {"id": "bioregistry.xenbase", "homepage": null, "prefix": "xenbase", "name": "Xenopus laevis and tropicalis biology and genomics resource", "uri_format": "https://www.xenbase.org/gene/showgene.do?method=display&geneId=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.ximbio.cellosaurus": {"id": "bioregistry.ximbio.cellosaurus", "sameas": "bioregistry.ximbio", "homepage": "https://ximbio.com", "prefix": "Ximbio", "name": "Ximbio reagents online portal", "uri_format": "https://ximbio.com/reagent/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "cellosaurus"}, "bioregistry.ximbio": {"id": "bioregistry.ximbio", "homepage": "https://ximbio.com", "prefix": "ximbio", "name": "Ximbio reagents online portal", "uri_format": "https://ximbio.com/reagent/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.xml.biocontext": {"id": "bioregistry.xml.biocontext", "sameas": "bioregistry.xml", "homepage": null, "prefix": "xml", "name": null, "uri_format": "http://www.w3.org/XML/1998/namespace$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.xml": {"id": "bioregistry.xml", "homepage": "https://www.w3.org/TR/xml/", "prefix": "xml", "name": "Extensible Markup Language", "uri_format": "http://www.w3.org/XML/1998/namespace$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.xpo.biolink": {"id": "bioregistry.xpo.biolink", "sameas": "bioregistry.xpo", "homepage": null, "prefix": "XPO", "name": null, "uri_format": "http://purl.obolibrary.org/obo/XPO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biolink"}, "bioregistry.xpo": {"id": "bioregistry.xpo", "homepage": null, "prefix": "xpo", "name": "Xenopus Phenotype Ontology", "uri_format": "http://purl.obolibrary.org/obo/XPO_$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.xsd.biocontext": {"id": "bioregistry.xsd.biocontext", "sameas": "bioregistry.xsd", "homepage": null, "prefix": "xsd", "name": null, "uri_format": "http://www.w3.org/2001/XMLSchema#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "biocontext"}, "bioregistry.xsd": {"id": "bioregistry.xsd", "homepage": "http://www.w3.org/2001/XMLSchema", "prefix": "xsd", "name": "XML Schema Definition", "uri_format": "http://www.w3.org/2001/XMLSchema#$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ydpm.miriam": {"id": "bioregistry.ydpm.miriam", "sameas": "bioregistry.ydpm", "homepage": "http://www-deletion.stanford.edu/YDPM/", "prefix": "ydpm", "name": "YDPM", "uri_format": "http://www-deletion.stanford.edu/cgi-bin/YDPM/YDPM_search.cgi?thelist=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.ydpm.n2t": {"id": "bioregistry.ydpm.n2t", "sameas": "bioregistry.ydpm", "homepage": "http://www-deletion.stanford.edu/YDPM/", "prefix": "ydpm", "name": "YDPM at Stanford University School of Medicine", "uri_format": "http://www-deletion.stanford.edu/cgi-bin/YDPM/YDPM_search.cgi?thelist=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.ydpm": {"id": "bioregistry.ydpm", "homepage": null, "prefix": "ydpm", "name": "Yeast Deletion Project and Proteomics of Mitochondria Database", "uri_format": "http://www-deletion.stanford.edu/cgi-bin/YDPM/YDPM_search.cgi?thelist=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.yeastintron.miriam": {"id": "bioregistry.yeastintron.miriam", "sameas": "bioregistry.yeastintron", "homepage": "http://intron.ucsc.edu/yeast4.3/", "prefix": "yeastintron", "name": "Yeast Intron Database v4.3", "uri_format": "http://intron.ucsc.edu/cgi-bin/yeast4.3/intronreports.pl?outputformat=full&orfName=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.yeastintron.n2t": {"id": "bioregistry.yeastintron.n2t", "sameas": "bioregistry.yeastintron", "homepage": "http://intron.ucsc.edu/yeast4.3/", "prefix": "yeastintron", "name": "Yeast Intron Database version 4.3 at Baskin School of Engineering", "uri_format": "http://intron.ucsc.edu/cgi-bin/yeast4.3/intronreports.pl?outputformat=full&orfName=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.yeastintron": {"id": "bioregistry.yeastintron", "homepage": null, "prefix": "yeastintron", "name": "Yeast Intron Database version 4.3 at Baskin School of Engineering", "uri_format": "http://intron.ucsc.edu/cgi-bin/yeast4.3/intronreports.pl?outputformat=full&orfName=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.yeastract.prefixcommons": {"id": "bioregistry.yeastract.prefixcommons", "sameas": "bioregistry.yeastract", "homepage": "http://www.yeastract.com", "prefix": "yeastract", "name": "Yeast Searching for Transcriptional Regulators and Consensus Tracking", "uri_format": "http://www.yeastract.com/view.php?existing=locus&orfname=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.yeastract": {"id": "bioregistry.yeastract", "homepage": null, "prefix": "yeastract", "name": "Yeast Searching for Transcriptional Regulators and Consensus Tracking", "uri_format": "http://www.yeastract.com/view.php?existing=locus&orfname=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.yetfasco.miriam": {"id": "bioregistry.yetfasco.miriam", "sameas": "bioregistry.yetfasco", "homepage": "http://yetfasco.ccbr.utoronto.ca/", "prefix": "yetfasco", "name": "YeTFasCo", "uri_format": "http://yetfasco.ccbr.utoronto.ca/showPFM.php?mot=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.yetfasco.n2t": {"id": "bioregistry.yetfasco.n2t", "sameas": "bioregistry.yetfasco", "homepage": "http://yetfasco.ccbr.utoronto.ca/", "prefix": "yetfasco", "name": "YeTFasCo at University of Toronto", "uri_format": "http://yetfasco.ccbr.utoronto.ca/showPFM.php?mot=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.yetfasco": {"id": "bioregistry.yetfasco", "homepage": null, "prefix": "yetfasco", "name": "YeTFasCo at University of Toronto", "uri_format": "http://yetfasco.ccbr.utoronto.ca/showPFM.php?mot=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.ygob.prefixcommons": {"id": "bioregistry.ygob.prefixcommons", "sameas": "bioregistry.ygob", "homepage": "http://wolfe.gen.tcd.ie/ygob", "prefix": "ygob", "name": "Yeast Genome Order Browser", "uri_format": "http://wolfe.gen.tcd.ie/cgi/browser/ygob.pl?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "prefixcommons"}, "bioregistry.ygob": {"id": "bioregistry.ygob", "homepage": null, "prefix": "ygob", "name": "Yeast Genome Order Browser", "uri_format": "http://wolfe.gen.tcd.ie/cgi/browser/ygob.pl?gene=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "genetics"], "authority": "bioregistry"}, "bioregistry.yid.miriam": {"id": "bioregistry.yid.miriam", "sameas": "bioregistry.yid", "homepage": "http://compbio.soe.ucsc.edu/yeast_introns.html", "prefix": "yid", "name": "Yeast Intron Database v3", "uri_format": "http://metarray.ucsc.edu/cgi-bin/intron/yirIntrondb?orfName=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.yid.n2t": {"id": "bioregistry.yid.n2t", "sameas": "bioregistry.yid", "homepage": "http://compbio.soe.ucsc.edu/yeast_introns.html", "prefix": "yid", "name": "Yeast Intron Database version 3 at Baskin School of Engineering", "uri_format": "http://metarray.ucsc.edu/cgi-bin/intron/yirIntrondb?orfName=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.yid": {"id": "bioregistry.yid", "homepage": null, "prefix": "yid", "name": "Yeast Intron Database version 3 at Baskin School of Engineering", "uri_format": "http://metarray.ucsc.edu/cgi-bin/intron/yirIntrondb?orfName=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.yrcpdr.miriam": {"id": "bioregistry.yrcpdr.miriam", "sameas": "bioregistry.yrcpdr", "homepage": "http://www.yeastrc.org/pdr/", "prefix": "yrcpdr", "name": "YRC PDR", "uri_format": "http://yeastrc.org/pdr/viewProtein.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.yrcpdr.n2t": {"id": "bioregistry.yrcpdr.n2t", "sameas": "bioregistry.yrcpdr", "homepage": "http://www.yeastrc.org/pdr/", "prefix": "yrcpdr", "name": "YRC PDR at University of Washington", "uri_format": "http://yeastrc.org/pdr/viewProtein.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.yrcpdr.prefixcommons": {"id": "bioregistry.yrcpdr.prefixcommons", "sameas": "bioregistry.yrcpdr", "homepage": "http://www.yeastrc.org/pdr/", "prefix": "yrc", "name": "Yeast Resource Center Public Data Repository", "uri_format": "http://www.yeastrc.org/pdr/viewProtein.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "prefixcommons"}, "bioregistry.yrcpdr": {"id": "bioregistry.yrcpdr", "homepage": null, "prefix": "yrcpdr", "name": "Yeast Resource Center Public Data Repository", "uri_format": "http://yeastrc.org/pdr/viewProtein.do?id=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "biochemistry"], "authority": "bioregistry"}, "bioregistry.zenodo.record.wikidata": {"id": "bioregistry.zenodo.record.wikidata", "sameas": "bioregistry.zenodo.record", "homepage": null, "prefix": "P4901", "name": "Zenodo ID", "uri_format": "https://zenodo.org/record/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.zenodo.record": {"id": "bioregistry.zenodo.record", "homepage": "https://zenodo.org", "prefix": "zenodo.record", "name": "Zenodo ID", "uri_format": "https://zenodo.org/record/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}, "bioregistry.zfin.miriam": {"id": "bioregistry.zfin.miriam", "sameas": "bioregistry.zfin", "homepage": "http://zfin.org", "prefix": "zfin", "name": "ZFIN Bioentity", "uri_format": "http://zfin.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.zfin.n2t": {"id": "bioregistry.zfin.n2t", "sameas": "bioregistry.zfin", "homepage": "http://zfin.org", "prefix": "zfin", "name": "ZFIN at University of Oregon", "uri_format": "http://zfin.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.zfin.prefixcommons": {"id": "bioregistry.zfin.prefixcommons", "sameas": "bioregistry.zfin", "homepage": "http://zfin.org/", "prefix": "zfin", "name": "Zebrafish Information Network genome database", "uri_format": "http://zfin.org/cgi-bin/webdriver?MIval=aa-markerview.apg&OID=$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology", "genetics"], "authority": "prefixcommons"}, "bioregistry.zfin.wikidata": {"id": "bioregistry.zfin.wikidata", "sameas": "bioregistry.zfin", "homepage": "http://zfin.org", "prefix": "P3870", "name": "ZFIN Gene ID", "uri_format": "https://zfin.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology", "genetics"], "authority": "wikidata"}, "bioregistry.zfin.uniprot": {"id": "bioregistry.zfin.uniprot", "sameas": "bioregistry.zfin", "homepage": "https://zfin.org/", "prefix": "DB-0113", "name": "Zebrafish Information Network genome database", "uri_format": "https://zfin.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology", "genetics"], "authority": "uniprot"}, "bioregistry.zfin.biocontext": {"id": "bioregistry.zfin.biocontext", "sameas": "bioregistry.zfin", "homepage": null, "prefix": "ZFIN", "name": null, "uri_format": "http://zfin.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology", "genetics"], "authority": "biocontext"}, "bioregistry.zfin": {"id": "bioregistry.zfin", "homepage": null, "prefix": "zfin", "name": "Zebrafish Information Network genome database", "uri_format": "https://zfin.org/$1", "source": "bioregistry.io", "subjects": ["biological sciences", "zoology", "genetics"], "authority": "bioregistry"}, "bioregistry.zinc.miriam": {"id": "bioregistry.zinc.miriam", "sameas": "bioregistry.zinc", "homepage": "http://zinc15.docking.org/", "prefix": "zinc", "name": "ZINC", "uri_format": "http://zinc15.docking.org/substances/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "miriam"}, "bioregistry.zinc.n2t": {"id": "bioregistry.zinc.n2t", "sameas": "bioregistry.zinc", "homepage": "http://zinc15.docking.org/", "prefix": "zinc", "name": "ZINC at University of California (San Francisco)", "uri_format": "http://zinc15.docking.org/substances/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "n2t"}, "bioregistry.zinc.wikidata": {"id": "bioregistry.zinc.wikidata", "sameas": "bioregistry.zinc", "homepage": "http://zinc.docking.org/", "prefix": "P2084", "name": "ZINC ID", "uri_format": "http://zinc.docking.org/substances/ZINC$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "wikidata"}, "bioregistry.zinc": {"id": "bioregistry.zinc", "homepage": null, "prefix": "zinc", "name": "ZINC at University of California (San Francisco)", "uri_format": "http://zinc15.docking.org/substances/$1", "source": "bioregistry.io", "subjects": ["biological sciences"], "authority": "bioregistry"}} \ No newline at end of file +{ + "bioregistry.3dmet": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.3dmet", + "name": "Three-Dimensional Structure Database of Natural Metabolites", + "prefix": "3dmet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "http://www.3dmet.dna.affrc.go.jp/cgi/show_data.php?acc=$1" + }, + "bioregistry.3dmet.miriam": { + "authority": "miriam", + "homepage": "http://www.3dmet.dna.affrc.go.jp/", + "id": "bioregistry.3dmet.miriam", + "name": "3DMET", + "prefix": "3dmet", + "sameas": "bioregistry.3dmet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.3dmet.dna.affrc.go.jp/cgi/show_data.php?acc=$1" + }, + "bioregistry.3dmet.n2t": { + "authority": "n2t", + "homepage": "http://www.3dmet.dna.affrc.go.jp/", + "id": "bioregistry.3dmet.n2t", + "name": "3DMET database", + "prefix": "3dmet", + "sameas": "bioregistry.3dmet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.3dmet.dna.affrc.go.jp/cgi/show_data.php?acc=$1" + }, + "bioregistry.3dmet.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.3dmet.wikidata", + "name": "3DMet ID", + "prefix": "P2796", + "sameas": "bioregistry.3dmet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "http://www.3dmet.dna.affrc.go.jp/cgi/show_data.php?acc=$1" + }, + "bioregistry.4dn.biosource": { + "authority": "bioregistry", + "homepage": "https://data.4dnucleome.org/biosources", + "id": "bioregistry.4dn.biosource", + "name": "4D Nucleome Data Portal Biosource", + "prefix": "4dn.biosource", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://data.4dnucleome.org/biosources/$1" + }, + "bioregistry.4dn.biosource.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://data.4dnucleome.org/", + "id": "bioregistry.4dn.biosource.cellosaurus", + "name": "4D Nucleome Data Portal", + "prefix": "4DN", + "sameas": "bioregistry.4dn.biosource", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://data.4dnucleome.org/biosources/$1" + }, + "bioregistry.4dn.biosource.miriam": { + "authority": "miriam", + "homepage": "https://data.4dnucleome.org/", + "id": "bioregistry.4dn.biosource.miriam", + "name": "4D Nucleome", + "prefix": "4dn", + "sameas": "bioregistry.4dn.biosource", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://data.4dnucleome.org/$1" + }, + "bioregistry.4dn.biosource.prefixcommons": { + "authority": "prefixcommons", + "homepage": "https://data.4dnucleome.org/", + "id": "bioregistry.4dn.biosource.prefixcommons", + "name": "4D Nucleome", + "prefix": "4dn", + "sameas": "bioregistry.4dn.biosource", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://data.4dnucleome.org/$1" + }, + "bioregistry.aaindex": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.aaindex", + "name": "Amino acid indices, substitution matrices and pair-wise contact potentials", + "prefix": "aaindex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.genome.jp/dbget-bin/www_bget?aaindex:$1" + }, + "bioregistry.aaindex.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.genome.ad.jp/aaindex/", + "id": "bioregistry.aaindex.prefixcommons", + "name": "Amino acid indices, substitution matrices and pair-wise contact potentials", + "prefix": "aaindex", + "sameas": "bioregistry.aaindex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.genome.jp/dbget-bin/www_bget?aaindex:$1" + }, + "bioregistry.abcd": { + "authority": "bioregistry", + "homepage": "https://web.expasy.org/abcd/", + "id": "bioregistry.abcd", + "name": "ABCD curated depository of sequenced antibodies", + "prefix": "abcd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://web.expasy.org/cgi-bin/abcd/search_abcd.pl?input=$1" + }, + "bioregistry.abcd.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://web.expasy.org/abcd/", + "id": "bioregistry.abcd.cellosaurus", + "name": "AntiBodies Chemically Defined database", + "prefix": "ABCD", + "sameas": "bioregistry.abcd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://web.expasy.org/abcd/$1" + }, + "bioregistry.abcd.uniprot": { + "authority": "uniprot", + "homepage": "https://web.expasy.org/abcd", + "id": "bioregistry.abcd.uniprot", + "name": "ABCD curated depository of sequenced antibodies", + "prefix": "DB-0236", + "sameas": "bioregistry.abcd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://web.expasy.org/cgi-bin/abcd/search_abcd.pl?input=$1" + }, + "bioregistry.abm": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.abm", + "name": "Applied Biological Materials cell line products", + "prefix": "abm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.abmgood.com/catalogsearch/result/?cat=&q=$1" + }, + "bioregistry.abm.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.abmgood.com/Cell-Biology.html", + "id": "bioregistry.abm.cellosaurus", + "name": "Applied Biological Materials cell line products", + "prefix": "ABM", + "sameas": "bioregistry.abm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.abmgood.com/catalogsearch/result/?cat=&q=$1" + }, + "bioregistry.abs": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.abs", + "name": "ABS: a database of Annotated regulatory Binding Sites from Orthologous Promoters", + "prefix": "abs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://genome.crg.es/datasets/abs2005/entries/$1.html" + }, + "bioregistry.abs.miriam": { + "authority": "miriam", + "homepage": "http://genome.crg.es/datasets/abs2005/", + "id": "bioregistry.abs.miriam", + "name": "ABS", + "prefix": "abs", + "sameas": "bioregistry.abs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://genome.crg.es/datasets/abs2005/entries/$1.html" + }, + "bioregistry.abs.n2t": { + "authority": "n2t", + "homepage": "http://genome.crg.es/datasets/abs2005/", + "id": "bioregistry.abs.n2t", + "name": "ABS at IMIM", + "prefix": "abs", + "sameas": "bioregistry.abs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://genome.crg.es/datasets/abs2005/entries/$1.html" + }, + "bioregistry.abs.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://genome.imim.es/datasets/abs2005/", + "id": "bioregistry.abs.prefixcommons", + "name": "ABS: a database of Annotated regulatory Binding Sites from Orthologous Promoters", + "prefix": "abs", + "sameas": "bioregistry.abs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://genome.crg.es/datasets/abs2005/entries/$1.html" + }, + "bioregistry.aceview.worm": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.aceview.worm", + "name": "AceView Worm at NCBI", + "prefix": "aceview.worm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/av.cgi?db=worm&c=Gene&l=$1" + }, + "bioregistry.aceview.worm.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/index.html?worm", + "id": "bioregistry.aceview.worm.miriam", + "name": "Aceview Worm", + "prefix": "aceview.worm", + "sameas": "bioregistry.aceview.worm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/av.cgi?db=worm&c=Gene&l=$1" + }, + "bioregistry.aceview.worm.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/index.html?worm", + "id": "bioregistry.aceview.worm.n2t", + "name": "AceView Worm at NCBI", + "prefix": "aceview.worm", + "sameas": "bioregistry.aceview.worm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/av.cgi?db=worm&c=Gene&l=$1" + }, + "bioregistry.aceview.worm.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/", + "id": "bioregistry.aceview.worm.prefixcommons", + "name": "AceView Worm Genome", + "prefix": "aceview.worm", + "sameas": "bioregistry.aceview.worm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/av.cgi?db=[?species_database]&c=Gene&l=$1" + }, + "bioregistry.addexbio": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.addexbio", + "name": "AddexBio cell line products", + "prefix": "addexbio", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.addexbio.com/productdetail?pid=$1" + }, + "bioregistry.addexbio.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.addexbio.com/productshow?id=4", + "id": "bioregistry.addexbio.cellosaurus", + "name": "AddexBio cell line products", + "prefix": "AddexBio", + "sameas": "bioregistry.addexbio", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.addexbio.com/productdetail?pid=$1" + }, + "bioregistry.addgene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.addgene", + "name": "Addgene Plasmid Repository", + "prefix": "addgene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "molecular biology" + ], + "uri_format": "http://www.addgene.org/$1" + }, + "bioregistry.addgene.miriam": { + "authority": "miriam", + "homepage": "http://addgene.org/", + "id": "bioregistry.addgene.miriam", + "name": "Addgene Plasmid Repository", + "prefix": "addgene", + "sameas": "bioregistry.addgene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://addgene.org/$1" + }, + "bioregistry.addgene.n2t": { + "authority": "n2t", + "homepage": "http://addgene.org/", + "id": "bioregistry.addgene.n2t", + "name": "Addgene Plasmid Repository", + "prefix": "addgene", + "sameas": "bioregistry.addgene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://addgene.org/$1" + }, + "bioregistry.addgene.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.addgene.org", + "id": "bioregistry.addgene.prefixcommons", + "name": "Addgene", + "prefix": "addgene", + "sameas": "bioregistry.addgene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "molecular biology" + ], + "uri_format": "http://www.addgene.org/$1" + }, + "bioregistry.adw": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.adw", + "name": "Animal Natural History and Life History Ontology", + "prefix": "adw", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://animaldiversity.org/accounts/$1/" + }, + "bioregistry.adw.miriam": { + "authority": "miriam", + "homepage": "https://animaldiversity.org/", + "id": "bioregistry.adw.miriam", + "name": "Animal Diversity Web", + "prefix": "adw", + "sameas": "bioregistry.adw", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://animaldiversity.org/accounts/$1/" + }, + "bioregistry.adw.n2t": { + "authority": "n2t", + "homepage": "https://animaldiversity.org/", + "id": "bioregistry.adw.n2t", + "name": "Animal Diversity Web at University of Michigan", + "prefix": "adw", + "sameas": "bioregistry.adw", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://animaldiversity.org/accounts/$1/" + }, + "bioregistry.affy.probeset": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.affy.probeset", + "name": "Affymetrix ProbeSet in Santa Clara", + "prefix": "affy.probeset", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.affymetrix.com/LinkServlet?probeset=$1" + }, + "bioregistry.affy.probeset.miriam": { + "authority": "miriam", + "homepage": "http://www.affymetrix.com/", + "id": "bioregistry.affy.probeset.miriam", + "name": "Affymetrix Probeset", + "prefix": "affy.probeset", + "sameas": "bioregistry.affy.probeset", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.affymetrix.com/LinkServlet?probeset=$1" + }, + "bioregistry.affy.probeset.n2t": { + "authority": "n2t", + "homepage": "http://www.affymetrix.com/", + "id": "bioregistry.affy.probeset.n2t", + "name": "Affymetrix ProbeSet in Santa Clara", + "prefix": "affy.probeset", + "sameas": "bioregistry.affy.probeset", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.affymetrix.com/LinkServlet?probeset=$1" + }, + "bioregistry.aftol.taxonomy": { + "authority": "bioregistry", + "homepage": "https://aftol.umn.edu", + "id": "bioregistry.aftol.taxonomy", + "name": "Assembling the Fungal Tree of Life - Taxonomy", + "prefix": "aftol.taxonomy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://wasabi.lutzonilab.net/pub/displayTaxonInfo?aftol_id=$1" + }, + "bioregistry.aftol.taxonomy.miriam": { + "authority": "miriam", + "homepage": "http://aftol.org/data.php", + "id": "bioregistry.aftol.taxonomy.miriam", + "name": "AFTOL", + "prefix": "aftol.taxonomy", + "sameas": "bioregistry.aftol.taxonomy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://wasabi.lutzonilab.net/pub/displayTaxonInfo?aftol_id=$1" + }, + "bioregistry.aftol.taxonomy.n2t": { + "authority": "n2t", + "homepage": "http://aftol.org/data.php", + "id": "bioregistry.aftol.taxonomy.n2t", + "name": "AFTOL at University of Minnesota", + "prefix": "aftol.taxonomy", + "sameas": "bioregistry.aftol.taxonomy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://wasabi.lutzonilab.net/pub/displayTaxonInfo?aftol_id=$1" + }, + "bioregistry.agricola": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.agricola", + "name": "AGRICOLA at National Agricultural Library", + "prefix": "agricola", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://alliancegenome.org/gene/$1" + }, + "bioregistry.agricola.miriam": { + "authority": "miriam", + "homepage": "http://agricola.nal.usda.gov/", + "id": "bioregistry.agricola.miriam", + "name": "AGRICOLA", + "prefix": "agricola", + "sameas": "bioregistry.agricola", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ddr.nal.usda.gov/dspace/handle/10113/$1" + }, + "bioregistry.agricola.n2t": { + "authority": "n2t", + "homepage": "http://agricola.nal.usda.gov/", + "id": "bioregistry.agricola.n2t", + "name": "AGRICOLA at National Agricultural Library", + "prefix": "agricola", + "sameas": "bioregistry.agricola", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ddr.nal.usda.gov/dspace/handle/10113/$1" + }, + "bioregistry.agricola.uniprot": { + "authority": "uniprot", + "homepage": "https://alliancegenome.org/", + "id": "bioregistry.agricola.uniprot", + "name": "The Alliance of Genome Resources", + "prefix": "DB-0266", + "sameas": "bioregistry.agricola", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://alliancegenome.org/gene/$1" + }, + "bioregistry.agrkb": { + "authority": "bioregistry", + "homepage": "https://www.alliancegenome.org", + "id": "bioregistry.agrkb", + "name": "Alliance of Genome Resources Knowledge Base", + "prefix": "agrkb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.alliancegenome.org/$1" + }, + "bioregistry.agrkb.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.agrkb.biolink", + "name": null, + "prefix": "AGRKB", + "sameas": "bioregistry.agrkb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.alliancegenome.org/$1" + }, + "bioregistry.agrovoc": { + "authority": "bioregistry", + "homepage": "https://data.apps.fao.org/catalog/organization/agrovoc", + "id": "bioregistry.agrovoc", + "name": "Agronomy Vocabulary", + "prefix": "agrovoc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://aims.fao.org/aos/agrovoc/$1" + }, + "bioregistry.agrovoc.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.agrovoc.wikidata", + "name": "AGROVOC ID", + "prefix": "P8061", + "sameas": "bioregistry.agrovoc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://aims.fao.org/aos/agrovoc/$1" + }, + "bioregistry.agsd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.agsd", + "name": "Animal Genome Size Database", + "prefix": "agsd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.genomesize.com/result_species.php?id=$1" + }, + "bioregistry.agsd.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.genomesize.com", + "id": "bioregistry.agsd.prefixcommons", + "name": "Animal Genome Size Database", + "prefix": "agsd", + "sameas": "bioregistry.agsd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.genomesize.com/result_species.php?id=$1" + }, + "bioregistry.alfred": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.alfred", + "name": "The ALlele FREquency Database", + "prefix": "alfred", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://alfred.med.yale.edu/alfred/recordinfo.asp?UNID=$1" + }, + "bioregistry.alfred.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://alfred.med.yale.edu", + "id": "bioregistry.alfred.prefixcommons", + "name": "The ALlele FREquency Database", + "prefix": "alfred", + "sameas": "bioregistry.alfred", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://alfred.med.yale.edu/alfred/recordinfo.asp?UNID=$1" + }, + "bioregistry.allergome": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.allergome", + "name": "Allergome: a platform for allergen knowledge", + "prefix": "allergome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "allergology" + ], + "uri_format": "https://www.allergome.org/script/dettaglio.php?id_molecule=$1" + }, + "bioregistry.allergome.miriam": { + "authority": "miriam", + "homepage": "http://www.allergome.org/", + "id": "bioregistry.allergome.miriam", + "name": "Allergome", + "prefix": "allergome", + "sameas": "bioregistry.allergome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.allergome.org/script/dettaglio.php?id_molecule=$1" + }, + "bioregistry.allergome.n2t": { + "authority": "n2t", + "homepage": "http://www.allergome.org/", + "id": "bioregistry.allergome.n2t", + "name": "Allergome at Rome", + "prefix": "allergome", + "sameas": "bioregistry.allergome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.allergome.org/script/dettaglio.php?id_molecule=$1" + }, + "bioregistry.allergome.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.allergome.org", + "id": "bioregistry.allergome.prefixcommons", + "name": "Allergome: a platform for allergen knowledge", + "prefix": "allergome", + "sameas": "bioregistry.allergome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "allergology" + ], + "uri_format": "http://www.allergome.org/script/refArray_view.php?idMol=$1" + }, + "bioregistry.allergome.uniprot": { + "authority": "uniprot", + "homepage": "https://www.allergome.org/", + "id": "bioregistry.allergome.uniprot", + "name": "Allergome; a platform for allergen knowledge", + "prefix": "DB-0160", + "sameas": "bioregistry.allergome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "allergology" + ], + "uri_format": "https://www.allergome.org/script/dettaglio.php?id_molecule=$1" + }, + "bioregistry.alzgene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.alzgene", + "name": "Alzheimer Gene Database", + "prefix": "alzgene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.alzgene.org/geneoverview.asp?geneid=$1" + }, + "bioregistry.alzgene.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.alzgene.org", + "id": "bioregistry.alzgene.prefixcommons", + "name": "Alzheimer Gene Database", + "prefix": "alzgene", + "sameas": "bioregistry.alzgene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.alzgene.org/geneoverview.asp?geneid=$1" + }, + "bioregistry.amoebadb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.amoebadb", + "name": "AmoebaDB at EuPathDB", + "prefix": "amoebadb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://amoebadb.org/amoeba/app/record/gene/$1" + }, + "bioregistry.amoebadb.miriam": { + "authority": "miriam", + "homepage": "http://amoebadb.org/amoeba/", + "id": "bioregistry.amoebadb.miriam", + "name": "AmoebaDB", + "prefix": "amoebadb", + "sameas": "bioregistry.amoebadb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://amoebadb.org/amoeba/app/record/gene/$1" + }, + "bioregistry.amoebadb.n2t": { + "authority": "n2t", + "homepage": "http://amoebadb.org/amoeba/", + "id": "bioregistry.amoebadb.n2t", + "name": "AmoebaDB at EuPathDB", + "prefix": "amoebadb", + "sameas": "bioregistry.amoebadb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://amoebadb.org/amoeba/app/record/gene/$1" + }, + "bioregistry.amoebadb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://amoebadb.org", + "id": "bioregistry.amoebadb.prefixcommons", + "name": "AmoebaDB", + "prefix": "amoebadb", + "sameas": "bioregistry.amoebadb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://amoebadb.org/amoeba/app/record/gene/$1" + }, + "bioregistry.antibodyregistry": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.antibodyregistry", + "name": "Antibody Registry at University of California", + "prefix": "antibodyregistry", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://antibodyregistry.org/AB_$1" + }, + "bioregistry.antibodyregistry.miriam": { + "authority": "miriam", + "homepage": "http://antibodyregistry.org/", + "id": "bioregistry.antibodyregistry.miriam", + "name": "Antibody Registry", + "prefix": "antibodyregistry", + "sameas": "bioregistry.antibodyregistry", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://antibodyregistry.org/AB_$1" + }, + "bioregistry.antibodyregistry.n2t": { + "authority": "n2t", + "homepage": "http://antibodyregistry.org/", + "id": "bioregistry.antibodyregistry.n2t", + "name": "Antibody Registry at University of California", + "prefix": "antibodyregistry", + "sameas": "bioregistry.antibodyregistry", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://antibodyregistry.org/AB_$1" + }, + "bioregistry.antweb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.antweb", + "name": "AntWeb at California Academy of Sciences", + "prefix": "antweb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "anatomy and morphology" + ], + "uri_format": "https://www.antweb.org/description.do?taxonName=$1" + }, + "bioregistry.antweb.miriam": { + "authority": "miriam", + "homepage": "http://www.antweb.org/", + "id": "bioregistry.antweb.miriam", + "name": "AntWeb", + "prefix": "antweb", + "sameas": "bioregistry.antweb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.antweb.org/specimen.do?name=$1" + }, + "bioregistry.antweb.n2t": { + "authority": "n2t", + "homepage": "http://www.antweb.org/", + "id": "bioregistry.antweb.n2t", + "name": "AntWeb at California Academy of Sciences", + "prefix": "antweb", + "sameas": "bioregistry.antweb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.antweb.org/specimen.do?name=$1" + }, + "bioregistry.antweb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "https://www.antweb.org", + "id": "bioregistry.antweb.prefixcommons", + "name": "AntWeb: Ant of the World", + "prefix": "antweb", + "sameas": "bioregistry.antweb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "anatomy and morphology" + ], + "uri_format": "http://www.antweb.org/specimen.do?name=$1" + }, + "bioregistry.antweb.wikidata": { + "authority": "wikidata", + "homepage": "https://www.antweb.org", + "id": "bioregistry.antweb.wikidata", + "name": "AntWeb ID", + "prefix": "P5299", + "sameas": "bioregistry.antweb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "anatomy and morphology" + ], + "uri_format": "https://www.antweb.org/description.do?taxonName=$1" + }, + "bioregistry.aop": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.aop", + "name": "AOPWiki", + "prefix": "aop", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://aopwiki.org/aops/$1" + }, + "bioregistry.aop.events": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.aop.events", + "name": "AOPWiki (Key Event)", + "prefix": "aop.events", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://aopwiki.org/events/$1" + }, + "bioregistry.aop.events.miriam": { + "authority": "miriam", + "homepage": "https://aopwiki.org/", + "id": "bioregistry.aop.events.miriam", + "name": "AOPWiki (Key Event)", + "prefix": "aop.events", + "sameas": "bioregistry.aop.events", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://aopwiki.org/events/$1" + }, + "bioregistry.aop.events.n2t": { + "authority": "n2t", + "homepage": "https://aopwiki.org/", + "id": "bioregistry.aop.events.n2t", + "name": "AOPWiki (Key Event)", + "prefix": "aop.events", + "sameas": "bioregistry.aop.events", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://aopwiki.org/events/$1" + }, + "bioregistry.aop.miriam": { + "authority": "miriam", + "homepage": "https://aopwiki.org/", + "id": "bioregistry.aop.miriam", + "name": "AOPWiki", + "prefix": "aop", + "sameas": "bioregistry.aop", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://aopwiki.org/aops/$1" + }, + "bioregistry.aop.n2t": { + "authority": "n2t", + "homepage": "https://aopwiki.org/", + "id": "bioregistry.aop.n2t", + "name": "AOPWiki", + "prefix": "aop", + "sameas": "bioregistry.aop", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://aopwiki.org/aops/$1" + }, + "bioregistry.aop.relationships": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.aop.relationships", + "name": "AOPWiki (Key Event Relationship)", + "prefix": "aop.relationships", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://aopwiki.org/relationships/$1" + }, + "bioregistry.aop.relationships.miriam": { + "authority": "miriam", + "homepage": "https://aopwiki.org/", + "id": "bioregistry.aop.relationships.miriam", + "name": "AOPWiki (Key Event Relationship)", + "prefix": "aop.relationships", + "sameas": "bioregistry.aop.relationships", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://aopwiki.org/relationships/$1" + }, + "bioregistry.aop.relationships.n2t": { + "authority": "n2t", + "homepage": "https://aopwiki.org/", + "id": "bioregistry.aop.relationships.n2t", + "name": "AOPWiki (Key Event Relationship)", + "prefix": "aop.relationships", + "sameas": "bioregistry.aop.relationships", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://aopwiki.org/relationships/$1" + }, + "bioregistry.aop.stressor": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.aop.stressor", + "name": "AOPWiki (Stressor)", + "prefix": "aop.stressor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://aopwiki.org/stressors/$1" + }, + "bioregistry.aop.stressor.miriam": { + "authority": "miriam", + "homepage": "https://aopwiki.org/", + "id": "bioregistry.aop.stressor.miriam", + "name": "AOPWiki (Stressor)", + "prefix": "aop.stressor", + "sameas": "bioregistry.aop.stressor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://aopwiki.org/stressors/$1" + }, + "bioregistry.aop.stressor.n2t": { + "authority": "n2t", + "homepage": "https://aopwiki.org/", + "id": "bioregistry.aop.stressor.n2t", + "name": "AOPWiki (Stressor)", + "prefix": "aop.stressor", + "sameas": "bioregistry.aop.stressor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://aopwiki.org/stressors/$1" + }, + "bioregistry.apd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.apd", + "name": "Antimicrobial Peptide Database", + "prefix": "apd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://aps.unmc.edu/AP/database/query_output.php?ID=$1" + }, + "bioregistry.apd.miriam": { + "authority": "miriam", + "homepage": "http://aps.unmc.edu/AP/", + "id": "bioregistry.apd.miriam", + "name": "APD", + "prefix": "apd", + "sameas": "bioregistry.apd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://aps.unmc.edu/AP/database/query_output.php?ID=$1" + }, + "bioregistry.apd.n2t": { + "authority": "n2t", + "homepage": "http://aps.unmc.edu/AP/", + "id": "bioregistry.apd.n2t", + "name": "APD at Nebraska", + "prefix": "apd", + "sameas": "bioregistry.apd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://aps.unmc.edu/AP/database/query_output.php?ID=$1" + }, + "bioregistry.apd.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://aps.unmc.edu/AP/", + "id": "bioregistry.apd.prefixcommons", + "name": "Antimicrobial Peptide Database", + "prefix": "apd", + "sameas": "bioregistry.apd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://aps.unmc.edu/AP/database/query_output.php?ID=$1" + }, + "bioregistry.aphidbase.transcript": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.aphidbase.transcript", + "name": "Aphidbase: an aphid genomics database", + "prefix": "aphidbase.transcript", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://bipaa.genouest.org/apps/grs-2.3/grs?reportID=aphidbase_transcript_report&objectID=$1" + }, + "bioregistry.aphidbase.transcript.miriam": { + "authority": "miriam", + "homepage": "http://www.aphidbase.com/aphidbase", + "id": "bioregistry.aphidbase.transcript.miriam", + "name": "AphidBase Transcript", + "prefix": "aphidbase.transcript", + "sameas": "bioregistry.aphidbase.transcript", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bipaa.genouest.org/apps/grs-2.3/grs?reportID=aphidbase_transcript_report&objectID=$1" + }, + "bioregistry.aphidbase.transcript.n2t": { + "authority": "n2t", + "homepage": "http://www.aphidbase.com/aphidbase", + "id": "bioregistry.aphidbase.transcript.n2t", + "name": "AphidBase at INRA", + "prefix": "aphidbase.transcript", + "sameas": "bioregistry.aphidbase.transcript", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bipaa.genouest.org/apps/grs-2.3/grs?reportID=aphidbase_transcript_report&objectID=$1" + }, + "bioregistry.apid.interactions": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.apid.interactions", + "name": "APID Interactomes", + "prefix": "apid.interactions", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cicblade.dep.usal.es:8080/APID/Interactions.action?protein=$1" + }, + "bioregistry.apid.interactions.miriam": { + "authority": "miriam", + "homepage": "http://cicblade.dep.usal.es:8080/APID/", + "id": "bioregistry.apid.interactions.miriam", + "name": "APID Interactomes", + "prefix": "apid.interactions", + "sameas": "bioregistry.apid.interactions", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cicblade.dep.usal.es:8080/APID/Interactions.action?protein=$1" + }, + "bioregistry.apid.interactions.n2t": { + "authority": "n2t", + "homepage": "http://cicblade.dep.usal.es:8080/APID/", + "id": "bioregistry.apid.interactions.n2t", + "name": "APID at Salamanca", + "prefix": "apid.interactions", + "sameas": "bioregistry.apid.interactions", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cicblade.dep.usal.es:8080/APID/Interactions.action?protein=$1" + }, + "bioregistry.arachnoserver": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.arachnoserver", + "name": "ArachnoServer: Spider toxin database", + "prefix": "arachnoserver", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "pharmacology and pharmacy" + ], + "uri_format": "http://www.arachnoserver.org/toxincard.html?id=$1" + }, + "bioregistry.arachnoserver.miriam": { + "authority": "miriam", + "homepage": "http://www.arachnoserver.org/", + "id": "bioregistry.arachnoserver.miriam", + "name": "ArachnoServer", + "prefix": "arachnoserver", + "sameas": "bioregistry.arachnoserver", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.arachnoserver.org/toxincard.html?id=$1" + }, + "bioregistry.arachnoserver.n2t": { + "authority": "n2t", + "homepage": "http://www.arachnoserver.org/", + "id": "bioregistry.arachnoserver.n2t", + "name": "ArachnoServer at Brisbane", + "prefix": "arachnoserver", + "sameas": "bioregistry.arachnoserver", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.arachnoserver.org/toxincard.html?id=$1" + }, + "bioregistry.arachnoserver.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.arachnoserver.org", + "id": "bioregistry.arachnoserver.prefixcommons", + "name": "ArachnoServer: Spider toxin database", + "prefix": "arachnoserver", + "sameas": "bioregistry.arachnoserver", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "pharmacology and pharmacy" + ], + "uri_format": "http://www.arachnoserver.org/toxincard.html?id=$1" + }, + "bioregistry.araport": { + "authority": "bioregistry", + "homepage": "https://www.araport.org/", + "id": "bioregistry.araport", + "name": "Arabidopsis Information Portal", + "prefix": "araport", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.arabidopsis.org/servlets/TairObject?type=locus&name=$1" + }, + "bioregistry.araport.miriam": { + "authority": "miriam", + "homepage": "https://www.arabidopsis.org/index.jsp", + "id": "bioregistry.araport.miriam", + "name": "TAIR gene name", + "prefix": "tair.name", + "sameas": "bioregistry.araport", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.arabidopsis.org/servlets/TairObject?type=locus&name=$1" + }, + "bioregistry.araport.uniprot": { + "authority": "uniprot", + "homepage": "https://bar.utoronto.ca/thalemine/begin.do", + "id": "bioregistry.araport.uniprot", + "name": "Arabidopsis Information Portal", + "prefix": "DB-0221", + "sameas": "bioregistry.araport", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bar.utoronto.ca/thalemine/portal.do?externalids=$1" + }, + "bioregistry.archdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.archdb", + "name": "ArchDB", + "prefix": "archdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://sbi.imim.es/cgi-bin/archdb//loops.pl?loop=$1" + }, + "bioregistry.archdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://sbi.imim.es/archdb", + "id": "bioregistry.archdb.prefixcommons", + "name": "ArchDB", + "prefix": "archdb", + "sameas": "bioregistry.archdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://sbi.imim.es/cgi-bin/archdb//loops.pl?loop=$1" + }, + "bioregistry.ardb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ardb", + "name": "Antibiotic Resistance Genes Database", + "prefix": "ardb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ardb.cbcb.umd.edu/cgi/search.cgi?db=L&field=ni&term=$1" + }, + "bioregistry.ardb.miriam": { + "authority": "miriam", + "homepage": "http://ardb.cbcb.umd.edu/", + "id": "bioregistry.ardb.miriam", + "name": "Antibiotic Resistance Genes Database", + "prefix": "ardb", + "sameas": "bioregistry.ardb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ardb.cbcb.umd.edu/cgi/search.cgi?db=L&field=ni&term=$1" + }, + "bioregistry.ardb.n2t": { + "authority": "n2t", + "homepage": "http://ardb.cbcb.umd.edu/", + "id": "bioregistry.ardb.n2t", + "name": "ARDB at University of Maryland", + "prefix": "ardb", + "sameas": "bioregistry.ardb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ardb.cbcb.umd.edu/cgi/search.cgi?db=L&field=ni&term=$1" + }, + "bioregistry.ark": { + "authority": "bioregistry", + "homepage": "https://arks.org", + "id": "bioregistry.ark", + "name": "Archival Resource Key Identifier", + "prefix": "ark", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "n2t.net/ark:$1" + }, + "bioregistry.ark.miriam": { + "authority": "miriam", + "homepage": "https://arks.org", + "id": "bioregistry.ark.miriam", + "name": "Archival Resource Key (ARK)", + "prefix": "ark", + "sameas": "bioregistry.ark", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://n2t.net/ark:$1" + }, + "bioregistry.ark.n2t": { + "authority": "n2t", + "homepage": "https://wiki.ucop.edu/display/Curation/ARK", + "id": "bioregistry.ark.n2t", + "name": "Archival Resource Key", + "prefix": "ark", + "sameas": "bioregistry.ark", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "n2t.net/ark:$1" + }, + "bioregistry.arrayexpress": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.arrayexpress", + "name": "ArrayExpress Archive of Functional Genomics", + "prefix": "arrayexpress", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "molecular biology" + ], + "uri_format": "https://www.ebi.ac.uk/biostudies/ArrayExpress/studies/$1" + }, + "bioregistry.arrayexpress.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ebi.ac.uk/biostudies/arrayexpress", + "id": "bioregistry.arrayexpress.cellosaurus", + "name": "ArrayExpress Archive of Functional Genomics", + "prefix": "ArrayExpress", + "sameas": "bioregistry.arrayexpress", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "molecular biology" + ], + "uri_format": "https://www.ebi.ac.uk/biostudies/ArrayExpress/studies/$1" + }, + "bioregistry.arrayexpress.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/arrayexpress/", + "id": "bioregistry.arrayexpress.miriam", + "name": "ArrayExpress", + "prefix": "arrayexpress", + "sameas": "bioregistry.arrayexpress", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/arrayexpress/experiments/$1" + }, + "bioregistry.arrayexpress.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/arrayexpress/", + "id": "bioregistry.arrayexpress.n2t", + "name": "ArrayExpress", + "prefix": "arrayexpress", + "sameas": "bioregistry.arrayexpress", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/arrayexpress/experiments/$1" + }, + "bioregistry.arrayexpress.platform": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.arrayexpress.platform", + "name": "ArrayExpress Platform at EBI", + "prefix": "arrayexpress.platform", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/arrayexpress/arrays/$1" + }, + "bioregistry.arrayexpress.platform.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/arrayexpress/", + "id": "bioregistry.arrayexpress.platform.miriam", + "name": "ArrayExpress Platform", + "prefix": "arrayexpress.platform", + "sameas": "bioregistry.arrayexpress.platform", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/arrayexpress/arrays/$1" + }, + "bioregistry.arrayexpress.platform.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/arrayexpress/", + "id": "bioregistry.arrayexpress.platform.n2t", + "name": "ArrayExpress Platform at EBI", + "prefix": "arrayexpress.platform", + "sameas": "bioregistry.arrayexpress.platform", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/arrayexpress/arrays/$1" + }, + "bioregistry.arrayexpress.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/arrayexpress", + "id": "bioregistry.arrayexpress.prefixcommons", + "name": "ArrayExpress", + "prefix": "arrayexpress", + "sameas": "bioregistry.arrayexpress", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "molecular biology" + ], + "uri_format": "http://www.ebi.ac.uk/arrayexpress/experiments/$1" + }, + "bioregistry.arraymap": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.arraymap", + "name": "arrayMap - Genomic Array Data for Cancer CNV Profiles", + "prefix": "arraymap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.arraymap.org/pgx:$1" + }, + "bioregistry.arraymap.miriam": { + "authority": "miriam", + "homepage": "https://www.arraymap.org", + "id": "bioregistry.arraymap.miriam", + "name": "ArrayMap", + "prefix": "arraymap", + "sameas": "bioregistry.arraymap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.arraymap.org/pgx:$1" + }, + "bioregistry.arraymap.n2t": { + "authority": "n2t", + "homepage": "https://www.arraymap.org", + "id": "bioregistry.arraymap.n2t", + "name": "ArrayMap", + "prefix": "arraymap", + "sameas": "bioregistry.arraymap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.arraymap.org/pgx:$1" + }, + "bioregistry.arxiv": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.arxiv", + "name": "Cornell University arXiv", + "prefix": "arxiv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "https://arxiv.org/abs/$1" + }, + "bioregistry.arxiv.miriam": { + "authority": "miriam", + "homepage": "https://arxiv.org/", + "id": "bioregistry.arxiv.miriam", + "name": "arXiv", + "prefix": "arxiv", + "sameas": "bioregistry.arxiv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://arxiv.org/abs/$1" + }, + "bioregistry.arxiv.n2t": { + "authority": "n2t", + "homepage": "https://arxiv.org/", + "id": "bioregistry.arxiv.n2t", + "name": "Cornell University arXiv", + "prefix": "arxiv", + "sameas": "bioregistry.arxiv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://arxiv.org/abs/$1" + }, + "bioregistry.arxiv.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://arxiv.org", + "id": "bioregistry.arxiv.prefixcommons", + "name": "arXiv", + "prefix": "arxiv", + "sameas": "bioregistry.arxiv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "http://arxiv.org/abs/$1" + }, + "bioregistry.arxiv.wikidata": { + "authority": "wikidata", + "homepage": "http://arxiv.org/abs/", + "id": "bioregistry.arxiv.wikidata", + "name": "arXiv ID", + "prefix": "P818", + "sameas": "bioregistry.arxiv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "http://arxiv.org/abs/$1" + }, + "bioregistry.asap": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.asap", + "name": "A Systematic Annotation Package for Community Analysis of Genomes", + "prefix": "asap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://asap.genetics.wisc.edu/asap/feature_info.php?FeatureID=$1" + }, + "bioregistry.asap.go": { + "authority": "go", + "homepage": "https://asap.genetics.wisc.edu/asap/ASAP1.htm", + "id": "bioregistry.asap.go", + "name": "A Systematic Annotation Package for Community Analysis of Genomes", + "prefix": "ASAP", + "sameas": "bioregistry.asap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://asap.genetics.wisc.edu/asap/feature_info.php?FeatureID=$1" + }, + "bioregistry.asap.miriam": { + "authority": "miriam", + "homepage": "http://asap.ahabs.wisc.edu/asap/home.php", + "id": "bioregistry.asap.miriam", + "name": "ASAP", + "prefix": "asap", + "sameas": "bioregistry.asap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://asap.ahabs.wisc.edu/asap/feature_info.php?LocationID=WIS&FeatureID=$1" + }, + "bioregistry.asap.n2t": { + "authority": "n2t", + "homepage": "http://asap.ahabs.wisc.edu/asap/home.php", + "id": "bioregistry.asap.n2t", + "name": "ASAP at University of Wisconsin", + "prefix": "asap", + "sameas": "bioregistry.asap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://asap.ahabs.wisc.edu/asap/feature_info.php?LocationID=WIS&FeatureID=$1" + }, + "bioregistry.asap.prefixcommons": { + "authority": "prefixcommons", + "homepage": "https://asap.ahabs.wisc.edu/annotation/php/ASAP1.htm", + "id": "bioregistry.asap.prefixcommons", + "name": "A Systematic Annotation Package", + "prefix": "asap", + "sameas": "bioregistry.asap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://asap.ahabs.wisc.edu/asap/feature_info.php?FeatureID=$1" + }, + "bioregistry.ascl": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ascl", + "name": "Astrophysics Source Code Library", + "prefix": "ascl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ascl.net/$1" + }, + "bioregistry.ascl.miriam": { + "authority": "miriam", + "homepage": "http://ascl.net/", + "id": "bioregistry.ascl.miriam", + "name": "Astrophysics Source Code Library", + "prefix": "ascl", + "sameas": "bioregistry.ascl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ascl.net/$1" + }, + "bioregistry.ascl.n2t": { + "authority": "n2t", + "homepage": "http://ascl.net/", + "id": "bioregistry.ascl.n2t", + "name": "Astrophysics Source Code Library", + "prefix": "ascl", + "sameas": "bioregistry.ascl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ascl.net/$1" + }, + "bioregistry.asin": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.asin", + "name": "Amazon Standard Identification Number (ASIN)", + "prefix": "asin", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://amzn.com/$1" + }, + "bioregistry.asin.miriam": { + "authority": "miriam", + "homepage": "https://www.amazon.co.uk/gp/help/customer/display.html/277-3416785-8259466?ie=UTF8&nodeId=898182", + "id": "bioregistry.asin.miriam", + "name": "Amazon Standard Identification Number (ASIN)", + "prefix": "asin", + "sameas": "bioregistry.asin", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://amzn.com/$1" + }, + "bioregistry.asin.n2t": { + "authority": "n2t", + "homepage": "https://www.amazon.co.uk/gp/help/customer/display.html/277-3416785-8259466?ie=UTF8&nodeId=898182", + "id": "bioregistry.asin.n2t", + "name": "Amazon Standard Identification Number (ASIN)", + "prefix": "asin", + "sameas": "bioregistry.asin", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://amzn.com/$1" + }, + "bioregistry.aspgd.locus": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.aspgd.locus", + "name": "AspGD at Stanford Medical School", + "prefix": "aspgd.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.aspergillusgenome.org/cgi-bin/locus.pl?locus=$1" + }, + "bioregistry.aspgd.locus.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.aspgd.locus.biolink", + "name": null, + "prefix": "AspGD", + "sameas": "bioregistry.aspgd.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.aspergillusgenome.org/cgi-bin/locus.pl?dbid=$1" + }, + "bioregistry.aspgd.locus.go": { + "authority": "go", + "homepage": "http://www.aspergillusgenome.org/", + "id": "bioregistry.aspgd.locus.go", + "name": "Aspergillus Genome Database", + "prefix": "AspGD_LOCUS", + "sameas": "bioregistry.aspgd.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.aspergillusgenome.org/cgi-bin/locus.pl?locus=$1" + }, + "bioregistry.aspgd.locus.miriam": { + "authority": "miriam", + "homepage": "http://www.aspgd.org/", + "id": "bioregistry.aspgd.locus.miriam", + "name": "AspGD Locus", + "prefix": "aspgd.locus", + "sameas": "bioregistry.aspgd.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.aspergillusgenome.org/cgi-bin/locus.pl?dbid=$1" + }, + "bioregistry.aspgd.locus.n2t": { + "authority": "n2t", + "homepage": "http://www.aspgd.org/", + "id": "bioregistry.aspgd.locus.n2t", + "name": "AspGD at Stanford Medical School", + "prefix": "aspgd.locus", + "sameas": "bioregistry.aspgd.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.aspergillusgenome.org/cgi-bin/locus.pl?dbid=$1" + }, + "bioregistry.aspgd.protein": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.aspgd.protein", + "name": "AspGD Protein at Stanford Medical School", + "prefix": "aspgd.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.aspergillusgenome.org/cgi-bin/protein/proteinPage.pl?dbid=$1" + }, + "bioregistry.aspgd.protein.miriam": { + "authority": "miriam", + "homepage": "http://www.aspgd.org/", + "id": "bioregistry.aspgd.protein.miriam", + "name": "AspGD Protein", + "prefix": "aspgd.protein", + "sameas": "bioregistry.aspgd.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.aspergillusgenome.org/cgi-bin/protein/proteinPage.pl?dbid=$1" + }, + "bioregistry.aspgd.protein.n2t": { + "authority": "n2t", + "homepage": "http://www.aspgd.org/", + "id": "bioregistry.aspgd.protein.n2t", + "name": "AspGD Protein at Stanford Medical School", + "prefix": "aspgd.protein", + "sameas": "bioregistry.aspgd.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.aspergillusgenome.org/cgi-bin/protein/proteinPage.pl?dbid=$1" + }, + "bioregistry.asrp": { + "authority": "bioregistry", + "homepage": "https://asrp.danforthcenter.org/", + "id": "bioregistry.asrp", + "name": "Arabidopsis Small RNA Project", + "prefix": "asrp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://asrp.cgrb.oregonstate.edu/db/sRNAdisplay.html?ASRP_id=$1" + }, + "bioregistry.asrp.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://asrp.cgrb.oregonstate.edu", + "id": "bioregistry.asrp.prefixcommons", + "name": "Arabidopsis Small RNA Project", + "prefix": "asrp", + "sameas": "bioregistry.asrp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://asrp.cgrb.oregonstate.edu/db/sRNAdisplay.html?ASRP_id=$1" + }, + "bioregistry.astd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.astd", + "name": "Alternative Splicing and Transcript Diversity", + "prefix": "astd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ebi.ac.uk/astd/geneview.html?acc=$1" + }, + "bioregistry.astd.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/astd/", + "id": "bioregistry.astd.prefixcommons", + "name": "Alternative Splicing and Transcript Diversity", + "prefix": "astd", + "sameas": "bioregistry.astd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ebi.ac.uk/astd/geneview.html?acc=$1" + }, + "bioregistry.atc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.atc", + "name": "Anatomical Therapeutic Chemical Classification System", + "prefix": "atc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences" + ], + "uri_format": "https://www.whocc.no/atc_ddd_index/?code=$1" + }, + "bioregistry.atc.miriam": { + "authority": "miriam", + "homepage": "http://www.whocc.no/atc_ddd_index/", + "id": "bioregistry.atc.miriam", + "name": "Anatomical Therapeutic Chemical", + "prefix": "atc", + "sameas": "bioregistry.atc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.whocc.no/atc_ddd_index/?code=$1" + }, + "bioregistry.atc.n2t": { + "authority": "n2t", + "homepage": "http://www.whocc.no/atc_ddd_index/", + "id": "bioregistry.atc.n2t", + "name": "Anatomical Therapeutic Chemical Index at WHO", + "prefix": "atc", + "sameas": "bioregistry.atc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.whocc.no/atc_ddd_index/?code=$1" + }, + "bioregistry.atc.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.whocc.no/atc_ddd_index/", + "id": "bioregistry.atc.prefixcommons", + "name": "Anatomical Therapeutic Chemical", + "prefix": "atc", + "sameas": "bioregistry.atc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences" + ], + "uri_format": "http://www.whocc.no/atc_ddd_index/?code=$1" + }, + "bioregistry.atc.wikidata": { + "authority": "wikidata", + "homepage": "https://www.whocc.no/", + "id": "bioregistry.atc.wikidata", + "name": "ATC code", + "prefix": "P267", + "sameas": "bioregistry.atc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences" + ], + "uri_format": "https://www.whocc.no/atc_ddd_index/?code=$1" + }, + "bioregistry.atcc": { + "authority": "bioregistry", + "homepage": "https://www.lgcstandards-atcc.org", + "id": "bioregistry.atcc", + "name": "American Type Culture Collection database", + "prefix": "atcc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.atcc.org/products/$1" + }, + "bioregistry.atcc.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.atcc.org/", + "id": "bioregistry.atcc.cellosaurus", + "name": "American Type Culture Collection", + "prefix": "ATCC", + "sameas": "bioregistry.atcc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.atcc.org/Products/$1" + }, + "bioregistry.atcc.miriam": { + "authority": "miriam", + "homepage": "http://www.atcc.org/", + "id": "bioregistry.atcc.miriam", + "name": "ATCC", + "prefix": "atcc", + "sameas": "bioregistry.atcc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.atcc.org/products/$1" + }, + "bioregistry.atcc.n2t": { + "authority": "n2t", + "homepage": "http://www.atcc.org/", + "id": "bioregistry.atcc.n2t", + "name": "ATCC in Virginia", + "prefix": "atcc", + "sameas": "bioregistry.atcc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.lgcstandards-atcc.org/Products/All/$1.aspx" + }, + "bioregistry.atcvet": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.atcvet", + "name": "Anatomical Therapeutic Chemical Vet Index at WHO", + "prefix": "atcvet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.whocc.no/atcvet/atcvet_index/?code=$1" + }, + "bioregistry.atcvet.miriam": { + "authority": "miriam", + "homepage": "http://www.whocc.no/atcvet/atcvet_index/", + "id": "bioregistry.atcvet.miriam", + "name": "Anatomical Therapeutic Chemical Vetinary", + "prefix": "atcvet", + "sameas": "bioregistry.atcvet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.whocc.no/atcvet/atcvet_index/?code=$1" + }, + "bioregistry.atcvet.n2t": { + "authority": "n2t", + "homepage": "http://www.whocc.no/atcvet/atcvet_index/", + "id": "bioregistry.atcvet.n2t", + "name": "Anatomical Therapeutic Chemical Vet Index at WHO", + "prefix": "atcvet", + "sameas": "bioregistry.atcvet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.whocc.no/atcvet/atcvet_index/?code=$1" + }, + "bioregistry.atfdb.family": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.atfdb.family", + "name": "Animal TFDB at Hubei Bioinformatics & Molecular Imaging Key Laboratory", + "prefix": "atfdb.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bioguo.org/AnimalTFDB/family.php?fam=$1" + }, + "bioregistry.atfdb.family.miriam": { + "authority": "miriam", + "homepage": "http://www.bioguo.org/AnimalTFDB/family_index.php", + "id": "bioregistry.atfdb.family.miriam", + "name": "Animal TFDB Family", + "prefix": "atfdb.family", + "sameas": "bioregistry.atfdb.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bioguo.org/AnimalTFDB/family.php?fam=$1" + }, + "bioregistry.atfdb.family.n2t": { + "authority": "n2t", + "homepage": "http://www.bioguo.org/AnimalTFDB/family_index.php", + "id": "bioregistry.atfdb.family.n2t", + "name": "Animal TFDB at Hubei Bioinformatics & Molecular Imaging Key Laboratory", + "prefix": "atfdb.family", + "sameas": "bioregistry.atfdb.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bioguo.org/AnimalTFDB/family.php?fam=$1" + }, + "bioregistry.autdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.autdb", + "name": "AutDB at MindSpec", + "prefix": "autdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://autism.mindspec.org/GeneDetail/$1" + }, + "bioregistry.autdb.miriam": { + "authority": "miriam", + "homepage": "http://autism.mindspec.org/autdb/", + "id": "bioregistry.autdb.miriam", + "name": "AutDB", + "prefix": "autdb", + "sameas": "bioregistry.autdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://autism.mindspec.org/GeneDetail/$1" + }, + "bioregistry.autdb.n2t": { + "authority": "n2t", + "homepage": "http://autism.mindspec.org/autdb/", + "id": "bioregistry.autdb.n2t", + "name": "AutDB at MindSpec", + "prefix": "autdb", + "sameas": "bioregistry.autdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://autism.mindspec.org/GeneDetail/$1" + }, + "bioregistry.bacdive": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bacdive", + "name": "Bacterial Diversity Metadatabase", + "prefix": "bacdive", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bacdive.dsmz.de/strain/$1" + }, + "bioregistry.bacdive.miriam": { + "authority": "miriam", + "homepage": "https://bacdive.dsmz.de/", + "id": "bioregistry.bacdive.miriam", + "name": "Bacterial Diversity Metadatabase", + "prefix": "bacdive", + "sameas": "bioregistry.bacdive", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bacdive.dsmz.de/strain/$1" + }, + "bioregistry.bacdive.n2t": { + "authority": "n2t", + "homepage": "https://bacdive.dsmz.de/", + "id": "bioregistry.bacdive.n2t", + "name": "Bacterial Diversity Metadatabase", + "prefix": "bacdive", + "sameas": "bioregistry.bacdive", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bacdive.dsmz.de/strain/$1" + }, + "bioregistry.bacdive.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.bacdive.wikidata", + "name": "BacDive ID", + "prefix": "P2946", + "sameas": "bioregistry.bacdive", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bacdive.dsmz.de/strain/$1" + }, + "bioregistry.bacmap.biog": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bacmap.biog", + "name": "BacMap Biography at University of Alberta", + "prefix": "bacmap.biog", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bacmap.wishartlab.com/organisms/$1" + }, + "bioregistry.bacmap.biog.miriam": { + "authority": "miriam", + "homepage": "http://bacmap.wishartlab.com/", + "id": "bioregistry.bacmap.biog.miriam", + "name": "BacMap Biography", + "prefix": "bacmap.biog", + "sameas": "bioregistry.bacmap.biog", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bacmap.wishartlab.com/organisms/$1" + }, + "bioregistry.bacmap.biog.n2t": { + "authority": "n2t", + "homepage": "http://bacmap.wishartlab.com/", + "id": "bioregistry.bacmap.biog.n2t", + "name": "BacMap Biography at University of Alberta", + "prefix": "bacmap.biog", + "sameas": "bioregistry.bacmap.biog", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bacmap.wishartlab.com/organisms/$1" + }, + "bioregistry.bacmap.map": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bacmap.map", + "name": "BacMap Genome Map at University of Alberta", + "prefix": "bacmap.map", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bacmap.wishartlab.com/maps/$1/index.html" + }, + "bioregistry.bacmap.map.miriam": { + "authority": "miriam", + "homepage": "http://bacmap.wishartlab.com/", + "id": "bioregistry.bacmap.map.miriam", + "name": "BacMap Map", + "prefix": "bacmap.map", + "sameas": "bioregistry.bacmap.map", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bacmap.wishartlab.com/maps/$1/index.html" + }, + "bioregistry.bacmap.map.n2t": { + "authority": "n2t", + "homepage": "http://bacmap.wishartlab.com/", + "id": "bioregistry.bacmap.map.n2t", + "name": "BacMap Genome Map at University of Alberta", + "prefix": "bacmap.map", + "sameas": "bioregistry.bacmap.map", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bacmap.wishartlab.com/maps/$1/index.html" + }, + "bioregistry.bactibase": { + "authority": "bioregistry", + "homepage": "http://bactibase.hammamilab.org", + "id": "bioregistry.bactibase", + "name": "Bactibase: database dedicated to bacteriocins", + "prefix": "bactibase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://bactibase.pfba-lab-tun.org/$1" + }, + "bioregistry.bactibase.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://bactibase.pfba-lab-tun.org/main.php", + "id": "bioregistry.bactibase.prefixcommons", + "name": "Bactibase: database dedicated to bacteriocins", + "prefix": "bactibase", + "sameas": "bioregistry.bactibase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://bactibase.pfba-lab-tun.org/$1" + }, + "bioregistry.bao": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bao", + "name": "BioAssay Ontology through BioPortal", + "prefix": "bao", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioportal.bioontology.org/ontologies/BAO/bao:BAO_$1" + }, + "bioregistry.bao.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/ontologies/BAO/", + "id": "bioregistry.bao.miriam", + "name": "BioAssay Ontology", + "prefix": "bao", + "sameas": "bioregistry.bao", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioportal.bioontology.org/ontologies/BAO/bao:BAO_$1" + }, + "bioregistry.bao.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/BAO/", + "id": "bioregistry.bao.n2t", + "name": "BioAssay Ontology through BioPortal", + "prefix": "bao", + "sameas": "bioregistry.bao", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioportal.bioontology.org/ontologies/BAO/bao:BAO_$1" + }, + "bioregistry.bartoc": { + "authority": "bioregistry", + "homepage": "https://bartoc.org", + "id": "bioregistry.bartoc", + "name": "Basel Register of Thesauri, Ontologies and Classifications", + "prefix": "bartoc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bartoc.org/en/node/$1" + }, + "bioregistry.bartoc.wikidata": { + "authority": "wikidata", + "homepage": "https://bartoc.org/", + "id": "bioregistry.bartoc.wikidata", + "name": "BARTOC ID", + "prefix": "P2689", + "sameas": "bioregistry.bartoc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bartoc.org/en/node/$1" + }, + "bioregistry.bbkg": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bbkg", + "name": "Blue Brain Project Knowledge Graph", + "prefix": "bbkg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bbp.epfl.ch/nexus/web/studios/public/$1" + }, + "bioregistry.bbkg.miriam": { + "authority": "miriam", + "homepage": "https://portal.bluebrain.epfl.ch", + "id": "bioregistry.bbkg.miriam", + "name": "Blue Brain Project Knowledge Graph", + "prefix": "bbkg", + "sameas": "bioregistry.bbkg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bbp.epfl.ch/nexus/web/studios/public/$1" + }, + "bioregistry.bbtp": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bbtp", + "name": "Blue Brain Project Topological sampling Knowledge Graph", + "prefix": "bbtp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bbp.epfl.ch/nexus/web/studios/public/topological-sampling/studios/data:$1" + }, + "bioregistry.bbtp.miriam": { + "authority": "miriam", + "homepage": "https://portal.bluebrain.epfl.ch", + "id": "bioregistry.bbtp.miriam", + "name": "Blue Brain Project Topological sampling Knowledge Graph", + "prefix": "bbtp", + "sameas": "bioregistry.bbtp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bbp.epfl.ch/nexus/web/studios/public/topological-sampling/studios/data:$1" + }, + "bioregistry.bcgo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bcgo", + "name": "Breast Cancer Grading Ontology", + "prefix": "bcgo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ontobee.org/ontology/BCGO?iri=http://purl.obolibrary.org/obo/$1" + }, + "bioregistry.bcgo.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://github.com/obi-bcgo/bcgo", + "id": "bioregistry.bcgo.cellosaurus", + "name": "Beta Cell Genomics Ontology", + "prefix": "BCGO", + "sameas": "bioregistry.bcgo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ontobee.org/ontology/BCGO?iri=http://purl.obolibrary.org/obo/$1" + }, + "bioregistry.bcrc": { + "authority": "bioregistry", + "homepage": "https://catalog.bcrc.firdi.org.tw", + "id": "bioregistry.bcrc", + "name": "Taiwan Bioresource Collection and Research Center", + "prefix": "bcrc", + "source": "bioregistry.io", + "subjects": [ + "cell biology" + ], + "uri_format": "https://catalog.bcrc.firdi.org.tw/BcrcContent?bid=$1" + }, + "bioregistry.bcrc.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://catalog.bcrc.firdi.org.tw/", + "id": "bioregistry.bcrc.cellosaurus", + "name": "Taiwan Bioresource Collection and Research Center", + "prefix": "BCRC", + "sameas": "bioregistry.bcrc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://catalog.bcrc.firdi.org.tw/BcrcContent?bid=$1" + }, + "bioregistry.bcrj": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bcrj", + "name": "Banco de Celulas do Rio de Janeiro", + "prefix": "bcrj", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bcrj.org.br/celula/$1" + }, + "bioregistry.bcrj.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://bcrj.org.br/pesquisa/", + "id": "bioregistry.bcrj.cellosaurus", + "name": "Banco de Celulas do Rio de Janeiro", + "prefix": "BCRJ", + "sameas": "bioregistry.bcrj", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bcrj.org.br/celula/$1" + }, + "bioregistry.bdgp.est": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bdgp.est", + "name": "Berkeley Drosophila Genome Project EST database", + "prefix": "bdgp.est", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nucest/$1" + }, + "bioregistry.bdgp.est.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/dbEST/index.html", + "id": "bioregistry.bdgp.est.miriam", + "name": "BDGP EST", + "prefix": "bdgp.est", + "sameas": "bioregistry.bdgp.est", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nucest/$1" + }, + "bioregistry.bdgp.est.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/dbEST/index.html", + "id": "bioregistry.bdgp.est.n2t", + "name": "BDGP EST at NCBI", + "prefix": "bdgp.est", + "sameas": "bioregistry.bdgp.est", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nucest/$1" + }, + "bioregistry.bdgp.insertion": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bdgp.insertion", + "name": "Drosphila Gene Disruption Database", + "prefix": "bdgp.insertion", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=$1" + }, + "bioregistry.bdgp.insertion.miriam": { + "authority": "miriam", + "homepage": "http://flypush.imgen.bcm.tmc.edu/pscreen/", + "id": "bioregistry.bdgp.insertion.miriam", + "name": "BDGP insertion DB", + "prefix": "bdgp.insertion", + "sameas": "bioregistry.bdgp.insertion", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=$1" + }, + "bioregistry.bdgp.insertion.n2t": { + "authority": "n2t", + "homepage": "http://flypush.imgen.bcm.tmc.edu/pscreen/", + "id": "bioregistry.bdgp.insertion.n2t", + "name": "BDGP Gene Disruption Project", + "prefix": "bdgp.insertion", + "sameas": "bioregistry.bdgp.insertion", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=$1" + }, + "bioregistry.bdgp.insertion.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.bdgp.insertion.prefixcommons", + "name": "Drosphila Gene Disruption Database", + "prefix": "bdgp", + "sameas": "bioregistry.bdgp.insertion", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=$1" + }, + "bioregistry.bdsc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bdsc", + "name": "Bloomington Drosophila Stock Center", + "prefix": "bdsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bdsc.indiana.edu/stocks/$1" + }, + "bioregistry.bdsc.miriam": { + "authority": "miriam", + "homepage": "https://bdsc.indiana.edu/about/mission.html", + "id": "bioregistry.bdsc.miriam", + "name": "Bloomington Drosophila Stock Center", + "prefix": "bdsc", + "sameas": "bioregistry.bdsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bdsc.indiana.edu/stocks/$1" + }, + "bioregistry.bdsc.n2t": { + "authority": "n2t", + "homepage": "https://bdsc.indiana.edu/about/mission.html", + "id": "bioregistry.bdsc.n2t", + "name": "BDSC at Indiana University", + "prefix": "bdsc", + "sameas": "bioregistry.bdsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bdsc.indiana.edu/stocks/$1" + }, + "bioregistry.beetlebase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.beetlebase", + "name": "Tribolium Genome Database -- Insertion", + "prefix": "beetlebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.beetlebase.org/cgi-bin/gbrowse/BeetleBase3.gff3/?name=$1" + }, + "bioregistry.beetlebase.miriam": { + "authority": "miriam", + "homepage": "http://beetlebase.org/", + "id": "bioregistry.beetlebase.miriam", + "name": "BeetleBase", + "prefix": "beetlebase", + "sameas": "bioregistry.beetlebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://beetlebase.org/cgi-bin/gbrowse/BeetleBase3.gff3/?name=$1" + }, + "bioregistry.beetlebase.n2t": { + "authority": "n2t", + "homepage": "http://beetlebase.org/", + "id": "bioregistry.beetlebase.n2t", + "name": "BeetleBase at Kansas State University", + "prefix": "beetlebase", + "sameas": "bioregistry.beetlebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://beetlebase.org/cgi-bin/gbrowse/BeetleBase3.gff3/?name=$1" + }, + "bioregistry.beetlebase.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.beetlebase.org/", + "id": "bioregistry.beetlebase.prefixcommons", + "name": "BeetleBase", + "prefix": "beetlebase", + "sameas": "bioregistry.beetlebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.beetlebase.org/cgi-bin/gbrowse/BeetleBase3.gff3/?name=$1" + }, + "bioregistry.begdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.begdb", + "name": "The Benchmark Energy & Geometry Database", + "prefix": "begdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.begdb.com/index.php?action=oneMolecule&state=show&id=$1" + }, + "bioregistry.begdb.miriam": { + "authority": "miriam", + "homepage": "http://www.begdb.com", + "id": "bioregistry.begdb.miriam", + "name": "Benchmark Energy & Geometry Database", + "prefix": "begdb", + "sameas": "bioregistry.begdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.begdb.com/index.php?action=oneMolecule&state=show&id=$1" + }, + "bioregistry.begdb.n2t": { + "authority": "n2t", + "homepage": "http://www.begdb.com", + "id": "bioregistry.begdb.n2t", + "name": "Benchmark Energy & Geometry Database", + "prefix": "begdb", + "sameas": "bioregistry.begdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.begdb.com/index.php?action=oneMolecule&state=show&id=$1" + }, + "bioregistry.beiresources": { + "authority": "bioregistry", + "homepage": "https://www.beiresources.org", + "id": "bioregistry.beiresources", + "name": "BEI Resources", + "prefix": "beiresources", + "source": "bioregistry.io", + "subjects": [ + "cell biology" + ], + "uri_format": "https://www.beiresources.org/Catalog/cellBanks/$1.aspx" + }, + "bioregistry.beiresources.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.beiresources.org/Home.aspx", + "id": "bioregistry.beiresources.cellosaurus", + "name": "BEI Resources", + "prefix": "BEI_Resources", + "sameas": "bioregistry.beiresources", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.beiresources.org/Catalog/cellBanks/$1.aspx" + }, + "bioregistry.bgee.family": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bgee.family", + "name": "Bgee at Lausanne", + "prefix": "bgee.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bgee.unil.ch/bgee/bgee?page=gene_family&action=family_details&gene_family_id=$1" + }, + "bioregistry.bgee.family.miriam": { + "authority": "miriam", + "homepage": "http://bgee.unil.ch/bgee/bgee", + "id": "bioregistry.bgee.family.miriam", + "name": "Bgee family", + "prefix": "bgee.family", + "sameas": "bioregistry.bgee.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bgee.unil.ch/bgee/bgee?page=gene_family&action=family_details&gene_family_id=$1" + }, + "bioregistry.bgee.family.n2t": { + "authority": "n2t", + "homepage": "http://bgee.unil.ch/bgee/bgee", + "id": "bioregistry.bgee.family.n2t", + "name": "Bgee at Lausanne", + "prefix": "bgee.family", + "sameas": "bioregistry.bgee.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bgee.unil.ch/bgee/bgee?page=gene_family&action=family_details&gene_family_id=$1" + }, + "bioregistry.bgee.gene": { + "authority": "bioregistry", + "homepage": "https://www.bgee.org", + "id": "bioregistry.bgee.gene", + "name": "Bgee DataBase for Gene Expression Evolution", + "prefix": "bgee.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.bgee.org/gene/$1" + }, + "bioregistry.bgee.gene.miriam": { + "authority": "miriam", + "homepage": "https://www.bgee.org/", + "id": "bioregistry.bgee.gene.miriam", + "name": "Bgee gene", + "prefix": "bgee.gene", + "sameas": "bioregistry.bgee.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.bgee.org/gene/$1" + }, + "bioregistry.bgee.gene.n2t": { + "authority": "n2t", + "homepage": "https://bgee.org/", + "id": "bioregistry.bgee.gene.n2t", + "name": "Bgee gene", + "prefix": "bgee.gene", + "sameas": "bioregistry.bgee.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bgee.org/?page=gene&gene_id=$1" + }, + "bioregistry.bgee.gene.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://bgee.unil.ch", + "id": "bioregistry.bgee.gene.prefixcommons", + "name": "Bgee DataBase for Gene Expression Evolution", + "prefix": "bgee", + "sameas": "bioregistry.bgee.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://bgee.unil.ch/bgee/bgee?page=gene&action=expression&gene_id=$1" + }, + "bioregistry.bgee.organ": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bgee.organ", + "name": "Bgee at Lausanne", + "prefix": "bgee.organ", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organ_details&organ_id=$1&organ_children=on" + }, + "bioregistry.bgee.organ.miriam": { + "authority": "miriam", + "homepage": "http://bgee.unil.ch/bgee/bgee", + "id": "bioregistry.bgee.organ.miriam", + "name": "Bgee organ", + "prefix": "bgee.organ", + "sameas": "bioregistry.bgee.organ", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organ_details&organ_id=$1&organ_children=on" + }, + "bioregistry.bgee.organ.n2t": { + "authority": "n2t", + "homepage": "http://bgee.unil.ch/bgee/bgee", + "id": "bioregistry.bgee.organ.n2t", + "name": "Bgee at Lausanne", + "prefix": "bgee.organ", + "sameas": "bioregistry.bgee.organ", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organ_details&organ_id=$1&organ_children=on" + }, + "bioregistry.bgee.stage": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bgee.stage", + "name": "Bgee at Lausanne", + "prefix": "bgee.stage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organs&stage_id=$1&stage_children=on" + }, + "bioregistry.bgee.stage.miriam": { + "authority": "miriam", + "homepage": "http://bgee.unil.ch/bgee/bgee", + "id": "bioregistry.bgee.stage.miriam", + "name": "Bgee stage", + "prefix": "bgee.stage", + "sameas": "bioregistry.bgee.stage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organs&stage_id=$1&stage_children=on" + }, + "bioregistry.bgee.stage.n2t": { + "authority": "n2t", + "homepage": "http://bgee.unil.ch/bgee/bgee", + "id": "bioregistry.bgee.stage.n2t", + "name": "Bgee at Lausanne", + "prefix": "bgee.stage", + "sameas": "bioregistry.bgee.stage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organs&stage_id=$1&stage_children=on" + }, + "bioregistry.bigg.compartment": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bigg.compartment", + "name": "BiGG Compartment at University of California", + "prefix": "bigg.compartment", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bigg.ucsd.edu/compartments/$1" + }, + "bioregistry.bigg.compartment.miriam": { + "authority": "miriam", + "homepage": "http://bigg.ucsd.edu/compartments/", + "id": "bioregistry.bigg.compartment.miriam", + "name": "BiGG Compartment", + "prefix": "bigg.compartment", + "sameas": "bioregistry.bigg.compartment", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bigg.ucsd.edu/compartments/$1" + }, + "bioregistry.bigg.compartment.n2t": { + "authority": "n2t", + "homepage": "http://bigg.ucsd.edu/compartments/", + "id": "bioregistry.bigg.compartment.n2t", + "name": "BiGG Compartment at University of California", + "prefix": "bigg.compartment", + "sameas": "bioregistry.bigg.compartment", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bigg.ucsd.edu/compartments/$1" + }, + "bioregistry.bigg.metabolite": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bigg.metabolite", + "name": "BiGG Metabolite at University of Cakifornia", + "prefix": "bigg.metabolite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bigg.ucsd.edu/models/universal/metabolites/$1" + }, + "bioregistry.bigg.metabolite.miriam": { + "authority": "miriam", + "homepage": "http://bigg.ucsd.edu/universal/metabolites", + "id": "bioregistry.bigg.metabolite.miriam", + "name": "BiGG Metabolite", + "prefix": "bigg.metabolite", + "sameas": "bioregistry.bigg.metabolite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bigg.ucsd.edu/models/universal/metabolites/$1" + }, + "bioregistry.bigg.metabolite.n2t": { + "authority": "n2t", + "homepage": "http://bigg.ucsd.edu/universal/metabolites", + "id": "bioregistry.bigg.metabolite.n2t", + "name": "BiGG Metabolite at University of Cakifornia", + "prefix": "bigg.metabolite", + "sameas": "bioregistry.bigg.metabolite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bigg.ucsd.edu/models/universal/metabolites/$1" + }, + "bioregistry.bigg.model": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bigg.model", + "name": "BiGG Model at University of California", + "prefix": "bigg.model", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bigg.ucsd.edu/models/$1" + }, + "bioregistry.bigg.model.miriam": { + "authority": "miriam", + "homepage": "http://bigg.ucsd.edu/models", + "id": "bioregistry.bigg.model.miriam", + "name": "BiGG Model", + "prefix": "bigg.model", + "sameas": "bioregistry.bigg.model", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bigg.ucsd.edu/models/$1" + }, + "bioregistry.bigg.model.n2t": { + "authority": "n2t", + "homepage": "http://bigg.ucsd.edu/models", + "id": "bioregistry.bigg.model.n2t", + "name": "BiGG Model at University of California", + "prefix": "bigg.model", + "sameas": "bioregistry.bigg.model", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bigg.ucsd.edu/models/$1" + }, + "bioregistry.bigg.reaction": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bigg.reaction", + "name": "BiGG Reaction at University of California", + "prefix": "bigg.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bigg.ucsd.edu/models/universal/reactions/$1" + }, + "bioregistry.bigg.reaction.miriam": { + "authority": "miriam", + "homepage": "http://bigg.ucsd.edu/universal/reactions", + "id": "bioregistry.bigg.reaction.miriam", + "name": "BiGG Reaction", + "prefix": "bigg.reaction", + "sameas": "bioregistry.bigg.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bigg.ucsd.edu/models/universal/reactions/$1" + }, + "bioregistry.bigg.reaction.n2t": { + "authority": "n2t", + "homepage": "http://bigg.ucsd.edu/universal/reactions", + "id": "bioregistry.bigg.reaction.n2t", + "name": "BiGG Reaction at University of California", + "prefix": "bigg.reaction", + "sameas": "bioregistry.bigg.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bigg.ucsd.edu/models/universal/reactions/$1" + }, + "bioregistry.bila": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bila", + "name": "4DXpress gene expression in major animals", + "prefix": "bila", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://4dx.embl.de/4DXpress/reg/all/cview/gene.do?geneID=$1" + }, + "bioregistry.bila.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://4dx.embl.de/4DXpress", + "id": "bioregistry.bila.prefixcommons", + "name": "4DXpress gene expression in major animals", + "prefix": "4dxpress", + "sameas": "bioregistry.bila", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://4dx.embl.de/4DXpress/reg/all/cview/gene.do?geneID=$1" + }, + "bioregistry.bind": { + "authority": "bioregistry", + "homepage": "http://bind.ca", + "id": "bioregistry.bind", + "name": "Biomolecular Interaction Network Databank", + "prefix": "bind", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bind.ca/Action?identifier=bindid&idsearch=$1" + }, + "bioregistry.bind.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://bond.unleashedinformatics.com/", + "id": "bioregistry.bind.prefixcommons", + "name": "Biomolecular Interaction Network Databank", + "prefix": "bind", + "sameas": "bioregistry.bind", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bind.ca/Action?identifier=bindid&idsearch=$1" + }, + "bioregistry.bindingdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bindingdb", + "name": "BindingDB database of measured binding affinities", + "prefix": "bindingdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.bindingdb.org/uniprot/$1" + }, + "bioregistry.bindingdb.miriam": { + "authority": "miriam", + "homepage": "https://www.bindingdb.org", + "id": "bioregistry.bindingdb.miriam", + "name": "BindingDB", + "prefix": "bindingdb", + "sameas": "bioregistry.bindingdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bindingdb.org/compact/$1" + }, + "bioregistry.bindingdb.n2t": { + "authority": "n2t", + "homepage": "https://www.bindingdb.org", + "id": "bioregistry.bindingdb.n2t", + "name": "BindingDB", + "prefix": "bindingdb", + "sameas": "bioregistry.bindingdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bindingdb.org/compact/$1" + }, + "bioregistry.bindingdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.bindingdb.org", + "id": "bioregistry.bindingdb.prefixcommons", + "name": "BindingDB database of measured binding affinities", + "prefix": "bindingdb", + "sameas": "bioregistry.bindingdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.bindingdb.org/bind/chemsearch/marvin/MolStructure.jsp?monomerid=$1" + }, + "bioregistry.bindingdb.uniprot": { + "authority": "uniprot", + "homepage": "https://www.bindingdb.org/", + "id": "bioregistry.bindingdb.uniprot", + "name": "BindingDB database of measured binding affinities", + "prefix": "DB-0127", + "sameas": "bioregistry.bindingdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.bindingdb.org/uniprot/$1" + }, + "bioregistry.biocarta.pathway": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biocarta.pathway", + "name": "BioCarta Pathway at NCI", + "prefix": "biocarta.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cgap.nci.nih.gov/Pathways/BioCarta/$1" + }, + "bioregistry.biocarta.pathway.miriam": { + "authority": "miriam", + "homepage": "https://www.biocarta.com/", + "id": "bioregistry.biocarta.pathway.miriam", + "name": "BioCarta Pathway", + "prefix": "biocarta.pathway", + "sameas": "bioregistry.biocarta.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cgap.nci.nih.gov/Pathways/BioCarta/$1" + }, + "bioregistry.biocarta.pathway.n2t": { + "authority": "n2t", + "homepage": "https://www.biocarta.com/", + "id": "bioregistry.biocarta.pathway.n2t", + "name": "BioCarta Pathway at NCI", + "prefix": "biocarta.pathway", + "sameas": "bioregistry.biocarta.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cgap.nci.nih.gov/Pathways/BioCarta/$1" + }, + "bioregistry.biocatalogue.service": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biocatalogue.service", + "name": "Curated catalogue of Life Science Web Services", + "prefix": "biocatalogue.service", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.biocatalogue.org/services/$1" + }, + "bioregistry.biocatalogue.service.miriam": { + "authority": "miriam", + "homepage": "https://www.biocatalogue.org/", + "id": "bioregistry.biocatalogue.service.miriam", + "name": "BioCatalogue", + "prefix": "biocatalogue.service", + "sameas": "bioregistry.biocatalogue.service", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.biocatalogue.org/services/$1" + }, + "bioregistry.biocatalogue.service.n2t": { + "authority": "n2t", + "homepage": "https://www.biocatalogue.org/", + "id": "bioregistry.biocatalogue.service.n2t", + "name": "BioCatalogue at EMBL-EBI", + "prefix": "biocatalogue.service", + "sameas": "bioregistry.biocatalogue.service", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.biocatalogue.org/services/$1" + }, + "bioregistry.biocatalogue.service.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.biocatalogue.org/", + "id": "bioregistry.biocatalogue.service.prefixcommons", + "name": "Curated catalogue of Life Science Web Services", + "prefix": "biocatalogue", + "sameas": "bioregistry.biocatalogue.service", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.biocatalogue.org/services/$1" + }, + "bioregistry.biocyc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biocyc", + "name": "BioCyc collection of metabolic pathway databases", + "prefix": "biocyc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://biocyc.org/getid?id=$1" + }, + "bioregistry.biocyc.go": { + "authority": "go", + "homepage": "http://biocyc.org/", + "id": "bioregistry.biocyc.go", + "name": "BioCyc collection of metabolic pathway databases", + "prefix": "BioCyc", + "sameas": "bioregistry.biocyc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://biocyc.org/META/NEW-IMAGE?type=PATHWAY&object=$1" + }, + "bioregistry.biocyc.miriam": { + "authority": "miriam", + "homepage": "http://biocyc.org", + "id": "bioregistry.biocyc.miriam", + "name": "BioCyc", + "prefix": "biocyc", + "sameas": "bioregistry.biocyc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://biocyc.org/getid?id=$1" + }, + "bioregistry.biocyc.n2t": { + "authority": "n2t", + "homepage": "http://biocyc.org", + "id": "bioregistry.biocyc.n2t", + "name": "BioCyc at SRI International", + "prefix": "biocyc", + "sameas": "bioregistry.biocyc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://biocyc.org/getid?id=$1" + }, + "bioregistry.biocyc.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.biocyc.org/", + "id": "bioregistry.biocyc.prefixcommons", + "name": "BioCyc Database Collection", + "prefix": "biocyc", + "sameas": "bioregistry.biocyc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://biocyc.org/ECOLI/NEW-IMAGE?object=$1" + }, + "bioregistry.biocyc.uniprot": { + "authority": "uniprot", + "homepage": "https://www.biocyc.org/", + "id": "bioregistry.biocyc.uniprot", + "name": "BioCyc Collection of Pathway/Genome Databases", + "prefix": "DB-0005", + "sameas": "bioregistry.biocyc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://biocyc.org/getid?id=$1" + }, + "bioregistry.biogrid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biogrid", + "name": "The Biological General Repository for Interaction Datasets (BioGRID)", + "prefix": "biogrid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://thebiogrid.org/$1" + }, + "bioregistry.biogrid.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.biogrid.biocontext", + "name": null, + "prefix": "BIOGRID", + "sameas": "bioregistry.biogrid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://thebiogrid.org/$1" + }, + "bioregistry.biogrid.miriam": { + "authority": "miriam", + "homepage": "http://thebiogrid.org/", + "id": "bioregistry.biogrid.miriam", + "name": "BioGRID", + "prefix": "biogrid", + "sameas": "bioregistry.biogrid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://thebiogrid.org/$1" + }, + "bioregistry.biogrid.n2t": { + "authority": "n2t", + "homepage": "http://thebiogrid.org/", + "id": "bioregistry.biogrid.n2t", + "name": "BioGRID database of physical and genetic interactions", + "prefix": "biogrid", + "sameas": "bioregistry.biogrid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://thebiogrid.org/$1" + }, + "bioregistry.biogrid.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.thebiogrid.org", + "id": "bioregistry.biogrid.prefixcommons", + "name": "Biological General Repository for Interaction Datasets", + "prefix": "biogrid", + "sameas": "bioregistry.biogrid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://thebiogrid.org/$1" + }, + "bioregistry.biogrid.uniprot": { + "authority": "uniprot", + "homepage": "https://thebiogrid.org/", + "id": "bioregistry.biogrid.uniprot", + "name": "The Biological General Repository for Interaction Datasets (BioGRID)", + "prefix": "DB-0184", + "sameas": "bioregistry.biogrid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://thebiogrid.org/$1" + }, + "bioregistry.biokc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biokc", + "name": "BioKC", + "prefix": "biokc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://biokb.lcsb.uni.lu/fact/$1" + }, + "bioregistry.biokc.miriam": { + "authority": "miriam", + "homepage": "https://wwwen.uni.lu/lcsb", + "id": "bioregistry.biokc.miriam", + "name": "BioKC", + "prefix": "biokc", + "sameas": "bioregistry.biokc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://biokb.lcsb.uni.lu/fact/$1" + }, + "bioregistry.biolink": { + "authority": "bioregistry", + "homepage": "https://biolink.github.io/biolink-model/", + "id": "bioregistry.biolink", + "name": "BioLink Model", + "prefix": "biolink", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/biolink/vocab/$1" + }, + "bioregistry.biolink.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.biolink.biolink", + "name": null, + "prefix": "biolink", + "sameas": "bioregistry.biolink", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/biolink/vocab/$1" + }, + "bioregistry.biolink.miriam": { + "authority": "miriam", + "homepage": "https://biolink.github.io/biolink-model", + "id": "bioregistry.biolink.miriam", + "name": "BioLink Model", + "prefix": "biolink", + "sameas": "bioregistry.biolink", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/biolink/vocab/$1" + }, + "bioregistry.biomagresbank": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biomagresbank", + "name": "BioMagResBank", + "prefix": "biomagresbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.bmrb.wisc.edu/data_library/generate_summary.php?bmrbId=$1" + }, + "bioregistry.biomagresbank.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.bmrb.wisc.edu/", + "id": "bioregistry.biomagresbank.prefixcommons", + "name": "BioMagResBank", + "prefix": "biomagresbank", + "sameas": "bioregistry.biomagresbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.bmrb.wisc.edu/data_library/generate_summary.php?bmrbId=$1" + }, + "bioregistry.biominder": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biominder", + "name": "Bio-MINDER Tissue Database", + "prefix": "biominder", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://datalab.rwth-aachen.de/MINDER/resource/$1" + }, + "bioregistry.biominder.miriam": { + "authority": "miriam", + "homepage": "https://datalab.rwth-aachen.de/MINDER", + "id": "bioregistry.biominder.miriam", + "name": "Bio-MINDER Tissue Database", + "prefix": "biominder", + "sameas": "bioregistry.biominder", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://datalab.rwth-aachen.de/MINDER/resource/$1" + }, + "bioregistry.biominder.n2t": { + "authority": "n2t", + "homepage": "https://datalab.rwth-aachen.de/MINDER", + "id": "bioregistry.biominder.n2t", + "name": "Bio-MINDER Tissue Database", + "prefix": "biominder", + "sameas": "bioregistry.biominder", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://datalab.rwth-aachen.de/MINDER/resource/$1" + }, + "bioregistry.biomodels.db": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biomodels.db", + "name": "A Database of Annotated Published Models", + "prefix": "biomodels.db", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/biomodels/$1" + }, + "bioregistry.biomodels.db.go": { + "authority": "go", + "homepage": "https://www.ebi.ac.uk/biomodels/", + "id": "bioregistry.biomodels.db.go", + "name": "BioModels Database", + "prefix": "BIOMD", + "sameas": "bioregistry.biomodels.db", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/biomodels/$1" + }, + "bioregistry.biomodels.db.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/biomodels/", + "id": "bioregistry.biomodels.db.miriam", + "name": "BioModels Database", + "prefix": "biomodels.db", + "sameas": "bioregistry.biomodels.db", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/biomodels/$1" + }, + "bioregistry.biomodels.db.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/biomodels/", + "id": "bioregistry.biomodels.db.n2t", + "name": "BioModels Database", + "prefix": "biomodels.db", + "sameas": "bioregistry.biomodels.db", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/biomodels/$1" + }, + "bioregistry.biomodels.db.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/biomodels/", + "id": "bioregistry.biomodels.db.prefixcommons", + "name": "A Database of Annotated Published Models", + "prefix": "biomodels", + "sameas": "bioregistry.biomodels.db", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ebi.ac.uk/biomodels-main/$1" + }, + "bioregistry.biomodels.kisao": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biomodels.kisao", + "name": "Kinetic Simulation Algorithm Ontology", + "prefix": "biomodels.kisao", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/KISAO/kisao:$1" + }, + "bioregistry.biomodels.kisao.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/ontologies/KISAO", + "id": "bioregistry.biomodels.kisao.miriam", + "name": "KiSAO", + "prefix": "biomodels.kisao", + "sameas": "bioregistry.biomodels.kisao", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/KISAO/kisao:$1" + }, + "bioregistry.biomodels.kisao.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/KISAO", + "id": "bioregistry.biomodels.kisao.n2t", + "name": "KiSAO via NCBO's Bioportal", + "prefix": "biomodels.kisao", + "sameas": "bioregistry.biomodels.kisao", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/KISAO/kisao:$1" + }, + "bioregistry.biomodels.teddy": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biomodels.teddy", + "name": "Terminology for the Description of Dynamics", + "prefix": "biomodels.teddy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/TEDDY/$1" + }, + "bioregistry.biomodels.teddy.miriam": { + "authority": "miriam", + "homepage": "http://teddyontology.sourceforge.net/", + "id": "bioregistry.biomodels.teddy.miriam", + "name": "TEDDY", + "prefix": "biomodels.teddy", + "sameas": "bioregistry.biomodels.teddy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/TEDDY/$1" + }, + "bioregistry.biomodels.teddy.n2t": { + "authority": "n2t", + "homepage": "http://teddyontology.sourceforge.net/", + "id": "bioregistry.biomodels.teddy.n2t", + "name": "TEDDY through BioPortal", + "prefix": "biomodels.teddy", + "sameas": "bioregistry.biomodels.teddy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/TEDDY/$1" + }, + "bioregistry.biomodels.vocabulary": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biomodels.vocabulary", + "name": "Vocabulary via BioModels.net", + "prefix": "biomodels.vocabulary", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://biomodels.net/rdf/vocabulary.rdf#$1" + }, + "bioregistry.biomodels.vocabulary.miriam": { + "authority": "miriam", + "homepage": "http://biomodels.net/rdf/vocabulary.rdf", + "id": "bioregistry.biomodels.vocabulary.miriam", + "name": "SBML RDF Vocabulary", + "prefix": "biomodels.vocabulary", + "sameas": "bioregistry.biomodels.vocabulary", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://biomodels.net/rdf/vocabulary.rdf#$1" + }, + "bioregistry.biomodels.vocabulary.n2t": { + "authority": "n2t", + "homepage": "http://biomodels.net/rdf/vocabulary.rdf", + "id": "bioregistry.biomodels.vocabulary.n2t", + "name": "Vocabulary via BioModels.net", + "prefix": "biomodels.vocabulary", + "sameas": "bioregistry.biomodels.vocabulary", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://biomodels.net/rdf/vocabulary.rdf#$1" + }, + "bioregistry.bionumbers": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bionumbers", + "name": "The Database of Useful Biological Numbers", + "prefix": "bionumbers", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bionumbers.hms.harvard.edu/bionumber.aspx?id=$1" + }, + "bioregistry.bionumbers.miriam": { + "authority": "miriam", + "homepage": "https://bionumbers.hms.harvard.edu", + "id": "bioregistry.bionumbers.miriam", + "name": "BioNumbers", + "prefix": "bionumbers", + "sameas": "bioregistry.bionumbers", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bionumbers.hms.harvard.edu/bionumber.aspx?id=$1" + }, + "bioregistry.bionumbers.n2t": { + "authority": "n2t", + "homepage": "https://bionumbers.hms.harvard.edu", + "id": "bioregistry.bionumbers.n2t", + "name": "BioNumbers database", + "prefix": "bionumbers", + "sameas": "bioregistry.bionumbers", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bionumbers.hms.harvard.edu/bionumber.aspx?id=$1" + }, + "bioregistry.bionumbers.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.bionumbers.hms.harvard.edu/search.aspx", + "id": "bioregistry.bionumbers.prefixcommons", + "name": "The Database of Useful Biological Numbers", + "prefix": "bionumbers", + "sameas": "bioregistry.bionumbers", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bionumbers.hms.harvard.edu/bionumber.aspx?s=y&id=$1&ver=1" + }, + "bioregistry.biopixie": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biopixie", + "name": "biological Process Inference from eXperimental Interaction Evidence/Microarray Experiment Functional Integration Technology", + "prefix": "biopixie", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://avis.princeton.edu/pixie/viewgraph.php?graphID=$1" + }, + "bioregistry.biopixie.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://pixie.princeton.edu/pixie/", + "id": "bioregistry.biopixie.prefixcommons", + "name": "biological Process Inference from eXperimental Interaction Evidence/Microarray Experiment Functional Integration Technology", + "prefix": "biopixie", + "sameas": "bioregistry.biopixie", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://avis.princeton.edu/pixie/viewgraph.php?graphID=$1" + }, + "bioregistry.bioportal": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bioportal", + "name": "BioPortal at National Center for Biomedical Ontology", + "prefix": "bioportal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioportal.bioontology.org/ontologies/$1" + }, + "bioregistry.bioportal.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/", + "id": "bioregistry.bioportal.miriam", + "name": "BioPortal", + "prefix": "bioportal", + "sameas": "bioregistry.bioportal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioportal.bioontology.org/ontologies/$1" + }, + "bioregistry.bioportal.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/", + "id": "bioregistry.bioportal.n2t", + "name": "BioPortal at National Center for Biomedical Ontology", + "prefix": "bioportal", + "sameas": "bioregistry.bioportal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioportal.bioontology.org/ontologies/$1" + }, + "bioregistry.bioportal.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://bioportal.bioontology.org/", + "id": "bioregistry.bioportal.prefixcommons", + "name": "BioPortal", + "prefix": "bioportal", + "sameas": "bioregistry.bioportal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioportal.bioontology.org/ontologies/$1" + }, + "bioregistry.bioproject": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bioproject", + "name": "BioProject at NCBI", + "prefix": "bioproject", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/bioproject?term=$1" + }, + "bioregistry.bioproject.miriam": { + "authority": "miriam", + "homepage": "http://trace.ddbj.nig.ac.jp/bioproject/", + "id": "bioregistry.bioproject.miriam", + "name": "BioProject", + "prefix": "bioproject", + "sameas": "bioregistry.bioproject", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://trace.ddbj.nig.ac.jp/BPSearch/bioproject?acc=$1" + }, + "bioregistry.bioproject.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/bioproject", + "id": "bioregistry.bioproject.n2t", + "name": "BioProject at NCBI", + "prefix": "bioproject", + "sameas": "bioregistry.bioproject", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/bioproject?term=$1" + }, + "bioregistry.biorxiv": { + "authority": "bioregistry", + "homepage": "https://biorxiv.org", + "id": "bioregistry.biorxiv", + "name": "BioRxiv ID", + "prefix": "biorxiv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.biorxiv.org/content/$1" + }, + "bioregistry.biorxiv.go": { + "authority": "go", + "homepage": "https://www.biorxiv.org/", + "id": "bioregistry.biorxiv.go", + "name": "bioRxiv", + "prefix": "bioRxiv", + "sameas": "bioregistry.biorxiv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.biorxiv.org/content/$1" + }, + "bioregistry.biorxiv.wikidata": { + "authority": "wikidata", + "homepage": "http://biorxiv.org/search/limit_from:2010-01-01%20limit_to:2017-02-16%20numresults:10%20sort:relevance-rank%20format_result:standard", + "id": "bioregistry.biorxiv.wikidata", + "name": "BioRxiv ID", + "prefix": "P3951", + "sameas": "bioregistry.biorxiv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://doi.org/10.1101/$1" + }, + "bioregistry.biosample": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biosample", + "name": "BioSamples Database at EBI", + "prefix": "biosample", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/biosamples/samples/$1" + }, + "bioregistry.biosample.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ebi.ac.uk/biosamples/", + "id": "bioregistry.biosample.cellosaurus", + "name": "BioSamples database", + "prefix": "BioSamples", + "sameas": "bioregistry.biosample", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/biosamples/samples/$1" + }, + "bioregistry.biosample.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/biosamples/", + "id": "bioregistry.biosample.miriam", + "name": "BioSample", + "prefix": "biosample", + "sameas": "bioregistry.biosample", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/biosamples/sample/$1" + }, + "bioregistry.biosample.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/biosamples/", + "id": "bioregistry.biosample.n2t", + "name": "BioSamples Database at EBI", + "prefix": "biosample", + "sameas": "bioregistry.biosample", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/biosamples/sample/$1" + }, + "bioregistry.bioschemas": { + "authority": "bioregistry", + "homepage": "https://bioschemas.org", + "id": "bioregistry.bioschemas", + "name": "BioSchemas", + "prefix": "bioschemas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bioschemas.org/$1" + }, + "bioregistry.bioschemas.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.bioschemas.biolink", + "name": null, + "prefix": "bioschemas", + "sameas": "bioregistry.bioschemas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bioschemas.org/$1" + }, + "bioregistry.biosimulations": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biosimulations", + "name": "biosimulations", + "prefix": "biosimulations", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://biosimulations.org/projects/$1" + }, + "bioregistry.biosimulations.miriam": { + "authority": "miriam", + "homepage": "https://icahn.mssm.edu/", + "id": "bioregistry.biosimulations.miriam", + "name": "biosimulations", + "prefix": "biosimulations", + "sameas": "bioregistry.biosimulations", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://biosimulations.org/projects/$1" + }, + "bioregistry.biosimulators": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biosimulators", + "name": "BioSimulators", + "prefix": "biosimulators", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://biosimulators.org/simulators/$1" + }, + "bioregistry.biosimulators.miriam": { + "authority": "miriam", + "homepage": "https://biosimulators.org/", + "id": "bioregistry.biosimulators.miriam", + "name": "BioSimulators", + "prefix": "biosimulators", + "sameas": "bioregistry.biosimulators", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://biosimulators.org/simulators/$1" + }, + "bioregistry.biostudies": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biostudies", + "name": "BioStudies database", + "prefix": "biostudies", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/biostudies/studies/$1" + }, + "bioregistry.biostudies.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/biostudies/", + "id": "bioregistry.biostudies.miriam", + "name": "BioStudies database", + "prefix": "biostudies", + "sameas": "bioregistry.biostudies", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/biostudies/studies/$1" + }, + "bioregistry.biostudies.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/biostudies/", + "id": "bioregistry.biostudies.n2t", + "name": "BioStudies database", + "prefix": "biostudies", + "sameas": "bioregistry.biostudies", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/biostudies/studies/$1" + }, + "bioregistry.biosystems": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biosystems", + "name": "BioSystems database at NCBI", + "prefix": "biosystems", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/biosystems/$1" + }, + "bioregistry.biosystems.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/biosystems/", + "id": "bioregistry.biosystems.miriam", + "name": "BioSystems", + "prefix": "biosystems", + "sameas": "bioregistry.biosystems", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/biosystems/$1" + }, + "bioregistry.biosystems.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/biosystems/", + "id": "bioregistry.biosystems.n2t", + "name": "BioSystems database at NCBI", + "prefix": "biosystems", + "sameas": "bioregistry.biosystems", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/biosystems/$1" + }, + "bioregistry.biosystems.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/biosystems/", + "id": "bioregistry.biosystems.prefixcommons", + "name": "BioSystems", + "prefix": "biosystems", + "sameas": "bioregistry.biosystems", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/biosystems/$1" + }, + "bioregistry.biotools": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.biotools", + "name": "bio.tools", + "prefix": "biotools", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bio.tools/$1" + }, + "bioregistry.biotools.miriam": { + "authority": "miriam", + "homepage": "https://bio.tools/", + "id": "bioregistry.biotools.miriam", + "name": "BioTools", + "prefix": "biotools", + "sameas": "bioregistry.biotools", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bio.tools/$1" + }, + "bioregistry.biotools.n2t": { + "authority": "n2t", + "homepage": "https://bio.tools/", + "id": "bioregistry.biotools.n2t", + "name": "BioTools", + "prefix": "biotools", + "sameas": "bioregistry.biotools", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bio.tools/$1" + }, + "bioregistry.bitbucket": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bitbucket", + "name": "Bitbucket", + "prefix": "bitbucket", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bitbucket.org/$1" + }, + "bioregistry.bitbucket.miriam": { + "authority": "miriam", + "homepage": "https://www.atlassian.com/", + "id": "bioregistry.bitbucket.miriam", + "name": "Bitbucket", + "prefix": "bitbucket", + "sameas": "bioregistry.bitbucket", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bitbucket.org/$1" + }, + "bioregistry.bitterdb.cpd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bitterdb.cpd", + "name": "BitterDB Compound at The Hebrew University of Jerusalem", + "prefix": "bitterdb.cpd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bitterdb.agri.huji.ac.il/bitterdb/compound.php?id=$1" + }, + "bioregistry.bitterdb.cpd.miriam": { + "authority": "miriam", + "homepage": "http://bitterdb.agri.huji.ac.il/dbbitter.php", + "id": "bioregistry.bitterdb.cpd.miriam", + "name": "BitterDB Compound", + "prefix": "bitterdb.cpd", + "sameas": "bioregistry.bitterdb.cpd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bitterdb.agri.huji.ac.il/bitterdb/compound.php?id=$1" + }, + "bioregistry.bitterdb.cpd.n2t": { + "authority": "n2t", + "homepage": "http://bitterdb.agri.huji.ac.il/dbbitter.php", + "id": "bioregistry.bitterdb.cpd.n2t", + "name": "BitterDB Compound at The Hebrew University of Jerusalem", + "prefix": "bitterdb.cpd", + "sameas": "bioregistry.bitterdb.cpd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bitterdb.agri.huji.ac.il/bitterdb/compound.php?id=$1" + }, + "bioregistry.bitterdb.rec": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bitterdb.rec", + "name": "BitterDB Receptor at The Hebrew University of Jerusalem", + "prefix": "bitterdb.rec", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bitterdb.agri.huji.ac.il/Receptor.php?id=$1" + }, + "bioregistry.bitterdb.rec.miriam": { + "authority": "miriam", + "homepage": "http://bitterdb.agri.huji.ac.il/dbbitter.php", + "id": "bioregistry.bitterdb.rec.miriam", + "name": "BitterDB Receptor", + "prefix": "bitterdb.rec", + "sameas": "bioregistry.bitterdb.rec", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bitterdb.agri.huji.ac.il/Receptor.php?id=$1" + }, + "bioregistry.bitterdb.rec.n2t": { + "authority": "n2t", + "homepage": "http://bitterdb.agri.huji.ac.il/dbbitter.php", + "id": "bioregistry.bitterdb.rec.n2t", + "name": "BitterDB Receptor at The Hebrew University of Jerusalem", + "prefix": "bitterdb.rec", + "sameas": "bioregistry.bitterdb.rec", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bitterdb.agri.huji.ac.il/Receptor.php?id=$1" + }, + "bioregistry.bmrb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bmrb", + "name": "Biological Magnetic Resonance Data Bank", + "prefix": "bmrb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bmrb.io/data_library/summary/protein.php?uniprot=$1" + }, + "bioregistry.bmrb.miriam": { + "authority": "miriam", + "homepage": "http://www.bmrb.wisc.edu/", + "id": "bioregistry.bmrb.miriam", + "name": "Biological Magnetic Resonance Data Bank", + "prefix": "bmrb", + "sameas": "bioregistry.bmrb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rest.bmrb.wisc.edu/bmrb/$1/html" + }, + "bioregistry.bmrb.uniprot": { + "authority": "uniprot", + "homepage": "https://bmrb.io/", + "id": "bioregistry.bmrb.uniprot", + "name": "Biological Magnetic Resonance Data Bank", + "prefix": "DB-0256", + "sameas": "bioregistry.bmrb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bmrb.io/data_library/summary/protein.php?uniprot=$1" + }, + "bioregistry.bold.taxonomy": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bold.taxonomy", + "name": "The Barcode of Life Data Systems", + "prefix": "bold.taxonomy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.boldsystems.org/index.php/Taxbrowser_Taxonpage?taxid=$1" + }, + "bioregistry.bold.taxonomy.miriam": { + "authority": "miriam", + "homepage": "http://www.boldsystems.org/", + "id": "bioregistry.bold.taxonomy.miriam", + "name": "BOLD Taxonomy", + "prefix": "bold.taxonomy", + "sameas": "bioregistry.bold.taxonomy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.boldsystems.org/index.php/Taxbrowser_Taxonpage?taxid=$1" + }, + "bioregistry.bold.taxonomy.n2t": { + "authority": "n2t", + "homepage": "http://www.boldsystems.org/", + "id": "bioregistry.bold.taxonomy.n2t", + "name": "BOLD taxonomy browser", + "prefix": "bold.taxonomy", + "sameas": "bioregistry.bold.taxonomy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.boldsystems.org/index.php/Taxbrowser_Taxonpage?taxid=$1" + }, + "bioregistry.bold.taxonomy.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.barcodinglife.com", + "id": "bioregistry.bold.taxonomy.prefixcommons", + "name": "The Barcode of Life Data Systems", + "prefix": "bold", + "sameas": "bioregistry.bold.taxonomy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.barcodinglife.com/views/taxbrowser.php?taxid=$1" + }, + "bioregistry.bold.taxonomy.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.bold.taxonomy.wikidata", + "name": "BOLD Systems taxon ID", + "prefix": "P3606", + "sameas": "bioregistry.bold.taxonomy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.boldsystems.org/index.php/TaxBrowser_TaxonPage?taxid=$1" + }, + "bioregistry.brenda": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.brenda", + "name": "BRENDA, The Comprehensive Enzyme Information System", + "prefix": "brenda", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.brenda-enzymes.org/php/result_flat.php4?ecno=$1" + }, + "bioregistry.brenda.go": { + "authority": "go", + "homepage": "http://www.brenda-enzymes.info", + "id": "bioregistry.brenda.go", + "name": "BRENDA, The Comprehensive Enzyme Information System", + "prefix": "BRENDA", + "sameas": "bioregistry.brenda", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.brenda-enzymes.info/enzyme.php?ecno=$1" + }, + "bioregistry.brenda.miriam": { + "authority": "miriam", + "homepage": "https://www.brenda-enzymes.org/", + "id": "bioregistry.brenda.miriam", + "name": "BRENDA", + "prefix": "brenda", + "sameas": "bioregistry.brenda", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.brenda-enzymes.org/php/result_flat.php4?ecno=$1" + }, + "bioregistry.brenda.n2t": { + "authority": "n2t", + "homepage": "https://www.brenda-enzymes.org/", + "id": "bioregistry.brenda.n2t", + "name": "Brenda enzyme database", + "prefix": "brenda", + "sameas": "bioregistry.brenda", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.brenda-enzymes.org/php/result_flat.php4?ecno=$1" + }, + "bioregistry.brenda.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.brenda-enzymes.org", + "id": "bioregistry.brenda.prefixcommons", + "name": "The Comprehensive Enzyme Information System", + "prefix": "brenda", + "sameas": "bioregistry.brenda", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.brenda-enzymes.org/php/result_flat.php4?ecno=$1" + }, + "bioregistry.broad": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.broad", + "name": "Broad Fungal Genome Initiative at Broad Institute", + "prefix": "broad", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/GeneDetails.html?sp=$1" + }, + "bioregistry.broad.miriam": { + "authority": "miriam", + "homepage": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/", + "id": "bioregistry.broad.miriam", + "name": "Broad Fungal Genome Initiative", + "prefix": "broad", + "sameas": "bioregistry.broad", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/GeneDetails.html?sp=$1" + }, + "bioregistry.broad.n2t": { + "authority": "n2t", + "homepage": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/", + "id": "bioregistry.broad.n2t", + "name": "Broad Fungal Genome Initiative at Broad Institute", + "prefix": "broad", + "sameas": "bioregistry.broad", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/GeneDetails.html?sp=$1" + }, + "bioregistry.bto": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bto", + "name": "Brenda Tissue Ontology through BioPortal", + "prefix": "bto", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.brenda-enzymes.org/ontology.php?ontology_id=3&id_go=$1" + }, + "bioregistry.bto.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://bioportal.bioontology.org/ontologies/BTO", + "id": "bioregistry.bto.cellosaurus", + "name": "BRENDA Tissue Ontology", + "prefix": "BTO", + "sameas": "bioregistry.bto", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bioportal.bioontology.org/ontologies/BTO?p=classes&conceptid=http%3A%2F%2Fpurl.obolibrary.org%2Fobo%2FBTO_$1" + }, + "bioregistry.bto.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/ontologies/BTO", + "id": "bioregistry.bto.miriam", + "name": "Brenda Tissue Ontology", + "prefix": "bto", + "sameas": "bioregistry.bto", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/BTO/BTO:$1" + }, + "bioregistry.bto.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/BTO", + "id": "bioregistry.bto.n2t", + "name": "Brenda Tissue Ontology through BioPortal", + "prefix": "bto", + "sameas": "bioregistry.bto", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/BTO/BTO:$1" + }, + "bioregistry.bto.wikidata": { + "authority": "wikidata", + "homepage": "https://www.brenda-enzymes.org/ontology.php?ontology_id=3", + "id": "bioregistry.bto.wikidata", + "name": "Brenda Tissue Ontology ID", + "prefix": "P5501", + "sameas": "bioregistry.bto", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.brenda-enzymes.org/ontology.php?ontology_id=3&id_go=$1" + }, + "bioregistry.bugbase.expt": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bugbase.expt", + "name": "BugBase Expt at University of London", + "prefix": "bugbase.expt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bugs.sgul.ac.uk/bugsbase/tabs/experiment.php?expt_id=$1&action=view" + }, + "bioregistry.bugbase.expt.miriam": { + "authority": "miriam", + "homepage": "http://bugs.sgul.ac.uk/E-BUGS", + "id": "bioregistry.bugbase.expt.miriam", + "name": "BugBase Expt", + "prefix": "bugbase.expt", + "sameas": "bioregistry.bugbase.expt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bugs.sgul.ac.uk/bugsbase/tabs/experiment.php?expt_id=$1&action=view" + }, + "bioregistry.bugbase.expt.n2t": { + "authority": "n2t", + "homepage": "http://bugs.sgul.ac.uk/E-BUGS", + "id": "bioregistry.bugbase.expt.n2t", + "name": "BugBase Expt at University of London", + "prefix": "bugbase.expt", + "sameas": "bioregistry.bugbase.expt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bugs.sgul.ac.uk/bugsbase/tabs/experiment.php?expt_id=$1&action=view" + }, + "bioregistry.bugbase.protocol": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bugbase.protocol", + "name": "BugBase Protocol at University of London", + "prefix": "bugbase.protocol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bugs.sgul.ac.uk/bugsbase/tabs/protocol.php?protocol_id=$1&action=view" + }, + "bioregistry.bugbase.protocol.miriam": { + "authority": "miriam", + "homepage": "http://bugs.sgul.ac.uk/E-BUGS", + "id": "bioregistry.bugbase.protocol.miriam", + "name": "BugBase Protocol", + "prefix": "bugbase.protocol", + "sameas": "bioregistry.bugbase.protocol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bugs.sgul.ac.uk/bugsbase/tabs/protocol.php?protocol_id=$1&action=view" + }, + "bioregistry.bugbase.protocol.n2t": { + "authority": "n2t", + "homepage": "http://bugs.sgul.ac.uk/E-BUGS", + "id": "bioregistry.bugbase.protocol.n2t", + "name": "BugBase Protocol at University of London", + "prefix": "bugbase.protocol", + "sameas": "bioregistry.bugbase.protocol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bugs.sgul.ac.uk/bugsbase/tabs/protocol.php?protocol_id=$1&action=view" + }, + "bioregistry.bykdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.bykdb", + "name": "Bacterial protein tYrosine Kinase database", + "prefix": "bykdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "microbiology" + ], + "uri_format": "https://bykdb.ibcp.fr/data/html/annotated/$1.html" + }, + "bioregistry.bykdb.miriam": { + "authority": "miriam", + "homepage": "https://bykdb.ibcp.fr/BYKdb/", + "id": "bioregistry.bykdb.miriam", + "name": "BYKdb", + "prefix": "bykdb", + "sameas": "bioregistry.bykdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bykdb.ibcp.fr/data/html/annotated/$1.html" + }, + "bioregistry.bykdb.n2t": { + "authority": "n2t", + "homepage": "https://bykdb.ibcp.fr/BYKdb/", + "id": "bioregistry.bykdb.n2t", + "name": "BYKdb at CNRS", + "prefix": "bykdb", + "sameas": "bioregistry.bykdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bykdb.ibcp.fr/data/html/annotated/$1.html" + }, + "bioregistry.bykdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://bykdb.ibcp.fr/BYKdb/", + "id": "bioregistry.bykdb.prefixcommons", + "name": "Bacterial Tyrosine Kinase Database", + "prefix": "bykdb", + "sameas": "bioregistry.bykdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "microbiology" + ], + "uri_format": "http://bykdb.ibcp.fr/data/html/$1.html" + }, + "bioregistry.cabri": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cabri", + "name": "Common Access to Biological Resources and Information Project", + "prefix": "cabri", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cabri.org/CABRI/srs-bin/wgetz?-e+-page+EntryPage+[$1]" + }, + "bioregistry.cabri.miriam": { + "authority": "miriam", + "homepage": "http://www.cabri.org/", + "id": "bioregistry.cabri.miriam", + "name": "CABRI", + "prefix": "cabri", + "sameas": "bioregistry.cabri", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cabri.org/CABRI/srs-bin/wgetz?-e+-page+EntryPage+[$1]" + }, + "bioregistry.cabri.n2t": { + "authority": "n2t", + "homepage": "http://www.cabri.org/", + "id": "bioregistry.cabri.n2t", + "name": "CABRI Cell Lines catalogue in Genova (SRS)", + "prefix": "cabri", + "sameas": "bioregistry.cabri", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cabri.org/CABRI/srs-bin/wgetz?-e+-page+EntryPage+[$1]" + }, + "bioregistry.cadsr": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cadsr", + "name": "Cancer Data Standards Registry and Repository", + "prefix": "cadsr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cadsrapi.nci.nih.gov/cadsrapi4/GetXML?query=DataElement[@publicId=$1]" + }, + "bioregistry.cadsr.miriam": { + "authority": "miriam", + "homepage": "https://wiki.nci.nih.gov/display/caDSR/caDSR+Wiki", + "id": "bioregistry.cadsr.miriam", + "name": "Cancer Data Standards Registry and Repository", + "prefix": "cadsr", + "sameas": "bioregistry.cadsr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cadsrapi.nci.nih.gov/cadsrapi4/GetXML?query=DataElement[@publicId=$1]" + }, + "bioregistry.cadsr.n2t": { + "authority": "n2t", + "homepage": "https://wiki.nci.nih.gov/display/caDSR/caDSR+Wiki", + "id": "bioregistry.cadsr.n2t", + "name": "Cancer Data Standards Registry and Repository", + "prefix": "cadsr", + "sameas": "bioregistry.cadsr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cadsrapi.nci.nih.gov/cadsrapi4/GetXML?query=DataElement[@publicId=$1]" + }, + "bioregistry.cameo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cameo", + "name": "Continuously Automated Model Evaluation", + "prefix": "cameo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cameo3d.org/sp/targets/target/$1" + }, + "bioregistry.cameo.miriam": { + "authority": "miriam", + "homepage": "https://cameo3d.org", + "id": "bioregistry.cameo.miriam", + "name": "CAMEO", + "prefix": "cameo", + "sameas": "bioregistry.cameo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cameo3d.org/sp/targets/target/$1" + }, + "bioregistry.cameo.n2t": { + "authority": "n2t", + "homepage": "https://cameo3d.org", + "id": "bioregistry.cameo.n2t", + "name": "CAMEO", + "prefix": "cameo", + "sameas": "bioregistry.cameo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cameo3d.org/sp/targets/target/$1" + }, + "bioregistry.caps": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.caps", + "name": "CAPS-DB at Leeds Institute of Molecular Medicine", + "prefix": "caps", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bioinsilico.org/cgi-bin/CAPSDB/getCAPScluster?nidcl=$1" + }, + "bioregistry.caps.miriam": { + "authority": "miriam", + "homepage": "http://www.bioinsilico.org/cgi-bin/CAPSDB/staticHTML/home", + "id": "bioregistry.caps.miriam", + "name": "CAPS-DB", + "prefix": "caps", + "sameas": "bioregistry.caps", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bioinsilico.org/cgi-bin/CAPSDB/getCAPScluster?nidcl=$1" + }, + "bioregistry.caps.n2t": { + "authority": "n2t", + "homepage": "http://www.bioinsilico.org/cgi-bin/CAPSDB/staticHTML/home", + "id": "bioregistry.caps.n2t", + "name": "CAPS-DB at Leeds Institute of Molecular Medicine", + "prefix": "caps", + "sameas": "bioregistry.caps", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bioinsilico.org/cgi-bin/CAPSDB/getCAPScluster?nidcl=$1" + }, + "bioregistry.cas": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cas", + "name": "CAS: A Divison of the American Chemical Society", + "prefix": "cas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences" + ], + "uri_format": "https://commonchemistry.cas.org/detail?ref=$1" + }, + "bioregistry.cas.miriam": { + "authority": "miriam", + "homepage": "https://commonchemistry.cas.org/", + "id": "bioregistry.cas.miriam", + "name": "CAS", + "prefix": "cas", + "sameas": "bioregistry.cas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://commonchemistry.cas.org/detail?ref=$1" + }, + "bioregistry.cas.n2t": { + "authority": "n2t", + "homepage": "http://commonchemistry.org", + "id": "bioregistry.cas.n2t", + "name": "CAS through Common Chemistry", + "prefix": "cas", + "sameas": "bioregistry.cas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://commonchemistry.org/ChemicalDetail.aspx?ref=$1" + }, + "bioregistry.cas.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.cas.org/", + "id": "bioregistry.cas.prefixcommons", + "name": "CAS: A Divison of the American Chemical Society", + "prefix": "cas", + "sameas": "bioregistry.cas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences" + ], + "uri_format": "http://commonchemistry.org/ChemicalDetail.aspx?ref=$1" + }, + "bioregistry.cas.wikidata": { + "authority": "wikidata", + "homepage": "https://scifinder.cas.org", + "id": "bioregistry.cas.wikidata", + "name": "CAS Registry Number", + "prefix": "P231", + "sameas": "bioregistry.cas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences" + ], + "uri_format": "https://commonchemistry.cas.org/detail?cas_rn=$1" + }, + "bioregistry.casspc": { + "authority": "bioregistry", + "homepage": "https://researcharchive.calacademy.org/research/ichthyology/catalog/fishcatmain.asp", + "id": "bioregistry.casspc", + "name": "Catalog of Fishes species database", + "prefix": "casspc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://researcharchive.calacademy.org/research/ichthyology/catalog/fishcatget.asp?spid=$1" + }, + "bioregistry.casspc.go": { + "authority": "go", + "homepage": "https://researcharchive.calacademy.org/research/ichthyology/catalog/fishcatmain.asp", + "id": "bioregistry.casspc.go", + "name": "Catalog of Fishes species database", + "prefix": "CASSPC", + "sameas": "bioregistry.casspc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://researcharchive.calacademy.org/research/ichthyology/catalog/fishcatget.asp?spid=$1" + }, + "bioregistry.cath": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cath", + "name": "CATH Protein Structural Domain Superfamily", + "prefix": "cath", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.cathdb.info/cathnode/$1" + }, + "bioregistry.cath.domain": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cath.domain", + "name": "CATH domain at UCL", + "prefix": "cath.domain", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cathdb.info/domain/$1" + }, + "bioregistry.cath.domain.miriam": { + "authority": "miriam", + "homepage": "http://www.cathdb.info/", + "id": "bioregistry.cath.domain.miriam", + "name": "CATH domain", + "prefix": "cath.domain", + "sameas": "bioregistry.cath.domain", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cathdb.info/domain/$1" + }, + "bioregistry.cath.domain.n2t": { + "authority": "n2t", + "homepage": "http://www.cathdb.info/", + "id": "bioregistry.cath.domain.n2t", + "name": "CATH domain at UCL", + "prefix": "cath.domain", + "sameas": "bioregistry.cath.domain", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cathdb.info/domain/$1" + }, + "bioregistry.cath.miriam": { + "authority": "miriam", + "homepage": "http://www.cathdb.info", + "id": "bioregistry.cath.miriam", + "name": "CATH Protein Structural Domain Superfamily", + "prefix": "cath", + "sameas": "bioregistry.cath", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cathdb.info/cathnode/$1" + }, + "bioregistry.cath.n2t": { + "authority": "n2t", + "homepage": "http://www.cathdb.info", + "id": "bioregistry.cath.n2t", + "name": "CATH Node through UCL", + "prefix": "cath", + "sameas": "bioregistry.cath", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cathdb.info/cathnode/$1" + }, + "bioregistry.cath.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.cathdb.info/", + "id": "bioregistry.cath.prefixcommons", + "name": "CATH Protein Structure Classification", + "prefix": "cath", + "sameas": "bioregistry.cath", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.cathdb.info/cathnode/$1" + }, + "bioregistry.cath.superfamily": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cath.superfamily", + "name": "CATH superfamily at UCL", + "prefix": "cath.superfamily", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cathdb.info/cathnode/$1" + }, + "bioregistry.cath.superfamily.miriam": { + "authority": "miriam", + "homepage": "http://www.cathdb.info/", + "id": "bioregistry.cath.superfamily.miriam", + "name": "CATH superfamily", + "prefix": "cath.superfamily", + "sameas": "bioregistry.cath.superfamily", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cathdb.info/cathnode/$1" + }, + "bioregistry.cath.superfamily.n2t": { + "authority": "n2t", + "homepage": "http://www.cathdb.info/", + "id": "bioregistry.cath.superfamily.n2t", + "name": "CATH superfamily at UCL", + "prefix": "cath.superfamily", + "sameas": "bioregistry.cath.superfamily", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cathdb.info/cathnode/$1" + }, + "bioregistry.cattleqtldb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cattleqtldb", + "name": "Animal QTL Cattle at Iowa State University", + "prefix": "cattleqtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1" + }, + "bioregistry.cattleqtldb.miriam": { + "authority": "miriam", + "homepage": "https://www.animalgenome.org/QTLdb", + "id": "bioregistry.cattleqtldb.miriam", + "name": "Animal Genome Cattle QTL", + "prefix": "cattleqtldb", + "sameas": "bioregistry.cattleqtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1" + }, + "bioregistry.cattleqtldb.n2t": { + "authority": "n2t", + "homepage": "http://www.animalgenome.org/cgi-bin/QTLdb/BT/index", + "id": "bioregistry.cattleqtldb.n2t", + "name": "Animal QTL Cattle at Iowa State University", + "prefix": "cattleqtldb", + "sameas": "bioregistry.cattleqtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.animalgenome.org/cgi-bin/QTLdb/BT/qdetails?QTL_ID=$1" + }, + "bioregistry.cattleqtldb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.animalgenome.org/cgi-bin/QTLdb/BT/index", + "id": "bioregistry.cattleqtldb.prefixcommons", + "name": "Cattle Quantitative Trait Locus database", + "prefix": "cattleqtldb", + "sameas": "bioregistry.cattleqtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.animalgenome.org/cgi-bin/QTLdb/BT/qdetails?QTL_ID=$1" + }, + "bioregistry.cazy": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cazy", + "name": "The Carbohydrate-Active enZYmes Database", + "prefix": "cazy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.cazy.org/fam/$1.html" + }, + "bioregistry.cazy.go": { + "authority": "go", + "homepage": "http://www.cazy.org/", + "id": "bioregistry.cazy.go", + "name": "Carbohydrate Active EnZYmes", + "prefix": "CAZY", + "sameas": "bioregistry.cazy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.cazy.org/$1.html" + }, + "bioregistry.cazy.miriam": { + "authority": "miriam", + "homepage": "http://www.cazy.org/", + "id": "bioregistry.cazy.miriam", + "name": "CAZy", + "prefix": "cazy", + "sameas": "bioregistry.cazy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cazy.org/$1.html" + }, + "bioregistry.cazy.n2t": { + "authority": "n2t", + "homepage": "http://www.cazy.org/", + "id": "bioregistry.cazy.n2t", + "name": "CAZy at CNRS", + "prefix": "cazy", + "sameas": "bioregistry.cazy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cazy.org/$1.html" + }, + "bioregistry.cazy.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.cazy.org/", + "id": "bioregistry.cazy.prefixcommons", + "name": "The Carbohydrate-Active enZYmes Database", + "prefix": "cazy", + "sameas": "bioregistry.cazy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.cazy.org/$1.html" + }, + "bioregistry.cazy.uniprot": { + "authority": "uniprot", + "homepage": "http://www.cazy.org/", + "id": "bioregistry.cazy.uniprot", + "name": "Carbohydrate-Active enZymes", + "prefix": "DB-0136", + "sameas": "bioregistry.cazy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.cazy.org/fam/$1.html" + }, + "bioregistry.cbioportal": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cbioportal", + "name": "The cBioPortal for Cancer Genomics", + "prefix": "cbioportal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cbioportal.org/study?id=$1#summary" + }, + "bioregistry.cbioportal.miriam": { + "authority": "miriam", + "homepage": "http://www.cbioportal.org", + "id": "bioregistry.cbioportal.miriam", + "name": "The cBioPortal for Cancer Genomics", + "prefix": "cbioportal", + "sameas": "bioregistry.cbioportal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cbioportal.org/study?id=$1#summary" + }, + "bioregistry.cbioportal.n2t": { + "authority": "n2t", + "homepage": "http://www.cbioportal.org", + "id": "bioregistry.cbioportal.n2t", + "name": "The cBioPortal for Cancer Genomics", + "prefix": "cbioportal", + "sameas": "bioregistry.cbioportal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cbioportal.org/study?id=$1#summary" + }, + "bioregistry.ccdc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ccdc", + "name": "CCDC Number", + "prefix": "ccdc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ccdc.cam.ac.uk/services/structures?pid=ccdc:$1&sid=IDORG" + }, + "bioregistry.ccdc.miriam": { + "authority": "miriam", + "homepage": "https://www.ccdc.cam.ac.uk/", + "id": "bioregistry.ccdc.miriam", + "name": "CCDC Number", + "prefix": "ccdc", + "sameas": "bioregistry.ccdc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ccdc.cam.ac.uk/services/structures?pid=ccdc:$1&sid=IDORG" + }, + "bioregistry.ccds": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ccds", + "name": "The Consensus CDS (CCDS) project", + "prefix": "ccds", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&GO=MainBrowse&DATA=$1" + }, + "bioregistry.ccds.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.ccds.biocontext", + "name": null, + "prefix": "CCDS", + "sameas": "bioregistry.ccds", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&DATA=$1" + }, + "bioregistry.ccds.miriam": { + "authority": "miriam", + "homepage": "http://www.ncbi.nlm.nih.gov/CCDS/", + "id": "bioregistry.ccds.miriam", + "name": "Consensus CDS", + "prefix": "ccds", + "sameas": "bioregistry.ccds", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&DATA=$1" + }, + "bioregistry.ccds.n2t": { + "authority": "n2t", + "homepage": "http://www.ncbi.nlm.nih.gov/CCDS/", + "id": "bioregistry.ccds.n2t", + "name": "Consensus CDS at NCBI", + "prefix": "ccds", + "sameas": "bioregistry.ccds", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&DATA=$1" + }, + "bioregistry.ccds.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/CCDS/", + "id": "bioregistry.ccds.prefixcommons", + "name": "The Consensus CDS", + "prefix": "ccds", + "sameas": "bioregistry.ccds", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/projects/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&DATA=$1" + }, + "bioregistry.ccds.uniprot": { + "authority": "uniprot", + "homepage": "https://www.ncbi.nlm.nih.gov/CCDS", + "id": "bioregistry.ccds.uniprot", + "name": "The Consensus CDS (CCDS) project", + "prefix": "DB-0187", + "sameas": "bioregistry.ccds", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&GO=MainBrowse&DATA=$1" + }, + "bioregistry.ccle": { + "authority": "bioregistry", + "homepage": "https://www.cbioportal.org/study/summary?id=ccle_broad_2019", + "id": "bioregistry.ccle", + "name": "Cancer Cell Line Encyclopedia Cells", + "prefix": "ccle", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://portals.broadinstitute.org/ccle/page?cell_line=$1" + }, + "bioregistry.ccle.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://portals.broadinstitute.org/ccle", + "id": "bioregistry.ccle.cellosaurus", + "name": "Cancer Cell Line Encyclopedia", + "prefix": "CCLE", + "sameas": "bioregistry.ccle", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://portals.broadinstitute.org/ccle/page?cell_line=$1" + }, + "bioregistry.cco": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cco", + "name": "Cell Cycle Ontology through OLS", + "prefix": "cco", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/cco/terms?obo_id=CCO:$1" + }, + "bioregistry.cco.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=CCO", + "id": "bioregistry.cco.miriam", + "name": "Cell Cycle Ontology", + "prefix": "cco", + "sameas": "bioregistry.cco", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/cco/terms?obo_id=CCO:$1" + }, + "bioregistry.cco.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=CCO", + "id": "bioregistry.cco.n2t", + "name": "Cell Cycle Ontology through OLS", + "prefix": "cco", + "sameas": "bioregistry.cco", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/cco/terms?obo_id=CCO:$1" + }, + "bioregistry.ccrid": { + "authority": "bioregistry", + "homepage": "http://www.cellresource.cn", + "id": "bioregistry.ccrid", + "name": "National Experimental Cell Resource Sharing Platform", + "prefix": "ccrid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cellresource.cn/cellsearch.aspx?sc=1&where=$1" + }, + "bioregistry.ccrid.cellosaurus": { + "authority": "cellosaurus", + "homepage": "http://cellresource.cn/", + "id": "bioregistry.ccrid.cellosaurus", + "name": "Chinese Cell Resource Information Database", + "prefix": "CCRID", + "sameas": "bioregistry.ccrid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cellresource.cn/cellsearch.aspx?sc=1&where=$1" + }, + "bioregistry.cdd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cdd", + "name": "Conserved Domain Database at NCBI", + "prefix": "cdd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid=$1" + }, + "bioregistry.cdd.go": { + "authority": "go", + "homepage": "https://www.ncbi.nlm.nih.gov/cdd", + "id": "bioregistry.cdd.go", + "name": "Conserved Domain Database at NCBI", + "prefix": "CDD", + "sameas": "bioregistry.cdd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid=$1" + }, + "bioregistry.cdd.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=cdd", + "id": "bioregistry.cdd.miriam", + "name": "Conserved Domain Database", + "prefix": "cdd", + "sameas": "bioregistry.cdd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid=$1" + }, + "bioregistry.cdd.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=cdd", + "id": "bioregistry.cdd.n2t", + "name": "Conserved Domain Database at NCBI", + "prefix": "cdd", + "sameas": "bioregistry.cdd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid=$1" + }, + "bioregistry.cdd.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/Structure/cdd/cdd.shtml", + "id": "bioregistry.cdd.prefixcommons", + "name": "Conserved Domain Database", + "prefix": "cdd", + "sameas": "bioregistry.cdd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid=$1" + }, + "bioregistry.cdd.uniprot": { + "authority": "uniprot", + "homepage": "https://www.ncbi.nlm.nih.gov/cdd", + "id": "bioregistry.cdd.uniprot", + "name": "Conserved Domains Database", + "prefix": "DB-0214", + "sameas": "bioregistry.cdd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid=$1" + }, + "bioregistry.cdpd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cdpd", + "name": "Canadian Drug Identification Number at Health Canada", + "prefix": "cdpd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/info.do?lang=eng&code=$1" + }, + "bioregistry.cdpd.miriam": { + "authority": "miriam", + "homepage": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/index-eng.jsp", + "id": "bioregistry.cdpd.miriam", + "name": "Canadian Drug Product Database", + "prefix": "cdpd", + "sameas": "bioregistry.cdpd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/info.do?lang=eng&code=$1" + }, + "bioregistry.cdpd.n2t": { + "authority": "n2t", + "homepage": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/index-eng.jsp", + "id": "bioregistry.cdpd.n2t", + "name": "Canadian Drug Identification Number at Health Canada", + "prefix": "cdpd", + "sameas": "bioregistry.cdpd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/info.do?lang=eng&code=$1" + }, + "bioregistry.cell_biolabs": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cell_biolabs", + "name": "Cell Biolabs cell line products", + "prefix": "cell_biolabs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cellbiolabs.com/search?keywords=$1" + }, + "bioregistry.cell_biolabs.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.cellbiolabs.com", + "id": "bioregistry.cell_biolabs.cellosaurus", + "name": "Cell Biolabs cell line products", + "prefix": "Cell_Biolabs", + "sameas": "bioregistry.cell_biolabs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cellbiolabs.com/search?keywords=$1" + }, + "bioregistry.cell_model_passport": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cell_model_passport", + "name": "Sanger Cell Model Passports", + "prefix": "cell_model_passport", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cellmodelpassports.sanger.ac.uk/passports/$1" + }, + "bioregistry.cell_model_passport.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://cellmodelpassports.sanger.ac.uk/", + "id": "bioregistry.cell_model_passport.cellosaurus", + "name": "Sanger Cell Model Passports", + "prefix": "Cell_Model_Passport", + "sameas": "bioregistry.cell_model_passport", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cellmodelpassports.sanger.ac.uk/passports/$1" + }, + "bioregistry.cellbank.australia": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cellbank.australia", + "name": "CellBank Australia", + "prefix": "cellbank.australia", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cellbankaustralia.com/$1" + }, + "bioregistry.cellbank.australia.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.cellbankaustralia.com/cellbank-australia-exclusive-lines/", + "id": "bioregistry.cellbank.australia.cellosaurus", + "name": "CellBank Australia", + "prefix": "CBA", + "sameas": "bioregistry.cellbank.australia", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cellbankaustralia.com/$1" + }, + "bioregistry.cellimage": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cellimage", + "name": "Cell Image Library at American Society for Cell Biology", + "prefix": "cellimage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cellimagelibrary.org/images/$1" + }, + "bioregistry.cellimage.miriam": { + "authority": "miriam", + "homepage": "http://cellimagelibrary.org/", + "id": "bioregistry.cellimage.miriam", + "name": "Cell Image Library", + "prefix": "cellimage", + "sameas": "bioregistry.cellimage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cellimagelibrary.org/images/$1" + }, + "bioregistry.cellimage.n2t": { + "authority": "n2t", + "homepage": "http://cellimagelibrary.org/", + "id": "bioregistry.cellimage.n2t", + "name": "Cell Image Library at American Society for Cell Biology", + "prefix": "cellimage", + "sameas": "bioregistry.cellimage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cellimagelibrary.org/images/$1" + }, + "bioregistry.cellimage.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.cellimage.prefixcommons", + "name": "The Cell: An Image Library", + "prefix": "cellimage", + "sameas": "bioregistry.cellimage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cellimagelibrary.org/images/$1" + }, + "bioregistry.cellopub": { + "authority": "bioregistry", + "homepage": "https://web.expasy.org/cellosaurus/", + "id": "bioregistry.cellopub", + "name": "Cellosaurus Publication", + "prefix": "cellopub", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cellosaurus.org/cellopub/$1" + }, + "bioregistry.cellopub.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.cellosaurus.org/", + "id": "bioregistry.cellopub.cellosaurus", + "name": "Cellosaurus Publication", + "prefix": "CelloPub", + "sameas": "bioregistry.cellopub", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cellosaurus.org/cellopub/$1" + }, + "bioregistry.cellosaurus": { + "authority": "bioregistry", + "homepage": "https://cellosaurus.org", + "id": "bioregistry.cellosaurus", + "name": "Cellosaurus - a knowledge resource on cell lines", + "prefix": "cellosaurus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cellosaurus.org/$1" + }, + "bioregistry.cellosaurus.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.cellosaurus.org/", + "id": "bioregistry.cellosaurus.cellosaurus", + "name": "Cellosaurus - a knowledge resource on cell lines", + "prefix": "Cellosaurus", + "sameas": "bioregistry.cellosaurus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cellosaurus.org/$1" + }, + "bioregistry.cellosaurus.miriam": { + "authority": "miriam", + "homepage": "https://www.cellosaurus.org/", + "id": "bioregistry.cellosaurus.miriam", + "name": "Cellosaurus", + "prefix": "cellosaurus", + "sameas": "bioregistry.cellosaurus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cellosaurus.org/$1" + }, + "bioregistry.cellosaurus.n2t": { + "authority": "n2t", + "homepage": "https://web.expasy.org/cellosaurus/", + "id": "bioregistry.cellosaurus.n2t", + "name": "Cellosaurus through SIB", + "prefix": "cellosaurus", + "sameas": "bioregistry.cellosaurus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://web.expasy.org/cellosaurus/$1" + }, + "bioregistry.cellosaurus.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.cellosaurus.wikidata", + "name": "Cellosaurus ID", + "prefix": "P3289", + "sameas": "bioregistry.cellosaurus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cellosaurus.org/$1" + }, + "bioregistry.cellrepo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cellrepo", + "name": "Cell Version Control Repository", + "prefix": "cellrepo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cellrepo.ico2s.org/repositories/$1" + }, + "bioregistry.cellrepo.miriam": { + "authority": "miriam", + "homepage": "https://cellrepo.ico2s.org/", + "id": "bioregistry.cellrepo.miriam", + "name": "Cell Version Control Repository", + "prefix": "cellrepo", + "sameas": "bioregistry.cellrepo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cellrepo.ico2s.org/repositories/$1" + }, + "bioregistry.cgd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cgd", + "name": "Candida Genome Database at Stanford University", + "prefix": "cgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics", + "molecular biology" + ], + "uri_format": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid=$1" + }, + "bioregistry.cgd.go": { + "authority": "go", + "homepage": "http://www.candidagenome.org/", + "id": "bioregistry.cgd.go", + "name": "Candida Genome Database", + "prefix": "CGD", + "sameas": "bioregistry.cgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics", + "molecular biology" + ], + "uri_format": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid=$1" + }, + "bioregistry.cgd.miriam": { + "authority": "miriam", + "homepage": "http://www.candidagenome.org/", + "id": "bioregistry.cgd.miriam", + "name": "Candida Genome Database", + "prefix": "cgd", + "sameas": "bioregistry.cgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid=$1" + }, + "bioregistry.cgd.n2t": { + "authority": "n2t", + "homepage": "http://www.candidagenome.org/", + "id": "bioregistry.cgd.n2t", + "name": "Candida Genome Database at Stanford University", + "prefix": "cgd", + "sameas": "bioregistry.cgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid=$1" + }, + "bioregistry.cgd.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.candidagenome.org/", + "id": "bioregistry.cgd.prefixcommons", + "name": "Candida Genome Database", + "prefix": "cgd", + "sameas": "bioregistry.cgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics", + "molecular biology" + ], + "uri_format": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid=$1" + }, + "bioregistry.cgd.uniprot": { + "authority": "uniprot", + "homepage": "http://www.candidagenome.org/", + "id": "bioregistry.cgd.uniprot", + "name": "Candida Genome Database", + "prefix": "DB-0126", + "sameas": "bioregistry.cgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics", + "molecular biology" + ], + "uri_format": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid=$1" + }, + "bioregistry.cghdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cghdb", + "name": "CGH Data Base", + "prefix": "cghdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cghtmd.jp/CGHDatabase/mapViewer?hid=$1&aid=%t&lang=en" + }, + "bioregistry.cghdb.cellosaurus": { + "authority": "cellosaurus", + "homepage": "http://www.cghtmd.jp/CGHDatabase/index_e.jsp", + "id": "bioregistry.cghdb.cellosaurus", + "name": "CGH Data Base", + "prefix": "CGH-DB", + "sameas": "bioregistry.cghdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cghtmd.jp/CGHDatabase/mapViewer?hid=$1&aid=%t&lang=en" + }, + "bioregistry.cgnc": { + "authority": "bioregistry", + "homepage": "http://birdgenenames.org/cgnc/", + "id": "bioregistry.cgnc", + "name": "Chicken Gene Nomenclature Consortium", + "prefix": "cgnc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.agnc.msstate.edu/GeneReport.aspx?a=$1" + }, + "bioregistry.cgnc.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.agnc.msstate.edu/", + "id": "bioregistry.cgnc.prefixcommons", + "name": "Chicken Gene Nomenclature Consortium", + "prefix": "cgnc", + "sameas": "bioregistry.cgnc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.agnc.msstate.edu/GeneReport.aspx?a=$1" + }, + "bioregistry.cgsc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cgsc", + "name": "E. coli Genetic Resources at Yale", + "prefix": "cgsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://cgsc.biology.yale.edu/Site.php?ID=$1" + }, + "bioregistry.cgsc.miriam": { + "authority": "miriam", + "homepage": "http://cgsc.biology.yale.edu/index.php", + "id": "bioregistry.cgsc.miriam", + "name": "CGSC Strain", + "prefix": "cgsc", + "sameas": "bioregistry.cgsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cgsc.biology.yale.edu/Site.php?ID=$1" + }, + "bioregistry.cgsc.n2t": { + "authority": "n2t", + "homepage": "http://cgsc.biology.yale.edu/index.php", + "id": "bioregistry.cgsc.n2t", + "name": "CGSC at Yale university", + "prefix": "cgsc", + "sameas": "bioregistry.cgsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cgsc.biology.yale.edu/Site.php?ID=$1" + }, + "bioregistry.cgsc.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://cgsc.biology.yale.edu/", + "id": "bioregistry.cgsc.prefixcommons", + "name": "The Coli Genetic Stock Center", + "prefix": "cgsc", + "sameas": "bioregistry.cgsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://cgsc.biology.yale.edu/Site.php?ID=$1" + }, + "bioregistry.charprot": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.charprot", + "name": "CharProt at JCVI", + "prefix": "charprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.jcvi.org/charprotdb/index.cgi/view/$1" + }, + "bioregistry.charprot.miriam": { + "authority": "miriam", + "homepage": "http://www.jcvi.org/charprotdb", + "id": "bioregistry.charprot.miriam", + "name": "CharProt", + "prefix": "charprot", + "sameas": "bioregistry.charprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.jcvi.org/charprotdb/index.cgi/view/$1" + }, + "bioregistry.charprot.n2t": { + "authority": "n2t", + "homepage": "http://www.jcvi.org/charprotdb", + "id": "bioregistry.charprot.n2t", + "name": "CharProt at JCVI", + "prefix": "charprot", + "sameas": "bioregistry.charprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.jcvi.org/charprotdb/index.cgi/view/$1" + }, + "bioregistry.chebi": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.chebi", + "name": "Chemical Entities of Biological Interest Ontology", + "prefix": "chebi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences" + ], + "uri_format": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:$1" + }, + "bioregistry.chebi.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ebi.ac.uk/chebi/", + "id": "bioregistry.chebi.cellosaurus", + "name": "Chemical Entities of Biological Interest", + "prefix": "ChEBI", + "sameas": "bioregistry.chebi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences" + ], + "uri_format": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=$1" + }, + "bioregistry.chebi.go": { + "authority": "go", + "homepage": "http://www.ebi.ac.uk/chebi/", + "id": "bioregistry.chebi.go", + "name": "Chemical Entities of Biological Interest", + "prefix": "CHEBI", + "sameas": "bioregistry.chebi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences" + ], + "uri_format": "http://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:$1" + }, + "bioregistry.chebi.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/chebi/", + "id": "bioregistry.chebi.miriam", + "name": "ChEBI", + "prefix": "chebi", + "sameas": "bioregistry.chebi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:$1" + }, + "bioregistry.chebi.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/chebi/", + "id": "bioregistry.chebi.n2t", + "name": "ChEBI (Chemical Entities of Biological Interest)", + "prefix": "chebi", + "sameas": "bioregistry.chebi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:$1" + }, + "bioregistry.chebi.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/chebi/", + "id": "bioregistry.chebi.prefixcommons", + "name": "Chemical Entities of Biological Interest", + "prefix": "chebi", + "sameas": "bioregistry.chebi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences" + ], + "uri_format": "http://www.ebi.ac.uk/chebi/searchId.do?chebiId=$1" + }, + "bioregistry.chebi.wikidata": { + "authority": "wikidata", + "homepage": "https://www.ebi.ac.uk/chebi", + "id": "bioregistry.chebi.wikidata", + "name": "ChEBI ID", + "prefix": "P683", + "sameas": "bioregistry.chebi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences" + ], + "uri_format": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:$1" + }, + "bioregistry.chembank": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.chembank", + "name": "ChemBank", + "prefix": "chembank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "http://chembank.broadinstitute.org/chemistry/viewMolecule.htm?cbid=$1" + }, + "bioregistry.chembank.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.chembank.biolink", + "name": null, + "prefix": "ChemBank", + "sameas": "bioregistry.chembank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "http://chembank.broadinstitute.org/chemistry/viewMolecule.htm?cbid=$1" + }, + "bioregistry.chembank.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://chembank.broad.harvard.edu", + "id": "bioregistry.chembank.prefixcommons", + "name": "ChemBank", + "prefix": "chembank", + "sameas": "bioregistry.chembank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "http://chembank.broadinstitute.org/chemistry/viewMolecule.htm?cbid=$1" + }, + "bioregistry.chembl": { + "authority": "bioregistry", + "homepage": "https://www.ebi.ac.uk/chembl", + "id": "bioregistry.chembl", + "name": "ChEMBL database of bioactive drug-like small molecules", + "prefix": "chembl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/chembldb/index.php/compound/inspect/$1" + }, + "bioregistry.chembl.cell": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.chembl.cell", + "name": "ChEMBL database of bioactive drug-like small molecules - Cell lines section", + "prefix": "chembl.cell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology" + ], + "uri_format": "https://www.ebi.ac.uk/chembldb/cell/inspect/$1" + }, + "bioregistry.chembl.cell.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ebi.ac.uk/chembldb", + "id": "bioregistry.chembl.cell.cellosaurus", + "name": "ChEMBL database of bioactive drug-like small molecules - Cell lines section", + "prefix": "ChEMBL-Cells", + "sameas": "bioregistry.chembl.cell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/chembldb/cell/inspect/$1" + }, + "bioregistry.chembl.compound": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.chembl.compound", + "name": "ChEMBL compound database at EBI", + "prefix": "chembl.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/chembl/compound_report_card/$1/" + }, + "bioregistry.chembl.compound.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/chembldb/", + "id": "bioregistry.chembl.compound.miriam", + "name": "ChEMBL compound", + "prefix": "chembl.compound", + "sameas": "bioregistry.chembl.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/chembl/compound/inspect/$1" + }, + "bioregistry.chembl.compound.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/chembldb/", + "id": "bioregistry.chembl.compound.n2t", + "name": "ChEMBL compound database at EBI", + "prefix": "chembl.compound", + "sameas": "bioregistry.chembl.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/chembl/compound/inspect/$1" + }, + "bioregistry.chembl.compound.wikidata": { + "authority": "wikidata", + "homepage": "https://www.ebi.ac.uk/chembl", + "id": "bioregistry.chembl.compound.wikidata", + "name": "ChEMBL ID", + "prefix": "P592", + "sameas": "bioregistry.chembl.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/chembl/compound_report_card/$1/" + }, + "bioregistry.chembl.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/chembl", + "id": "bioregistry.chembl.miriam", + "name": "ChEMBL", + "prefix": "chembl", + "sameas": "bioregistry.chembl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/chembl/entity/$1" + }, + "bioregistry.chembl.prefixcommons": { + "authority": "prefixcommons", + "homepage": "https://www.ebi.ac.uk/chembldb/", + "id": "bioregistry.chembl.prefixcommons", + "name": "chEMBL", + "prefix": "chembl", + "sameas": "bioregistry.chembl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/chembldb/index.php/compound/inspect/$1" + }, + "bioregistry.chembl.target": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.chembl.target", + "name": "ChEMBL database of bioactive drug-like small molecules - Targets section", + "prefix": "chembl.target", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/chembldb/target/inspect/$1" + }, + "bioregistry.chembl.target.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ebi.ac.uk/chembldb", + "id": "bioregistry.chembl.target.cellosaurus", + "name": "ChEMBL database of bioactive drug-like small molecules - Targets section", + "prefix": "ChEMBL-Targets", + "sameas": "bioregistry.chembl.target", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/chembldb/target/inspect/$1" + }, + "bioregistry.chembl.target.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/chembldb/", + "id": "bioregistry.chembl.target.miriam", + "name": "ChEMBL target", + "prefix": "chembl.target", + "sameas": "bioregistry.chembl.target", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/chembl/target/inspect/$1" + }, + "bioregistry.chembl.target.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/chembldb/", + "id": "bioregistry.chembl.target.n2t", + "name": "ChEMBL targets database at EBI", + "prefix": "chembl.target", + "sameas": "bioregistry.chembl.target", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/chembl/target/inspect/$1" + }, + "bioregistry.chembl.uniprot": { + "authority": "uniprot", + "homepage": "https://www.ebi.ac.uk/chembl", + "id": "bioregistry.chembl.uniprot", + "name": "ChEMBL database of bioactive drug-like small molecules", + "prefix": "DB-0174", + "sameas": "bioregistry.chembl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/chembl/target/inspect/$1" + }, + "bioregistry.chemdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.chemdb", + "name": "The UC Irvine ChemDB", + "prefix": "chemdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cdb.ics.uci.edu/cgibin/ChemicalDetailWeb.py?chemical_id=$1" + }, + "bioregistry.chemdb.miriam": { + "authority": "miriam", + "homepage": "http://cdb.ics.uci.edu/", + "id": "bioregistry.chemdb.miriam", + "name": "ChemDB", + "prefix": "chemdb", + "sameas": "bioregistry.chemdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cdb.ics.uci.edu/cgibin/ChemicalDetailWeb.py?chemical_id=$1" + }, + "bioregistry.chemdb.n2t": { + "authority": "n2t", + "homepage": "http://cdb.ics.uci.edu/", + "id": "bioregistry.chemdb.n2t", + "name": "ChemDB at UC Irvine", + "prefix": "chemdb", + "sameas": "bioregistry.chemdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cdb.ics.uci.edu/cgibin/ChemicalDetailWeb.py?chemical_id=$1" + }, + "bioregistry.chemdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://cdb.ics.uci.edu", + "id": "bioregistry.chemdb.prefixcommons", + "name": "The UC Irvine ChemDB", + "prefix": "chemdb", + "sameas": "bioregistry.chemdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cdb.ics.uci.edu/cgibin/ChemicalDetailWeb.py?chemical_id=$1" + }, + "bioregistry.chemidplus": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.chemidplus", + "name": "ChemIDplus at National Library of Medicine", + "prefix": "chemidplus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://chem.nlm.nih.gov/chemidplus/rn/$1" + }, + "bioregistry.chemidplus.miriam": { + "authority": "miriam", + "homepage": "https://chem.nlm.nih.gov/chemidplus/chemidheavy.jsp", + "id": "bioregistry.chemidplus.miriam", + "name": "ChemIDplus", + "prefix": "chemidplus", + "sameas": "bioregistry.chemidplus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://chem.nlm.nih.gov/chemidplus/rn/$1" + }, + "bioregistry.chemidplus.n2t": { + "authority": "n2t", + "homepage": "https://chem.nlm.nih.gov/chemidplus/chemidheavy.jsp", + "id": "bioregistry.chemidplus.n2t", + "name": "ChemIDplus at National Library of Medicine", + "prefix": "chemidplus", + "sameas": "bioregistry.chemidplus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://chem.nlm.nih.gov/chemidplus/rn/$1" + }, + "bioregistry.chemidplus.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://chem.sis.nlm.nih.gov/chemidplus/chemidheavy.jsp", + "id": "bioregistry.chemidplus.prefixcommons", + "name": "ChemIDplus", + "prefix": "chemidplus", + "sameas": "bioregistry.chemidplus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://chem.sis.nlm.nih.gov/chemidplus/direct.jsp?regno=$1" + }, + "bioregistry.chemspider": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.chemspider", + "name": "ChemSpider - Database of Chemical Structures and Property Predictions", + "prefix": "chemspider", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.chemspider.com/Chemical-Structure.$1.html" + }, + "bioregistry.chemspider.miriam": { + "authority": "miriam", + "homepage": "http://www.chemspider.com/", + "id": "bioregistry.chemspider.miriam", + "name": "ChemSpider", + "prefix": "chemspider", + "sameas": "bioregistry.chemspider", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.chemspider.com/Chemical-Structure.$1.html" + }, + "bioregistry.chemspider.n2t": { + "authority": "n2t", + "homepage": "http://www.chemspider.com/", + "id": "bioregistry.chemspider.n2t", + "name": "ChemSpider at RSC", + "prefix": "chemspider", + "sameas": "bioregistry.chemspider", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.chemspider.com/Chemical-Structure.$1.html" + }, + "bioregistry.chemspider.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.chemspider.com/", + "id": "bioregistry.chemspider.prefixcommons", + "name": "ChemSpider - Database of Chemical Structures and Property Predictions", + "prefix": "chemspider", + "sameas": "bioregistry.chemspider", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.chemspider.com/Chemical-Structure.$1.html" + }, + "bioregistry.chemspider.wikidata": { + "authority": "wikidata", + "homepage": "https://www.chemspider.com/", + "id": "bioregistry.chemspider.wikidata", + "name": "ChemSpider ID", + "prefix": "P661", + "sameas": "bioregistry.chemspider", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.chemspider.com/Chemical-Structure.$1.html" + }, + "bioregistry.chickenqtldb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.chickenqtldb", + "name": "Animal QTL Chicken at Iowa State University", + "prefix": "chickenqtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1" + }, + "bioregistry.chickenqtldb.miriam": { + "authority": "miriam", + "homepage": "https://www.animalgenome.org/QTLdb", + "id": "bioregistry.chickenqtldb.miriam", + "name": "Animal Genome Chicken QTL", + "prefix": "chickenqtldb", + "sameas": "bioregistry.chickenqtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1" + }, + "bioregistry.chickenqtldb.n2t": { + "authority": "n2t", + "homepage": "http://www.animalgenome.org/cgi-bin/QTLdb/GG/index", + "id": "bioregistry.chickenqtldb.n2t", + "name": "Animal QTL Chicken at Iowa State University", + "prefix": "chickenqtldb", + "sameas": "bioregistry.chickenqtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.animalgenome.org/cgi-bin/QTLdb/GG/qdetails?QTL_ID=$1" + }, + "bioregistry.chickenqtldb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.animalgenome.org/cgi-bin/QTLdb/GG/index", + "id": "bioregistry.chickenqtldb.prefixcommons", + "name": "Chicken Quantitative Trait Locus database", + "prefix": "chickenqtldb", + "sameas": "bioregistry.chickenqtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.animalgenome.org/cgi-bin/QTLdb/GG/qdetails?QTL_ID=$1" + }, + "bioregistry.citexplore": { + "authority": "bioregistry", + "homepage": "https://www.ebi.ac.uk/citexplore/", + "id": "bioregistry.citexplore", + "name": "Cerebrotendinous Xanthomatosis Ontology", + "prefix": "citexplore", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ebi.ac.uk/citexplore/citationDetails.do?dataSource=MED&externalId=$1" + }, + "bioregistry.citexplore.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/citexplore/", + "id": "bioregistry.citexplore.prefixcommons", + "name": "CiteXplore", + "prefix": "citexplore", + "sameas": "bioregistry.citexplore", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ebi.ac.uk/citexplore/citationDetails.do?dataSource=MED&externalId=$1" + }, + "bioregistry.civic.aid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.civic.aid", + "name": "CIViC Assertion", + "prefix": "civic.aid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/assertions/$1" + }, + "bioregistry.civic.aid.miriam": { + "authority": "miriam", + "homepage": "https://civicdb.org/", + "id": "bioregistry.civic.aid.miriam", + "name": "CIViC Assertion", + "prefix": "civic.aid", + "sameas": "bioregistry.civic.aid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/assertions/$1" + }, + "bioregistry.civic.did": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.civic.did", + "name": "CIViC Disease", + "prefix": "civic.did", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/diseases/$1" + }, + "bioregistry.civic.did.miriam": { + "authority": "miriam", + "homepage": "https://civicdb.org/", + "id": "bioregistry.civic.did.miriam", + "name": "CIViC Disease", + "prefix": "civic.did", + "sameas": "bioregistry.civic.did", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/diseases/$1" + }, + "bioregistry.civic.eid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.civic.eid", + "name": "CIViC Evidence", + "prefix": "civic.eid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/evidence/$1" + }, + "bioregistry.civic.eid.miriam": { + "authority": "miriam", + "homepage": "https://civicdb.org/", + "id": "bioregistry.civic.eid.miriam", + "name": "CIViC Evidence", + "prefix": "civic.eid", + "sameas": "bioregistry.civic.eid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/evidence/$1" + }, + "bioregistry.civic.gid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.civic.gid", + "name": "CIViC gene ID", + "prefix": "civic.gid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/gene/$1" + }, + "bioregistry.civic.gid.miriam": { + "authority": "miriam", + "homepage": "https://civicdb.org/", + "id": "bioregistry.civic.gid.miriam", + "name": "CIViC Gene", + "prefix": "civic.gid", + "sameas": "bioregistry.civic.gid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/gene/$1" + }, + "bioregistry.civic.gid.wikidata": { + "authority": "wikidata", + "homepage": "https://civic.genome.wustl.edu/#/home", + "id": "bioregistry.civic.gid.wikidata", + "name": "CIViC gene ID", + "prefix": "P11277", + "sameas": "bioregistry.civic.gid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/genes/$1/summary" + }, + "bioregistry.civic.mpid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.civic.mpid", + "name": "CIViC Molecular Profile", + "prefix": "civic.mpid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/molecular_profile/$1" + }, + "bioregistry.civic.mpid.miriam": { + "authority": "miriam", + "homepage": "https://civicdb.org/", + "id": "bioregistry.civic.mpid.miriam", + "name": "CIViC Molecular Profile", + "prefix": "civic.mpid", + "sameas": "bioregistry.civic.mpid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/molecular_profile/$1" + }, + "bioregistry.civic.sid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.civic.sid", + "name": "CIViC Source", + "prefix": "civic.sid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/sources/$1" + }, + "bioregistry.civic.sid.miriam": { + "authority": "miriam", + "homepage": "https://civicdb.org/", + "id": "bioregistry.civic.sid.miriam", + "name": "CIViC Source", + "prefix": "civic.sid", + "sameas": "bioregistry.civic.sid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/sources/$1" + }, + "bioregistry.civic.tid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.civic.tid", + "name": "CIViC Therapy", + "prefix": "civic.tid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/drugs/$1" + }, + "bioregistry.civic.tid.miriam": { + "authority": "miriam", + "homepage": "https://civicdb.org/", + "id": "bioregistry.civic.tid.miriam", + "name": "CIViC Therapy", + "prefix": "civic.tid", + "sameas": "bioregistry.civic.tid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/drugs/$1" + }, + "bioregistry.civic.vgid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.civic.vgid", + "name": "CIViC Variant Group", + "prefix": "civic.vgid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/variant_group/$1" + }, + "bioregistry.civic.vgid.miriam": { + "authority": "miriam", + "homepage": "https://civicdb.org/", + "id": "bioregistry.civic.vgid.miriam", + "name": "CIViC Variant Group", + "prefix": "civic.vgid", + "sameas": "bioregistry.civic.vgid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/variant_group/$1" + }, + "bioregistry.civic.vid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.civic.vid", + "name": "CIViC variant ID", + "prefix": "civic.vid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/variant/$1" + }, + "bioregistry.civic.vid.miriam": { + "authority": "miriam", + "homepage": "https://civicdb.org/", + "id": "bioregistry.civic.vid.miriam", + "name": "CIViC Variant", + "prefix": "civic.vid", + "sameas": "bioregistry.civic.vid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civicdb.org/links/variant/$1" + }, + "bioregistry.civic.vid.wikidata": { + "authority": "wikidata", + "homepage": "https://civic.genome.wustl.edu/#/home", + "id": "bioregistry.civic.vid.wikidata", + "name": "CIViC variant ID", + "prefix": "P3329", + "sameas": "bioregistry.civic.vid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://civic.genome.wustl.edu/links/variants/$1" + }, + "bioregistry.cl": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cl", + "name": "Cell Type Ontology through BioPortal", + "prefix": "cl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/cl/terms?iri=http://purl.obolibrary.org/obo/$1" + }, + "bioregistry.cl.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://obophenotype.github.io/cell-ontology/", + "id": "bioregistry.cl.cellosaurus", + "name": "Cell Ontology", + "prefix": "CL", + "sameas": "bioregistry.cl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/cl/terms?iri=http://purl.obolibrary.org/obo/$1" + }, + "bioregistry.cl.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/ontologies/CL", + "id": "bioregistry.cl.miriam", + "name": "Cell Type Ontology", + "prefix": "cl", + "sameas": "bioregistry.cl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/CL/CL:$1" + }, + "bioregistry.cl.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/CL", + "id": "bioregistry.cl.n2t", + "name": "Cell Type Ontology through BioPortal", + "prefix": "cl", + "sameas": "bioregistry.cl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/CL/CL:$1" + }, + "bioregistry.classyfire": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.classyfire", + "name": "ClassyFire", + "prefix": "classyfire", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://classyfire.wishartlab.com/tax_nodes/$1" + }, + "bioregistry.classyfire.miriam": { + "authority": "miriam", + "homepage": "http://classyfire.wishartlab.com/", + "id": "bioregistry.classyfire.miriam", + "name": "ClassyFire", + "prefix": "classyfire", + "sameas": "bioregistry.classyfire", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://classyfire.wishartlab.com/tax_nodes/$1" + }, + "bioregistry.clb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.clb", + "name": "ChecklistBank", + "prefix": "clb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.checklistbank.org/dataset/$1" + }, + "bioregistry.clb.miriam": { + "authority": "miriam", + "homepage": "https://www.checklistbank.org", + "id": "bioregistry.clb.miriam", + "name": "ChecklistBank", + "prefix": "clb", + "sameas": "bioregistry.clb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.checklistbank.org/dataset/$1" + }, + "bioregistry.cldb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cldb", + "name": "Cell Line Data Base", + "prefix": "cldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioinformatics.hsanmartino.it/hypercldb/$1.html" + }, + "bioregistry.cldb.cellosaurus": { + "authority": "cellosaurus", + "homepage": "http://bioinformatics.hsanmartino.it/cldb/", + "id": "bioregistry.cldb.cellosaurus", + "name": "Cell Line Data Base", + "prefix": "CLDB", + "sameas": "bioregistry.cldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioinformatics.hsanmartino.it/cldb/$1.html" + }, + "bioregistry.cldb.miriam": { + "authority": "miriam", + "homepage": "http://bioinformatics.hsanmartino.it/hypercldb/indexes.html", + "id": "bioregistry.cldb.miriam", + "name": "CLDB", + "prefix": "cldb", + "sameas": "bioregistry.cldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioinformatics.hsanmartino.it/hypercldb/$1.html" + }, + "bioregistry.cldb.n2t": { + "authority": "n2t", + "homepage": "http://bioinformatics.hsanmartino.it/hypercldb/indexes.html", + "id": "bioregistry.cldb.n2t", + "name": "CLDB at Genova", + "prefix": "cldb", + "sameas": "bioregistry.cldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioinformatics.hsanmartino.it/hypercldb/$1.html" + }, + "bioregistry.clingene": { + "authority": "bioregistry", + "homepage": "https://reg.clinicalgenome.org", + "id": "bioregistry.clingene", + "name": "ClinGen Allele Registry", + "prefix": "clingene", + "source": "bioregistry.io", + "subjects": [ + "genetics", + "mutation" + ], + "uri_format": "http://reg.clinicalgenome.org/redmine/projects/registry/genboree_registry/by_caid?caid=$1" + }, + "bioregistry.clingene.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.clingene.biolink", + "name": null, + "prefix": "CAID", + "sameas": "bioregistry.clingene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://reg.clinicalgenome.org/redmine/projects/registry/genboree_registry/by_caid?caid=$1" + }, + "bioregistry.clinicaltrials": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.clinicaltrials", + "name": "ClinicalTrials.gov at NIH", + "prefix": "clinicaltrials", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "health sciences", + "pharmacology and pharmacy" + ], + "uri_format": "https://clinicaltrials.gov/show/$1" + }, + "bioregistry.clinicaltrials.miriam": { + "authority": "miriam", + "homepage": "https://clinicaltrials.gov/", + "id": "bioregistry.clinicaltrials.miriam", + "name": "ClinicalTrials.gov", + "prefix": "clinicaltrials", + "sameas": "bioregistry.clinicaltrials", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://clinicaltrials.gov/ct2/show/$1" + }, + "bioregistry.clinicaltrials.n2t": { + "authority": "n2t", + "homepage": "https://clinicaltrials.gov/", + "id": "bioregistry.clinicaltrials.n2t", + "name": "ClinicalTrials.gov at NIH", + "prefix": "clinicaltrials", + "sameas": "bioregistry.clinicaltrials", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://clinicaltrials.gov/ct2/show/$1" + }, + "bioregistry.clinicaltrials.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://clinicaltrials.gov/", + "id": "bioregistry.clinicaltrials.prefixcommons", + "name": "ClinicalTrials.gov", + "prefix": "clinicaltrials", + "sameas": "bioregistry.clinicaltrials", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "health sciences", + "pharmacology and pharmacy" + ], + "uri_format": "http://clinicaltrials.gov/ct2/show/$1" + }, + "bioregistry.clinicaltrials.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.clinicaltrials.wikidata", + "name": "ClinicalTrials.gov ID", + "prefix": "P3098", + "sameas": "bioregistry.clinicaltrials", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "health sciences", + "pharmacology and pharmacy" + ], + "uri_format": "https://clinicaltrials.gov/show/$1" + }, + "bioregistry.clinvar": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.clinvar", + "name": "ClinVar Variant at NCBI", + "prefix": "clinvar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/clinvar/variation/$1/" + }, + "bioregistry.clinvar.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.clinvar.biocontext", + "name": null, + "prefix": "ClinVarVariant", + "sameas": "bioregistry.clinvar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/clinvar/variation/$1" + }, + "bioregistry.clinvar.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.clinvar.biolink", + "name": null, + "prefix": "CLINVAR", + "sameas": "bioregistry.clinvar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://identifiers.org/clinvar$1" + }, + "bioregistry.clinvar.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ncbi.nlm.nih.gov/clinvar/", + "id": "bioregistry.clinvar.cellosaurus", + "name": "ClinVar", + "prefix": "ClinVar", + "sameas": "bioregistry.clinvar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/clinvar/variation/$1" + }, + "bioregistry.clinvar.miriam": { + "authority": "miriam", + "homepage": "http://www.ncbi.nlm.nih.gov/clinvar/", + "id": "bioregistry.clinvar.miriam", + "name": "ClinVar Variant", + "prefix": "clinvar", + "sameas": "bioregistry.clinvar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/clinvar/variation/$1" + }, + "bioregistry.clinvar.n2t": { + "authority": "n2t", + "homepage": "http://www.ncbi.nlm.nih.gov/clinvar/", + "id": "bioregistry.clinvar.n2t", + "name": "ClinVar Variant at NCBI", + "prefix": "clinvar", + "sameas": "bioregistry.clinvar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/clinvar/variation/$1" + }, + "bioregistry.clinvar.record": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.clinvar.record", + "name": "ClinVar Record at NCBI", + "prefix": "clinvar.record", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/clinvar/$1/" + }, + "bioregistry.clinvar.record.miriam": { + "authority": "miriam", + "homepage": "http://www.ncbi.nlm.nih.gov/clinvar/", + "id": "bioregistry.clinvar.record.miriam", + "name": "ClinVar Record", + "prefix": "clinvar.record", + "sameas": "bioregistry.clinvar.record", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/clinvar/$1/" + }, + "bioregistry.clinvar.record.n2t": { + "authority": "n2t", + "homepage": "http://www.ncbi.nlm.nih.gov/clinvar/", + "id": "bioregistry.clinvar.record.n2t", + "name": "ClinVar Record at NCBI", + "prefix": "clinvar.record", + "sameas": "bioregistry.clinvar.record", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/clinvar/$1/" + }, + "bioregistry.clinvar.submission": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.clinvar.submission", + "name": "ClinVar Submission at NCBI", + "prefix": "clinvar.submission", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/clinvar?term=$1" + }, + "bioregistry.clinvar.submission.miriam": { + "authority": "miriam", + "homepage": "http://www.ncbi.nlm.nih.gov/clinvar/", + "id": "bioregistry.clinvar.submission.miriam", + "name": "ClinVar Submission", + "prefix": "clinvar.submission", + "sameas": "bioregistry.clinvar.submission", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/clinvar?term=$1" + }, + "bioregistry.clinvar.submission.n2t": { + "authority": "n2t", + "homepage": "http://www.ncbi.nlm.nih.gov/clinvar/", + "id": "bioregistry.clinvar.submission.n2t", + "name": "ClinVar Submission at NCBI", + "prefix": "clinvar.submission", + "sameas": "bioregistry.clinvar.submission", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/clinvar?term=$1" + }, + "bioregistry.clinvar.submitter": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.clinvar.submitter", + "name": "ClinVar Submitter", + "prefix": "clinvar.submitter", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/clinvar/submitters/$1" + }, + "bioregistry.clinvar.submitter.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/clinvar/", + "id": "bioregistry.clinvar.submitter.miriam", + "name": "ClinVar Submitter", + "prefix": "clinvar.submitter", + "sameas": "bioregistry.clinvar.submitter", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/clinvar/submitters/$1" + }, + "bioregistry.clinvar.wikidata": { + "authority": "wikidata", + "homepage": "https://www.ncbi.nlm.nih.gov/clinvar/", + "id": "bioregistry.clinvar.wikidata", + "name": "ClinVar Variation ID", + "prefix": "P1929", + "sameas": "bioregistry.clinvar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/clinvar/variation/$1/" + }, + "bioregistry.clo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.clo", + "name": "CLO: Cell Line Ontology", + "prefix": "clo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/clo/terms?short_form=CLO_$1" + }, + "bioregistry.clo.cellosaurus": { + "authority": "cellosaurus", + "homepage": "http://www.clo-ontology.org", + "id": "bioregistry.clo.cellosaurus", + "name": "Cell Line Ontology", + "prefix": "CLO", + "sameas": "bioregistry.clo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/clo/terms?iri=http://purl.obolibrary.org/obo/$1" + }, + "bioregistry.clo.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ols4/ontologies/clo", + "id": "bioregistry.clo.miriam", + "name": "Cell Line Ontology", + "prefix": "clo", + "sameas": "bioregistry.clo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/clo/terms?short_form=CLO_$1" + }, + "bioregistry.cls": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cls", + "name": "Cell Lines Service", + "prefix": "cls", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cls.shop/$1" + }, + "bioregistry.cls.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://cls.shop/", + "id": "bioregistry.cls.cellosaurus", + "name": "Cell Lines Service", + "prefix": "CLS", + "sameas": "bioregistry.cls", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cls.shop/$1" + }, + "bioregistry.cnrs": { + "authority": "bioregistry", + "homepage": "https://annuaire.cnrs.fr", + "id": "bioregistry.cnrs", + "name": "French National Center for Scientific Research - Research Group Identifier", + "prefix": "cnrs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://web-ast.dsi.cnrs.fr/l3c/owa/structure.infos_admin?&p_lab=$1&p_origine_appel=u" + }, + "bioregistry.cnrs.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.cnrs.wikidata", + "name": "CNRS research group ID", + "prefix": "P4550", + "sameas": "bioregistry.cnrs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://web-ast.dsi.cnrs.fr/l3c/owa/structure.infos_admin?&p_lab=$1&p_origine_appel=u" + }, + "bioregistry.cog": { + "authority": "bioregistry", + "homepage": "https://www.ncbi.nlm.nih.gov/research/cog/", + "id": "bioregistry.cog", + "name": "Clusters of Orthologous Groups of Proteins: Phylogenetic classification of proteins encoded in complete genomes", + "prefix": "cog", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/research/cog-project/$1" + }, + "bioregistry.cog.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.cog.biolink", + "name": null, + "prefix": "COG", + "sameas": "bioregistry.cog", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/research/cog-project/$1" + }, + "bioregistry.cog.go": { + "authority": "go", + "homepage": "http://www.ncbi.nlm.nih.gov/COG/", + "id": "bioregistry.cog.go", + "name": "NCBI COG cluster", + "prefix": "COG_Cluster", + "sameas": "bioregistry.cog", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/COG/new/release/cow.cgi?cog=$1" + }, + "bioregistry.cog.pathway": { + "authority": "bioregistry", + "homepage": "https://www.ncbi.nlm.nih.gov/research/cog/pathways", + "id": "bioregistry.cog.pathway", + "name": "NCBI COG pathway", + "prefix": "cog.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/COG/new/release/coglist.cgi?pathw=$1" + }, + "bioregistry.cog.pathway.go": { + "authority": "go", + "homepage": "http://www.ncbi.nlm.nih.gov/COG/", + "id": "bioregistry.cog.pathway.go", + "name": "NCBI COG pathway", + "prefix": "COG_Pathway", + "sameas": "bioregistry.cog.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/COG/new/release/coglist.cgi?pathw=$1" + }, + "bioregistry.cog.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/COG", + "id": "bioregistry.cog.prefixcommons", + "name": "Clusters of Orthologous Groups of Proteins: Phylogenetic classification of proteins encoded in complete genomes", + "prefix": "cog", + "sameas": "bioregistry.cog", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/COG/grace/cogenome.cgi?g=$1" + }, + "bioregistry.col": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.col", + "name": "Catalogue of Life", + "prefix": "col", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.checklistbank.org/dataset/3LR/taxon/$1" + }, + "bioregistry.col.miriam": { + "authority": "miriam", + "homepage": "https://www.checklistbank.org", + "id": "bioregistry.col.miriam", + "name": "Catalogue of Life", + "prefix": "col", + "sameas": "bioregistry.col", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.checklistbank.org/dataset/3LR/taxon/$1" + }, + "bioregistry.col.taiwan": { + "authority": "bioregistry", + "homepage": "http://taibnet.sinica.edu.tw/home.php", + "id": "bioregistry.col.taiwan", + "name": "Catalogue of Life in Taiwan ID", + "prefix": "col.taiwan", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://taibnet.sinica.edu.tw/eng/taibnet_species_detail.php?name_code=$1" + }, + "bioregistry.col.taiwan.wikidata": { + "authority": "wikidata", + "homepage": "https://taibnet.sinica.edu.tw/home_eng.php", + "id": "bioregistry.col.taiwan.wikidata", + "name": "Catalogue of Life in Taiwan ID", + "prefix": "P3088", + "sameas": "bioregistry.col.taiwan", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://taibnet.sinica.edu.tw/eng/taibnet_species_detail.php?name_code=$1" + }, + "bioregistry.collagenmutdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.collagenmutdb", + "name": "Collagen Mutation Database", + "prefix": "collagenmutdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://eds.gene.le.ac.uk/home.php?select_db=$1" + }, + "bioregistry.collagenmutdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.le.ac.uk/genetics/collagen/", + "id": "bioregistry.collagenmutdb.prefixcommons", + "name": "Collagen Mutation Database", + "prefix": "cmd", + "sameas": "bioregistry.collagenmutdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://eds.gene.le.ac.uk/home.php?select_db=$1" + }, + "bioregistry.colonatlas": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.colonatlas", + "name": "Colorectal Cancer Atlas", + "prefix": "colonatlas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.coloncanceratlas.org/search_cell_line?cell_line=$1" + }, + "bioregistry.colonatlas.cellosaurus": { + "authority": "cellosaurus", + "homepage": "http://www.coloncanceratlas.org", + "id": "bioregistry.colonatlas.cellosaurus", + "name": "Colorectal Cancer Atlas", + "prefix": "ColonAtlas", + "sameas": "bioregistry.colonatlas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.coloncanceratlas.org/search_cell_line?cell_line=$1" + }, + "bioregistry.combine.specifications": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.combine.specifications", + "name": "COMBINE specifications", + "prefix": "combine.specifications", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://github.com/combine-org/combine-specifications/blob/main/specifications/$1.md" + }, + "bioregistry.combine.specifications.miriam": { + "authority": "miriam", + "homepage": "https://co.mbine.org/standards/", + "id": "bioregistry.combine.specifications.miriam", + "name": "COMBINE specifications", + "prefix": "combine.specifications", + "sameas": "bioregistry.combine.specifications", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://github.com/combine-org/combine-specifications/blob/main/specifications/$1.md" + }, + "bioregistry.combine.specifications.n2t": { + "authority": "n2t", + "homepage": "https://co.mbine.org/standards/", + "id": "bioregistry.combine.specifications.n2t", + "name": "COMBINE at EBI", + "prefix": "combine.specifications", + "sameas": "bioregistry.combine.specifications", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://co.mbine.org/specifications/$1" + }, + "bioregistry.come": { + "authority": "bioregistry", + "homepage": "https://www.flymine.org/come", + "id": "bioregistry.come", + "name": "The Bioinorganic Motif Database", + "prefix": "come", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.flymine.org/come/entry?gn=$1" + }, + "bioregistry.come.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.flymine.org/come/", + "id": "bioregistry.come.prefixcommons", + "name": "COMe", + "prefix": "come", + "sameas": "bioregistry.come", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.flymine.org/come/entry?gn=$1" + }, + "bioregistry.complexportal": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.complexportal", + "name": "Complex Portal database of macromolecular complexes", + "prefix": "complexportal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/complexportal/complex/$1" + }, + "bioregistry.complexportal.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.complexportal.biolink", + "name": null, + "prefix": "ComplexPortal", + "sameas": "bioregistry.complexportal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/complexportal/complex/$1" + }, + "bioregistry.complexportal.go": { + "authority": "go", + "homepage": "https://www.ebi.ac.uk/complexportal", + "id": "bioregistry.complexportal.go", + "name": "Complex Portal database of macromolecular complexes", + "prefix": "ComplexPortal", + "sameas": "bioregistry.complexportal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/complexportal/complex/$1" + }, + "bioregistry.complexportal.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/complexportal", + "id": "bioregistry.complexportal.miriam", + "name": "Complex Portal", + "prefix": "complexportal", + "sameas": "bioregistry.complexportal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/complexportal/complex/$1" + }, + "bioregistry.complexportal.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/complexportal", + "id": "bioregistry.complexportal.n2t", + "name": "Complex Portal", + "prefix": "complexportal", + "sameas": "bioregistry.complexportal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/complexportal/complex/$1" + }, + "bioregistry.complexportal.uniprot": { + "authority": "uniprot", + "homepage": "https://www.ebi.ac.uk/complexportal/", + "id": "bioregistry.complexportal.uniprot", + "name": "ComplexPortal", + "prefix": "DB-0228", + "sameas": "bioregistry.complexportal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/complexportal/complex/$1" + }, + "bioregistry.complexportal.wikidata": { + "authority": "wikidata", + "homepage": "https://www.ebi.ac.uk/complexportal/home", + "id": "bioregistry.complexportal.wikidata", + "name": "Complex Portal accession ID", + "prefix": "P7718", + "sameas": "bioregistry.complexportal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/complexportal/complex/$1" + }, + "bioregistry.comptox": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.comptox", + "name": "CompTox Chemistry Dashboard", + "prefix": "comptox", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://comptox.epa.gov/dashboard/chemical/details/$1" + }, + "bioregistry.comptox.miriam": { + "authority": "miriam", + "homepage": "https://comptox.epa.gov/dashboard", + "id": "bioregistry.comptox.miriam", + "name": "CompTox Chemistry Dashboard", + "prefix": "comptox", + "sameas": "bioregistry.comptox", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://comptox.epa.gov/dashboard/$1" + }, + "bioregistry.comptox.n2t": { + "authority": "n2t", + "homepage": "https://comptox.epa.gov/dashboard", + "id": "bioregistry.comptox.n2t", + "name": "CompTox Chemistry Dashboard", + "prefix": "comptox", + "sameas": "bioregistry.comptox", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://comptox.epa.gov/dashboard/$1" + }, + "bioregistry.comptox.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.comptox.wikidata", + "name": "DSSTox substance ID", + "prefix": "P3117", + "sameas": "bioregistry.comptox", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://comptox.epa.gov/dashboard/chemical/details/$1" + }, + "bioregistry.compulyeast": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.compulyeast", + "name": "Compluyeast database at Universidad Complutense Madrid", + "prefix": "compulyeast", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://compluyeast2dpage.dacya.ucm.es/cgi-bin/2d/2d.cgi?ac=$1" + }, + "bioregistry.compulyeast.miriam": { + "authority": "miriam", + "homepage": "http://compluyeast2dpage.dacya.ucm.es/", + "id": "bioregistry.compulyeast.miriam", + "name": "Compulyeast", + "prefix": "compulyeast", + "sameas": "bioregistry.compulyeast", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://compluyeast2dpage.dacya.ucm.es/cgi-bin/2d/2d.cgi?ac=$1" + }, + "bioregistry.compulyeast.n2t": { + "authority": "n2t", + "homepage": "http://compluyeast2dpage.dacya.ucm.es/", + "id": "bioregistry.compulyeast.n2t", + "name": "Compluyeast database at Universidad Complutense Madrid", + "prefix": "compulyeast", + "sameas": "bioregistry.compulyeast", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://compluyeast2dpage.dacya.ucm.es/cgi-bin/2d/2d.cgi?ac=$1" + }, + "bioregistry.compulyeast.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://compluyeast2dpage.dacya.ucm.es/", + "id": "bioregistry.compulyeast.prefixcommons", + "name": "CompluYeast 2D-PAGE", + "prefix": "compluyeast2dpage", + "sameas": "bioregistry.compulyeast", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://compluyeast2dpage.dacya.ucm.es/cgi-bin/2d/2d.cgi?ac=$1" + }, + "bioregistry.conoserver": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.conoserver", + "name": "ConoServer at University of Queensland", + "prefix": "conoserver", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.conoserver.org/?page=card&table=protein&id=$1" + }, + "bioregistry.conoserver.miriam": { + "authority": "miriam", + "homepage": "http://www.conoserver.org/", + "id": "bioregistry.conoserver.miriam", + "name": "Conoserver", + "prefix": "conoserver", + "sameas": "bioregistry.conoserver", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.conoserver.org/?page=card&table=protein&id=$1" + }, + "bioregistry.conoserver.n2t": { + "authority": "n2t", + "homepage": "http://www.conoserver.org/", + "id": "bioregistry.conoserver.n2t", + "name": "ConoServer at University of Queensland", + "prefix": "conoserver", + "sameas": "bioregistry.conoserver", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.conoserver.org/?page=card&table=protein&id=$1" + }, + "bioregistry.conoserver.uniprot": { + "authority": "uniprot", + "homepage": "https://www.conoserver.org/", + "id": "bioregistry.conoserver.uniprot", + "name": "ConoServer", + "prefix": "DB-0156", + "sameas": "bioregistry.conoserver", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.conoserver.org/?page=card&table=protein&id=$1" + }, + "bioregistry.coriell": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.coriell", + "name": "Coriell Cell Repositories at Coriell Institute", + "prefix": "coriell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://catalog.coriell.org/0/Sections/Search/Sample_Detail.aspx?Ref=$1&Product=CC" + }, + "bioregistry.coriell.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.coriell.biocontext", + "name": null, + "prefix": "Coriell", + "sameas": "bioregistry.coriell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://catalog.coriell.org/0/Sections/Search/Sample_Detail.aspx?Ref=$1" + }, + "bioregistry.coriell.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://catalog.coriell.org", + "id": "bioregistry.coriell.cellosaurus", + "name": "Coriell Institute Biorepositories", + "prefix": "Coriell", + "sameas": "bioregistry.coriell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://catalog.coriell.org/0/Sections/Search/Sample_Detail.aspx?Ref=$1&Product=CC" + }, + "bioregistry.coriell.go": { + "authority": "go", + "homepage": "http://ccr.coriell.org/", + "id": "bioregistry.coriell.go", + "name": "Coriell Institute for Medical Research", + "prefix": "CORIELL", + "sameas": "bioregistry.coriell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ccr.coriell.org/Sections/Search/Sample_Detail.aspx?Ref=$1" + }, + "bioregistry.coriell.miriam": { + "authority": "miriam", + "homepage": "http://ccr.coriell.org/", + "id": "bioregistry.coriell.miriam", + "name": "Coriell Cell Repositories", + "prefix": "coriell", + "sameas": "bioregistry.coriell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ccr.coriell.org/Sections/Search/Sample_Detail.aspx?Ref=$1" + }, + "bioregistry.coriell.n2t": { + "authority": "n2t", + "homepage": "http://ccr.coriell.org/", + "id": "bioregistry.coriell.n2t", + "name": "Coriell Cell Repositories at Coriell Institute", + "prefix": "coriell", + "sameas": "bioregistry.coriell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ccr.coriell.org/Sections/Search/Sample_Detail.aspx?Ref=$1" + }, + "bioregistry.corrdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.corrdb", + "name": "Animal Trait Correlation Database", + "prefix": "corrdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.animalgenome.org/CorrDB/q/?id=CorrID:$1" + }, + "bioregistry.corrdb.miriam": { + "authority": "miriam", + "homepage": "https://www.animalgenome.org", + "id": "bioregistry.corrdb.miriam", + "name": "CorrDB", + "prefix": "corrdb", + "sameas": "bioregistry.corrdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.animalgenome.org/CorrDB/q/?id=CorrID:$1" + }, + "bioregistry.corum": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.corum", + "name": "CORUM at Institute for Bioinformatics and Systems Biology (Germany)", + "prefix": "corum", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://mips.helmholtz-muenchen.de/corum/?id=$1" + }, + "bioregistry.corum.go": { + "authority": "go", + "homepage": "https://mips.helmholtz-muenchen.de/corum/", + "id": "bioregistry.corum.go", + "name": "CORUM - the Comprehensive Resource of Mammalian protein complexes", + "prefix": "CORUM", + "sameas": "bioregistry.corum", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://mips.helmholtz-muenchen.de/corum/?id=$1" + }, + "bioregistry.corum.miriam": { + "authority": "miriam", + "homepage": "https://mips.helmholtz-muenchen.de/genre/proj/corum/", + "id": "bioregistry.corum.miriam", + "name": "CORUM", + "prefix": "corum", + "sameas": "bioregistry.corum", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mips.helmholtz-muenchen.de/corum/?id=$1" + }, + "bioregistry.corum.n2t": { + "authority": "n2t", + "homepage": "https://mips.helmholtz-muenchen.de/genre/proj/corum/", + "id": "bioregistry.corum.n2t", + "name": "CORUM at Institute for Bioinformatics and Systems Biology (Germany)", + "prefix": "corum", + "sameas": "bioregistry.corum", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mips.helmholtz-muenchen.de/corum/?id=$1" + }, + "bioregistry.corum.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://mips.gsf.de/genre/proj/corum", + "id": "bioregistry.corum.prefixcommons", + "name": "the Comprehensive Resource of Mammalian protein complexes", + "prefix": "corum", + "sameas": "bioregistry.corum", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://mips.helmholtz-muenchen.de/genre/proj/corum/complexdetails.html?id=$1" + }, + "bioregistry.corum.uniprot": { + "authority": "uniprot", + "homepage": "http://mips.helmholtz-muenchen.de/corum/", + "id": "bioregistry.corum.uniprot", + "name": "CORUM comprehensive resource of mammalian protein complexes", + "prefix": "DB-0224", + "sameas": "bioregistry.corum", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://mips.helmholtz-muenchen.de/corum/#?uniprotID=$1" + }, + "bioregistry.cosmic": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cosmic", + "name": "Catalogue of somatic mutations in cancer", + "prefix": "cosmic", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cancer.sanger.ac.uk/cosmic/sample/overview?id=$1" + }, + "bioregistry.cosmic.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.cosmic.biocontext", + "name": null, + "prefix": "COSMIC", + "sameas": "bioregistry.cosmic", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cancer.sanger.ac.uk/cosmic/mutation/overview?id=$1" + }, + "bioregistry.cosmic.cell": { + "authority": "bioregistry", + "homepage": "https://cancer.sanger.ac.uk/cell_lines/", + "id": "bioregistry.cosmic.cell", + "name": "COSMIC Cell lines Project", + "prefix": "cosmic.cell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cancer.sanger.ac.uk/cell_lines/sample/overview?id=$1" + }, + "bioregistry.cosmic.cell.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://cancer.sanger.ac.uk/cell_lines", + "id": "bioregistry.cosmic.cell.cellosaurus", + "name": "COSMIC Cell lines Project", + "prefix": "Cosmic-CLP", + "sameas": "bioregistry.cosmic.cell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cancer.sanger.ac.uk/cell_lines/sample/overview?id=$1" + }, + "bioregistry.cosmic.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://cancer.sanger.ac.uk/cosmic", + "id": "bioregistry.cosmic.cellosaurus", + "name": "Catalogue of somatic mutations in cancer", + "prefix": "Cosmic", + "sameas": "bioregistry.cosmic", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cancer.sanger.ac.uk/cosmic/sample/overview?id=$1" + }, + "bioregistry.cosmic.miriam": { + "authority": "miriam", + "homepage": "http://cancer.sanger.ac.uk/cosmic/", + "id": "bioregistry.cosmic.miriam", + "name": "COSMIC Gene", + "prefix": "cosmic", + "sameas": "bioregistry.cosmic", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cancer.sanger.ac.uk/cosmic/gene/overview?ln=$1" + }, + "bioregistry.cosmic.n2t": { + "authority": "n2t", + "homepage": "http://cancer.sanger.ac.uk/cosmic/", + "id": "bioregistry.cosmic.n2t", + "name": "COSMIC Gene at Sanger", + "prefix": "cosmic", + "sameas": "bioregistry.cosmic", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cancer.sanger.ac.uk/cosmic/gene/overview?ln=$1" + }, + "bioregistry.covid19": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.covid19", + "name": "COVID-19 Surveillance Ontology", + "prefix": "covid19", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://covid19.sfb.uit.no/api/records/$1" + }, + "bioregistry.covid19.miriam": { + "authority": "miriam", + "homepage": "https://covid19.sfb.uit.no", + "id": "bioregistry.covid19.miriam", + "name": "SARS-CoV-2", + "prefix": "covid19", + "sameas": "bioregistry.covid19", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://covid19.sfb.uit.no/api/records/$1" + }, + "bioregistry.cpc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cpc", + "name": "Cooperative Patent Classification at Espace", + "prefix": "cpc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://worldwide.espacenet.com/classification?locale=en_EP#!/CPC=$1" + }, + "bioregistry.cpc.miriam": { + "authority": "miriam", + "homepage": "https://worldwide.espacenet.com/classification", + "id": "bioregistry.cpc.miriam", + "name": "Cooperative Patent Classification", + "prefix": "cpc", + "sameas": "bioregistry.cpc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://worldwide.espacenet.com/classification?locale=en_EP#!/CPC=$1" + }, + "bioregistry.cpc.n2t": { + "authority": "n2t", + "homepage": "https://worldwide.espacenet.com/classification", + "id": "bioregistry.cpc.n2t", + "name": "Cooperative Patent Classification at Espace", + "prefix": "cpc", + "sameas": "bioregistry.cpc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://worldwide.espacenet.com/classification?locale=en_EP#!/CPC=$1" + }, + "bioregistry.cpt": { + "authority": "bioregistry", + "homepage": "https://www.aapc.com", + "id": "bioregistry.cpt", + "name": "CPT - Current Procedural Terminology", + "prefix": "cpt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ama-assn.org/practice-management/cpt/$1" + }, + "bioregistry.cpt.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.cpt.biolink", + "name": null, + "prefix": "CPT", + "sameas": "bioregistry.cpt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ama-assn.org/practice-management/cpt/$1" + }, + "bioregistry.crisprdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.crisprdb", + "name": "CRISPRdb", + "prefix": "crisprdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://crispr.i2bc.paris-saclay.fr/cgi-bin/crispr/SpecieProperties_db.cgi?Taxon_id[]=$1" + }, + "bioregistry.crisprdb.miriam": { + "authority": "miriam", + "homepage": "http://crispr.i2bc.paris-saclay.fr/", + "id": "bioregistry.crisprdb.miriam", + "name": "CRISPRdb", + "prefix": "crisprdb", + "sameas": "bioregistry.crisprdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://crispr.i2bc.paris-saclay.fr/cgi-bin/crispr/SpecieProperties_db.cgi?Taxon_id[]=$1" + }, + "bioregistry.crisprdb.n2t": { + "authority": "n2t", + "homepage": "http://crispr.i2bc.paris-saclay.fr/", + "id": "bioregistry.crisprdb.n2t", + "name": "CRISPRdb", + "prefix": "crisprdb", + "sameas": "bioregistry.crisprdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://crispr.i2bc.paris-saclay.fr/cgi-bin/crispr/SpecieProperties_db.cgi?Taxon_id[]=$1" + }, + "bioregistry.crop2ml": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.crop2ml", + "name": "CropMRepository", + "prefix": "crop2ml", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.crop2ml.org/cropmdb/$1" + }, + "bioregistry.crop2ml.miriam": { + "authority": "miriam", + "homepage": "http://www.crop2ml.org", + "id": "bioregistry.crop2ml.miriam", + "name": "CropMRepository", + "prefix": "crop2ml", + "sameas": "bioregistry.crop2ml", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.crop2ml.org/cropmdb/$1" + }, + "bioregistry.cryptodb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cryptodb", + "name": "Cryptosporidum Genomics Resource", + "prefix": "cryptodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://cryptodb.org/cryptodb/app/record/gene/$1" + }, + "bioregistry.cryptodb.miriam": { + "authority": "miriam", + "homepage": "https://cryptodb.org/cryptodb/", + "id": "bioregistry.cryptodb.miriam", + "name": "CryptoDB", + "prefix": "cryptodb", + "sameas": "bioregistry.cryptodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cryptodb.org/cryptodb/app/record/gene/$1" + }, + "bioregistry.cryptodb.n2t": { + "authority": "n2t", + "homepage": "https://cryptodb.org/cryptodb/", + "id": "bioregistry.cryptodb.n2t", + "name": "CryptoDB at EuPathDB", + "prefix": "cryptodb", + "sameas": "bioregistry.cryptodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cryptodb.org/cryptodb/app/record/gene/$1" + }, + "bioregistry.cryptodb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://cryptodb.org/cryptodb/", + "id": "bioregistry.cryptodb.prefixcommons", + "name": "Cryptosporidum Genomics Resource", + "prefix": "cryptodb", + "sameas": "bioregistry.cryptodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://cryptodb.org/cryptodb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.csa": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.csa", + "name": "Catalytic Site Atlas", + "prefix": "csa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/SearchResults.php?PDBID=$1" + }, + "bioregistry.csa.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/", + "id": "bioregistry.csa.miriam", + "name": "CSA", + "prefix": "csa", + "sameas": "bioregistry.csa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/SearchResults.php?PDBID=$1" + }, + "bioregistry.csa.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/", + "id": "bioregistry.csa.n2t", + "name": "CSA at EBI", + "prefix": "csa", + "sameas": "bioregistry.csa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/SearchResults.php?PDBID=$1" + }, + "bioregistry.csa.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/thornton-srv/databases/CSA/", + "id": "bioregistry.csa.prefixcommons", + "name": "Catalytic Site Atlas", + "prefix": "csa", + "sameas": "bioregistry.csa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/CSA/CSA_Site_Wrapper.pl?pdb=$1" + }, + "bioregistry.csd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.csd", + "name": "The Cambridge Structural Database", + "prefix": "csd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ccdc.cam.ac.uk/services/structures?pid=csd:$1&sid=IDORG" + }, + "bioregistry.csd.miriam": { + "authority": "miriam", + "homepage": "https://www.ccdc.cam.ac.uk/", + "id": "bioregistry.csd.miriam", + "name": "Cambridge Structural Database", + "prefix": "csd", + "sameas": "bioregistry.csd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ccdc.cam.ac.uk/services/structures?pid=csd:$1&sid=IDORG" + }, + "bioregistry.cst": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cst", + "name": "Cell Signaling Technology Pathway Database", + "prefix": "cst", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cellsignal.com/reference/pathway/$1.html" + }, + "bioregistry.cst.ab": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cst.ab", + "name": "Cell Signaling Technology Pathway Database", + "prefix": "cst.ab", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cellsignal.com/products/$1.html" + }, + "bioregistry.cst.ab.miriam": { + "authority": "miriam", + "homepage": "http://www.cellsignal.com/catalog/index.html", + "id": "bioregistry.cst.ab.miriam", + "name": "Cell Signaling Technology Antibody", + "prefix": "cst.ab", + "sameas": "bioregistry.cst.ab", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cellsignal.com/products/$1.html" + }, + "bioregistry.cst.ab.n2t": { + "authority": "n2t", + "homepage": "http://www.cellsignal.com/catalog/index.html", + "id": "bioregistry.cst.ab.n2t", + "name": "CST Antibody at Cell Signaling Technology", + "prefix": "cst.ab", + "sameas": "bioregistry.cst.ab", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cellsignal.com/products/$1.html" + }, + "bioregistry.cst.ab.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.cellsignal.com/", + "id": "bioregistry.cst.ab.prefixcommons", + "name": "Cell Signaling Technology Pathway Database", + "prefix": "cst", + "sameas": "bioregistry.cst.ab", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cellsignal.com/products/$1.html" + }, + "bioregistry.cst.miriam": { + "authority": "miriam", + "homepage": "http://www.cellsignal.com/pathways/index.html", + "id": "bioregistry.cst.miriam", + "name": "Cell Signaling Technology Pathways", + "prefix": "cst", + "sameas": "bioregistry.cst", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cellsignal.com/reference/pathway/$1.html" + }, + "bioregistry.cst.n2t": { + "authority": "n2t", + "homepage": "http://www.cellsignal.com/pathways/index.html", + "id": "bioregistry.cst.n2t", + "name": "CST Pathways at Cell Signaling Technology", + "prefix": "cst", + "sameas": "bioregistry.cst", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cellsignal.com/reference/pathway/$1.html" + }, + "bioregistry.cstr": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cstr", + "name": "Common Science and Technology Resources", + "prefix": "cstr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cstr.cn/$1" + }, + "bioregistry.cstr.miriam": { + "authority": "miriam", + "homepage": "https://www.cstr.cn/en/", + "id": "bioregistry.cstr.miriam", + "name": "CSTR", + "prefix": "cstr", + "sameas": "bioregistry.cstr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cstr.cn/$1" + }, + "bioregistry.ctd.chemical": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ctd.chemical", + "name": "Comparative Toxicogenomics Database (Chemical)", + "prefix": "ctd.chemical", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ctdbase.org/detail.go?type=chem&acc=$1" + }, + "bioregistry.ctd.chemical.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.ctd.chemical.biolink", + "name": null, + "prefix": "CTD.CHEMICAL", + "sameas": "bioregistry.ctd.chemical", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ctdbase.org/detail.go?type=chem&acc=$1" + }, + "bioregistry.ctd.chemical.miriam": { + "authority": "miriam", + "homepage": "http://ctdbase.org/", + "id": "bioregistry.ctd.chemical.miriam", + "name": "CTD Chemical", + "prefix": "ctd.chemical", + "sameas": "bioregistry.ctd.chemical", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ctdbase.org/detail.go?type=chem&acc=$1" + }, + "bioregistry.ctd.chemical.n2t": { + "authority": "n2t", + "homepage": "http://ctdbase.org/", + "id": "bioregistry.ctd.chemical.n2t", + "name": "Comparative Toxicogenomics Database (Chemical)", + "prefix": "ctd.chemical", + "sameas": "bioregistry.ctd.chemical", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ctdbase.org/detail.go?type=chem&acc=$1" + }, + "bioregistry.ctd.disease": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ctd.disease", + "name": "Comparative Toxicogenomics Database (Disease)", + "prefix": "ctd.disease", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ctdbase.org/detail.go?type=disease&db=MESH&acc=$1" + }, + "bioregistry.ctd.disease.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.ctd.disease.biolink", + "name": null, + "prefix": "CTD.DISEASE", + "sameas": "bioregistry.ctd.disease", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ctdbase.org/detail.go?type=disease&db=MESH&acc=$1" + }, + "bioregistry.ctd.disease.miriam": { + "authority": "miriam", + "homepage": "http://ctdbase.org/", + "id": "bioregistry.ctd.disease.miriam", + "name": "CTD Disease", + "prefix": "ctd.disease", + "sameas": "bioregistry.ctd.disease", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ctdbase.org/detail.go?type=disease&db=MESH&acc=$1" + }, + "bioregistry.ctd.disease.n2t": { + "authority": "n2t", + "homepage": "http://ctdbase.org/", + "id": "bioregistry.ctd.disease.n2t", + "name": "Comparative Toxicogenomics Database (Disease)", + "prefix": "ctd.disease", + "sameas": "bioregistry.ctd.disease", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ctdbase.org/detail.go?type=disease&db=MESH&acc=$1" + }, + "bioregistry.ctd.gene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ctd.gene", + "name": "Comparative Toxicogenomics Database (Gene)", + "prefix": "ctd.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ctdbase.org/detail.go?type=gene&db=GENE&acc=$1" + }, + "bioregistry.ctd.gene.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.ctd.gene.biolink", + "name": null, + "prefix": "CTD.GENE", + "sameas": "bioregistry.ctd.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ctdbase.org/detail.go?type=gene&acc=$1" + }, + "bioregistry.ctd.gene.miriam": { + "authority": "miriam", + "homepage": "http://ctdbase.org/", + "id": "bioregistry.ctd.gene.miriam", + "name": "CTD Gene", + "prefix": "ctd.gene", + "sameas": "bioregistry.ctd.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ctdbase.org/detail.go?type=gene&acc=$1" + }, + "bioregistry.ctd.gene.n2t": { + "authority": "n2t", + "homepage": "http://ctdbase.org/", + "id": "bioregistry.ctd.gene.n2t", + "name": "Comparative Toxicogenomics Database (Gene)", + "prefix": "ctd.gene", + "sameas": "bioregistry.ctd.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ctdbase.org/detail.go?type=gene&acc=$1" + }, + "bioregistry.ctd.gene.uniprot": { + "authority": "uniprot", + "homepage": "https://ctdbase.org/", + "id": "bioregistry.ctd.gene.uniprot", + "name": "Comparative Toxicogenomics Database", + "prefix": "DB-0140", + "sameas": "bioregistry.ctd.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ctdbase.org/detail.go?type=gene&db=GENE&acc=$1" + }, + "bioregistry.cubedb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cubedb", + "name": "Cube db at Bioinformatics Institute (Singapore)", + "prefix": "cubedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/data/$1/" + }, + "bioregistry.cubedb.miriam": { + "authority": "miriam", + "homepage": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/html/home.html", + "id": "bioregistry.cubedb.miriam", + "name": "Cube db", + "prefix": "cubedb", + "sameas": "bioregistry.cubedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/data/$1/" + }, + "bioregistry.cubedb.n2t": { + "authority": "n2t", + "homepage": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/html/home.html", + "id": "bioregistry.cubedb.n2t", + "name": "Cube db at Bioinformatics Institute (Singapore)", + "prefix": "cubedb", + "sameas": "bioregistry.cubedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/data/$1/" + }, + "bioregistry.cutg": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.cutg", + "name": "Codon Usage Tabulated from GenBank", + "prefix": "cutg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.kazusa.or.jp/codon/cgi-bin/showcodon.cgi?species=$1" + }, + "bioregistry.cutg.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.kazusa.or.jp/codon/", + "id": "bioregistry.cutg.prefixcommons", + "name": "Codon Usage Tabulated from GenBank", + "prefix": "cutg", + "sameas": "bioregistry.cutg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.kazusa.or.jp/codon/cgi-bin/showcodon.cgi?species=$1" + }, + "bioregistry.d1id": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.d1id", + "name": "DataONE", + "prefix": "d1id", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cn.dataone.org/cn/v2/resolve/{$1}" + }, + "bioregistry.d1id.miriam": { + "authority": "miriam", + "homepage": "https://www.dataone.org", + "id": "bioregistry.d1id.miriam", + "name": "DataONE", + "prefix": "d1id", + "sameas": "bioregistry.d1id", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cn.dataone.org/cn/v2/resolve/{$1}" + }, + "bioregistry.d1id.n2t": { + "authority": "n2t", + "homepage": "https://www.dataone.org", + "id": "bioregistry.d1id.n2t", + "name": "DataONE", + "prefix": "d1id", + "sameas": "bioregistry.d1id", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cn.dataone.org/cn/v2/resolve/{$1}" + }, + "bioregistry.dailymed": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dailymed", + "name": "DailyMed at NLM", + "prefix": "dailymed", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid=$1" + }, + "bioregistry.dailymed.miriam": { + "authority": "miriam", + "homepage": "https://dailymed.nlm.nih.gov/dailymed/", + "id": "bioregistry.dailymed.miriam", + "name": "DailyMed", + "prefix": "dailymed", + "sameas": "bioregistry.dailymed", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid=$1" + }, + "bioregistry.dailymed.n2t": { + "authority": "n2t", + "homepage": "https://dailymed.nlm.nih.gov/dailymed/", + "id": "bioregistry.dailymed.n2t", + "name": "DailyMed at NLM", + "prefix": "dailymed", + "sameas": "bioregistry.dailymed", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid=$1" + }, + "bioregistry.dailymed.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://dailymed.nlm.nih.gov/dailymed/", + "id": "bioregistry.dailymed.prefixcommons", + "name": "Dailymed", + "prefix": "dailymed", + "sameas": "bioregistry.dailymed", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://dailymed.nlm.nih.gov/dailymed/lookup.cfm?setid=$1" + }, + "bioregistry.dandi": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dandi", + "name": "DANDI: Distributed Archives for Neurophysiology Data Integration", + "prefix": "dandi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dandiarchive.org/dandiset/$1" + }, + "bioregistry.dandi.miriam": { + "authority": "miriam", + "homepage": "https://dandiarchive.org/", + "id": "bioregistry.dandi.miriam", + "name": "DANDI: Distributed Archives for Neurophysiology Data Integration", + "prefix": "dandi", + "sameas": "bioregistry.dandi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dandiarchive.org/dandiset/$1" + }, + "bioregistry.darc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.darc", + "name": "Database of Aligned Ribosomal Complexes", + "prefix": "darc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://darcsite.genzentrum.lmu.de/darc/view.php?id=$1" + }, + "bioregistry.darc.miriam": { + "authority": "miriam", + "homepage": "http://darcsite.genzentrum.lmu.de/darc/index.php", + "id": "bioregistry.darc.miriam", + "name": "DARC", + "prefix": "darc", + "sameas": "bioregistry.darc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://darcsite.genzentrum.lmu.de/darc/view.php?id=$1" + }, + "bioregistry.darc.n2t": { + "authority": "n2t", + "homepage": "http://darcsite.genzentrum.lmu.de/darc/index.php", + "id": "bioregistry.darc.n2t", + "name": "DARC at University of Munich", + "prefix": "darc", + "sameas": "bioregistry.darc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://darcsite.genzentrum.lmu.de/darc/view.php?id=$1" + }, + "bioregistry.dashr": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dashr", + "name": "Database of small human non-coding RNAs", + "prefix": "dashr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lisanwanglab.org/DASHR/entry/$1" + }, + "bioregistry.dashr.expression": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dashr.expression", + "name": "DASHR expression at University of Pennsylvania", + "prefix": "dashr.expression", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dashr1.lisanwanglab.org/entry/hsa-mir-200a#$1#exprPerTissueTable" + }, + "bioregistry.dashr.expression.miriam": { + "authority": "miriam", + "homepage": "https://dashr1.lisanwanglab.org/show-expression-table.php?start=0", + "id": "bioregistry.dashr.expression.miriam", + "name": "DASHR expression", + "prefix": "dashr.expression", + "sameas": "bioregistry.dashr.expression", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dashr1.lisanwanglab.org/entry/hsa-mir-200a#$1#exprPerTissueTable" + }, + "bioregistry.dashr.expression.n2t": { + "authority": "n2t", + "homepage": "https://dashr1.lisanwanglab.org/show-expression-table.php?start=0", + "id": "bioregistry.dashr.expression.n2t", + "name": "DASHR expression at University of Pennsylvania", + "prefix": "dashr.expression", + "sameas": "bioregistry.dashr.expression", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dashr1.lisanwanglab.org/entry/hsa-mir-200a#$1#exprPerTissueTable" + }, + "bioregistry.dashr.miriam": { + "authority": "miriam", + "homepage": "http://lisanwanglab.org/DASHR/", + "id": "bioregistry.dashr.miriam", + "name": "DASHR", + "prefix": "dashr", + "sameas": "bioregistry.dashr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lisanwanglab.org/DASHR/entry/$1" + }, + "bioregistry.dashr.n2t": { + "authority": "n2t", + "homepage": "http://lisanwanglab.org/DASHR/", + "id": "bioregistry.dashr.n2t", + "name": "DASHR at University of Pennsylvania", + "prefix": "dashr", + "sameas": "bioregistry.dashr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lisanwanglab.org/DASHR/entry/$1" + }, + "bioregistry.datacommons": { + "authority": "bioregistry", + "homepage": "https://datacommons.org", + "id": "bioregistry.datacommons", + "name": "Data Commons", + "prefix": "datacommons", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://datacommons.org/browser/$1" + }, + "bioregistry.datacommons.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.datacommons.biolink", + "name": null, + "prefix": "dcid", + "sameas": "bioregistry.datacommons", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://datacommons.org/browser/$1" + }, + "bioregistry.datanator.gene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.datanator.gene", + "name": "Datanator Gene", + "prefix": "datanator.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.datanator.info/gene/$1" + }, + "bioregistry.datanator.gene.miriam": { + "authority": "miriam", + "homepage": "https://datanator.info/", + "id": "bioregistry.datanator.gene.miriam", + "name": "Datanator Gene", + "prefix": "datanator.gene", + "sameas": "bioregistry.datanator.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.datanator.info/gene/$1" + }, + "bioregistry.datanator.metabolite": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.datanator.metabolite", + "name": "Datanator Metabolite", + "prefix": "datanator.metabolite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.datanator.info/metabolite/$1" + }, + "bioregistry.datanator.metabolite.miriam": { + "authority": "miriam", + "homepage": "https://datanator.info/", + "id": "bioregistry.datanator.metabolite.miriam", + "name": "Datanator Metabolite", + "prefix": "datanator.metabolite", + "sameas": "bioregistry.datanator.metabolite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.datanator.info/metabolite/$1" + }, + "bioregistry.datanator.reaction": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.datanator.reaction", + "name": "Datanator Reaction", + "prefix": "datanator.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://datanator.info/reaction/$1" + }, + "bioregistry.datanator.reaction.miriam": { + "authority": "miriam", + "homepage": "https://icahn.mssm.edu/", + "id": "bioregistry.datanator.reaction.miriam", + "name": "Datanator Reaction", + "prefix": "datanator.reaction", + "sameas": "bioregistry.datanator.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://datanator.info/reaction/$1" + }, + "bioregistry.datf": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.datf", + "name": "Database of Arabidopsis Transcription Factors", + "prefix": "datf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://planttfdb.cbi.pku.edu.cn/tf.php?sp=Ath&did=$1" + }, + "bioregistry.datf.miriam": { + "authority": "miriam", + "homepage": "http://datf.cbi.pku.edu.cn/", + "id": "bioregistry.datf.miriam", + "name": "DATF", + "prefix": "datf", + "sameas": "bioregistry.datf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://planttfdb.cbi.pku.edu.cn/tf.php?sp=Ath&did=$1" + }, + "bioregistry.datf.n2t": { + "authority": "n2t", + "homepage": "http://datf.cbi.pku.edu.cn/", + "id": "bioregistry.datf.n2t", + "name": "DATF through PlantTFDB", + "prefix": "datf", + "sameas": "bioregistry.datf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://planttfdb.cbi.pku.edu.cn/tf.php?sp=Ath&did=$1" + }, + "bioregistry.datf.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://datf.cbi.pku.edu.cn", + "id": "bioregistry.datf.prefixcommons", + "name": "Database of Arabidopsis Transcription Factors", + "prefix": "datf", + "sameas": "bioregistry.datf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://datf.cbi.pku.edu.cn/entry-display.php?id=$1" + }, + "bioregistry.dbd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dbd", + "name": "DBD at MRC Laboratory of Molecular Biology", + "prefix": "dbd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.transcriptionfactor.org/index.cgi?Search/Domain+domain:$1+cat:DBD" + }, + "bioregistry.dbd.miriam": { + "authority": "miriam", + "homepage": "http://www.transcriptionfactor.org/", + "id": "bioregistry.dbd.miriam", + "name": "DBD", + "prefix": "dbd", + "sameas": "bioregistry.dbd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.transcriptionfactor.org/index.cgi?Search/Domain+domain:$1+cat:DBD" + }, + "bioregistry.dbd.n2t": { + "authority": "n2t", + "homepage": "http://www.transcriptionfactor.org/", + "id": "bioregistry.dbd.n2t", + "name": "DBD at MRC Laboratory of Molecular Biology", + "prefix": "dbd", + "sameas": "bioregistry.dbd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.transcriptionfactor.org/index.cgi?Search/Domain+domain:$1+cat:DBD" + }, + "bioregistry.dbd.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.transcriptionfactor.org", + "id": "bioregistry.dbd.prefixcommons", + "name": "DBD", + "prefix": "dbd", + "sameas": "bioregistry.dbd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://dbd.mrc-lmb.cam.ac.uk/DBD/index.cgi?Search/Domain+domain:$1" + }, + "bioregistry.dbest": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dbest", + "name": "EST database maintained at the NCBI.", + "prefix": "dbest", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nucest/$1" + }, + "bioregistry.dbest.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/nucest", + "id": "bioregistry.dbest.miriam", + "name": "dbEST", + "prefix": "dbest", + "sameas": "bioregistry.dbest", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nucest/$1" + }, + "bioregistry.dbest.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/nucest", + "id": "bioregistry.dbest.n2t", + "name": "dbEST at NCBI", + "prefix": "dbest", + "sameas": "bioregistry.dbest", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nucest/$1" + }, + "bioregistry.dbest.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/dbEST/index.html", + "id": "bioregistry.dbest.prefixcommons", + "name": "EST database maintained at the NCBI.", + "prefix": "dbest", + "sameas": "bioregistry.dbest", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/nucest/$1" + }, + "bioregistry.dbg2introns": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dbg2introns", + "name": "Bacterial Group II Introns at University of Calgary", + "prefix": "dbg2introns", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.fp.ucalgary.ca/group2introns/$1.htm" + }, + "bioregistry.dbg2introns.miriam": { + "authority": "miriam", + "homepage": "http://webapps2.ucalgary.ca/~groupii/", + "id": "bioregistry.dbg2introns.miriam", + "name": "DBG2 Introns", + "prefix": "dbg2introns", + "sameas": "bioregistry.dbg2introns", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://webapps2.ucalgary.ca/~groupii/cgi-bin/intron.cgi?name=$1" + }, + "bioregistry.dbg2introns.n2t": { + "authority": "n2t", + "homepage": "http://webapps2.ucalgary.ca/~groupii/", + "id": "bioregistry.dbg2introns.n2t", + "name": "Bacterial Group II Introns at University of Calgary", + "prefix": "dbg2introns", + "sameas": "bioregistry.dbg2introns", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://webapps2.ucalgary.ca/~groupii/cgi-bin/intron.cgi?name=$1" + }, + "bioregistry.dbg2introns.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.fp.ucalgary.ca/group2introns/", + "id": "bioregistry.dbg2introns.prefixcommons", + "name": "Mobile group II introns database", + "prefix": "mgiid", + "sameas": "bioregistry.dbg2introns", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.fp.ucalgary.ca/group2introns/$1.htm" + }, + "bioregistry.dbgap": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dbgap", + "name": "Database of Genotypes and Phenotypes", + "prefix": "dbgap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/study.cgi?study_id=$1" + }, + "bioregistry.dbgap.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ncbi.nlm.nih.gov/gap/", + "id": "bioregistry.dbgap.cellosaurus", + "name": "Database of Genotypes and Phenotypes", + "prefix": "dbGAP", + "sameas": "bioregistry.dbgap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/study.cgi?study_id=$1" + }, + "bioregistry.dbgap.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/projects/gap", + "id": "bioregistry.dbgap.miriam", + "name": "dbGaP", + "prefix": "dbgap", + "sameas": "bioregistry.dbgap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/study.cgi?study_id=$1" + }, + "bioregistry.dbgap.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/projects/gap", + "id": "bioregistry.dbgap.n2t", + "name": "dbGaP through NCBI", + "prefix": "dbgap", + "sameas": "bioregistry.dbgap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/study.cgi?study_id=$1" + }, + "bioregistry.dbprobe": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dbprobe", + "name": "NCBI Probe database Public registry of nucleic acid reagents", + "prefix": "dbprobe", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "molecular biology" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/probe/?term=$1" + }, + "bioregistry.dbprobe.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=probe", + "id": "bioregistry.dbprobe.miriam", + "name": "dbProbe", + "prefix": "dbprobe", + "sameas": "bioregistry.dbprobe", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/probe/?term=$1" + }, + "bioregistry.dbprobe.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=probe", + "id": "bioregistry.dbprobe.n2t", + "name": "dbProbe at NCBI", + "prefix": "dbprobe", + "sameas": "bioregistry.dbprobe", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/probe/?term=$1" + }, + "bioregistry.dbprobe.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=probe", + "id": "bioregistry.dbprobe.prefixcommons", + "name": "NCBI Probe database Public registry of nucleic acid reagents", + "prefix": "dbprobe", + "sameas": "bioregistry.dbprobe", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "molecular biology" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/genome/probe/reports/probereport.cgi?uid=$1" + }, + "bioregistry.dbsnp": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dbsnp", + "name": "Database of single nucleotide polymorphism", + "prefix": "dbsnp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/snp/$1" + }, + "bioregistry.dbsnp.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.dbsnp.biocontext", + "name": null, + "prefix": "dbSNP", + "sameas": "bioregistry.dbsnp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/projects/SNP/snp_ref.cgi?rs=$1" + }, + "bioregistry.dbsnp.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ncbi.nlm.nih.gov/snp/", + "id": "bioregistry.dbsnp.cellosaurus", + "name": "Single Nucleotide Polymorphism database", + "prefix": "dbSNP", + "sameas": "bioregistry.dbsnp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/snp/$1" + }, + "bioregistry.dbsnp.go": { + "authority": "go", + "homepage": "http://www.ncbi.nlm.nih.gov/projects/SNP", + "id": "bioregistry.dbsnp.go", + "name": "NCBI dbSNP", + "prefix": "dbSNP", + "sameas": "bioregistry.dbsnp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/projects/SNP/snp_ref.cgi?rs=$1" + }, + "bioregistry.dbsnp.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/snp/", + "id": "bioregistry.dbsnp.miriam", + "name": "dbSNP", + "prefix": "dbsnp", + "sameas": "bioregistry.dbsnp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/snp/$1" + }, + "bioregistry.dbsnp.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/snp/", + "id": "bioregistry.dbsnp.n2t", + "name": "dbSNP at NCBI", + "prefix": "dbsnp", + "sameas": "bioregistry.dbsnp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/snp/$1" + }, + "bioregistry.dbsnp.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/SNP/", + "id": "bioregistry.dbsnp.prefixcommons", + "name": "Database of single nucleotide polymorphism", + "prefix": "dbsnp", + "sameas": "bioregistry.dbsnp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/projects/SNP/snp_ref.cgi?rs=$1" + }, + "bioregistry.dbsnp.uniprot": { + "authority": "uniprot", + "homepage": "https://www.ncbi.nlm.nih.gov/snp/", + "id": "bioregistry.dbsnp.uniprot", + "name": "Database of single nucleotide polymorphism", + "prefix": "DB-0013", + "sameas": "bioregistry.dbsnp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/snp/$1" + }, + "bioregistry.dbsnp.wikidata": { + "authority": "wikidata", + "homepage": "https://civicdb.org/home", + "id": "bioregistry.dbsnp.wikidata", + "name": "dbSNP Reference SNP number", + "prefix": "P6861", + "sameas": "bioregistry.dbsnp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/snp/$1" + }, + "bioregistry.dc": { + "authority": "bioregistry", + "homepage": "https://www.dublincore.org/specifications/dublin-core/dcmi-terms/", + "id": "bioregistry.dc", + "name": "Dublin Core Metadata Element Set", + "prefix": "dc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/dc/elements/1.1/$1" + }, + "bioregistry.dc.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.dc.biocontext", + "name": null, + "prefix": "dc", + "sameas": "bioregistry.dc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/dc/elements/1.1/$1" + }, + "bioregistry.dcat": { + "authority": "bioregistry", + "homepage": "https://www.w3.org/ns/dcat", + "id": "bioregistry.dcat", + "name": "Data Catalog Vocabulary", + "prefix": "dcat", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/ns/dcat#$1" + }, + "bioregistry.dcat.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.dcat.biocontext", + "name": null, + "prefix": "dcat", + "sameas": "bioregistry.dcat", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/ns/dcat#$1" + }, + "bioregistry.dcat.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.dcat.biolink", + "name": null, + "prefix": "dcat", + "sameas": "bioregistry.dcat", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/ns/dcat#$1" + }, + "bioregistry.dcterms": { + "authority": "bioregistry", + "homepage": "https://www.dublincore.org/specifications/dublin-core/dcmi-terms/", + "id": "bioregistry.dcterms", + "name": "Dublin Core Metadata Initiative (DCMI) Metadata Terms", + "prefix": "dcterms", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/dc/terms/$1" + }, + "bioregistry.dcterms.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.dcterms.biocontext", + "name": null, + "prefix": "dcterms", + "sameas": "bioregistry.dcterms", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/dc/terms/$1" + }, + "bioregistry.dcterms.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.dcterms.biolink", + "name": null, + "prefix": "dct", + "sameas": "bioregistry.dcterms", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/dc/terms/$1" + }, + "bioregistry.dctypes": { + "authority": "bioregistry", + "homepage": "https://dublincore.org/specifications/dublin-core/dcmi-terms/", + "id": "bioregistry.dctypes", + "name": "Dublin Core Types", + "prefix": "dctypes", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/dc/dcmitype/$1" + }, + "bioregistry.dctypes.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.dctypes.biocontext", + "name": null, + "prefix": "dctypes", + "sameas": "bioregistry.dctypes", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/dc/dcmitype/$1" + }, + "bioregistry.degradome": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.degradome", + "name": "Degradome Database at", + "prefix": "degradome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://degradome.uniovi.es/cgi-bin/protease/$1" + }, + "bioregistry.degradome.miriam": { + "authority": "miriam", + "homepage": "http://degradome.uniovi.es/", + "id": "bioregistry.degradome.miriam", + "name": "Degradome Database", + "prefix": "degradome", + "sameas": "bioregistry.degradome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://degradome.uniovi.es/cgi-bin/protease/$1" + }, + "bioregistry.degradome.n2t": { + "authority": "n2t", + "homepage": "http://degradome.uniovi.es/", + "id": "bioregistry.degradome.n2t", + "name": "Degradome Database at", + "prefix": "degradome", + "sameas": "bioregistry.degradome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://degradome.uniovi.es/cgi-bin/protease/$1" + }, + "bioregistry.depmap": { + "authority": "bioregistry", + "homepage": "https://depmap.org/portal", + "id": "bioregistry.depmap", + "name": "Cancer Dependency Map", + "prefix": "depmap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://depmap.org/portal/cell_line/$1" + }, + "bioregistry.depmap.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://depmap.org/portal/", + "id": "bioregistry.depmap.cellosaurus", + "name": "Cancer Dependency Map", + "prefix": "DepMap", + "sameas": "bioregistry.depmap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://depmap.org/portal/cell_line/$1" + }, + "bioregistry.depod": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.depod", + "name": "DEPOD human dephosphorylation database", + "prefix": "depod", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.depod.bioss.uni-freiburg.de/showp.php?gene=$1" + }, + "bioregistry.depod.miriam": { + "authority": "miriam", + "homepage": "http://www.depod.bioss.uni-freiburg.de", + "id": "bioregistry.depod.miriam", + "name": "DEPOD", + "prefix": "depod", + "sameas": "bioregistry.depod", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.depod.bioss.uni-freiburg.de/showp.php?gene=$1" + }, + "bioregistry.depod.n2t": { + "authority": "n2t", + "homepage": "http://www.depod.bioss.uni-freiburg.de", + "id": "bioregistry.depod.n2t", + "name": "DEPOD at EMBL", + "prefix": "depod", + "sameas": "bioregistry.depod", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.depod.bioss.uni-freiburg.de/showp.php?gene=$1" + }, + "bioregistry.depod.uniprot": { + "authority": "uniprot", + "homepage": "http://depod.bioss.uni-freiburg.de", + "id": "bioregistry.depod.uniprot", + "name": "DEPOD human dephosphorylation database", + "prefix": "DB-0190", + "sameas": "bioregistry.depod", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://depod.bioss.uni-freiburg.de/showp.php?name=$1" + }, + "bioregistry.dev.ga4ghdos": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dev.ga4ghdos", + "name": "Development Data Object Service", + "prefix": "dev.ga4ghdos", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dos-gdc.ucsc-cgp-dev.org/ga4gh/dos/v1/dataobjects/$1" + }, + "bioregistry.dev.ga4ghdos.miriam": { + "authority": "miriam", + "homepage": "http://github.com/ga4gh/data-object-service-schemas", + "id": "bioregistry.dev.ga4ghdos.miriam", + "name": "Development Data Object Service", + "prefix": "dev.ga4ghdos", + "sameas": "bioregistry.dev.ga4ghdos", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dos-gdc.ucsc-cgp-dev.org/ga4gh/dos/v1/dataobjects/$1" + }, + "bioregistry.dev.ga4ghdos.n2t": { + "authority": "n2t", + "homepage": "http://github.com/ga4gh/data-object-service-schemas", + "id": "bioregistry.dev.ga4ghdos.n2t", + "name": "Data Object Service", + "prefix": "dev.ga4ghdos", + "sameas": "bioregistry.dev.ga4ghdos", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dos-gdc.ucsc-cgp-dev.org/ga4gh/dos/v1/dataobjects/$1" + }, + "bioregistry.dg.4503": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dg.4503", + "name": "BioData Catalyst", + "prefix": "dg.4503", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://gen3.biodatacatalyst.nhlbi.nih.gov/ga4gh/drs/v1/objects/$1" + }, + "bioregistry.dg.4503.miriam": { + "authority": "miriam", + "homepage": "https://gen3.biodatacatalyst.nhlbi.nih.gov", + "id": "bioregistry.dg.4503.miriam", + "name": "BioData Catalyst", + "prefix": "dg.4503", + "sameas": "bioregistry.dg.4503", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://gen3.biodatacatalyst.nhlbi.nih.gov/ga4gh/drs/v1/objects/$1" + }, + "bioregistry.dg.4dfc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dg.4dfc", + "name": "NCI Data Commons Framework Services", + "prefix": "dg.4dfc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://nci-crdc.datacommons.io/ga4gh/drs/v1/objects/$1" + }, + "bioregistry.dg.4dfc.miriam": { + "authority": "miriam", + "homepage": "https://nci-crdc.datacommons.io/", + "id": "bioregistry.dg.4dfc.miriam", + "name": "NCI Data Commons Framework Services", + "prefix": "dg.4dfc", + "sameas": "bioregistry.dg.4dfc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://nci-crdc.datacommons.io/ga4gh/drs/v1/objects/$1" + }, + "bioregistry.dg.6vts": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dg.6vts", + "name": "JCOIN", + "prefix": "dg.6vts", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://jcoin.datacommons.io/ga4gh/drs/v1/objects/$1" + }, + "bioregistry.dg.6vts.miriam": { + "authority": "miriam", + "homepage": "https://jcoin.datacommons.io", + "id": "bioregistry.dg.6vts.miriam", + "name": "JCOIN", + "prefix": "dg.6vts", + "sameas": "bioregistry.dg.6vts", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://jcoin.datacommons.io/ga4gh/drs/v1/objects/$1" + }, + "bioregistry.dg.anv0": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dg.anv0", + "name": "Anvil", + "prefix": "dg.anv0", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://gen3.theanvil.io/ga4gh/drs/v1/objects/$1" + }, + "bioregistry.dg.anv0.miriam": { + "authority": "miriam", + "homepage": "https://gen3.theanvil.io", + "id": "bioregistry.dg.anv0.miriam", + "name": "Anvil", + "prefix": "dg.anv0", + "sameas": "bioregistry.dg.anv0", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://gen3.theanvil.io/ga4gh/drs/v1/objects/$1" + }, + "bioregistry.dg.f82a1a": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dg.f82a1a", + "name": "Kids First", + "prefix": "dg.f82a1a", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://data.kidsfirstdrc.org/ga4gh/drs/v1/objects/$1" + }, + "bioregistry.dg.f82a1a.miriam": { + "authority": "miriam", + "homepage": "https://kidsfirstdrc.org", + "id": "bioregistry.dg.f82a1a.miriam", + "name": "Kids First", + "prefix": "dg.f82a1a", + "sameas": "bioregistry.dg.f82a1a", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://data.kidsfirstdrc.org/ga4gh/drs/v1/objects/$1" + }, + "bioregistry.dg5b0d": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dg5b0d", + "name": "BloodPAC", + "prefix": "dg5b0d", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://data.bloodpac.org/ga4gh/drs/v1/objects/$1" + }, + "bioregistry.dg5b0d.miriam": { + "authority": "miriam", + "homepage": "https://data.bloodpac.org/.", + "id": "bioregistry.dg5b0d.miriam", + "name": "BloodPAC", + "prefix": "dg.5b0d", + "sameas": "bioregistry.dg5b0d", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://data.bloodpac.org/ga4gh/drs/v1/objects/$1" + }, + "bioregistry.dgrc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dgrc", + "name": "Drosophila Genomics Resource Center", + "prefix": "dgrc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dgrc.bio.indiana.edu/product/View?product=$1" + }, + "bioregistry.dgrc.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://dgrc.bio.indiana.edu/cells/Catalog", + "id": "bioregistry.dgrc.cellosaurus", + "name": "Drosophila Genomics Resource Center", + "prefix": "DGRC", + "sameas": "bioregistry.dgrc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dgrc.bio.indiana.edu/product/View?product=$1" + }, + "bioregistry.dictybase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dictybase", + "name": "Dictyostelium discoideum online informatics resource", + "prefix": "dictybase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://dictybase.org/gene/$1" + }, + "bioregistry.dictybase.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.dictybase.biocontext", + "name": null, + "prefix": "dictyBase", + "sameas": "bioregistry.dictybase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://dictybase.org/gene/$1" + }, + "bioregistry.dictybase.est": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dictybase.est", + "name": "Dictybase Gene at Northwestern University", + "prefix": "dictybase.est", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://dictybase.org/db/cgi-bin/feature_page.pl?primary_id=$1" + }, + "bioregistry.dictybase.est.miriam": { + "authority": "miriam", + "homepage": "http://dictybase.org/", + "id": "bioregistry.dictybase.est.miriam", + "name": "Dictybase EST", + "prefix": "dictybase.est", + "sameas": "bioregistry.dictybase.est", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://dictybase.org/db/cgi-bin/feature_page.pl?primary_id=$1" + }, + "bioregistry.dictybase.est.n2t": { + "authority": "n2t", + "homepage": "http://dictybase.org/", + "id": "bioregistry.dictybase.est.n2t", + "name": "Dictybase Gene at Northwestern University", + "prefix": "dictybase.est", + "sameas": "bioregistry.dictybase.est", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://dictybase.org/db/cgi-bin/feature_page.pl?primary_id=$1" + }, + "bioregistry.dictybase.gene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dictybase.gene", + "name": "Dictybase Gene at Northwestern University", + "prefix": "dictybase.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://dictybase.org/gene/$1" + }, + "bioregistry.dictybase.gene.miriam": { + "authority": "miriam", + "homepage": "http://dictybase.org/", + "id": "bioregistry.dictybase.gene.miriam", + "name": "Dictybase Gene", + "prefix": "dictybase.gene", + "sameas": "bioregistry.dictybase.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://dictybase.org/gene/$1" + }, + "bioregistry.dictybase.gene.n2t": { + "authority": "n2t", + "homepage": "http://dictybase.org/", + "id": "bioregistry.dictybase.gene.n2t", + "name": "Dictybase Gene at Northwestern University", + "prefix": "dictybase.gene", + "sameas": "bioregistry.dictybase.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://dictybase.org/gene/$1" + }, + "bioregistry.dictybase.go": { + "authority": "go", + "homepage": "http://dictybase.org", + "id": "bioregistry.dictybase.go", + "name": "dictyBase", + "prefix": "dictyBase", + "sameas": "bioregistry.dictybase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://dictybase.org/gene/$1" + }, + "bioregistry.dictybase.uniprot": { + "authority": "uniprot", + "homepage": "http://dictybase.org/", + "id": "bioregistry.dictybase.uniprot", + "name": "Dictyostelium discoideum online informatics resource", + "prefix": "DB-0015", + "sameas": "bioregistry.dictybase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://dictybase.org/db/cgi-bin/gene_page.pl?primary_id=$1" + }, + "bioregistry.did": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.did", + "name": "Decentralized Identifiers (DIDs)", + "prefix": "did", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://uniresolver.io/#did:$1" + }, + "bioregistry.did.miriam": { + "authority": "miriam", + "homepage": "https://w3c-ccg.github.io/did-spec/", + "id": "bioregistry.did.miriam", + "name": "Decentralized Identifiers (DIDs)", + "prefix": "did", + "sameas": "bioregistry.did", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://uniresolver.io/#did:$1" + }, + "bioregistry.did.n2t": { + "authority": "n2t", + "homepage": "https://w3c-ccg.github.io/did-spec/", + "id": "bioregistry.did.n2t", + "name": "Decentralized Identifiers (DIDs)", + "prefix": "did", + "sameas": "bioregistry.did", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://uniresolver.io/#did:$1" + }, + "bioregistry.dip": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dip", + "name": "Database of Interacting Proteins", + "prefix": "dip", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://dip.doe-mbi.ucla.edu/dip/DIPview.cgi?ID=$1" + }, + "bioregistry.dip.miriam": { + "authority": "miriam", + "homepage": "https://dip.doe-mbi.ucla.edu/", + "id": "bioregistry.dip.miriam", + "name": "Database of Interacting Proteins", + "prefix": "dip", + "sameas": "bioregistry.dip", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dip.doe-mbi.ucla.edu/dip/DIPview.cgi?ID=$1" + }, + "bioregistry.dip.n2t": { + "authority": "n2t", + "homepage": "https://dip.doe-mbi.ucla.edu/", + "id": "bioregistry.dip.n2t", + "name": "Database of interacting proteins", + "prefix": "dip", + "sameas": "bioregistry.dip", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dip.doe-mbi.ucla.edu/dip/DIPview.cgi?ID=$1" + }, + "bioregistry.dip.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://dip.doe-mbi.ucla.edu", + "id": "bioregistry.dip.prefixcommons", + "name": "Database of Interacting Proteins", + "prefix": "dip", + "sameas": "bioregistry.dip", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://dip.doe-mbi.ucla.edu/dip/DIPview.cgi?ID=$1" + }, + "bioregistry.dip.uniprot": { + "authority": "uniprot", + "homepage": "https://dip.doe-mbi.ucla.edu/", + "id": "bioregistry.dip.uniprot", + "name": "Database of interacting proteins", + "prefix": "DB-0016", + "sameas": "bioregistry.dip", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://dip.doe-mbi.ucla.edu/dip/Browse.cgi?ID=$1" + }, + "bioregistry.discoverx": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.discoverx", + "name": "DiscoverX cell line products", + "prefix": "discoverx", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.discoverx.com/searchproduct?searchtext=$1&searchmode=exact" + }, + "bioregistry.discoverx.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.discoverx.com/products-applications/cell-lines", + "id": "bioregistry.discoverx.cellosaurus", + "name": "DiscoverX cell line products", + "prefix": "DiscoverX", + "sameas": "bioregistry.discoverx", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.discoverx.com/searchproduct?searchtext=$1&searchmode=exact" + }, + "bioregistry.diseasesdb": { + "authority": "bioregistry", + "homepage": "http://www.diseasesdatabase.com/", + "id": "bioregistry.diseasesdb", + "name": "Diseases Database", + "prefix": "diseasesdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.diseasesdatabase.com/ddb$1.htm" + }, + "bioregistry.diseasesdb.wikidata": { + "authority": "wikidata", + "homepage": "http://www.diseasesdatabase.com", + "id": "bioregistry.diseasesdb.wikidata", + "name": "DiseasesDB", + "prefix": "P557", + "sameas": "bioregistry.diseasesdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.diseasesdatabase.com/ddb$1.htm" + }, + "bioregistry.disprot": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.disprot", + "name": "DisProt at Indiana University", + "prefix": "disprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.disprot.org/$1" + }, + "bioregistry.disprot.go": { + "authority": "go", + "homepage": "https://www.disprot.org", + "id": "bioregistry.disprot.go", + "name": "DisProt", + "prefix": "DisProt", + "sameas": "bioregistry.disprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.disprot.org/$1" + }, + "bioregistry.disprot.miriam": { + "authority": "miriam", + "homepage": "https://disprot.org/", + "id": "bioregistry.disprot.miriam", + "name": "DisProt", + "prefix": "disprot", + "sameas": "bioregistry.disprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://disprot.org/$1" + }, + "bioregistry.disprot.n2t": { + "authority": "n2t", + "homepage": "http://www.disprot.org/", + "id": "bioregistry.disprot.n2t", + "name": "DisProt at Indiana University", + "prefix": "disprot", + "sameas": "bioregistry.disprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.disprot.org/$1" + }, + "bioregistry.disprot.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.disprot.org/", + "id": "bioregistry.disprot.prefixcommons", + "name": "Database of protein disorder", + "prefix": "disprot", + "sameas": "bioregistry.disprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.disprot.org/protein.php?id=$1" + }, + "bioregistry.disprot.region": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.disprot.region", + "name": "DisProt region", + "prefix": "disprot.region", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.disprot.org/$1" + }, + "bioregistry.disprot.region.miriam": { + "authority": "miriam", + "homepage": "https://www.disprot.org", + "id": "bioregistry.disprot.region.miriam", + "name": "DisProt region", + "prefix": "disprot.region", + "sameas": "bioregistry.disprot.region", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.disprot.org/$1" + }, + "bioregistry.disprot.uniprot": { + "authority": "uniprot", + "homepage": "https://disprot.org", + "id": "bioregistry.disprot.uniprot", + "name": "Database of protein disorder", + "prefix": "DB-0017", + "sameas": "bioregistry.disprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://disprot.org/$1" + }, + "bioregistry.dlxb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dlxb", + "name": "Linear double stranded DNA sequences", + "prefix": "dlxb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://doulix.com/biomodules/$1/" + }, + "bioregistry.dlxb.miriam": { + "authority": "miriam", + "homepage": "https://doulix.com", + "id": "bioregistry.dlxb.miriam", + "name": "Linear double stranded DNA sequences", + "prefix": "dlxb", + "sameas": "bioregistry.dlxb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://doulix.com/biomodules/$1/" + }, + "bioregistry.dlxc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dlxc", + "name": "Circular double stranded DNA sequences composed", + "prefix": "dlxc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://doulix.com/constructs/$1/" + }, + "bioregistry.dlxc.miriam": { + "authority": "miriam", + "homepage": "https://doulix.com", + "id": "bioregistry.dlxc.miriam", + "name": "Circular double stranded DNA sequences composed", + "prefix": "dlxc", + "sameas": "bioregistry.dlxc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://doulix.com/constructs/$1/" + }, + "bioregistry.doi": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.doi", + "name": "Digital Object Identifier", + "prefix": "doi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "https://dx.doi.org/$1" + }, + "bioregistry.doi.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.doi.biocontext", + "name": null, + "prefix": "DOI", + "sameas": "bioregistry.doi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "http://dx.doi.org/$1" + }, + "bioregistry.doi.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.doi.biolink", + "name": null, + "prefix": "doi", + "sameas": "bioregistry.doi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "https://doi.org/$1" + }, + "bioregistry.doi.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://dx.doi.org", + "id": "bioregistry.doi.cellosaurus", + "name": "Digital Object Identifier", + "prefix": "DOI", + "sameas": "bioregistry.doi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "https://dx.doi.org/$1" + }, + "bioregistry.doi.go": { + "authority": "go", + "homepage": "http://dx.doi.org/", + "id": "bioregistry.doi.go", + "name": "Digital Object Identifier", + "prefix": "DOI", + "sameas": "bioregistry.doi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "http://dx.doi.org/$1" + }, + "bioregistry.doi.miriam": { + "authority": "miriam", + "homepage": "https://www.doi.org/", + "id": "bioregistry.doi.miriam", + "name": "DOI", + "prefix": "doi", + "sameas": "bioregistry.doi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://doi.org/$1" + }, + "bioregistry.doi.n2t": { + "authority": "n2t", + "homepage": "https://www.doi.org/", + "id": "bioregistry.doi.n2t", + "name": "Digital Object Identifier", + "prefix": "doi", + "sameas": "bioregistry.doi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://doi.org/$1" + }, + "bioregistry.doi.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.doi.org/", + "id": "bioregistry.doi.prefixcommons", + "name": "Digital Object Identifier", + "prefix": "doi", + "sameas": "bioregistry.doi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "http://dx.doi.org/$1" + }, + "bioregistry.doi.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.doi.wikidata", + "name": "DOI", + "prefix": "P356", + "sameas": "bioregistry.doi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "https://doi.org/$1" + }, + "bioregistry.doid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.doid", + "name": "Human Disease Ontology at Northwestern University", + "prefix": "doid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "health sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/doid/terms?obo_id=DOID:$1" + }, + "bioregistry.doid.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ols4/ontologies/doid", + "id": "bioregistry.doid.miriam", + "name": "Human Disease Ontology", + "prefix": "doid", + "sameas": "bioregistry.doid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/doid/terms?obo_id=DOID:$1" + }, + "bioregistry.doid.n2t": { + "authority": "n2t", + "homepage": "http://disease-ontology.org/", + "id": "bioregistry.doid.n2t", + "name": "Human Disease Ontology at Northwestern University", + "prefix": "doid", + "sameas": "bioregistry.doid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://disease-ontology.org/term/DOID:$1" + }, + "bioregistry.doid.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://diseaseontology.sourceforge.net/", + "id": "bioregistry.doid.prefixcommons", + "name": "Human disease ontology", + "prefix": "do", + "sameas": "bioregistry.doid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "health sciences" + ], + "uri_format": "http://disease-ontology.org/term/$1" + }, + "bioregistry.doid.wikidata": { + "authority": "wikidata", + "homepage": "http://disease-ontology.org", + "id": "bioregistry.doid.wikidata", + "name": "Disease Ontology ID", + "prefix": "P699", + "sameas": "bioregistry.doid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "health sciences" + ], + "uri_format": "http://www.disease-ontology.org/?id=$1" + }, + "bioregistry.dommino": { + "authority": "bioregistry", + "homepage": "http://korkinlab.org/dommino", + "id": "bioregistry.dommino", + "name": "Database of Macromolecular Interactions", + "prefix": "dommino", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://orion.rnet.missouri.edu/~nz953/DOMMINO/index.php/result/show_network/$1" + }, + "bioregistry.dommino.miriam": { + "authority": "miriam", + "homepage": "http://dommino.org/", + "id": "bioregistry.dommino.miriam", + "name": "DOMMINO", + "prefix": "dommino", + "sameas": "bioregistry.dommino", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://orion.rnet.missouri.edu/~nz953/DOMMINO/index.php/result/show_network/$1" + }, + "bioregistry.dommino.n2t": { + "authority": "n2t", + "homepage": "http://dommino.org/", + "id": "bioregistry.dommino.n2t", + "name": "DOMMINO at University of Missouri", + "prefix": "dommino", + "sameas": "bioregistry.dommino", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://orion.rnet.missouri.edu/~nz953/DOMMINO/index.php/result/show_network/$1" + }, + "bioregistry.door": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.door", + "name": "Database for Prokaryotic Operons", + "prefix": "door", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://csbl1.bmb.uga.edu/OperonDB/genedetail.php?id=$1" + }, + "bioregistry.door.miriam": { + "authority": "miriam", + "homepage": "http://csbl.bmb.uga.edu/DOOR/operon.php", + "id": "bioregistry.door.miriam", + "name": "DOOR", + "prefix": "door", + "sameas": "bioregistry.door", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://csbl.bmb.uga.edu/DOOR/operon.php?id=$1" + }, + "bioregistry.door.n2t": { + "authority": "n2t", + "homepage": "http://csbl.bmb.uga.edu/DOOR/operon.php", + "id": "bioregistry.door.n2t", + "name": "DOOR v1 at University of Georgia", + "prefix": "door", + "sameas": "bioregistry.door", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://csbl.bmb.uga.edu/DOOR/operon.php?id=$1" + }, + "bioregistry.door.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://csbl1.bmb.uga.edu/OperonDB/", + "id": "bioregistry.door.prefixcommons", + "name": "Database of prOkaryotic OpeRons", + "prefix": "door", + "sameas": "bioregistry.door", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://csbl1.bmb.uga.edu/OperonDB/genedetail.php?id=$1" + }, + "bioregistry.doqcs.model": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.doqcs.model", + "name": "Database of Quantitative Cellular Signaling (DOQCS) - Model Access", + "prefix": "doqcs.model", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://doqcs.ncbs.res.in/template.php?&y=accessiondetails&an=$1" + }, + "bioregistry.doqcs.model.miriam": { + "authority": "miriam", + "homepage": "http://doqcs.ncbs.res.in/", + "id": "bioregistry.doqcs.model.miriam", + "name": "Database of Quantitative Cellular Signaling: Model", + "prefix": "doqcs.model", + "sameas": "bioregistry.doqcs.model", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://doqcs.ncbs.res.in/template.php?&y=accessiondetails&an=$1" + }, + "bioregistry.doqcs.model.n2t": { + "authority": "n2t", + "homepage": "http://doqcs.ncbs.res.in/", + "id": "bioregistry.doqcs.model.n2t", + "name": "Database of Quantitative Cellular Signaling (DOQCS) - Model Access", + "prefix": "doqcs.model", + "sameas": "bioregistry.doqcs.model", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://doqcs.ncbs.res.in/template.php?&y=accessiondetails&an=$1" + }, + "bioregistry.doqcs.model.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://doqcs.ncbs.res.in/", + "id": "bioregistry.doqcs.model.prefixcommons", + "name": "Database of Quantitative Cellular Signaling: Model", + "prefix": "doqcs.model", + "sameas": "bioregistry.doqcs.model", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://doqcs.ncbs.res.in/template.php?&y=accessiondetails&an=$1" + }, + "bioregistry.doqcs.pathway": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.doqcs.pathway", + "name": "Database of Quantitative Cellular Signaling (DOQCS) - Pathway Access", + "prefix": "doqcs.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://doqcs.ncbs.res.in/template.php?&y=pathwaydetails&pn=$1" + }, + "bioregistry.doqcs.pathway.miriam": { + "authority": "miriam", + "homepage": "http://doqcs.ncbs.res.in/", + "id": "bioregistry.doqcs.pathway.miriam", + "name": "Database of Quantitative Cellular Signaling: Pathway", + "prefix": "doqcs.pathway", + "sameas": "bioregistry.doqcs.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://doqcs.ncbs.res.in/template.php?&y=pathwaydetails&pn=$1" + }, + "bioregistry.doqcs.pathway.n2t": { + "authority": "n2t", + "homepage": "http://doqcs.ncbs.res.in/", + "id": "bioregistry.doqcs.pathway.n2t", + "name": "Database of Quantitative Cellular Signaling (DOQCS) - Pathway Access", + "prefix": "doqcs.pathway", + "sameas": "bioregistry.doqcs.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://doqcs.ncbs.res.in/template.php?&y=pathwaydetails&pn=$1" + }, + "bioregistry.doqcs.pathway.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://doqcs.ncbs.res.in/", + "id": "bioregistry.doqcs.pathway.prefixcommons", + "name": "Database of Quantitative Cellular Signaling: Pathway", + "prefix": "doqcs.pathway", + "sameas": "bioregistry.doqcs.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://doqcs.ncbs.res.in/template.php?&y=pathwaydetails&pn=$1" + }, + "bioregistry.dpv": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dpv", + "name": "Description of Plant Viruses", + "prefix": "dpv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.dpvweb.net/dpv/showdpv.php?dpvno=$1" + }, + "bioregistry.dpv.miriam": { + "authority": "miriam", + "homepage": "http://www.dpvweb.net/", + "id": "bioregistry.dpv.miriam", + "name": "DPV", + "prefix": "dpv", + "sameas": "bioregistry.dpv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.dpvweb.net/dpv/showdpv.php?dpvno=$1" + }, + "bioregistry.dpv.n2t": { + "authority": "n2t", + "homepage": "http://www.dpvweb.net/", + "id": "bioregistry.dpv.n2t", + "name": "DPV at Rothamsted", + "prefix": "dpv", + "sameas": "bioregistry.dpv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.dpvweb.net/dpv/showdpv.php?dpvno=$1" + }, + "bioregistry.dpv.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.dpvweb.net", + "id": "bioregistry.dpv.prefixcommons", + "name": "Description of Plant Viruses", + "prefix": "dpvweb", + "sameas": "bioregistry.dpv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.dpvweb.net/dpv/showdpv.php?dpvno=$1" + }, + "bioregistry.dragondb.allele": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dragondb.allele", + "name": "DragonDB Allele at University of British Columbia", + "prefix": "dragondb.allele", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1&class=Allele" + }, + "bioregistry.dragondb.allele.miriam": { + "authority": "miriam", + "homepage": "http://www.antirrhinum.net/", + "id": "bioregistry.dragondb.allele.miriam", + "name": "DragonDB Allele", + "prefix": "dragondb.allele", + "sameas": "bioregistry.dragondb.allele", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1&class=Allele" + }, + "bioregistry.dragondb.allele.n2t": { + "authority": "n2t", + "homepage": "http://www.antirrhinum.net/", + "id": "bioregistry.dragondb.allele.n2t", + "name": "DragonDB Allele at University of British Columbia", + "prefix": "dragondb.allele", + "sameas": "bioregistry.dragondb.allele", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1&class=Allele" + }, + "bioregistry.dragondb.dna": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dragondb.dna", + "name": "DragonDB DNA at University of British Columbia", + "prefix": "dragondb.dna", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1;class=DNA" + }, + "bioregistry.dragondb.dna.miriam": { + "authority": "miriam", + "homepage": "http://www.antirrhinum.net/", + "id": "bioregistry.dragondb.dna.miriam", + "name": "DragonDB DNA", + "prefix": "dragondb.dna", + "sameas": "bioregistry.dragondb.dna", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1;class=DNA" + }, + "bioregistry.dragondb.dna.n2t": { + "authority": "n2t", + "homepage": "http://www.antirrhinum.net/", + "id": "bioregistry.dragondb.dna.n2t", + "name": "DragonDB DNA at University of British Columbia", + "prefix": "dragondb.dna", + "sameas": "bioregistry.dragondb.dna", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1;class=DNA" + }, + "bioregistry.dragondb.locus": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dragondb.locus", + "name": "DragonDB Locus at University of British Columbia", + "prefix": "dragondb.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1&class=Locus" + }, + "bioregistry.dragondb.locus.miriam": { + "authority": "miriam", + "homepage": "http://www.antirrhinum.net/", + "id": "bioregistry.dragondb.locus.miriam", + "name": "DragonDB Locus", + "prefix": "dragondb.locus", + "sameas": "bioregistry.dragondb.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1&class=Locus" + }, + "bioregistry.dragondb.locus.n2t": { + "authority": "n2t", + "homepage": "http://www.antirrhinum.net/", + "id": "bioregistry.dragondb.locus.n2t", + "name": "DragonDB Locus at University of British Columbia", + "prefix": "dragondb.locus", + "sameas": "bioregistry.dragondb.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1&class=Locus" + }, + "bioregistry.dragondb.protein": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.dragondb.protein", + "name": "DragonDB Protein at University of British Columbia", + "prefix": "dragondb.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1;class=Peptide" + }, + "bioregistry.dragondb.protein.miriam": { + "authority": "miriam", + "homepage": "http://www.antirrhinum.net/", + "id": "bioregistry.dragondb.protein.miriam", + "name": "DragonDB Protein", + "prefix": "dragondb.protein", + "sameas": "bioregistry.dragondb.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1;class=Peptide" + }, + "bioregistry.dragondb.protein.n2t": { + "authority": "n2t", + "homepage": "http://www.antirrhinum.net/", + "id": "bioregistry.dragondb.protein.n2t", + "name": "DragonDB Protein at University of British Columbia", + "prefix": "dragondb.protein", + "sameas": "bioregistry.dragondb.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name=$1;class=Peptide" + }, + "bioregistry.drduke": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.drduke", + "name": "Dr. Duke's Phytochemical and Ethnobotanical Databases chemical ID", + "prefix": "drduke", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://phytochem.nal.usda.gov/phytochem/chemicals/show/$1" + }, + "bioregistry.drduke.wikidata": { + "authority": "wikidata", + "homepage": "https://phytochem.nal.usda.gov/phytochem/search/list", + "id": "bioregistry.drduke.wikidata", + "name": "Dr. Duke's Phytochemical and Ethnobotanical Databases chemical ID", + "prefix": "P10074", + "sameas": "bioregistry.drduke", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://phytochem.nal.usda.gov/phytochem/chemicals/show/$1" + }, + "bioregistry.drsanv0": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.drsanv0", + "name": "AnVIL DRS", + "prefix": "drsanv0", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://data.terra.bio/ga4gh/drs/v1/objects/$1" + }, + "bioregistry.drsanv0.miriam": { + "authority": "miriam", + "homepage": "https://www.genome.gov/", + "id": "bioregistry.drsanv0.miriam", + "name": "AnVIL DRS", + "prefix": "drs.anv0", + "sameas": "bioregistry.drsanv0", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://data.terra.bio/ga4gh/drs/v1/objects/$1" + }, + "bioregistry.drsc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.drsc", + "name": "Drosophila RNAi Screening Center", + "prefix": "drsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.flyrnai.org/cgi-bin/RNAi_gene_lookup_public.pl?gname=$1" + }, + "bioregistry.drsc.miriam": { + "authority": "miriam", + "homepage": "http://flyrnai.org/", + "id": "bioregistry.drsc.miriam", + "name": "DRSC", + "prefix": "drsc", + "sameas": "bioregistry.drsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.flyrnai.org/cgi-bin/RNAi_gene_lookup_public.pl?gname=$1" + }, + "bioregistry.drsc.n2t": { + "authority": "n2t", + "homepage": "http://flyrnai.org/", + "id": "bioregistry.drsc.n2t", + "name": "DRSC at Harvard Medical School", + "prefix": "drsc", + "sameas": "bioregistry.drsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.flyrnai.org/cgi-bin/RNAi_gene_lookup_public.pl?gname=$1" + }, + "bioregistry.drugbank": { + "authority": "bioregistry", + "homepage": "http://www.drugbank.ca", + "id": "bioregistry.drugbank", + "name": "Drug and drug target database", + "prefix": "drugbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "pharmacology and pharmacy" + ], + "uri_format": "https://www.drugbank.ca/drugs/$1" + }, + "bioregistry.drugbank.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.drugbank.biocontext", + "name": null, + "prefix": "DrugBank", + "sameas": "bioregistry.drugbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "pharmacology and pharmacy" + ], + "uri_format": "http://www.drugbank.ca/drugs/$1" + }, + "bioregistry.drugbank.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://go.drugbank.com/", + "id": "bioregistry.drugbank.cellosaurus", + "name": "DrugBank database", + "prefix": "DrugBank", + "sameas": "bioregistry.drugbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "pharmacology and pharmacy" + ], + "uri_format": "https://go.drugbank.com/drugs/$1" + }, + "bioregistry.drugbank.miriam": { + "authority": "miriam", + "homepage": "http://www.drugbank.ca/", + "id": "bioregistry.drugbank.miriam", + "name": "DrugBank", + "prefix": "drugbank", + "sameas": "bioregistry.drugbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.drugbank.ca/drugs/$1" + }, + "bioregistry.drugbank.n2t": { + "authority": "n2t", + "homepage": "http://www.drugbank.ca/", + "id": "bioregistry.drugbank.n2t", + "name": "DrugBank drug information", + "prefix": "drugbank", + "sameas": "bioregistry.drugbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.drugbank.ca/drugs/$1" + }, + "bioregistry.drugbank.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.drugbank.ca/", + "id": "bioregistry.drugbank.prefixcommons", + "name": "DrugBank", + "prefix": "drugbank", + "sameas": "bioregistry.drugbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "pharmacology and pharmacy" + ], + "uri_format": "http://www.drugbank.ca/drugs/$1" + }, + "bioregistry.drugbank.uniprot": { + "authority": "uniprot", + "homepage": "https://www.drugbank.ca/", + "id": "bioregistry.drugbank.uniprot", + "name": "Drug and drug target database", + "prefix": "DB-0019", + "sameas": "bioregistry.drugbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "pharmacology and pharmacy" + ], + "uri_format": "https://www.drugbank.ca/drugs/$1" + }, + "bioregistry.drugbank.wikidata": { + "authority": "wikidata", + "homepage": "https://www.drugbank.ca", + "id": "bioregistry.drugbank.wikidata", + "name": "DrugBank ID", + "prefix": "P715", + "sameas": "bioregistry.drugbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "pharmacology and pharmacy" + ], + "uri_format": "https://go.drugbank.com/drugs/DB$1" + }, + "bioregistry.drugbankv4.target": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.drugbankv4.target", + "name": "DrugBank Target information version 4", + "prefix": "drugbankv4.target", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.drugbank.ca/biodb/bio_entities/$1" + }, + "bioregistry.drugbankv4.target.miriam": { + "authority": "miriam", + "homepage": "http://www.drugbank.ca/targets", + "id": "bioregistry.drugbankv4.target.miriam", + "name": "DrugBank Target v4", + "prefix": "drugbankv4.target", + "sameas": "bioregistry.drugbankv4.target", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.drugbank.ca/biodb/bio_entities/$1" + }, + "bioregistry.drugbankv4.target.n2t": { + "authority": "n2t", + "homepage": "http://www.drugbank.ca/targets", + "id": "bioregistry.drugbankv4.target.n2t", + "name": "DrugBank Target information version 4", + "prefix": "drugbankv4.target", + "sameas": "bioregistry.drugbankv4.target", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.drugbank.ca/biodb/bio_entities/$1" + }, + "bioregistry.drugcentral": { + "authority": "bioregistry", + "homepage": "http://drugcentral.org", + "id": "bioregistry.drugcentral", + "name": "DrugCentral ID", + "prefix": "drugcentral", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://drugcentral.org?q=$1" + }, + "bioregistry.drugcentral.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.drugcentral.biolink", + "name": null, + "prefix": "DrugCentral", + "sameas": "bioregistry.drugcentral", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://drugcentral.org/drugcard/$1" + }, + "bioregistry.drugcentral.miriam": { + "authority": "miriam", + "homepage": "http://www.unm.edu/", + "id": "bioregistry.drugcentral.miriam", + "name": "DrugCentral", + "prefix": "drugcentral", + "sameas": "bioregistry.drugcentral", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://drugcentral.org/drugcard/$1" + }, + "bioregistry.drugcentral.uniprot": { + "authority": "uniprot", + "homepage": "https://drugcentral.org/", + "id": "bioregistry.drugcentral.uniprot", + "name": "DrugCentral", + "prefix": "DB-0239", + "sameas": "bioregistry.drugcentral", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://drugcentral.org?q=$1" + }, + "bioregistry.drugcentral.wikidata": { + "authority": "wikidata", + "homepage": "https://drugcentral.org/", + "id": "bioregistry.drugcentral.wikidata", + "name": "DrugCentral ID", + "prefix": "P11198", + "sameas": "bioregistry.drugcentral", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://drugcentral.org/drugcard/$1" + }, + "bioregistry.dsmz": { + "authority": "bioregistry", + "homepage": "https://www.dsmz.de", + "id": "bioregistry.dsmz", + "name": "Deutsche Sammlung von Mikroorganismen und Zellkulturen", + "prefix": "dsmz", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.dsmz.de/collection/catalogue/details/culture/$1" + }, + "bioregistry.dsmz.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.dsmz.de/collection/catalogue/human-and-animal-cell-lines/catalogue", + "id": "bioregistry.dsmz.cellosaurus", + "name": "Deutsche Sammlung von Mikroorganismen und Zellkulturen", + "prefix": "DSMZ", + "sameas": "bioregistry.dsmz", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.dsmz.de/collection/catalogue/details/culture/$1" + }, + "bioregistry.ebisc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ebisc", + "name": "European Bank for induced pluripotent Stem Cells", + "prefix": "ebisc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cells.ebisc.org/$1" + }, + "bioregistry.ebisc.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ebisc.org", + "id": "bioregistry.ebisc.cellosaurus", + "name": "European Bank for induced pluripotent Stem Cells", + "prefix": "EBiSC", + "sameas": "bioregistry.ebisc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cells.ebisc.org/$1" + }, + "bioregistry.ecacc": { + "authority": "bioregistry", + "homepage": "https://www.phe-culturecollections.org.uk/collections/ecacc.aspx", + "id": "bioregistry.ecacc", + "name": "European Collection of Authenticated Cell Culture", + "prefix": "ecacc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.phe-culturecollections.org.uk/products/celllines/generalcell/detail.jsp?refId=$1&collection=ecacc_gc" + }, + "bioregistry.ecacc.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.phe-culturecollections.org.uk/products/celllines/index.aspx", + "id": "bioregistry.ecacc.cellosaurus", + "name": "European Collection of Cell Cultures", + "prefix": "ECACC", + "sameas": "bioregistry.ecacc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.phe-culturecollections.org.uk/products/celllines/generalcell/detail.jsp?refId=$1&collection=ecacc_gc" + }, + "bioregistry.eccode": { + "authority": "bioregistry", + "homepage": "https://www.enzyme-database.org/", + "id": "bioregistry.eccode", + "name": "IntEnZ (Integrated relational Enzyme database)", + "prefix": "eccode", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec=$1" + }, + "bioregistry.eccode.go": { + "authority": "go", + "homepage": "http://enzyme.expasy.org/", + "id": "bioregistry.eccode.go", + "name": "Enzyme Commission", + "prefix": "EC", + "sameas": "bioregistry.eccode", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://enzyme.expasy.org/EC/$1" + }, + "bioregistry.eccode.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/intenz/", + "id": "bioregistry.eccode.miriam", + "name": "Enzyme Nomenclature", + "prefix": "ec-code", + "sameas": "bioregistry.eccode", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec=$1" + }, + "bioregistry.eccode.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/intenz/", + "id": "bioregistry.eccode.n2t", + "name": "IntEnZ (Integrated relational Enzyme database)", + "prefix": "ec-code", + "sameas": "bioregistry.eccode", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec=$1" + }, + "bioregistry.eccode.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/intenz", + "id": "bioregistry.eccode.prefixcommons", + "name": "Integrated relational Enzyme database", + "prefix": "intenz", + "sameas": "bioregistry.eccode", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/intenz/query?cmd=SearchID&id=$1" + }, + "bioregistry.eccode.uniprot": { + "authority": "uniprot", + "homepage": "https://enzyme.expasy.org/", + "id": "bioregistry.eccode.uniprot", + "name": "Enzyme nomenclature database", + "prefix": "DB-0024", + "sameas": "bioregistry.eccode", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://enzyme.expasy.org/EC/$1" + }, + "bioregistry.eccode.wikidata": { + "authority": "wikidata", + "homepage": "http://www.chem.qmul.ac.uk/iubmb/enzyme/", + "id": "bioregistry.eccode.wikidata", + "name": "EC enzyme number", + "prefix": "P591", + "sameas": "bioregistry.eccode", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://enzyme.expasy.org/EC/$1" + }, + "bioregistry.echobase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.echobase", + "name": "EchoBASE - an integrated post-genomic database for E. coli", + "prefix": "echobase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.york.ac.uk/res/thomas/Gene.cfm?recordID=$1" + }, + "bioregistry.echobase.go": { + "authority": "go", + "homepage": "https://www.york.ac.uk/res/thomas/", + "id": "bioregistry.echobase.go", + "name": "EchoBASE post-genomic database for Escherichia coli", + "prefix": "EchoBASE", + "sameas": "bioregistry.echobase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.york.ac.uk/res/thomas/Gene.cfm?&recordID=$1" + }, + "bioregistry.echobase.miriam": { + "authority": "miriam", + "homepage": "http://www.york.ac.uk/", + "id": "bioregistry.echobase.miriam", + "name": "EchoBASE", + "prefix": "echobase", + "sameas": "bioregistry.echobase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.york.ac.uk/res/thomas/Gene.cfm?recordID=$1" + }, + "bioregistry.echobase.n2t": { + "authority": "n2t", + "homepage": "http://www.york.ac.uk/", + "id": "bioregistry.echobase.n2t", + "name": "EchoBASE at the University of York", + "prefix": "echobase", + "sameas": "bioregistry.echobase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.york.ac.uk/res/thomas/Gene.cfm?recordID=$1" + }, + "bioregistry.echobase.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ecoli-york.org/", + "id": "bioregistry.echobase.prefixcommons", + "name": "EchoBASE - an integrated post-genomic database for E. coli", + "prefix": "echobase", + "sameas": "bioregistry.echobase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.york.ac.uk/res/thomas/Gene.cfm?recordID=$1" + }, + "bioregistry.echobase.uniprot": { + "authority": "uniprot", + "homepage": "https://www.york.ac.uk/res/thomas/", + "id": "bioregistry.echobase.uniprot", + "name": "EchoBASE - an integrated post-genomic database for E. coli", + "prefix": "DB-0020", + "sameas": "bioregistry.echobase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.york.ac.uk/res/thomas/Gene.cfm?recordID=$1" + }, + "bioregistry.eco": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.eco", + "name": "Evidence Code Ontology through BioPortal", + "prefix": "eco", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.evidenceontology.org/browse/#ECO_$1" + }, + "bioregistry.eco.go": { + "authority": "go", + "homepage": "http://www.evidenceontology.org/", + "id": "bioregistry.eco.go", + "name": "Evidence Code Ontology", + "prefix": "ECO", + "sameas": "bioregistry.eco", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.evidenceontology.org/browse/#ECO_$1" + }, + "bioregistry.eco.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/ontologies/ECO", + "id": "bioregistry.eco.miriam", + "name": "Evidence Code Ontology", + "prefix": "eco", + "sameas": "bioregistry.eco", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/ECO/ECO:$1" + }, + "bioregistry.eco.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/ECO", + "id": "bioregistry.eco.n2t", + "name": "Evidence Code Ontology through BioPortal", + "prefix": "eco", + "sameas": "bioregistry.eco", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/ECO/ECO:$1" + }, + "bioregistry.ecocyc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ecocyc", + "name": "Scientific database for the bacterium Escherichia coli K-12 MG1655", + "prefix": "ecocyc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ecocyc.org/ECOLI/NEW-IMAGE?type=PATHWAY&object=$1" + }, + "bioregistry.ecocyc.go": { + "authority": "go", + "homepage": "https://ecocyc.org/", + "id": "bioregistry.ecocyc.go", + "name": "Scientific database for the bacterium Escherichia coli K-12 MG1655", + "prefix": "EcoCyc", + "sameas": "bioregistry.ecocyc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ecocyc.org/ECOLI/NEW-IMAGE?type=PATHWAY&object=$1" + }, + "bioregistry.ecogene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ecogene", + "name": "Database of Escherichia coli Sequence and Function", + "prefix": "ecogene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ecogene.org/gene/$1" + }, + "bioregistry.ecogene.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.ecogene.biocontext", + "name": null, + "prefix": "EcoGene", + "sameas": "bioregistry.ecogene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://ecogene.org/gene/$1" + }, + "bioregistry.ecogene.miriam": { + "authority": "miriam", + "homepage": "http://ecogene.org/", + "id": "bioregistry.ecogene.miriam", + "name": "EcoGene", + "prefix": "ecogene", + "sameas": "bioregistry.ecogene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ecogene.org/gene/$1" + }, + "bioregistry.ecogene.n2t": { + "authority": "n2t", + "homepage": "http://ecogene.org/", + "id": "bioregistry.ecogene.n2t", + "name": "EcoGene at University of Miami", + "prefix": "ecogene", + "sameas": "bioregistry.ecogene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ecogene.org/gene/$1" + }, + "bioregistry.ecogene.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://ecogene.org/", + "id": "bioregistry.ecogene.prefixcommons", + "name": "Escherichia coli strain K12 genome database", + "prefix": "ecogene", + "sameas": "bioregistry.ecogene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://ecogene.org/geneInfo.php?eg_id=$1" + }, + "bioregistry.ecoliwiki": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ecoliwiki", + "name": "EcoliWiki at Texas Agrilife Research", + "prefix": "ecoliwiki", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ecoliwiki.net/colipedia/index.php/$1:Gene" + }, + "bioregistry.ecoliwiki.miriam": { + "authority": "miriam", + "homepage": "http://ecoliwiki.net/colipedia/", + "id": "bioregistry.ecoliwiki.miriam", + "name": "EcoliWiki", + "prefix": "ecoliwiki", + "sameas": "bioregistry.ecoliwiki", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ecoliwiki.net/colipedia/index.php/$1:Gene" + }, + "bioregistry.ecoliwiki.n2t": { + "authority": "n2t", + "homepage": "http://ecoliwiki.net/colipedia/", + "id": "bioregistry.ecoliwiki.n2t", + "name": "EcoliWiki at Texas Agrilife Research", + "prefix": "ecoliwiki", + "sameas": "bioregistry.ecoliwiki", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ecoliwiki.net/colipedia/index.php/$1:Gene" + }, + "bioregistry.ecto": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ecto", + "name": "Environmental conditions, treatments and exposures ontology", + "prefix": "ecto", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/ECTO_$1" + }, + "bioregistry.ecto.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.ecto.biolink", + "name": null, + "prefix": "ECTO", + "sameas": "bioregistry.ecto", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/ECTO_$1" + }, + "bioregistry.ecyano.entity": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ecyano.entity", + "name": "e-cyanobacterium entity at Masaryk University Brno", + "prefix": "ecyano.entity", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://e-cyanobacterium.org/bcs/entity/$1/" + }, + "bioregistry.ecyano.entity.miriam": { + "authority": "miriam", + "homepage": "http://www.e-cyanobacterium.org/bcs/entity/", + "id": "bioregistry.ecyano.entity.miriam", + "name": "E-cyanobacterium entity", + "prefix": "ecyano.entity", + "sameas": "bioregistry.ecyano.entity", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://e-cyanobacterium.org/bcs/entity/$1/" + }, + "bioregistry.ecyano.entity.n2t": { + "authority": "n2t", + "homepage": "http://www.e-cyanobacterium.org/bcs/entity/", + "id": "bioregistry.ecyano.entity.n2t", + "name": "e-cyanobacterium entity at Masaryk University Brno", + "prefix": "ecyano.entity", + "sameas": "bioregistry.ecyano.entity", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://e-cyanobacterium.org/bcs/entity/$1/" + }, + "bioregistry.ecyano.experiment": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ecyano.experiment", + "name": "E-cyanobacterium Experimental Data", + "prefix": "ecyano.experiment", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.e-cyanobacterium.org/experiments-repository/?action=detail&id=$1" + }, + "bioregistry.ecyano.experiment.miriam": { + "authority": "miriam", + "homepage": "https://www.e-cyanobacterium.org/experiments-repository/", + "id": "bioregistry.ecyano.experiment.miriam", + "name": "E-cyanobacterium Experimental Data", + "prefix": "ecyano.experiment", + "sameas": "bioregistry.ecyano.experiment", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.e-cyanobacterium.org/experiments-repository/?action=detail&id=$1" + }, + "bioregistry.ecyano.model": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ecyano.model", + "name": "e-cyanobacterium entity at Masaryk University Brno", + "prefix": "ecyano.model", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://e-cyanobacterium.org/models/model/$1/" + }, + "bioregistry.ecyano.model.miriam": { + "authority": "miriam", + "homepage": "http://e-cyanobacterium.org/models/", + "id": "bioregistry.ecyano.model.miriam", + "name": "E-cyanobacterium model", + "prefix": "ecyano.model", + "sameas": "bioregistry.ecyano.model", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://e-cyanobacterium.org/models/model/$1/" + }, + "bioregistry.ecyano.model.n2t": { + "authority": "n2t", + "homepage": "http://e-cyanobacterium.org/models/", + "id": "bioregistry.ecyano.model.n2t", + "name": "e-cyanobacterium entity at Masaryk University Brno", + "prefix": "ecyano.model", + "sameas": "bioregistry.ecyano.model", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://e-cyanobacterium.org/models/model/$1/" + }, + "bioregistry.ecyano.rule": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ecyano.rule", + "name": "e-cyanobacterium entity at Masaryk University Brno", + "prefix": "ecyano.rule", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://e-cyanobacterium.org/bcs/rule/$1/" + }, + "bioregistry.ecyano.rule.miriam": { + "authority": "miriam", + "homepage": "http://www.e-cyanobacterium.org/bcs/rule/", + "id": "bioregistry.ecyano.rule.miriam", + "name": "E-cyanobacterium rule", + "prefix": "ecyano.rule", + "sameas": "bioregistry.ecyano.rule", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://e-cyanobacterium.org/bcs/rule/$1/" + }, + "bioregistry.ecyano.rule.n2t": { + "authority": "n2t", + "homepage": "http://www.e-cyanobacterium.org/bcs/rule/", + "id": "bioregistry.ecyano.rule.n2t", + "name": "e-cyanobacterium entity at Masaryk University Brno", + "prefix": "ecyano.rule", + "sameas": "bioregistry.ecyano.rule", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://e-cyanobacterium.org/bcs/rule/$1/" + }, + "bioregistry.edam": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.edam", + "name": "EDAM bioinformatics operations, types of data, data formats, identifiers, and topics", + "prefix": "edam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/EDAM/$1" + }, + "bioregistry.edam.data": { + "authority": "bioregistry", + "homepage": "http://edamontology.org", + "id": "bioregistry.edam.data", + "name": "EDAM Data", + "prefix": "edam.data", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://edamontology.org/data_$1" + }, + "bioregistry.edam.data.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.edam.data.biolink", + "name": null, + "prefix": "EDAM-DATA", + "sameas": "bioregistry.edam.data", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://edamontology.org/data_$1" + }, + "bioregistry.edam.format": { + "authority": "bioregistry", + "homepage": "http://edamontology.org", + "id": "bioregistry.edam.format", + "name": "EDAM Format", + "prefix": "edam.format", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://edamontology.org/format_$1" + }, + "bioregistry.edam.format.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.edam.format.biolink", + "name": null, + "prefix": "EDAM-FORMAT", + "sameas": "bioregistry.edam.format", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://edamontology.org/format_$1" + }, + "bioregistry.edam.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/ontologies/EDAM", + "id": "bioregistry.edam.miriam", + "name": "EDAM Ontology", + "prefix": "edam", + "sameas": "bioregistry.edam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/EDAM/$1" + }, + "bioregistry.edam.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/EDAM", + "id": "bioregistry.edam.n2t", + "name": "EDAM through BioPortal", + "prefix": "edam", + "sameas": "bioregistry.edam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/EDAM/$1" + }, + "bioregistry.edam.operation": { + "authority": "bioregistry", + "homepage": "http://edamontology.org", + "id": "bioregistry.edam.operation", + "name": "EDAM Operation", + "prefix": "edam.operation", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://edamontology.org/operation_$1" + }, + "bioregistry.edam.operation.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.edam.operation.biolink", + "name": null, + "prefix": "EDAM-OPERATION", + "sameas": "bioregistry.edam.operation", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://edamontology.org/operation_$1" + }, + "bioregistry.edam.topic": { + "authority": "bioregistry", + "homepage": "http://edamontology.org", + "id": "bioregistry.edam.topic", + "name": "EDAM Topic", + "prefix": "edam.topic", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://edamontology.org/topic_$1" + }, + "bioregistry.edam.topic.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.edam.topic.biolink", + "name": null, + "prefix": "EDAM-TOPIC", + "sameas": "bioregistry.edam.topic", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://edamontology.org/topic_$1" + }, + "bioregistry.efo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.efo", + "name": "Experimental Factor Ontology", + "prefix": "efo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/efo/$1" + }, + "bioregistry.efo.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.efo.biolink", + "name": null, + "prefix": "EFO", + "sameas": "bioregistry.efo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ebi.ac.uk/efo/EFO_$1" + }, + "bioregistry.efo.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ebi.ac.uk/efo/", + "id": "bioregistry.efo.cellosaurus", + "name": "Experimental Factor Ontology", + "prefix": "EFO", + "sameas": "bioregistry.efo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/efo/$1" + }, + "bioregistry.efo.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/ontologies/EFO", + "id": "bioregistry.efo.miriam", + "name": "Experimental Factor Ontology", + "prefix": "efo", + "sameas": "bioregistry.efo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/EFO/efo:EFO_$1" + }, + "bioregistry.efo.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/EFO", + "id": "bioregistry.efo.n2t", + "name": "EFO through BioPortal", + "prefix": "efo", + "sameas": "bioregistry.efo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/EFO/efo:EFO_$1" + }, + "bioregistry.ega.dataset": { + "authority": "bioregistry", + "homepage": "https://ega-archive.org/", + "id": "bioregistry.ega.dataset", + "name": "EGA Dataset at European Bioinformatics Institute", + "prefix": "ega.dataset", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ega/datasets/$1" + }, + "bioregistry.ega.dataset.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ega/dataset", + "id": "bioregistry.ega.dataset.miriam", + "name": "European Genome-phenome Archive Dataset", + "prefix": "ega.dataset", + "sameas": "bioregistry.ega.dataset", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ega/datasets/$1" + }, + "bioregistry.ega.dataset.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/ega/dataset", + "id": "bioregistry.ega.dataset.n2t", + "name": "EGA Dataset at European Bioinformatics Institute", + "prefix": "ega.dataset", + "sameas": "bioregistry.ega.dataset", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ega/datasets/$1" + }, + "bioregistry.ega.study": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ega.study", + "name": "EGA Study at European Bioinformatics Institute", + "prefix": "ega.study", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ega/studies/$1" + }, + "bioregistry.ega.study.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ega/studies", + "id": "bioregistry.ega.study.miriam", + "name": "European Genome-phenome Archive Study", + "prefix": "ega.study", + "sameas": "bioregistry.ega.study", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ega/studies/$1" + }, + "bioregistry.ega.study.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/ega/studies", + "id": "bioregistry.ega.study.n2t", + "name": "EGA Study at European Bioinformatics Institute", + "prefix": "ega.study", + "sameas": "bioregistry.ega.study", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ega/studies/$1" + }, + "bioregistry.eggnog": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.eggnog", + "name": "Evolutionary Genealogy of Genes: Non-supervised Orthologous Groups", + "prefix": "eggnog", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://eggnog.embl.de/version_3.0/cgi/search.py?search_term_0=$1" + }, + "bioregistry.eggnog.miriam": { + "authority": "miriam", + "homepage": "http://eggnog.embl.de/version_3.0/", + "id": "bioregistry.eggnog.miriam", + "name": "eggNOG", + "prefix": "eggnog", + "sameas": "bioregistry.eggnog", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://eggnog.embl.de/version_3.0/cgi/search.py?search_term_0=$1" + }, + "bioregistry.eggnog.n2t": { + "authority": "n2t", + "homepage": "http://eggnog.embl.de/version_3.0/", + "id": "bioregistry.eggnog.n2t", + "name": "eggNOG Version 3 at European Molecular Biology Laboratory", + "prefix": "eggnog", + "sameas": "bioregistry.eggnog", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://eggnog.embl.de/version_3.0/cgi/search.py?search_term_0=$1" + }, + "bioregistry.eggnog.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://eggnog.embl.de", + "id": "bioregistry.eggnog.prefixcommons", + "name": "Evolutionary Genealogy of Genes: Non-supervised Orthologous Groups", + "prefix": "eggnog", + "sameas": "bioregistry.eggnog", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://eggnog.embl.de/version_3.0/cgi/search.py?search_term_0=$1" + }, + "bioregistry.elm": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.elm", + "name": "The Eukaryotic Linear Motif resource for Functional Sites in Proteins", + "prefix": "elm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://elm.eu.org/instances.html?q=$1" + }, + "bioregistry.elm.miriam": { + "authority": "miriam", + "homepage": "http://elm.eu.org/", + "id": "bioregistry.elm.miriam", + "name": "ELM", + "prefix": "elm", + "sameas": "bioregistry.elm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://elm.eu.org/elms/elmPages/$1.html" + }, + "bioregistry.elm.n2t": { + "authority": "n2t", + "homepage": "http://elm.eu.org/", + "id": "bioregistry.elm.n2t", + "name": "ELM at EMBL (Germany)", + "prefix": "elm", + "sameas": "bioregistry.elm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://elm.eu.org/elms/elmPages/$1.html" + }, + "bioregistry.elm.uniprot": { + "authority": "uniprot", + "homepage": "http://elm.eu.org/", + "id": "bioregistry.elm.uniprot", + "name": "The Eukaryotic Linear Motif resource for Functional Sites in Proteins", + "prefix": "DB-0223", + "sameas": "bioregistry.elm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://elm.eu.org/instances.html?q=$1" + }, + "bioregistry.emapa": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.emapa", + "name": "Mouse gross anatomy and development, abstract", + "prefix": "emapa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.informatics.jax.org/vocab/gxd/anatomy/EMAPA:$1" + }, + "bioregistry.emapa.go": { + "authority": "go", + "homepage": "http://emouseatlas.org/", + "id": "bioregistry.emapa.go", + "name": "Mouse gross anatomy and development, abstract", + "prefix": "EMAPA", + "sameas": "bioregistry.emapa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.informatics.jax.org/vocab/gxd/anatomy/EMAPA:$1" + }, + "bioregistry.emdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.emdb", + "name": "EMDB at Protein Data Bank in Europe", + "prefix": "emdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/pdbe/entry/emdb/$1" + }, + "bioregistry.emdb.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/pdbe/emdb/", + "id": "bioregistry.emdb.miriam", + "name": "Electron Microscopy Data Bank", + "prefix": "emdb", + "sameas": "bioregistry.emdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/pdbe/entry/emdb/$1" + }, + "bioregistry.emdb.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/pdbe/emdb/", + "id": "bioregistry.emdb.n2t", + "name": "EMDB at Protein Data Bank in Europe", + "prefix": "emdb", + "sameas": "bioregistry.emdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/pdbe/entry/emdb/$1" + }, + "bioregistry.empiar": { + "authority": "bioregistry", + "homepage": "https://www.ebi.ac.uk/pdbe/emdb", + "id": "bioregistry.empiar", + "name": "Electron Microscopy Public Image Archive", + "prefix": "empiar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/empiar/$1" + }, + "bioregistry.empiar.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk", + "id": "bioregistry.empiar.miriam", + "name": "EMPIAR", + "prefix": "empiar", + "sameas": "bioregistry.empiar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/empiar/$1" + }, + "bioregistry.ena.embl": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ena.embl", + "name": "EMBL nucleotide sequence database", + "prefix": "ena.embl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1" + }, + "bioregistry.ena.embl.go": { + "authority": "go", + "homepage": "http://www.ebi.ac.uk/ena/", + "id": "bioregistry.ena.embl.go", + "name": "European Nucleotide Archive", + "prefix": "ENA", + "sameas": "bioregistry.ena.embl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ebi.ac.uk/ena/data/view/$1" + }, + "bioregistry.ena.embl.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ena/", + "id": "bioregistry.ena.embl.miriam", + "name": "ENA", + "prefix": "ena.embl", + "sameas": "bioregistry.ena.embl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ena/browser/view/$1" + }, + "bioregistry.ena.embl.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/Genbank/", + "id": "bioregistry.ena.embl.n2t", + "name": "ENA through GenBank", + "prefix": "ena.embl", + "sameas": "bioregistry.ena.embl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1" + }, + "bioregistry.ena.embl.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/ena/", + "id": "bioregistry.ena.embl.prefixcommons", + "name": "European Nucleotide Archive", + "prefix": "ena", + "sameas": "bioregistry.ena.embl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ebi.ac.uk/ena/data/view/$1" + }, + "bioregistry.ena.embl.uniprot": { + "authority": "uniprot", + "homepage": "https://www.ebi.ac.uk/ena", + "id": "bioregistry.ena.embl.uniprot", + "name": "EMBL nucleotide sequence database", + "prefix": "DB-0022", + "sameas": "bioregistry.ena.embl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ebi.ac.uk/ena/browser/view/$1" + }, + "bioregistry.encode": { + "authority": "bioregistry", + "homepage": "https://www.encodeproject.org", + "id": "bioregistry.encode", + "name": "ENCODE: Encyclopedia of DNA Elements", + "prefix": "encode", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.encodeproject.org/biosamples/$1" + }, + "bioregistry.encode.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.encodeproject.org", + "id": "bioregistry.encode.cellosaurus", + "name": "Encyclopedia of DNA Elements", + "prefix": "ENCODE", + "sameas": "bioregistry.encode", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.encodeproject.org/biosamples/$1" + }, + "bioregistry.encode.miriam": { + "authority": "miriam", + "homepage": "www.encodeproject.org", + "id": "bioregistry.encode.miriam", + "name": "ENCODE: Encyclopedia of DNA Elements", + "prefix": "encode", + "sameas": "bioregistry.encode", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.encodeproject.org/$1" + }, + "bioregistry.encode.n2t": { + "authority": "n2t", + "homepage": "www.encodeproject.org", + "id": "bioregistry.encode.n2t", + "name": "ENCODE: Encyclopedia of DNA Elements", + "prefix": "encode", + "sameas": "bioregistry.encode", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.encodeproject.org/$1" + }, + "bioregistry.ensembl": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ensembl", + "name": "Ensembl database of automatically annotated genomic data", + "prefix": "ensembl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ensembl.org/id/$1" + }, + "bioregistry.ensembl.bacteria": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ensembl.bacteria", + "name": "Ensembl bacterial and archaeal genome annotation project", + "prefix": "ensembl.bacteria", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ensemblgenomes.org/id/$1" + }, + "bioregistry.ensembl.bacteria.miriam": { + "authority": "miriam", + "homepage": "https://bacteria.ensembl.org/", + "id": "bioregistry.ensembl.bacteria.miriam", + "name": "Ensembl Bacteria", + "prefix": "ensembl.bacteria", + "sameas": "bioregistry.ensembl.bacteria", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bacteria.ensembl.org/id/$1" + }, + "bioregistry.ensembl.bacteria.n2t": { + "authority": "n2t", + "homepage": "https://bacteria.ensembl.org/", + "id": "bioregistry.ensembl.bacteria.n2t", + "name": "Ensembl Bacteria at EBI", + "prefix": "ensembl.bacteria", + "sameas": "bioregistry.ensembl.bacteria", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bacteria.ensembl.org/id/$1" + }, + "bioregistry.ensembl.bacteria.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://bacteria.ensembl.org/", + "id": "bioregistry.ensembl.bacteria.prefixcommons", + "name": "Ensembl Bacteria", + "prefix": "ensembl.bacteria", + "sameas": "bioregistry.ensembl.bacteria", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://bacteria.ensembl.org/[?species_name]/Gene/Summary?g=$1" + }, + "bioregistry.ensembl.bacteria.uniprot": { + "authority": "uniprot", + "homepage": "https://bacteria.ensembl.org/", + "id": "bioregistry.ensembl.bacteria.uniprot", + "name": "Ensembl bacterial and archaeal genome annotation project", + "prefix": "DB-0147", + "sameas": "bioregistry.ensembl.bacteria", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ensemblgenomes.org/id/$1" + }, + "bioregistry.ensembl.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.ensembl.biocontext", + "name": null, + "prefix": "ENSEMBL", + "sameas": "bioregistry.ensembl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://ensembl.org/id/$1" + }, + "bioregistry.ensembl.fungi": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ensembl.fungi", + "name": "Ensembl Fungi, the Ensembl database for accessing genome-scale data from fungi.", + "prefix": "ensembl.fungi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ensemblgenomes.org/id/$1" + }, + "bioregistry.ensembl.fungi.go": { + "authority": "go", + "homepage": "http://fungi.ensembl.org/", + "id": "bioregistry.ensembl.fungi.go", + "name": "Ensembl Fungi, the Ensembl database for accessing genome-scale data from fungi.", + "prefix": "EnsemblFungi", + "sameas": "bioregistry.ensembl.fungi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ensemblgenomes.org/id/$1" + }, + "bioregistry.ensembl.fungi.miriam": { + "authority": "miriam", + "homepage": "https://fungi.ensembl.org/", + "id": "bioregistry.ensembl.fungi.miriam", + "name": "Ensembl Fungi", + "prefix": "ensembl.fungi", + "sameas": "bioregistry.ensembl.fungi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://fungi.ensembl.org/id/$1" + }, + "bioregistry.ensembl.fungi.n2t": { + "authority": "n2t", + "homepage": "https://fungi.ensembl.org/", + "id": "bioregistry.ensembl.fungi.n2t", + "name": "Enzembl Fungi at EBI", + "prefix": "ensembl.fungi", + "sameas": "bioregistry.ensembl.fungi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://fungi.ensembl.org/id/$1" + }, + "bioregistry.ensembl.fungi.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://fungi.ensembl.org/", + "id": "bioregistry.ensembl.fungi.prefixcommons", + "name": "Ensembl Fungi", + "prefix": "ensembl.fungi", + "sameas": "bioregistry.ensembl.fungi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://fungi.ensembl.org/[?species_name]/Gene/Summary?g=$1" + }, + "bioregistry.ensembl.fungi.uniprot": { + "authority": "uniprot", + "homepage": "https://fungi.ensembl.org/", + "id": "bioregistry.ensembl.fungi.uniprot", + "name": "Ensembl fungal genome annotation project", + "prefix": "DB-0148", + "sameas": "bioregistry.ensembl.fungi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ensemblgenomes.org/id/$1" + }, + "bioregistry.ensembl.metazoa": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ensembl.metazoa", + "name": "Ensembl Metazoa, the Ensembl database for accessing genome-scale data from non-vertebrate metazoa.", + "prefix": "ensembl.metazoa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ensemblgenomes.org/id/$1" + }, + "bioregistry.ensembl.metazoa.go": { + "authority": "go", + "homepage": "http://metazoa.ensembl.org/", + "id": "bioregistry.ensembl.metazoa.go", + "name": "Ensembl Metazoa, the Ensembl database for accessing genome-scale data from non-vertebrate metazoa.", + "prefix": "EnsemblMetazoa", + "sameas": "bioregistry.ensembl.metazoa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ensemblgenomes.org/id/$1" + }, + "bioregistry.ensembl.metazoa.miriam": { + "authority": "miriam", + "homepage": "https://metazoa.ensembl.org/", + "id": "bioregistry.ensembl.metazoa.miriam", + "name": "Ensembl Metazoa", + "prefix": "ensembl.metazoa", + "sameas": "bioregistry.ensembl.metazoa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://metazoa.ensembl.org/id/$1" + }, + "bioregistry.ensembl.metazoa.n2t": { + "authority": "n2t", + "homepage": "https://metazoa.ensembl.org/", + "id": "bioregistry.ensembl.metazoa.n2t", + "name": "Enzembl Metazoa at EBI", + "prefix": "ensembl.metazoa", + "sameas": "bioregistry.ensembl.metazoa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://metazoa.ensembl.org/id/$1" + }, + "bioregistry.ensembl.metazoa.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://metazoa.ensembl.org/", + "id": "bioregistry.ensembl.metazoa.prefixcommons", + "name": "Ensembl Metazoa", + "prefix": "ensembl.metazoa", + "sameas": "bioregistry.ensembl.metazoa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://metazoa.ensembl.org/[?species_name]/Gene/Summary?g=$1" + }, + "bioregistry.ensembl.metazoa.uniprot": { + "authority": "uniprot", + "homepage": "https://metazoa.ensembl.org/", + "id": "bioregistry.ensembl.metazoa.uniprot", + "name": "Ensembl metazoan genome annotation project", + "prefix": "DB-0149", + "sameas": "bioregistry.ensembl.metazoa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ensemblgenomes.org/id/$1" + }, + "bioregistry.ensembl.miriam": { + "authority": "miriam", + "homepage": "https://www.ensembl.org/", + "id": "bioregistry.ensembl.miriam", + "name": "Ensembl", + "prefix": "ensembl", + "sameas": "bioregistry.ensembl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ensembl.org/id/$1" + }, + "bioregistry.ensembl.n2t": { + "authority": "n2t", + "homepage": "https://www.ensembl.org/", + "id": "bioregistry.ensembl.n2t", + "name": "Ensembl at Sanger/EMBL-EBI", + "prefix": "ensembl", + "sameas": "bioregistry.ensembl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ensembl.org/id/$1" + }, + "bioregistry.ensembl.plant": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ensembl.plant", + "name": "Enzembl Plants at EBI", + "prefix": "ensembl.plant", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://plants.ensembl.org/id/$1" + }, + "bioregistry.ensembl.plant.miriam": { + "authority": "miriam", + "homepage": "https://plants.ensembl.org/", + "id": "bioregistry.ensembl.plant.miriam", + "name": "Ensembl Plants", + "prefix": "ensembl.plant", + "sameas": "bioregistry.ensembl.plant", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://plants.ensembl.org/id/$1" + }, + "bioregistry.ensembl.plant.n2t": { + "authority": "n2t", + "homepage": "https://plants.ensembl.org/", + "id": "bioregistry.ensembl.plant.n2t", + "name": "Enzembl Plants at EBI", + "prefix": "ensembl.plant", + "sameas": "bioregistry.ensembl.plant", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://plants.ensembl.org/id/$1" + }, + "bioregistry.ensembl.plant.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://plants.ensembl.org/", + "id": "bioregistry.ensembl.plant.prefixcommons", + "name": "Ensembl Plants", + "prefix": "ensembl.plant", + "sameas": "bioregistry.ensembl.plant", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://plants.ensembl.org/[?species_name]/Gene/Summary?g=$1" + }, + "bioregistry.ensembl.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ensembl.org/", + "id": "bioregistry.ensembl.prefixcommons", + "name": "Ensembl", + "prefix": "ensembl", + "sameas": "bioregistry.ensembl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ensembl.org/id/$1" + }, + "bioregistry.ensembl.protist": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ensembl.protist", + "name": "Ensembl Protists at EBI", + "prefix": "ensembl.protist", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://protists.ensembl.org/id/$1" + }, + "bioregistry.ensembl.protist.miriam": { + "authority": "miriam", + "homepage": "https://protists.ensembl.org", + "id": "bioregistry.ensembl.protist.miriam", + "name": "Ensembl Protists", + "prefix": "ensembl.protist", + "sameas": "bioregistry.ensembl.protist", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://protists.ensembl.org/id/$1" + }, + "bioregistry.ensembl.protist.n2t": { + "authority": "n2t", + "homepage": "https://protists.ensembl.org", + "id": "bioregistry.ensembl.protist.n2t", + "name": "Ensembl Protists at EBI", + "prefix": "ensembl.protist", + "sameas": "bioregistry.ensembl.protist", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://protists.ensembl.org/id/$1" + }, + "bioregistry.ensembl.protist.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://protists.ensembl.org/", + "id": "bioregistry.ensembl.protist.prefixcommons", + "name": "Ensembl Protists", + "prefix": "ensembl.protist", + "sameas": "bioregistry.ensembl.protist", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://protists.ensembl.org/[?species_name]/Gene/Summary?g=$1" + }, + "bioregistry.ensembl.uniprot": { + "authority": "uniprot", + "homepage": "https://www.ensembl.org/", + "id": "bioregistry.ensembl.uniprot", + "name": "Ensembl eukaryotic genome annotation project", + "prefix": "DB-0023", + "sameas": "bioregistry.ensembl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ensembl.org/id/$1" + }, + "bioregistry.ensembl.wikidata": { + "authority": "wikidata", + "homepage": "https://www.ensembl.org", + "id": "bioregistry.ensembl.wikidata", + "name": "Ensembl gene ID", + "prefix": "P594", + "sameas": "bioregistry.ensembl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://identifiers.org/ensembl/$1" + }, + "bioregistry.envipath": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.envipath", + "name": "enviPath", + "prefix": "envipath", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://envipath.org/package/$1" + }, + "bioregistry.envipath.miriam": { + "authority": "miriam", + "homepage": "https://envipath.org/", + "id": "bioregistry.envipath.miriam", + "name": "enviPath", + "prefix": "envipath", + "sameas": "bioregistry.envipath", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://envipath.org/package/$1" + }, + "bioregistry.envo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.envo", + "name": "The Environment Ontology through BioPortal", + "prefix": "envo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/ENVO/ENVO:$1" + }, + "bioregistry.envo.miriam": { + "authority": "miriam", + "homepage": "http://purl.bioontology.org/ontology/ENVO/", + "id": "bioregistry.envo.miriam", + "name": "Environment Ontology", + "prefix": "envo", + "sameas": "bioregistry.envo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/ENVO/ENVO:$1" + }, + "bioregistry.envo.n2t": { + "authority": "n2t", + "homepage": "http://purl.bioontology.org/ontology/ENVO/", + "id": "bioregistry.envo.n2t", + "name": "The Environment Ontology through BioPortal", + "prefix": "envo", + "sameas": "bioregistry.envo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/ENVO/ENVO:$1" + }, + "bioregistry.eo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.eo", + "name": "Plant Environment Ontology through BioPortal", + "prefix": "eo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "botany" + ], + "uri_format": "http://purl.bioontology.org/ontology/PECO/EO:$1" + }, + "bioregistry.eo.miriam": { + "authority": "miriam", + "homepage": "http://archive.gramene.org/db/ontology/search_term?id=EO:0007359", + "id": "bioregistry.eo.miriam", + "name": "Plant Environment Ontology", + "prefix": "eo", + "sameas": "bioregistry.eo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://archive.gramene.org/db/ontology/search?query=EO:$1" + }, + "bioregistry.eo.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/PECO", + "id": "bioregistry.eo.n2t", + "name": "Plant Environment Ontology through BioPortal", + "prefix": "eo", + "sameas": "bioregistry.eo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/PECO/EO:$1" + }, + "bioregistry.eolife": { + "authority": "bioregistry", + "homepage": "https://eol.org", + "id": "bioregistry.eolife", + "name": "Encyclopedia of Life ID", + "prefix": "eolife", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://eol.org/pages/$1" + }, + "bioregistry.eolife.wikidata": { + "authority": "wikidata", + "homepage": "http://eol.org/api/docs/pages", + "id": "bioregistry.eolife.wikidata", + "name": "Encyclopedia of Life ID", + "prefix": "P830", + "sameas": "bioregistry.eolife", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://eol.org/pages/$1" + }, + "bioregistry.epd": { + "authority": "bioregistry", + "homepage": "https://epd.expasy.org/epd/", + "id": "bioregistry.epd", + "name": "EPD at Swiss Institute of Bioinformatics", + "prefix": "epd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.peptracker.com/epd/analytics/?protein_id=$1" + }, + "bioregistry.epd.miriam": { + "authority": "miriam", + "homepage": "https://epd.expasy.org/epd", + "id": "bioregistry.epd.miriam", + "name": "EPD", + "prefix": "epd", + "sameas": "bioregistry.epd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://epd.expasy.org/cgi-bin/epd/query_result.pl?out_format=NICE&Entry_0=$1" + }, + "bioregistry.epd.n2t": { + "authority": "n2t", + "homepage": "http://epd.vital-it.ch/", + "id": "bioregistry.epd.n2t", + "name": "EPD at Swiss Institute of Bioinformatics", + "prefix": "epd", + "sameas": "bioregistry.epd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://epd.vital-it.ch/cgi-bin/query_result.pl?out_format=NICE&Entry_0=$1" + }, + "bioregistry.epd.uniprot": { + "authority": "uniprot", + "homepage": "https://www.peptracker.com/epd/analytics/", + "id": "bioregistry.epd.uniprot", + "name": "Encyclopedia of Proteome Dynamics", + "prefix": "DB-0205", + "sameas": "bioregistry.epd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.peptracker.com/epd/analytics/?protein_id=$1" + }, + "bioregistry.erm": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.erm", + "name": "European Registry of Materials Identifier", + "prefix": "erm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://nanocommons.github.io/identifiers/registry#$1" + }, + "bioregistry.erm.miriam": { + "authority": "miriam", + "homepage": "https://nanocommons.github.io/identifiers/", + "id": "bioregistry.erm.miriam", + "name": "European Registry of Materials", + "prefix": "erm", + "sameas": "bioregistry.erm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://nanocommons.github.io/identifiers/registry#$1" + }, + "bioregistry.erm.n2t": { + "authority": "n2t", + "homepage": "https://nanocommons.github.io/identifiers/", + "id": "bioregistry.erm.n2t", + "name": "European Registry of Materials", + "prefix": "erm", + "sameas": "bioregistry.erm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://nanocommons.github.io/identifiers/registry#$1" + }, + "bioregistry.eropmoscow": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.eropmoscow", + "name": "Endogenous Regulatory OligoPeptide knowledgebase-Moscow", + "prefix": "eropmoscow", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://erop.inbi.ras.ru/result2.php?PepName=$1" + }, + "bioregistry.eropmoscow.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://erop.inbi.ras.ru", + "id": "bioregistry.eropmoscow.prefixcommons", + "name": "Endogenous Regulatory OligoPeptide knowledgebase-Moscow", + "prefix": "eropmoscow", + "sameas": "bioregistry.eropmoscow", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://erop.inbi.ras.ru/result2.php?PepName=$1" + }, + "bioregistry.erv": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.erv", + "name": "Human Endogenous Retrovirus Database", + "prefix": "erv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://herv.img.cas.cz/s/$1" + }, + "bioregistry.erv.miriam": { + "authority": "miriam", + "homepage": "https://herv.img.cas.cz/", + "id": "bioregistry.erv.miriam", + "name": "Human Endogenous Retrovirus Database", + "prefix": "erv", + "sameas": "bioregistry.erv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://herv.img.cas.cz/s/$1" + }, + "bioregistry.erv.n2t": { + "authority": "n2t", + "homepage": "https://herv.img.cas.cz/", + "id": "bioregistry.erv.n2t", + "name": "Human Endogenous Retrovirus Database", + "prefix": "erv", + "sameas": "bioregistry.erv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://herv.img.cas.cz/s/$1" + }, + "bioregistry.esldb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.esldb", + "name": "eukaryotic Subcellular Localization database", + "prefix": "esldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://gpcr.biocomp.unibo.it/cgi-bin/predictors/esldb/dettagli.cgi?codice=$1" + }, + "bioregistry.esldb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://gpcr.biocomp.unibo.it/esldb", + "id": "bioregistry.esldb.prefixcommons", + "name": "eukaryotic Subcellular Localization database", + "prefix": "esldb", + "sameas": "bioregistry.esldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://gpcr.biocomp.unibo.it/cgi-bin/predictors/esldb/dettagli.cgi?codice=$1" + }, + "bioregistry.estdab": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.estdab", + "name": "European Searchable Tumour Line Database", + "prefix": "estdab", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/cgi-bin/ipd/estdab/print_cell.cgi?$1" + }, + "bioregistry.estdab.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ebi.ac.uk/ipd/estdab/", + "id": "bioregistry.estdab.cellosaurus", + "name": "European Searchable Tumour Line Database", + "prefix": "ESTDAB", + "sameas": "bioregistry.estdab", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/cgi-bin/ipd/estdab/print_cell.cgi?$1" + }, + "bioregistry.eu89h": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.eu89h", + "name": "JRC Data Catalogue", + "prefix": "eu89h", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://data.europa.eu/89h/$1" + }, + "bioregistry.eu89h.miriam": { + "authority": "miriam", + "homepage": "http://data.jrc.ec.europa.eu/", + "id": "bioregistry.eu89h.miriam", + "name": "JRC Data Catalogue", + "prefix": "eu89h", + "sameas": "bioregistry.eu89h", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://data.europa.eu/89h/$1" + }, + "bioregistry.eu89h.n2t": { + "authority": "n2t", + "homepage": "http://data.jrc.ec.europa.eu/", + "id": "bioregistry.eu89h.n2t", + "name": "JRC Data Catalogue", + "prefix": "eu89h", + "sameas": "bioregistry.eu89h", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://data.europa.eu/89h/$1" + }, + "bioregistry.euclinicaltrials": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.euclinicaltrials", + "name": "EU Clinical Trials at European Medicines Agency", + "prefix": "euclinicaltrials", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.clinicaltrialsregister.eu/ctr-search/search?query=$1" + }, + "bioregistry.euclinicaltrials.miriam": { + "authority": "miriam", + "homepage": "https://www.clinicaltrialsregister.eu/", + "id": "bioregistry.euclinicaltrials.miriam", + "name": "EU Clinical Trials", + "prefix": "euclinicaltrials", + "sameas": "bioregistry.euclinicaltrials", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.clinicaltrialsregister.eu/ctr-search/search?query=$1" + }, + "bioregistry.euclinicaltrials.n2t": { + "authority": "n2t", + "homepage": "https://www.clinicaltrialsregister.eu/", + "id": "bioregistry.euclinicaltrials.n2t", + "name": "EU Clinical Trials at European Medicines Agency", + "prefix": "euclinicaltrials", + "sameas": "bioregistry.euclinicaltrials", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.clinicaltrialsregister.eu/ctr-search/search?query=$1" + }, + "bioregistry.eugenes": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.eugenes", + "name": "Eukaryotic Genes", + "prefix": "eugenes", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://eugenes.org:7072/.bin/fbidq.html?$1" + }, + "bioregistry.eugenes.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://eugenes.org/", + "id": "bioregistry.eugenes.prefixcommons", + "name": "Eukaryotic Genes", + "prefix": "eugenes", + "sameas": "bioregistry.eugenes", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://eugenes.org:7072/.bin/fbidq.html?$1" + }, + "bioregistry.ev": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ev", + "name": "eVOC (Expressed Sequence Annotation for Humans)", + "prefix": "ev", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "anatomy and morphology" + ], + "uri_format": "http://www.evocontology.org/site/Main/BrowseEvoc?x_termid=$1" + }, + "bioregistry.ev.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.evocontology.org/", + "id": "bioregistry.ev.prefixcommons", + "name": "eVOC (Expressed Sequence Annotation for Humans)", + "prefix": "evoc", + "sameas": "bioregistry.ev", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "anatomy and morphology" + ], + "uri_format": "http://www.evocontology.org/site/Main/BrowseEvoc?x_termid=$1" + }, + "bioregistry.exac.gene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.exac.gene", + "name": "ExAC Gene at Exome Aggregation Consortium", + "prefix": "exac.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://exac.broadinstitute.org/gene/$1" + }, + "bioregistry.exac.gene.miriam": { + "authority": "miriam", + "homepage": "http://exac.broadinstitute.org/", + "id": "bioregistry.exac.gene.miriam", + "name": "ExAC Gene", + "prefix": "exac.gene", + "sameas": "bioregistry.exac.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://exac.broadinstitute.org/gene/$1" + }, + "bioregistry.exac.gene.n2t": { + "authority": "n2t", + "homepage": "http://exac.broadinstitute.org/", + "id": "bioregistry.exac.gene.n2t", + "name": "ExAC Gene at Exome Aggregation Consortium", + "prefix": "exac.gene", + "sameas": "bioregistry.exac.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://exac.broadinstitute.org/gene/$1" + }, + "bioregistry.exac.transcript": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.exac.transcript", + "name": "ExAC Transcript at Exome Aggregation Consortium", + "prefix": "exac.transcript", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://exac.broadinstitute.org/transcript/$1" + }, + "bioregistry.exac.transcript.miriam": { + "authority": "miriam", + "homepage": "http://exac.broadinstitute.org/", + "id": "bioregistry.exac.transcript.miriam", + "name": "ExAC Transcript", + "prefix": "exac.transcript", + "sameas": "bioregistry.exac.transcript", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://exac.broadinstitute.org/transcript/$1" + }, + "bioregistry.exac.transcript.n2t": { + "authority": "n2t", + "homepage": "http://exac.broadinstitute.org/", + "id": "bioregistry.exac.transcript.n2t", + "name": "ExAC Transcript at Exome Aggregation Consortium", + "prefix": "exac.transcript", + "sameas": "bioregistry.exac.transcript", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://exac.broadinstitute.org/transcript/$1" + }, + "bioregistry.exac.variant": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.exac.variant", + "name": "ExAC Variant at Exome Aggregation Consortium", + "prefix": "exac.variant", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://exac.broadinstitute.org/variant/$1" + }, + "bioregistry.exac.variant.miriam": { + "authority": "miriam", + "homepage": "http://exac.broadinstitute.org/", + "id": "bioregistry.exac.variant.miriam", + "name": "ExAC Variant", + "prefix": "exac.variant", + "sameas": "bioregistry.exac.variant", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://exac.broadinstitute.org/variant/$1" + }, + "bioregistry.exac.variant.n2t": { + "authority": "n2t", + "homepage": "http://exac.broadinstitute.org/", + "id": "bioregistry.exac.variant.n2t", + "name": "ExAC Variant at Exome Aggregation Consortium", + "prefix": "exac.variant", + "sameas": "bioregistry.exac.variant", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://exac.broadinstitute.org/variant/$1" + }, + "bioregistry.exo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.exo", + "name": "Exposure ontology (ExO)", + "prefix": "exo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/ExO_$1" + }, + "bioregistry.exo.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.exo.biolink", + "name": null, + "prefix": "ExO", + "sameas": "bioregistry.exo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/ExO_$1" + }, + "bioregistry.fabio": { + "authority": "bioregistry", + "homepage": "https://github.com/sparontologies/fabio", + "id": "bioregistry.fabio", + "name": "FaBiO, the FRBR-aligned Bibliographic Ontology", + "prefix": "fabio", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/spar/fabio/$1" + }, + "bioregistry.fabio.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.fabio.biolink", + "name": null, + "prefix": "fabio", + "sameas": "bioregistry.fabio", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/spar/fabio/$1" + }, + "bioregistry.facebase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.facebase", + "name": "FaceBase Data Repository", + "prefix": "facebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.facebase.org/data/record/#1/isa:dataset/accession=$1" + }, + "bioregistry.facebase.miriam": { + "authority": "miriam", + "homepage": "https://www.facebase.org", + "id": "bioregistry.facebase.miriam", + "name": "FaceBase Data Repository", + "prefix": "facebase", + "sameas": "bioregistry.facebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.facebase.org/data/record/#1/isa:dataset/accession=$1" + }, + "bioregistry.facebase.n2t": { + "authority": "n2t", + "homepage": "https://www.facebase.org", + "id": "bioregistry.facebase.n2t", + "name": "FaceBase Data Repository", + "prefix": "facebase", + "sameas": "bioregistry.facebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.facebase.org/data/record/#1/isa:dataset/accession=$1" + }, + "bioregistry.fairsharing": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.fairsharing", + "name": "FAIRSharing at University of Oxford", + "prefix": "fairsharing", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://fairsharing.org/$1" + }, + "bioregistry.fairsharing.miriam": { + "authority": "miriam", + "homepage": "https://fairsharing.org/", + "id": "bioregistry.fairsharing.miriam", + "name": "FAIRsharing", + "prefix": "fairsharing", + "sameas": "bioregistry.fairsharing", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://fairsharing.org/$1" + }, + "bioregistry.fairsharing.n2t": { + "authority": "n2t", + "homepage": "https://fairsharing.org/", + "id": "bioregistry.fairsharing.n2t", + "name": "FAIRSharing at University of Oxford", + "prefix": "fairsharing", + "sameas": "bioregistry.fairsharing", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://fairsharing.org/$1" + }, + "bioregistry.faldo": { + "authority": "bioregistry", + "homepage": "http://biohackathon.org/resource/faldo", + "id": "bioregistry.faldo", + "name": "Feature Annotation Location Description Ontology ", + "prefix": "faldo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://biohackathon.org/resource/faldo#$1" + }, + "bioregistry.faldo.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.faldo.biocontext", + "name": null, + "prefix": "faldo", + "sameas": "bioregistry.faldo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://biohackathon.org/resource/faldo#$1" + }, + "bioregistry.fbbt": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.fbbt", + "name": "Drosophila Gross Anatomy Ontology", + "prefix": "fbbt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology", + "anatomy and morphology" + ], + "uri_format": "http://flybase.org/cgi-bin/fbcvq.html?query=FBbt:$1" + }, + "bioregistry.fbbt.go": { + "authority": "go", + "homepage": "http://flybase.org/", + "id": "bioregistry.fbbt.go", + "name": "Drosophila gross anatomy", + "prefix": "FBbt", + "sameas": "bioregistry.fbbt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology", + "anatomy and morphology" + ], + "uri_format": "http://flybase.org/cgi-bin/fbcvq.html?query=FBbt:$1" + }, + "bioregistry.fbol": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.fbol", + "name": "International Fungal Working Group Fungal Barcoding.", + "prefix": "fbol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.fungalbarcoding.org/BioloMICS.aspx?Table=Fungal barcodes&Rec=$1&Fields=All&ExactMatch=T" + }, + "bioregistry.fbol.miriam": { + "authority": "miriam", + "homepage": "http://www.fungalbarcoding.org/", + "id": "bioregistry.fbol.miriam", + "name": "Fungal Barcode", + "prefix": "fbol", + "sameas": "bioregistry.fbol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.fungalbarcoding.org/BioloMICS.aspx?Table=Fungal barcodes&Rec=$1&Fields=All&ExactMatch=T" + }, + "bioregistry.fbol.n2t": { + "authority": "n2t", + "homepage": "http://www.fungalbarcoding.org/", + "id": "bioregistry.fbol.n2t", + "name": "Fungal Barcode at Fungal Biodiversity Centre", + "prefix": "fbol", + "sameas": "bioregistry.fbol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.fungalbarcoding.org/BioloMICS.aspx?Table=Fungal barcodes&Rec=$1&Fields=All&ExactMatch=T" + }, + "bioregistry.fcb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.fcb", + "name": "the FAIR Cookbook", + "prefix": "fcb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/faircookbook/$1" + }, + "bioregistry.fcb.miriam": { + "authority": "miriam", + "homepage": "https://w3id.org", + "id": "bioregistry.fcb.miriam", + "name": "the FAIR Cookbook", + "prefix": "fcb", + "sameas": "bioregistry.fcb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/faircookbook/$1" + }, + "bioregistry.fcsfree": { + "authority": "bioregistry", + "homepage": "https://fcs-free.org", + "id": "bioregistry.fcsfree", + "name": "Fetal Calf Serum-Free Database", + "prefix": "fcsfree", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://fcs-free.org/fcs-database?$1" + }, + "bioregistry.fcsfree.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://fcs-free.org/", + "id": "bioregistry.fcsfree.cellosaurus", + "name": "Fetal Calf Serum-Free Database", + "prefix": "FCS-free", + "sameas": "bioregistry.fcsfree", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://fcs-free.org/fcs-database?$1" + }, + "bioregistry.fishbase.species": { + "authority": "bioregistry", + "homepage": "http://fishbase.org", + "id": "bioregistry.fishbase.species", + "name": "FishBase species ID", + "prefix": "fishbase.species", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.fishbase.ca/summary/$1" + }, + "bioregistry.fishbase.species.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.fishbase.species.wikidata", + "name": "FishBase species ID", + "prefix": "P938", + "sameas": "bioregistry.fishbase.species", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.fishbase.ca/summary/$1" + }, + "bioregistry.flowrepository": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.flowrepository", + "name": "FlowRepository", + "prefix": "flowrepository", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://flowrepository.org/id/$1" + }, + "bioregistry.flowrepository.miriam": { + "authority": "miriam", + "homepage": "https://flowrepository.org/", + "id": "bioregistry.flowrepository.miriam", + "name": "FlowRepository", + "prefix": "flowrepository", + "sameas": "bioregistry.flowrepository", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://flowrepository.org/id/$1" + }, + "bioregistry.flowrepository.n2t": { + "authority": "n2t", + "homepage": "https://flowrepository.org/", + "id": "bioregistry.flowrepository.n2t", + "name": "FlowRepository", + "prefix": "flowrepository", + "sameas": "bioregistry.flowrepository", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://flowrepository.org/id/$1" + }, + "bioregistry.flybase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.flybase", + "name": "Database of Genetic and molecular data of Drosophila.", + "prefix": "flybase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "anatomy and morphology" + ], + "uri_format": "https://www.alliancegenome.org/gene/FB:$1" + }, + "bioregistry.flybase.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.flybase.biocontext", + "name": null, + "prefix": "FlyBase", + "sameas": "bioregistry.flybase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "anatomy and morphology" + ], + "uri_format": "http://flybase.org/reports/$1" + }, + "bioregistry.flybase.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://flybase.org", + "id": "bioregistry.flybase.cellosaurus", + "name": "Drosophila genome database", + "prefix": "FlyBase", + "sameas": "bioregistry.flybase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "anatomy and morphology" + ], + "uri_format": "https://flybase.org/reports/$1.html" + }, + "bioregistry.flybase.go": { + "authority": "go", + "homepage": "http://flybase.org/", + "id": "bioregistry.flybase.go", + "name": "FlyBase", + "prefix": "FB", + "sameas": "bioregistry.flybase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "anatomy and morphology" + ], + "uri_format": "http://flybase.org/reports/$1.html" + }, + "bioregistry.flybase.miriam": { + "authority": "miriam", + "homepage": "http://flybase.org/", + "id": "bioregistry.flybase.miriam", + "name": "FlyBase", + "prefix": "fb", + "sameas": "bioregistry.flybase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://flybase.org/reports/$1.html" + }, + "bioregistry.flybase.n2t": { + "authority": "n2t", + "homepage": "https://www.alliancegenome.org", + "id": "bioregistry.flybase.n2t", + "name": "FlyBase through the Alliance of Genome Resources", + "prefix": "fb", + "sameas": "bioregistry.flybase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.alliancegenome.org/gene/FB:$1" + }, + "bioregistry.flybase.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://flybase.org/", + "id": "bioregistry.flybase.prefixcommons", + "name": "Drosophila genome database", + "prefix": "flybase", + "sameas": "bioregistry.flybase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "anatomy and morphology" + ], + "uri_format": "http://flybase.org/reports/$1.html" + }, + "bioregistry.flybase.uniprot": { + "authority": "uniprot", + "homepage": "https://flybase.org/", + "id": "bioregistry.flybase.uniprot", + "name": "Drosophila genome database", + "prefix": "DB-0026", + "sameas": "bioregistry.flybase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "anatomy and morphology" + ], + "uri_format": "https://flybase.org/reports/$1.html" + }, + "bioregistry.flybase.wikidata": { + "authority": "wikidata", + "homepage": "http://flybase.org/", + "id": "bioregistry.flybase.wikidata", + "name": "FlyBase Gene ID", + "prefix": "P3852", + "sameas": "bioregistry.flybase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "anatomy and morphology" + ], + "uri_format": "http://flybase.org/reports/$1" + }, + "bioregistry.flymine.chromosome": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.flymine.chromosome", + "name": "FlyMine: An integrated database for Drosophila and Anopheles genomics", + "prefix": "flymine.chromosome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.flymine.org/release-25.0/objectDetails.do?id=$1" + }, + "bioregistry.flymine.chromosome.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.flymine.org/", + "id": "bioregistry.flymine.chromosome.prefixcommons", + "name": "FlyMine: An integrated database for Drosophila and Anopheles genomics", + "prefix": "flymine", + "sameas": "bioregistry.flymine.chromosome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.flymine.org/release-25.0/objectDetails.do?id=$1" + }, + "bioregistry.fma": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.fma", + "name": "Foundational Model of Anatomy through BioPortal", + "prefix": "fma", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "anatomy and morphology" + ], + "uri_format": "http://purl.org/sig/ont/fma/fma$1" + }, + "bioregistry.fma.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/ontologies/FMA", + "id": "bioregistry.fma.miriam", + "name": "FMA", + "prefix": "fma", + "sameas": "bioregistry.fma", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/FMA_subset/FMA:$1" + }, + "bioregistry.fma.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/FMA", + "id": "bioregistry.fma.n2t", + "name": "Foundational Model of Anatomy through BioPortal", + "prefix": "fma", + "sameas": "bioregistry.fma", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/FMA_subset/FMA:$1" + }, + "bioregistry.fma.wikidata": { + "authority": "wikidata", + "homepage": "http://www.ontobee.org/ontology/fma", + "id": "bioregistry.fma.wikidata", + "name": "Foundational Model of Anatomy ID", + "prefix": "P1402", + "sameas": "bioregistry.fma", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "anatomy and morphology" + ], + "uri_format": "http://purl.org/sig/ont/fma/fma$1" + }, + "bioregistry.foaf": { + "authority": "bioregistry", + "homepage": "http://xmlns.com/foaf/spec/", + "id": "bioregistry.foaf", + "name": "FOAF (people, organizations, groups)", + "prefix": "foaf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://xmlns.com/foaf/0.1/$1" + }, + "bioregistry.foaf.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.foaf.biocontext", + "name": null, + "prefix": "foaf", + "sameas": "bioregistry.foaf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://xmlns.com/foaf/0.1/$1" + }, + "bioregistry.foaf.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.foaf.biolink", + "name": null, + "prefix": "foaf", + "sameas": "bioregistry.foaf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://xmlns.com/foaf/0.1/$1" + }, + "bioregistry.foodb.compound": { + "authority": "bioregistry", + "homepage": "https://foodb.ca/", + "id": "bioregistry.foodb.compound", + "name": "FooDB database of food additives at University of Alberta", + "prefix": "foodb.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://foodb.ca/compounds/$1" + }, + "bioregistry.foodb.compound.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.foodb.compound.biolink", + "name": null, + "prefix": "foodb.compound", + "sameas": "bioregistry.foodb.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://foodb.ca/foods/$1" + }, + "bioregistry.foodb.compound.miriam": { + "authority": "miriam", + "homepage": "http://foodb.ca/foods", + "id": "bioregistry.foodb.compound.miriam", + "name": "FooDB Compound", + "prefix": "foodb.compound", + "sameas": "bioregistry.foodb.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://foodb.ca/compounds/$1" + }, + "bioregistry.foodb.compound.n2t": { + "authority": "n2t", + "homepage": "http://foodb.ca/foods", + "id": "bioregistry.foodb.compound.n2t", + "name": "FooDB database of food additives at University of Alberta", + "prefix": "foodb.compound", + "sameas": "bioregistry.foodb.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://foodb.ca/compounds/$1" + }, + "bioregistry.foodb.compound.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.foodb.compound.wikidata", + "name": "FooDB compound ID", + "prefix": "P8117", + "sameas": "bioregistry.foodb.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://foodb.ca/compounds/$1" + }, + "bioregistry.foodb.food": { + "authority": "bioregistry", + "homepage": "https://foodb.ca/foods", + "id": "bioregistry.foodb.food", + "name": "FooDB Food", + "prefix": "foodb.food", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://foodb.ca/compounds/$1" + }, + "bioregistry.foodb.food.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.foodb.food.biolink", + "name": null, + "prefix": "foodb.food", + "sameas": "bioregistry.foodb.food", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://foodb.ca/compounds/$1" + }, + "bioregistry.foodon": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.foodon", + "name": "FoodOn Food Ontology through OLS", + "prefix": "foodon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/foodon/terms?obo_id=FOODON:$1" + }, + "bioregistry.foodon.miriam": { + "authority": "miriam", + "homepage": "https://foodon.org", + "id": "bioregistry.foodon.miriam", + "name": "FoodOn Food Ontology", + "prefix": "foodon", + "sameas": "bioregistry.foodon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/foodon/terms?obo_id=FOODON:$1" + }, + "bioregistry.foodon.n2t": { + "authority": "n2t", + "homepage": "https://foodon.org", + "id": "bioregistry.foodon.n2t", + "name": "FoodOn Food Ontology through OLS", + "prefix": "foodon", + "sameas": "bioregistry.foodon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/foodon/terms?obo_id=FOODON:$1" + }, + "bioregistry.fossilworks.journal": { + "authority": "bioregistry", + "homepage": "http://fossilworks.org", + "id": "bioregistry.fossilworks.journal", + "name": "Fossilworks ID for this journal article", + "prefix": "fossilworks.journal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.fossilworks.org/cgi-bin/bridge.pl?a=displayReference&reference_no=$1" + }, + "bioregistry.fossilworks.journal.wikidata": { + "authority": "wikidata", + "homepage": "http://www.fossilworks.org", + "id": "bioregistry.fossilworks.journal.wikidata", + "name": "Fossilworks ID for this journal article", + "prefix": "P7720", + "sameas": "bioregistry.fossilworks.journal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.fossilworks.org/cgi-bin/bridge.pl?a=displayReference&reference_no=$1" + }, + "bioregistry.fossilworks.taxon": { + "authority": "bioregistry", + "homepage": "http://www.fossilworks.org", + "id": "bioregistry.fossilworks.taxon", + "name": "Fossilworks taxon ID", + "prefix": "fossilworks.taxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.fossilworks.org/cgi-bin/bridge.pl?a=taxonInfo&taxon_no=$1" + }, + "bioregistry.fossilworks.taxon.wikidata": { + "authority": "wikidata", + "homepage": "http://www.fossilworks.org", + "id": "bioregistry.fossilworks.taxon.wikidata", + "name": "Fossilworks taxon ID", + "prefix": "P842", + "sameas": "bioregistry.fossilworks.taxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.fossilworks.org/cgi-bin/bridge.pl?a=taxonInfo&taxon_no=$1" + }, + "bioregistry.fplx": { + "authority": "bioregistry", + "homepage": "https://sorgerlab.github.io/famplex/", + "id": "bioregistry.fplx", + "name": "FPLX through BioPortal", + "prefix": "fplx", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://sorgerlab.github.io/famplex/$1" + }, + "bioregistry.fplx.miriam": { + "authority": "miriam", + "homepage": "https://sorgerlab.github.io/famplex", + "id": "bioregistry.fplx.miriam", + "name": "FamPlex", + "prefix": "fplx", + "sameas": "bioregistry.fplx", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://sorgerlab.github.io/famplex/$1" + }, + "bioregistry.fplx.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/FPLX/", + "id": "bioregistry.fplx.n2t", + "name": "FPLX through BioPortal", + "prefix": "fplx", + "sameas": "bioregistry.fplx", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioportal.bioontology.org/ontologies/FPLX/?p=classes&conceptid=http%3A%2F%2Fpurl.obolibrary.org%2Fobo%2FFPLX%23_$1" + }, + "bioregistry.fsnp": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.fsnp", + "name": "F-SNP: a collection of functional SNPs, specifically prioritized for disease association studies", + "prefix": "fsnp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://compbio.cs.queensu.ca/cgi-bin/compbio/search/main.cgi?search_mode=id&id_type=snp_id&id_val=$1" + }, + "bioregistry.fsnp.miriam": { + "authority": "miriam", + "homepage": "http://compbio.cs.queensu.ca/F-SNP/", + "id": "bioregistry.fsnp.miriam", + "name": "F-SNP", + "prefix": "fsnp", + "sameas": "bioregistry.fsnp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://compbio.cs.queensu.ca/cgi-bin/compbio/search/main.cgi?search_mode=id&id_type=snp_id&id_val=$1" + }, + "bioregistry.fsnp.n2t": { + "authority": "n2t", + "homepage": "http://compbio.cs.queensu.ca/F-SNP/", + "id": "bioregistry.fsnp.n2t", + "name": "F-SNP at Queen's University (Canada)", + "prefix": "fsnp", + "sameas": "bioregistry.fsnp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://compbio.cs.queensu.ca/cgi-bin/compbio/search/main.cgi?search_mode=id&id_type=snp_id&id_val=$1" + }, + "bioregistry.funcbase.fly": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.funcbase.fly", + "name": "FuncBase Fly at Harvard Medical School", + "prefix": "funcbase.fly", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://func.mshri.on.ca/fly/genes/list_functional_scores/$1" + }, + "bioregistry.funcbase.fly.miriam": { + "authority": "miriam", + "homepage": "http://func.mshri.on.ca/fly", + "id": "bioregistry.funcbase.fly.miriam", + "name": "FuncBase Fly", + "prefix": "funcbase.fly", + "sameas": "bioregistry.funcbase.fly", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://func.mshri.on.ca/fly/genes/list_functional_scores/$1" + }, + "bioregistry.funcbase.fly.n2t": { + "authority": "n2t", + "homepage": "http://func.mshri.on.ca/fly", + "id": "bioregistry.funcbase.fly.n2t", + "name": "FuncBase Fly at Harvard Medical School", + "prefix": "funcbase.fly", + "sameas": "bioregistry.funcbase.fly", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://func.mshri.on.ca/fly/genes/list_functional_scores/$1" + }, + "bioregistry.funcbase.human": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.funcbase.human", + "name": "FuncBase Human at Harvard Medical School", + "prefix": "funcbase.human", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://func.mshri.on.ca/human/genes/list_functional_scores/$1" + }, + "bioregistry.funcbase.human.miriam": { + "authority": "miriam", + "homepage": "http://func.mshri.on.ca/human/", + "id": "bioregistry.funcbase.human.miriam", + "name": "FuncBase Human", + "prefix": "funcbase.human", + "sameas": "bioregistry.funcbase.human", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://func.mshri.on.ca/human/genes/list_functional_scores/$1" + }, + "bioregistry.funcbase.human.n2t": { + "authority": "n2t", + "homepage": "http://func.mshri.on.ca/human/", + "id": "bioregistry.funcbase.human.n2t", + "name": "FuncBase Human at Harvard Medical School", + "prefix": "funcbase.human", + "sameas": "bioregistry.funcbase.human", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://func.mshri.on.ca/human/genes/list_functional_scores/$1" + }, + "bioregistry.funcbase.mouse": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.funcbase.mouse", + "name": "FuncBase Mouse at Harvard Medical School", + "prefix": "funcbase.mouse", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://func.mshri.on.ca/mouse/genes/list_functional_scores/$1" + }, + "bioregistry.funcbase.mouse.miriam": { + "authority": "miriam", + "homepage": "http://func.mshri.on.ca/mouse/", + "id": "bioregistry.funcbase.mouse.miriam", + "name": "FuncBase Mouse", + "prefix": "funcbase.mouse", + "sameas": "bioregistry.funcbase.mouse", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://func.mshri.on.ca/mouse/genes/list_functional_scores/$1" + }, + "bioregistry.funcbase.mouse.n2t": { + "authority": "n2t", + "homepage": "http://func.mshri.on.ca/mouse/", + "id": "bioregistry.funcbase.mouse.n2t", + "name": "FuncBase Mouse at Harvard Medical School", + "prefix": "funcbase.mouse", + "sameas": "bioregistry.funcbase.mouse", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://func.mshri.on.ca/mouse/genes/list_functional_scores/$1" + }, + "bioregistry.funcbase.yeast": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.funcbase.yeast", + "name": "FuncBase Yeast at Harvard Medical School", + "prefix": "funcbase.yeast", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://func.mshri.on.ca/yeast/genes/list_functional_scores/$1" + }, + "bioregistry.funcbase.yeast.miriam": { + "authority": "miriam", + "homepage": "http://func.mshri.on.ca/yeast", + "id": "bioregistry.funcbase.yeast.miriam", + "name": "FuncBase Yeast", + "prefix": "funcbase.yeast", + "sameas": "bioregistry.funcbase.yeast", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://func.mshri.on.ca/yeast/genes/list_functional_scores/$1" + }, + "bioregistry.funcbase.yeast.n2t": { + "authority": "n2t", + "homepage": "http://func.mshri.on.ca/yeast", + "id": "bioregistry.funcbase.yeast.n2t", + "name": "FuncBase Yeast at Harvard Medical School", + "prefix": "funcbase.yeast", + "sameas": "bioregistry.funcbase.yeast", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://func.mshri.on.ca/yeast/genes/list_functional_scores/$1" + }, + "bioregistry.funderregistry": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.funderregistry", + "name": "FunderRegistry", + "prefix": "funderregistry", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://data.crossref.org/fundingdata/funder/10.13039/$1" + }, + "bioregistry.funderregistry.miriam": { + "authority": "miriam", + "homepage": "https://www.crossref.org/", + "id": "bioregistry.funderregistry.miriam", + "name": "FunderRegistry", + "prefix": "funderregistry", + "sameas": "bioregistry.funderregistry", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://data.crossref.org/fundingdata/funder/10.13039/$1" + }, + "bioregistry.fungidb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.fungidb", + "name": "Fungal and Oomycete genomics resource", + "prefix": "fungidb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://fungidb.org/fungidb/app/record/gene/$1" + }, + "bioregistry.fungidb.miriam": { + "authority": "miriam", + "homepage": "https://fungidb.org/fungidb", + "id": "bioregistry.fungidb.miriam", + "name": "FungiDB", + "prefix": "fungidb", + "sameas": "bioregistry.fungidb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://fungidb.org/fungidb/app/record/gene/$1" + }, + "bioregistry.fungidb.n2t": { + "authority": "n2t", + "homepage": "https://fungidb.org/fungidb", + "id": "bioregistry.fungidb.n2t", + "name": "FungiDB at University of California", + "prefix": "fungidb", + "sameas": "bioregistry.fungidb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://fungidb.org/fungidb/app/record/gene/$1" + }, + "bioregistry.fungorum": { + "authority": "bioregistry", + "homepage": "http://www.indexfungorum.org", + "id": "bioregistry.fungorum", + "name": "Index Fungorum ID", + "prefix": "fungorum", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.indexfungorum.org/names/NamesRecord.asp?RecordID=$1" + }, + "bioregistry.fungorum.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.fungorum.wikidata", + "name": "Index Fungorum ID", + "prefix": "P1391", + "sameas": "bioregistry.fungorum", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.indexfungorum.org/names/NamesRecord.asp?RecordID=$1" + }, + "bioregistry.fyeco": { + "authority": "bioregistry", + "homepage": "https://github.com/pombase/fypo", + "id": "bioregistry.fyeco", + "name": "Fission Yeast Experimental Conditions Ontology", + "prefix": "fyeco", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.pombase.org/term/$1" + }, + "bioregistry.fyeco.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.fyeco.biolink", + "name": null, + "prefix": "FYECO", + "sameas": "bioregistry.fyeco", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.pombase.org/term/$1" + }, + "bioregistry.fypo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.fypo", + "name": "Fission Yeast Phenotype Ontology (FYPO)", + "prefix": "fypo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/FYPO_$1" + }, + "bioregistry.fypo.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.fypo.biolink", + "name": null, + "prefix": "FYPO", + "sameas": "bioregistry.fypo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/FYPO_$1" + }, + "bioregistry.ga4ghdos": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ga4ghdos", + "name": "Data Object Service", + "prefix": "ga4ghdos", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dataguids.org/ga4gh/dos/v1/dataobjects/$1" + }, + "bioregistry.ga4ghdos.miriam": { + "authority": "miriam", + "homepage": "http://github.com/ga4gh/data-object-service-schemas", + "id": "bioregistry.ga4ghdos.miriam", + "name": "Data Object Service", + "prefix": "ga4ghdos", + "sameas": "bioregistry.ga4ghdos", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dataguids.org/ga4gh/dos/v1/dataobjects/$1" + }, + "bioregistry.ga4ghdos.n2t": { + "authority": "n2t", + "homepage": "http://github.com/ga4gh/data-object-service-schemas", + "id": "bioregistry.ga4ghdos.n2t", + "name": "Data Object Service", + "prefix": "ga4ghdos", + "sameas": "bioregistry.ga4ghdos", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dataguids.org/ga4gh/dos/v1/dataobjects/$1" + }, + "bioregistry.gabi": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gabi", + "name": "Network of Different Plant Genomic Research Projects", + "prefix": "gabi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "botany" + ], + "uri_format": "http://www.gabipd.org/database/cgi-bin/GreenCards.pl.cgi?BioObjectId=$1&Mode=ShowBioObject" + }, + "bioregistry.gabi.miriam": { + "authority": "miriam", + "homepage": "http://www.gabipd.org/", + "id": "bioregistry.gabi.miriam", + "name": "GABI", + "prefix": "gabi", + "sameas": "bioregistry.gabi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gabipd.org/database/cgi-bin/GreenCards.pl.cgi?BioObjectId=$1&Mode=ShowBioObject" + }, + "bioregistry.gabi.n2t": { + "authority": "n2t", + "homepage": "http://www.gabipd.org/", + "id": "bioregistry.gabi.n2t", + "name": "GABI at Max Planck", + "prefix": "gabi", + "sameas": "bioregistry.gabi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gabipd.org/database/cgi-bin/GreenCards.pl.cgi?BioObjectId=$1&Mode=ShowBioObject" + }, + "bioregistry.gabi.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.gabi.de/", + "id": "bioregistry.gabi.prefixcommons", + "name": "Network of Different Plant Genomic Research Projects", + "prefix": "gabi", + "sameas": "bioregistry.gabi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "botany" + ], + "uri_format": "http://gabi.rzpd.de/database/cgi-bin/GreenCards.pl.cgi?BioObjectId=$1&Mode=ShowBioObject" + }, + "bioregistry.gard": { + "authority": "bioregistry", + "homepage": "https://rarediseases.info.nih.gov/diseases", + "id": "bioregistry.gard", + "name": "Genetic and Rare Diseases Information Center", + "prefix": "gard", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://rarediseases.info.nih.gov/diseases/$1/index" + }, + "bioregistry.gard.wikidata": { + "authority": "wikidata", + "homepage": "https://rarediseases.info.nih.gov/diseases/", + "id": "bioregistry.gard.wikidata", + "name": "GARD rare disease ID", + "prefix": "P4317", + "sameas": "bioregistry.gard", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://rarediseases.info.nih.gov/diseases/$1/index" + }, + "bioregistry.gateway": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gateway", + "name": "Health Data Research Innovation Gateway", + "prefix": "gateway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://web.www.healthdatagateway.org/dataset/$1" + }, + "bioregistry.gateway.miriam": { + "authority": "miriam", + "homepage": "https://www.hdruk.ac.uk", + "id": "bioregistry.gateway.miriam", + "name": "gateway", + "prefix": "gateway", + "sameas": "bioregistry.gateway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://web.www.healthdatagateway.org/dataset/$1" + }, + "bioregistry.gaz": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gaz", + "name": "OBO Gazetteer ID", + "prefix": "gaz", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/GAZ_$1" + }, + "bioregistry.gaz.wikidata": { + "authority": "wikidata", + "homepage": "http://obofoundry.org/ontology/gaz", + "id": "bioregistry.gaz.wikidata", + "name": "OBO Gazetteer ID", + "prefix": "P6778", + "sameas": "bioregistry.gaz", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/GAZ_$1" + }, + "bioregistry.gbif": { + "authority": "bioregistry", + "homepage": "https://www.gbif.org/species", + "id": "bioregistry.gbif", + "name": "Global Biodiversity Information Facility", + "prefix": "gbif", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gbif.org/species/$1" + }, + "bioregistry.gbif.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.gbif.wikidata", + "name": "GBIF taxon ID", + "prefix": "P846", + "sameas": "bioregistry.gbif", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gbif.org/species/$1" + }, + "bioregistry.gcst": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gcst", + "name": "GWAS Catalog", + "prefix": "gcst", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/gwas/studies/$1" + }, + "bioregistry.gcst.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk", + "id": "bioregistry.gcst.miriam", + "name": "GWAS Catalog", + "prefix": "gcst", + "sameas": "bioregistry.gcst", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/gwas/studies/$1" + }, + "bioregistry.gcst.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/gwas/studies", + "id": "bioregistry.gcst.n2t", + "name": "GWAS Catalog", + "prefix": "gcst", + "sameas": "bioregistry.gcst", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/gwas/studies/$1" + }, + "bioregistry.gdc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gdc", + "name": "Genomic Data Commons Data Portal", + "prefix": "gdc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://portal.gdc.cancer.gov/cases/$1" + }, + "bioregistry.gdc.miriam": { + "authority": "miriam", + "homepage": "https://gdc.cancer.gov", + "id": "bioregistry.gdc.miriam", + "name": "Genomic Data Commons Data Portal", + "prefix": "gdc", + "sameas": "bioregistry.gdc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://portal.gdc.cancer.gov/cases/$1" + }, + "bioregistry.gdc.n2t": { + "authority": "n2t", + "homepage": "https://gdc.cancer.gov", + "id": "bioregistry.gdc.n2t", + "name": "Genomic Data Commons", + "prefix": "gdc", + "sameas": "bioregistry.gdc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://portal.gdc.cancer.gov/cases/$1" + }, + "bioregistry.gdsc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gdsc", + "name": "Genomics of Drug Sensitivity in Cancer Project", + "prefix": "gdsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cancerrxgene.org/translation/Drug/$1" + }, + "bioregistry.gdsc.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.cancerrxgene.org", + "id": "bioregistry.gdsc.cellosaurus", + "name": "Genomics of Drug Sensitivity in Cancer Project", + "prefix": "GDSC", + "sameas": "bioregistry.gdsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cancerrxgene.org/translation/CellLine/$1" + }, + "bioregistry.gdsc.miriam": { + "authority": "miriam", + "homepage": "https://www.cancerrxgene.org", + "id": "bioregistry.gdsc.miriam", + "name": "Genomics of Drug Sensitivity in Cancer", + "prefix": "gdsc", + "sameas": "bioregistry.gdsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cancerrxgene.org/translation/Drug/$1" + }, + "bioregistry.gdsc.n2t": { + "authority": "n2t", + "homepage": "https://www.cancerrxgene.org", + "id": "bioregistry.gdsc.n2t", + "name": "Genomics of Drug Sensitivity in Cancer", + "prefix": "gdsc", + "sameas": "bioregistry.gdsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.cancerrxgene.org/translation/Drug/$1" + }, + "bioregistry.genatlas": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.genatlas", + "name": "Genatlas at Paris Descartes University", + "prefix": "genatlas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://genatlas.medecine.univ-paris5.fr/fiche.php?symbol=$1" + }, + "bioregistry.genatlas.miriam": { + "authority": "miriam", + "homepage": "http://genatlas.medecine.univ-paris5.fr/", + "id": "bioregistry.genatlas.miriam", + "name": "Genatlas", + "prefix": "genatlas", + "sameas": "bioregistry.genatlas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://genatlas.medecine.univ-paris5.fr/fiche.php?symbol=$1" + }, + "bioregistry.genatlas.n2t": { + "authority": "n2t", + "homepage": "http://genatlas.medecine.univ-paris5.fr/", + "id": "bioregistry.genatlas.n2t", + "name": "Genatlas at Paris Descartes University", + "prefix": "genatlas", + "sameas": "bioregistry.genatlas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://genatlas.medecine.univ-paris5.fr/fiche.php?symbol=$1" + }, + "bioregistry.genatlas.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.genatlas.org/", + "id": "bioregistry.genatlas.prefixcommons", + "name": "GenAtlas: human gene database", + "prefix": "genatlas", + "sameas": "bioregistry.genatlas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://genatlas.medecine.univ-paris5.fr/fiche.php?symbol=$1" + }, + "bioregistry.genatlas.uniprot": { + "authority": "uniprot", + "homepage": "http://genatlas.medecine.univ-paris5.fr/", + "id": "bioregistry.genatlas.uniprot", + "name": "GenAtlas", + "prefix": "DB-0027", + "sameas": "bioregistry.genatlas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://genatlas.medecine.univ-paris5.fr/fiche.php?symbol=$1" + }, + "bioregistry.genbank": { + "authority": "bioregistry", + "homepage": "https://www.ncbi.nlm.nih.gov/genbank/", + "id": "bioregistry.genbank", + "name": "GenBank nucleotide sequence database", + "prefix": "genbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1" + }, + "bioregistry.genbank.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.genbank.biocontext", + "name": null, + "prefix": "GenBank", + "sameas": "bioregistry.genbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/nuccore/$1" + }, + "bioregistry.genbank.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/genbank/", + "id": "bioregistry.genbank.prefixcommons", + "name": "GenBank", + "prefix": "genbank", + "sameas": "bioregistry.genbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=$1" + }, + "bioregistry.genbank.uniprot": { + "authority": "uniprot", + "homepage": "https://www.ncbi.nlm.nih.gov/", + "id": "bioregistry.genbank.uniprot", + "name": "GenBank nucleotide sequence database", + "prefix": "DB-0028", + "sameas": "bioregistry.genbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1" + }, + "bioregistry.gendis": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gendis", + "name": "Genomic Distribution of structural Superfamilies", + "prefix": "gendis", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://caps.ncbs.res.in/cgi-bin/mini/databases/gendis/sf.cgi?code=$1" + }, + "bioregistry.gendis.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://caps.ncbs.res.in/gendis/home.html", + "id": "bioregistry.gendis.prefixcommons", + "name": "Genomic Distribution of structural Superfamilies", + "prefix": "gendis", + "sameas": "bioregistry.gendis", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://caps.ncbs.res.in/cgi-bin/mini/databases/gendis/sf.cgi?code=$1" + }, + "bioregistry.genecards": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.genecards", + "name": "GeneCards: human genes, protein and diseases", + "prefix": "genecards", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.genecards.org/cgi-bin/carddisp.pl?gene=$1" + }, + "bioregistry.genecards.geneloc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.genecards.geneloc", + "name": "Gene Location", + "prefix": "genecards.geneloc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://genecards.weizmann.ac.il/geneloc-bin/marker_cards.pl?id=$1" + }, + "bioregistry.genecards.geneloc.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://genecards.weizmann.ac.il/geneloc/", + "id": "bioregistry.genecards.geneloc.prefixcommons", + "name": "Gene Location", + "prefix": "geneloc", + "sameas": "bioregistry.genecards.geneloc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://genecards.weizmann.ac.il/geneloc-bin/marker_cards.pl?id=$1" + }, + "bioregistry.genecards.genenote": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.genecards.genenote", + "name": "Gene Normal Tissue Expression", + "prefix": "genecards.genenote", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://bioinfo2.weizmann.ac.il/cgi-bin/genenote/GN_results.pl?keyword_type=2_gc_id&keyword=$1&data_type=norm2&results=yes" + }, + "bioregistry.genecards.genenote.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://genecards.weizmann.ac.il/genenote/", + "id": "bioregistry.genecards.genenote.prefixcommons", + "name": "Gene Normal Tissue Expression", + "prefix": "genenote", + "sameas": "bioregistry.genecards.genenote", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://bioinfo2.weizmann.ac.il/cgi-bin/genenote/GN_results.pl?keyword_type=2_gc_id&keyword=$1&data_type=norm2&results=yes" + }, + "bioregistry.genecards.miriam": { + "authority": "miriam", + "homepage": "http://www.genecards.org/", + "id": "bioregistry.genecards.miriam", + "name": "GeneCards", + "prefix": "genecards", + "sameas": "bioregistry.genecards", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genecards.org/cgi-bin/carddisp.pl?gene=$1" + }, + "bioregistry.genecards.n2t": { + "authority": "n2t", + "homepage": "http://www.genecards.org/", + "id": "bioregistry.genecards.n2t", + "name": "GeneCards at Weizmann Institute", + "prefix": "genecards", + "sameas": "bioregistry.genecards", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genecards.org/cgi-bin/carddisp.pl?gene=$1" + }, + "bioregistry.genecards.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://bioinfo.weizmann.ac.il/genecards/", + "id": "bioregistry.genecards.prefixcommons", + "name": "GeneCards: human genes, protein and diseases", + "prefix": "genecards", + "sameas": "bioregistry.genecards", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.genecards.org/cgi-bin/carddisp.pl?gene=$1" + }, + "bioregistry.genecards.uniprot": { + "authority": "uniprot", + "homepage": "https://www.genecards.org/", + "id": "bioregistry.genecards.uniprot", + "name": "GeneCards", + "prefix": "DB-0030", + "sameas": "bioregistry.genecards", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.genecards.org/cgi-bin/carddisp.pl?gene=$1" + }, + "bioregistry.genedb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.genedb", + "name": "Curated gene database for Leishmania major and Trypanosoma brucei", + "prefix": "genedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.genedb.org/gene/$1" + }, + "bioregistry.genedb.go": { + "authority": "go", + "homepage": "http://www.genedb.org/gene/", + "id": "bioregistry.genedb.go", + "name": "GeneDB", + "prefix": "GeneDB", + "sameas": "bioregistry.genedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.genedb.org/gene/$1" + }, + "bioregistry.genedb.miriam": { + "authority": "miriam", + "homepage": "https://www.genedb.org/", + "id": "bioregistry.genedb.miriam", + "name": "GeneDB", + "prefix": "genedb", + "sameas": "bioregistry.genedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genedb.org/gene/$1" + }, + "bioregistry.genedb.n2t": { + "authority": "n2t", + "homepage": "https://www.genedb.org/", + "id": "bioregistry.genedb.n2t", + "name": "GeneDB at Sanger Institute", + "prefix": "genedb", + "sameas": "bioregistry.genedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genedb.org/gene/$1" + }, + "bioregistry.genedb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.genedb.org/", + "id": "bioregistry.genedb.prefixcommons", + "name": "GeneDB", + "prefix": "genedb", + "sameas": "bioregistry.genedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.genedb.org/gene/$1" + }, + "bioregistry.genedb.wikidata": { + "authority": "wikidata", + "homepage": "http://www.genedb.org/", + "id": "bioregistry.genedb.wikidata", + "name": "GeneDB ID", + "prefix": "P3382", + "sameas": "bioregistry.genedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://web.archive.org/web/*/https://www.genedb.org/gene/$1" + }, + "bioregistry.genefarm": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.genefarm", + "name": "Structural and functional annotation of Arabidopsis thaliana gene and protein families.", + "prefix": "genefarm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "molecular biology" + ], + "uri_format": "https://urgi.versailles.inra.fr/Genefarm/Gene/display_gene.htpl?GENE_ID=$1" + }, + "bioregistry.genefarm.miriam": { + "authority": "miriam", + "homepage": "http://urgi.versailles.inra.fr/Genefarm/", + "id": "bioregistry.genefarm.miriam", + "name": "GeneFarm", + "prefix": "genefarm", + "sameas": "bioregistry.genefarm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://urgi.versailles.inra.fr/Genefarm/Gene/display_gene.htpl?GENE_ID=$1" + }, + "bioregistry.genefarm.n2t": { + "authority": "n2t", + "homepage": "http://urgi.versailles.inra.fr/Genefarm/", + "id": "bioregistry.genefarm.n2t", + "name": "GeneFarm at Unité de Recherche en Génomique Végétale", + "prefix": "genefarm", + "sameas": "bioregistry.genefarm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://urgi.versailles.inra.fr/Genefarm/Gene/display_gene.htpl?GENE_ID=$1" + }, + "bioregistry.genefarm.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://urgi.versailles.inra.fr/Genefarm/index.htpl", + "id": "bioregistry.genefarm.prefixcommons", + "name": "Structural and functional annotation of Arabidopsis thaliana gene and protein families.", + "prefix": "genefarm", + "sameas": "bioregistry.genefarm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "molecular biology" + ], + "uri_format": "http://urgi.versailles.inra.fr/Genefarm/Gene/display_gene.htpl?GENE_ID=$1" + }, + "bioregistry.genetree": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.genetree", + "name": "GeneTree at Ensembl", + "prefix": "genetree", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.ensemblgenomes.org/id-genetree/$1" + }, + "bioregistry.genetree.miriam": { + "authority": "miriam", + "homepage": "http://www.ensembl.org/", + "id": "bioregistry.genetree.miriam", + "name": "GeneTree", + "prefix": "genetree", + "sameas": "bioregistry.genetree", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ensembl.org/Multi/GeneTree/Image?db=core;gt=$1" + }, + "bioregistry.genetree.n2t": { + "authority": "n2t", + "homepage": "http://www.ensembl.org/", + "id": "bioregistry.genetree.n2t", + "name": "GeneTree at Ensembl", + "prefix": "genetree", + "sameas": "bioregistry.genetree", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ensembl.org/Multi/GeneTree/Image?db=core;gt=$1" + }, + "bioregistry.genetree.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.genetree.prefixcommons", + "name": "Ensembl GeneTree", + "prefix": "genetree", + "sameas": "bioregistry.genetree", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ensembl.org/Multi/GeneTree/Image?db=core;gt=$1" + }, + "bioregistry.genetree.uniprot": { + "authority": "uniprot", + "homepage": "https://ensemblgenomes.org", + "id": "bioregistry.genetree.uniprot", + "name": "Ensembl GeneTree", + "prefix": "DB-0162", + "sameas": "bioregistry.genetree", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.ensemblgenomes.org/id-genetree/$1" + }, + "bioregistry.genewiki": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.genewiki", + "name": "The Gene Wiki collection of pages on human genes and proteins", + "prefix": "genewiki", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://en.wikipedia.org/wiki/$1" + }, + "bioregistry.genewiki.miriam": { + "authority": "miriam", + "homepage": "http://en.wikipedia.org/wiki/Gene_Wiki", + "id": "bioregistry.genewiki.miriam", + "name": "Gene Wiki", + "prefix": "genewiki", + "sameas": "bioregistry.genewiki", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://plugins.biogps.org/cgi-bin/wp.cgi?id=$1" + }, + "bioregistry.genewiki.n2t": { + "authority": "n2t", + "homepage": "http://en.wikipedia.org/wiki/Gene_Wiki", + "id": "bioregistry.genewiki.n2t", + "name": "Gene Wiki through BioGPS", + "prefix": "genewiki", + "sameas": "bioregistry.genewiki", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://plugins.biogps.org/cgi-bin/wp.cgi?id=$1" + }, + "bioregistry.genewiki.uniprot": { + "authority": "uniprot", + "homepage": "https://en.wikipedia.org/wiki/Portal:Gene_Wiki", + "id": "bioregistry.genewiki.uniprot", + "name": "The Gene Wiki collection of pages on human genes and proteins", + "prefix": "DB-0180", + "sameas": "bioregistry.genewiki", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://en.wikipedia.org/wiki/$1" + }, + "bioregistry.genpept": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.genpept", + "name": "GenPept at NCBI", + "prefix": "genpept", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1?report=genpept" + }, + "bioregistry.genpept.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/protein", + "id": "bioregistry.genpept.miriam", + "name": "GenPept", + "prefix": "genpept", + "sameas": "bioregistry.genpept", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1?report=genpept" + }, + "bioregistry.genpept.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/protein", + "id": "bioregistry.genpept.n2t", + "name": "GenPept at NCBI", + "prefix": "genpept", + "sameas": "bioregistry.genpept", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1?report=genpept" + }, + "bioregistry.genprop": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.genprop", + "name": "Genome Properties database at the J. Craig Venter Institute", + "prefix": "genprop", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ebi.ac.uk/interpro/genomeproperties/#$1" + }, + "bioregistry.genprop.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/interpro/genomeproperties/", + "id": "bioregistry.genprop.miriam", + "name": "Genome Properties", + "prefix": "genprop", + "sameas": "bioregistry.genprop", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/interpro/genomeproperties/#$1" + }, + "bioregistry.genprop.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/interpro/genomeproperties/", + "id": "bioregistry.genprop.n2t", + "name": "Genome Properties", + "prefix": "genprop", + "sameas": "bioregistry.genprop", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/interpro/genomeproperties/#$1" + }, + "bioregistry.genprop.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://cmr.jcvi.org/tigr-scripts/CMR/shared/GenomePropertiesHomePage.cgi", + "id": "bioregistry.genprop.prefixcommons", + "name": "Genome Properties database at the J. Craig Venter Institute", + "prefix": "jcvi.genprop", + "sameas": "bioregistry.genprop", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://cmr.jcvi.org/tigr-scripts/CMR/shared/GenomePropDefinition.cgi?prop_acc=$1" + }, + "bioregistry.geo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.geo", + "name": "Gene Expression Omnibus at NCBI", + "prefix": "geo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=$1" + }, + "bioregistry.geo.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ncbi.nlm.nih.gov/geo/", + "id": "bioregistry.geo.cellosaurus", + "name": "Gene Expression Omnibus", + "prefix": "GEO", + "sameas": "bioregistry.geo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=$1" + }, + "bioregistry.geo.go": { + "authority": "go", + "homepage": "http://www.ncbi.nlm.nih.gov/geo/", + "id": "bioregistry.geo.go", + "name": "NCBI Gene Expression Omnibus", + "prefix": "GEO", + "sameas": "bioregistry.geo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/sites/GDSbrowser?acc=$1" + }, + "bioregistry.geo.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/geo/", + "id": "bioregistry.geo.miriam", + "name": "GEO", + "prefix": "geo", + "sameas": "bioregistry.geo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=$1" + }, + "bioregistry.geo.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/geo/", + "id": "bioregistry.geo.n2t", + "name": "Gene Expression Omnibus at NCBI", + "prefix": "geo", + "sameas": "bioregistry.geo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=$1" + }, + "bioregistry.geo.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/geo/", + "id": "bioregistry.geo.prefixcommons", + "name": "Gene Expression Omnibus", + "prefix": "geo", + "sameas": "bioregistry.geo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/sites/GDSbrowser?acc=$1" + }, + "bioregistry.geogeo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.geogeo", + "name": "Geographical Entity Ontology", + "prefix": "geogeo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/$1" + }, + "bioregistry.geogeo.miriam": { + "authority": "miriam", + "homepage": "https://github.com/ufbmi", + "id": "bioregistry.geogeo.miriam", + "name": "Geographical Entity Ontology", + "prefix": "geogeo", + "sameas": "bioregistry.geogeo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/$1" + }, + "bioregistry.giardiadb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.giardiadb", + "name": "GiardiaDB at EuPathDB", + "prefix": "giardiadb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics" + ], + "uri_format": "https://giardiadb.org/giardiadb/app/record/gene/$1" + }, + "bioregistry.giardiadb.miriam": { + "authority": "miriam", + "homepage": "https://giardiadb.org/giardiadb/", + "id": "bioregistry.giardiadb.miriam", + "name": "GiardiaDB", + "prefix": "giardiadb", + "sameas": "bioregistry.giardiadb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://giardiadb.org/giardiadb/app/record/gene/$1" + }, + "bioregistry.giardiadb.n2t": { + "authority": "n2t", + "homepage": "https://giardiadb.org/giardiadb/", + "id": "bioregistry.giardiadb.n2t", + "name": "GiardiaDB at EuPathDB", + "prefix": "giardiadb", + "sameas": "bioregistry.giardiadb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://giardiadb.org/giardiadb/app/record/gene/$1" + }, + "bioregistry.giardiadb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://giardiadb.org", + "id": "bioregistry.giardiadb.prefixcommons", + "name": "GiardiaDB", + "prefix": "giardiadb", + "sameas": "bioregistry.giardiadb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics" + ], + "uri_format": "http://giardiadb.org/giardiadb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&primary_key=$1" + }, + "bioregistry.github": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.github", + "name": "github", + "prefix": "github", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://github.com/$1" + }, + "bioregistry.github.miriam": { + "authority": "miriam", + "homepage": "https://github.com/", + "id": "bioregistry.github.miriam", + "name": "github", + "prefix": "github", + "sameas": "bioregistry.github", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://github.com/$1" + }, + "bioregistry.gitlab": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gitlab", + "name": "GitLab", + "prefix": "gitlab", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://gitlab.com/$1" + }, + "bioregistry.gitlab.miriam": { + "authority": "miriam", + "homepage": "https://gitlab.com/", + "id": "bioregistry.gitlab.miriam", + "name": "GitLab", + "prefix": "gitlab", + "sameas": "bioregistry.gitlab", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://gitlab.com/$1" + }, + "bioregistry.glida.gpcr": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.glida.gpcr", + "name": "GLIDA GPCR at Kyoto University", + "prefix": "glida.gpcr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/gpcr_information.php?id=$1" + }, + "bioregistry.glida.gpcr.miriam": { + "authority": "miriam", + "homepage": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/", + "id": "bioregistry.glida.gpcr.miriam", + "name": "GLIDA GPCR", + "prefix": "glida.gpcr", + "sameas": "bioregistry.glida.gpcr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/gpcr_information.php?id=$1" + }, + "bioregistry.glida.gpcr.n2t": { + "authority": "n2t", + "homepage": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/", + "id": "bioregistry.glida.gpcr.n2t", + "name": "GLIDA GPCR at Kyoto University", + "prefix": "glida.gpcr", + "sameas": "bioregistry.glida.gpcr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/gpcr_information.php?id=$1" + }, + "bioregistry.glida.ligand": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.glida.ligand", + "name": "GLIDA Ligand at Kyoto University", + "prefix": "glida.ligand", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/ligand_information.php?id=$1" + }, + "bioregistry.glida.ligand.miriam": { + "authority": "miriam", + "homepage": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/", + "id": "bioregistry.glida.ligand.miriam", + "name": "GLIDA Ligand", + "prefix": "glida.ligand", + "sameas": "bioregistry.glida.ligand", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/ligand_information.php?id=$1" + }, + "bioregistry.glida.ligand.n2t": { + "authority": "n2t", + "homepage": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/", + "id": "bioregistry.glida.ligand.n2t", + "name": "GLIDA Ligand at Kyoto University", + "prefix": "glida.ligand", + "sameas": "bioregistry.glida.ligand", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/ligand_information.php?id=$1" + }, + "bioregistry.glycoepitope": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.glycoepitope", + "name": "GlycoEpitope at Ritsumeikan University", + "prefix": "glycoepitope", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.glycoepitope.jp/epitopes/$1" + }, + "bioregistry.glycoepitope.miriam": { + "authority": "miriam", + "homepage": "https://www.glycoepitope.jp/epitopes/", + "id": "bioregistry.glycoepitope.miriam", + "name": "GlycoEpitope", + "prefix": "glycoepitope", + "sameas": "bioregistry.glycoepitope", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.glycoepitope.jp/epitopes/$1" + }, + "bioregistry.glycoepitope.n2t": { + "authority": "n2t", + "homepage": "https://www.glycoepitope.jp/epitopes/", + "id": "bioregistry.glycoepitope.n2t", + "name": "GlycoEpitope at Ritsumeikan University", + "prefix": "glycoepitope", + "sameas": "bioregistry.glycoepitope", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.glycoepitope.jp/epitopes/$1" + }, + "bioregistry.glycomapsdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.glycomapsdb", + "name": "GlycoMapsDB", + "prefix": "glycomapsdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.glycosciences.de/modeling/glycomapsdb/showdetails.php?mapid=$1" + }, + "bioregistry.glycomapsdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.glycosciences.de/modeling/glycomapsdb/", + "id": "bioregistry.glycomapsdb.prefixcommons", + "name": "GlycoMapsDB", + "prefix": "glycomapsdb", + "sameas": "bioregistry.glycomapsdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.glycosciences.de/modeling/glycomapsdb/showdetails.php?mapid=$1" + }, + "bioregistry.glycomedb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.glycomedb", + "name": "GlycomeDB carbohydrate structure database", + "prefix": "glycomedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://glytoucan.org/Structures/Glycans/$1" + }, + "bioregistry.glycomedb.miriam": { + "authority": "miriam", + "homepage": "https://glytoucan.org/", + "id": "bioregistry.glycomedb.miriam", + "name": "GlycomeDB", + "prefix": "glycomedb", + "sameas": "bioregistry.glycomedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://glytoucan.org/Structures/Glycans/$1" + }, + "bioregistry.glycomedb.n2t": { + "authority": "n2t", + "homepage": "https://glytoucan.org/", + "id": "bioregistry.glycomedb.n2t", + "name": "GlycomeDB carbohydrate structure database", + "prefix": "glycomedb", + "sameas": "bioregistry.glycomedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://glytoucan.org/Structures/Glycans/$1" + }, + "bioregistry.glycomedb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.glycome-db.org/showMenu.action?major=database", + "id": "bioregistry.glycomedb.prefixcommons", + "name": "GlycomeDB Carbohydrate Structure Database", + "prefix": "glycomedb", + "sameas": "bioregistry.glycomedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.glycome-db.org/database/showStructure.action?glycomeId=$1" + }, + "bioregistry.glyconavi": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.glyconavi", + "name": "GlycoNAVI", + "prefix": "glyconavi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://glyconavi.org/hub/?id=$1" + }, + "bioregistry.glyconavi.miriam": { + "authority": "miriam", + "homepage": "https://www.noguchi.or.jp/", + "id": "bioregistry.glyconavi.miriam", + "name": "GlycoNAVI", + "prefix": "glyconavi", + "sameas": "bioregistry.glyconavi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://glyconavi.org/hub/?id=$1" + }, + "bioregistry.glycopost": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.glycopost", + "name": "GlycoPOST", + "prefix": "glycopost", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://glycopost.glycosmos.org/entry/$1" + }, + "bioregistry.glycopost.miriam": { + "authority": "miriam", + "homepage": "https://glycopost.glycosmos.org", + "id": "bioregistry.glycopost.miriam", + "name": "GlycoPOST", + "prefix": "glycopost", + "sameas": "bioregistry.glycopost", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://glycopost.glycosmos.org/entry/$1" + }, + "bioregistry.glygen": { + "authority": "bioregistry", + "homepage": "https://glygen.org/glycan/", + "id": "bioregistry.glygen", + "name": "GlyGen: Computational and Informatics Resources for Glycoscience", + "prefix": "glygen", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://glygen.org/protein/$1#glycosylation" + }, + "bioregistry.glygen.uniprot": { + "authority": "uniprot", + "homepage": "https://glygen.org", + "id": "bioregistry.glygen.uniprot", + "name": "GlyGen", + "prefix": "DB-0254", + "sameas": "bioregistry.glygen", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://glygen.org/protein/$1#glycosylation" + }, + "bioregistry.glytoucan": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.glytoucan", + "name": "The Glycan Repository", + "prefix": "glytoucan", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://glytoucan.org/Structures/Glycans/$1" + }, + "bioregistry.glytoucan.miriam": { + "authority": "miriam", + "homepage": "https://glytoucan.org", + "id": "bioregistry.glytoucan.miriam", + "name": "GlyTouCan", + "prefix": "glytoucan", + "sameas": "bioregistry.glytoucan", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://glytoucan.org/Structures/Glycans/$1" + }, + "bioregistry.glytoucan.n2t": { + "authority": "n2t", + "homepage": "https://glytoucan.org", + "id": "bioregistry.glytoucan.n2t", + "name": "The Glycan Repository", + "prefix": "glytoucan", + "sameas": "bioregistry.glytoucan", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://glytoucan.org/Structures/Glycans/$1" + }, + "bioregistry.gmd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gmd", + "name": "Golm Metabolome Database at Max Planck Institute of Molecular Plant Physiology", + "prefix": "gmd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gmd.mpimp-golm.mpg.de/Metabolites/$1.aspx" + }, + "bioregistry.gmd.analyte": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gmd.analyte", + "name": "Golm Metabolome Database (Analyte) at Max Planck Institute of Molecular Plant Physiology", + "prefix": "gmd.analyte", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gmd.mpimp-golm.mpg.de/Analytes/$1" + }, + "bioregistry.gmd.analyte.miriam": { + "authority": "miriam", + "homepage": "http://gmd.mpimp-golm.mpg.de/", + "id": "bioregistry.gmd.analyte.miriam", + "name": "Golm Metabolome Database Analyte", + "prefix": "gmd.analyte", + "sameas": "bioregistry.gmd.analyte", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gmd.mpimp-golm.mpg.de/Analytes/$1" + }, + "bioregistry.gmd.analyte.n2t": { + "authority": "n2t", + "homepage": "http://gmd.mpimp-golm.mpg.de/", + "id": "bioregistry.gmd.analyte.n2t", + "name": "Golm Metabolome Database (Analyte) at Max Planck Institute of Molecular Plant Physiology", + "prefix": "gmd.analyte", + "sameas": "bioregistry.gmd.analyte", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gmd.mpimp-golm.mpg.de/Analytes/$1" + }, + "bioregistry.gmd.gcms": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gmd.gcms", + "name": "Golm Metabolome Database (GC-MS Spectra) at Max Planck Institute of Molecular Plant Physiology", + "prefix": "gmd.gcms", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gmd.mpimp-golm.mpg.de/Spectrums/$1" + }, + "bioregistry.gmd.gcms.miriam": { + "authority": "miriam", + "homepage": "http://gmd.mpimp-golm.mpg.de/", + "id": "bioregistry.gmd.gcms.miriam", + "name": "Golm Metabolome Database GC-MS spectra", + "prefix": "gmd.gcms", + "sameas": "bioregistry.gmd.gcms", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gmd.mpimp-golm.mpg.de/Spectrums/$1" + }, + "bioregistry.gmd.gcms.n2t": { + "authority": "n2t", + "homepage": "http://gmd.mpimp-golm.mpg.de/", + "id": "bioregistry.gmd.gcms.n2t", + "name": "Golm Metabolome Database (GC-MS Spectra) at Max Planck Institute of Molecular Plant Physiology", + "prefix": "gmd.gcms", + "sameas": "bioregistry.gmd.gcms", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gmd.mpimp-golm.mpg.de/Spectrums/$1" + }, + "bioregistry.gmd.miriam": { + "authority": "miriam", + "homepage": "http://gmd.mpimp-golm.mpg.de/", + "id": "bioregistry.gmd.miriam", + "name": "Golm Metabolome Database", + "prefix": "gmd", + "sameas": "bioregistry.gmd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gmd.mpimp-golm.mpg.de/Metabolites/$1.aspx" + }, + "bioregistry.gmd.n2t": { + "authority": "n2t", + "homepage": "http://gmd.mpimp-golm.mpg.de/", + "id": "bioregistry.gmd.n2t", + "name": "Golm Metabolome Database at Max Planck Institute of Molecular Plant Physiology", + "prefix": "gmd", + "sameas": "bioregistry.gmd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gmd.mpimp-golm.mpg.de/Metabolites/$1.aspx" + }, + "bioregistry.gmd.profile": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gmd.profile", + "name": "Golm Metabolome Database (Profile) at Max Planck Institute of Molecular Plant Physiology", + "prefix": "gmd.profile", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gmd.mpimp-golm.mpg.de/profile/default.aspx?XemlId=$1" + }, + "bioregistry.gmd.profile.miriam": { + "authority": "miriam", + "homepage": "http://gmd.mpimp-golm.mpg.de/", + "id": "bioregistry.gmd.profile.miriam", + "name": "Golm Metabolome Database Profile", + "prefix": "gmd.profile", + "sameas": "bioregistry.gmd.profile", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gmd.mpimp-golm.mpg.de/profile/default.aspx?XemlId=$1" + }, + "bioregistry.gmd.profile.n2t": { + "authority": "n2t", + "homepage": "http://gmd.mpimp-golm.mpg.de/", + "id": "bioregistry.gmd.profile.n2t", + "name": "Golm Metabolome Database (Profile) at Max Planck Institute of Molecular Plant Physiology", + "prefix": "gmd.profile", + "sameas": "bioregistry.gmd.profile", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gmd.mpimp-golm.mpg.de/profile/default.aspx?XemlId=$1" + }, + "bioregistry.gmd.ref": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gmd.ref", + "name": "Golm Metabolome Database (Reference Substance) at Max Planck Institute of Molecular Plant Physiology", + "prefix": "gmd.ref", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gmd.mpimp-golm.mpg.de/ReferenceSubstances/$1" + }, + "bioregistry.gmd.ref.miriam": { + "authority": "miriam", + "homepage": "http://gmd.mpimp-golm.mpg.de/", + "id": "bioregistry.gmd.ref.miriam", + "name": "Golm Metabolome Database Reference Substance", + "prefix": "gmd.ref", + "sameas": "bioregistry.gmd.ref", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gmd.mpimp-golm.mpg.de/ReferenceSubstances/$1" + }, + "bioregistry.gmd.ref.n2t": { + "authority": "n2t", + "homepage": "http://gmd.mpimp-golm.mpg.de/", + "id": "bioregistry.gmd.ref.n2t", + "name": "Golm Metabolome Database (Reference Substance) at Max Planck Institute of Molecular Plant Physiology", + "prefix": "gmd.ref", + "sameas": "bioregistry.gmd.ref", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gmd.mpimp-golm.mpg.de/ReferenceSubstances/$1" + }, + "bioregistry.gnd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gnd", + "name": "Integrated Authority File", + "prefix": "gnd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://lobid.org/gnd/$1" + }, + "bioregistry.gnd.miriam": { + "authority": "miriam", + "homepage": "https://lobid.org/", + "id": "bioregistry.gnd.miriam", + "name": "Gemeinsame Normdatei", + "prefix": "gnd", + "sameas": "bioregistry.gnd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://lobid.org/gnd/$1" + }, + "bioregistry.gnpis": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gnpis", + "name": "Genetic and Genomic Information System", + "prefix": "gnpis", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://urgi.versailles.inra.fr/gnpis/#result/term=$1" + }, + "bioregistry.gnpis.miriam": { + "authority": "miriam", + "homepage": "https://urgi.versailles.inra.fr/gnpis/", + "id": "bioregistry.gnpis.miriam", + "name": "GnpIS", + "prefix": "gnpis", + "sameas": "bioregistry.gnpis", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://urgi.versailles.inra.fr/gnpis/#result/term=$1" + }, + "bioregistry.gnpis.n2t": { + "authority": "n2t", + "homepage": "https://urgi.versailles.inra.fr/gnpis/", + "id": "bioregistry.gnpis.n2t", + "name": "GnpIS", + "prefix": "gnpis", + "sameas": "bioregistry.gnpis", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://urgi.versailles.inra.fr/gnpis/#result/term=$1" + }, + "bioregistry.go": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.go", + "name": "Gene Ontology Database identifier", + "prefix": "go", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ebi.ac.uk/QuickGO/term/$1" + }, + "bioregistry.go.gpi": { + "authority": "bioregistry", + "homepage": "http://geneontology.org/docs/gene-product-information-gpi-format/#db-object-id", + "id": "bioregistry.go.gpi", + "name": "Gene Product Information Schema", + "prefix": "go.gpi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://github.com/geneontology/go-annotation/blob/master/specs/gpad-gpi-2-0.md#$1" + }, + "bioregistry.go.gpi.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.go.gpi.biolink", + "name": null, + "prefix": "gpi", + "sameas": "bioregistry.go.gpi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://github.com/geneontology/go-annotation/blob/master/specs/gpad-gpi-2-0.md#$1" + }, + "bioregistry.go.miriam": { + "authority": "miriam", + "homepage": "http://amigo.geneontology.org/", + "id": "bioregistry.go.miriam", + "name": "Gene Ontology", + "prefix": "go", + "sameas": "bioregistry.go", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://amigo.geneontology.org/amigo/term/GO:$1" + }, + "bioregistry.go.model": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.go.model", + "name": "Gene Ontology Causal Activity Model Database", + "prefix": "go.model", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.geneontology.org/gocam/$1" + }, + "bioregistry.go.model.go": { + "authority": "go", + "homepage": "http://www.geneontology.org/gocam", + "id": "bioregistry.go.model.go", + "name": "Gene Ontology Causal Activity Model Database", + "prefix": "gomodel", + "sameas": "bioregistry.go.model", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.geneontology.org/gocam/$1" + }, + "bioregistry.go.n2t": { + "authority": "n2t", + "homepage": "http://amigo.geneontology.org/", + "id": "bioregistry.go.n2t", + "name": "AmiGO 2", + "prefix": "go", + "sameas": "bioregistry.go", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://amigo.geneontology.org/amigo/term/GO:$1" + }, + "bioregistry.go.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.geneontology.org/", + "id": "bioregistry.go.prefixcommons", + "name": "The Gene Ontology", + "prefix": "go", + "sameas": "bioregistry.go", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://amigo.geneontology.org/cgi-bin/amigo/term-details.cgi?term=GO:$1" + }, + "bioregistry.go.ref": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.go.ref", + "name": "Gene Ontology Reference at The Gene Ontology Consortium", + "prefix": "go.ref", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://github.com/geneontology/go-site/blob/master/metadata/gorefs/goref-$1.md" + }, + "bioregistry.go.ref.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.go.ref.biocontext", + "name": null, + "prefix": "GO_REF", + "sameas": "bioregistry.go.ref", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.geneontology.org/cgi-bin/references.cgi#GO_REF:$1" + }, + "bioregistry.go.ref.miriam": { + "authority": "miriam", + "homepage": "http://www.geneontology.org/cgi-bin/references.cgi", + "id": "bioregistry.go.ref.miriam", + "name": "Gene Ontology Reference", + "prefix": "go_ref", + "sameas": "bioregistry.go.ref", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://github.com/geneontology/go-site/blob/master/metadata/gorefs/goref-$1.md" + }, + "bioregistry.go.ref.n2t": { + "authority": "n2t", + "homepage": "http://www.geneontology.org/cgi-bin/references.cgi", + "id": "bioregistry.go.ref.n2t", + "name": "Gene Ontology Reference at The Gene Ontology Consortium", + "prefix": "go.ref", + "sameas": "bioregistry.go.ref", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.geneontology.org/cgi-bin/references.cgi#$1" + }, + "bioregistry.go.uniprot": { + "authority": "uniprot", + "homepage": "http://geneontology.org/", + "id": "bioregistry.go.uniprot", + "name": "Gene Ontology", + "prefix": "DB-0037", + "sameas": "bioregistry.go", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ebi.ac.uk/QuickGO/term/$1" + }, + "bioregistry.go.wikidata": { + "authority": "wikidata", + "homepage": "http://amigo.geneontology.org/", + "id": "bioregistry.go.wikidata", + "name": "Gene Ontology ID", + "prefix": "P686", + "sameas": "bioregistry.go", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://amigo.geneontology.org/amigo/term/$1" + }, + "bioregistry.goa": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.goa", + "name": "Gene Ontology Annotation Database Identifier", + "prefix": "goa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/QuickGO/GProtein?ac=$1" + }, + "bioregistry.goa.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/GOA/", + "id": "bioregistry.goa.miriam", + "name": "GOA", + "prefix": "goa", + "sameas": "bioregistry.goa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/QuickGO/GProtein?ac=$1" + }, + "bioregistry.goa.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/GOA/", + "id": "bioregistry.goa.n2t", + "name": "GOA through QuickGO", + "prefix": "goa", + "sameas": "bioregistry.goa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/QuickGO/GProtein?ac=$1" + }, + "bioregistry.goa.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/GOA", + "id": "bioregistry.goa.prefixcommons", + "name": "Gene Ontology Annotation", + "prefix": "goa", + "sameas": "bioregistry.goa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/QuickGO/GTerm?id=$1" + }, + "bioregistry.gold": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gold", + "name": "Joint Genome Institute, Genomes OnLine Database", + "prefix": "gold", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://gold.jgi.doe.gov/resolver?id=$1" + }, + "bioregistry.gold.genome": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gold.genome", + "name": "GOLD genome at Department of Energy Joint Genome Institute", + "prefix": "gold.genome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genomesonline.org/cgi-bin/GOLD/GOLDCards.cgi?goldstamp=$1" + }, + "bioregistry.gold.genome.miriam": { + "authority": "miriam", + "homepage": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", + "id": "bioregistry.gold.genome.miriam", + "name": "GOLD genome", + "prefix": "gold.genome", + "sameas": "bioregistry.gold.genome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genomesonline.org/cgi-bin/GOLD/GOLDCards.cgi?goldstamp=$1" + }, + "bioregistry.gold.genome.n2t": { + "authority": "n2t", + "homepage": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", + "id": "bioregistry.gold.genome.n2t", + "name": "GOLD genome at Department of Energy Joint Genome Institute", + "prefix": "gold.genome", + "sameas": "bioregistry.gold.genome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genomesonline.org/cgi-bin/GOLD/GOLDCards.cgi?goldstamp=$1" + }, + "bioregistry.gold.meta": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gold.meta", + "name": "GOLD metadata at Department of Energy Joint Genome Institute", + "prefix": "gold.meta", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://genomesonline.org/cgi-bin/GOLD/bin/GOLDCards.cgi?goldstamp=$1" + }, + "bioregistry.gold.meta.miriam": { + "authority": "miriam", + "homepage": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", + "id": "bioregistry.gold.meta.miriam", + "name": "GOLD metadata", + "prefix": "gold.meta", + "sameas": "bioregistry.gold.meta", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://genomesonline.org/cgi-bin/GOLD/bin/GOLDCards.cgi?goldstamp=$1" + }, + "bioregistry.gold.meta.n2t": { + "authority": "n2t", + "homepage": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", + "id": "bioregistry.gold.meta.n2t", + "name": "GOLD metadata at Department of Energy Joint Genome Institute", + "prefix": "gold.meta", + "sameas": "bioregistry.gold.meta", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://genomesonline.org/cgi-bin/GOLD/bin/GOLDCards.cgi?goldstamp=$1" + }, + "bioregistry.gold.miriam": { + "authority": "miriam", + "homepage": "https://gold.jgi.doe.gov/", + "id": "bioregistry.gold.miriam", + "name": "Genomes OnLine Database (GOLD)", + "prefix": "gold", + "sameas": "bioregistry.gold", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://gold.jgi.doe.gov/resolver?id=$1" + }, + "bioregistry.gold.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.genomesonline.org/", + "id": "bioregistry.gold.prefixcommons", + "name": "Genomes Online Database", + "prefix": "gold", + "sameas": "bioregistry.gold", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://genomesonline.org/cgi-bin/GOLD/bin/GOLDCards.cgi?goldstamp=$1" + }, + "bioregistry.goldbook": { + "authority": "bioregistry", + "homepage": "https://goldbook.iupac.org", + "id": "bioregistry.goldbook", + "name": "IUPAC Gold Book Compendium of Chemical Terminology", + "prefix": "goldbook", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dx.doi.org/10.1351/goldbook.$1" + }, + "bioregistry.goldbook.wikidata": { + "authority": "wikidata", + "homepage": "http://goldbook.iupac.org/", + "id": "bioregistry.goldbook.wikidata", + "name": "IUPAC Gold Book ID", + "prefix": "P4732", + "sameas": "bioregistry.goldbook", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://dx.doi.org/10.1351/goldbook.$1" + }, + "bioregistry.google.book": { + "authority": "bioregistry", + "homepage": "https://books.google.com", + "id": "bioregistry.google.book", + "name": "Google Books ID", + "prefix": "google.book", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://books.google.com/books?id=$1" + }, + "bioregistry.google.book.wikidata": { + "authority": "wikidata", + "homepage": "https://books.google.com/books", + "id": "bioregistry.google.book.wikidata", + "name": "Google Books ID", + "prefix": "P675", + "sameas": "bioregistry.google.book", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://books.google.com/books?id=$1" + }, + "bioregistry.google.patent": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.google.patent", + "name": "Google Patents at Google", + "prefix": "google.patent", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.google.com/patents/$1" + }, + "bioregistry.google.patent.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://patents.google.com", + "id": "bioregistry.google.patent.cellosaurus", + "name": "Google Patents", + "prefix": "Patent", + "sameas": "bioregistry.google.patent", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://patents.google.com/patent/$1" + }, + "bioregistry.google.patent.miriam": { + "authority": "miriam", + "homepage": "https://www.google.com/patents/", + "id": "bioregistry.google.patent.miriam", + "name": "Google Patents", + "prefix": "google.patent", + "sameas": "bioregistry.google.patent", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.google.com/patents/$1" + }, + "bioregistry.google.patent.n2t": { + "authority": "n2t", + "homepage": "https://www.google.com/patents/", + "id": "bioregistry.google.patent.n2t", + "name": "Google Patents at Google", + "prefix": "google.patent", + "sameas": "bioregistry.google.patent", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.google.com/patents/$1" + }, + "bioregistry.google.scholar": { + "authority": "bioregistry", + "homepage": "https://scholar.google.com/", + "id": "bioregistry.google.scholar", + "name": "Google Scholar Researcher", + "prefix": "google.scholar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://scholar.google.com/citations?user=$1" + }, + "bioregistry.google.scholar.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.google.scholar.biolink", + "name": null, + "prefix": "GSID", + "sameas": "bioregistry.google.scholar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://scholar.google.com/citations?user=$1" + }, + "bioregistry.gorel": { + "authority": "bioregistry", + "homepage": "http://geneontology.org/docs/ontology-relations/", + "id": "bioregistry.gorel", + "name": "GO Extensions to OBO Relation Ontology Ontology", + "prefix": "gorel", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/GOREL_$1" + }, + "bioregistry.gorel.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.gorel.biolink", + "name": null, + "prefix": "GOREL", + "sameas": "bioregistry.gorel", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/GOREL_$1" + }, + "bioregistry.gpcrdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gpcrdb", + "name": "Information system for G protein-coupled receptors (GPCRs)", + "prefix": "gpcrdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://gpcrdb.org/protein/$1/" + }, + "bioregistry.gpcrdb.miriam": { + "authority": "miriam", + "homepage": "http://www.gpcrdb.org/", + "id": "bioregistry.gpcrdb.miriam", + "name": "GPCRDB", + "prefix": "gpcrdb", + "sameas": "bioregistry.gpcrdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gpcrdb.org/protein/$1/" + }, + "bioregistry.gpcrdb.n2t": { + "authority": "n2t", + "homepage": "http://www.gpcrdb.org/", + "id": "bioregistry.gpcrdb.n2t", + "name": "GPCRDB at Radboud University", + "prefix": "gpcrdb", + "sameas": "bioregistry.gpcrdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gpcrdb.org/protein/$1/" + }, + "bioregistry.gpcrdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.gpcr.org/7tm/", + "id": "bioregistry.gpcrdb.prefixcommons", + "name": "Information system for G protein-coupled receptors (GPCRs)", + "prefix": "gpcrdb", + "sameas": "bioregistry.gpcrdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.gpcr.org/7tm/proteins/$1" + }, + "bioregistry.gpcrdb.uniprot": { + "authority": "uniprot", + "homepage": "https://gpcrdb.org", + "id": "bioregistry.gpcrdb.uniprot", + "name": "Information system for G protein-coupled receptors (GPCRs)", + "prefix": "DB-0038", + "sameas": "bioregistry.gpcrdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://gpcrdb.org/protein/$1/" + }, + "bioregistry.gpcrnava": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gpcrnava", + "name": "GPCR Natural Variants database", + "prefix": "gpcrnava", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://nava.liacs.nl/cgi-bin/nava.py?id=$1" + }, + "bioregistry.gpcrnava.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://nava.liacs.nl/", + "id": "bioregistry.gpcrnava.prefixcommons", + "name": "GPCR Natural Variants database", + "prefix": "gnd", + "sameas": "bioregistry.gpcrnava", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://nava.liacs.nl/cgi-bin/nava.py?id=$1" + }, + "bioregistry.gpmdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gpmdb", + "name": "The Global Proteome Machine Database", + "prefix": "gpmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gpmdb.thegpm.org/~/dblist_gpmnum/gpmnum=$1" + }, + "bioregistry.gpmdb.miriam": { + "authority": "miriam", + "homepage": "http://gpmdb.thegpm.org/", + "id": "bioregistry.gpmdb.miriam", + "name": "GPMDB", + "prefix": "gpmdb", + "sameas": "bioregistry.gpmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gpmdb.thegpm.org/~/dblist_gpmnum/gpmnum=$1" + }, + "bioregistry.gpmdb.n2t": { + "authority": "n2t", + "homepage": "http://gpmdb.thegpm.org/", + "id": "bioregistry.gpmdb.n2t", + "name": "GPMDB", + "prefix": "gpmdb", + "sameas": "bioregistry.gpmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://gpmdb.thegpm.org/~/dblist_gpmnum/gpmnum=$1" + }, + "bioregistry.gramene.gene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gramene.gene", + "name": "Gramene Genes at Cold Spring Harbor", + "prefix": "gramene.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/genes/search_gene?acc=$1" + }, + "bioregistry.gramene.gene.go": { + "authority": "go", + "homepage": "http://www.gramene.org/", + "id": "bioregistry.gramene.gene.go", + "name": "Gramene", + "prefix": "GR_GENE", + "sameas": "bioregistry.gramene.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/genes/search_gene?acc=$1" + }, + "bioregistry.gramene.gene.miriam": { + "authority": "miriam", + "homepage": "http://www.gramene.org/", + "id": "bioregistry.gramene.gene.miriam", + "name": "Gramene genes", + "prefix": "gramene.gene", + "sameas": "bioregistry.gramene.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/genes/search_gene?acc=$1" + }, + "bioregistry.gramene.gene.n2t": { + "authority": "n2t", + "homepage": "http://www.gramene.org/", + "id": "bioregistry.gramene.gene.n2t", + "name": "Gramene Genes at Cold Spring Harbor", + "prefix": "gramene.gene", + "sameas": "bioregistry.gramene.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/genes/search_gene?acc=$1" + }, + "bioregistry.gramene.growthstage": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gramene.growthstage", + "name": "Gramene Growth Stage Ontology at Cold Spring Harbor", + "prefix": "gramene.growthstage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "anatomy and morphology" + ], + "uri_format": "http://www.gramene.org/db/ontology/search?id=GRO:$1" + }, + "bioregistry.gramene.growthstage.miriam": { + "authority": "miriam", + "homepage": "http://www.gramene.org/", + "id": "bioregistry.gramene.growthstage.miriam", + "name": "Gramene Growth Stage Ontology", + "prefix": "gro", + "sameas": "bioregistry.gramene.growthstage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/ontology/search?id=GRO:$1" + }, + "bioregistry.gramene.growthstage.n2t": { + "authority": "n2t", + "homepage": "http://www.gramene.org/", + "id": "bioregistry.gramene.growthstage.n2t", + "name": "Gramene Growth Stage Ontology at Cold Spring Harbor", + "prefix": "gramene.growthstage", + "sameas": "bioregistry.gramene.growthstage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/ontology/search?id=GRO:$1" + }, + "bioregistry.gramene.growthstage.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.gramene.org/plant_ontology/", + "id": "bioregistry.gramene.growthstage.prefixcommons", + "name": "Plant Ontology", + "prefix": "gramene.po", + "sameas": "bioregistry.gramene.growthstage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "anatomy and morphology" + ], + "uri_format": "http://www.gramene.org/db/ontology/search?id=$1" + }, + "bioregistry.gramene.protein": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gramene.protein", + "name": "Gramene Protein at Cold Spring Harbor", + "prefix": "gramene.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/protein/protein_search?protein_id=$1" + }, + "bioregistry.gramene.protein.go": { + "authority": "go", + "homepage": "http://www.gramene.org/", + "id": "bioregistry.gramene.protein.go", + "name": "Gramene", + "prefix": "GR_PROTEIN", + "sameas": "bioregistry.gramene.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/protein/protein_search?acc=$1" + }, + "bioregistry.gramene.protein.miriam": { + "authority": "miriam", + "homepage": "http://www.gramene.org/", + "id": "bioregistry.gramene.protein.miriam", + "name": "Gramene protein", + "prefix": "gramene.protein", + "sameas": "bioregistry.gramene.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/protein/protein_search?protein_id=$1" + }, + "bioregistry.gramene.protein.n2t": { + "authority": "n2t", + "homepage": "http://www.gramene.org/", + "id": "bioregistry.gramene.protein.n2t", + "name": "Gramene Protein at Cold Spring Harbor", + "prefix": "gramene.protein", + "sameas": "bioregistry.gramene.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/protein/protein_search?protein_id=$1" + }, + "bioregistry.gramene.qtl": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gramene.qtl", + "name": "Gramene Quantitative Trait Loci at Cold Spring Harbor", + "prefix": "gramene.qtl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/qtl/qtl_display?qtl_accession_id=$1" + }, + "bioregistry.gramene.qtl.go": { + "authority": "go", + "homepage": "http://www.gramene.org/", + "id": "bioregistry.gramene.qtl.go", + "name": "Gramene", + "prefix": "GR_QTL", + "sameas": "bioregistry.gramene.qtl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/qtl/qtl_display?qtl_accession_id=$1" + }, + "bioregistry.gramene.qtl.miriam": { + "authority": "miriam", + "homepage": "http://www.gramene.org/", + "id": "bioregistry.gramene.qtl.miriam", + "name": "Gramene QTL", + "prefix": "gramene.qtl", + "sameas": "bioregistry.gramene.qtl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/qtl/qtl_display?qtl_accession_id=$1" + }, + "bioregistry.gramene.qtl.n2t": { + "authority": "n2t", + "homepage": "http://www.gramene.org/", + "id": "bioregistry.gramene.qtl.n2t", + "name": "Gramene Quantitative Trait Loci at Cold Spring Harbor", + "prefix": "gramene.qtl", + "sameas": "bioregistry.gramene.qtl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/qtl/qtl_display?qtl_accession_id=$1" + }, + "bioregistry.gramene.taxonomy": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gramene.taxonomy", + "name": "Gramene Taxonomy at Cold Spring Harbor", + "prefix": "gramene.taxonomy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/ontology/search?id=$1" + }, + "bioregistry.gramene.taxonomy.miriam": { + "authority": "miriam", + "homepage": "http://www.gramene.org/", + "id": "bioregistry.gramene.taxonomy.miriam", + "name": "Gramene Taxonomy", + "prefix": "gramene.taxonomy", + "sameas": "bioregistry.gramene.taxonomy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/ontology/search?id=$1" + }, + "bioregistry.gramene.taxonomy.n2t": { + "authority": "n2t", + "homepage": "http://www.gramene.org/", + "id": "bioregistry.gramene.taxonomy.n2t", + "name": "Gramene Taxonomy at Cold Spring Harbor", + "prefix": "gramene.taxonomy", + "sameas": "bioregistry.gramene.taxonomy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.gramene.org/db/ontology/search?id=$1" + }, + "bioregistry.grassbase": { + "authority": "bioregistry", + "homepage": "https://www.kew.org/data/grasses-syn/index.htm", + "id": "bioregistry.grassbase", + "name": "GrassBase ID", + "prefix": "grassbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kew.org/data/grasses-db/www/$1" + }, + "bioregistry.grassbase.wikidata": { + "authority": "wikidata", + "homepage": "http://www.kew.org/data/grasses-syn/index.htm", + "id": "bioregistry.grassbase.wikidata", + "name": "GrassBase ID", + "prefix": "P1832", + "sameas": "bioregistry.grassbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kew.org/data/grasses-db/www/$1" + }, + "bioregistry.greengenes": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.greengenes", + "name": "Greengenes:16S rRNA gene database", + "prefix": "greengenes", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://greengenes.lbl.gov/cgi-bin/show_one_record_v2.pl?prokMSA_id=$1" + }, + "bioregistry.greengenes.miriam": { + "authority": "miriam", + "homepage": "http://greengenes.lbl.gov/", + "id": "bioregistry.greengenes.miriam", + "name": "GreenGenes", + "prefix": "greengenes", + "sameas": "bioregistry.greengenes", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://greengenes.lbl.gov/cgi-bin/show_one_record_v2.pl?prokMSA_id=$1" + }, + "bioregistry.greengenes.n2t": { + "authority": "n2t", + "homepage": "http://greengenes.lbl.gov/", + "id": "bioregistry.greengenes.n2t", + "name": "GreenGenes at Lawrence Berkeley", + "prefix": "greengenes", + "sameas": "bioregistry.greengenes", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://greengenes.lbl.gov/cgi-bin/show_one_record_v2.pl?prokMSA_id=$1" + }, + "bioregistry.greengenes.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://greengenes.lbl.gov", + "id": "bioregistry.greengenes.prefixcommons", + "name": "Greengenes:16S rRNA gene database", + "prefix": "greengenes", + "sameas": "bioregistry.greengenes", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://greengenes.lbl.gov/cgi-bin/show_one_record_v2.pl?prokMSA_id=$1" + }, + "bioregistry.grid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.grid", + "name": "GRID at Digital Science & Research Ltd.", + "prefix": "grid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.grid.ac/institutes/$1" + }, + "bioregistry.grid.miriam": { + "authority": "miriam", + "homepage": "https://www.grid.ac/", + "id": "bioregistry.grid.miriam", + "name": "GRID", + "prefix": "grid", + "sameas": "bioregistry.grid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.grid.ac/institutes/$1" + }, + "bioregistry.grid.n2t": { + "authority": "n2t", + "homepage": "https://www.grid.ac/", + "id": "bioregistry.grid.n2t", + "name": "GRID at Digital Science & Research Ltd.", + "prefix": "grid", + "sameas": "bioregistry.grid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.grid.ac/institutes/$1" + }, + "bioregistry.grin": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.grin", + "name": "Germplasm Resources Information Network", + "prefix": "grin", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ars.usda.gov/research/publications/publications.htm?seq_no_115=$1" + }, + "bioregistry.grin.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ars-grin.gov/", + "id": "bioregistry.grin.prefixcommons", + "name": "Germplasm Resources Information Network", + "prefix": "grin", + "sameas": "bioregistry.grin", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ars.usda.gov/research/publications/publications.htm?seq_no_115=$1" + }, + "bioregistry.grin.taxonomy": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.grin.taxonomy", + "name": "Germplasm Resources Information Network", + "prefix": "grin.taxonomy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://npgsweb.ars-grin.gov/gringlobal/accessiondetail.aspx?id=$1" + }, + "bioregistry.grin.taxonomy.go": { + "authority": "go", + "homepage": "https://www.ars-grin.gov/", + "id": "bioregistry.grin.taxonomy.go", + "name": "Germplasm Resources Information Network", + "prefix": "GRIN", + "sameas": "bioregistry.grin.taxonomy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://npgsweb.ars-grin.gov/gringlobal/accessiondetail.aspx?id=$1" + }, + "bioregistry.grin.taxonomy.miriam": { + "authority": "miriam", + "homepage": "http://www.ars-grin.gov/cgi-bin/npgs/html/index.pl?language=en", + "id": "bioregistry.grin.taxonomy.miriam", + "name": "GRIN Plant Taxonomy", + "prefix": "grin.taxonomy", + "sameas": "bioregistry.grin.taxonomy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ars-grin.gov/cgi-bin/npgs/html/taxon.pl?$1" + }, + "bioregistry.grin.taxonomy.n2t": { + "authority": "n2t", + "homepage": "http://www.ars-grin.gov/cgi-bin/npgs/html/index.pl?language=en", + "id": "bioregistry.grin.taxonomy.n2t", + "name": "GRIN at Maryland", + "prefix": "grin.taxonomy", + "sameas": "bioregistry.grin.taxonomy", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ars-grin.gov/cgi-bin/npgs/html/taxon.pl?$1" + }, + "bioregistry.grsdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.grsdb", + "name": "GRSDB v2 at Ramapo College of New Jersey", + "prefix": "grsdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://bioinformatics.ramapo.edu/GRSDB2/geneview.php?geneID=$1" + }, + "bioregistry.grsdb.miriam": { + "authority": "miriam", + "homepage": "http://bioinformatics.ramapo.edu/GRSDB2/", + "id": "bioregistry.grsdb.miriam", + "name": "GRSDB", + "prefix": "grsdb", + "sameas": "bioregistry.grsdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioinformatics.ramapo.edu/GRSDB2/geneview.php?geneID=$1" + }, + "bioregistry.grsdb.n2t": { + "authority": "n2t", + "homepage": "http://bioinformatics.ramapo.edu/GRSDB2/", + "id": "bioregistry.grsdb.n2t", + "name": "GRSDB v2 at Ramapo College of New Jersey", + "prefix": "grsdb", + "sameas": "bioregistry.grsdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioinformatics.ramapo.edu/GRSDB2/geneview.php?geneID=$1" + }, + "bioregistry.grsdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://bioinformatics.ramapo.edu/GRSDB2/", + "id": "bioregistry.grsdb.prefixcommons", + "name": "GRSDB", + "prefix": "grsdb", + "sameas": "bioregistry.grsdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://bioinformatics.ramapo.edu/GRSDB2/geneview.php?geneID=$1" + }, + "bioregistry.gsso": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gsso", + "name": "GSSO - the Gender, Sex, and Sexual Orientation ontology", + "prefix": "gsso", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/GSSO_$1" + }, + "bioregistry.gsso.miriam": { + "authority": "miriam", + "homepage": "https://bioportal.bioontology.org/", + "id": "bioregistry.gsso.miriam", + "name": "Gender, Sex, and Sexual Orientation (GSSO) Ontology", + "prefix": "gsso", + "sameas": "bioregistry.gsso", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/GSSO_$1" + }, + "bioregistry.gtex": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gtex", + "name": "Genotype-Tissue Expression", + "prefix": "gtex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gtexportal.org/home/gene/$1" + }, + "bioregistry.gtex.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.gtex.biolink", + "name": null, + "prefix": "GTEx", + "sameas": "bioregistry.gtex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gtexportal.org/home/gene/$1" + }, + "bioregistry.gtex.miriam": { + "authority": "miriam", + "homepage": "https://www.gtexportal.org", + "id": "bioregistry.gtex.miriam", + "name": "GTEx", + "prefix": "gtex", + "sameas": "bioregistry.gtex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gtexportal.org/home/gene/$1" + }, + "bioregistry.gtex.n2t": { + "authority": "n2t", + "homepage": "https://www.gtexportal.org", + "id": "bioregistry.gtex.n2t", + "name": "The GTEx Project", + "prefix": "gtex", + "sameas": "bioregistry.gtex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gtexportal.org/home/gene/$1" + }, + "bioregistry.gudmap": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gudmap", + "name": "Genitourinary Development Molecular Anatomy Project", + "prefix": "gudmap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://gudmap.org/id/$1" + }, + "bioregistry.gudmap.miriam": { + "authority": "miriam", + "homepage": "http://www.gudmap.org/", + "id": "bioregistry.gudmap.miriam", + "name": "GUDMAP", + "prefix": "gudmap", + "sameas": "bioregistry.gudmap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://gudmap.org/id/$1" + }, + "bioregistry.gudmap.n2t": { + "authority": "n2t", + "homepage": "http://www.gudmap.org/", + "id": "bioregistry.gudmap.n2t", + "name": "GUDMAP", + "prefix": "gudmap", + "sameas": "bioregistry.gudmap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://gudmap.org/id/$1" + }, + "bioregistry.gwascentral.marker": { + "authority": "bioregistry", + "homepage": "https://www.gwascentral.org/markers", + "id": "bioregistry.gwascentral.marker", + "name": "GWAS Central Marker at University of Leicester", + "prefix": "gwascentral.marker", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gwascentral.org/marker/$1" + }, + "bioregistry.gwascentral.marker.miriam": { + "authority": "miriam", + "homepage": "https://www.gwascentral.org/markers/", + "id": "bioregistry.gwascentral.marker.miriam", + "name": "GWAS Central Marker", + "prefix": "gwascentral.marker", + "sameas": "bioregistry.gwascentral.marker", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gwascentral.org/marker/$1" + }, + "bioregistry.gwascentral.marker.n2t": { + "authority": "n2t", + "homepage": "https://www.gwascentral.org/markers/", + "id": "bioregistry.gwascentral.marker.n2t", + "name": "GWAS Central Marker at University of Leicester", + "prefix": "gwascentral.marker", + "sameas": "bioregistry.gwascentral.marker", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gwascentral.org/marker/$1" + }, + "bioregistry.gwascentral.phenotype": { + "authority": "bioregistry", + "homepage": "https://www.gwascentral.org/phenotypes", + "id": "bioregistry.gwascentral.phenotype", + "name": "GWAS Central Phenotype at University of Leicester", + "prefix": "gwascentral.phenotype", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gwascentral.org/phenotype/$1" + }, + "bioregistry.gwascentral.phenotype.miriam": { + "authority": "miriam", + "homepage": "https://www.gwascentral.org/phenotypes", + "id": "bioregistry.gwascentral.phenotype.miriam", + "name": "GWAS Central Phenotype", + "prefix": "gwascentral.phenotype", + "sameas": "bioregistry.gwascentral.phenotype", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gwascentral.org/phenotype/$1" + }, + "bioregistry.gwascentral.phenotype.n2t": { + "authority": "n2t", + "homepage": "https://www.gwascentral.org/phenotypes", + "id": "bioregistry.gwascentral.phenotype.n2t", + "name": "GWAS Central Phenotype at University of Leicester", + "prefix": "gwascentral.phenotype", + "sameas": "bioregistry.gwascentral.phenotype", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gwascentral.org/phenotype/$1" + }, + "bioregistry.gwascentral.study": { + "authority": "bioregistry", + "homepage": "https://www.gwascentral.org/studies", + "id": "bioregistry.gwascentral.study", + "name": "Human Genome Variation Database: Genotype-to-Phenotype", + "prefix": "gwascentral.study", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.gwascentral.org/study/$1" + }, + "bioregistry.gwascentral.study.miriam": { + "authority": "miriam", + "homepage": "https://www.gwascentral.org/studies", + "id": "bioregistry.gwascentral.study.miriam", + "name": "GWAS Central Study", + "prefix": "gwascentral.study", + "sameas": "bioregistry.gwascentral.study", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gwascentral.org/study/$1" + }, + "bioregistry.gwascentral.study.n2t": { + "authority": "n2t", + "homepage": "https://www.gwascentral.org/studies", + "id": "bioregistry.gwascentral.study.n2t", + "name": "GWAS Central Study at University of Leicester", + "prefix": "gwascentral.study", + "sameas": "bioregistry.gwascentral.study", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gwascentral.org/study/$1" + }, + "bioregistry.gwascentral.study.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://hgvbase.cgb.ki.se", + "id": "bioregistry.gwascentral.study.prefixcommons", + "name": "Human Genome Variation Database: Genotype-to-Phenotype", + "prefix": "hgvbase", + "sameas": "bioregistry.gwascentral.study", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.hgvbaseg2p.org/study/$1" + }, + "bioregistry.gxa.expt": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gxa.expt", + "name": "GXA Expt at EBI", + "prefix": "gxa.expt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/gxa/experiments/$1" + }, + "bioregistry.gxa.expt.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/gxa/", + "id": "bioregistry.gxa.expt.miriam", + "name": "GXA Expt", + "prefix": "gxa.expt", + "sameas": "bioregistry.gxa.expt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/gxa/experiments/$1" + }, + "bioregistry.gxa.expt.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/gxa/", + "id": "bioregistry.gxa.expt.n2t", + "name": "GXA Expt at EBI", + "prefix": "gxa.expt", + "sameas": "bioregistry.gxa.expt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/gxa/experiments/$1" + }, + "bioregistry.gxa.gene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.gxa.gene", + "name": "GXA Gene at EBI", + "prefix": "gxa.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/gxa/genes/$1" + }, + "bioregistry.gxa.gene.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/gxa/", + "id": "bioregistry.gxa.gene.miriam", + "name": "GXA Gene", + "prefix": "gxa.gene", + "sameas": "bioregistry.gxa.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/gxa/genes/$1" + }, + "bioregistry.gxa.gene.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/gxa/", + "id": "bioregistry.gxa.gene.n2t", + "name": "GXA Gene at EBI", + "prefix": "gxa.gene", + "sameas": "bioregistry.gxa.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/gxa/genes/$1" + }, + "bioregistry.hagr.genage": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hagr.genage", + "name": "GenAge: The Ageing Gene Database", + "prefix": "hagr.genage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "developmental biology" + ], + "uri_format": "http://genomics.senescence.info/genes/details.php?id=$1" + }, + "bioregistry.hagr.genage.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://genomics.senescence.info/genes/", + "id": "bioregistry.hagr.genage.prefixcommons", + "name": "GenAge: The Ageing Gene Database", + "prefix": "genage", + "sameas": "bioregistry.hagr.genage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "developmental biology" + ], + "uri_format": "http://genomics.senescence.info/genes/details.php?id=$1" + }, + "bioregistry.hagr.gendr": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hagr.gendr", + "name": "GenDR: The Dietary Restriction Gene Database", + "prefix": "hagr.gendr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "health sciences", + "developmental biology" + ], + "uri_format": "http://genomics.senescence.info/diet/details.php?id=$1" + }, + "bioregistry.hagr.gendr.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://genomics.senescence.info/diet/", + "id": "bioregistry.hagr.gendr.prefixcommons", + "name": "GenDR: The Dietary Restriction Gene Database", + "prefix": "gendr", + "sameas": "bioregistry.hagr.gendr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "health sciences", + "developmental biology" + ], + "uri_format": "http://genomics.senescence.info/diet/details.php?id=$1" + }, + "bioregistry.hamap": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hamap", + "name": "High-quality Automated and Manual Annotation of microbial Proteomes", + "prefix": "hamap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://hamap.expasy.org/unirule/$1" + }, + "bioregistry.hamap.go": { + "authority": "go", + "homepage": "http://hamap.expasy.org/", + "id": "bioregistry.hamap.go", + "name": "High-quality Automated and Manual Annotation of microbial Proteomes", + "prefix": "HAMAP", + "sameas": "bioregistry.hamap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://hamap.expasy.org/unirule/$1" + }, + "bioregistry.hamap.miriam": { + "authority": "miriam", + "homepage": "https://hamap.expasy.org/", + "id": "bioregistry.hamap.miriam", + "name": "HAMAP", + "prefix": "hamap", + "sameas": "bioregistry.hamap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://hamap.expasy.org/unirule/$1" + }, + "bioregistry.hamap.n2t": { + "authority": "n2t", + "homepage": "https://hamap.expasy.org/", + "id": "bioregistry.hamap.n2t", + "name": "HAPMAP at Swiss Institute of Bioinformatics", + "prefix": "hamap", + "sameas": "bioregistry.hamap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://hamap.expasy.org/unirule/$1" + }, + "bioregistry.hamap.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://us.expasy.org/sprot/hamap/", + "id": "bioregistry.hamap.prefixcommons", + "name": "HAMAP database of microbial protein families", + "prefix": "hamap", + "sameas": "bioregistry.hamap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://us.expasy.org/unirule/$1" + }, + "bioregistry.hamap.uniprot": { + "authority": "uniprot", + "homepage": "https://hamap.expasy.org/", + "id": "bioregistry.hamap.uniprot", + "name": "HAMAP database of protein families", + "prefix": "DB-0041", + "sameas": "bioregistry.hamap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://hamap.expasy.org/signature/$1" + }, + "bioregistry.hancestro": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hancestro", + "name": "Human Ancestry Ontology", + "prefix": "hancestro", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ebi.ac.uk/ancestro/ancestro_$1" + }, + "bioregistry.hancestro.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.hancestro.biolink", + "name": null, + "prefix": "HANCESTRO", + "sameas": "bioregistry.hancestro", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ebi.ac.uk/ancestro/ancestro_$1" + }, + "bioregistry.hbvar": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hbvar", + "name": "A Database of Human Hemoglobin Variants and Thalassemias", + "prefix": "hbvar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://globin.bx.psu.edu/cgi-bin/hbvar/query_vars3?mode=output&display_format=page&i=$1" + }, + "bioregistry.hbvar.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://globin.cse.psu.edu/globin/hbvar", + "id": "bioregistry.hbvar.prefixcommons", + "name": "A Database of Human Hemoglobin Variants and Thalassemias", + "prefix": "hbvar", + "sameas": "bioregistry.hbvar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://globin.bx.psu.edu/cgi-bin/hbvar/query_vars3?mode=output&display_format=page&i=$1" + }, + "bioregistry.hcpcs": { + "authority": "bioregistry", + "homepage": "https://www.cms.gov/Medicare/Coding/MedHCPCSGenInfo", + "id": "bioregistry.hcpcs", + "name": "Healthcare Common Procedure Coding System", + "prefix": "hcpcs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/HCPCS/$1" + }, + "bioregistry.hcpcs.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.hcpcs.biolink", + "name": null, + "prefix": "HCPCS", + "sameas": "bioregistry.hcpcs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/HCPCS/$1" + }, + "bioregistry.hcvdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hcvdb", + "name": "Hepatitis C Virus (HCV) Database Project", + "prefix": "hcvdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://euhcvdb.ibcp.fr/euHCVdb/do/displayHCVEntry?primaryAC=$1" + }, + "bioregistry.hcvdb.miriam": { + "authority": "miriam", + "homepage": "http://euhcvdb.ibcp.fr/euHCVdb/", + "id": "bioregistry.hcvdb.miriam", + "name": "HCVDB", + "prefix": "hcvdb", + "sameas": "bioregistry.hcvdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://euhcvdb.ibcp.fr/euHCVdb/do/displayHCVEntry?primaryAC=$1" + }, + "bioregistry.hcvdb.n2t": { + "authority": "n2t", + "homepage": "http://euhcvdb.ibcp.fr/euHCVdb/", + "id": "bioregistry.hcvdb.n2t", + "name": "HCVDB at CNRS", + "prefix": "hcvdb", + "sameas": "bioregistry.hcvdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://euhcvdb.ibcp.fr/euHCVdb/do/displayHCVEntry?primaryAC=$1" + }, + "bioregistry.hcvdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://hcv.lanl.gov/", + "id": "bioregistry.hcvdb.prefixcommons", + "name": "Hepatitis C Virus (HCV) Database Project", + "prefix": "hcv", + "sameas": "bioregistry.hcvdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://hcv.lanl.gov/components/sequence/HCV/asearch/query_one.comp?se_id=$1" + }, + "bioregistry.hdr": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hdr", + "name": "Homeodomain Research at National Human Genome Research Institute (NIH)", + "prefix": "hdr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://research.nhgri.nih.gov/homeodomain/?mode=view&view=proteins&id=$1" + }, + "bioregistry.hdr.miriam": { + "authority": "miriam", + "homepage": "http://research.nhgri.nih.gov/apps/homeodomain/web/", + "id": "bioregistry.hdr.miriam", + "name": "Homeodomain Research", + "prefix": "hdr", + "sameas": "bioregistry.hdr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://research.nhgri.nih.gov/apps/homeodomain/web/index.cgi?mode=view&view=proteins&id=$1" + }, + "bioregistry.hdr.n2t": { + "authority": "n2t", + "homepage": "http://research.nhgri.nih.gov/apps/homeodomain/web/", + "id": "bioregistry.hdr.n2t", + "name": "Homeodomain Research at National Human Genome Research Institute (NIH)", + "prefix": "hdr", + "sameas": "bioregistry.hdr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://research.nhgri.nih.gov/apps/homeodomain/web/index.cgi?mode=view&view=proteins&id=$1" + }, + "bioregistry.hdr.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://research.nhgri.nih.gov/homeodomain/", + "id": "bioregistry.hdr.prefixcommons", + "name": "Homeodomain Resource Database", + "prefix": "hdr", + "sameas": "bioregistry.hdr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://research.nhgri.nih.gov/homeodomain/?mode=view&view=proteins&id=$1" + }, + "bioregistry.hgmd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hgmd", + "name": "Human Gene Mutation Database", + "prefix": "hgmd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.hgmd.cf.ac.uk/ac/gene.php?gene=$1" + }, + "bioregistry.hgmd.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.hgmd.biocontext", + "name": null, + "prefix": "HGMD", + "sameas": "bioregistry.hgmd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.hgmd.cf.ac.uk/ac/gene.php?gene=$1" + }, + "bioregistry.hgmd.miriam": { + "authority": "miriam", + "homepage": "http://www.hgmd.cf.ac.uk/ac/index.php", + "id": "bioregistry.hgmd.miriam", + "name": "HGMD", + "prefix": "hgmd", + "sameas": "bioregistry.hgmd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.hgmd.cf.ac.uk/ac/gene.php?gene=$1" + }, + "bioregistry.hgmd.n2t": { + "authority": "n2t", + "homepage": "http://www.hgmd.cf.ac.uk/ac/index.php", + "id": "bioregistry.hgmd.n2t", + "name": "HGMD at Cardiff University", + "prefix": "hgmd", + "sameas": "bioregistry.hgmd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.hgmd.cf.ac.uk/ac/gene.php?gene=$1" + }, + "bioregistry.hgnc": { + "authority": "bioregistry", + "homepage": "http://www.genenames.org", + "id": "bioregistry.hgnc", + "name": "Human Gene Nomenclature Committee Database", + "prefix": "hgnc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:$1" + }, + "bioregistry.hgnc.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.hgnc.biocontext", + "name": null, + "prefix": "HGNC", + "sameas": "bioregistry.hgnc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.genenames.org/cgi-bin/gene_symbol_report?hgnc_id=$1" + }, + "bioregistry.hgnc.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.genenames.org", + "id": "bioregistry.hgnc.cellosaurus", + "name": "Human Gene Nomenclature Committee Database", + "prefix": "HGNC", + "sameas": "bioregistry.hgnc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:$1" + }, + "bioregistry.hgnc.genefamily": { + "authority": "bioregistry", + "homepage": "http://www.genenames.org", + "id": "bioregistry.hgnc.genefamily", + "name": "HGNC gene family at HUGO Genome Nomenclature Committee", + "prefix": "hgnc.genefamily", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genenames.org/cgi-bin/genefamilies/set/$1" + }, + "bioregistry.hgnc.genefamily.miriam": { + "authority": "miriam", + "homepage": "https://www.genenames.org/", + "id": "bioregistry.hgnc.genefamily.miriam", + "name": "HGNC gene family", + "prefix": "hgnc.genefamily", + "sameas": "bioregistry.hgnc.genefamily", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genenames.org/cgi-bin/genefamilies/set/$1" + }, + "bioregistry.hgnc.genefamily.n2t": { + "authority": "n2t", + "homepage": "https://www.genenames.org/", + "id": "bioregistry.hgnc.genefamily.n2t", + "name": "HGNC gene family at HUGO Genome Nomenclature Committee", + "prefix": "hgnc.genefamily", + "sameas": "bioregistry.hgnc.genefamily", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genenames.org/cgi-bin/genefamilies/set/$1" + }, + "bioregistry.hgnc.genegroup": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hgnc.genegroup", + "name": "HGNC Gene Group", + "prefix": "hgnc.genegroup", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genenames.org/cgi-bin/genefamilies/set/$1" + }, + "bioregistry.hgnc.genegroup.miriam": { + "authority": "miriam", + "homepage": "https://www.genenames.org", + "id": "bioregistry.hgnc.genegroup.miriam", + "name": "HGNC Gene Group", + "prefix": "hgnc.genegroup", + "sameas": "bioregistry.hgnc.genegroup", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genenames.org/cgi-bin/genefamilies/set/$1" + }, + "bioregistry.hgnc.go": { + "authority": "go", + "homepage": "http://www.genenames.org/", + "id": "bioregistry.hgnc.go", + "name": "HUGO Gene Nomenclature Committee", + "prefix": "HGNC", + "sameas": "bioregistry.hgnc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:$1" + }, + "bioregistry.hgnc.miriam": { + "authority": "miriam", + "homepage": "https://www.genenames.org", + "id": "bioregistry.hgnc.miriam", + "name": "HGNC", + "prefix": "hgnc", + "sameas": "bioregistry.hgnc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/$1" + }, + "bioregistry.hgnc.n2t": { + "authority": "n2t", + "homepage": "https://www.genenames.org", + "id": "bioregistry.hgnc.n2t", + "name": "HUGO Genome Nomenclature Committee", + "prefix": "hgnc", + "sameas": "bioregistry.hgnc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/$1" + }, + "bioregistry.hgnc.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.genenames.org/", + "id": "bioregistry.hgnc.prefixcommons", + "name": "HUGO Gene Nomenclature Committee", + "prefix": "hgnc", + "sameas": "bioregistry.hgnc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.genenames.org/data/hgnc_data.php?hgnc_id=$1" + }, + "bioregistry.hgnc.symbol": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hgnc.symbol", + "name": "HGNC Symbol at HUGO Genome Nomenclature Committee", + "prefix": "hgnc.symbol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genenames.org/tools/search/#!/all?query=$1" + }, + "bioregistry.hgnc.symbol.miriam": { + "authority": "miriam", + "homepage": "https://www.genenames.org/", + "id": "bioregistry.hgnc.symbol.miriam", + "name": "HGNC Symbol", + "prefix": "hgnc.symbol", + "sameas": "bioregistry.hgnc.symbol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genenames.org/cgi-bin/gene_symbol_report?match=$1" + }, + "bioregistry.hgnc.symbol.n2t": { + "authority": "n2t", + "homepage": "https://www.genenames.org/", + "id": "bioregistry.hgnc.symbol.n2t", + "name": "HGNC Symbol at HUGO Genome Nomenclature Committee", + "prefix": "hgnc.symbol", + "sameas": "bioregistry.hgnc.symbol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genenames.org/cgi-bin/gene_symbol_report?match=$1" + }, + "bioregistry.hgnc.symbol.wikidata": { + "authority": "wikidata", + "homepage": "http://www.genenames.org/", + "id": "bioregistry.hgnc.symbol.wikidata", + "name": "HGNC gene symbol", + "prefix": "P353", + "sameas": "bioregistry.hgnc.symbol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genenames.org/tools/search/#!/all?query=$1" + }, + "bioregistry.hgnc.uniprot": { + "authority": "uniprot", + "homepage": "https://www.genenames.org/", + "id": "bioregistry.hgnc.uniprot", + "name": "Human Gene Nomenclature Database", + "prefix": "DB-0042", + "sameas": "bioregistry.hgnc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/$1" + }, + "bioregistry.hgnc.wikidata": { + "authority": "wikidata", + "homepage": "http://www.genenames.org/", + "id": "bioregistry.hgnc.wikidata", + "name": "HGNC ID", + "prefix": "P354", + "sameas": "bioregistry.hgnc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:$1" + }, + "bioregistry.hinv.locus": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hinv.locus", + "name": "H-Invitational Locus View at BIRC", + "prefix": "hinv.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://h-invitational.jp/hinv/spsoup/locus_view?hix_id=$1" + }, + "bioregistry.hinv.locus.miriam": { + "authority": "miriam", + "homepage": "http://h-invitational.jp/hinv/ahg-db/index.jsp", + "id": "bioregistry.hinv.locus.miriam", + "name": "H-InvDb Locus", + "prefix": "hinv.locus", + "sameas": "bioregistry.hinv.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://h-invitational.jp/hinv/spsoup/locus_view?hix_id=$1" + }, + "bioregistry.hinv.locus.n2t": { + "authority": "n2t", + "homepage": "http://h-invitational.jp/hinv/ahg-db/index.jsp", + "id": "bioregistry.hinv.locus.n2t", + "name": "H-Invitational Locus View at BIRC", + "prefix": "hinv.locus", + "sameas": "bioregistry.hinv.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://h-invitational.jp/hinv/spsoup/locus_view?hix_id=$1" + }, + "bioregistry.hinv.protein": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hinv.protein", + "name": "H-Invitational Protein View at BIRC", + "prefix": "hinv.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://h-invitational.jp/hinv/protein/protein_view.cgi?hip_id=$1" + }, + "bioregistry.hinv.protein.miriam": { + "authority": "miriam", + "homepage": "http://h-invitational.jp/hinv/ahg-db/index.jsp", + "id": "bioregistry.hinv.protein.miriam", + "name": "H-InvDb Protein", + "prefix": "hinv.protein", + "sameas": "bioregistry.hinv.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://h-invitational.jp/hinv/protein/protein_view.cgi?hip_id=$1" + }, + "bioregistry.hinv.protein.n2t": { + "authority": "n2t", + "homepage": "http://h-invitational.jp/hinv/ahg-db/index.jsp", + "id": "bioregistry.hinv.protein.n2t", + "name": "H-Invitational Protein View at BIRC", + "prefix": "hinv.protein", + "sameas": "bioregistry.hinv.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://h-invitational.jp/hinv/protein/protein_view.cgi?hip_id=$1" + }, + "bioregistry.hinv.transcript": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hinv.transcript", + "name": "H-Invitational Transcript View at BIRC", + "prefix": "hinv.transcript", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://h-invitational.jp/hinv/spsoup/transcript_view?hit_id=$1" + }, + "bioregistry.hinv.transcript.miriam": { + "authority": "miriam", + "homepage": "http://h-invitational.jp/hinv/ahg-db/index.jsp", + "id": "bioregistry.hinv.transcript.miriam", + "name": "H-InvDb Transcript", + "prefix": "hinv.transcript", + "sameas": "bioregistry.hinv.transcript", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://h-invitational.jp/hinv/spsoup/transcript_view?hit_id=$1" + }, + "bioregistry.hinv.transcript.n2t": { + "authority": "n2t", + "homepage": "http://h-invitational.jp/hinv/ahg-db/index.jsp", + "id": "bioregistry.hinv.transcript.n2t", + "name": "H-Invitational Transcript View at BIRC", + "prefix": "hinv.transcript", + "sameas": "bioregistry.hinv.transcript", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://h-invitational.jp/hinv/spsoup/transcript_view?hit_id=$1" + }, + "bioregistry.hipsci": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hipsci", + "name": "Human Induced Pluripotent Stem Cells Initiative", + "prefix": "hipsci", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.hipsci.org/lines/#/lines/$1" + }, + "bioregistry.hipsci.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.hipsci.org", + "id": "bioregistry.hipsci.cellosaurus", + "name": "Human Induced Pluripotent Stem Cells Initiative", + "prefix": "HipSci", + "sameas": "bioregistry.hipsci", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.hipsci.org/lines/#/lines/$1" + }, + "bioregistry.hivreagentprogram": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hivreagentprogram", + "name": "NIH HIV Reagent Program", + "prefix": "hivreagentprogram", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.hivreagentprogram.org/Catalog/HRPCellLines/$1.aspx" + }, + "bioregistry.hivreagentprogram.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.hivreagentprogram.org/", + "id": "bioregistry.hivreagentprogram.cellosaurus", + "name": "NIH HIV Reagent Program", + "prefix": "HIVReagentProgram", + "sameas": "bioregistry.hivreagentprogram", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.hivreagentprogram.org/Catalog/HRPCellLines/$1.aspx" + }, + "bioregistry.hmdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hmdb", + "name": "The Human Metabolome Database", + "prefix": "hmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "https://www.hmdb.ca/metabolites/$1" + }, + "bioregistry.hmdb.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.hmdb.biocontext", + "name": null, + "prefix": "HMDB", + "sameas": "bioregistry.hmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "http://www.hmdb.ca/metabolites/$1" + }, + "bioregistry.hmdb.miriam": { + "authority": "miriam", + "homepage": "http://www.hmdb.ca/", + "id": "bioregistry.hmdb.miriam", + "name": "HMDB", + "prefix": "hmdb", + "sameas": "bioregistry.hmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.hmdb.ca/metabolites/$1" + }, + "bioregistry.hmdb.n2t": { + "authority": "n2t", + "homepage": "http://www.hmdb.ca/", + "id": "bioregistry.hmdb.n2t", + "name": "The Human Metabolome Database", + "prefix": "hmdb", + "sameas": "bioregistry.hmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.hmdb.ca/metabolites/$1" + }, + "bioregistry.hmdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.hmdb.ca", + "id": "bioregistry.hmdb.prefixcommons", + "name": "The Human Metabolome Database", + "prefix": "hmdb", + "sameas": "bioregistry.hmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "http://www.hmdb.ca/metabolites/$1" + }, + "bioregistry.hmdb.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.hmdb.wikidata", + "name": "Human Metabolome Database ID", + "prefix": "P2057", + "sameas": "bioregistry.hmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "https://www.hmdb.ca/metabolites/$1" + }, + "bioregistry.hogenom": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hogenom", + "name": "The HOGENOM Database of Homologous Genes from Fully Sequenced Organisms", + "prefix": "hogenom", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?db=HOGENOM5&query=$1" + }, + "bioregistry.hogenom.miriam": { + "authority": "miriam", + "homepage": "http://pbil.univ-lyon1.fr/databases/hogenom/", + "id": "bioregistry.hogenom.miriam", + "name": "HOGENOM", + "prefix": "hogenom", + "sameas": "bioregistry.hogenom", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?db=HOGENOM5&query=$1" + }, + "bioregistry.hogenom.n2t": { + "authority": "n2t", + "homepage": "http://pbil.univ-lyon1.fr/databases/hogenom/", + "id": "bioregistry.hogenom.n2t", + "name": "HOGENOM at CNRS", + "prefix": "hogenom", + "sameas": "bioregistry.hogenom", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?db=HOGENOM5&query=$1" + }, + "bioregistry.hogenom.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://pbil.univ-lyon1.fr/databases/hogenom.php", + "id": "bioregistry.hogenom.prefixcommons", + "name": "The HOGENOM Database of Homologous Genes from Fully Sequenced Organisms", + "prefix": "hogenom", + "sameas": "bioregistry.hogenom", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?db=HOGENOM5&query=$1" + }, + "bioregistry.hogenom.uniprot": { + "authority": "uniprot", + "homepage": "http://hogenom.univ-lyon1.fr/", + "id": "bioregistry.hogenom.uniprot", + "name": "The HOGENOM Database of Homologous Genes from Fully Sequenced Organisms", + "prefix": "DB-0044", + "sameas": "bioregistry.hogenom", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://hogenom.univ-lyon1.fr/query_sequence?seq=$1" + }, + "bioregistry.homd.seq": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.homd.seq", + "name": "HOMD sequence metainformation at The Forsyth Institute", + "prefix": "homd.seq", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "microbiology" + ], + "uri_format": "http://www.homd.org/modules.php?op=modload&name=GenomeList&file=index&link=detailinfo&seqid=$1" + }, + "bioregistry.homd.seq.miriam": { + "authority": "miriam", + "homepage": "http://www.homd.org/index.php", + "id": "bioregistry.homd.seq.miriam", + "name": "HOMD Sequence Metainformation", + "prefix": "homd.seq", + "sameas": "bioregistry.homd.seq", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.homd.org/modules.php?op=modload&name=GenomeList&file=index&link=detailinfo&seqid=$1" + }, + "bioregistry.homd.seq.n2t": { + "authority": "n2t", + "homepage": "http://www.homd.org/index.php", + "id": "bioregistry.homd.seq.n2t", + "name": "HOMD sequence metainformation at The Forsyth Institute", + "prefix": "homd.seq", + "sameas": "bioregistry.homd.seq", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.homd.org/modules.php?op=modload&name=GenomeList&file=index&link=detailinfo&seqid=$1" + }, + "bioregistry.homd.seq.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.homd.seq.prefixcommons", + "name": "HOMD Sequence Metainformation", + "prefix": "homd.seq", + "sameas": "bioregistry.homd.seq", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "microbiology" + ], + "uri_format": "http://www.homd.org/modules.php?op=modload&name=GenomeList&file=index&link=detailinfo&seqid=$1" + }, + "bioregistry.homd.taxon": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.homd.taxon", + "name": "HOMD taxon information at The Forsyth Institute", + "prefix": "homd.taxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "microbiology" + ], + "uri_format": "http://www.homd.org/modules.php?op=modload&name=HOMD&file=index&oraltaxonid=$1&view=dynamic" + }, + "bioregistry.homd.taxon.miriam": { + "authority": "miriam", + "homepage": "http://www.homd.org/index.php", + "id": "bioregistry.homd.taxon.miriam", + "name": "HOMD Taxonomy", + "prefix": "homd.taxon", + "sameas": "bioregistry.homd.taxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.homd.org/modules.php?op=modload&name=HOMD&file=index&oraltaxonid=$1&view=dynamic" + }, + "bioregistry.homd.taxon.n2t": { + "authority": "n2t", + "homepage": "http://www.homd.org/index.php", + "id": "bioregistry.homd.taxon.n2t", + "name": "HOMD taxon information at The Forsyth Institute", + "prefix": "homd.taxon", + "sameas": "bioregistry.homd.taxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.homd.org/modules.php?op=modload&name=HOMD&file=index&oraltaxonid=$1&view=dynamic" + }, + "bioregistry.homd.taxon.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.homd.taxon.prefixcommons", + "name": "HOMD Taxonomy", + "prefix": "homd.taxon", + "sameas": "bioregistry.homd.taxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "microbiology" + ], + "uri_format": "http://www.homd.org/modules.php?op=modload&name=HOMD&file=index&oraltaxonid=$1&view=dynamic" + }, + "bioregistry.homologene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.homologene", + "name": "NCBI HomoloGene Database", + "prefix": "homologene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/homologene?term=$1" + }, + "bioregistry.homologene.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.homologene.biocontext", + "name": null, + "prefix": "HOMOLOGENE", + "sameas": "bioregistry.homologene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/homologene/$1" + }, + "bioregistry.homologene.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/homologene/", + "id": "bioregistry.homologene.miriam", + "name": "HomoloGene", + "prefix": "homologene", + "sameas": "bioregistry.homologene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/homologene/$1" + }, + "bioregistry.homologene.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/homologene/", + "id": "bioregistry.homologene.n2t", + "name": "Homologene at NCBI", + "prefix": "homologene", + "sameas": "bioregistry.homologene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/homologene/$1" + }, + "bioregistry.homologene.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://wwww.ncbi.nlm.nih.gov/homologene", + "id": "bioregistry.homologene.prefixcommons", + "name": "NCBI Homologene", + "prefix": "homologene", + "sameas": "bioregistry.homologene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/homologene/$1" + }, + "bioregistry.homologene.wikidata": { + "authority": "wikidata", + "homepage": "http://www.ncbi.nlm.nih.gov/homologene", + "id": "bioregistry.homologene.wikidata", + "name": "HomoloGene ID", + "prefix": "P593", + "sameas": "bioregistry.homologene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/homologene?term=$1" + }, + "bioregistry.horizon_discovery": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.horizon_discovery", + "name": "Horizon Discovery cell line collection", + "prefix": "horizon_discovery", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://horizondiscovery.com/en/search?searchterm=$1" + }, + "bioregistry.horizon_discovery.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://horizondiscovery.com/", + "id": "bioregistry.horizon_discovery.cellosaurus", + "name": "Horizon Discovery cell line collection", + "prefix": "Horizon_Discovery", + "sameas": "bioregistry.horizon_discovery", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://horizondiscovery.com/en/search?searchterm=$1" + }, + "bioregistry.hovergen": { + "authority": "bioregistry", + "homepage": "https://pbil.univ-lyon1.fr/databases/hovergen.php", + "id": "bioregistry.hovergen", + "name": "HOVERGEN: Homologous Vertebrate Genes Database", + "prefix": "hovergen", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?query=$1&db=HOVERGEN" + }, + "bioregistry.hovergen.miriam": { + "authority": "miriam", + "homepage": "http://pbil.univ-lyon1.fr/databases/hovergen.php", + "id": "bioregistry.hovergen.miriam", + "name": "HOVERGEN", + "prefix": "hovergen", + "sameas": "bioregistry.hovergen", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?query=$1&db=HOVERGEN" + }, + "bioregistry.hovergen.n2t": { + "authority": "n2t", + "homepage": "http://pbil.univ-lyon1.fr/databases/hovergen.php", + "id": "bioregistry.hovergen.n2t", + "name": "Hovergen", + "prefix": "hovergen", + "sameas": "bioregistry.hovergen", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?query=$1&db=HOVERGEN" + }, + "bioregistry.hovergen.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://pbil.univ-lyon1.fr/databases/hovergen.html", + "id": "bioregistry.hovergen.prefixcommons", + "name": "HOVERGEN: Homologous Vertebrate Genes Database", + "prefix": "hovergen", + "sameas": "bioregistry.hovergen", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?query=$1&db=HOVERGEN" + }, + "bioregistry.hp": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hp", + "name": "Human Phenotype Ontology at Institute for Medical Genetics and Human Genetics", + "prefix": "hp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://hpo.jax.org/app/browse/term/HP:$1" + }, + "bioregistry.hp.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.hp.biocontext", + "name": null, + "prefix": "HPO", + "sameas": "bioregistry.hp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://human-phenotype-ontology.org/$1" + }, + "bioregistry.hp.miriam": { + "authority": "miriam", + "homepage": "http://human-phenotype-ontology.github.io/", + "id": "bioregistry.hp.miriam", + "name": "Human Phenotype Ontology", + "prefix": "hp", + "sameas": "bioregistry.hp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://hpo.jax.org/app/browse/term/HP:$1" + }, + "bioregistry.hp.n2t": { + "authority": "n2t", + "homepage": "http://human-phenotype-ontology.github.io/", + "id": "bioregistry.hp.n2t", + "name": "Human Phenotype Ontology at Institute for Medical Genetics and Human Genetics", + "prefix": "hp", + "sameas": "bioregistry.hp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://compbio.charite.de/hpoweb/showterm?id=HP:$1" + }, + "bioregistry.hp.wikidata": { + "authority": "wikidata", + "homepage": "http://human-phenotype-ontology.github.io/about.html", + "id": "bioregistry.hp.wikidata", + "name": "Human Phenotype Ontology ID", + "prefix": "P3841", + "sameas": "bioregistry.hp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://hpo.jax.org/app/browse/term/$1" + }, + "bioregistry.hpa": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hpa", + "name": "Human Protein Atlas tissue profile information", + "prefix": "hpa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.proteinatlas.org/$1" + }, + "bioregistry.hpa.go": { + "authority": "go", + "homepage": "http://www.proteinatlas.org/", + "id": "bioregistry.hpa.go", + "name": "Human Protein Atlas tissue profile information", + "prefix": "HPA", + "sameas": "bioregistry.hpa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.proteinatlas.org/tissue_profile.php?antibody_id=$1" + }, + "bioregistry.hpa.miriam": { + "authority": "miriam", + "homepage": "http://www.proteinatlas.org/", + "id": "bioregistry.hpa.miriam", + "name": "HPA", + "prefix": "hpa", + "sameas": "bioregistry.hpa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.proteinatlas.org/$1" + }, + "bioregistry.hpa.n2t": { + "authority": "n2t", + "homepage": "http://www.proteinatlas.org/", + "id": "bioregistry.hpa.n2t", + "name": "Human Protein Atlas at AlbaNova University", + "prefix": "hpa", + "sameas": "bioregistry.hpa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.proteinatlas.org/$1" + }, + "bioregistry.hpa.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.proteinatlas.org/", + "id": "bioregistry.hpa.prefixcommons", + "name": "Human Protein Atlas", + "prefix": "hpa", + "sameas": "bioregistry.hpa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.proteinatlas.org/gene_info.php?ensembl_gene_id=$1" + }, + "bioregistry.hpa.uniprot": { + "authority": "uniprot", + "homepage": "https://www.proteinatlas.org/", + "id": "bioregistry.hpa.uniprot", + "name": "Human Protein Atlas", + "prefix": "DB-0046", + "sameas": "bioregistry.hpa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.proteinatlas.org/$1" + }, + "bioregistry.hpm.peptide": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hpm.peptide", + "name": "Human Proteome Map Peptide at Institute of Bioinformatics (Bangalore)", + "prefix": "hpm.peptide", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.humanproteomemap.org/spectrum.php?pep_id=$1" + }, + "bioregistry.hpm.peptide.miriam": { + "authority": "miriam", + "homepage": "http://www.humanproteomemap.org/index.php", + "id": "bioregistry.hpm.peptide.miriam", + "name": "Human Proteome Map Peptide", + "prefix": "hpm.peptide", + "sameas": "bioregistry.hpm.peptide", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.humanproteomemap.org/spectrum.php?pep_id=$1" + }, + "bioregistry.hpm.peptide.n2t": { + "authority": "n2t", + "homepage": "http://www.humanproteomemap.org/index.php", + "id": "bioregistry.hpm.peptide.n2t", + "name": "Human Proteome Map Peptide at Institute of Bioinformatics (Bangalore)", + "prefix": "hpm.peptide", + "sameas": "bioregistry.hpm.peptide", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.humanproteomemap.org/spectrum.php?pep_id=$1" + }, + "bioregistry.hpm.protein": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hpm.protein", + "name": "Human Proteome Map Protein at Institute of Bioinformatics (Bangalore)", + "prefix": "hpm.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.humanproteomemap.org/protein.php?hpm_id=$1" + }, + "bioregistry.hpm.protein.miriam": { + "authority": "miriam", + "homepage": "http://www.humanproteomemap.org/index.php", + "id": "bioregistry.hpm.protein.miriam", + "name": "Human Proteome Map Protein", + "prefix": "hpm.protein", + "sameas": "bioregistry.hpm.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.humanproteomemap.org/protein.php?hpm_id=$1" + }, + "bioregistry.hpm.protein.n2t": { + "authority": "n2t", + "homepage": "http://www.humanproteomemap.org/index.php", + "id": "bioregistry.hpm.protein.n2t", + "name": "Human Proteome Map Protein at Institute of Bioinformatics (Bangalore)", + "prefix": "hpm.protein", + "sameas": "bioregistry.hpm.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.humanproteomemap.org/protein.php?hpm_id=$1" + }, + "bioregistry.hprd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hprd", + "name": "Human Protein Reference Database", + "prefix": "hprd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.hprd.org/protein/$1" + }, + "bioregistry.hprd.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.hprd.biocontext", + "name": null, + "prefix": "HPRD", + "sameas": "bioregistry.hprd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.hprd.org/protein/$1" + }, + "bioregistry.hprd.miriam": { + "authority": "miriam", + "homepage": "http://www.hprd.org/", + "id": "bioregistry.hprd.miriam", + "name": "HPRD", + "prefix": "hprd", + "sameas": "bioregistry.hprd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.hprd.org/protein/$1" + }, + "bioregistry.hprd.n2t": { + "authority": "n2t", + "homepage": "http://www.hprd.org/", + "id": "bioregistry.hprd.n2t", + "name": "Human Protein Reference Database", + "prefix": "hprd", + "sameas": "bioregistry.hprd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.hprd.org/protein/$1" + }, + "bioregistry.hpscreg": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hpscreg", + "name": "Human Pluripotent Stem Cell Registry", + "prefix": "hpscreg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://hpscreg.eu/cell-line/$1" + }, + "bioregistry.hpscreg.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://hpscreg.eu", + "id": "bioregistry.hpscreg.cellosaurus", + "name": "Human Pluripotent Stem Cell Registry", + "prefix": "hPSCreg", + "sameas": "bioregistry.hpscreg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://hpscreg.eu/cell-line/$1" + }, + "bioregistry.hpscreg.miriam": { + "authority": "miriam", + "homepage": "https://hpscreg.eu/", + "id": "bioregistry.hpscreg.miriam", + "name": "Human Pluripotent Stem Cell Registry", + "prefix": "hpscreg", + "sameas": "bioregistry.hpscreg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://hpscreg.eu/cell-line/$1" + }, + "bioregistry.hpscreg.n2t": { + "authority": "n2t", + "homepage": "https://hpscreg.eu/", + "id": "bioregistry.hpscreg.n2t", + "name": "Human Pluripotent Stem Cell Registry", + "prefix": "hpscreg", + "sameas": "bioregistry.hpscreg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://hpscreg.eu/cell-line/$1" + }, + "bioregistry.hsapdv": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hsapdv", + "name": "Human Developmental Stages Ontology", + "prefix": "hsapdv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/HsapDv_$1" + }, + "bioregistry.hsapdv.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.hsapdv.biolink", + "name": null, + "prefix": "HsapDv", + "sameas": "bioregistry.hsapdv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/HsapDv_$1" + }, + "bioregistry.hsdb": { + "authority": "bioregistry", + "homepage": "https://pubchem.ncbi.nlm.nih.gov/source/hsdb", + "id": "bioregistry.hsdb", + "name": "Hazardous Substances Data Bank", + "prefix": "hsdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/source/hsdb/$1" + }, + "bioregistry.hsdb.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.hsdb.wikidata", + "name": "HSDB ID", + "prefix": "P2062", + "sameas": "bioregistry.hsdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/source/hsdb/$1" + }, + "bioregistry.hssp": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.hssp", + "name": "Database of homology-derived secondary structure of proteins", + "prefix": "hssp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "ftp://ftp.embl-heidelberg.de/pub/databases/protein_extras/hssp/$1.hssp.bz2" + }, + "bioregistry.hssp.miriam": { + "authority": "miriam", + "homepage": "http://swift.cmbi.kun.nl/swift/hssp/", + "id": "bioregistry.hssp.miriam", + "name": "HSSP", + "prefix": "hssp", + "sameas": "bioregistry.hssp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "ftp://ftp.embl-heidelberg.de/pub/databases/protein_extras/hssp/$1.hssp.bz2" + }, + "bioregistry.hssp.n2t": { + "authority": "n2t", + "homepage": "ftp://ftp.cmbi.ru.nl/pub/molbio/data/hssp/", + "id": "bioregistry.hssp.n2t", + "name": "HSSP at CMBI", + "prefix": "hssp", + "sameas": "bioregistry.hssp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "ftp://ftp.cmbi.ru.nl/pub/molbio/data/hssp/$1.hssp.bz2" + }, + "bioregistry.huge": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.huge", + "name": "Human Unidentified Gene-Encoded large proteins database", + "prefix": "huge", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.kazusa.or.jp/huge/gfpage/$1/" + }, + "bioregistry.huge.miriam": { + "authority": "miriam", + "homepage": "http://www.kazusa.or.jp/huge/", + "id": "bioregistry.huge.miriam", + "name": "HUGE", + "prefix": "huge", + "sameas": "bioregistry.huge", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kazusa.or.jp/huge/gfpage/$1/" + }, + "bioregistry.huge.n2t": { + "authority": "n2t", + "homepage": "http://www.kazusa.or.jp/huge/", + "id": "bioregistry.huge.n2t", + "name": "HUGE at Kazusa DNA Research Institute", + "prefix": "huge", + "sameas": "bioregistry.huge", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kazusa.or.jp/huge/gfpage/$1/" + }, + "bioregistry.huge.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.kazusa.or.jp/huge/", + "id": "bioregistry.huge.prefixcommons", + "name": "Human Unidentified Gene-Encoded large proteins database", + "prefix": "huge", + "sameas": "bioregistry.huge", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.kazusa.or.jp/huge/cgi/view_direct.cgi?id=$1" + }, + "bioregistry.huge.uniprot": { + "authority": "uniprot", + "homepage": "http://www.kazusa.or.jp/huge/", + "id": "bioregistry.huge.uniprot", + "name": "Human Unidentified Gene-Encoded large proteins database", + "prefix": "DB-0049", + "sameas": "bioregistry.huge", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.kazusa.or.jp/huge/gfpage/$1" + }, + "bioregistry.iao": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.iao", + "name": "Information Artifact Ontology (IAO)", + "prefix": "iao", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/IAO_$1" + }, + "bioregistry.iao.miriam": { + "authority": "miriam", + "homepage": "http://www.ontobee.org/ontology/IAO", + "id": "bioregistry.iao.miriam", + "name": "Information Artifact Ontology", + "prefix": "iao", + "sameas": "bioregistry.iao", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/IAO_$1" + }, + "bioregistry.iao.n2t": { + "authority": "n2t", + "homepage": "http://www.ontobee.org/ontology/IAO", + "id": "bioregistry.iao.n2t", + "name": "IAO through Ontobee", + "prefix": "iao", + "sameas": "bioregistry.iao", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/IAO_$1" + }, + "bioregistry.icd10": { + "authority": "bioregistry", + "homepage": "https://icd.who.int/browse10", + "id": "bioregistry.icd10", + "name": "International Statistical Classification of Diseases and Related Health Problems", + "prefix": "icd10", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "health sciences" + ], + "uri_format": "https://icd.who.int/browse10/2019/en#/$1" + }, + "bioregistry.icd10.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.icd10.biolink", + "name": null, + "prefix": "ICD10", + "sameas": "bioregistry.icd10", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "health sciences" + ], + "uri_format": "https://icd.codes/icd9cm/$1" + }, + "bioregistry.icd10.miriam": { + "authority": "miriam", + "homepage": "http://www.who.int/classifications/icd/en/", + "id": "bioregistry.icd10.miriam", + "name": "ICD", + "prefix": "icd", + "sameas": "bioregistry.icd10", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://apps.who.int/classifications/icd10/browse/2010/en#/$1" + }, + "bioregistry.icd10.n2t": { + "authority": "n2t", + "homepage": "http://www.who.int/classifications/icd/en/", + "id": "bioregistry.icd10.n2t", + "name": "International Statistical Classification of Diseases and Related Health Problems", + "prefix": "icd", + "sameas": "bioregistry.icd10", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://apps.who.int/classifications/icd10/browse/2010/en#/$1" + }, + "bioregistry.icd10.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.who.int/classifications/icd/en/", + "id": "bioregistry.icd10.prefixcommons", + "name": "International Classification of Diseases", + "prefix": "icd", + "sameas": "bioregistry.icd10", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "health sciences" + ], + "uri_format": "http://apps.who.int/classifications/icd10/browse/2010/en#/$1" + }, + "bioregistry.icd10.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.icd10.wikidata", + "name": "ICD-10", + "prefix": "P494", + "sameas": "bioregistry.icd10", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "health sciences" + ], + "uri_format": "https://icd.who.int/browse10/2019/en#/$1" + }, + "bioregistry.icd10cm": { + "authority": "bioregistry", + "homepage": "https://www.icd10data.com/ICD10CM", + "id": "bioregistry.icd10cm", + "name": "International Classification of Diseases, 10th Revision, Clinical Modification (ICD-10-CM)", + "prefix": "icd10cm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://icdcodelookup.com/icd-10/codes/$1" + }, + "bioregistry.icd10cm.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.icd10cm.wikidata", + "name": "ICD-10-CM", + "prefix": "P4229", + "sameas": "bioregistry.icd10cm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://icdcodelookup.com/icd-10/codes/$1" + }, + "bioregistry.icd10pcs": { + "authority": "bioregistry", + "homepage": "https://www.nlm.nih.gov/research/umls/sourcereleasedocs/current/ICD10PCS", + "id": "bioregistry.icd10pcs", + "name": "International Classification of Diseases, 10th Revision, Procedure Coding System (ICD-10-PCS)", + "prefix": "icd10pcs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.findacode.com/code.php?set=ICD10PCS&c=$1" + }, + "bioregistry.icd10pcs.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.icd10pcs.wikidata", + "name": "ICD-10-PCS", + "prefix": "P1690", + "sameas": "bioregistry.icd10pcs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.findacode.com/code.php?set=ICD10PCS&c=$1" + }, + "bioregistry.icd11": { + "authority": "bioregistry", + "homepage": "https://icd.who.int/", + "id": "bioregistry.icd11", + "name": "International Classification of Diseases, 11th Revision", + "prefix": "icd11", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://icd.who.int/dev11/f/en#/http://id.who.int/icd/entity/$1" + }, + "bioregistry.icd11.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.icd11.wikidata", + "name": "ICD-11 (foundation)", + "prefix": "P7807", + "sameas": "bioregistry.icd11", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://icd.who.int/dev11/f/en#/http://id.who.int/icd/entity/$1" + }, + "bioregistry.icd9": { + "authority": "bioregistry", + "homepage": "https://www.cdc.gov/nchs/icd/icd9.htm", + "id": "bioregistry.icd9", + "name": "International Classification of Diseases, 9th Revision", + "prefix": "icd9", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.icd9data.com/getICD9Code.ashx?icd9=$1" + }, + "bioregistry.icd9.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.icd9.biolink", + "name": null, + "prefix": "ICD9", + "sameas": "bioregistry.icd9", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://translator.ncats.nih.gov/ICD9_$1" + }, + "bioregistry.icd9.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.icd9.wikidata", + "name": "ICD-9 ID", + "prefix": "P493", + "sameas": "bioregistry.icd9", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.icd9data.com/getICD9Code.ashx?icd9=$1" + }, + "bioregistry.icd9cm": { + "authority": "bioregistry", + "homepage": "https://www.cdc.gov/nchs/icd/icd9cm.htm", + "id": "bioregistry.icd9cm", + "name": "International Classification of Diseases, Ninth Revision, Clinical Modification", + "prefix": "icd9cm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://icd9cm.chrisendres.com/index.php?action=search&srchtext=$1" + }, + "bioregistry.icd9cm.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.icd9cm.wikidata", + "name": "ICD-9-CM", + "prefix": "P1692", + "sameas": "bioregistry.icd9cm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://icd9cm.chrisendres.com/index.php?action=search&srchtext=$1" + }, + "bioregistry.icdc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.icdc", + "name": "Integrated Canine Data Commons", + "prefix": "icdc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://caninecommons.cancer.gov/#/study/$1" + }, + "bioregistry.icdc.miriam": { + "authority": "miriam", + "homepage": "https://caninecommons.cancer.gov/#/", + "id": "bioregistry.icdc.miriam", + "name": "Integrated Canine Data Commons", + "prefix": "icdc", + "sameas": "bioregistry.icdc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://caninecommons.cancer.gov/#/study/$1" + }, + "bioregistry.icdo": { + "authority": "bioregistry", + "homepage": "https://www.who.int/classifications/icd/adaptations/oncology/en/", + "id": "bioregistry.icdo", + "name": "International Classification of Diseases for Oncology: ICD-O", + "prefix": "icdo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://codes.iarc.fr/search.php?cx=009987501641899931167%3A2_7lsevqpdm&cof=FORID%3A9&ie=UTF-8&ie=ISO-8859-1&oe=ISO-8859-1&sa=&q=$1" + }, + "bioregistry.icdo.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.icdo.wikidata", + "name": "ICD-O", + "prefix": "P563", + "sameas": "bioregistry.icdo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://codes.iarc.fr/search.php?cx=009987501641899931167%3A2_7lsevqpdm&cof=FORID%3A9&ie=UTF-8&ie=ISO-8859-1&oe=ISO-8859-1&sa=&q=$1" + }, + "bioregistry.iceberg.element": { + "authority": "bioregistry", + "homepage": "https://bioinfo-mml.sjtu.edu.cn/ICEberg2/browse_result.php?type=alpha&alpha=100", + "id": "bioregistry.iceberg.element", + "name": "ICEberg element at Shanghai Jiaotong University", + "prefix": "iceberg.element", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://db-mml.sjtu.edu.cn/ICEberg/feature_page.php?ice_id=$1" + }, + "bioregistry.iceberg.element.miriam": { + "authority": "miriam", + "homepage": "http://db-mml.sjtu.edu.cn/ICEberg/", + "id": "bioregistry.iceberg.element.miriam", + "name": "ICEberg element", + "prefix": "iceberg.element", + "sameas": "bioregistry.iceberg.element", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://db-mml.sjtu.edu.cn/ICEberg/feature_page.php?ice_id=$1" + }, + "bioregistry.iceberg.element.n2t": { + "authority": "n2t", + "homepage": "http://db-mml.sjtu.edu.cn/ICEberg/", + "id": "bioregistry.iceberg.element.n2t", + "name": "ICEberg element at Shanghai Jiaotong University", + "prefix": "iceberg.element", + "sameas": "bioregistry.iceberg.element", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://db-mml.sjtu.edu.cn/ICEberg/feature_page.php?ice_id=$1" + }, + "bioregistry.iceberg.family": { + "authority": "bioregistry", + "homepage": "https://bioinfo-mml.sjtu.edu.cn/ICEberg2/browse_fam.php", + "id": "bioregistry.iceberg.family", + "name": "ICEberg family at Shanghai Jiaotong University", + "prefix": "iceberg.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://db-mml.sjtu.edu.cn/ICEberg/browse_result.php?type=fam&fam_id=$1" + }, + "bioregistry.iceberg.family.miriam": { + "authority": "miriam", + "homepage": "http://db-mml.sjtu.edu.cn/ICEberg/", + "id": "bioregistry.iceberg.family.miriam", + "name": "ICEberg family", + "prefix": "iceberg.family", + "sameas": "bioregistry.iceberg.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://db-mml.sjtu.edu.cn/ICEberg/browse_result.php?type=fam&fam_id=$1" + }, + "bioregistry.iceberg.family.n2t": { + "authority": "n2t", + "homepage": "http://db-mml.sjtu.edu.cn/ICEberg/", + "id": "bioregistry.iceberg.family.n2t", + "name": "ICEberg family at Shanghai Jiaotong University", + "prefix": "iceberg.family", + "sameas": "bioregistry.iceberg.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://db-mml.sjtu.edu.cn/ICEberg/browse_result.php?type=fam&fam_id=$1" + }, + "bioregistry.iclc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.iclc", + "name": "Interlab Cell Line Collection", + "prefix": "iclc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.iclc.it/details/det_list.php?line_id=$1" + }, + "bioregistry.iclc.cellosaurus": { + "authority": "cellosaurus", + "homepage": "http://www.iclc.it", + "id": "bioregistry.iclc.cellosaurus", + "name": "Interlab Cell Line Collection", + "prefix": "ICLC", + "sameas": "bioregistry.iclc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.iclc.it/details/det_list.php?line_id=$1" + }, + "bioregistry.ideal": { + "authority": "bioregistry", + "homepage": "https://www.ideal-db.org", + "id": "bioregistry.ideal", + "name": "Intrinsically Disordered proteins with Extensive Annotations and Literature", + "prefix": "ideal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ideal-db.org/ideal.php?id=$1" + }, + "bioregistry.ideal.miriam": { + "authority": "miriam", + "homepage": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/", + "id": "bioregistry.ideal.miriam", + "name": "IDEAL", + "prefix": "ideal", + "sameas": "bioregistry.ideal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://idp1.force.cs.is.nagoya-u.ac.jp/IDEAL/ideal.php?id=$1" + }, + "bioregistry.ideal.n2t": { + "authority": "n2t", + "homepage": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/", + "id": "bioregistry.ideal.n2t", + "name": "IDEAL at Maebashi Institute of Technology", + "prefix": "ideal", + "sameas": "bioregistry.ideal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://idp1.force.cs.is.nagoya-u.ac.jp/IDEAL/idealItem.php?id=$1" + }, + "bioregistry.ideal.uniprot": { + "authority": "uniprot", + "homepage": "https://www.ideal-db.org/", + "id": "bioregistry.ideal.uniprot", + "name": "Intrinsically Disordered proteins with Extensive Annotations and Literature", + "prefix": "DB-0251", + "sameas": "bioregistry.ideal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ideal-db.org/ideal.php?id=$1" + }, + "bioregistry.ido": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ido", + "name": "Infectious Disease Ontology Core", + "prefix": "ido", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/ido/terms?obo_id=IDO:$1" + }, + "bioregistry.ido.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ols4/ontologies/ido", + "id": "bioregistry.ido.miriam", + "name": "Infectious Disease Ontology", + "prefix": "ido", + "sameas": "bioregistry.ido", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/ido/terms?obo_id=IDO:$1" + }, + "bioregistry.ido.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/ols/ontologies/ido", + "id": "bioregistry.ido.n2t", + "name": "IDO through OLS", + "prefix": "ido", + "sameas": "bioregistry.ido", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/ido/terms?obo_id=IDO:$1" + }, + "bioregistry.idoo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.idoo", + "name": "Identifiers.org Ontology", + "prefix": "idoo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology#$1" + }, + "bioregistry.idoo.miriam": { + "authority": "miriam", + "homepage": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology", + "id": "bioregistry.idoo.miriam", + "name": "Identifiers.org Ontology", + "prefix": "idoo", + "sameas": "bioregistry.idoo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology#$1" + }, + "bioregistry.idoo.n2t": { + "authority": "n2t", + "homepage": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology", + "id": "bioregistry.idoo.n2t", + "name": "Identifiers.org Ontology", + "prefix": "idoo", + "sameas": "bioregistry.idoo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology#$1" + }, + "bioregistry.idot": { + "authority": "bioregistry", + "homepage": "http://biomodels.net/vocab/idot.rdf", + "id": "bioregistry.idot", + "name": "IdoT via biomodels.net", + "prefix": "idot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://biomodels.net/vocab/idot.rdf#$1" + }, + "bioregistry.idot.miriam": { + "authority": "miriam", + "homepage": "https://identifiers.org/", + "id": "bioregistry.idot.miriam", + "name": "Identifiers.org Terms", + "prefix": "idot", + "sameas": "bioregistry.idot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://biomodels.net/vocab/idot.rdf#$1" + }, + "bioregistry.idot.n2t": { + "authority": "n2t", + "homepage": "https://identifiers.org/", + "id": "bioregistry.idot.n2t", + "name": "IdoT via biomodels.net", + "prefix": "idot", + "sameas": "bioregistry.idot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://biomodels.net/vocab/idot.rdf#$1" + }, + "bioregistry.idr": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.idr", + "name": "Image Data Resource", + "prefix": "idr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://idr.openmicroscopy.org/search/?query=Name:idr$1" + }, + "bioregistry.idr.miriam": { + "authority": "miriam", + "homepage": "https://idr.openmicroscopy.org", + "id": "bioregistry.idr.miriam", + "name": "Image Data Resource", + "prefix": "idr", + "sameas": "bioregistry.idr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://idr.openmicroscopy.org/search/?query=Name:idr$1" + }, + "bioregistry.iedb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.iedb", + "name": "The Immune Epitope Database (IEDB)", + "prefix": "iedb", + "source": "bioregistry.io", + "subjects": [ + "biochemistry", + "immunology" + ], + "uri_format": "https://www.iedb.org/reference/$1" + }, + "bioregistry.iedb.miriam": { + "authority": "miriam", + "homepage": "https://www.lji.org/", + "id": "bioregistry.iedb.miriam", + "name": "Immune Epitope Database (IEDB)", + "prefix": "iedb", + "sameas": "bioregistry.iedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.iedb.org/reference/$1" + }, + "bioregistry.iedb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.iedb.org", + "id": "bioregistry.iedb.prefixcommons", + "name": "The Immune Epitope Database (IEDB)", + "prefix": "tied", + "sameas": "bioregistry.iedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.iedb.org/epId/$1" + }, + "bioregistry.iev": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.iev", + "name": "Event (INOH pathway ontology)", + "prefix": "iev", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.inoh.org/ontology-viewer/cgi-bin/InohOVAttr.php?type=IEV&id=$1" + }, + "bioregistry.iev.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.inoh.org", + "id": "bioregistry.iev.prefixcommons", + "name": "Event (INOH pathway ontology)", + "prefix": "iev", + "sameas": "bioregistry.iev", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.inoh.org/ontology-viewer/cgi-bin/InohOVAttr.php?type=IEV&id=$1" + }, + "bioregistry.igrhcellid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.igrhcellid", + "name": "Integrated Genomic Resources of human Cell Lines for Identification", + "prefix": "igrhcellid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://igrcid.ibms.sinica.edu.tw/cgi-bin/cell_line_view.cgi?cl_name=$1" + }, + "bioregistry.igrhcellid.cellosaurus": { + "authority": "cellosaurus", + "homepage": "http://igrcid.ibms.sinica.edu.tw/cgi-bin/index.cgi", + "id": "bioregistry.igrhcellid.cellosaurus", + "name": "Integrated Genomic Resources of human Cell Lines for Identification", + "prefix": "IGRhCellID", + "sameas": "bioregistry.igrhcellid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://igrcid.ibms.sinica.edu.tw/cgi-bin/cell_line_view.cgi?cl_name=$1" + }, + "bioregistry.igsn": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.igsn", + "name": "International Generic Sample Number", + "prefix": "igsn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://igsn.org/$1" + }, + "bioregistry.igsn.miriam": { + "authority": "miriam", + "homepage": "http://www.geosamples.org/", + "id": "bioregistry.igsn.miriam", + "name": "International Geo Sample Number", + "prefix": "igsn", + "sameas": "bioregistry.igsn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://igsn.org/$1" + }, + "bioregistry.igsn.n2t": { + "authority": "n2t", + "homepage": "http://www.geosamples.org/", + "id": "bioregistry.igsn.n2t", + "name": "International Geo Sample Number", + "prefix": "igsn", + "sameas": "bioregistry.igsn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "hdl.handle.net/10273/$1" + }, + "bioregistry.igsr": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.igsr", + "name": "The International Genome Sample Resource", + "prefix": "igsr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.internationalgenome.org/data-portal/sample/$1" + }, + "bioregistry.igsr.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.internationalgenome.org/", + "id": "bioregistry.igsr.cellosaurus", + "name": "International Genome Sample Resource", + "prefix": "IGSR", + "sameas": "bioregistry.igsr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.internationalgenome.org/data-portal/sample/$1" + }, + "bioregistry.imanis": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.imanis", + "name": "Imanis Life Sciences cell line products", + "prefix": "imanis", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.imanislife.com/?s=$1" + }, + "bioregistry.imanis.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.imanislife.com/collections/cell-lines/", + "id": "bioregistry.imanis.cellosaurus", + "name": "Imanis Life Sciences cell line products", + "prefix": "Imanis", + "sameas": "bioregistry.imanis", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.imanislife.com/?s=$1" + }, + "bioregistry.imex": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.imex", + "name": "International Molecular Exchange", + "prefix": "imex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/intact/imex/main.xhtml?query=$1" + }, + "bioregistry.imex.miriam": { + "authority": "miriam", + "homepage": "https://www.imexconsortium.org/", + "id": "bioregistry.imex.miriam", + "name": "IMEx", + "prefix": "imex", + "sameas": "bioregistry.imex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/intact/imex/main.xhtml?query=$1" + }, + "bioregistry.imex.n2t": { + "authority": "n2t", + "homepage": "https://www.imexconsortium.org/", + "id": "bioregistry.imex.n2t", + "name": "IMEx Consortium running at EBI", + "prefix": "imex", + "sameas": "bioregistry.imex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/intact/imex/main.xhtml?query=$1" + }, + "bioregistry.imex.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://disber.net/imexdrupal/", + "id": "bioregistry.imex.prefixcommons", + "name": "International Molecular Exchange", + "prefix": "imex", + "sameas": "bioregistry.imex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/intact/imex/main.xhtml?query=$1" + }, + "bioregistry.img.gene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.img.gene", + "name": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", + "prefix": "img.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=GeneDetail&gene_oid=$1" + }, + "bioregistry.img.gene.miriam": { + "authority": "miriam", + "homepage": "http://img.jgi.doe.gov/", + "id": "bioregistry.img.gene.miriam", + "name": "Integrated Microbial Genomes Gene", + "prefix": "img.gene", + "sameas": "bioregistry.img.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=GeneDetail&gene_oid=$1" + }, + "bioregistry.img.gene.n2t": { + "authority": "n2t", + "homepage": "http://img.jgi.doe.gov/", + "id": "bioregistry.img.gene.n2t", + "name": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", + "prefix": "img.gene", + "sameas": "bioregistry.img.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=GeneDetail&gene_oid=$1" + }, + "bioregistry.img.gene.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.img.gene.prefixcommons", + "name": "Integrated Microbial Genomes Gene", + "prefix": "img.gene", + "sameas": "bioregistry.img.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=GeneDetail&gene_oid=$1" + }, + "bioregistry.img.taxon": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.img.taxon", + "name": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", + "prefix": "img.taxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=TaxonDetail&taxon_oid=$1" + }, + "bioregistry.img.taxon.miriam": { + "authority": "miriam", + "homepage": "http://img.jgi.doe.gov/", + "id": "bioregistry.img.taxon.miriam", + "name": "Integrated Microbial Genomes Taxon", + "prefix": "img.taxon", + "sameas": "bioregistry.img.taxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=TaxonDetail&taxon_oid=$1" + }, + "bioregistry.img.taxon.n2t": { + "authority": "n2t", + "homepage": "http://img.jgi.doe.gov/", + "id": "bioregistry.img.taxon.n2t", + "name": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", + "prefix": "img.taxon", + "sameas": "bioregistry.img.taxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=TaxonDetail&taxon_oid=$1" + }, + "bioregistry.img.taxon.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.img.taxon.prefixcommons", + "name": "Integrated Microbial Genomes Taxon", + "prefix": "img.taxon", + "sameas": "bioregistry.img.taxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://img.jgi.doe.gov/cgi-bin/m/main.cgi?section=TaxonDetail&taxon_oid=$1" + }, + "bioregistry.imgt.hla": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.imgt.hla", + "name": "IMGT/HLA human major histocompatibility complex sequence database", + "prefix": "imgt.hla", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/ipd/imgt/hla/cells/cell/?cellid=$1" + }, + "bioregistry.imgt.hla.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ebi.ac.uk/ipd/imgt/hla/", + "id": "bioregistry.imgt.hla.cellosaurus", + "name": "IPD-IMGT/HLA database", + "prefix": "IPD-IMGT/HLA", + "sameas": "bioregistry.imgt.hla", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/ipd/imgt/hla/cells/cell/?cellid=$1" + }, + "bioregistry.imgt.hla.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/imgt/hla/allele.html", + "id": "bioregistry.imgt.hla.miriam", + "name": "IMGT HLA", + "prefix": "imgt.hla", + "sameas": "bioregistry.imgt.hla", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/cgi-bin/imgt/hla/get_allele.cgi?$1" + }, + "bioregistry.imgt.hla.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/imgt/hla/allele.html", + "id": "bioregistry.imgt.hla.n2t", + "name": "IMGT HLA at EBI", + "prefix": "imgt.hla", + "sameas": "bioregistry.imgt.hla", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/cgi-bin/imgt/hla/get_allele.cgi?$1" + }, + "bioregistry.imgt.hla.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/imgt/hla/", + "id": "bioregistry.imgt.hla.prefixcommons", + "name": "IMGT/HLA", + "prefix": "imgthla", + "sameas": "bioregistry.imgt.hla", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/cgi-bin/ipd/imgt/hla/get_allele.cgi?" + }, + "bioregistry.imgt.ligm": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.imgt.ligm", + "name": "ImMunoGeneTics database covering immunoglobulins and T-cell receptors", + "prefix": "imgt.ligm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.imgt.org/ligmdb/view?id=$1" + }, + "bioregistry.imgt.ligm.miriam": { + "authority": "miriam", + "homepage": "http://www.imgt.org/", + "id": "bioregistry.imgt.ligm.miriam", + "name": "IMGT LIGM", + "prefix": "imgt.ligm", + "sameas": "bioregistry.imgt.ligm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.imgt.org/ligmdb/view?id=$1" + }, + "bioregistry.imgt.ligm.n2t": { + "authority": "n2t", + "homepage": "http://www.imgt.org/", + "id": "bioregistry.imgt.ligm.n2t", + "name": "IMGT LIGM at CNRS", + "prefix": "imgt.ligm", + "sameas": "bioregistry.imgt.ligm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.imgt.org/ligmdb/view?id=$1" + }, + "bioregistry.imgt.primerdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.imgt.primerdb", + "name": "IMGT/PRIMER-DB", + "prefix": "imgt.primerdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://imgt.org/IMGTPrimerDB/Check_PrDB.pl?numacc0=$1&origin=view&source=PrList" + }, + "bioregistry.imgt.primerdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://imgt.org/IMGTPrimerDB/", + "id": "bioregistry.imgt.primerdb.prefixcommons", + "name": "IMGT/PRIMER-DB", + "prefix": "imgt.primerdb", + "sameas": "bioregistry.imgt.primerdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://imgt.org/IMGTPrimerDB/Check_PrDB.pl?numacc0=$1&origin=view&source=PrList" + }, + "bioregistry.imotdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.imotdb", + "name": "Database of Spatially Interacting Motifs in Proteins", + "prefix": "imotdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://caps.ncbs.res.in/cgi-bin/mini/databases/imotdb/imotdb.cgi?sfcode=$1" + }, + "bioregistry.imotdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://caps.ncbs.res.in/imotdb/", + "id": "bioregistry.imotdb.prefixcommons", + "name": "Database of Spatially Interacting Motifs in Proteins", + "prefix": "imotdb", + "sameas": "bioregistry.imotdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://caps.ncbs.res.in/cgi-bin/mini/databases/imotdb/imotdb.cgi?sfcode=$1" + }, + "bioregistry.imr": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.imr", + "name": "MoleculeRole Ontology (INOH Protein name/family name ontology)", + "prefix": "imr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.inoh.org/ontology-viewer/cgi-bin/InohOVAttr.php?type=IMR&id=$1" + }, + "bioregistry.imr.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.inoh.org", + "id": "bioregistry.imr.prefixcommons", + "name": "MoleculeRole Ontology (INOH Protein name/family name ontology)", + "prefix": "imr", + "sameas": "bioregistry.imr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.inoh.org/ontology-viewer/cgi-bin/InohOVAttr.php?type=IMR&id=$1" + }, + "bioregistry.inaturalist.observation": { + "authority": "bioregistry", + "homepage": "https://www.inaturalist.org/observations", + "id": "bioregistry.inaturalist.observation", + "name": "iNaturalist observation ID", + "prefix": "inaturalist.observation", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.inaturalist.org/observations/$1" + }, + "bioregistry.inaturalist.observation.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.inaturalist.observation.wikidata", + "name": "iNaturalist observation ID", + "prefix": "P5683", + "sameas": "bioregistry.inaturalist.observation", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.inaturalist.org/observations/$1" + }, + "bioregistry.inaturalist.place": { + "authority": "bioregistry", + "homepage": "https://www.inaturalist.org/places", + "id": "bioregistry.inaturalist.place", + "name": "iNaturalist place ID", + "prefix": "inaturalist.place", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.inaturalist.org/places/$1" + }, + "bioregistry.inaturalist.place.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.inaturalist.place.wikidata", + "name": "iNaturalist place ID", + "prefix": "P7471", + "sameas": "bioregistry.inaturalist.place", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.inaturalist.org/places/$1" + }, + "bioregistry.inaturalist.taxon": { + "authority": "bioregistry", + "homepage": "https://www.inaturalist.org/taxa", + "id": "bioregistry.inaturalist.taxon", + "name": "iNaturalist Taxonomy", + "prefix": "inaturalist.taxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.inaturalist.org/taxa/$1" + }, + "bioregistry.inaturalist.taxon.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.inaturalist.taxon.wikidata", + "name": "iNaturalist taxon ID", + "prefix": "P3151", + "sameas": "bioregistry.inaturalist.taxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.inaturalist.org/taxa/$1" + }, + "bioregistry.inchi": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.inchi", + "name": "IUPAC International Chemical Identifier", + "prefix": "inchi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://chemapps.stolaf.edu/jmol/jmol.php?&model=$1" + }, + "bioregistry.inchi.miriam": { + "authority": "miriam", + "homepage": "http://www.chemspider.com/", + "id": "bioregistry.inchi.miriam", + "name": "InChI", + "prefix": "inchi", + "sameas": "bioregistry.inchi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.chemspider.com/$1" + }, + "bioregistry.inchi.n2t": { + "authority": "n2t", + "homepage": "http://webbook.nist.gov/chemistry", + "id": "bioregistry.inchi.n2t", + "name": "InChI through NIST", + "prefix": "inchi", + "sameas": "bioregistry.inchi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://webbook.nist.gov/cgi/cbook.cgi?$1" + }, + "bioregistry.inchi.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.inchi.wikidata", + "name": "InChI", + "prefix": "P234", + "sameas": "bioregistry.inchi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://chemapps.stolaf.edu/jmol/jmol.php?&model=$1" + }, + "bioregistry.inchikey": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.inchikey", + "name": "InChiKey resolver at NCI", + "prefix": "inchikey", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/sites/entrez?cmd=search&db=pccompound&term=%22$1%22%5BInChIKey%5D" + }, + "bioregistry.inchikey.miriam": { + "authority": "miriam", + "homepage": "http://www.chemspider.com/", + "id": "bioregistry.inchikey.miriam", + "name": "InChIKey", + "prefix": "inchikey", + "sameas": "bioregistry.inchikey", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.chemspider.com/inchikey=$1" + }, + "bioregistry.inchikey.n2t": { + "authority": "n2t", + "homepage": "http://cactus.nci.nih.gov/chemical/structure", + "id": "bioregistry.inchikey.n2t", + "name": "InChiKey resolver at NCI", + "prefix": "inchikey", + "sameas": "bioregistry.inchikey", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cactus.nci.nih.gov/chemical/structure/$1/names" + }, + "bioregistry.inchikey.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.inchikey.wikidata", + "name": "InChIKey", + "prefix": "P235", + "sameas": "bioregistry.inchikey", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/sites/entrez?cmd=search&db=pccompound&term=%22$1%22%5BInChIKey%5D" + }, + "bioregistry.innatedb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.innatedb", + "name": "A Knowledge Resource for Innate Immunity Interactions and Pathways", + "prefix": "innatedb", + "source": "bioregistry.io", + "subjects": [ + "genetics", + "biochemistry", + "immunology" + ], + "uri_format": "http://www.innatedb.ca/getGeneCard.do?id=$1" + }, + "bioregistry.innatedb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.innatedb.ca/", + "id": "bioregistry.innatedb.prefixcommons", + "name": "A Knowledge Resource for Innate Immunity Interactions and Pathways", + "prefix": "innatedb", + "sameas": "bioregistry.innatedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.innatedb.ca/getGeneCard.do?id=$1" + }, + "bioregistry.ino": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ino", + "name": "INO: Interaction Network Ontology", + "prefix": "ino", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/INO_$1" + }, + "bioregistry.ino.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.ino.biolink", + "name": null, + "prefix": "INO", + "sameas": "bioregistry.ino", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/INO_$1" + }, + "bioregistry.insdc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.insdc", + "name": "International Nucleotide Sequence Database Collaboration (GenBank, EMBL, DDBJ)", + "prefix": "insdc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1" + }, + "bioregistry.insdc.cds": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.insdc.cds", + "name": "INSDC CDS through NCBI", + "prefix": "insdc.cds", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1" + }, + "bioregistry.insdc.cds.miriam": { + "authority": "miriam", + "homepage": "http://getentry.ddbj.nig.ac.jp", + "id": "bioregistry.insdc.cds.miriam", + "name": "INSDC CDS", + "prefix": "insdc.cds", + "sameas": "bioregistry.insdc.cds", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://getentry.ddbj.nig.ac.jp/getentry/dad/$1" + }, + "bioregistry.insdc.cds.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/protein/", + "id": "bioregistry.insdc.cds.n2t", + "name": "INSDC CDS through NCBI", + "prefix": "insdc.cds", + "sameas": "bioregistry.insdc.cds", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1" + }, + "bioregistry.insdc.gca": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.insdc.gca", + "name": "Genome assembly database NCBI", + "prefix": "insdc.gca", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/assembly/$1" + }, + "bioregistry.insdc.gca.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ena/browse/genome-assembly-database", + "id": "bioregistry.insdc.gca.miriam", + "name": "Genome assembly database", + "prefix": "insdc.gca", + "sameas": "bioregistry.insdc.gca", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ena/data/view/$1" + }, + "bioregistry.insdc.gca.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/assembly/", + "id": "bioregistry.insdc.gca.n2t", + "name": "Genome assembly database NCBI", + "prefix": "insdc.gca", + "sameas": "bioregistry.insdc.gca", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/assembly/$1" + }, + "bioregistry.insdc.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/Genbank/", + "id": "bioregistry.insdc.miriam", + "name": "Nucleotide Sequence Database", + "prefix": "insdc", + "sameas": "bioregistry.insdc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1" + }, + "bioregistry.insdc.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/nuccore/", + "id": "bioregistry.insdc.n2t", + "name": "INSDC through Nucleotide database at NCBI", + "prefix": "insdc", + "sameas": "bioregistry.insdc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1" + }, + "bioregistry.insdc.sra": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.insdc.sra", + "name": "Sequence Read Archive at NCBI", + "prefix": "insdc.sra", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/sra/$1" + }, + "bioregistry.insdc.sra.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/sra", + "id": "bioregistry.insdc.sra.miriam", + "name": "Sequence Read Archive", + "prefix": "insdc.sra", + "sameas": "bioregistry.insdc.sra", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/sra/$1" + }, + "bioregistry.insdc.sra.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/sra", + "id": "bioregistry.insdc.sra.n2t", + "name": "Sequence Read Archive at NCBI", + "prefix": "insdc.sra", + "sameas": "bioregistry.insdc.sra", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/sra/$1" + }, + "bioregistry.intact": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.intact", + "name": "Protein interaction database and analysis system", + "prefix": "intact", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/intact/interactors/id:$1*" + }, + "bioregistry.intact.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/intact/", + "id": "bioregistry.intact.miriam", + "name": "IntAct", + "prefix": "intact", + "sameas": "bioregistry.intact", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/intact/interaction/$1" + }, + "bioregistry.intact.molecule": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.intact.molecule", + "name": "IntAct Molecule at EBI", + "prefix": "intact.molecule", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/intact/molecule/$1" + }, + "bioregistry.intact.molecule.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/intact/", + "id": "bioregistry.intact.molecule.miriam", + "name": "IntAct Molecule", + "prefix": "intact.molecule", + "sameas": "bioregistry.intact.molecule", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/intact/molecule/$1" + }, + "bioregistry.intact.molecule.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/intact/", + "id": "bioregistry.intact.molecule.n2t", + "name": "IntAct Molecule at EBI", + "prefix": "intact.molecule", + "sameas": "bioregistry.intact.molecule", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/intact/molecule/$1" + }, + "bioregistry.intact.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/intact/", + "id": "bioregistry.intact.n2t", + "name": "IntAct at EBI", + "prefix": "intact", + "sameas": "bioregistry.intact", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/intact/interaction/$1" + }, + "bioregistry.intact.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/intact", + "id": "bioregistry.intact.prefixcommons", + "name": "The IntAct molecular interaction database", + "prefix": "intact", + "sameas": "bioregistry.intact", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/intact/pages/details/details.xhtml?interactionAc=$1" + }, + "bioregistry.intact.uniprot": { + "authority": "uniprot", + "homepage": "https://www.ebi.ac.uk/intact/", + "id": "bioregistry.intact.uniprot", + "name": "Protein interaction database and analysis system", + "prefix": "DB-0051", + "sameas": "bioregistry.intact", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/intact/interactors/id:$1*" + }, + "bioregistry.interfil": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.interfil", + "name": "Human Intermediate Filament Database", + "prefix": "interfil", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.interfil.org/details.php?id=$1" + }, + "bioregistry.interfil.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.interfil.org", + "id": "bioregistry.interfil.prefixcommons", + "name": "Human Intermediate Filament Database", + "prefix": "interfil", + "sameas": "bioregistry.interfil", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.interfil.org/details.php?id=$1" + }, + "bioregistry.interlex": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.interlex", + "name": "Interlex ID", + "prefix": "interlex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://scicrunch.org/scicrunch/interlex/view/ilx_$1" + }, + "bioregistry.interlex.miriam": { + "authority": "miriam", + "homepage": "https://www.fdilab.org", + "id": "bioregistry.interlex.miriam", + "name": "InterLex", + "prefix": "ilx", + "sameas": "bioregistry.interlex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://scicrunch.org/scicrunch/interlex/view/ilx_$1" + }, + "bioregistry.interpro": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.interpro", + "name": "Integrated resource of protein families, domains and functional sites", + "prefix": "interpro", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/interpro/entry/$1" + }, + "bioregistry.interpro.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.interpro.biolink", + "name": null, + "prefix": "interpro", + "sameas": "bioregistry.interpro", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/interpro/entry/$1" + }, + "bioregistry.interpro.go": { + "authority": "go", + "homepage": "http://www.ebi.ac.uk/interpro/", + "id": "bioregistry.interpro.go", + "name": "InterPro database of protein domains and motifs", + "prefix": "InterPro", + "sameas": "bioregistry.interpro", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/interpro/entry/$1" + }, + "bioregistry.interpro.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/interpro/", + "id": "bioregistry.interpro.miriam", + "name": "InterPro", + "prefix": "interpro", + "sameas": "bioregistry.interpro", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/interpro/entry/$1" + }, + "bioregistry.interpro.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/interpro/", + "id": "bioregistry.interpro.n2t", + "name": "InterPro", + "prefix": "interpro", + "sameas": "bioregistry.interpro", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/interpro/entry/$1" + }, + "bioregistry.interpro.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/interpro", + "id": "bioregistry.interpro.prefixcommons", + "name": "Integrated resource of protein families, domains and functional sites", + "prefix": "interpro", + "sameas": "bioregistry.interpro", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/interpro/IEntry?ac=$1" + }, + "bioregistry.interpro.uniprot": { + "authority": "uniprot", + "homepage": "https://www.ebi.ac.uk/interpro/", + "id": "bioregistry.interpro.uniprot", + "name": "Integrated resource of protein families, domains and functional sites", + "prefix": "DB-0052", + "sameas": "bioregistry.interpro", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/interpro/entry/$1" + }, + "bioregistry.interpro.wikidata": { + "authority": "wikidata", + "homepage": "https://www.ebi.ac.uk/interpro/", + "id": "bioregistry.interpro.wikidata", + "name": "InterPro ID", + "prefix": "P2926", + "sameas": "bioregistry.interpro", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/interpro/entry/$1" + }, + "bioregistry.ipi": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ipi", + "name": "International Protein Index", + "prefix": "ipi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/cgi-bin/dbfetch?db=IPI&id=$1&format=default" + }, + "bioregistry.ipi.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/IPI", + "id": "bioregistry.ipi.prefixcommons", + "name": "International Protein Index", + "prefix": "ipi", + "sameas": "bioregistry.ipi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/cgi-bin/dbfetch?db=IPI&id=$1&format=default" + }, + "bioregistry.ird.segment": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ird.segment", + "name": "IRD Segment Sequence", + "prefix": "ird.segment", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.fludb.org/brc/fluSegmentDetails.do?ncbiGenomicAccession=$1" + }, + "bioregistry.ird.segment.miriam": { + "authority": "miriam", + "homepage": "http://www.fludb.org/", + "id": "bioregistry.ird.segment.miriam", + "name": "IRD Segment Sequence", + "prefix": "ird.segment", + "sameas": "bioregistry.ird.segment", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.fludb.org/brc/fluSegmentDetails.do?ncbiGenomicAccession=$1" + }, + "bioregistry.ird.segment.n2t": { + "authority": "n2t", + "homepage": "http://www.fludb.org/", + "id": "bioregistry.ird.segment.n2t", + "name": "IRD at BioHealthBase", + "prefix": "ird.segment", + "sameas": "bioregistry.ird.segment", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.fludb.org/brc/fluSegmentDetails.do?ncbiGenomicAccession=$1" + }, + "bioregistry.ird.segment.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.ird.segment.prefixcommons", + "name": "IRD Segment Sequence", + "prefix": "ird.segment", + "sameas": "bioregistry.ird.segment", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.fludb.org/brc/fluSegmentDetails.do?ncbiGenomicAccession=$1" + }, + "bioregistry.irefweb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.irefweb", + "name": "iRefWeb Protein Interaction Reference Index", + "prefix": "irefweb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://wodaklab.org/iRefWeb/interaction/show/$1" + }, + "bioregistry.irefweb.miriam": { + "authority": "miriam", + "homepage": "http://wodaklab.org/iRefWeb/", + "id": "bioregistry.irefweb.miriam", + "name": "iRefWeb", + "prefix": "irefweb", + "sameas": "bioregistry.irefweb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://wodaklab.org/iRefWeb/interaction/show/$1" + }, + "bioregistry.irefweb.n2t": { + "authority": "n2t", + "homepage": "http://wodaklab.org/iRefWeb/", + "id": "bioregistry.irefweb.n2t", + "name": "iRefWeb Protein Interaction Reference Index", + "prefix": "irefweb", + "sameas": "bioregistry.irefweb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://wodaklab.org/iRefWeb/interaction/show/$1" + }, + "bioregistry.irefweb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://wodaklab.org/iRefWeb/", + "id": "bioregistry.irefweb.prefixcommons", + "name": "Interaction Reference Index Web Interface", + "prefix": "irefweb", + "sameas": "bioregistry.irefweb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://wodaklab.org/iRefWeb/interaction/show/$1" + }, + "bioregistry.iresite": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.iresite", + "name": "IRESite: The database of experimentally verified IRES structures", + "prefix": "iresite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.iresite.org/IRESite_web.php?page=view&entry_id=$1" + }, + "bioregistry.iresite.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.iresite.org", + "id": "bioregistry.iresite.prefixcommons", + "name": "IRESite: The database of experimentally verified IRES structures", + "prefix": "iresite", + "sameas": "bioregistry.iresite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.iresite.org/IRESite_web.php?page=view&entry_id=$1" + }, + "bioregistry.isbn": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.isbn", + "name": "International Standard Book Number", + "prefix": "isbn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "https://www.worldcat.org/search?q=bn%3A$1" + }, + "bioregistry.isbn.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.isbn.biocontext", + "name": null, + "prefix": "ISBN-13", + "sameas": "bioregistry.isbn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "https://monarchinitiative.org/ISBN13_$1" + }, + "bioregistry.isbn.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.isbn.biolink", + "name": null, + "prefix": "isbn", + "sameas": "bioregistry.isbn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "https://www.isbn-international.org/identifier/$1" + }, + "bioregistry.isbn.go": { + "authority": "go", + "homepage": "https://www.worldcat.org", + "id": "bioregistry.isbn.go", + "name": "International Standard Book Number", + "prefix": "ISBN", + "sameas": "bioregistry.isbn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "https://www.worldcat.org/search?q=bn%3A$1" + }, + "bioregistry.isbn.miriam": { + "authority": "miriam", + "homepage": "http://isbndb.com/", + "id": "bioregistry.isbn.miriam", + "name": "ISBN", + "prefix": "isbn", + "sameas": "bioregistry.isbn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://isbndb.com/search-all.html?kw=$1" + }, + "bioregistry.isbn.n2t": { + "authority": "n2t", + "homepage": "http://isbndb.com/", + "id": "bioregistry.isbn.n2t", + "name": "ISBNDB - ISBN Database", + "prefix": "isbn", + "sameas": "bioregistry.isbn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://isbndb.com/search-all.html?kw=$1" + }, + "bioregistry.isbn.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://isbndb.com/", + "id": "bioregistry.isbn.prefixcommons", + "name": "International Standard Book Number", + "prefix": "isbn", + "sameas": "bioregistry.isbn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "http://isbndb.com/search-all.html?kw=$1" + }, + "bioregistry.isfinder": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.isfinder", + "name": "Insertion sequence elements database", + "prefix": "isfinder", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www-is.biotoul.fr/scripts/ficheIS.php?name=$1" + }, + "bioregistry.isfinder.miriam": { + "authority": "miriam", + "homepage": "http://www-is.biotoul.fr/i", + "id": "bioregistry.isfinder.miriam", + "name": "ISFinder", + "prefix": "isfinder", + "sameas": "bioregistry.isfinder", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www-is.biotoul.fr/scripts/ficheIS.php?name=$1" + }, + "bioregistry.isfinder.n2t": { + "authority": "n2t", + "homepage": "http://www-is.biotoul.fr/i", + "id": "bioregistry.isfinder.n2t", + "name": "IS Finder at CNRS", + "prefix": "isfinder", + "sameas": "bioregistry.isfinder", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www-is.biotoul.fr/scripts/ficheIS.php?name=$1" + }, + "bioregistry.isfinder.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www-is.biotoul.fr", + "id": "bioregistry.isfinder.prefixcommons", + "name": "IS Finder", + "prefix": "isfinder", + "sameas": "bioregistry.isfinder", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www-is.biotoul.fr/index.html?is_special_name=$1" + }, + "bioregistry.isni": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.isni", + "name": "International Standard Name Identifier", + "prefix": "isni", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://isni.org/isni/$1" + }, + "bioregistry.isni.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.isni.biolink", + "name": null, + "prefix": "isni", + "sameas": "bioregistry.isni", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://isni.org/isni/$1" + }, + "bioregistry.isni.miriam": { + "authority": "miriam", + "homepage": "http://www.isni.org", + "id": "bioregistry.isni.miriam", + "name": "International Standard Name Identifier", + "prefix": "isni", + "sameas": "bioregistry.isni", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.isni.org/isni/$1" + }, + "bioregistry.isni.n2t": { + "authority": "n2t", + "homepage": "http://www.isni.org", + "id": "bioregistry.isni.n2t", + "name": "International Standard Name Identifier", + "prefix": "isni", + "sameas": "bioregistry.isni", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.isni.org/isni/$1" + }, + "bioregistry.issn": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.issn", + "name": "International Standard Serial Number", + "prefix": "issn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://portal.issn.org/resource/ISSN/$1" + }, + "bioregistry.issn.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.issn.biolink", + "name": null, + "prefix": "issn", + "sameas": "bioregistry.issn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://portal.issn.org/resource/ISSN/$1" + }, + "bioregistry.issn.miriam": { + "authority": "miriam", + "homepage": "https://portal.issn.org", + "id": "bioregistry.issn.miriam", + "name": "ISSN", + "prefix": "issn", + "sameas": "bioregistry.issn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://portal.issn.org/resource/ISSN/$1" + }, + "bioregistry.issn.n2t": { + "authority": "n2t", + "homepage": "https://portal.issn.org", + "id": "bioregistry.issn.n2t", + "name": "ISSN Portal", + "prefix": "issn", + "sameas": "bioregistry.issn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://portal.issn.org/resource/ISSN/$1" + }, + "bioregistry.itis": { + "authority": "bioregistry", + "homepage": "https://www.itis.gov/", + "id": "bioregistry.itis", + "name": "Integrated Taxonomic Information System", + "prefix": "itis", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&search_value=$1" + }, + "bioregistry.itis.wikidata": { + "authority": "wikidata", + "homepage": "https://www.itis.gov", + "id": "bioregistry.itis.wikidata", + "name": "ITIS TSN", + "prefix": "P815", + "sameas": "bioregistry.itis", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&search_value=$1" + }, + "bioregistry.ito": { + "authority": "bioregistry", + "homepage": "https://openbiolink.github.io/ITOExplorer/", + "id": "bioregistry.ito", + "name": "Intelligence Task Ontology and Knowledge Graph", + "prefix": "ito", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bioportal.bioontology.org/ontologies/ITO/?p=classes&conceptid=https://identifiers.org/ito:$1" + }, + "bioregistry.ito.miriam": { + "authority": "miriam", + "homepage": "https://bioportal.bioontology.org/", + "id": "bioregistry.ito.miriam", + "name": "Intelligence Task Ontology", + "prefix": "ito", + "sameas": "bioregistry.ito", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bioportal.bioontology.org/ontologies/ITO/?p=classes&conceptid=https://identifiers.org/ito:$1" + }, + "bioregistry.iuphar.family": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.iuphar.family", + "name": "The IUPHAR/BPS Guide to PHARMACOLOGY", + "prefix": "iuphar.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.iuphar-db.org/DATABASE/FamilyIntroductionForward?familyId=$1" + }, + "bioregistry.iuphar.family.miriam": { + "authority": "miriam", + "homepage": "http://www.guidetopharmacology.org/", + "id": "bioregistry.iuphar.family.miriam", + "name": "IUPHAR family", + "prefix": "iuphar.family", + "sameas": "bioregistry.iuphar.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.guidetopharmacology.org/GRAC/FamilyDisplayForward?familyId=$1" + }, + "bioregistry.iuphar.family.n2t": { + "authority": "n2t", + "homepage": "http://www.guidetopharmacology.org/", + "id": "bioregistry.iuphar.family.n2t", + "name": "The IUPHAR/BPS Guide to PHARMACOLOGY", + "prefix": "iuphar.family", + "sameas": "bioregistry.iuphar.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.guidetopharmacology.org/GRAC/FamilyDisplayForward?familyId=$1" + }, + "bioregistry.iuphar.family.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.iuphar-db.org/DATABASE/ReceptorFamiliesForward?type=GPCR", + "id": "bioregistry.iuphar.family.prefixcommons", + "name": "G protein-coupled receptors database", + "prefix": "iuphar.family", + "sameas": "bioregistry.iuphar.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.iuphar-db.org/DATABASE/FamilyIntroductionForward?familyId=$1" + }, + "bioregistry.iuphar.ligand": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.iuphar.ligand", + "name": "IUPHAR ligand at University of Edinburgh", + "prefix": "iuphar.ligand", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId=$1" + }, + "bioregistry.iuphar.ligand.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.iuphar.ligand.biolink", + "name": null, + "prefix": "GTOPDB", + "sameas": "bioregistry.iuphar.ligand", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId=$1" + }, + "bioregistry.iuphar.ligand.miriam": { + "authority": "miriam", + "homepage": "http://www.guidetopharmacology.org/GRAC/LigandListForward?database=all", + "id": "bioregistry.iuphar.ligand.miriam", + "name": "IUPHAR ligand", + "prefix": "iuphar.ligand", + "sameas": "bioregistry.iuphar.ligand", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId=$1" + }, + "bioregistry.iuphar.ligand.n2t": { + "authority": "n2t", + "homepage": "http://www.guidetopharmacology.org/GRAC/LigandListForward?database=all", + "id": "bioregistry.iuphar.ligand.n2t", + "name": "IUPHAR ligand at University of Edinburgh", + "prefix": "iuphar.ligand", + "sameas": "bioregistry.iuphar.ligand", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId=$1" + }, + "bioregistry.iuphar.ligand.wikidata": { + "authority": "wikidata", + "homepage": "https://www.guidetopharmacology.org/", + "id": "bioregistry.iuphar.ligand.wikidata", + "name": "Guide to Pharmacology Ligand ID", + "prefix": "P595", + "sameas": "bioregistry.iuphar.ligand", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId=$1" + }, + "bioregistry.iuphar.receptor": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.iuphar.receptor", + "name": "IUPHAR Receptor at University of Edinburgh", + "prefix": "iuphar.receptor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId=$1" + }, + "bioregistry.iuphar.receptor.go": { + "authority": "go", + "homepage": "http://www.iuphar.org/", + "id": "bioregistry.iuphar.receptor.go", + "name": "International Union of Pharmacology", + "prefix": "IUPHAR_RECEPTOR", + "sameas": "bioregistry.iuphar.receptor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId=$1" + }, + "bioregistry.iuphar.receptor.miriam": { + "authority": "miriam", + "homepage": "http://www.guidetopharmacology.org/targets.jsp", + "id": "bioregistry.iuphar.receptor.miriam", + "name": "IUPHAR receptor", + "prefix": "iuphar.receptor", + "sameas": "bioregistry.iuphar.receptor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId=$1" + }, + "bioregistry.iuphar.receptor.n2t": { + "authority": "n2t", + "homepage": "http://www.guidetopharmacology.org/targets.jsp", + "id": "bioregistry.iuphar.receptor.n2t", + "name": "IUPHAR Receptor at University of Edinburgh", + "prefix": "iuphar.receptor", + "sameas": "bioregistry.iuphar.receptor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId=$1" + }, + "bioregistry.iuphar.receptor.uniprot": { + "authority": "uniprot", + "homepage": "https://www.guidetopharmacology.org", + "id": "bioregistry.iuphar.receptor.uniprot", + "name": "IUPHAR/BPS Guide to PHARMACOLOGY", + "prefix": "DB-0182", + "sameas": "bioregistry.iuphar.receptor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId=$1" + }, + "bioregistry.iuphar.receptor.wikidata": { + "authority": "wikidata", + "homepage": "https://www.guidetopharmacology.org/GRAC/", + "id": "bioregistry.iuphar.receptor.wikidata", + "name": "Guide to Pharmacology Target ID", + "prefix": "P5458", + "sameas": "bioregistry.iuphar.receptor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId=$1" + }, + "bioregistry.ivdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ivdb", + "name": "Influenza Virus Database", + "prefix": "ivdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://influenza.psych.ac.cn/search/detail.jsp?segment.gb_id=$1" + }, + "bioregistry.ivdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://influenza.psych.ac.cn/", + "id": "bioregistry.ivdb.prefixcommons", + "name": "Influenza Virus Database", + "prefix": "ivdb", + "sameas": "bioregistry.ivdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://influenza.psych.ac.cn/search/detail.jsp?segment.gb_id=$1" + }, + "bioregistry.jax": { + "authority": "bioregistry", + "homepage": "https://www.jax.org/strain", + "id": "bioregistry.jax", + "name": "Jackson Laboratories Strain", + "prefix": "jax", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://jaxmice.jax.org/strain/$1" + }, + "bioregistry.jax.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.jax.biocontext", + "name": null, + "prefix": "JAX", + "sameas": "bioregistry.jax", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://jaxmice.jax.org/strain/$1" + }, + "bioregistry.jaxmice": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.jaxmice", + "name": "JAX Mice at Jackson Laboratory", + "prefix": "jaxmice", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://jaxmice.jax.org/strain/$1.html" + }, + "bioregistry.jaxmice.miriam": { + "authority": "miriam", + "homepage": "http://jaxmice.jax.org/", + "id": "bioregistry.jaxmice.miriam", + "name": "JAX Mice", + "prefix": "jaxmice", + "sameas": "bioregistry.jaxmice", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://jaxmice.jax.org/strain/$1.html" + }, + "bioregistry.jaxmice.n2t": { + "authority": "n2t", + "homepage": "http://jaxmice.jax.org/", + "id": "bioregistry.jaxmice.n2t", + "name": "JAX Mice at Jackson Laboratory", + "prefix": "jaxmice", + "sameas": "bioregistry.jaxmice", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://jaxmice.jax.org/strain/$1.html" + }, + "bioregistry.jcggdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.jcggdb", + "name": "Japan Consortium for Glycobiology and Glycotechnology Database", + "prefix": "jcggdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://jcggdb.jp/idb/jcggdb/$1" + }, + "bioregistry.jcggdb.miriam": { + "authority": "miriam", + "homepage": "http://jcggdb.jp/index_en.html", + "id": "bioregistry.jcggdb.miriam", + "name": "JCGGDB", + "prefix": "jcggdb", + "sameas": "bioregistry.jcggdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://jcggdb.jp/idb/jcggdb/$1" + }, + "bioregistry.jcggdb.n2t": { + "authority": "n2t", + "homepage": "http://jcggdb.jp/index_en.html", + "id": "bioregistry.jcggdb.n2t", + "name": "JCGGDB at Advanced Science Institute (Japan)", + "prefix": "jcggdb", + "sameas": "bioregistry.jcggdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://jcggdb.jp/idb/jcggdb/$1" + }, + "bioregistry.jcm": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.jcm", + "name": "Japan Collection of Microorganisms", + "prefix": "jcm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "microbiology" + ], + "uri_format": "http://www.jcm.riken.go.jp/cgi-bin/jcm/jcm_number?JCM=$1" + }, + "bioregistry.jcm.miriam": { + "authority": "miriam", + "homepage": "http://www.jcm.riken.go.jp/", + "id": "bioregistry.jcm.miriam", + "name": "Japan Collection of Microorganisms", + "prefix": "jcm", + "sameas": "bioregistry.jcm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.jcm.riken.go.jp/cgi-bin/jcm/jcm_number?JCM=$1" + }, + "bioregistry.jcm.n2t": { + "authority": "n2t", + "homepage": "http://www.jcm.riken.go.jp/", + "id": "bioregistry.jcm.n2t", + "name": "JCM at RIKEN BioResource Center", + "prefix": "jcm", + "sameas": "bioregistry.jcm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.jcm.riken.go.jp/cgi-bin/jcm/jcm_number?JCM=$1" + }, + "bioregistry.jcm.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.jcm.riken.go.jp/", + "id": "bioregistry.jcm.prefixcommons", + "name": "Japan Collection of Microorganisms", + "prefix": "jcm", + "sameas": "bioregistry.jcm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "microbiology" + ], + "uri_format": "http://www.jcm.riken.go.jp/cgi-bin/jcm/jcm_number?JCM=$1" + }, + "bioregistry.jcrb": { + "authority": "bioregistry", + "homepage": "https://cellbank.nibiohn.go.jp", + "id": "bioregistry.jcrb", + "name": "Japanese Collection of Research Bioresources Cell Bank", + "prefix": "jcrb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cellbank.nibiohn.go.jp//~cellbank/en/search_res_det.cgi?RNO=$1" + }, + "bioregistry.jcrb.cellosaurus": { + "authority": "cellosaurus", + "homepage": "http://cellbank.nibiohn.go.jp/english/", + "id": "bioregistry.jcrb.cellosaurus", + "name": "Japanese Collection of Research Bioresources Cell Bank", + "prefix": "JCRB", + "sameas": "bioregistry.jcrb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cellbank.nibiohn.go.jp//~cellbank/en/search_res_det.cgi?RNO=$1" + }, + "bioregistry.jcsd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.jcsd", + "name": "Japan Chemical Substance Dictionary", + "prefix": "jcsd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences" + ], + "uri_format": "http://nikkajiweb.jst.go.jp/nikkaji_web/pages/top_e.jsp?CONTENT=syosai&SN=$1" + }, + "bioregistry.jcsd.miriam": { + "authority": "miriam", + "homepage": "http://jglobal.jst.go.jp/en/", + "id": "bioregistry.jcsd.miriam", + "name": "Japan Chemical Substance Dictionary", + "prefix": "jcsd", + "sameas": "bioregistry.jcsd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://jglobal.jst.go.jp/en/redirect?Nikkaji_No=$1" + }, + "bioregistry.jcsd.n2t": { + "authority": "n2t", + "homepage": "http://jglobal.jst.go.jp/en/", + "id": "bioregistry.jcsd.n2t", + "name": "Japan Chemical Substance Dictionary", + "prefix": "jcsd", + "sameas": "bioregistry.jcsd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://jglobal.jst.go.jp/en/redirect?Nikkaji_No=$1" + }, + "bioregistry.jcsd.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.jcsd.prefixcommons", + "name": "Japan Chemical Substance Dictionary", + "prefix": "jcsd", + "sameas": "bioregistry.jcsd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences" + ], + "uri_format": "http://nikkajiweb.jst.go.jp/nikkaji_web/pages/top_e.jsp?CONTENT=syosai&SN=$1" + }, + "bioregistry.jstor": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.jstor", + "name": "Digital archive of scholarly articles", + "prefix": "jstor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.jstor.org/stable/$1" + }, + "bioregistry.jstor.go": { + "authority": "go", + "homepage": "https://www.jstor.org/", + "id": "bioregistry.jstor.go", + "name": "Digital archive of scholarly articles", + "prefix": "JSTOR", + "sameas": "bioregistry.jstor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.jstor.org/stable/$1" + }, + "bioregistry.jstor.miriam": { + "authority": "miriam", + "homepage": "http://www.jstor.org/", + "id": "bioregistry.jstor.miriam", + "name": "JSTOR", + "prefix": "jstor", + "sameas": "bioregistry.jstor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.jstor.org/stable/$1" + }, + "bioregistry.jstor.n2t": { + "authority": "n2t", + "homepage": "http://www.jstor.org/", + "id": "bioregistry.jstor.n2t", + "name": "JSTOR Online", + "prefix": "jstor", + "sameas": "bioregistry.jstor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.jstor.org/stable/$1" + }, + "bioregistry.jws": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.jws", + "name": "JWS Online Model Repository at Manchester", + "prefix": "jws", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://jjj.mib.ac.uk/models/$1" + }, + "bioregistry.jws.miriam": { + "authority": "miriam", + "homepage": "http://jjj.biochem.sun.ac.za/models/", + "id": "bioregistry.jws.miriam", + "name": "JWS Online", + "prefix": "jws", + "sameas": "bioregistry.jws", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://jjj.biochem.sun.ac.za/models/$1/" + }, + "bioregistry.jws.n2t": { + "authority": "n2t", + "homepage": "http://jjj.mib.ac.uk/index.html", + "id": "bioregistry.jws.n2t", + "name": "JWS Online Model Repository at Manchester", + "prefix": "jws", + "sameas": "bioregistry.jws", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://jjj.mib.ac.uk/models/$1" + }, + "bioregistry.jws.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://jjj.mib.ac.uk/index.html", + "id": "bioregistry.jws.prefixcommons", + "name": "JWS Online Model Repository", + "prefix": "jws", + "sameas": "bioregistry.jws", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://jjj.mib.ac.uk/cgi-bin/processModelSelection.py?keytype=modelname&keyword=$1" + }, + "bioregistry.kaggle": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kaggle", + "name": "Kaggle", + "prefix": "kaggle", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kaggle.com/$1" + }, + "bioregistry.kaggle.miriam": { + "authority": "miriam", + "homepage": "https://kaggle.com", + "id": "bioregistry.kaggle.miriam", + "name": "Kaggle", + "prefix": "kaggle", + "sameas": "bioregistry.kaggle", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kaggle.com/$1" + }, + "bioregistry.kaggle.n2t": { + "authority": "n2t", + "homepage": "https://kaggle.com", + "id": "bioregistry.kaggle.n2t", + "name": "Kaggle", + "prefix": "kaggle", + "sameas": "bioregistry.kaggle", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kaggle.com/$1" + }, + "bioregistry.kclb": { + "authority": "bioregistry", + "homepage": "https://cellbank.snu.ac.kr/english", + "id": "bioregistry.kclb", + "name": "Korean Cell Line Bank", + "prefix": "kclb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cellbank.snu.ac.kr/main/tmpl/sub_main.php?m_cd=6&m_id=0201&strQ=$1" + }, + "bioregistry.kclb.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://cellbank.snu.ac.kr/eng/", + "id": "bioregistry.kclb.cellosaurus", + "name": "Korean Cell Line Bank", + "prefix": "KCLB", + "sameas": "bioregistry.kclb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://cellbank.snu.ac.kr/main/tmpl/sub_main.php?m_cd=6&m_id=0201&strQ=$1" + }, + "bioregistry.kegg": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kegg", + "name": "KEGG at Kyoto University Bioinformatics Center", + "prefix": "kegg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genome.jp/dbget-bin/www_bget?$1" + }, + "bioregistry.kegg.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.kegg.biolink", + "name": null, + "prefix": "KEGG", + "sameas": "bioregistry.kegg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.brite": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kegg.brite", + "name": "KEGG BRITE", + "prefix": "kegg.brite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bioregistry.io/kegg.brite:$1" + }, + "bioregistry.kegg.brite.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.kegg.brite.biolink", + "name": null, + "prefix": "KEGG.BRITE", + "sameas": "bioregistry.kegg.brite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bioregistry.io/kegg.brite:$1" + }, + "bioregistry.kegg.brite.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.genome.jp/kegg/brite.html", + "id": "bioregistry.kegg.brite.prefixcommons", + "name": "KEGG BRITE", + "prefix": "kegg.brite", + "sameas": "bioregistry.kegg.brite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genome.jp/kegg-bin/get_htext?-p+/kegg/brite/br+br$1" + }, + "bioregistry.kegg.compound": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kegg.compound", + "name": "KEGG LIGAND Database", + "prefix": "kegg.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.compound.miriam": { + "authority": "miriam", + "homepage": "https://www.genome.jp/kegg/ligand.html", + "id": "bioregistry.kegg.compound.miriam", + "name": "KEGG Compound", + "prefix": "kegg.compound", + "sameas": "bioregistry.kegg.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.compound.n2t": { + "authority": "n2t", + "homepage": "https://www.genome.jp/kegg/ligand.html", + "id": "bioregistry.kegg.compound.n2t", + "name": "KEGG LIGAND Database", + "prefix": "kegg.compound", + "sameas": "bioregistry.kegg.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.compound.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.genome.jp/kegg/compound/", + "id": "bioregistry.kegg.compound.prefixcommons", + "name": "KEGG Compound", + "prefix": "kegg.compound", + "sameas": "bioregistry.kegg.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genome.jp/dbget-bin/www_bget?cpd:$1" + }, + "bioregistry.kegg.dgroup": { + "authority": "bioregistry", + "homepage": "http://www.genome.jp/kegg/reaction/", + "id": "bioregistry.kegg.dgroup", + "name": "KEGG Drug Group", + "prefix": "kegg.dgroup", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.dgroup.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.kegg.dgroup.biolink", + "name": null, + "prefix": "KEGG.DGROUP", + "sameas": "bioregistry.kegg.dgroup", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.disease": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kegg.disease", + "name": "KEGG Disease at Kyoto University Bioinformatics Center", + "prefix": "kegg.disease", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.disease.miriam": { + "authority": "miriam", + "homepage": "http://www.genome.jp/kegg/disease/", + "id": "bioregistry.kegg.disease.miriam", + "name": "KEGG Disease", + "prefix": "kegg.disease", + "sameas": "bioregistry.kegg.disease", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.disease.n2t": { + "authority": "n2t", + "homepage": "http://www.genome.jp/kegg/disease/", + "id": "bioregistry.kegg.disease.n2t", + "name": "KEGG Disease at Kyoto University Bioinformatics Center", + "prefix": "kegg.disease", + "sameas": "bioregistry.kegg.disease", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.disease.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.genome.jp/kegg/disease/", + "id": "bioregistry.kegg.disease.prefixcommons", + "name": "KEGG Disease", + "prefix": "kegg.disease", + "sameas": "bioregistry.kegg.disease", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genome.jp/dbget-bin/www_bget?ds:$1" + }, + "bioregistry.kegg.drug": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kegg.drug", + "name": "KEGG DRUG Database", + "prefix": "kegg.drug", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.drug.miriam": { + "authority": "miriam", + "homepage": "https://www.genome.jp/kegg/drug/", + "id": "bioregistry.kegg.drug.miriam", + "name": "KEGG Drug", + "prefix": "kegg.drug", + "sameas": "bioregistry.kegg.drug", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.drug.n2t": { + "authority": "n2t", + "homepage": "https://www.genome.jp/kegg/drug/", + "id": "bioregistry.kegg.drug.n2t", + "name": "KEGG DRUG Database", + "prefix": "kegg.drug", + "sameas": "bioregistry.kegg.drug", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.drug.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.genome.jp/kegg/drug/", + "id": "bioregistry.kegg.drug.prefixcommons", + "name": "KEGG Drug", + "prefix": "kegg.drug", + "sameas": "bioregistry.kegg.drug", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genome.jp/dbget-bin/www_bget?dr:$1" + }, + "bioregistry.kegg.environ": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kegg.environ", + "name": "KEGG ENVIRON Database", + "prefix": "kegg.environ", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.environ.miriam": { + "authority": "miriam", + "homepage": "http://www.genome.jp/kegg/drug/environ.html", + "id": "bioregistry.kegg.environ.miriam", + "name": "KEGG Environ", + "prefix": "kegg.environ", + "sameas": "bioregistry.kegg.environ", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.environ.n2t": { + "authority": "n2t", + "homepage": "http://www.genome.jp/kegg/drug/environ.html", + "id": "bioregistry.kegg.environ.n2t", + "name": "KEGG ENVIRON Database", + "prefix": "kegg.environ", + "sameas": "bioregistry.kegg.environ", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.enzyme": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kegg.enzyme", + "name": "KEGG Enzyme Database", + "prefix": "kegg.enzyme", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.enzyme.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.kegg.enzyme.biolink", + "name": null, + "prefix": "KEGG.ENZYME", + "sameas": "bioregistry.kegg.enzyme", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.enzyme.go": { + "authority": "go", + "homepage": "http://www.genome.jp/dbget-bin/www_bfind?enzyme", + "id": "bioregistry.kegg.enzyme.go", + "name": "KEGG Enzyme Database", + "prefix": "KEGG_ENZYME", + "sameas": "bioregistry.kegg.enzyme", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genome.jp/dbget-bin/www_bget?ec:$1" + }, + "bioregistry.kegg.genes": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kegg.genes", + "name": "KEGG GENES Database", + "prefix": "kegg.genes", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://bioregistry.io/kegg.genes:bsu:$1" + }, + "bioregistry.kegg.genes.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.kegg.genes.biolink", + "name": null, + "prefix": "KEGG.GENES", + "sameas": "bioregistry.kegg.genes", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://bioregistry.io/kegg.genes:bsu:$1" + }, + "bioregistry.kegg.genes.miriam": { + "authority": "miriam", + "homepage": "http://www.genome.jp/kegg/genes.html", + "id": "bioregistry.kegg.genes.miriam", + "name": "KEGG Genes", + "prefix": "kegg.genes", + "sameas": "bioregistry.kegg.genes", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.genes.n2t": { + "authority": "n2t", + "homepage": "http://www.genome.jp/kegg/genes.html", + "id": "bioregistry.kegg.genes.n2t", + "name": "KEGG GENES Database", + "prefix": "kegg.genes", + "sameas": "bioregistry.kegg.genes", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.genes.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.genome.jp/kegg/genes.html", + "id": "bioregistry.kegg.genes.prefixcommons", + "name": "KEGG Genes", + "prefix": "kegg.gene", + "sameas": "bioregistry.kegg.genes", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.genome.jp/dbget-bin/www_bget?[?species]:$1" + }, + "bioregistry.kegg.genome": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kegg.genome", + "name": "KEGG Genome Database", + "prefix": "kegg.genome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.genome.miriam": { + "authority": "miriam", + "homepage": "http://www.genome.jp/kegg/catalog/org_list.html", + "id": "bioregistry.kegg.genome.miriam", + "name": "KEGG Genome", + "prefix": "kegg.genome", + "sameas": "bioregistry.kegg.genome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.genome.n2t": { + "authority": "n2t", + "homepage": "http://www.genome.jp/kegg/catalog/org_list.html", + "id": "bioregistry.kegg.genome.n2t", + "name": "KEGG Genome Database", + "prefix": "kegg.genome", + "sameas": "bioregistry.kegg.genome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.genome.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.genome.jp/kegg/catalog/org_list.html", + "id": "bioregistry.kegg.genome.prefixcommons", + "name": "KEGG Genome", + "prefix": "kegg.genome", + "sameas": "bioregistry.kegg.genome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genome.jp/dbget-bin/www_bget?gn:$1" + }, + "bioregistry.kegg.glycan": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kegg.glycan", + "name": "KEGG GLYCAN Database", + "prefix": "kegg.glycan", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.glycan.miriam": { + "authority": "miriam", + "homepage": "https://www.genome.jp/kegg/glycan/", + "id": "bioregistry.kegg.glycan.miriam", + "name": "KEGG Glycan", + "prefix": "kegg.glycan", + "sameas": "bioregistry.kegg.glycan", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.glycan.n2t": { + "authority": "n2t", + "homepage": "https://www.genome.jp/kegg/glycan/", + "id": "bioregistry.kegg.glycan.n2t", + "name": "KEGG GLYCAN Database", + "prefix": "kegg.glycan", + "sameas": "bioregistry.kegg.glycan", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.glycan.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.genome.jp/kegg/glycan/", + "id": "bioregistry.kegg.glycan.prefixcommons", + "name": "KEGG Glycan", + "prefix": "kegg.glycan", + "sameas": "bioregistry.kegg.glycan", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genome.jp/dbget-bin/www_bget?gl:$1" + }, + "bioregistry.kegg.ligand": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kegg.ligand", + "name": "KEGG LIGAND Database", + "prefix": "kegg.ligand", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genome.jp/dbget-bin/www_bget?cpd:$1" + }, + "bioregistry.kegg.ligand.go": { + "authority": "go", + "homepage": "http://www.genome.ad.jp/kegg/docs/upd_ligand.html", + "id": "bioregistry.kegg.ligand.go", + "name": "KEGG LIGAND Database", + "prefix": "KEGG_LIGAND", + "sameas": "bioregistry.kegg.ligand", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genome.jp/dbget-bin/www_bget?cpd:$1" + }, + "bioregistry.kegg.metagenome": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kegg.metagenome", + "name": "KEGG Metagenome Database", + "prefix": "kegg.metagenome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.metagenome.miriam": { + "authority": "miriam", + "homepage": "http://www.genome.jp/kegg/catalog/org_list3.html", + "id": "bioregistry.kegg.metagenome.miriam", + "name": "KEGG Metagenome", + "prefix": "kegg.metagenome", + "sameas": "bioregistry.kegg.metagenome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.metagenome.n2t": { + "authority": "n2t", + "homepage": "http://www.genome.jp/kegg/catalog/org_list3.html", + "id": "bioregistry.kegg.metagenome.n2t", + "name": "KEGG Metagenome Database", + "prefix": "kegg.metagenome", + "sameas": "bioregistry.kegg.metagenome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.metagenome.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.kegg.metagenome.prefixcommons", + "name": "KEGG Metagenome", + "prefix": "kegg.metagenome", + "sameas": "bioregistry.kegg.metagenome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.genome.jp/kegg-bin/show_organism?org=$1" + }, + "bioregistry.kegg.miriam": { + "authority": "miriam", + "homepage": "http://www.kegg.jp/", + "id": "bioregistry.kegg.miriam", + "name": "Kyoto Encyclopedia of Genes and Genomes", + "prefix": "kegg", + "sameas": "bioregistry.kegg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.module": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kegg.module", + "name": "KEGG Module at Kyoto University Bioinformatics Center", + "prefix": "kegg.module", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.module.miriam": { + "authority": "miriam", + "homepage": "http://www.kegg.jp/kegg/module.html", + "id": "bioregistry.kegg.module.miriam", + "name": "KEGG Module", + "prefix": "kegg.module", + "sameas": "bioregistry.kegg.module", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.module.n2t": { + "authority": "n2t", + "homepage": "http://www.kegg.jp/kegg/module.html", + "id": "bioregistry.kegg.module.n2t", + "name": "KEGG Module at Kyoto University Bioinformatics Center", + "prefix": "kegg.module", + "sameas": "bioregistry.kegg.module", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.n2t": { + "authority": "n2t", + "homepage": "http://www.kegg.jp/", + "id": "bioregistry.kegg.n2t", + "name": "KEGG at Kyoto University Bioinformatics Center", + "prefix": "kegg", + "sameas": "bioregistry.kegg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.orthology": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kegg.orthology", + "name": "KEGG Orthology Database", + "prefix": "kegg.orthology", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.orthology.miriam": { + "authority": "miriam", + "homepage": "http://www.genome.jp/kegg/ko.html", + "id": "bioregistry.kegg.orthology.miriam", + "name": "KEGG Orthology", + "prefix": "kegg.orthology", + "sameas": "bioregistry.kegg.orthology", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.orthology.n2t": { + "authority": "n2t", + "homepage": "http://www.genome.jp/kegg/ko.html", + "id": "bioregistry.kegg.orthology.n2t", + "name": "KEGG Orthology Database", + "prefix": "kegg.orthology", + "sameas": "bioregistry.kegg.orthology", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.orthology.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.genome.jp/kegg/ko.html", + "id": "bioregistry.kegg.orthology.prefixcommons", + "name": "KEGG Orthology", + "prefix": "kegg.orthology", + "sameas": "bioregistry.kegg.orthology", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genome.jp/dbget-bin/www_bget?ko:$1" + }, + "bioregistry.kegg.pathway": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kegg.pathway", + "name": "KEGG Pathways Database", + "prefix": "kegg.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.pathway.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.kegg.pathway.biolink", + "name": null, + "prefix": "KEGG.PATHWAY", + "sameas": "bioregistry.kegg.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bioregistry.io/kegg.pathway:$1" + }, + "bioregistry.kegg.pathway.go": { + "authority": "go", + "homepage": "http://www.genome.jp/kegg/pathway.html", + "id": "bioregistry.kegg.pathway.go", + "name": "KEGG Pathways Database", + "prefix": "KEGG_PATHWAY", + "sameas": "bioregistry.kegg.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genome.jp/dbget-bin/www_bget?path:$1" + }, + "bioregistry.kegg.pathway.miriam": { + "authority": "miriam", + "homepage": "https://www.genome.jp/kegg/pathway.html", + "id": "bioregistry.kegg.pathway.miriam", + "name": "KEGG Pathway", + "prefix": "kegg.pathway", + "sameas": "bioregistry.kegg.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.pathway.n2t": { + "authority": "n2t", + "homepage": "https://www.genome.jp/kegg/pathway.html", + "id": "bioregistry.kegg.pathway.n2t", + "name": "KEGG PATHWAY Database", + "prefix": "kegg.pathway", + "sameas": "bioregistry.kegg.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.pathway.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.genome.jp/kegg/pathway.html", + "id": "bioregistry.kegg.pathway.prefixcommons", + "name": "KEGG Pathway", + "prefix": "kegg.pathway", + "sameas": "bioregistry.kegg.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genome.jp/dbget-bin/www_bget?map$1" + }, + "bioregistry.kegg.rclass": { + "authority": "bioregistry", + "homepage": "http://www.genome.jp/kegg/reaction/", + "id": "bioregistry.kegg.rclass", + "name": "KEGG Reaction Class", + "prefix": "kegg.rclass", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genome.jp/dbget-bin/www_bget?rc:$1" + }, + "bioregistry.kegg.rclass.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.kegg.rclass.biolink", + "name": null, + "prefix": "KEGG.RCLASS", + "sameas": "bioregistry.kegg.rclass", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genome.jp/dbget-bin/www_bget?rc:$1" + }, + "bioregistry.kegg.reaction": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kegg.reaction", + "name": "KEGG Reaction Database", + "prefix": "kegg.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.reaction.go": { + "authority": "go", + "homepage": "http://www.genome.jp/kegg/reaction/", + "id": "bioregistry.kegg.reaction.go", + "name": "KEGG Reaction Database", + "prefix": "KEGG_REACTION", + "sameas": "bioregistry.kegg.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.genome.jp/dbget-bin/www_bget?rn:$1" + }, + "bioregistry.kegg.reaction.miriam": { + "authority": "miriam", + "homepage": "https://www.genome.jp/kegg/reaction/", + "id": "bioregistry.kegg.reaction.miriam", + "name": "KEGG Reaction", + "prefix": "kegg.reaction", + "sameas": "bioregistry.kegg.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.reaction.n2t": { + "authority": "n2t", + "homepage": "https://www.genome.jp/kegg/reaction/", + "id": "bioregistry.kegg.reaction.n2t", + "name": "KEGG Reaction Database", + "prefix": "kegg.reaction", + "sameas": "bioregistry.kegg.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.reaction.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.genome.jp/kegg/reaction/", + "id": "bioregistry.kegg.reaction.prefixcommons", + "name": "KEGG Reaction", + "prefix": "kegg.reaction", + "sameas": "bioregistry.kegg.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.genome.jp/dbget-bin/www_bget?rn:$1" + }, + "bioregistry.kegg.reaction.wikidata": { + "authority": "wikidata", + "homepage": "https://www.kegg.jp/", + "id": "bioregistry.kegg.reaction.wikidata", + "name": "KEGG ID", + "prefix": "P665", + "sameas": "bioregistry.kegg.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.kegg.jp/entry/$1" + }, + "bioregistry.kegg.uniprot": { + "authority": "uniprot", + "homepage": "https://www.genome.jp/kegg/", + "id": "bioregistry.kegg.uniprot", + "name": "KEGG", + "prefix": "DB-0053", + "sameas": "bioregistry.kegg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.genome.jp/dbget-bin/www_bget?$1" + }, + "bioregistry.kerafast": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kerafast", + "name": "Kerafast cell lines", + "prefix": "kerafast", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kerafast.com/Search?SearchTerm="$1"" + }, + "bioregistry.kerafast.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.kerafast.com/", + "id": "bioregistry.kerafast.cellosaurus", + "name": "Kerafast cell lines", + "prefix": "Kerafast", + "sameas": "bioregistry.kerafast", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.kerafast.com/Search?SearchTerm="$1"" + }, + "bioregistry.knapsack": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.knapsack", + "name": "KnapSack at Nara Institute", + "prefix": "knapsack", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.knapsackfamily.com/knapsack_core/information.php?word=$1" + }, + "bioregistry.knapsack.miriam": { + "authority": "miriam", + "homepage": "http://www.knapsackfamily.com/KNApSAcK/", + "id": "bioregistry.knapsack.miriam", + "name": "KNApSAcK", + "prefix": "knapsack", + "sameas": "bioregistry.knapsack", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.knapsackfamily.com/knapsack_core/information.php?word=$1" + }, + "bioregistry.knapsack.n2t": { + "authority": "n2t", + "homepage": "http://kanaya.aist-nara.ac.jp/KNApSAcK/", + "id": "bioregistry.knapsack.n2t", + "name": "KnapSack at Nara Institute", + "prefix": "knapsack", + "sameas": "bioregistry.knapsack", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://kanaya.naist.jp/knapsack_jsp/information.jsp?word=$1" + }, + "bioregistry.knapsack.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.knapsack.wikidata", + "name": "KNApSAcK ID", + "prefix": "P2064", + "sameas": "bioregistry.knapsack", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.knapsackfamily.com/knapsack_core/information.php?sname=C_ID&word=$1" + }, + "bioregistry.kyinno": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.kyinno", + "name": "KYinno cell lines", + "prefix": "kyinno", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://innopedia.kyinno.com/DataBase/CellLine.aspx?file=$1.pdf" + }, + "bioregistry.kyinno.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.kyinno.com/", + "id": "bioregistry.kyinno.cellosaurus", + "name": "KYinno cell lines", + "prefix": "KYinno", + "sameas": "bioregistry.kyinno", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://innopedia.kyinno.com/DataBase/CellLine.aspx?file=$1.pdf" + }, + "bioregistry.lcsh": { + "authority": "bioregistry", + "homepage": "https://id.loc.gov/authorities", + "id": "bioregistry.lcsh", + "name": "Library of Congress Subject Headings", + "prefix": "lcsh", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://id.loc.gov/authorities/$1" + }, + "bioregistry.lcsh.wikidata": { + "authority": "wikidata", + "homepage": "https://id.loc.gov", + "id": "bioregistry.lcsh.wikidata", + "name": "Library of Congress authority ID", + "prefix": "P244", + "sameas": "bioregistry.lcsh", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://id.loc.gov/authorities/$1" + }, + "bioregistry.leafsnap": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.leafsnap", + "name": "Leafsnap ID", + "prefix": "leafsnap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://leafsnap.com/species/$1/" + }, + "bioregistry.leafsnap.wikidata": { + "authority": "wikidata", + "homepage": "http://leafsnap.com/", + "id": "bioregistry.leafsnap.wikidata", + "name": "Leafsnap ID", + "prefix": "P10538", + "sameas": "bioregistry.leafsnap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://leafsnap.com/species/$1/" + }, + "bioregistry.lei": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.lei", + "name": "Global LEI Index", + "prefix": "lei", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gleif.org/lei/$1" + }, + "bioregistry.lei.miriam": { + "authority": "miriam", + "homepage": "https://www.gleif.org/", + "id": "bioregistry.lei.miriam", + "name": "Global LEI Index", + "prefix": "lei", + "sameas": "bioregistry.lei", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gleif.org/lei/$1" + }, + "bioregistry.lei.n2t": { + "authority": "n2t", + "homepage": "https://www.gleif.org/", + "id": "bioregistry.lei.n2t", + "name": "Global LEI Index", + "prefix": "lei", + "sameas": "bioregistry.lei", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gleif.org/lei/$1" + }, + "bioregistry.lgai.cede": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.lgai.cede", + "name": "LG Chemical Entity Detection Dataset (LGCEDe)", + "prefix": "lgai.cede", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://s3.us-east-2.amazonaws.com/lg.cede/$1" + }, + "bioregistry.lgai.cede.miriam": { + "authority": "miriam", + "homepage": "https://www.lgresearch.ai", + "id": "bioregistry.lgai.cede.miriam", + "name": "LG Chemical Entity Detection Dataset (LGCEDe)", + "prefix": "lgai.cede", + "sameas": "bioregistry.lgai.cede", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://s3.us-east-2.amazonaws.com/lg.cede/$1" + }, + "bioregistry.lgic": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.lgic", + "name": "Ligand-Gated Ion Channel database at EBI", + "prefix": "lgic", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/compneur-srv/LGICdb/HTML/$1.php" + }, + "bioregistry.lgic.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/compneur-srv/LGICdb/LGICdb.php", + "id": "bioregistry.lgic.miriam", + "name": "Ligand-Gated Ion Channel database", + "prefix": "lgic", + "sameas": "bioregistry.lgic", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/compneur-srv/LGICdb/HTML/$1.php" + }, + "bioregistry.lgic.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/compneur-srv/LGICdb/LGICdb.php", + "id": "bioregistry.lgic.n2t", + "name": "Ligand-Gated Ion Channel database at EBI", + "prefix": "lgic", + "sameas": "bioregistry.lgic", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/compneur-srv/LGICdb/HTML/$1.php" + }, + "bioregistry.lgic.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/compneur-srv/LGICdb/", + "id": "bioregistry.lgic.prefixcommons", + "name": "Ligand-Gated Ion Channel database", + "prefix": "lgicdb", + "sameas": "bioregistry.lgic", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/compneur-srv/LGICdb/HTML/$1.php" + }, + "bioregistry.licebase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.licebase", + "name": "LiceBase", + "prefix": "licebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://licebase.org/?q=$1" + }, + "bioregistry.licebase.miriam": { + "authority": "miriam", + "homepage": "https://licebase.org", + "id": "bioregistry.licebase.miriam", + "name": "LiceBase", + "prefix": "licebase", + "sameas": "bioregistry.licebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://licebase.org/?q=$1" + }, + "bioregistry.licebase.n2t": { + "authority": "n2t", + "homepage": "https://licebase.org", + "id": "bioregistry.licebase.n2t", + "name": "LiceBase", + "prefix": "licebase", + "sameas": "bioregistry.licebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://licebase.org/?q=$1" + }, + "bioregistry.ligandbook": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ligandbook", + "name": "LigandBook", + "prefix": "ligandbook", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ligandbook.org/package/$1" + }, + "bioregistry.ligandbook.miriam": { + "authority": "miriam", + "homepage": "https://ligandbook.org/", + "id": "bioregistry.ligandbook.miriam", + "name": "LigandBook", + "prefix": "ligandbook", + "sameas": "bioregistry.ligandbook", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ligandbook.org/package/$1" + }, + "bioregistry.ligandbook.n2t": { + "authority": "n2t", + "homepage": "https://ligandbook.org/", + "id": "bioregistry.ligandbook.n2t", + "name": "LigandBook", + "prefix": "ligandbook", + "sameas": "bioregistry.ligandbook", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ligandbook.org/package/$1" + }, + "bioregistry.ligandbox": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ligandbox", + "name": "LigandBox at", + "prefix": "ligandbox", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mypresto5.com/ligandbox/cgi-bin/liginf.cgi?id=$1" + }, + "bioregistry.ligandbox.miriam": { + "authority": "miriam", + "homepage": "http://www.mypresto5.com/ligandbox/cgi-bin/index.cgi?LANG=en", + "id": "bioregistry.ligandbox.miriam", + "name": "LigandBox", + "prefix": "ligandbox", + "sameas": "bioregistry.ligandbox", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mypresto5.com/ligandbox/cgi-bin/liginf.cgi?id=$1" + }, + "bioregistry.ligandbox.n2t": { + "authority": "n2t", + "homepage": "http://ligandbox.protein.osaka-u.ac.jp/ligandbox//cgi-bin/index.cgi?LANG=en", + "id": "bioregistry.ligandbox.n2t", + "name": "LigandBox at", + "prefix": "ligandbox", + "sameas": "bioregistry.ligandbox", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ligandbox.protein.osaka-u.ac.jp/ligandbox/cgi-bin/liginf.cgi?id=$1" + }, + "bioregistry.ligandexpo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ligandexpo", + "name": "Ligand Expo at Rutgers", + "prefix": "ligandexpo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences", + "biochemistry", + "molecular biology" + ], + "uri_format": "http://ligand-expo.rcsb.org/pyapps/ldHandler.py?formid=cc-index-search&target=$1&operation=ccid" + }, + "bioregistry.ligandexpo.miriam": { + "authority": "miriam", + "homepage": "http://ligand-depot.rutgers.edu/index.html", + "id": "bioregistry.ligandexpo.miriam", + "name": "Ligand Expo", + "prefix": "ligandexpo", + "sameas": "bioregistry.ligandexpo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ligand-depot.rutgers.edu/pyapps/ldHandler.py?formid=cc-index-search&target=$1&operation=ccid" + }, + "bioregistry.ligandexpo.n2t": { + "authority": "n2t", + "homepage": "http://ligand-expo.rcsb.org/", + "id": "bioregistry.ligandexpo.n2t", + "name": "Ligand Expo at Rutgers", + "prefix": "ligandexpo", + "sameas": "bioregistry.ligandexpo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ligand-expo.rcsb.org/pyapps/ldHandler.py?formid=cc-index-search&target=$1&operation=ccid" + }, + "bioregistry.ligandexpo.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://ligand-depot.rutgers.edu/", + "id": "bioregistry.ligandexpo.prefixcommons", + "name": "Ligand Expo", + "prefix": "ligandexpo", + "sameas": "bioregistry.ligandexpo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences", + "biochemistry", + "molecular biology" + ], + "uri_format": "http://ligand-depot.rutgers.edu/pyapps/ldHandler.py?formid=cc-index-search&target=$1&operation=ccid" + }, + "bioregistry.ligea": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ligea", + "name": "Cancer cell LInes GEne fusions portAl", + "prefix": "ligea", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://hpc-bioinformatics.cineca.it/fusion/cell_line/$1" + }, + "bioregistry.ligea.cellosaurus": { + "authority": "cellosaurus", + "homepage": "http://hpc-bioinformatics.cineca.it/fusion/main", + "id": "bioregistry.ligea.cellosaurus", + "name": "Cancer cell LInes GEne fusions portAl", + "prefix": "LiGeA", + "sameas": "bioregistry.ligea", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://hpc-bioinformatics.cineca.it/fusion/cell_line/$1" + }, + "bioregistry.limore": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.limore", + "name": "Liver Cancer Model Repository", + "prefix": "limore", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.picb.ac.cn/limore/cellLines/single?para=$1" + }, + "bioregistry.limore.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.picb.ac.cn/limore/home", + "id": "bioregistry.limore.cellosaurus", + "name": "Liver Cancer Model Repository", + "prefix": "LIMORE", + "sameas": "bioregistry.limore", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.picb.ac.cn/limore/cellLines/single?para=$1" + }, + "bioregistry.lincs.cell": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.lincs.cell", + "name": "LINCS Data Portal", + "prefix": "lincs.cell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lincsportal.ccs.miami.edu/cells/#/view/$1" + }, + "bioregistry.lincs.cell.cellosaurus": { + "authority": "cellosaurus", + "homepage": "http://lincsportal.ccs.miami.edu/cells/", + "id": "bioregistry.lincs.cell.cellosaurus", + "name": "LINCS Data Portal", + "prefix": "LINCS_LDP", + "sameas": "bioregistry.lincs.cell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lincsportal.ccs.miami.edu/cells/#/view/$1" + }, + "bioregistry.lincs.cell.miriam": { + "authority": "miriam", + "homepage": "http://lincsportal.ccs.miami.edu/cells/", + "id": "bioregistry.lincs.cell.miriam", + "name": "LINCS Cell", + "prefix": "lincs.cell", + "sameas": "bioregistry.lincs.cell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lincsportal.ccs.miami.edu/cells/#/view/$1" + }, + "bioregistry.lincs.cell.n2t": { + "authority": "n2t", + "homepage": "http://lincsportal.ccs.miami.edu/cells/", + "id": "bioregistry.lincs.cell.n2t", + "name": "LINCS Portal", + "prefix": "lincs.cell", + "sameas": "bioregistry.lincs.cell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lincsportal.ccs.miami.edu/cells/#/view/$1" + }, + "bioregistry.lincs.data": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.lincs.data", + "name": "LINCS Data at University of Miami", + "prefix": "lincs.data", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lincsportal.ccs.miami.edu/datasets/#/view/$1" + }, + "bioregistry.lincs.data.miriam": { + "authority": "miriam", + "homepage": "http://lincsportal.ccs.miami.edu/datasets/", + "id": "bioregistry.lincs.data.miriam", + "name": "LINCS Data", + "prefix": "lincs.data", + "sameas": "bioregistry.lincs.data", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lincsportal.ccs.miami.edu/datasets/#/view/$1" + }, + "bioregistry.lincs.data.n2t": { + "authority": "n2t", + "homepage": "http://lincsportal.ccs.miami.edu/datasets/", + "id": "bioregistry.lincs.data.n2t", + "name": "LINCS Data at University of Miami", + "prefix": "lincs.data", + "sameas": "bioregistry.lincs.data", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lincsportal.ccs.miami.edu/datasets/#/view/$1" + }, + "bioregistry.lincs.protein": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.lincs.protein", + "name": "LINCS Protein at Harvard Medical School", + "prefix": "lincs.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lincs.hms.harvard.edu/db/proteins/$1/" + }, + "bioregistry.lincs.protein.miriam": { + "authority": "miriam", + "homepage": "http://lincs.hms.harvard.edu/db/proteins/", + "id": "bioregistry.lincs.protein.miriam", + "name": "LINCS Protein", + "prefix": "lincs.protein", + "sameas": "bioregistry.lincs.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lincs.hms.harvard.edu/db/proteins/$1/" + }, + "bioregistry.lincs.protein.n2t": { + "authority": "n2t", + "homepage": "http://lincs.hms.harvard.edu/db/proteins/", + "id": "bioregistry.lincs.protein.n2t", + "name": "LINCS Protein at Harvard Medical School", + "prefix": "lincs.protein", + "sameas": "bioregistry.lincs.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lincs.hms.harvard.edu/db/proteins/$1/" + }, + "bioregistry.lincs.smallmolecule": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.lincs.smallmolecule", + "name": "LINCS Small Molecule", + "prefix": "lincs.smallmolecule", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lincsportal.ccs.miami.edu/SmallMolecules/#/view/$1" + }, + "bioregistry.lincs.smallmolecule.miriam": { + "authority": "miriam", + "homepage": "http://lincsportal.ccs.miami.edu/SmallMolecules/", + "id": "bioregistry.lincs.smallmolecule.miriam", + "name": "LINCS Small Molecule", + "prefix": "lincs.smallmolecule", + "sameas": "bioregistry.lincs.smallmolecule", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lincsportal.ccs.miami.edu/SmallMolecules/#/view/$1" + }, + "bioregistry.lincs.smallmolecule.n2t": { + "authority": "n2t", + "homepage": "http://lincsportal.ccs.miami.edu/SmallMolecules/", + "id": "bioregistry.lincs.smallmolecule.n2t", + "name": "LINCS Portal", + "prefix": "lincs.smallmolecule", + "sameas": "bioregistry.lincs.smallmolecule", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lincsportal.ccs.miami.edu/SmallMolecules/#/view/$1" + }, + "bioregistry.linguist": { + "authority": "bioregistry", + "homepage": "https://github.com/github/linguist", + "id": "bioregistry.linguist", + "name": "Linguist", + "prefix": "linguist", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://raw.githubusercontent.com/github/linguist/master/lib/linguist/languages.yml#$1" + }, + "bioregistry.linguist.miriam": { + "authority": "miriam", + "homepage": "https://github.com/", + "id": "bioregistry.linguist.miriam", + "name": "Linguist", + "prefix": "linguist", + "sameas": "bioregistry.linguist", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://raw.githubusercontent.com/github/linguist/master/lib/linguist/languages.yml#$1" + }, + "bioregistry.linkml": { + "authority": "bioregistry", + "homepage": "https://linkml.io/linkml-model/docs/SchemaDefinition/", + "id": "bioregistry.linkml", + "name": "Linked (Open) Data Modeling Language", + "prefix": "linkml", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/linkml/$1" + }, + "bioregistry.linkml.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.linkml.biolink", + "name": null, + "prefix": "linkml", + "sameas": "bioregistry.linkml", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/linkml/$1" + }, + "bioregistry.lipidbank": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.lipidbank", + "name": "LipidBank the Lipid database", + "prefix": "lipidbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://lipidbank.jp/cgi-bin/detail.cgi?id=$1" + }, + "bioregistry.lipidbank.miriam": { + "authority": "miriam", + "homepage": "http://lipidbank.jp/index.html", + "id": "bioregistry.lipidbank.miriam", + "name": "LipidBank", + "prefix": "lipidbank", + "sameas": "bioregistry.lipidbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lipidbank.jp/cgi-bin/detail.cgi?id=$1" + }, + "bioregistry.lipidbank.n2t": { + "authority": "n2t", + "homepage": "http://lipidbank.jp/index.html", + "id": "bioregistry.lipidbank.n2t", + "name": "LipidBank the Lipid database", + "prefix": "lipidbank", + "sameas": "bioregistry.lipidbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lipidbank.jp/cgi-bin/detail.cgi?id=$1" + }, + "bioregistry.lipidbank.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://lipidbank.jp/index.html", + "id": "bioregistry.lipidbank.prefixcommons", + "name": "LipidBank", + "prefix": "lipidbank", + "sameas": "bioregistry.lipidbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://lipidbank.jp/cgi-bin/detail.cgi?id=$1" + }, + "bioregistry.lipidmaps": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.lipidmaps", + "name": "Department of Bioengineering and the San Diego Supercomputer Center", + "prefix": "lipidmaps", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.lipidmaps.org/data/structure/LMSDSearch.php?Mode=ProcessClassSearch&LMID=$1" + }, + "bioregistry.lipidmaps.miriam": { + "authority": "miriam", + "homepage": "http://www.lipidmaps.org", + "id": "bioregistry.lipidmaps.miriam", + "name": "LIPID MAPS", + "prefix": "lipidmaps", + "sameas": "bioregistry.lipidmaps", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.lipidmaps.org/data/LMSDRecord.php?LMID=$1" + }, + "bioregistry.lipidmaps.n2t": { + "authority": "n2t", + "homepage": "http://www.lipidmaps.org", + "id": "bioregistry.lipidmaps.n2t", + "name": "Department of Bioengineering and the San Diego Supercomputer Center", + "prefix": "lipidmaps", + "sameas": "bioregistry.lipidmaps", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.lipidmaps.org/data/LMSDRecord.php?LMID=$1" + }, + "bioregistry.lipidmaps.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.lipidmaps.org", + "id": "bioregistry.lipidmaps.prefixcommons", + "name": "LIPID MAPS", + "prefix": "lipidmaps", + "sameas": "bioregistry.lipidmaps", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.lipidmaps.org/data/get_lm_lipids_dbgif.php?LM_ID=$1" + }, + "bioregistry.lipidmaps.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.lipidmaps.wikidata", + "name": "LIPID MAPS ID", + "prefix": "P2063", + "sameas": "bioregistry.lipidmaps", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.lipidmaps.org/data/structure/LMSDSearch.php?Mode=ProcessClassSearch&LMID=$1" + }, + "bioregistry.loinc": { + "authority": "bioregistry", + "homepage": "https://loinc.org/", + "id": "bioregistry.loinc", + "name": "Logical Observation Identifiers Names and Codes", + "prefix": "loinc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://loinc.org/$1" + }, + "bioregistry.loinc.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.loinc.biolink", + "name": null, + "prefix": "LOINC", + "sameas": "bioregistry.loinc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://loinc.org/rdf/$1" + }, + "bioregistry.loinc.wikidata": { + "authority": "wikidata", + "homepage": "https://loinc.org/", + "id": "bioregistry.loinc.wikidata", + "name": "LOINC ID", + "prefix": "P4338", + "sameas": "bioregistry.loinc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://loinc.org/$1" + }, + "bioregistry.lonza": { + "authority": "bioregistry", + "homepage": "https://knowledge.lonza.com", + "id": "bioregistry.lonza", + "name": "Lonza Cell and Transfection Database", + "prefix": "lonza", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://knowledge.lonza.com/cell?id=$1" + }, + "bioregistry.lonza.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://knowledge.lonza.com", + "id": "bioregistry.lonza.cellosaurus", + "name": "Lonza Cell and Transfection Database", + "prefix": "Lonza", + "sameas": "bioregistry.lonza", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://knowledge.lonza.com/cell?id=$1" + }, + "bioregistry.loqate": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.loqate", + "name": "The localization and quantitation atlas of the yeast proteome", + "prefix": "loqate", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.weizmann.ac.il/molgen/loqate/gene/view/$1" + }, + "bioregistry.loqate.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.weizmann.ac.il/molgen/loqate/", + "id": "bioregistry.loqate.prefixcommons", + "name": "The localization and quantitation atlas of the yeast proteome", + "prefix": "loqate", + "sameas": "bioregistry.loqate", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.weizmann.ac.il/molgen/loqate/gene/view/$1" + }, + "bioregistry.lrg": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.lrg", + "name": "Locus Reference Genomic through Ensembl mirror (US west)", + "prefix": "lrg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://uswest.ensembl.org/Homo_sapiens/LRG/Summary?lrg=$1" + }, + "bioregistry.lrg.miriam": { + "authority": "miriam", + "homepage": "http://www.lrg-sequence.org/", + "id": "bioregistry.lrg.miriam", + "name": "Locus Reference Genomic", + "prefix": "lrg", + "sameas": "bioregistry.lrg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ftp.ebi.ac.uk/pub/databases/lrgex/$1.xml" + }, + "bioregistry.lrg.n2t": { + "authority": "n2t", + "homepage": "http://uswest.ensembl.org/", + "id": "bioregistry.lrg.n2t", + "name": "Locus Reference Genomic through Ensembl mirror (US west)", + "prefix": "lrg", + "sameas": "bioregistry.lrg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://uswest.ensembl.org/Homo_sapiens/LRG/Summary?lrg=$1" + }, + "bioregistry.ma": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ma", + "name": "Mouse Adult Gross Anatomy at The Jackson Laboratory", + "prefix": "ma", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology", + "anatomy and morphology" + ], + "uri_format": "http://www.informatics.jax.org/searches/AMA.cgi?id=MA:$1" + }, + "bioregistry.ma.go": { + "authority": "go", + "homepage": "http://www.informatics.jax.org/", + "id": "bioregistry.ma.go", + "name": "Adult Mouse Anatomical Dictionary", + "prefix": "MA", + "sameas": "bioregistry.ma", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology", + "anatomy and morphology" + ], + "uri_format": "http://www.informatics.jax.org/searches/AMA.cgi?id=MA:$1" + }, + "bioregistry.ma.miriam": { + "authority": "miriam", + "homepage": "http://www.informatics.jax.org/", + "id": "bioregistry.ma.miriam", + "name": "Mouse Adult Gross Anatomy", + "prefix": "ma", + "sameas": "bioregistry.ma", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.informatics.jax.org/searches/AMA.cgi?id=MA:$1" + }, + "bioregistry.ma.n2t": { + "authority": "n2t", + "homepage": "http://www.informatics.jax.org/", + "id": "bioregistry.ma.n2t", + "name": "Mouse Adult Gross Anatomy at The Jackson Laboratory", + "prefix": "ma", + "sameas": "bioregistry.ma", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.informatics.jax.org/searches/AMA.cgi?id=MA:$1" + }, + "bioregistry.macie": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.macie", + "name": "MACiE database of mechanisms, annotation and classification in enzymes", + "prefix": "macie", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/MACiE/entry/getPage.pl?id=$1" + }, + "bioregistry.macie.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/thornton-srv/databases/MACiE/index.html", + "id": "bioregistry.macie.miriam", + "name": "MACiE", + "prefix": "macie", + "sameas": "bioregistry.macie", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/MACiE/entry/getPage.pl?id=$1" + }, + "bioregistry.macie.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/thornton-srv/databases/MACiE/index.html", + "id": "bioregistry.macie.n2t", + "name": "MACiE database of mechanisms, annotation and classification in enzymes", + "prefix": "macie", + "sameas": "bioregistry.macie", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/MACiE/entry/getPage.pl?id=$1" + }, + "bioregistry.macie.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/thornton-srv/databases/MACiE/", + "id": "bioregistry.macie.prefixcommons", + "name": "MACiE", + "prefix": "macie", + "sameas": "bioregistry.macie", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/MACiE/getPage.pl?id=$1" + }, + "bioregistry.maizegdb.locus": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.maizegdb.locus", + "name": "Maize Genome Database unique identifiers", + "prefix": "maizegdb.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.maizegdb.org/gene_center/gene/$1" + }, + "bioregistry.maizegdb.locus.go": { + "authority": "go", + "homepage": "https://www.maizegdb.org/", + "id": "bioregistry.maizegdb.locus.go", + "name": "MaizeGDB", + "prefix": "MaizeGDB_Locus", + "sameas": "bioregistry.maizegdb.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.maizegdb.org/gene_center/gene/$1" + }, + "bioregistry.maizegdb.locus.miriam": { + "authority": "miriam", + "homepage": "http://www.maizegdb.org/", + "id": "bioregistry.maizegdb.locus.miriam", + "name": "MaizeGDB Locus", + "prefix": "maizegdb.locus", + "sameas": "bioregistry.maizegdb.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.maizegdb.org/cgi-bin/displaylocusrecord.cgi?id=$1" + }, + "bioregistry.maizegdb.locus.n2t": { + "authority": "n2t", + "homepage": "http://www.maizegdb.org/", + "id": "bioregistry.maizegdb.locus.n2t", + "name": "MaizeGDB at Missouri", + "prefix": "maizegdb.locus", + "sameas": "bioregistry.maizegdb.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.maizegdb.org/cgi-bin/displaylocusrecord.cgi?id=$1" + }, + "bioregistry.maizegdb.locus.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.maizegdb.org", + "id": "bioregistry.maizegdb.locus.prefixcommons", + "name": "Maize Genetics and Genomics Database", + "prefix": "maizegdb", + "sameas": "bioregistry.maizegdb.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.maizegdb.org/cgi-bin/displaylocusrecord.cgi?id=$1" + }, + "bioregistry.maizegdb.locus.uniprot": { + "authority": "uniprot", + "homepage": "https://www.maizegdb.org/", + "id": "bioregistry.maizegdb.locus.uniprot", + "name": "Maize Genetics and Genomics Database", + "prefix": "DB-0058", + "sameas": "bioregistry.maizegdb.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.maizegdb.org/data_center/gene_product?id=$1" + }, + "bioregistry.mamo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mamo", + "name": "Mathematical Modelling Ontology", + "prefix": "mamo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioportal.bioontology.org/ontologies/MAMO/?p=classes&conceptid=http://identifiers.org/mamo/$1" + }, + "bioregistry.mamo.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/ontologies/MAMO", + "id": "bioregistry.mamo.miriam", + "name": "Mathematical Modelling Ontology", + "prefix": "mamo", + "sameas": "bioregistry.mamo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioportal.bioontology.org/ontologies/MAMO/?p=classes&conceptid=http://identifiers.org/mamo/$1" + }, + "bioregistry.mamo.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/MAMO", + "id": "bioregistry.mamo.n2t", + "name": "MAMO through BioPortal", + "prefix": "mamo", + "sameas": "bioregistry.mamo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioportal.bioontology.org/ontologies/MAMO/?p=classes&conceptid=http://identifiers.org/mamo/$1" + }, + "bioregistry.mampol": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mampol", + "name": "Mammalia Polymorphism Database", + "prefix": "mampol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://mampol.uab.es/cgi-bin/MamPol_s2.pl?Accession=$1" + }, + "bioregistry.mampol.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://mampol.uab.es", + "id": "bioregistry.mampol.prefixcommons", + "name": "Mammalia Polymorphism Database", + "prefix": "mampol", + "sameas": "bioregistry.mampol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://mampol.uab.es/cgi-bin/MamPol_s2.pl?Accession=$1" + }, + "bioregistry.massbank": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.massbank", + "name": "MassBank accession ID", + "prefix": "massbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://massbank.jp/RecordDisplay?id=$1" + }, + "bioregistry.massbank.miriam": { + "authority": "miriam", + "homepage": "http://www.massbank.jp", + "id": "bioregistry.massbank.miriam", + "name": "MassBank", + "prefix": "massbank", + "sameas": "bioregistry.massbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://massbank.jp/RecordDisplay?id=$1" + }, + "bioregistry.massbank.n2t": { + "authority": "n2t", + "homepage": "http://www.massbank.jp", + "id": "bioregistry.massbank.n2t", + "name": "MassBank in Japan", + "prefix": "massbank", + "sameas": "bioregistry.massbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.massbank.jp/jsp/FwdRecord.jsp?id=$1" + }, + "bioregistry.massbank.wikidata": { + "authority": "wikidata", + "homepage": "https://massbank.eu/", + "id": "bioregistry.massbank.wikidata", + "name": "MassBank accession ID", + "prefix": "P6689", + "sameas": "bioregistry.massbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://massbank.eu/MassBank/RecordDisplay?id=$1" + }, + "bioregistry.massive": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.massive", + "name": "MassIVE - Mass Spectrometry Interactive Virtual Environment", + "prefix": "massive", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://massive.ucsd.edu/ProteoSAFe/protein_explorer.jsp?libraries=2&protein_name=$1" + }, + "bioregistry.massive.miriam": { + "authority": "miriam", + "homepage": "https://massive.ucsd.edu/ProteoSAFe/static/massive.jsp", + "id": "bioregistry.massive.miriam", + "name": "MassIVE", + "prefix": "massive", + "sameas": "bioregistry.massive", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://massive.ucsd.edu/ProteoSAFe/QueryMSV?id=$1" + }, + "bioregistry.massive.n2t": { + "authority": "n2t", + "homepage": "https://massive.ucsd.edu/ProteoSAFe/static/massive.jsp", + "id": "bioregistry.massive.n2t", + "name": "MassIVE", + "prefix": "massive", + "sameas": "bioregistry.massive", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://massive.ucsd.edu/ProteoSAFe/QueryMSV?id=$1" + }, + "bioregistry.massive.uniprot": { + "authority": "uniprot", + "homepage": "https://massive.ucsd.edu/", + "id": "bioregistry.massive.uniprot", + "name": "MassIVE - Mass Spectrometry Interactive Virtual Environment", + "prefix": "DB-0241", + "sameas": "bioregistry.massive", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://massive.ucsd.edu/ProteoSAFe/protein_explorer.jsp?libraries=2&protein_name=$1" + }, + "bioregistry.matrixdb": { + "authority": "bioregistry", + "homepage": "http://matrixdb.univ-lyon1.fr/", + "id": "bioregistry.matrixdb", + "name": "MatrixDB: Extracellular Matrix interactions database", + "prefix": "matrixdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://matrixdb.ibcp.fr/cgi-bin/model/report/default?name=$1&class=Association" + }, + "bioregistry.matrixdb.association": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.matrixdb.association", + "name": "MatrixDB Association", + "prefix": "matrixdb.association", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://matrixdb.univ-lyon1.fr//cgi-bin/current/newPort?type=association&value=$1&class=Association" + }, + "bioregistry.matrixdb.association.miriam": { + "authority": "miriam", + "homepage": "http://matrixdb.univ-lyon1.fr/", + "id": "bioregistry.matrixdb.association.miriam", + "name": "MatrixDB", + "prefix": "matrixdb.association", + "sameas": "bioregistry.matrixdb.association", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://matrixdb.univ-lyon1.fr//cgi-bin/current/newPort?type=association&value=$1&class=Association" + }, + "bioregistry.matrixdb.association.n2t": { + "authority": "n2t", + "homepage": "http://matrixdb.univ-lyon1.fr/", + "id": "bioregistry.matrixdb.association.n2t", + "name": "MatrixDB Association", + "prefix": "matrixdb.association", + "sameas": "bioregistry.matrixdb.association", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://matrixdb.univ-lyon1.fr//cgi-bin/current/newPort?type=association&value=$1&class=Association" + }, + "bioregistry.matrixdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://matrixdb.ibcp.fr", + "id": "bioregistry.matrixdb.prefixcommons", + "name": "MatrixDB: Extracellular Matrix interactions database", + "prefix": "matrixdb", + "sameas": "bioregistry.matrixdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://matrixdb.ibcp.fr/cgi-bin/model/report/default?name=$1&class=Association" + }, + "bioregistry.maxo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.maxo", + "name": "Medical Action Ontology", + "prefix": "maxo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/MAXO_$1" + }, + "bioregistry.maxo.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.maxo.biolink", + "name": null, + "prefix": "MAXO", + "sameas": "bioregistry.maxo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/MAXO_$1" + }, + "bioregistry.mdm": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mdm", + "name": "Mapping of Drug Names and MeSH 2022", + "prefix": "mdm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://medical-data-models.org/forms/$1" + }, + "bioregistry.mdm.miriam": { + "authority": "miriam", + "homepage": "https://medical-data-models.org/", + "id": "bioregistry.mdm.miriam", + "name": "MDM", + "prefix": "mdm", + "sameas": "bioregistry.mdm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://medical-data-models.org/forms/$1" + }, + "bioregistry.mdm.n2t": { + "authority": "n2t", + "homepage": "https://medical-data-models.org/", + "id": "bioregistry.mdm.n2t", + "name": "MDM at University of Muenster", + "prefix": "mdm", + "sameas": "bioregistry.mdm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://medical-data-models.org/forms/$1" + }, + "bioregistry.meddra": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.meddra", + "name": "Medical Dictionary for Regulatory Activities Terminology (MedDRA)", + "prefix": "meddra", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/MEDDRA/$1" + }, + "bioregistry.meddra.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.meddra.biocontext", + "name": null, + "prefix": "MEDDRA", + "sameas": "bioregistry.meddra", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/MEDDRA/$1" + }, + "bioregistry.meddra.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/ontologies/MEDDRA", + "id": "bioregistry.meddra.miriam", + "name": "MedDRA", + "prefix": "meddra", + "sameas": "bioregistry.meddra", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/MEDDRA/$1" + }, + "bioregistry.meddra.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/MEDDRA", + "id": "bioregistry.meddra.n2t", + "name": "MedDRA through BioPortal", + "prefix": "meddra", + "sameas": "bioregistry.meddra", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/MEDDRA/$1" + }, + "bioregistry.meddra.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.meddra.wikidata", + "name": "Medical Dictionary for Regulatory Activities ID", + "prefix": "P3201", + "sameas": "bioregistry.meddra", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioportal.bioontology.org/ontologies/MEDDRA?p=classes&conceptid=$1" + }, + "bioregistry.medgen": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.medgen", + "name": "Human Medical Genetics", + "prefix": "medgen", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/medgen/$1" + }, + "bioregistry.medgen.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.medgen.biocontext", + "name": null, + "prefix": "MedGen", + "sameas": "bioregistry.medgen", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/medgen/$1" + }, + "bioregistry.medgen.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.medgen.biolink", + "name": null, + "prefix": "medgen", + "sameas": "bioregistry.medgen", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/medgen/$1" + }, + "bioregistry.medgen.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/medgen/", + "id": "bioregistry.medgen.miriam", + "name": "MedGen", + "prefix": "medgen", + "sameas": "bioregistry.medgen", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/medgen/$1" + }, + "bioregistry.medgen.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/medgen/", + "id": "bioregistry.medgen.n2t", + "name": "MedGen at NCBI", + "prefix": "medgen", + "sameas": "bioregistry.medgen", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/medgen/$1" + }, + "bioregistry.medlineplus": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.medlineplus", + "name": "MedlinePlus Health Topics", + "prefix": "medlineplus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.nlm.nih.gov/medlineplus/ency/article/$1.htm" + }, + "bioregistry.medlineplus.miriam": { + "authority": "miriam", + "homepage": "http://www.nlm.nih.gov/medlineplus/", + "id": "bioregistry.medlineplus.miriam", + "name": "MedlinePlus", + "prefix": "medlineplus", + "sameas": "bioregistry.medlineplus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.nlm.nih.gov/medlineplus/ency/article/$1.htm" + }, + "bioregistry.medlineplus.n2t": { + "authority": "n2t", + "homepage": "http://www.nlm.nih.gov/medlineplus/", + "id": "bioregistry.medlineplus.n2t", + "name": "MedlinePlus at NCBI", + "prefix": "medlineplus", + "sameas": "bioregistry.medlineplus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.nlm.nih.gov/medlineplus/ency/article/$1.htm" + }, + "bioregistry.merops.entry": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.merops.entry", + "name": "MEROPS Inhibitor at Sanger Institute", + "prefix": "merops.entry", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/merops/cgi-bin/pepsum?id=$1" + }, + "bioregistry.merops.entry.go": { + "authority": "go", + "homepage": "https://www.ebi.ac.uk/merops/", + "id": "bioregistry.merops.entry.go", + "name": "MEROPS peptidase database", + "prefix": "MEROPS", + "sameas": "bioregistry.merops.entry", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/merops/cgi-bin/pepsum?id=$1" + }, + "bioregistry.merops.entry.miriam": { + "authority": "miriam", + "homepage": "http://merops.sanger.ac.uk/index.htm", + "id": "bioregistry.merops.entry.miriam", + "name": "MEROPS Inhibitor", + "prefix": "merops.inhibitor", + "sameas": "bioregistry.merops.entry", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://merops.sanger.ac.uk/cgi-bin/pepsum?id=$1" + }, + "bioregistry.merops.entry.n2t": { + "authority": "n2t", + "homepage": "http://merops.sanger.ac.uk/index.htm", + "id": "bioregistry.merops.entry.n2t", + "name": "MEROPS Inhibitor at Sanger Institute", + "prefix": "merops.inhibitor", + "sameas": "bioregistry.merops.entry", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://merops.sanger.ac.uk/cgi-bin/pepsum?id=$1" + }, + "bioregistry.merops.entry.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://merops.sanger.ac.uk/", + "id": "bioregistry.merops.entry.prefixcommons", + "name": "MEROPS - the Peptidase Database", + "prefix": "merops", + "sameas": "bioregistry.merops.entry", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://merops.sanger.ac.uk/cgi-bin/pepsum?id=$1" + }, + "bioregistry.merops.family": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.merops.family", + "name": "Merops Family at Sanger Institute", + "prefix": "merops.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://merops.sanger.ac.uk/cgi-bin/famsum?family=$1" + }, + "bioregistry.merops.family.miriam": { + "authority": "miriam", + "homepage": "http://merops.sanger.ac.uk/index.htm", + "id": "bioregistry.merops.family.miriam", + "name": "MEROPS Family", + "prefix": "merops.family", + "sameas": "bioregistry.merops.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://merops.sanger.ac.uk/cgi-bin/famsum?family=$1" + }, + "bioregistry.merops.family.n2t": { + "authority": "n2t", + "homepage": "http://merops.sanger.ac.uk/index.htm", + "id": "bioregistry.merops.family.n2t", + "name": "Merops Family at Sanger Institute", + "prefix": "merops.family", + "sameas": "bioregistry.merops.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://merops.sanger.ac.uk/cgi-bin/famsum?family=$1" + }, + "bioregistry.mesh": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mesh", + "name": "MeSH Linked Data at National Library of Medicine", + "prefix": "mesh", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.nlm.nih.gov/cgi/mesh/2013/MB_cgi?field=uid&term=$1" + }, + "bioregistry.mesh.2012": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mesh.2012", + "name": "MeSH at National Library of Medicine", + "prefix": "mesh.2012", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.nlm.nih.gov/cgi/mesh/2012/MB_cgi?mode=&index=$1&view=expanded" + }, + "bioregistry.mesh.2012.miriam": { + "authority": "miriam", + "homepage": "http://www.nlm.nih.gov/mesh/", + "id": "bioregistry.mesh.2012.miriam", + "name": "MeSH 2012", + "prefix": "mesh.2012", + "sameas": "bioregistry.mesh.2012", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.nlm.nih.gov/cgi/mesh/2012/MB_cgi?mode=&index=$1&view=expanded" + }, + "bioregistry.mesh.2012.n2t": { + "authority": "n2t", + "homepage": "http://www.nlm.nih.gov/mesh/", + "id": "bioregistry.mesh.2012.n2t", + "name": "MeSH at National Library of Medicine", + "prefix": "mesh.2012", + "sameas": "bioregistry.mesh.2012", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.nlm.nih.gov/cgi/mesh/2012/MB_cgi?mode=&index=$1&view=expanded" + }, + "bioregistry.mesh.2013": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mesh.2013", + "name": "MeSH 2013 at National Library of Medicine", + "prefix": "mesh.2013", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.nlm.nih.gov/cgi/mesh/2013/MB_cgi?mode=&index=$1&view=expanded" + }, + "bioregistry.mesh.2013.miriam": { + "authority": "miriam", + "homepage": "http://www.nlm.nih.gov/mesh/", + "id": "bioregistry.mesh.2013.miriam", + "name": "MeSH 2013", + "prefix": "mesh.2013", + "sameas": "bioregistry.mesh.2013", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.nlm.nih.gov/cgi/mesh/2013/MB_cgi?mode=&index=$1&view=expanded" + }, + "bioregistry.mesh.2013.n2t": { + "authority": "n2t", + "homepage": "http://www.nlm.nih.gov/mesh/", + "id": "bioregistry.mesh.2013.n2t", + "name": "MeSH 2013 at National Library of Medicine", + "prefix": "mesh.2013", + "sameas": "bioregistry.mesh.2013", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.nlm.nih.gov/cgi/mesh/2013/MB_cgi?mode=&index=$1&view=expanded" + }, + "bioregistry.mesh.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.mesh.biolink", + "name": null, + "prefix": "MESH", + "sameas": "bioregistry.mesh", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://id.nlm.nih.gov/mesh/$1" + }, + "bioregistry.mesh.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ncbi.nlm.nih.gov/mesh", + "id": "bioregistry.mesh.cellosaurus", + "name": "Medical Subject Headings", + "prefix": "MeSH", + "sameas": "bioregistry.mesh", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.nlm.nih.gov/cgi/mesh/2013/MB_cgi?field=uid&term=$1" + }, + "bioregistry.mesh.go": { + "authority": "go", + "homepage": "https://meshb.nlm.nih.gov", + "id": "bioregistry.mesh.go", + "name": "Medical Subject Headings", + "prefix": "MeSH", + "sameas": "bioregistry.mesh", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://id.nlm.nih.gov/mesh/$1" + }, + "bioregistry.mesh.miriam": { + "authority": "miriam", + "homepage": "http://id.nlm.nih.gov/mesh/", + "id": "bioregistry.mesh.miriam", + "name": "MeSH", + "prefix": "mesh", + "sameas": "bioregistry.mesh", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://id.nlm.nih.gov/mesh/$1" + }, + "bioregistry.mesh.n2t": { + "authority": "n2t", + "homepage": "http://id.nlm.nih.gov/mesh/", + "id": "bioregistry.mesh.n2t", + "name": "MeSH Linked Data at National Library of Medicine", + "prefix": "mesh", + "sameas": "bioregistry.mesh", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://id.nlm.nih.gov/mesh/$1" + }, + "bioregistry.mesh.wikidata": { + "authority": "wikidata", + "homepage": "http://www.nlm.nih.gov", + "id": "bioregistry.mesh.wikidata", + "name": "MeSH descriptor ID", + "prefix": "P486", + "sameas": "bioregistry.mesh", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://meshb.nlm.nih.gov/record/ui?ui=$1" + }, + "bioregistry.metabolights": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.metabolights", + "name": "MetaboLights database for metabolomics experiments and derived information", + "prefix": "metabolights", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/metabolights/$1" + }, + "bioregistry.metabolights.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ebi.ac.uk/metabolights/", + "id": "bioregistry.metabolights.cellosaurus", + "name": "MetaboLights database for metabolomics experiments and derived information", + "prefix": "MetaboLights", + "sameas": "bioregistry.metabolights", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/metabolights/$1" + }, + "bioregistry.metabolights.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/metabolights/", + "id": "bioregistry.metabolights.miriam", + "name": "MetaboLights", + "prefix": "metabolights", + "sameas": "bioregistry.metabolights", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/metabolights/$1" + }, + "bioregistry.metabolights.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/metabolights/", + "id": "bioregistry.metabolights.n2t", + "name": "MetaboLights at EBI", + "prefix": "metabolights", + "sameas": "bioregistry.metabolights", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/metabolights/$1" + }, + "bioregistry.metabolights.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.metabolights.wikidata", + "name": "MetaboLights Compound ID", + "prefix": "P3890", + "sameas": "bioregistry.metabolights", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/metabolights/$1" + }, + "bioregistry.metacyc.compound": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.metacyc.compound", + "name": "Metabolic Encyclopedia of metabolic and other pathways", + "prefix": "metacyc.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://metacyc.org/compound?orgid=META&id=$1" + }, + "bioregistry.metacyc.compound.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.metacyc.compound.biolink", + "name": null, + "prefix": "MetaCyc", + "sameas": "bioregistry.metacyc.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://translator.ncats.nih.gov/MetaCyc_$1" + }, + "bioregistry.metacyc.compound.go": { + "authority": "go", + "homepage": "https://metacyc.org/", + "id": "bioregistry.metacyc.compound.go", + "name": "Metabolic Encyclopedia of metabolic and other pathways", + "prefix": "MetaCyc", + "sameas": "bioregistry.metacyc.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://biocyc.org/META/NEW-IMAGE?type=NIL&object=$1" + }, + "bioregistry.metacyc.compound.miriam": { + "authority": "miriam", + "homepage": "https://metacyc.org", + "id": "bioregistry.metacyc.compound.miriam", + "name": "MetaCyc Compound", + "prefix": "metacyc.compound", + "sameas": "bioregistry.metacyc.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://metacyc.org/compound?orgid=META&id=$1" + }, + "bioregistry.metacyc.compound.n2t": { + "authority": "n2t", + "homepage": "https://metacyc.org", + "id": "bioregistry.metacyc.compound.n2t", + "name": "MetaCyc Metabolic Pathway Database", + "prefix": "metacyc.compound", + "sameas": "bioregistry.metacyc.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://metacyc.org/compound?orgid=META&id=$1" + }, + "bioregistry.metacyc.reaction": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.metacyc.reaction", + "name": "MetaCyc Metabolic Pathway Database - Reaction", + "prefix": "metacyc.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://metacyc.org/META/NEW-IMAGE?type=REACTION&object=$1" + }, + "bioregistry.metacyc.reaction.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.metacyc.reaction.biolink", + "name": null, + "prefix": "metacyc.reaction", + "sameas": "bioregistry.metacyc.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://identifiers.org/metacyc.reaction:$1" + }, + "bioregistry.metacyc.reaction.miriam": { + "authority": "miriam", + "homepage": "https://metacyc.org", + "id": "bioregistry.metacyc.reaction.miriam", + "name": "MetaCyc Reaction", + "prefix": "metacyc.reaction", + "sameas": "bioregistry.metacyc.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://metacyc.org/META/NEW-IMAGE?type=REACTION&object=$1" + }, + "bioregistry.metacyc.reaction.n2t": { + "authority": "n2t", + "homepage": "https://metacyc.org", + "id": "bioregistry.metacyc.reaction.n2t", + "name": "MetaCyc Metabolic Pathway Database - Reaction", + "prefix": "metacyc.reaction", + "sameas": "bioregistry.metacyc.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://metacyc.org/META/NEW-IMAGE?type=REACTION&object=$1" + }, + "bioregistry.metanetx.chemical": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.metanetx.chemical", + "name": "MetaNetX chemical at SIB Swiss Institute of Bioinformatics", + "prefix": "metanetx.chemical", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.metanetx.org/chem_info/$1" + }, + "bioregistry.metanetx.chemical.miriam": { + "authority": "miriam", + "homepage": "https://www.metanetx.org/", + "id": "bioregistry.metanetx.chemical.miriam", + "name": "MetaNetX chemical", + "prefix": "metanetx.chemical", + "sameas": "bioregistry.metanetx.chemical", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.metanetx.org/chem_info/$1" + }, + "bioregistry.metanetx.chemical.n2t": { + "authority": "n2t", + "homepage": "http://www.metanetx.org/", + "id": "bioregistry.metanetx.chemical.n2t", + "name": "MetaNetX chemical at SIB Swiss Institute of Bioinformatics", + "prefix": "metanetx.chemical", + "sameas": "bioregistry.metanetx.chemical", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.metanetx.org/chem_info/$1" + }, + "bioregistry.metanetx.compartment": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.metanetx.compartment", + "name": "MetaNetX compartment at SIB Swiss Institute of Bioinformatics", + "prefix": "metanetx.compartment", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.metanetx.org/comp_info/$1" + }, + "bioregistry.metanetx.compartment.miriam": { + "authority": "miriam", + "homepage": "https://www.metanetx.org/", + "id": "bioregistry.metanetx.compartment.miriam", + "name": "MetaNetX compartment", + "prefix": "metanetx.compartment", + "sameas": "bioregistry.metanetx.compartment", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.metanetx.org/comp_info/$1" + }, + "bioregistry.metanetx.compartment.n2t": { + "authority": "n2t", + "homepage": "http://www.metanetx.org/", + "id": "bioregistry.metanetx.compartment.n2t", + "name": "MetaNetX compartment at SIB Swiss Institute of Bioinformatics", + "prefix": "metanetx.compartment", + "sameas": "bioregistry.metanetx.compartment", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.metanetx.org/comp_info/$1" + }, + "bioregistry.metanetx.reaction": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.metanetx.reaction", + "name": "MetaNetX reaction at SIB Swiss Institute of Bioinformatics", + "prefix": "metanetx.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.metanetx.org/equa_info/$1" + }, + "bioregistry.metanetx.reaction.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.metanetx.reaction.biolink", + "name": null, + "prefix": "METANETX.REACTION", + "sameas": "bioregistry.metanetx.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.metanetx.org/equa_info/$1" + }, + "bioregistry.metanetx.reaction.miriam": { + "authority": "miriam", + "homepage": "https://www.metanetx.org/", + "id": "bioregistry.metanetx.reaction.miriam", + "name": "MetaNetX reaction", + "prefix": "metanetx.reaction", + "sameas": "bioregistry.metanetx.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.metanetx.org/equa_info/$1" + }, + "bioregistry.metanetx.reaction.n2t": { + "authority": "n2t", + "homepage": "http://www.metanetx.org/", + "id": "bioregistry.metanetx.reaction.n2t", + "name": "MetaNetX reaction at SIB Swiss Institute of Bioinformatics", + "prefix": "metanetx.reaction", + "sameas": "bioregistry.metanetx.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.metanetx.org/equa_info/$1" + }, + "bioregistry.metatlas": { + "authority": "bioregistry", + "homepage": "https://metabolicatlas.org", + "id": "bioregistry.metatlas", + "name": "Metabolic Atlas", + "prefix": "metatlas", + "source": "bioregistry.io", + "subjects": [ + "chemical sciences", + "biochemistry" + ], + "uri_format": "https://metabolicatlas.org/identifier/MetabolicAtlas/$1" + }, + "bioregistry.metatlas.miriam": { + "authority": "miriam", + "homepage": "https://metabolicatlas.org", + "id": "bioregistry.metatlas.miriam", + "name": "Metabolic Atlas", + "prefix": "metatlas", + "sameas": "bioregistry.metatlas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://metabolicatlas.org/identifier/MetabolicAtlas/$1" + }, + "bioregistry.metlin": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.metlin", + "name": "METLIN at Scripps Center, Molecular Biology and Center for Mass Spectrometry, La Jolla", + "prefix": "metlin", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://metlin.scripps.edu/metabo_info.php?molid=$1" + }, + "bioregistry.metlin.miriam": { + "authority": "miriam", + "homepage": "http://masspec.scripps.edu/", + "id": "bioregistry.metlin.miriam", + "name": "METLIN", + "prefix": "metlin", + "sameas": "bioregistry.metlin", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://metlin.scripps.edu/metabo_info.php?molid=$1" + }, + "bioregistry.metlin.n2t": { + "authority": "n2t", + "homepage": "http://masspec.scripps.edu/", + "id": "bioregistry.metlin.n2t", + "name": "METLIN at Scripps Center, Molecular Biology and Center for Mass Spectrometry, La Jolla", + "prefix": "metlin", + "sameas": "bioregistry.metlin", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://metlin.scripps.edu/metabo_info.php?molid=$1" + }, + "bioregistry.metnetdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.metnetdb", + "name": "Metabolic Network Exchange Database", + "prefix": "metnetdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://metnetonline.org/browse_pathway2.php?pthID=$1" + }, + "bioregistry.metnetdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.metnetdb.org/MetNet_db.htm", + "id": "bioregistry.metnetdb.prefixcommons", + "name": "Metabolic Network Exchange", + "prefix": "metnetdb", + "sameas": "bioregistry.metnetdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://metnetonline.org/browse_pathway2.php?pthID=$1" + }, + "bioregistry.mex": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mex", + "name": "Metabolome Express", + "prefix": "mex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.metabolome-express.org/datasetview.php?datasetid=$1" + }, + "bioregistry.mex.miriam": { + "authority": "miriam", + "homepage": "https://www.metabolome-express.org/", + "id": "bioregistry.mex.miriam", + "name": "Metabolome Express", + "prefix": "mex", + "sameas": "bioregistry.mex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.metabolome-express.org/datasetview.php?datasetid=$1" + }, + "bioregistry.mex.n2t": { + "authority": "n2t", + "homepage": "https://www.metabolome-express.org/", + "id": "bioregistry.mex.n2t", + "name": "Metabolome Express", + "prefix": "mex", + "sameas": "bioregistry.mex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.metabolome-express.org/datasetview.php?datasetid=$1" + }, + "bioregistry.mge": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mge", + "name": "A CLAssification of Mobile genetic Elements", + "prefix": "mge", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://aclame.ulb.ac.be/perl/Aclame/Genomes/mge_view.cgi?view=info&id=mge:$1" + }, + "bioregistry.mge.miriam": { + "authority": "miriam", + "homepage": "http://aclame.ulb.ac.be/", + "id": "bioregistry.mge.miriam", + "name": "Aclame", + "prefix": "mge", + "sameas": "bioregistry.mge", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://aclame.ulb.ac.be/perl/Aclame/Genomes/mge_view.cgi?view=info&id=mge:$1" + }, + "bioregistry.mge.n2t": { + "authority": "n2t", + "homepage": "http://aclame.ulb.ac.be/", + "id": "bioregistry.mge.n2t", + "name": "Aclame database of mobile genetic elements", + "prefix": "mge", + "sameas": "bioregistry.mge", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://aclame.ulb.ac.be/perl/Aclame/Genomes/mge_view.cgi?view=info&id=mge:$1" + }, + "bioregistry.mge.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://aclame.ulb.ac.be", + "id": "bioregistry.mge.prefixcommons", + "name": "A CLAssification of Mobile genetic Elements", + "prefix": "aclame", + "sameas": "bioregistry.mge", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://aclame.ulb.ac.be/perl/Aclame/Genomes/mge_view.cgi?view=info&id=$1" + }, + "bioregistry.mgi": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mgi", + "name": "Mouse Genome Database - a Mouse Genome Informatics (MGI) Resource", + "prefix": "mgi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.informatics.jax.org/searches/accession_report.cgi?id=mgi:$1" + }, + "bioregistry.mgi.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.mgi.biocontext", + "name": null, + "prefix": "MGI", + "sameas": "bioregistry.mgi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.informatics.jax.org/accession/MGI:$1" + }, + "bioregistry.mgi.cellosaurus": { + "authority": "cellosaurus", + "homepage": "http://www.informatics.jax.org", + "id": "bioregistry.mgi.cellosaurus", + "name": "Mouse Genome Database (MGD) from Mouse Genome Informatics", + "prefix": "MGI", + "sameas": "bioregistry.mgi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.informatics.jax.org/marker/$1" + }, + "bioregistry.mgi.miriam": { + "authority": "miriam", + "homepage": "http://www.informatics.jax.org/", + "id": "bioregistry.mgi.miriam", + "name": "Mouse Genome Database", + "prefix": "mgi", + "sameas": "bioregistry.mgi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.informatics.jax.org/accession/MGI:$1" + }, + "bioregistry.mgi.n2t": { + "authority": "n2t", + "homepage": "http://www.informatics.jax.org/", + "id": "bioregistry.mgi.n2t", + "name": "Mouse Genome Informatics Database", + "prefix": "mgi", + "sameas": "bioregistry.mgi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.informatics.jax.org/accession/MGI:$1" + }, + "bioregistry.mgi.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.informatics.jax.org/", + "id": "bioregistry.mgi.prefixcommons", + "name": "Mouse genome database (MGD) from Mouse Genome Informatics (MGI)", + "prefix": "mgi", + "sameas": "bioregistry.mgi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.informatics.jax.org/searches/accession_report.cgi?id=mgi:$1" + }, + "bioregistry.mgi.uniprot": { + "authority": "uniprot", + "homepage": "http://www.informatics.jax.org/", + "id": "bioregistry.mgi.uniprot", + "name": "Mouse genome database (MGD) from Mouse Genome Informatics (MGI)", + "prefix": "DB-0060", + "sameas": "bioregistry.mgi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.informatics.jax.org/marker/$1" + }, + "bioregistry.mgi.wikidata": { + "authority": "wikidata", + "homepage": "http://www.informatics.jax.org/", + "id": "bioregistry.mgi.wikidata", + "name": "Mouse Genome Informatics ID", + "prefix": "P671", + "sameas": "bioregistry.mgi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.informatics.jax.org/accession/$1" + }, + "bioregistry.mgnify.proj": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mgnify.proj", + "name": "MGnify Project", + "prefix": "mgnify.proj", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/metagenomics/projects/$1" + }, + "bioregistry.mgnify.proj.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/metagenomics", + "id": "bioregistry.mgnify.proj.miriam", + "name": "MGnify Project", + "prefix": "mgnify.proj", + "sameas": "bioregistry.mgnify.proj", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/metagenomics/projects/$1" + }, + "bioregistry.mgnify.proj.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/metagenomics", + "id": "bioregistry.mgnify.proj.n2t", + "name": "MGnify Project", + "prefix": "mgnify.proj", + "sameas": "bioregistry.mgnify.proj", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/metagenomics/projects/$1" + }, + "bioregistry.mgnify.samp": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mgnify.samp", + "name": "MGnify Sample", + "prefix": "mgnify.samp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/metagenomics/samples/$1" + }, + "bioregistry.mgnify.samp.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/metagenomics", + "id": "bioregistry.mgnify.samp.miriam", + "name": "MGnify Sample", + "prefix": "mgnify.samp", + "sameas": "bioregistry.mgnify.samp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/metagenomics/samples/$1" + }, + "bioregistry.mgnify.samp.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/metagenomics", + "id": "bioregistry.mgnify.samp.n2t", + "name": "MGnify Sample", + "prefix": "mgnify.samp", + "sameas": "bioregistry.mgnify.samp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/metagenomics/samples/$1" + }, + "bioregistry.mi": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mi", + "name": "Proteomic Standard Initiative for Molecular Interaction", + "prefix": "mi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/mi/terms?obo_id=MI:$1" + }, + "bioregistry.mi.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.mi.biolink", + "name": null, + "prefix": "MI", + "sameas": "bioregistry.mi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://purl.obolibrary.org/obo/MI_$1" + }, + "bioregistry.mi.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ols4/ontologies/mi", + "id": "bioregistry.mi.miriam", + "name": "Molecular Interactions Ontology", + "prefix": "mi", + "sameas": "bioregistry.mi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/mi/terms?obo_id=MI:$1" + }, + "bioregistry.mi.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/ols/ontologies/mi", + "id": "bioregistry.mi.n2t", + "name": "Molecular Interactions Ontology through OLS", + "prefix": "psimi", + "sameas": "bioregistry.mi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/mi/terms?obo_id=MI:$1" + }, + "bioregistry.microscope": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.microscope", + "name": "Microbial Genome Annotation & Analysis Platform", + "prefix": "microscope", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genoscope.cns.fr/agc/microscope/mage/info.php?id=$1" + }, + "bioregistry.microscope.miriam": { + "authority": "miriam", + "homepage": "http://www.genoscope.cns.fr/agc/microscope", + "id": "bioregistry.microscope.miriam", + "name": "MicroScope", + "prefix": "microscope", + "sameas": "bioregistry.microscope", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genoscope.cns.fr/agc/microscope/mage/info.php?id=$1" + }, + "bioregistry.microscope.n2t": { + "authority": "n2t", + "homepage": "http://www.genoscope.cns.fr/agc/microscope", + "id": "bioregistry.microscope.n2t", + "name": "MicroScope", + "prefix": "microscope", + "sameas": "bioregistry.microscope", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.genoscope.cns.fr/agc/microscope/mage/info.php?id=$1" + }, + "bioregistry.microsporidia": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.microsporidia", + "name": "MicrosporidiaDB at EuPathDB", + "prefix": "microsporidia", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics" + ], + "uri_format": "http://microsporidiadb.org/micro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.microsporidia.miriam": { + "authority": "miriam", + "homepage": "http://microsporidiadb.org/micro/", + "id": "bioregistry.microsporidia.miriam", + "name": "MicrosporidiaDB", + "prefix": "microsporidia", + "sameas": "bioregistry.microsporidia", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://microsporidiadb.org/micro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.microsporidia.n2t": { + "authority": "n2t", + "homepage": "http://microsporidiadb.org/micro/", + "id": "bioregistry.microsporidia.n2t", + "name": "MicrosporidiaDB at EuPathDB", + "prefix": "microsporidia", + "sameas": "bioregistry.microsporidia", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://microsporidiadb.org/micro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.microsporidia.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://microsporidiadb.org/micro/", + "id": "bioregistry.microsporidia.prefixcommons", + "name": "MicrosporidiaDB", + "prefix": "microsporidia", + "sameas": "bioregistry.microsporidia", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics" + ], + "uri_format": "http://microsporidiadb.org/micro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.millipore": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.millipore", + "name": "Merck Millipore (EMD Millipore)", + "prefix": "millipore", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.merckmillipore.com/catalogue/item/$1" + }, + "bioregistry.millipore.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.merckmillipore.com/", + "id": "bioregistry.millipore.cellosaurus", + "name": "Merck Millipore (EMD Millipore)", + "prefix": "Millipore", + "sameas": "bioregistry.millipore", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.merckmillipore.com/catalogue/item/$1" + }, + "bioregistry.mimodb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mimodb", + "name": "BDB at University of Electronic Science and Technology of China", + "prefix": "mimodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://immunet.cn/mimodb/browse.php?table=mimoset&ID=$1" + }, + "bioregistry.mimodb.miriam": { + "authority": "miriam", + "homepage": "http://immunet.cn/bdb/", + "id": "bioregistry.mimodb.miriam", + "name": "MimoDB", + "prefix": "mimodb", + "sameas": "bioregistry.mimodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://immunet.cn/bdb/index.php/mimoset/$1" + }, + "bioregistry.mimodb.n2t": { + "authority": "n2t", + "homepage": "http://immunet.cn/bdb/", + "id": "bioregistry.mimodb.n2t", + "name": "BDB at University of Electronic Science and Technology of China", + "prefix": "mimodb", + "sameas": "bioregistry.mimodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://immunet.cn/bdb/index.php/mimoset/$1" + }, + "bioregistry.mimodb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://immunet.cn/mimodb/", + "id": "bioregistry.mimodb.prefixcommons", + "name": "MimoDB", + "prefix": "mimodb", + "sameas": "bioregistry.mimodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://immunet.cn/mimodb/browse.php?table=mimoset&ID=$1" + }, + "bioregistry.minid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.minid", + "name": "Minimal Identifiers for Transient Data", + "prefix": "minid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://hdl.handle.net/hdl:20.500.12582/$1" + }, + "bioregistry.minid.miriam": { + "authority": "miriam", + "homepage": "https://fair-research.org", + "id": "bioregistry.minid.miriam", + "name": "Minimal Viable Identifier", + "prefix": "minid", + "sameas": "bioregistry.minid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://hdl.handle.net/hdl:20.500.12582/$1" + }, + "bioregistry.minid.n2t": { + "authority": "n2t", + "homepage": "http://minid.bd2k.org", + "id": "bioregistry.minid.n2t", + "name": "Minimal Identifiers for Transient Data", + "prefix": "minid", + "sameas": "bioregistry.minid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://n2t.net/ark:/57799/$1" + }, + "bioregistry.minid.test": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.minid.test", + "name": "MINID Test", + "prefix": "minid.test", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://hdl.handle.net/hdl:20.500.12633/$1" + }, + "bioregistry.minid.test.miriam": { + "authority": "miriam", + "homepage": "https://fair-research.org", + "id": "bioregistry.minid.test.miriam", + "name": "MINID Test", + "prefix": "minid.test", + "sameas": "bioregistry.minid.test", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://hdl.handle.net/hdl:20.500.12633/$1" + }, + "bioregistry.mint": { + "authority": "bioregistry", + "homepage": "https://mint.bio.uniroma2.it", + "id": "bioregistry.mint", + "name": "Molecular Interaction Database", + "prefix": "mint", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/intact/query/interaction_id:$1" + }, + "bioregistry.mint.miriam": { + "authority": "miriam", + "homepage": "http://mint.bio.uniroma2.it/mint/", + "id": "bioregistry.mint.miriam", + "name": "MINT", + "prefix": "mint", + "sameas": "bioregistry.mint", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mint.bio.uniroma2.it/mint/search/inFrameInteraction.do?interactionAc=$1" + }, + "bioregistry.mint.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/intact/", + "id": "bioregistry.mint.n2t", + "name": "MINT subset through IntAct", + "prefix": "mint", + "sameas": "bioregistry.mint", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/intact/query/interaction_id:$1" + }, + "bioregistry.mint.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://mint.bio.uniroma2.it/mint/", + "id": "bioregistry.mint.prefixcommons", + "name": "Molecular INTeraction Database", + "prefix": "mint", + "sameas": "bioregistry.mint", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://mint.bio.uniroma2.it/mint/search/interactor.do?queryType=protein&interactorAc=$1" + }, + "bioregistry.mint.uniprot": { + "authority": "uniprot", + "homepage": "https://mint.bio.uniroma2.it/", + "id": "bioregistry.mint.uniprot", + "name": "Molecular INTeraction database", + "prefix": "DB-0158", + "sameas": "bioregistry.mint", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://mint.bio.uniroma2.it/cgi-bin/protein.py?id=$1" + }, + "bioregistry.mipmod": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mipmod", + "name": "MIPModDB at Indian Institute of Technology Kanpur", + "prefix": "mipmod", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://bioinfo.iitk.ac.in/MIPModDB/result.php?code=$1" + }, + "bioregistry.mipmod.miriam": { + "authority": "miriam", + "homepage": "http://bioinfo.iitk.ac.in/MIPModDB", + "id": "bioregistry.mipmod.miriam", + "name": "MIPModDB", + "prefix": "mipmod", + "sameas": "bioregistry.mipmod", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioinfo.iitk.ac.in/MIPModDB/result.php?code=$1" + }, + "bioregistry.mipmod.n2t": { + "authority": "n2t", + "homepage": "http://bioinfo.iitk.ac.in/MIPModDB", + "id": "bioregistry.mipmod.n2t", + "name": "MIPModDB at Indian Institute of Technology Kanpur", + "prefix": "mipmod", + "sameas": "bioregistry.mipmod", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioinfo.iitk.ac.in/MIPModDB/result.php?code=$1" + }, + "bioregistry.mipmod.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://bioinfo.iitk.ac.in/MIPModDB", + "id": "bioregistry.mipmod.prefixcommons", + "name": "MIPModDB", + "prefix": "mipmod", + "sameas": "bioregistry.mipmod", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://bioinfo.iitk.ac.in/MIPModDB/result.php?code=$1" + }, + "bioregistry.mir": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mir", + "name": "Identifiers.org Registry through EBI", + "prefix": "mir", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://resolver.api.identifiers.org/resolveMirId/MIR:$1" + }, + "bioregistry.mir.miriam": { + "authority": "miriam", + "homepage": "https://registry.identifiers.org/registry", + "id": "bioregistry.mir.miriam", + "name": "Identifiers.org Registry", + "prefix": "mir", + "sameas": "bioregistry.mir", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://resolver.api.identifiers.org/resolveMirId/MIR:$1" + }, + "bioregistry.mir.n2t": { + "authority": "n2t", + "homepage": "https://identifiers.org/registry", + "id": "bioregistry.mir.n2t", + "name": "Identifiers.org Registry through EBI", + "prefix": "mir", + "sameas": "bioregistry.mir", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://identifiers.org/registry?query=\"MIR:$1\"" + }, + "bioregistry.mirbase": { + "authority": "bioregistry", + "homepage": "http://www.mirbase.org/", + "id": "bioregistry.mirbase", + "name": "miRBase Sequence Database", + "prefix": "mirbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.mirbase.org/cgi-bin/mirna_entry.pl?acc=$1" + }, + "bioregistry.mirbase.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.mirbase.biolink", + "name": null, + "prefix": "mirbase", + "sameas": "bioregistry.mirbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://identifiers.org/mirbase$1" + }, + "bioregistry.mirbase.mature": { + "authority": "bioregistry", + "homepage": "http://www.mirbase.org/", + "id": "bioregistry.mirbase.mature", + "name": "miRBase mature sequence", + "prefix": "mirbase.mature", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "molecular biology" + ], + "uri_format": "http://www.mirbase.org/cgi-bin/mature.pl?mature_acc=$1" + }, + "bioregistry.mirbase.mature.miriam": { + "authority": "miriam", + "homepage": "http://www.mirbase.org/", + "id": "bioregistry.mirbase.mature.miriam", + "name": "miRBase mature sequence", + "prefix": "mirbase.mature", + "sameas": "bioregistry.mirbase.mature", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mirbase.org/cgi-bin/mature.pl?mature_acc=$1" + }, + "bioregistry.mirbase.mature.n2t": { + "authority": "n2t", + "homepage": "http://www.mirbase.org/", + "id": "bioregistry.mirbase.mature.n2t", + "name": "miRBase", + "prefix": "mirbase.mature", + "sameas": "bioregistry.mirbase.mature", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mirbase.org/cgi-bin/mature.pl?mature_acc=$1" + }, + "bioregistry.mirbase.mature.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.mirbase.mature.prefixcommons", + "name": "miRBase mature sequence", + "prefix": "mirbase.mature", + "sameas": "bioregistry.mirbase.mature", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "molecular biology" + ], + "uri_format": "http://www.mirbase.org/cgi-bin/mature.pl?mature_acc=$1" + }, + "bioregistry.mirbase.mature.wikidata": { + "authority": "wikidata", + "homepage": "http://www.mirbase.org/", + "id": "bioregistry.mirbase.mature.wikidata", + "name": "miRBase mature miRNA ID", + "prefix": "P2871", + "sameas": "bioregistry.mirbase.mature", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "molecular biology" + ], + "uri_format": "http://www.mirbase.org/cgi-bin/mature.pl?mature_acc=$1" + }, + "bioregistry.mirbase.miriam": { + "authority": "miriam", + "homepage": "http://www.mirbase.org/", + "id": "bioregistry.mirbase.miriam", + "name": "miRBase Sequence", + "prefix": "mirbase", + "sameas": "bioregistry.mirbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mirbase.org/cgi-bin/mirna_entry.pl?acc=$1" + }, + "bioregistry.mirbase.n2t": { + "authority": "n2t", + "homepage": "http://www.mirbase.org/", + "id": "bioregistry.mirbase.n2t", + "name": "miRBase Sequence Database", + "prefix": "mirbase", + "sameas": "bioregistry.mirbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mirbase.org/cgi-bin/mirna_entry.pl?acc=$1" + }, + "bioregistry.mirbase.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.mirbase.org/", + "id": "bioregistry.mirbase.prefixcommons", + "name": "miRBase Sequence Database", + "prefix": "mirbase", + "sameas": "bioregistry.mirbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.mirbase.org/cgi-bin/mirna_entry.pl?acc=$1" + }, + "bioregistry.mirbase.wikidata": { + "authority": "wikidata", + "homepage": "http://www.mirbase.org/", + "id": "bioregistry.mirbase.wikidata", + "name": "miRBase pre-miRNA ID", + "prefix": "P2870", + "sameas": "bioregistry.mirbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.mirbase.org/cgi-bin/mirna_entry.pl?acc=$1" + }, + "bioregistry.mirex": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mirex", + "name": "mirEX at Adam Mickiewicz University", + "prefix": "mirex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://comgen.pl/mirex1/?page=results/record&name=$1&exref=pp2a&limit=yes" + }, + "bioregistry.mirex.miriam": { + "authority": "miriam", + "homepage": "http://comgen.pl/mirex/?page=home", + "id": "bioregistry.mirex.miriam", + "name": "mirEX", + "prefix": "mirex", + "sameas": "bioregistry.mirex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://comgen.pl/mirex1/?page=results/record&name=$1&exref=pp2a&limit=yes" + }, + "bioregistry.mirex.n2t": { + "authority": "n2t", + "homepage": "http://comgen.pl/mirex/?page=home", + "id": "bioregistry.mirex.n2t", + "name": "mirEX at Adam Mickiewicz University", + "prefix": "mirex", + "sameas": "bioregistry.mirex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://comgen.pl/mirex1/?page=results/record&name=$1&exref=pp2a&limit=yes" + }, + "bioregistry.miriam": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.miriam", + "name": "Minimal Information Required In the Annotation of Models", + "prefix": "miriam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://registry.identifiers.org/registry/$1" + }, + "bioregistry.miriam.collection": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.miriam.collection", + "name": "MIRIAM Resources (data collection)", + "prefix": "miriam.collection", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/miriam/main/$1" + }, + "bioregistry.miriam.collection.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/miriam/", + "id": "bioregistry.miriam.collection.n2t", + "name": "MIRIAM Resources (data collection)", + "prefix": "miriam.collection", + "sameas": "bioregistry.miriam.collection", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/miriam/main/$1" + }, + "bioregistry.miriam.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk", + "id": "bioregistry.miriam.miriam", + "name": "Identifiers.org namespace", + "prefix": "identifiers.namespace", + "sameas": "bioregistry.miriam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://registry.identifiers.org/registry/$1" + }, + "bioregistry.miriam.resource": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.miriam.resource", + "name": "MIRIAM Legacy Registry Identifier", + "prefix": "miriam.resource", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/miriam/main/resources/$1" + }, + "bioregistry.miriam.resource.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/miriam/", + "id": "bioregistry.miriam.resource.miriam", + "name": "MIRIAM Registry resource", + "prefix": "miriam.resource", + "sameas": "bioregistry.miriam.resource", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/miriam/main/resources/$1" + }, + "bioregistry.miriam.resource.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/miriam/", + "id": "bioregistry.miriam.resource.n2t", + "name": "MIRIAM Registry (resources)", + "prefix": "miriam.resource", + "sameas": "bioregistry.miriam.resource", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/miriam/main/resources/$1" + }, + "bioregistry.miriam.resource.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/miriam/", + "id": "bioregistry.miriam.resource.prefixcommons", + "name": "MIRIAM Resources", + "prefix": "miriam.resource", + "sameas": "bioregistry.miriam.resource", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ebi.ac.uk/miriam/main/resources/$1" + }, + "bioregistry.mirnest": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mirnest", + "name": "miRNEST at Adam Mickiewicz University", + "prefix": "mirnest", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rhesus.amu.edu.pl/mirnest/copy/details.php?id=$1" + }, + "bioregistry.mirnest.miriam": { + "authority": "miriam", + "homepage": "http://rhesus.amu.edu.pl/mirnest/copy/", + "id": "bioregistry.mirnest.miriam", + "name": "miRNEST", + "prefix": "mirnest", + "sameas": "bioregistry.mirnest", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rhesus.amu.edu.pl/mirnest/copy/details.php?id=$1" + }, + "bioregistry.mirnest.n2t": { + "authority": "n2t", + "homepage": "http://rhesus.amu.edu.pl/mirnest/copy/", + "id": "bioregistry.mirnest.n2t", + "name": "miRNEST at Adam Mickiewicz University", + "prefix": "mirnest", + "sameas": "bioregistry.mirnest", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rhesus.amu.edu.pl/mirnest/copy/details.php?id=$1" + }, + "bioregistry.mirnest.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://lemur.amu.edu.pl/share/php/mirnest/", + "id": "bioregistry.mirnest.prefixcommons", + "name": "miRNEST", + "prefix": "mirnest", + "sameas": "bioregistry.mirnest", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lemur.amu.edu.pl/share/php/mirnest/search.php?search_term=$1" + }, + "bioregistry.mirtarbase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mirtarbase", + "name": "miRTarBase at National Chiao Tung University", + "prefix": "mirtarbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mirtarbase.mbc.nctu.edu.tw/php/detail.php?mirtid=$1" + }, + "bioregistry.mirtarbase.miriam": { + "authority": "miriam", + "homepage": "http://mirtarbase.mbc.nctu.edu.tw/", + "id": "bioregistry.mirtarbase.miriam", + "name": "miRTarBase", + "prefix": "mirtarbase", + "sameas": "bioregistry.mirtarbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mirtarbase.mbc.nctu.edu.tw/php/detail.php?mirtid=$1" + }, + "bioregistry.mirtarbase.n2t": { + "authority": "n2t", + "homepage": "http://mirtarbase.mbc.nctu.edu.tw/", + "id": "bioregistry.mirtarbase.n2t", + "name": "miRTarBase at National Chiao Tung University", + "prefix": "mirtarbase", + "sameas": "bioregistry.mirtarbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mirtarbase.mbc.nctu.edu.tw/php/detail.php?mirtid=$1" + }, + "bioregistry.mirtarbase.wikidata": { + "authority": "wikidata", + "homepage": "http://mirtarbase.mbc.nctu.edu.tw/php/download.php", + "id": "bioregistry.mirtarbase.wikidata", + "name": "mirTarBase ID", + "prefix": "P2646", + "sameas": "bioregistry.mirtarbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mirtarbase.mbc.nctu.edu.tw/php/detail.php?mirtid=$1" + }, + "bioregistry.mlc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mlc", + "name": "MLCommons Association", + "prefix": "mlc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.mlcommons.org/mlc-id/$1" + }, + "bioregistry.mlc.miriam": { + "authority": "miriam", + "homepage": "https://mlcommons.org/en/", + "id": "bioregistry.mlc.miriam", + "name": "MLCommons Association", + "prefix": "mlc", + "sameas": "bioregistry.mlc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.mlcommons.org/mlc-id/$1" + }, + "bioregistry.mmdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mmdb", + "name": "Molecular Modeling Database", + "prefix": "mmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/Structure/mmdb/mmdbsrv.cgi?uid=$1" + }, + "bioregistry.mmdb.miriam": { + "authority": "miriam", + "homepage": "http://www.ncbi.nlm.nih.gov/sites/entrez?db=structure", + "id": "bioregistry.mmdb.miriam", + "name": "Molecular Modeling Database", + "prefix": "mmdb", + "sameas": "bioregistry.mmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/Structure/mmdb/mmdbsrv.cgi?uid=$1" + }, + "bioregistry.mmdb.n2t": { + "authority": "n2t", + "homepage": "http://www.ncbi.nlm.nih.gov/sites/entrez?db=structure", + "id": "bioregistry.mmdb.n2t", + "name": "MMDB at NCBI", + "prefix": "mmdb", + "sameas": "bioregistry.mmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/Structure/mmdb/mmdbsrv.cgi?uid=$1" + }, + "bioregistry.mmdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/Structure/", + "id": "bioregistry.mmdb.prefixcommons", + "name": "Molecular Modeling Database", + "prefix": "mmdb", + "sameas": "bioregistry.mmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/Structure/mmdb/mmdbsrv.cgi?uid=$1" + }, + "bioregistry.mmmp.biomaps": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mmmp.biomaps", + "name": "Melanoma Molecular Map Project Biomaps", + "prefix": "mmmp.biomaps", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://bioregistry.io/mmmp.biomaps:$1" + }, + "bioregistry.mmmp.biomaps.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.mmmp.biomaps.biolink", + "name": null, + "prefix": "mmmp.biomaps", + "sameas": "bioregistry.mmmp.biomaps", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://bioregistry.io/mmmp.biomaps:$1" + }, + "bioregistry.mmmp.biomaps.miriam": { + "authority": "miriam", + "homepage": "http://www.mmmp.org/MMMP/public/biomap/listBiomap.mmmp", + "id": "bioregistry.mmmp.biomaps.miriam", + "name": "Melanoma Molecular Map Project Biomaps", + "prefix": "mmmp:biomaps", + "sameas": "bioregistry.mmmp.biomaps", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mmmp.org/MMMP/public/biomap/viewBiomap.mmmp?id=$1" + }, + "bioregistry.mmmp.biomaps.n2t": { + "authority": "n2t", + "homepage": "http://www.mmmp.org/MMMP/public/biomap/listBiomap.mmmp", + "id": "bioregistry.mmmp.biomaps.n2t", + "name": "main webpage", + "prefix": "biomaps", + "sameas": "bioregistry.mmmp.biomaps", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mmmp.org/MMMP/public/biomap/viewBiomap.mmmp?id=$1" + }, + "bioregistry.mmmp.biomaps.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.mmmp.org/MMMP/", + "id": "bioregistry.mmmp.biomaps.prefixcommons", + "name": "Melanoma Molecular Map Project", + "prefix": "mmmp", + "sameas": "bioregistry.mmmp.biomaps", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.mmmp.org/MMMP/public/biomap/viewBiomap.mmmp?id=$1" + }, + "bioregistry.mmp.cat": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mmp.cat", + "name": "MarCat through SfB", + "prefix": "mmp.cat", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mmp.sfb.uit.no/databases/marcat/#/records/$1" + }, + "bioregistry.mmp.cat.miriam": { + "authority": "miriam", + "homepage": "https://mmp.sfb.uit.no/databases/marcat/", + "id": "bioregistry.mmp.cat.miriam", + "name": "MarCat", + "prefix": "mmp.cat", + "sameas": "bioregistry.mmp.cat", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mmp.sfb.uit.no/databases/marcat/#/records/$1" + }, + "bioregistry.mmp.cat.n2t": { + "authority": "n2t", + "homepage": "https://mmp.sfb.uit.no/databases/marcat/", + "id": "bioregistry.mmp.cat.n2t", + "name": "MarCat through SfB", + "prefix": "mmp.cat", + "sameas": "bioregistry.mmp.cat", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mmp.sfb.uit.no/databases/marcat/#/records/$1" + }, + "bioregistry.mmp.db": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mmp.db", + "name": "MarDB through SfB", + "prefix": "mmp.db", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mmp.sfb.uit.no/databases/mardb/#/records/$1" + }, + "bioregistry.mmp.db.miriam": { + "authority": "miriam", + "homepage": "https://mmp.sfb.uit.no/databases/mardb/", + "id": "bioregistry.mmp.db.miriam", + "name": "MarDB", + "prefix": "mmp.db", + "sameas": "bioregistry.mmp.db", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mmp.sfb.uit.no/databases/mardb/#/records/$1" + }, + "bioregistry.mmp.db.n2t": { + "authority": "n2t", + "homepage": "https://mmp.sfb.uit.no/databases/mardb/", + "id": "bioregistry.mmp.db.n2t", + "name": "MarDB through SfB", + "prefix": "mmp.db", + "sameas": "bioregistry.mmp.db", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mmp.sfb.uit.no/databases/mardb/#/records/$1" + }, + "bioregistry.mmp.fun": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mmp.fun", + "name": "MarFun", + "prefix": "mmp.fun", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mmp.sfb.uit.no/databases/marfun/#/records/$1" + }, + "bioregistry.mmp.fun.miriam": { + "authority": "miriam", + "homepage": "https://mmp.sfb.uit.no/databases/marfun", + "id": "bioregistry.mmp.fun.miriam", + "name": "MarFun", + "prefix": "mmp.fun", + "sameas": "bioregistry.mmp.fun", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mmp.sfb.uit.no/databases/marfun/#/records/$1" + }, + "bioregistry.mmp.ref": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mmp.ref", + "name": "MarRef through SfB", + "prefix": "mmp.ref", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mmp.sfb.uit.no/databases/marref/#/records/$1" + }, + "bioregistry.mmp.ref.miriam": { + "authority": "miriam", + "homepage": "https://mmp.sfb.uit.no/databases/marref/", + "id": "bioregistry.mmp.ref.miriam", + "name": "MarRef", + "prefix": "mmp.ref", + "sameas": "bioregistry.mmp.ref", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mmp.sfb.uit.no/databases/marref/#/records/$1" + }, + "bioregistry.mmp.ref.n2t": { + "authority": "n2t", + "homepage": "https://mmp.sfb.uit.no/databases/marref/", + "id": "bioregistry.mmp.ref.n2t", + "name": "MarRef through SfB", + "prefix": "mmp.ref", + "sameas": "bioregistry.mmp.ref", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mmp.sfb.uit.no/databases/marref/#/records/$1" + }, + "bioregistry.mmrrc": { + "authority": "bioregistry", + "homepage": "https://www.mmrrc.org", + "id": "bioregistry.mmrrc", + "name": "Mutant Mouse Resource and Research Centers", + "prefix": "mmrrc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.mmrrc.org/catalog/sds.php?mmrrc_id=$1" + }, + "bioregistry.mmrrc.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.mmrrc.biocontext", + "name": null, + "prefix": "MMRRC", + "sameas": "bioregistry.mmrrc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.mmrrc.org/catalog/sds.php?mmrrc_id=$1" + }, + "bioregistry.mmrrc.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.mmrrc.org/", + "id": "bioregistry.mmrrc.cellosaurus", + "name": "Mutant Mouse Resource & Research Centers", + "prefix": "MMRRC", + "sameas": "bioregistry.mmrrc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.mmrrc.org/catalog/getSDS.php?mmrrc_id=$1" + }, + "bioregistry.mmrrc.miriam": { + "authority": "miriam", + "homepage": "http://www.mmrrc.org/", + "id": "bioregistry.mmrrc.miriam", + "name": "MMRRC", + "prefix": "mmrrc", + "sameas": "bioregistry.mmrrc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mmrrc.org/catalog/getSDS.php?mmrrc_id=$1" + }, + "bioregistry.mmrrc.n2t": { + "authority": "n2t", + "homepage": "http://www.mmrrc.org/", + "id": "bioregistry.mmrrc.n2t", + "name": "MMRRC at University of North Carolina", + "prefix": "mmrrc", + "sameas": "bioregistry.mmrrc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mmrrc.org/catalog/getSDS.php?mmrrc_id=$1" + }, + "bioregistry.mmsinc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mmsinc", + "name": "MMsINC", + "prefix": "mmsinc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mms.dsfarm.unipd.it/mmsinc/search/molecule.php?mmscode=$1" + }, + "bioregistry.mmsinc.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://mms.dsfarm.unipd.it/MMsINC", + "id": "bioregistry.mmsinc.prefixcommons", + "name": "MMsINC", + "prefix": "mmsinc", + "sameas": "bioregistry.mmsinc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mms.dsfarm.unipd.it/mmsinc/search/molecule.php?mmscode=$1" + }, + "bioregistry.mmusdv": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mmusdv", + "name": "Mouse Developmental Stages", + "prefix": "mmusdv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/MMUSDV_$1" + }, + "bioregistry.mmusdv.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.mmusdv.biolink", + "name": null, + "prefix": "MmusDv", + "sameas": "bioregistry.mmusdv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/MMUSDV_$1" + }, + "bioregistry.mo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mo", + "name": "Microarray and Gene Expression Data Ontology", + "prefix": "mo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/MO/$1" + }, + "bioregistry.mo.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/", + "id": "bioregistry.mo.miriam", + "name": "MGED Ontology", + "prefix": "mo", + "sameas": "bioregistry.mo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/MO/$1" + }, + "bioregistry.mo.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/", + "id": "bioregistry.mo.n2t", + "name": "MGED Ontology at BioPortal", + "prefix": "mo", + "sameas": "bioregistry.mo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/MO/$1" + }, + "bioregistry.mobidb": { + "authority": "bioregistry", + "homepage": "http://mobidb.bio.unipd.it", + "id": "bioregistry.mobidb", + "name": "MobiDB", + "prefix": "mobidb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mobidb.org/$1" + }, + "bioregistry.mobidb.miriam": { + "authority": "miriam", + "homepage": "https://mobidb.org/", + "id": "bioregistry.mobidb.miriam", + "name": "MobiDB", + "prefix": "mobidb", + "sameas": "bioregistry.mobidb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mobidb.org/$1" + }, + "bioregistry.mobidb.n2t": { + "authority": "n2t", + "homepage": "http://mobidb.bio.unipd.it", + "id": "bioregistry.mobidb.n2t", + "name": "MobiDB", + "prefix": "mobidb", + "sameas": "bioregistry.mobidb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mobidb.bio.unipd.it/$1" + }, + "bioregistry.mobidb.uniprot": { + "authority": "uniprot", + "homepage": "https://mobidb.bio.unipd.it/", + "id": "bioregistry.mobidb.uniprot", + "name": "MobiDB", + "prefix": "DB-0183", + "sameas": "bioregistry.mobidb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mobidb.bio.unipd.it/entries/$1" + }, + "bioregistry.mod": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mod", + "name": "Proteomics Standards Initiative protein modification ontology", + "prefix": "mod", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://bioportal.bioontology.org/ontologies/1041?p=terms&conceptid=MOD:$1" + }, + "bioregistry.mod.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/ontologies/PSIMOD", + "id": "bioregistry.mod.miriam", + "name": "Protein Modification Ontology", + "prefix": "mod", + "sameas": "bioregistry.mod", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioportal.bioontology.org/ontologies/1041?p=terms&conceptid=MOD:$1" + }, + "bioregistry.mod.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/PSIMOD", + "id": "bioregistry.mod.n2t", + "name": "Protein modifications ontology through BioPortal", + "prefix": "mod", + "sameas": "bioregistry.mod", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioportal.bioontology.org/ontologies/1041?p=terms&conceptid=MOD:$1" + }, + "bioregistry.modeldb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.modeldb", + "name": "ModelDB at SenseLab", + "prefix": "modeldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://modeldb.science/$1" + }, + "bioregistry.modeldb.concept": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.modeldb.concept", + "name": "ModelDB concept", + "prefix": "modeldb.concept", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://senselab.med.yale.edu/ModelDB/ModelList?id=$1" + }, + "bioregistry.modeldb.concept.miriam": { + "authority": "miriam", + "homepage": "https://www.yale.edu", + "id": "bioregistry.modeldb.concept.miriam", + "name": "ModelDB concept", + "prefix": "modeldb.concept", + "sameas": "bioregistry.modeldb.concept", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://senselab.med.yale.edu/ModelDB/ModelList?id=$1" + }, + "bioregistry.modeldb.miriam": { + "authority": "miriam", + "homepage": "https://modeldb.science", + "id": "bioregistry.modeldb.miriam", + "name": "ModelDB", + "prefix": "modeldb", + "sameas": "bioregistry.modeldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://modeldb.science/$1" + }, + "bioregistry.modeldb.n2t": { + "authority": "n2t", + "homepage": "http://senselab.med.yale.edu/ModelDB/", + "id": "bioregistry.modeldb.n2t", + "name": "ModelDB at SenseLab", + "prefix": "modeldb", + "sameas": "bioregistry.modeldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://senselab.med.yale.edu/ModelDB/ShowModel.asp?model=$1" + }, + "bioregistry.modeldb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://senselab.med.yale.edu/ModelDB/", + "id": "bioregistry.modeldb.prefixcommons", + "name": "ModelDB", + "prefix": "modeldb", + "sameas": "bioregistry.modeldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://senselab.med.yale.edu/ModelDB/ShowModel.asp?model=$1" + }, + "bioregistry.molbase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.molbase", + "name": "Molbase at Chinese Academy of Sciences", + "prefix": "molbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.molbase.com/en/index.php?app=search&search_keyword=$1" + }, + "bioregistry.molbase.miriam": { + "authority": "miriam", + "homepage": "http://www.molbase.com/", + "id": "bioregistry.molbase.miriam", + "name": "Molbase", + "prefix": "molbase", + "sameas": "bioregistry.molbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.molbase.com/en/index.php?app=search&search_keyword=$1" + }, + "bioregistry.molbase.n2t": { + "authority": "n2t", + "homepage": "http://www.molbase.com/", + "id": "bioregistry.molbase.n2t", + "name": "Molbase at Chinese Academy of Sciences", + "prefix": "molbase", + "sameas": "bioregistry.molbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.molbase.com/en/index.php?app=search&search_keyword=$1" + }, + "bioregistry.molmedb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.molmedb", + "name": "MolMeDB: Molecules on Membranes Database", + "prefix": "molmedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://molmedb.upol.cz/mol/$1" + }, + "bioregistry.molmedb.miriam": { + "authority": "miriam", + "homepage": "http://www.upol.cz/en/", + "id": "bioregistry.molmedb.miriam", + "name": "MolMeDB", + "prefix": "molmedb", + "sameas": "bioregistry.molmedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://molmedb.upol.cz/mol/$1" + }, + "bioregistry.molmovdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.molmovdb", + "name": "Database of Macromolecular Movements", + "prefix": "molmovdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.molmovdb.org/cgi-bin/morph.cgi?ID=$1" + }, + "bioregistry.molmovdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://bioinfo.mbb.yale.edu/MolMovDB/", + "id": "bioregistry.molmovdb.prefixcommons", + "name": "Database of Macromolecular Movements", + "prefix": "molmovdb", + "sameas": "bioregistry.molmovdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.molmovdb.org/cgi-bin/morph.cgi?ID=$1" + }, + "bioregistry.mondo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mondo", + "name": "Monarch Disease Ontology", + "prefix": "mondo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bioregistry.io/$1" + }, + "bioregistry.mondo.wikidata": { + "authority": "wikidata", + "homepage": "https://github.com/monarch-initiative/mondo", + "id": "bioregistry.mondo.wikidata", + "name": "Mondo ID", + "prefix": "P5270", + "sameas": "bioregistry.mondo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bioregistry.io/$1" + }, + "bioregistry.morpheus": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.morpheus", + "name": "Morpheus model repository", + "prefix": "morpheus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://morpheus.gitlab.io/models/$1" + }, + "bioregistry.morpheus.miriam": { + "authority": "miriam", + "homepage": "https://morpheus.gitlab.io/", + "id": "bioregistry.morpheus.miriam", + "name": "Morpheus model repository", + "prefix": "morpheus", + "sameas": "bioregistry.morpheus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://morpheus.gitlab.io/models/$1" + }, + "bioregistry.mp": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mp", + "name": "Mammalian Phenotype Ontology through BioPortal", + "prefix": "mp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology" + ], + "uri_format": "https://bioportal.bioontology.org/ontologies/MP/MP:$1" + }, + "bioregistry.mp.miriam": { + "authority": "miriam", + "homepage": "http://www.informatics.jax.org/", + "id": "bioregistry.mp.miriam", + "name": "Mammalian Phenotype Ontology", + "prefix": "mp", + "sameas": "bioregistry.mp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.informatics.jax.org/searches/Phat.cgi?id=MP:$1" + }, + "bioregistry.mp.n2t": { + "authority": "n2t", + "homepage": "https://bioportal.bioontology.org/ontologies/MP", + "id": "bioregistry.mp.n2t", + "name": "Mammalian Phenotype Ontology through BioPortal", + "prefix": "mp", + "sameas": "bioregistry.mp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bioportal.bioontology.org/ontologies/MP/MP:$1" + }, + "bioregistry.mp.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.informatics.jax.org/searches/MP_form.shtml", + "id": "bioregistry.mp.prefixcommons", + "name": "Mammalian phenotype", + "prefix": "mp", + "sameas": "bioregistry.mp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology" + ], + "uri_format": "http://www.informatics.jax.org/searches/Phat.cgi?id=$1" + }, + "bioregistry.mpid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mpid", + "name": "Microbial Protein Interaction Database", + "prefix": "mpid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.jcvi.org/mpidb/interaction.php?pname=$1" + }, + "bioregistry.mpid.miriam": { + "authority": "miriam", + "homepage": "http://www.jcvi.org/mpidb/about.php", + "id": "bioregistry.mpid.miriam", + "name": "Microbial Protein Interaction Database", + "prefix": "mpid", + "sameas": "bioregistry.mpid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.jcvi.org/mpidb/experiment.php?interaction_id=$1" + }, + "bioregistry.mpid.n2t": { + "authority": "n2t", + "homepage": "http://www.jcvi.org/mpidb/about.php", + "id": "bioregistry.mpid.n2t", + "name": "Microbial Protein Interaction Database", + "prefix": "mpid", + "sameas": "bioregistry.mpid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.jcvi.org/mpidb/experiment.php?interaction_id=$1" + }, + "bioregistry.mpid.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.jcvi.org/mpidb/", + "id": "bioregistry.mpid.prefixcommons", + "name": "Microbial Protein Interaction Database", + "prefix": "mpi", + "sameas": "bioregistry.mpid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.jcvi.org/mpidb/interaction.php?pname=$1" + }, + "bioregistry.ms": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ms", + "name": "Mass Spectrometry Controlled Vocabulary through BioPortal", + "prefix": "ms", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/MS/MS:$1" + }, + "bioregistry.ms.miriam": { + "authority": "miriam", + "homepage": "https://bioportal.bioontology.org/ontologies/MS", + "id": "bioregistry.ms.miriam", + "name": "Mass Spectrometry Controlled Vocabulary", + "prefix": "ms", + "sameas": "bioregistry.ms", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/MS/MS:$1" + }, + "bioregistry.ms.n2t": { + "authority": "n2t", + "homepage": "https://bioportal.bioontology.org/ontologies/MS", + "id": "bioregistry.ms.n2t", + "name": "Mass Spectrometry Controlled Vocabulary through BioPortal", + "prefix": "ms", + "sameas": "bioregistry.ms", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/MS/MS:$1" + }, + "bioregistry.msigdb": { + "authority": "bioregistry", + "homepage": "https://www.gsea-msigdb.org", + "id": "bioregistry.msigdb", + "name": "Molecular Signatures Database", + "prefix": "msigdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gsea-msigdb.org/gsea/msigdb/$1" + }, + "bioregistry.msigdb.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.msigdb.biolink", + "name": null, + "prefix": "MSigDB", + "sameas": "bioregistry.msigdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.gsea-msigdb.org/gsea/msigdb/$1" + }, + "bioregistry.mtbd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mtbd", + "name": "Mouse Tumor Biology Database", + "prefix": "mtbd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://tumor.informatics.jax.org/mtbwi/strainDetails.do?key=$1" + }, + "bioregistry.mtbd.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://tumor.informatics.jax.org", + "id": "bioregistry.mtbd.prefixcommons", + "name": "Mouse Tumor Biology Database", + "prefix": "mtbd", + "sameas": "bioregistry.mtbd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://tumor.informatics.jax.org/mtbwi/strainDetails.do?key=$1" + }, + "bioregistry.multicellds.cell_line": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.multicellds.cell_line", + "name": "MultiCellDS Digital Cell Line at Keck School of Medicine", + "prefix": "multicellds.cell_line", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://multicellds.org/MultiCellDB/$1" + }, + "bioregistry.multicellds.cell_line.miriam": { + "authority": "miriam", + "homepage": "http://multicellds.org/MultiCellDB.php", + "id": "bioregistry.multicellds.cell_line.miriam", + "name": "MultiCellDS Digital Cell Line", + "prefix": "multicellds.cell_line", + "sameas": "bioregistry.multicellds.cell_line", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://multicellds.org/MultiCellDB/$1" + }, + "bioregistry.multicellds.cell_line.n2t": { + "authority": "n2t", + "homepage": "http://multicellds.org/MultiCellDB.php", + "id": "bioregistry.multicellds.cell_line.n2t", + "name": "MultiCellDS Digital Cell Line at Keck School of Medicine", + "prefix": "multicellds.cell_line", + "sameas": "bioregistry.multicellds.cell_line", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://multicellds.org/MultiCellDB/$1" + }, + "bioregistry.multicellds.collection": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.multicellds.collection", + "name": "MultiCellDScollection at Keck School of Medicine", + "prefix": "multicellds.collection", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://multicellds.org/MultiCellDB/$1" + }, + "bioregistry.multicellds.collection.miriam": { + "authority": "miriam", + "homepage": "http://multicellds.org/MultiCellDB.php", + "id": "bioregistry.multicellds.collection.miriam", + "name": "MultiCellDS collection", + "prefix": "multicellds.collection", + "sameas": "bioregistry.multicellds.collection", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://multicellds.org/MultiCellDB/$1" + }, + "bioregistry.multicellds.collection.n2t": { + "authority": "n2t", + "homepage": "http://multicellds.org/MultiCellDB.php", + "id": "bioregistry.multicellds.collection.n2t", + "name": "MultiCellDScollection at Keck School of Medicine", + "prefix": "multicellds.collection", + "sameas": "bioregistry.multicellds.collection", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://multicellds.org/MultiCellDB/$1" + }, + "bioregistry.multicellds.snapshot": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.multicellds.snapshot", + "name": "MultiCellDS snapshot at Keck School of Medicine", + "prefix": "multicellds.snapshot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://multicellds.org/MultiCellDB/$1" + }, + "bioregistry.multicellds.snapshot.miriam": { + "authority": "miriam", + "homepage": "http://multicellds.org/MultiCellDB.php", + "id": "bioregistry.multicellds.snapshot.miriam", + "name": "MultiCellDS Digital snapshot", + "prefix": "multicellds.snapshot", + "sameas": "bioregistry.multicellds.snapshot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://multicellds.org/MultiCellDB/$1" + }, + "bioregistry.multicellds.snapshot.n2t": { + "authority": "n2t", + "homepage": "http://multicellds.org/MultiCellDB.php", + "id": "bioregistry.multicellds.snapshot.n2t", + "name": "MultiCellDS snapshot at Keck School of Medicine", + "prefix": "multicellds.snapshot", + "sameas": "bioregistry.multicellds.snapshot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://multicellds.org/MultiCellDB/$1" + }, + "bioregistry.mw.project": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mw.project", + "name": "Metabolomics Workbench Project", + "prefix": "mw.project", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Project&ProjectID=$1" + }, + "bioregistry.mw.project.miriam": { + "authority": "miriam", + "homepage": "http://www.metabolomicsworkbench.org/", + "id": "bioregistry.mw.project.miriam", + "name": "Metabolomics Workbench Project", + "prefix": "mw.project", + "sameas": "bioregistry.mw.project", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Project&ProjectID=$1" + }, + "bioregistry.mw.project.n2t": { + "authority": "n2t", + "homepage": "http://www.metabolomicsworkbench.org/", + "id": "bioregistry.mw.project.n2t", + "name": "Metabolomics Workbench Project", + "prefix": "mw.project", + "sameas": "bioregistry.mw.project", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Project&ProjectID=$1" + }, + "bioregistry.mw.study": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mw.study", + "name": "Metabolomics Workbench Study", + "prefix": "mw.study", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Study&StudyID=$1" + }, + "bioregistry.mw.study.miriam": { + "authority": "miriam", + "homepage": "http://www.metabolomicsworkbench.org/", + "id": "bioregistry.mw.study.miriam", + "name": "Metabolomics Workbench Study", + "prefix": "mw.study", + "sameas": "bioregistry.mw.study", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Study&StudyID=$1" + }, + "bioregistry.mw.study.n2t": { + "authority": "n2t", + "homepage": "http://www.metabolomicsworkbench.org/", + "id": "bioregistry.mw.study.n2t", + "name": "Metabolomics Workbench Study", + "prefix": "mw.study", + "sameas": "bioregistry.mw.study", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Study&StudyID=$1" + }, + "bioregistry.myco.lepra": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.myco.lepra", + "name": "MycoBrowser leprae at Global Health Institute", + "prefix": "myco.lepra", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://mycobrowser.epfl.ch/leprosysearch.php?gene+name=$1" + }, + "bioregistry.myco.lepra.miriam": { + "authority": "miriam", + "homepage": "http://mycobrowser.epfl.ch/leprosy.html", + "id": "bioregistry.myco.lepra.miriam", + "name": "MycoBrowser leprae", + "prefix": "myco.lepra", + "sameas": "bioregistry.myco.lepra", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mycobrowser.epfl.ch/leprosysearch.php?gene+name=$1" + }, + "bioregistry.myco.lepra.n2t": { + "authority": "n2t", + "homepage": "http://mycobrowser.epfl.ch/leprosy.html", + "id": "bioregistry.myco.lepra.n2t", + "name": "MycoBrowser leprae at Global Health Institute", + "prefix": "myco.lepra", + "sameas": "bioregistry.myco.lepra", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mycobrowser.epfl.ch/leprosysearch.php?gene+name=$1" + }, + "bioregistry.myco.lepra.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://mycobrowser.epfl.ch/leprosy.html", + "id": "bioregistry.myco.lepra.prefixcommons", + "name": "MycoBrowser leprae", + "prefix": "myco.lepra", + "sameas": "bioregistry.myco.lepra", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://mycobrowser.epfl.ch/leprosysearch.php?gene+name=$1" + }, + "bioregistry.myco.marinum": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.myco.marinum", + "name": "MycoBrowser marinum at Global Health Institute", + "prefix": "myco.marinum", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://mycobrowser.epfl.ch/marinosearch.php?gene+name=$1" + }, + "bioregistry.myco.marinum.miriam": { + "authority": "miriam", + "homepage": "http://mycobrowser.epfl.ch/marinolist.html", + "id": "bioregistry.myco.marinum.miriam", + "name": "MycoBrowser marinum", + "prefix": "myco.marinum", + "sameas": "bioregistry.myco.marinum", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mycobrowser.epfl.ch/marinosearch.php?gene+name=$1" + }, + "bioregistry.myco.marinum.n2t": { + "authority": "n2t", + "homepage": "http://mycobrowser.epfl.ch/marinolist.html", + "id": "bioregistry.myco.marinum.n2t", + "name": "MycoBrowser marinum at Global Health Institute", + "prefix": "myco.marinum", + "sameas": "bioregistry.myco.marinum", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mycobrowser.epfl.ch/marinosearch.php?gene+name=$1" + }, + "bioregistry.myco.marinum.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://mycobrowser.epfl.ch/marinolist.html", + "id": "bioregistry.myco.marinum.prefixcommons", + "name": "MycoBrowser marinum", + "prefix": "myco.marinum", + "sameas": "bioregistry.myco.marinum", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://mycobrowser.epfl.ch/marinosearch.php?gene+name=$1" + }, + "bioregistry.myco.smeg": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.myco.smeg", + "name": "MycoBrowser smegmatis at Global Health Institute", + "prefix": "myco.smeg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://mycobrowser.epfl.ch/smegmasearch.php?gene+name=$1" + }, + "bioregistry.myco.smeg.miriam": { + "authority": "miriam", + "homepage": "http://mycobrowser.epfl.ch/smegmalist.html", + "id": "bioregistry.myco.smeg.miriam", + "name": "MycoBrowser smegmatis", + "prefix": "myco.smeg", + "sameas": "bioregistry.myco.smeg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mycobrowser.epfl.ch/smegmasearch.php?gene+name=$1" + }, + "bioregistry.myco.smeg.n2t": { + "authority": "n2t", + "homepage": "http://mycobrowser.epfl.ch/smegmalist.html", + "id": "bioregistry.myco.smeg.n2t", + "name": "MycoBrowser smegmatis at Global Health Institute", + "prefix": "myco.smeg", + "sameas": "bioregistry.myco.smeg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mycobrowser.epfl.ch/smegmasearch.php?gene+name=$1" + }, + "bioregistry.myco.smeg.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://mycobrowser.epfl.ch/smegmalist.html", + "id": "bioregistry.myco.smeg.prefixcommons", + "name": "MycoBrowser smegmatis", + "prefix": "myco.smeg", + "sameas": "bioregistry.myco.smeg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://mycobrowser.epfl.ch/smegmasearch.php?gene+name=$1" + }, + "bioregistry.myco.tuber": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.myco.tuber", + "name": "Mycobacterium tuberculosis strain H37Rv genome database", + "prefix": "myco.tuber", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://mycobrowser.epfl.ch/genes/$1" + }, + "bioregistry.myco.tuber.miriam": { + "authority": "miriam", + "homepage": "http://tuberculist.epfl.ch/", + "id": "bioregistry.myco.tuber.miriam", + "name": "MycoBrowser tuberculosis", + "prefix": "myco.tuber", + "sameas": "bioregistry.myco.tuber", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://tuberculist.epfl.ch/quicksearch.php?gene+name=$1" + }, + "bioregistry.myco.tuber.n2t": { + "authority": "n2t", + "homepage": "http://tuberculist.epfl.ch/", + "id": "bioregistry.myco.tuber.n2t", + "name": "MycoBrowser tuberculosis at Global Health Institute", + "prefix": "myco.tuber", + "sameas": "bioregistry.myco.tuber", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://tuberculist.epfl.ch/quicksearch.php?gene+name=$1" + }, + "bioregistry.myco.tuber.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://tuberculist.epfl.ch", + "id": "bioregistry.myco.tuber.prefixcommons", + "name": "Mycobacterium tuberculosis strain H37Rv genome database", + "prefix": "tuberculist", + "sameas": "bioregistry.myco.tuber", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://tuberculist.epfl.ch/quicksearch.php?gene+name=$1" + }, + "bioregistry.myco.tuber.uniprot": { + "authority": "uniprot", + "homepage": "https://mycobrowser.epfl.ch/", + "id": "bioregistry.myco.tuber.uniprot", + "name": "Mycobacterium tuberculosis strain H37Rv genome database", + "prefix": "DB-0106", + "sameas": "bioregistry.myco.tuber", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://mycobrowser.epfl.ch/genes/$1" + }, + "bioregistry.mycobank": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mycobank", + "name": "MycoBank at Fungal Biodiversity Centre", + "prefix": "mycobank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mycobank.org/MycoTaxo.aspx?Link=T&Rec=$1" + }, + "bioregistry.mycobank.miriam": { + "authority": "miriam", + "homepage": "http://www.mycobank.org/", + "id": "bioregistry.mycobank.miriam", + "name": "MycoBank", + "prefix": "mycobank", + "sameas": "bioregistry.mycobank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mycobank.org/Biolomics.aspx?Table=Mycobank&MycoBankNr_=$1" + }, + "bioregistry.mycobank.n2t": { + "authority": "n2t", + "homepage": "http://www.mycobank.org/", + "id": "bioregistry.mycobank.n2t", + "name": "MycoBank at Fungal Biodiversity Centre", + "prefix": "mycobank", + "sameas": "bioregistry.mycobank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mycobank.org/Biolomics.aspx?Table=Mycobank&MycoBankNr_=$1" + }, + "bioregistry.mycobank.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.mycobank.org", + "id": "bioregistry.mycobank.prefixcommons", + "name": "Fungal Nomenclature and Species Bank", + "prefix": "mycobank", + "sameas": "bioregistry.mycobank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mycobank.org/MycoTaxo.aspx?Link=T&Rec=$1" + }, + "bioregistry.mzspec": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.mzspec", + "name": "Universal Spectrum Identifier through Peptide Atlas", + "prefix": "mzspec", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/ShowObservedSpectrum?usi=mzspec:$1" + }, + "bioregistry.mzspec.miriam": { + "authority": "miriam", + "homepage": "http://proteomecentral.proteomexchange.org/", + "id": "bioregistry.mzspec.miriam", + "name": "Universal Spectrum Identifier", + "prefix": "mzspec", + "sameas": "bioregistry.mzspec", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://proteomecentral.proteomexchange.org/usi/?usi=mzspec:$1" + }, + "bioregistry.mzspec.n2t": { + "authority": "n2t", + "homepage": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/ShowObservedSpectrum", + "id": "bioregistry.mzspec.n2t", + "name": "Universal Spectrum Identifier through Peptide Atlas", + "prefix": "mzspec", + "sameas": "bioregistry.mzspec", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/ShowObservedSpectrum?usi=mzspec:$1" + }, + "bioregistry.nando": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.nando", + "name": "Nanbyo Disease Ontology", + "prefix": "nando", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://nanbyodata.jp/disease/NANDO:$1" + }, + "bioregistry.nando.miriam": { + "authority": "miriam", + "homepage": "https://nanbyodata.jp/", + "id": "bioregistry.nando.miriam", + "name": "Nanbyo Disease Ontology", + "prefix": "nando", + "sameas": "bioregistry.nando", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://nanbyodata.jp/disease/NANDO:$1" + }, + "bioregistry.napdi": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.napdi", + "name": "Natural Product-Drug Interaction Research Data Repository", + "prefix": "napdi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://repo.napdi.org/study/$1" + }, + "bioregistry.napdi.miriam": { + "authority": "miriam", + "homepage": "https://repo.napdi.org/", + "id": "bioregistry.napdi.miriam", + "name": "Natural Product-Drug Interaction Research Data Repository", + "prefix": "napdi", + "sameas": "bioregistry.napdi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://repo.napdi.org/study/$1" + }, + "bioregistry.napdi.n2t": { + "authority": "n2t", + "homepage": "https://repo.napdi.org/", + "id": "bioregistry.napdi.n2t", + "name": "Natural Product-Drug Interaction Research Data Repository", + "prefix": "napdi", + "sameas": "bioregistry.napdi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://repo.napdi.org/study/$1" + }, + "bioregistry.napp": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.napp", + "name": "NAPP: Nucleic Acids Phylogenetic Profiling", + "prefix": "napp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "molecular biology" + ], + "uri_format": "http://rna.igmors.u-psud.fr/NAPP/Niveau2.php?specie=$1" + }, + "bioregistry.napp.miriam": { + "authority": "miriam", + "homepage": "http://napp.u-psud.fr/", + "id": "bioregistry.napp.miriam", + "name": "NAPP", + "prefix": "napp", + "sameas": "bioregistry.napp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rna.igmors.u-psud.fr/NAPP/Niveau2.php?specie=$1" + }, + "bioregistry.napp.n2t": { + "authority": "n2t", + "homepage": "http://napp.u-psud.fr/", + "id": "bioregistry.napp.n2t", + "name": "NAPP at CNRS", + "prefix": "napp", + "sameas": "bioregistry.napp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rna.igmors.u-psud.fr/NAPP/Niveau2.php?specie=$1" + }, + "bioregistry.napp.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://napp.u-psud.fr/", + "id": "bioregistry.napp.prefixcommons", + "name": "NAPP: Nucleic Acids Phylogenetic Profiling", + "prefix": "napp", + "sameas": "bioregistry.napp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "molecular biology" + ], + "uri_format": "http://napp.u-psud.fr/Niveau2.php?specie=$1" + }, + "bioregistry.narcis": { + "authority": "bioregistry", + "homepage": "http://www.narcis.nl", + "id": "bioregistry.narcis", + "name": "National Academic Research and Collaborations Information System", + "prefix": "narcis", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.narcis.nl/publication/RecordID/$1" + }, + "bioregistry.narcis.miriam": { + "authority": "miriam", + "homepage": "http://www.narcis.nl/?Language=en", + "id": "bioregistry.narcis.miriam", + "name": "NARCIS", + "prefix": "narcis", + "sameas": "bioregistry.narcis", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.narcis.nl/publication/RecordID/$1" + }, + "bioregistry.narcis.n2t": { + "authority": "n2t", + "homepage": "http://www.narcis.nl/?Language=en", + "id": "bioregistry.narcis.n2t", + "name": "NARCIS at The Hague", + "prefix": "narcis", + "sameas": "bioregistry.narcis", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.narcis.nl/publication/RecordID/$1" + }, + "bioregistry.nasc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.nasc", + "name": "Nottingham Arabidopsis Stock Centre Seeds Database", + "prefix": "nasc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://arabidopsis.info/StockInfo?NASC_id=$1" + }, + "bioregistry.nasc.miriam": { + "authority": "miriam", + "homepage": "http://arabidopsis.info/", + "id": "bioregistry.nasc.miriam", + "name": "NASC code", + "prefix": "nasc", + "sameas": "bioregistry.nasc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://arabidopsis.info/StockInfo?NASC_id=$1" + }, + "bioregistry.nasc.n2t": { + "authority": "n2t", + "homepage": "http://arabidopsis.info/", + "id": "bioregistry.nasc.n2t", + "name": "NASC at University of Nottingham", + "prefix": "nasc", + "sameas": "bioregistry.nasc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://arabidopsis.info/StockInfo?NASC_id=$1" + }, + "bioregistry.nasc.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://arabidopsis.info", + "id": "bioregistry.nasc.prefixcommons", + "name": "Nottingham Arabidopsis Stock Centre Seeds Database", + "prefix": "nasc", + "sameas": "bioregistry.nasc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://arabidopsis.info/StockInfo?NASC_id=$1" + }, + "bioregistry.nbn": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.nbn", + "name": "NBN through URN Resolver at German National Library", + "prefix": "nbn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://nbn-resolving.org/resolver?identifier=urn:nbn:$1&verb=redirect" + }, + "bioregistry.nbn.miriam": { + "authority": "miriam", + "homepage": "http://nbn-resolving.org/resolve_urn.htm", + "id": "bioregistry.nbn.miriam", + "name": "National Bibliography Number", + "prefix": "nbn", + "sameas": "bioregistry.nbn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://nbn-resolving.org/resolver?identifier=$1&verb=redirect" + }, + "bioregistry.nbn.n2t": { + "authority": "n2t", + "homepage": "http://nbn-resolving.org/resolve_urn.htm", + "id": "bioregistry.nbn.n2t", + "name": "NBN through URN Resolver at German National Library", + "prefix": "nbn", + "sameas": "bioregistry.nbn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://nbn-resolving.org/resolver?identifier=urn:nbn:$1&verb=redirect" + }, + "bioregistry.nbrc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.nbrc", + "name": "NBRC Catalogue at National Institute of Technology Evaluation", + "prefix": "nbrc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "microbiology" + ], + "uri_format": "http://www.nbrc.nite.go.jp/NBRC2/NBRCCatalogueDetailServlet?ID=NBRC&CAT=$1" + }, + "bioregistry.nbrc.miriam": { + "authority": "miriam", + "homepage": "http://www.nbrc.nite.go.jp/e/index.html", + "id": "bioregistry.nbrc.miriam", + "name": "NITE Biological Research Center Catalogue", + "prefix": "nbrc", + "sameas": "bioregistry.nbrc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.nbrc.nite.go.jp/NBRC2/NBRCCatalogueDetailServlet?ID=NBRC&CAT=$1" + }, + "bioregistry.nbrc.n2t": { + "authority": "n2t", + "homepage": "http://www.nbrc.nite.go.jp/e/index.html", + "id": "bioregistry.nbrc.n2t", + "name": "NBRC Catalogue at National Institute of Technology Evaluation", + "prefix": "nbrc", + "sameas": "bioregistry.nbrc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.nbrc.nite.go.jp/NBRC2/NBRCCatalogueDetailServlet?ID=NBRC&CAT=$1" + }, + "bioregistry.nbrc.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.nbrc.nite.go.jp/e/index.html", + "id": "bioregistry.nbrc.prefixcommons", + "name": "NITE Biological Research Center Catalogue", + "prefix": "nbrc", + "sameas": "bioregistry.nbrc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "microbiology" + ], + "uri_format": "http://www.nbrc.nite.go.jp/NBRC2/NBRCCatalogueDetailServlet?ID=NBRC&CAT=$1" + }, + "bioregistry.ncats.bioplanet": { + "authority": "bioregistry", + "homepage": "https://tripod.nih.gov/bioplanet/", + "id": "bioregistry.ncats.bioplanet", + "name": "National Center for Advancing Translation Sciences BioPlanet", + "prefix": "ncats.bioplanet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://tripod.nih.gov/bioplanet/detail.jsp?pid=$1" + }, + "bioregistry.ncats.bioplanet.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.ncats.bioplanet.biolink", + "name": null, + "prefix": "ncats.bioplanet", + "sameas": "bioregistry.ncats.bioplanet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://tripod.nih.gov/bioplanet/detail.jsp?pid=$1" + }, + "bioregistry.ncats.drug": { + "authority": "bioregistry", + "homepage": "https://drugs.ncats.io/", + "id": "bioregistry.ncats.drug", + "name": "NCATS Drugs", + "prefix": "ncats.drug", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://drugs.ncats.io/drug/$1" + }, + "bioregistry.ncats.drug.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.ncats.drug.biolink", + "name": null, + "prefix": "ncats.drug", + "sameas": "bioregistry.ncats.drug", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://drugs.ncats.io/drug/$1" + }, + "bioregistry.ncbi.assembly": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ncbi.assembly", + "name": "NCBI Assembly", + "prefix": "ncbi.assembly", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/datasets/genome/$1" + }, + "bioregistry.ncbi.assembly.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.ncbi.assembly.biocontext", + "name": null, + "prefix": "NCBIAssembly", + "sameas": "bioregistry.ncbi.assembly", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/assembly/$1" + }, + "bioregistry.ncbi.assembly.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/", + "id": "bioregistry.ncbi.assembly.miriam", + "name": "Assembly", + "prefix": "assembly", + "sameas": "bioregistry.ncbi.assembly", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/datasets/genome/$1" + }, + "bioregistry.ncbi.genome": { + "authority": "bioregistry", + "homepage": "https://www.ncbi.nlm.nih.gov/genome", + "id": "bioregistry.ncbi.genome", + "name": "NCBI Genome", + "prefix": "ncbi.genome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/genome/$1" + }, + "bioregistry.ncbi.genome.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.ncbi.genome.biocontext", + "name": null, + "prefix": "NCBIGenome", + "sameas": "bioregistry.ncbi.genome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/genome/$1" + }, + "bioregistry.ncbigene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ncbigene", + "name": "Entrez Gene Database (replaces NCBI Locus Link)", + "prefix": "ncbigene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/gene/$1" + }, + "bioregistry.ncbigene.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.ncbigene.biocontext", + "name": null, + "prefix": "NCBIGene", + "sameas": "bioregistry.ncbigene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/gene/$1" + }, + "bioregistry.ncbigene.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.ncbigene.biolink", + "name": null, + "prefix": "NCBIGene", + "sameas": "bioregistry.ncbigene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://identifiers.org/ncbigene/$1" + }, + "bioregistry.ncbigene.go": { + "authority": "go", + "homepage": "http://www.ncbi.nlm.nih.gov/", + "id": "bioregistry.ncbigene.go", + "name": "NCBI Gene", + "prefix": "NCBIGene", + "sameas": "bioregistry.ncbigene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/gene/$1" + }, + "bioregistry.ncbigene.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/gene", + "id": "bioregistry.ncbigene.miriam", + "name": "NCBI Gene", + "prefix": "ncbigene", + "sameas": "bioregistry.ncbigene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/gene/$1" + }, + "bioregistry.ncbigene.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/gene", + "id": "bioregistry.ncbigene.n2t", + "name": "Entrez Gene (NCBI)", + "prefix": "ncbigene", + "sameas": "bioregistry.ncbigene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/gene/$1" + }, + "bioregistry.ncbigene.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/gene", + "id": "bioregistry.ncbigene.prefixcommons", + "name": "NCBI Gene", + "prefix": "ncbigene", + "sameas": "bioregistry.ncbigene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/gene/$1" + }, + "bioregistry.ncbigene.uniprot": { + "authority": "uniprot", + "homepage": "https://www.ncbi.nlm.nih.gov/gene", + "id": "bioregistry.ncbigene.uniprot", + "name": "Database of genes from NCBI RefSeq genomes", + "prefix": "DB-0118", + "sameas": "bioregistry.ncbigene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/gene/$1" + }, + "bioregistry.ncbigene.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.ncbigene.wikidata", + "name": "Entrez Gene ID", + "prefix": "P351", + "sameas": "bioregistry.ncbigene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/gene/$1" + }, + "bioregistry.ncbigi": { + "authority": "bioregistry", + "homepage": "https://www.ncbi.nlm.nih.gov/genbank/sequenceids/", + "id": "bioregistry.ncbigi", + "name": "GenInfo identifier, used as a unique sequence identifier for nucleotide and proteins", + "prefix": "ncbigi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=$1" + }, + "bioregistry.ncbigi.go": { + "authority": "go", + "homepage": "http://www.ncbi.nlm.nih.gov/", + "id": "bioregistry.ncbigi.go", + "name": "NCBI databases", + "prefix": "NCBI_gi", + "sameas": "bioregistry.ncbigi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=$1" + }, + "bioregistry.ncbiprotein": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ncbiprotein", + "name": "NCBI Protein at NCBI", + "prefix": "ncbiprotein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1" + }, + "bioregistry.ncbiprotein.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.ncbiprotein.biocontext", + "name": null, + "prefix": "NCBIProtein", + "sameas": "bioregistry.ncbiprotein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/protein/$1" + }, + "bioregistry.ncbiprotein.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/protein", + "id": "bioregistry.ncbiprotein.miriam", + "name": "NCBI Protein", + "prefix": "ncbiprotein", + "sameas": "bioregistry.ncbiprotein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1" + }, + "bioregistry.ncbiprotein.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/protein", + "id": "bioregistry.ncbiprotein.n2t", + "name": "NCBI Protein at NCBI", + "prefix": "ncbiprotein", + "sameas": "bioregistry.ncbiprotein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1" + }, + "bioregistry.ncbiprotein.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/protein", + "id": "bioregistry.ncbiprotein.prefixcommons", + "name": "NCBI Protein", + "prefix": "ncbi.protein", + "sameas": "bioregistry.ncbiprotein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/protein/$1" + }, + "bioregistry.ncbitaxon": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ncbitaxon", + "name": "National Center for Biotechnology Information (NCBI) Organismal Classification", + "prefix": "ncbitaxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=$1&lvl=3" + }, + "bioregistry.ncbitaxon.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ncbi.nlm.nih.gov/taxonomy", + "id": "bioregistry.ncbitaxon.cellosaurus", + "name": "NCBI taxonomy database", + "prefix": "NCBI_TaxID", + "sameas": "bioregistry.ncbitaxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=$1&lvl=3" + }, + "bioregistry.ncbitaxon.go": { + "authority": "go", + "homepage": "http://www.ncbi.nlm.nih.gov/Taxonomy/taxonomyhome.html/", + "id": "bioregistry.ncbitaxon.go", + "name": "NCBI Taxonomy", + "prefix": "taxon", + "sameas": "bioregistry.ncbitaxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=$1" + }, + "bioregistry.ncbitaxon.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/Taxonomy/", + "id": "bioregistry.ncbitaxon.miriam", + "name": "Taxonomy", + "prefix": "taxonomy", + "sameas": "bioregistry.ncbitaxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=$1" + }, + "bioregistry.ncbitaxon.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/Taxonomy/", + "id": "bioregistry.ncbitaxon.n2t", + "name": "NCBI Taxonomy", + "prefix": "taxonomy", + "sameas": "bioregistry.ncbitaxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=$1" + }, + "bioregistry.ncbitaxon.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/taxonomy", + "id": "bioregistry.ncbitaxon.prefixcommons", + "name": "NCBI Taxonomy", + "prefix": "taxonomy", + "sameas": "bioregistry.ncbitaxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=$1" + }, + "bioregistry.ncbitaxon.wikidata": { + "authority": "wikidata", + "homepage": "http://www.ncbi.nlm.nih.gov/taxonomy", + "id": "bioregistry.ncbitaxon.wikidata", + "name": "NCBI taxonomy ID", + "prefix": "P685", + "sameas": "bioregistry.ncbitaxon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=$1" + }, + "bioregistry.ncim": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ncim", + "name": "NCIm at National Cancer Institue", + "prefix": "ncim", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ncim.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20MetaThesaurus&code=$1" + }, + "bioregistry.ncim.miriam": { + "authority": "miriam", + "homepage": "http://ncim.nci.nih.gov/", + "id": "bioregistry.ncim.miriam", + "name": "NCIm", + "prefix": "ncim", + "sameas": "bioregistry.ncim", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ncim.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20MetaThesaurus&code=$1" + }, + "bioregistry.ncim.n2t": { + "authority": "n2t", + "homepage": "http://ncim.nci.nih.gov/", + "id": "bioregistry.ncim.n2t", + "name": "NCIm at National Cancer Institue", + "prefix": "ncim", + "sameas": "bioregistry.ncim", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ncim.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20MetaThesaurus&code=$1" + }, + "bioregistry.ncit": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ncit", + "name": "National Cancer Institute Thesaurus", + "prefix": "ncit", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&code=$1" + }, + "bioregistry.ncit.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://ncit.nci.nih.gov/ncitbrowser", + "id": "bioregistry.ncit.cellosaurus", + "name": "NCI thesaurus", + "prefix": "NCIt", + "sameas": "bioregistry.ncit", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&code=$1" + }, + "bioregistry.ncit.miriam": { + "authority": "miriam", + "homepage": "http://ncit.nci.nih.gov/", + "id": "bioregistry.ncit.miriam", + "name": "NCIt", + "prefix": "ncit", + "sameas": "bioregistry.ncit", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI%20Thesaurus&code=$1" + }, + "bioregistry.ncit.n2t": { + "authority": "n2t", + "homepage": "http://ncit.nci.nih.gov/", + "id": "bioregistry.ncit.n2t", + "name": "NCIt at National Cancer Institute", + "prefix": "ncit", + "sameas": "bioregistry.ncit", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI%20Thesaurus&code=$1" + }, + "bioregistry.ncit.prefixcommons": { + "authority": "prefixcommons", + "homepage": "https://cabig.nci.nih.gov/community/concepts/EVS/", + "id": "bioregistry.ncit.prefixcommons", + "name": "NCI Thesaurus", + "prefix": "ncit", + "sameas": "bioregistry.ncit", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI%20Thesaurus&code=$1" + }, + "bioregistry.ncit.wikidata": { + "authority": "wikidata", + "homepage": "http://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=14.10d&code=C75016", + "id": "bioregistry.ncit.wikidata", + "name": "NCI Thesaurus ID", + "prefix": "P1748", + "sameas": "bioregistry.ncit", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI%20Thesaurus&code=$1" + }, + "bioregistry.ndc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ndc", + "name": "National Drug Code at Food and Drug Administration", + "prefix": "ndc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ndclist.com/ndc/$1" + }, + "bioregistry.ndc.miriam": { + "authority": "miriam", + "homepage": "http://www.accessdata.fda.gov/scripts/cder/ndc/", + "id": "bioregistry.ndc.miriam", + "name": "National Drug Code", + "prefix": "ndc", + "sameas": "bioregistry.ndc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.hipaaspace.com/Medical_Billing/Coding/National.Drug.Codes/$1" + }, + "bioregistry.ndc.n2t": { + "authority": "n2t", + "homepage": "http://www.accessdata.fda.gov/scripts/cder/ndc/", + "id": "bioregistry.ndc.n2t", + "name": "National Drug Code at Food and Drug Administration", + "prefix": "ndc", + "sameas": "bioregistry.ndc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.hipaaspace.com/Medical_Billing/Coding/National.Drug.Codes/$1" + }, + "bioregistry.ndc.wikidata": { + "authority": "wikidata", + "homepage": "https://www.nlm.nih.gov/research/umls/rxnorm/docs/rxnormfiles.html", + "id": "bioregistry.ndc.wikidata", + "name": "National Drug Code", + "prefix": "P3640", + "sameas": "bioregistry.ndc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ndclist.com/ndc/$1" + }, + "bioregistry.nddf": { + "authority": "bioregistry", + "homepage": "https://www.nlm.nih.gov/research/umls/sourcereleasedocs/current/NDDF", + "id": "bioregistry.nddf", + "name": "National Drug Data File", + "prefix": "nddf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/NDDF/$1" + }, + "bioregistry.nddf.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.nddf.biolink", + "name": null, + "prefix": "NDDF", + "sameas": "bioregistry.nddf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/NDDF/$1" + }, + "bioregistry.ndfrt": { + "authority": "bioregistry", + "homepage": "https://www.nlm.nih.gov/research/umls/sourcereleasedocs/current/NDFRT", + "id": "bioregistry.ndfrt", + "name": "National Drug File - Reference Terminology", + "prefix": "ndfrt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bioportal.bioontology.org/ontologies/NDFRT?p=classes&conceptid=$1" + }, + "bioregistry.ndfrt.wikidata": { + "authority": "wikidata", + "homepage": "https://rxnav.nlm.nih.gov/", + "id": "bioregistry.ndfrt.wikidata", + "name": "NDF-RT ID", + "prefix": "P2115", + "sameas": "bioregistry.ndfrt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bioportal.bioontology.org/ontologies/NDFRT?p=classes&conceptid=$1" + }, + "bioregistry.nembase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.nembase", + "name": "Nematode & Neglected Genomics", + "prefix": "nembase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.nematodes.org/nembase4/cluster.php?cluster=$1" + }, + "bioregistry.nembase.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.nematodes.org", + "id": "bioregistry.nembase.prefixcommons", + "name": "Nematode & Neglected Genomics", + "prefix": "nembase", + "sameas": "bioregistry.nembase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.nematodes.org/nembase4/cluster.php?cluster=$1" + }, + "bioregistry.nemo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.nemo", + "name": "Neuroscience Multi-Omic BRAIN Initiative Data", + "prefix": "nemo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://assets.nemoarchive.org/$1" + }, + "bioregistry.nemo.miriam": { + "authority": "miriam", + "homepage": "https://www.nemoarchive.org", + "id": "bioregistry.nemo.miriam", + "name": "Neuroscience Multi-Omic BRAIN Initiative Data", + "prefix": "nemo", + "sameas": "bioregistry.nemo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://assets.nemoarchive.org/$1" + }, + "bioregistry.neurolex": { + "authority": "bioregistry", + "homepage": "https://github.com/SciCrunch/NIF-Ontology", + "id": "bioregistry.neurolex", + "name": "NIF Standard Ontology: Neurolex", + "prefix": "neurolex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "neurobiology" + ], + "uri_format": "http://www.neurolex.org/wiki/$1" + }, + "bioregistry.neurolex.miriam": { + "authority": "miriam", + "homepage": "http://www.neurolex.org/wiki/Main_Page", + "id": "bioregistry.neurolex.miriam", + "name": "NeuroLex", + "prefix": "neurolex", + "sameas": "bioregistry.neurolex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.neurolex.org/wiki/$1" + }, + "bioregistry.neurolex.n2t": { + "authority": "n2t", + "homepage": "http://www.neurolex.org/wiki/Main_Page", + "id": "bioregistry.neurolex.n2t", + "name": "NeuroLex Neuroscience Lexicon", + "prefix": "neurolex", + "sameas": "bioregistry.neurolex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.neurolex.org/wiki/$1" + }, + "bioregistry.neurolex.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.neurolex.org/wiki/Main_Page", + "id": "bioregistry.neurolex.prefixcommons", + "name": "NeuroLex", + "prefix": "neurolex", + "sameas": "bioregistry.neurolex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "neurobiology" + ], + "uri_format": "http://www.neurolex.org/wiki/$1" + }, + "bioregistry.neuromorpho": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.neuromorpho", + "name": "NeuroMorpho", + "prefix": "neuromorpho", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "anatomy and morphology" + ], + "uri_format": "http://neuromorpho.org/neuron_info.jsp?neuron_name=$1" + }, + "bioregistry.neuromorpho.miriam": { + "authority": "miriam", + "homepage": "http://neuromorpho.org/index.jsp", + "id": "bioregistry.neuromorpho.miriam", + "name": "NeuroMorpho", + "prefix": "neuromorpho", + "sameas": "bioregistry.neuromorpho", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://neuromorpho.org/neuron_info.jsp?neuron_name=$1" + }, + "bioregistry.neuromorpho.n2t": { + "authority": "n2t", + "homepage": "http://neuromorpho.org/index.jsp", + "id": "bioregistry.neuromorpho.n2t", + "name": "NeuroMorpho", + "prefix": "neuromorpho", + "sameas": "bioregistry.neuromorpho", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://neuromorpho.org/neuron_info.jsp?neuron_name=$1" + }, + "bioregistry.neuromorpho.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://neuromorpho.org/neuroMorpho/index.jsp", + "id": "bioregistry.neuromorpho.prefixcommons", + "name": "NeuroMorpho", + "prefix": "neuromorpho", + "sameas": "bioregistry.neuromorpho", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "anatomy and morphology" + ], + "uri_format": "http://neuromorpho.org/neuroMorpho/neuron_info.jsp?neuron_name=$1" + }, + "bioregistry.neuronames": { + "authority": "bioregistry", + "homepage": "http://braininfo.rprc.washington.edu/", + "id": "bioregistry.neuronames", + "name": "NeuroNames ID (plain mode)", + "prefix": "neuronames", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://braininfo.rprc.washington.edu/centraldirectory.aspx?ID=$1" + }, + "bioregistry.neuronames.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.neuronames.wikidata", + "name": "NeuroNames ID (plain mode)", + "prefix": "P4394", + "sameas": "bioregistry.neuronames", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://braininfo.rprc.washington.edu/centraldirectory.aspx?ID=$1" + }, + "bioregistry.neurondb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.neurondb", + "name": "NeuronDB at SenseLab", + "prefix": "neurondb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "anatomy and morphology" + ], + "uri_format": "http://senselab.med.yale.edu/NeuronDB/NeuronProp.aspx?id=$1" + }, + "bioregistry.neurondb.miriam": { + "authority": "miriam", + "homepage": "http://senselab.med.yale.edu/NeuronDB/", + "id": "bioregistry.neurondb.miriam", + "name": "NeuronDB", + "prefix": "neurondb", + "sameas": "bioregistry.neurondb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://senselab.med.yale.edu/NeuronDB/NeuronProp.aspx?id=$1" + }, + "bioregistry.neurondb.n2t": { + "authority": "n2t", + "homepage": "http://senselab.med.yale.edu/NeuronDB/", + "id": "bioregistry.neurondb.n2t", + "name": "NeuronDB at SenseLab", + "prefix": "neurondb", + "sameas": "bioregistry.neurondb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://senselab.med.yale.edu/NeuronDB/NeuronProp.aspx?id=$1" + }, + "bioregistry.neurondb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://senselab.med.yale.edu/NeuronDB/", + "id": "bioregistry.neurondb.prefixcommons", + "name": "NeuronDB", + "prefix": "neurondb", + "sameas": "bioregistry.neurondb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "anatomy and morphology" + ], + "uri_format": "http://senselab.med.yale.edu/NeuronDB/NeuronProp.aspx?id=$1" + }, + "bioregistry.neurovault.collection": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.neurovault.collection", + "name": "NeuroVault Collection", + "prefix": "neurovault.collection", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://neurovault.org/collections/$1" + }, + "bioregistry.neurovault.collection.miriam": { + "authority": "miriam", + "homepage": "http://neurovault.org", + "id": "bioregistry.neurovault.collection.miriam", + "name": "NeuroVault Collection", + "prefix": "neurovault.collection", + "sameas": "bioregistry.neurovault.collection", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://neurovault.org/collections/$1" + }, + "bioregistry.neurovault.collection.n2t": { + "authority": "n2t", + "homepage": "http://neurovault.org", + "id": "bioregistry.neurovault.collection.n2t", + "name": "NeuroVault Collection", + "prefix": "neurovault.collection", + "sameas": "bioregistry.neurovault.collection", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://neurovault.org/collections/$1" + }, + "bioregistry.neurovault.image": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.neurovault.image", + "name": "NeuroVault Image", + "prefix": "neurovault.image", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://neurovault.org/images/$1" + }, + "bioregistry.neurovault.image.miriam": { + "authority": "miriam", + "homepage": "http://neurovault.org", + "id": "bioregistry.neurovault.image.miriam", + "name": "NeuroVault Image", + "prefix": "neurovault.image", + "sameas": "bioregistry.neurovault.image", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://neurovault.org/images/$1" + }, + "bioregistry.neurovault.image.n2t": { + "authority": "n2t", + "homepage": "http://neurovault.org", + "id": "bioregistry.neurovault.image.n2t", + "name": "NeuroVault", + "prefix": "neurovault.image", + "sameas": "bioregistry.neurovault.image", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://neurovault.org/images/$1" + }, + "bioregistry.nextdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.nextdb", + "name": "Nematode Expression Pattern DataBase", + "prefix": "nextdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://nematode.lab.nig.ac.jp/db2/ShowCloneInfo.php?clone=$1" + }, + "bioregistry.nextdb.miriam": { + "authority": "miriam", + "homepage": "http://nematode.lab.nig.ac.jp/", + "id": "bioregistry.nextdb.miriam", + "name": "NEXTDB", + "prefix": "nextdb", + "sameas": "bioregistry.nextdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://nematode.lab.nig.ac.jp/db2/ShowCloneInfo.php?clone=$1" + }, + "bioregistry.nextdb.n2t": { + "authority": "n2t", + "homepage": "http://nematode.lab.nig.ac.jp/", + "id": "bioregistry.nextdb.n2t", + "name": "NEXTDB at Shizuoka", + "prefix": "nextdb", + "sameas": "bioregistry.nextdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://nematode.lab.nig.ac.jp/db2/ShowCloneInfo.php?clone=$1" + }, + "bioregistry.nextdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://nematode.lab.nig.ac.jp/", + "id": "bioregistry.nextdb.prefixcommons", + "name": "Nematode Expression Pattern DataBase", + "prefix": "nextdb", + "sameas": "bioregistry.nextdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://nematode.lab.nig.ac.jp/cgi-bin/dbest/SrchByCosmid.sh?csmd=$1" + }, + "bioregistry.nextprot": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.nextprot", + "name": "neXtProt; the human protein knowledge platform", + "prefix": "nextprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.nextprot.org/entry/$1" + }, + "bioregistry.nextprot.miriam": { + "authority": "miriam", + "homepage": "https://www.nextprot.org/", + "id": "bioregistry.nextprot.miriam", + "name": "nextProt", + "prefix": "nextprot", + "sameas": "bioregistry.nextprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.nextprot.org/db/entry/$1" + }, + "bioregistry.nextprot.n2t": { + "authority": "n2t", + "homepage": "https://www.nextprot.org/", + "id": "bioregistry.nextprot.n2t", + "name": "nextProt at Swiss Institute of Bioinformatics", + "prefix": "nextprot", + "sameas": "bioregistry.nextprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.nextprot.org/db/entry/$1" + }, + "bioregistry.nextprot.uniprot": { + "authority": "uniprot", + "homepage": "https://www.nextprot.org/", + "id": "bioregistry.nextprot.uniprot", + "name": "neXtProt; the human protein knowledge platform", + "prefix": "DB-0161", + "sameas": "bioregistry.nextprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.nextprot.org/entry/$1" + }, + "bioregistry.ngl": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ngl", + "name": "NASA GeneLab", + "prefix": "ngl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://genelab-data.ndc.nasa.gov/genelab/accession/$1" + }, + "bioregistry.ngl.miriam": { + "authority": "miriam", + "homepage": "https://genelab-data.ndc.nasa.gov/genelab/", + "id": "bioregistry.ngl.miriam", + "name": "NASA GeneLab", + "prefix": "ngl", + "sameas": "bioregistry.ngl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://genelab-data.ndc.nasa.gov/genelab/accession/$1" + }, + "bioregistry.ngl.n2t": { + "authority": "n2t", + "homepage": "https://genelab-data.ndc.nasa.gov/genelab/", + "id": "bioregistry.ngl.n2t", + "name": "NASA GeneLab", + "prefix": "ngl", + "sameas": "bioregistry.ngl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://genelab-data.ndc.nasa.gov/genelab/accession/$1" + }, + "bioregistry.nhcdr": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.nhcdr", + "name": "NINDS Human Cell and Data Repository", + "prefix": "nhcdr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://stemcells.nindsgenetics.org?line=$1" + }, + "bioregistry.nhcdr.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://stemcells.nindsgenetics.org", + "id": "bioregistry.nhcdr.cellosaurus", + "name": "NINDS Human Cell and Data Repository", + "prefix": "NHCDR", + "sameas": "bioregistry.nhcdr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://stemcells.nindsgenetics.org?line=$1" + }, + "bioregistry.niaest": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.niaest", + "name": "NIAEST at National Institute on Aging", + "prefix": "niaest", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://lgsun.grc.nia.nih.gov/cgi-bin/pro3?sname1=$1" + }, + "bioregistry.niaest.miriam": { + "authority": "miriam", + "homepage": "http://lgsun.grc.nia.nih.gov/cDNA/", + "id": "bioregistry.niaest.miriam", + "name": "NIAEST", + "prefix": "niaest", + "sameas": "bioregistry.niaest", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lgsun.grc.nia.nih.gov/cgi-bin/pro3?sname1=$1" + }, + "bioregistry.niaest.n2t": { + "authority": "n2t", + "homepage": "http://lgsun.grc.nia.nih.gov/cDNA/", + "id": "bioregistry.niaest.n2t", + "name": "NIAEST at National Institute on Aging", + "prefix": "niaest", + "sameas": "bioregistry.niaest", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lgsun.grc.nia.nih.gov/cgi-bin/pro3?sname1=$1" + }, + "bioregistry.niaest.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://lgsun.grc.nia.nih.gov/cDNA/cDNA.html", + "id": "bioregistry.niaest.prefixcommons", + "name": "NIA Mouse cDNA Project", + "prefix": "niaest", + "sameas": "bioregistry.niaest", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://lgsun.grc.nia.nih.gov/cgi-bin/pro3?sname1=$1" + }, + "bioregistry.nlfff": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.nlfff", + "name": "NLFFF Database", + "prefix": "nlfff", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://database.deepsolar.space:18080/dbs/nlfff/$1" + }, + "bioregistry.nlfff.miriam": { + "authority": "miriam", + "homepage": "https://nlfff.dataset.deepsolar.space/en/", + "id": "bioregistry.nlfff.miriam", + "name": "NLFFF Database", + "prefix": "nlfff", + "sameas": "bioregistry.nlfff", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://database.deepsolar.space:18080/dbs/nlfff/$1" + }, + "bioregistry.nlm": { + "authority": "bioregistry", + "homepage": "https://www.ncbi.nlm.nih.gov/nlmcatalog", + "id": "bioregistry.nlm", + "name": "National Library of Medicine Classification", + "prefix": "nlm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nlmcatalog/?term=$1" + }, + "bioregistry.nlm.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.nlm.biolink", + "name": null, + "prefix": "NLMID", + "sameas": "bioregistry.nlm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nlmcatalog/?term=$1" + }, + "bioregistry.nlx.sub": { + "authority": "bioregistry", + "homepage": "https://github.com/SciCrunch/NIF-Ontology", + "id": "bioregistry.nlx.sub", + "name": "Neuroscience Information Framework standard ontology, subcellular hierarchy", + "prefix": "nlx.sub", + "source": "bioregistry.io", + "subjects": [ + "cell biology" + ], + "uri_format": "http://www.neurolex.org/wiki/$1" + }, + "bioregistry.nlx.sub.go": { + "authority": "go", + "homepage": "http://www.neurolex.org/wiki", + "id": "bioregistry.nlx.sub.go", + "name": "Neuroscience Information Framework standard ontology, subcellular hierarchy", + "prefix": "NIF_Subcellular", + "sameas": "bioregistry.nlx.sub", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.neurolex.org/wiki/$1" + }, + "bioregistry.nmdc": { + "authority": "bioregistry", + "homepage": "https://microbiomedata.org/", + "id": "bioregistry.nmdc", + "name": "National Microbiome Data Collaborative", + "prefix": "nmdc", + "source": "bioregistry.io", + "subjects": [ + "microbiology" + ], + "uri_format": "https://drs.microbiomedata.org/objects/$1" + }, + "bioregistry.nmdc.miriam": { + "authority": "miriam", + "homepage": "https://ror.org/02jbv0t02", + "id": "bioregistry.nmdc.miriam", + "name": "National Microbiome Data Collaborative", + "prefix": "nmdc", + "sameas": "bioregistry.nmdc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://drs.microbiomedata.org/objects/$1" + }, + "bioregistry.nmpdr": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.nmpdr", + "name": "National Microbial Pathogen Data Resource", + "prefix": "nmpdr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.nmpdr.org/FIG/wiki/rest.cgi/NmpdrPlugin/SeedViewer?page=Annotation;feature=$1" + }, + "bioregistry.nmpdr.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.nmpdr.org", + "id": "bioregistry.nmpdr.prefixcommons", + "name": "National Microbial Pathogen Data Resource", + "prefix": "nmpdr", + "sameas": "bioregistry.nmpdr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.nmpdr.org/FIG/wiki/rest.cgi/NmpdrPlugin/SeedViewer?page=Annotation;feature=$1" + }, + "bioregistry.nmr": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.nmr", + "name": "NMR-instrument specific component of metabolomics investigations", + "prefix": "nmr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/nmrcv/terms?short_form=NMR:$1" + }, + "bioregistry.nmr.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ols/ontologies/nmrcv", + "id": "bioregistry.nmr.miriam", + "name": "Nuclear Magnetic Resonance Controlled Vocabulary", + "prefix": "nmr", + "sameas": "bioregistry.nmr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/nmrcv/terms?short_form=NMR:$1" + }, + "bioregistry.nmr.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/ols/ontologies/nmrcv", + "id": "bioregistry.nmr.n2t", + "name": "NMR through OLS", + "prefix": "nmr", + "sameas": "bioregistry.nmr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/nmrcv/terms?short_form=NMR:$1" + }, + "bioregistry.nmrshiftdb2": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.nmrshiftdb2", + "name": "NMRShiftDB structure ID", + "prefix": "nmrshiftdb2", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://nmrshiftdb.nmr.uni-koeln.de/molecule/$1" + }, + "bioregistry.nmrshiftdb2.miriam": { + "authority": "miriam", + "homepage": "https://nmrshiftdb.nmr.uni-koeln.de", + "id": "bioregistry.nmrshiftdb2.miriam", + "name": "NMR Shift Database", + "prefix": "nmrshiftdb2", + "sameas": "bioregistry.nmrshiftdb2", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://nmrshiftdb.nmr.uni-koeln.de/molecule/$1" + }, + "bioregistry.nmrshiftdb2.wikidata": { + "authority": "wikidata", + "homepage": "https://nmrshiftdb.nmr.uni-koeln.de/", + "id": "bioregistry.nmrshiftdb2.wikidata", + "name": "NMRShiftDB structure ID", + "prefix": "P9405", + "sameas": "bioregistry.nmrshiftdb2", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://nmrshiftdb.nmr.uni-koeln.de/molecule/$1" + }, + "bioregistry.noaa": { + "authority": "bioregistry", + "homepage": "https://www.fisheries.noaa.gov/species-directory", + "id": "bioregistry.noaa", + "name": "NOAA Fisheries Species Directory ID", + "prefix": "noaa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.fisheries.noaa.gov/species/$1" + }, + "bioregistry.noaa.wikidata": { + "authority": "wikidata", + "homepage": "https://www.fisheries.noaa.gov/species-directory", + "id": "bioregistry.noaa.wikidata", + "name": "NOAA Fisheries Species Directory ID", + "prefix": "P6049", + "sameas": "bioregistry.noaa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.fisheries.noaa.gov/species/$1" + }, + "bioregistry.noncodev3": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.noncodev3", + "name": "NONCODE at Chinese Academy of Sciences", + "prefix": "noncodev3", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "molecular biology" + ], + "uri_format": "http://www.noncode.org/NONCODERv3/ncrna.php?ncid=$1" + }, + "bioregistry.noncodev3.miriam": { + "authority": "miriam", + "homepage": "http://www.noncode.org/", + "id": "bioregistry.noncodev3.miriam", + "name": "NONCODE v3", + "prefix": "noncodev3", + "sameas": "bioregistry.noncodev3", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.noncode.org/NONCODERv3/ncrna.php?ncid=$1" + }, + "bioregistry.noncodev3.n2t": { + "authority": "n2t", + "homepage": "http://www.noncode.org/", + "id": "bioregistry.noncodev3.n2t", + "name": "NONCODE at Chinese Academy of Sciences", + "prefix": "noncodev3", + "sameas": "bioregistry.noncodev3", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.noncode.org/NONCODERv3/ncrna.php?ncid=$1" + }, + "bioregistry.noncodev3.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.noncode.org/", + "id": "bioregistry.noncodev3.prefixcommons", + "name": "NONCODE", + "prefix": "noncode", + "sameas": "bioregistry.noncodev3", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "molecular biology" + ], + "uri_format": "http://www.noncode.org/NONCODERv3/ncrna.php?ncid=$1" + }, + "bioregistry.noncodev4.gene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.noncodev4.gene", + "name": "NONCODE v4 Gene at Chinese Academy of Sciences", + "prefix": "noncodev4.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bioinfo.org/NONCODEv4/show_gene.php?id=$1" + }, + "bioregistry.noncodev4.gene.miriam": { + "authority": "miriam", + "homepage": "http://www.bioinfo.org/NONCODEv4/", + "id": "bioregistry.noncodev4.gene.miriam", + "name": "NONCODE v4 Gene", + "prefix": "noncodev4.gene", + "sameas": "bioregistry.noncodev4.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bioinfo.org/NONCODEv4/show_gene.php?id=$1" + }, + "bioregistry.noncodev4.gene.n2t": { + "authority": "n2t", + "homepage": "http://www.bioinfo.org/NONCODEv4/", + "id": "bioregistry.noncodev4.gene.n2t", + "name": "NONCODE v4 Gene at Chinese Academy of Sciences", + "prefix": "noncodev4.gene", + "sameas": "bioregistry.noncodev4.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bioinfo.org/NONCODEv4/show_gene.php?id=$1" + }, + "bioregistry.noncodev4.rna": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.noncodev4.rna", + "name": "NONCODE v4 Transcript at Chinese Academy of Sciences", + "prefix": "noncodev4.rna", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bioinfo.org/NONCODEv4/show_rna.php?id=$1" + }, + "bioregistry.noncodev4.rna.miriam": { + "authority": "miriam", + "homepage": "http://www.bioinfo.org/NONCODEv4/", + "id": "bioregistry.noncodev4.rna.miriam", + "name": "NONCODE v4 Transcript", + "prefix": "noncodev4.rna", + "sameas": "bioregistry.noncodev4.rna", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bioinfo.org/NONCODEv4/show_rna.php?id=$1" + }, + "bioregistry.noncodev4.rna.n2t": { + "authority": "n2t", + "homepage": "http://www.bioinfo.org/NONCODEv4/", + "id": "bioregistry.noncodev4.rna.n2t", + "name": "NONCODE v4 Transcript at Chinese Academy of Sciences", + "prefix": "noncodev4.rna", + "sameas": "bioregistry.noncodev4.rna", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bioinfo.org/NONCODEv4/show_rna.php?id=$1" + }, + "bioregistry.norine": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.norine", + "name": "NORINE at Computer Science Laboratory of Lille", + "prefix": "norine", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://bioinfo.lifl.fr/norine/result.jsp?ID=$1" + }, + "bioregistry.norine.miriam": { + "authority": "miriam", + "homepage": "http://bioinfo.lifl.fr/norine/", + "id": "bioregistry.norine.miriam", + "name": "NORINE", + "prefix": "norine", + "sameas": "bioregistry.norine", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioinfo.lifl.fr/norine/result.jsp?ID=$1" + }, + "bioregistry.norine.n2t": { + "authority": "n2t", + "homepage": "http://bioinfo.lifl.fr/norine/", + "id": "bioregistry.norine.n2t", + "name": "NORINE at Computer Science Laboratory of Lille", + "prefix": "norine", + "sameas": "bioregistry.norine", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bioinfo.lifl.fr/norine/result.jsp?ID=$1" + }, + "bioregistry.norine.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://bioinfo.lifl.fr/norine/", + "id": "bioregistry.norine.prefixcommons", + "name": "Non-Ribosomal Peptides Database", + "prefix": "norine", + "sameas": "bioregistry.norine", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://bioinfo.lifl.fr/norine/result.jsp?ID=$1" + }, + "bioregistry.nucleardb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.nucleardb", + "name": "NucleaRDB at Radboud University Nijmegen Medical Centre", + "prefix": "nucleardb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.receptors.org/nucleardb/proteins/$1" + }, + "bioregistry.nucleardb.miriam": { + "authority": "miriam", + "homepage": "http://www.receptors.org/nucleardb/", + "id": "bioregistry.nucleardb.miriam", + "name": "NucleaRDB", + "prefix": "nuclearbd", + "sameas": "bioregistry.nucleardb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.receptors.org/nucleardb/proteins/$1" + }, + "bioregistry.nucleardb.n2t": { + "authority": "n2t", + "homepage": "http://www.receptors.org/nucleardb/", + "id": "bioregistry.nucleardb.n2t", + "name": "NucleaRDB at Radboud University Nijmegen Medical Centre", + "prefix": "nuclearbd", + "sameas": "bioregistry.nucleardb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.receptors.org/nucleardb/proteins/$1" + }, + "bioregistry.nucleardb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.receptors.org/NR/", + "id": "bioregistry.nucleardb.prefixcommons", + "name": "NucleaRDB: An Information System for Nuclear Receptors", + "prefix": "nucleardb", + "sameas": "bioregistry.nucleardb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.receptors.org/NR/seq/DR/$1.html" + }, + "bioregistry.nucleotide": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.nucleotide", + "name": "Nucleotide", + "prefix": "nucleotide", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1" + }, + "bioregistry.nucleotide.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/", + "id": "bioregistry.nucleotide.miriam", + "name": "Nucleotide", + "prefix": "nucleotide", + "sameas": "bioregistry.nucleotide", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/nuccore/$1" + }, + "bioregistry.oa": { + "authority": "bioregistry", + "homepage": "http://www.w3.org/ns/oa", + "id": "bioregistry.oa", + "name": "Web Annotation Ontology", + "prefix": "oa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/ns/oa#$1" + }, + "bioregistry.oa.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.oa.biocontext", + "name": null, + "prefix": "oa", + "sameas": "bioregistry.oa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/ns/oa#$1" + }, + "bioregistry.oban": { + "authority": "bioregistry", + "homepage": "https://github.com/EBISPOT/OBAN", + "id": "bioregistry.oban", + "name": "Open Biomedical Annotations", + "prefix": "oban", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/oban/$1" + }, + "bioregistry.oban.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.oban.biocontext", + "name": null, + "prefix": "OBAN", + "sameas": "bioregistry.oban", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/oban/$1" + }, + "bioregistry.oban.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.oban.biolink", + "name": null, + "prefix": "OBAN", + "sameas": "bioregistry.oban", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/oban/$1" + }, + "bioregistry.obi": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.obi", + "name": "Ontology for Biomedical Investigations", + "prefix": "obi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/$1" + }, + "bioregistry.obi.miriam": { + "authority": "miriam", + "homepage": "http://www.ontobee.org/", + "id": "bioregistry.obi.miriam", + "name": "Ontology for Biomedical Investigations", + "prefix": "obi", + "sameas": "bioregistry.obi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/$1" + }, + "bioregistry.obi.n2t": { + "authority": "n2t", + "homepage": "http://www.ontobee.org/", + "id": "bioregistry.obi.n2t", + "name": "OBI through Ontobee", + "prefix": "obi", + "sameas": "bioregistry.obi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/$1" + }, + "bioregistry.oboinowl": { + "authority": "bioregistry", + "homepage": "https://github.com/geneontology/go-ontology/tree/master/contrib", + "id": "bioregistry.oboinowl", + "name": "OBO Format Syntax and Semantics", + "prefix": "oboinowl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.geneontology.org/formats/oboInOwl#$1" + }, + "bioregistry.oboinowl.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.oboinowl.biocontext", + "name": null, + "prefix": "oboInOwl", + "sameas": "bioregistry.oboinowl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.geneontology.org/formats/oboInOwl#$1" + }, + "bioregistry.oboinowl.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.oboinowl.biolink", + "name": null, + "prefix": "oboformat", + "sameas": "bioregistry.oboinowl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.geneontology.org/formats/oboInOwl#$1" + }, + "bioregistry.obv": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.obv", + "name": "Austrian Library Network", + "prefix": "obv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://permalink.obvsg.at/$1" + }, + "bioregistry.obv.miriam": { + "authority": "miriam", + "homepage": "https://www.obvsg.at/", + "id": "bioregistry.obv.miriam", + "name": "Austrian Library Network", + "prefix": "obv", + "sameas": "bioregistry.obv", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://permalink.obvsg.at/$1" + }, + "bioregistry.occ": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.occ", + "name": "OpenCitations Corpus", + "prefix": "occ", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/oc/corpus/$1" + }, + "bioregistry.occ.miriam": { + "authority": "miriam", + "homepage": "https://w3id.org/oc/corpus", + "id": "bioregistry.occ.miriam", + "name": "OpenCitations Corpus", + "prefix": "occ", + "sameas": "bioregistry.occ", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/oc/corpus/$1" + }, + "bioregistry.occ.n2t": { + "authority": "n2t", + "homepage": "https://w3id.org/oc/corpus", + "id": "bioregistry.occ.n2t", + "name": "OpenCitations Corpus", + "prefix": "occ", + "sameas": "bioregistry.occ", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/oc/corpus/$1" + }, + "bioregistry.oci": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.oci", + "name": "Open Citation Identifier", + "prefix": "oci", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/oc/oci/$1" + }, + "bioregistry.oci.miriam": { + "authority": "miriam", + "homepage": "http://opencitations.net", + "id": "bioregistry.oci.miriam", + "name": "OCI", + "prefix": "oci", + "sameas": "bioregistry.oci", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/oc/oci/$1" + }, + "bioregistry.oci.n2t": { + "authority": "n2t", + "homepage": "http://opencitations.net", + "id": "bioregistry.oci.n2t", + "name": "OpenCitations", + "prefix": "oci", + "sameas": "bioregistry.oci", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/oc/oci/$1" + }, + "bioregistry.ocid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ocid", + "name": "Ontology Concept Identifiers", + "prefix": "ocid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ocid.ontochem.com/prefname?ocid=$1" + }, + "bioregistry.ocid.miriam": { + "authority": "miriam", + "homepage": "https://ontochem.com/", + "id": "bioregistry.ocid.miriam", + "name": "Ontology Concept Identifiers", + "prefix": "ocid", + "sameas": "bioregistry.ocid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ocid.ontochem.com/prefname?ocid=$1" + }, + "bioregistry.oclc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.oclc", + "name": "Online Computer Library Center (OCLC) WorldCat", + "prefix": "oclc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.worldcat.org/oclc/$1" + }, + "bioregistry.oclc.miriam": { + "authority": "miriam", + "homepage": "https://www.oclc.org/en/about.html", + "id": "bioregistry.oclc.miriam", + "name": "Online Computer Library Center (OCLC) WorldCat", + "prefix": "oclc", + "sameas": "bioregistry.oclc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.worldcat.org/oclc/$1" + }, + "bioregistry.oclc.n2t": { + "authority": "n2t", + "homepage": "https://www.oclc.org/en/about.html", + "id": "bioregistry.oclc.n2t", + "name": "Online Computer Library Center (OCLC) WorldCat", + "prefix": "oclc", + "sameas": "bioregistry.oclc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.worldcat.org/oclc/$1" + }, + "bioregistry.odam": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.odam", + "name": "Open Data for Access and Mining", + "prefix": "odam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pmb-bordeaux.fr/getdata/json/$1/datapackage?links=1" + }, + "bioregistry.odam.miriam": { + "authority": "miriam", + "homepage": "https://metabolome.cgfb.u-bordeaux.fr/", + "id": "bioregistry.odam.miriam", + "name": "Open Data for Access and Mining", + "prefix": "odam", + "sameas": "bioregistry.odam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pmb-bordeaux.fr/getdata/json/$1/datapackage?links=1" + }, + "bioregistry.odc.sci": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.odc.sci", + "name": "Open Data Commons for Spinal Cord Injury", + "prefix": "odc.sci", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://odc-sci.org/data/$1" + }, + "bioregistry.odc.sci.miriam": { + "authority": "miriam", + "homepage": "https://odc-sci.org", + "id": "bioregistry.odc.sci.miriam", + "name": "Open Data Commons for Spinal Cord Injury", + "prefix": "odc.sci", + "sameas": "bioregistry.odc.sci", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://odc-sci.org/data/$1" + }, + "bioregistry.odc.tbi": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.odc.tbi", + "name": "Open Data Commons for Traumatic Brain Injury", + "prefix": "odc.tbi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://odc-tbi.org/data/$1" + }, + "bioregistry.odc.tbi.miriam": { + "authority": "miriam", + "homepage": "https://odc-tbi.org", + "id": "bioregistry.odc.tbi.miriam", + "name": "Open Data Commons for Traumatic Brain Injury", + "prefix": "odc.tbi", + "sameas": "bioregistry.odc.tbi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://odc-tbi.org/data/$1" + }, + "bioregistry.odor": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.odor", + "name": "Odor Molecules DataBase at Yale University School of Medicine", + "prefix": "odor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://senselab.med.yale.edu/OdorDB/Data/$1/?db=5" + }, + "bioregistry.odor.miriam": { + "authority": "miriam", + "homepage": "http://senselab.med.yale.edu/OdorDB", + "id": "bioregistry.odor.miriam", + "name": "Odor Molecules DataBase", + "prefix": "odor", + "sameas": "bioregistry.odor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://senselab.med.yale.edu/OdorDB/Data/$1/?db=5" + }, + "bioregistry.odor.n2t": { + "authority": "n2t", + "homepage": "http://senselab.med.yale.edu/OdorDB", + "id": "bioregistry.odor.n2t", + "name": "Odor Molecules DataBase at Yale University School of Medicine", + "prefix": "odor", + "sameas": "bioregistry.odor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://senselab.med.yale.edu/OdorDB/Data/$1/?db=5" + }, + "bioregistry.oid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.oid", + "name": "ISO Object Identifier", + "prefix": "oid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.oid-info.com/cgi-bin/display?oid=$1&submit=Display&action=display" + }, + "bioregistry.oid.miriam": { + "authority": "miriam", + "homepage": "http://www.oid-info.com/introduction.htm", + "id": "bioregistry.oid.miriam", + "name": "OID Repository", + "prefix": "oid", + "sameas": "bioregistry.oid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.oid-info.com/cgi-bin/display?oid=$1&submit=Display&action=display" + }, + "bioregistry.oid.n2t": { + "authority": "n2t", + "homepage": "http://www.oid-info.com/introduction.htm", + "id": "bioregistry.oid.n2t", + "name": "OID Repository", + "prefix": "oid", + "sameas": "bioregistry.oid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.oid-info.com/cgi-bin/display?oid=$1&submit=Display&action=display" + }, + "bioregistry.oma.grp": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.oma.grp", + "name": "OMA Group through OMA browser at ETH Zurich", + "prefix": "oma.grp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayGroup&p1=$1" + }, + "bioregistry.oma.grp.miriam": { + "authority": "miriam", + "homepage": "https://omabrowser.org/cgi-bin/gateway.pl", + "id": "bioregistry.oma.grp.miriam", + "name": "OMA Group", + "prefix": "oma.grp", + "sameas": "bioregistry.oma.grp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayGroup&p1=$1" + }, + "bioregistry.oma.grp.n2t": { + "authority": "n2t", + "homepage": "https://omabrowser.org/cgi-bin/gateway.pl", + "id": "bioregistry.oma.grp.n2t", + "name": "OMA Group through OMA browser at ETH Zurich", + "prefix": "oma.grp", + "sameas": "bioregistry.oma.grp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayGroup&p1=$1" + }, + "bioregistry.oma.hog": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.oma.hog", + "name": "OMA HOGs", + "prefix": "oma.hog", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://omabrowser.org/oma/hog/resolve/HOG:$1/" + }, + "bioregistry.oma.hog.miriam": { + "authority": "miriam", + "homepage": "https://omabrowser.org", + "id": "bioregistry.oma.hog.miriam", + "name": "OMA HOGs", + "prefix": "oma.hog", + "sameas": "bioregistry.oma.hog", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://omabrowser.org/oma/hog/resolve/HOG:$1/" + }, + "bioregistry.oma.protein": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.oma.protein", + "name": "OMA Protein through OMA browser at ETH Zurich", + "prefix": "oma.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayEntry&p1=$1" + }, + "bioregistry.oma.protein.miriam": { + "authority": "miriam", + "homepage": "https://omabrowser.org/cgi-bin/gateway.pl", + "id": "bioregistry.oma.protein.miriam", + "name": "OMA Protein", + "prefix": "oma.protein", + "sameas": "bioregistry.oma.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayEntry&p1=$1" + }, + "bioregistry.oma.protein.n2t": { + "authority": "n2t", + "homepage": "https://omabrowser.org/cgi-bin/gateway.pl", + "id": "bioregistry.oma.protein.n2t", + "name": "OMA Protein through OMA browser at ETH Zurich", + "prefix": "oma.protein", + "sameas": "bioregistry.oma.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayEntry&p1=$1" + }, + "bioregistry.omia": { + "authority": "bioregistry", + "homepage": "https://omia.org", + "id": "bioregistry.omia", + "name": "Online Mendelian Inheritance in Animals", + "prefix": "omia", + "source": "bioregistry.io", + "subjects": [ + "medical and health sciences", + "genetics", + "biological sciences" + ], + "uri_format": "http://omia.angis.org.au/retrieve.shtml?pid=$1" + }, + "bioregistry.omia.miriam": { + "authority": "miriam", + "homepage": "http://omia.angis.org.au/", + "id": "bioregistry.omia.miriam", + "name": "OMIA", + "prefix": "omia", + "sameas": "bioregistry.omia", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://omia.angis.org.au/$1/" + }, + "bioregistry.omia.n2t": { + "authority": "n2t", + "homepage": "http://omia.angis.org.au/", + "id": "bioregistry.omia.n2t", + "name": "OMIA at University of Sydney", + "prefix": "omia", + "sameas": "bioregistry.omia", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://omia.angis.org.au/$1/" + }, + "bioregistry.omia.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://omia.angis.org.au/", + "id": "bioregistry.omia.prefixcommons", + "name": "Online Mendelian Inheritance in Animals", + "prefix": "omia", + "sameas": "bioregistry.omia", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://omia.angis.org.au/retrieve.shtml?pid=$1" + }, + "bioregistry.omid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.omid", + "name": "OpenCitations Meta Identifier", + "prefix": "omid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/oc/meta/$1" + }, + "bioregistry.omid.miriam": { + "authority": "miriam", + "homepage": "http://opencitations.net/", + "id": "bioregistry.omid.miriam", + "name": "OpenCitations Meta Identifier", + "prefix": "omid", + "sameas": "bioregistry.omid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/oc/meta/$1" + }, + "bioregistry.omim": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.omim", + "name": "Online Mendelian Inheritance in Man Ontology", + "prefix": "omim", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.omim.org/entry/$1" + }, + "bioregistry.omim.go": { + "authority": "go", + "homepage": "https://omim.org/", + "id": "bioregistry.omim.go", + "name": "Mendelian Inheritance in Man", + "prefix": "OMIM", + "sameas": "bioregistry.omim", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://omim.org/entry/$1" + }, + "bioregistry.omim.miriam": { + "authority": "miriam", + "homepage": "https://omim.org/", + "id": "bioregistry.omim.miriam", + "name": "OMIM", + "prefix": "mim", + "sameas": "bioregistry.omim", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://omim.org/entry/$1" + }, + "bioregistry.omim.n2t": { + "authority": "n2t", + "homepage": "https://omim.org/", + "id": "bioregistry.omim.n2t", + "name": "OMIM at John Hopkins", + "prefix": "mim", + "sameas": "bioregistry.omim", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://omim.org/entry/$1" + }, + "bioregistry.omim.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/omim/", + "id": "bioregistry.omim.prefixcommons", + "name": "Online Mendelian Inheritance in Man", + "prefix": "omim", + "sameas": "bioregistry.omim", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/omim/$1" + }, + "bioregistry.omim.ps": { + "authority": "bioregistry", + "homepage": "https://www.omim.org/phenotypicSeriesTitles/all", + "id": "bioregistry.omim.ps", + "name": "OMIM Phenotypic Series", + "prefix": "omim.ps", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.omim.org/phenotypicSeries/$1" + }, + "bioregistry.omim.ps.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.omim.ps.biolink", + "name": null, + "prefix": "OMIM.PS", + "sameas": "bioregistry.omim.ps", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.omim.org/phenotypicSeries/$1" + }, + "bioregistry.omim.uniprot": { + "authority": "uniprot", + "homepage": "https://www.omim.org/", + "id": "bioregistry.omim.uniprot", + "name": "Online Mendelian Inheritance in Man (OMIM)", + "prefix": "DB-0062", + "sameas": "bioregistry.omim", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.omim.org/entry/$1" + }, + "bioregistry.omim.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.omim.wikidata", + "name": "OMIM ID", + "prefix": "P492", + "sameas": "bioregistry.omim", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://omim.org/OMIM:$1" + }, + "bioregistry.omit": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.omit", + "name": "Ontology for miRNA Target (OMIT) through OLS", + "prefix": "omit", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/omit/terms?short_form=OMIT_$1" + }, + "bioregistry.omit.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ols4/ontologies/omit/", + "id": "bioregistry.omit.miriam", + "name": "OMIT", + "prefix": "omit", + "sameas": "bioregistry.omit", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/omit/terms?short_form=OMIT_$1" + }, + "bioregistry.omit.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/ols/ontologies/omit/", + "id": "bioregistry.omit.n2t", + "name": "Ontology for miRNA Target (OMIT) through OLS", + "prefix": "omit", + "sameas": "bioregistry.omit", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/omit/terms?short_form=OMIT_$1" + }, + "bioregistry.opb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.opb", + "name": "Ontology of Physics for Biology through Bioportal", + "prefix": "opb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/OPB?conceptid=http%3A%2F%2Fbhi.washington.edu%2FOPB%23$1" + }, + "bioregistry.opb.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/ontologies/OPB", + "id": "bioregistry.opb.miriam", + "name": "Ontology of Physics for Biology", + "prefix": "opb", + "sameas": "bioregistry.opb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/OPB?conceptid=http%3A%2F%2Fbhi.washington.edu%2FOPB%23$1" + }, + "bioregistry.opb.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/OPB", + "id": "bioregistry.opb.n2t", + "name": "Ontology of Physics for Biology through Bioportal", + "prefix": "opb", + "sameas": "bioregistry.opb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/OPB?conceptid=http%3A%2F%2Fbhi.washington.edu%2FOPB%23$1" + }, + "bioregistry.opm": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.opm", + "name": "Orientations of Proteins in Membranes Database", + "prefix": "opm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://opm.phar.umich.edu/protein.php?pdbid=$1" + }, + "bioregistry.opm.miriam": { + "authority": "miriam", + "homepage": "http://opm.phar.umich.edu/", + "id": "bioregistry.opm.miriam", + "name": "OPM", + "prefix": "opm", + "sameas": "bioregistry.opm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://opm.phar.umich.edu/protein.php?pdbid=$1" + }, + "bioregistry.opm.n2t": { + "authority": "n2t", + "homepage": "http://opm.phar.umich.edu/", + "id": "bioregistry.opm.n2t", + "name": "OPM at University of Michigan", + "prefix": "opm", + "sameas": "bioregistry.opm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://opm.phar.umich.edu/protein.php?pdbid=$1" + }, + "bioregistry.orcid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.orcid", + "name": "Open Researcher and Contributor ID Registry", + "prefix": "orcid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://orcid.org/$1" + }, + "bioregistry.orcid.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.orcid.biolink", + "name": null, + "prefix": "ORCID", + "sameas": "bioregistry.orcid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://orcid.org/$1" + }, + "bioregistry.orcid.go": { + "authority": "go", + "homepage": "https://orcid.org/", + "id": "bioregistry.orcid.go", + "name": "Open Researcher and Contributor", + "prefix": "orcid", + "sameas": "bioregistry.orcid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://orcid.org/$1" + }, + "bioregistry.orcid.miriam": { + "authority": "miriam", + "homepage": "https://orcid.org", + "id": "bioregistry.orcid.miriam", + "name": "ORCID", + "prefix": "orcid", + "sameas": "bioregistry.orcid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://orcid.org/$1" + }, + "bioregistry.orcid.n2t": { + "authority": "n2t", + "homepage": "https://orcid.org", + "id": "bioregistry.orcid.n2t", + "name": "ORCID at Bethesda", + "prefix": "orcid", + "sameas": "bioregistry.orcid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://orcid.org/$1" + }, + "bioregistry.orcid.wikidata": { + "authority": "wikidata", + "homepage": "https://orcid.org/", + "id": "bioregistry.orcid.wikidata", + "name": "ORCID iD", + "prefix": "P496", + "sameas": "bioregistry.orcid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://orcid.org/$1" + }, + "bioregistry.ordb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ordb", + "name": "Olfactory Receptor Database at Yale University School of Medicine", + "prefix": "ordb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://senselab.med.yale.edu/ordb/eavdata.asp?o=$1" + }, + "bioregistry.ordb.miriam": { + "authority": "miriam", + "homepage": "http://senselab.med.yale.edu/OrDB/", + "id": "bioregistry.ordb.miriam", + "name": "Olfactory Receptor Database", + "prefix": "ordb", + "sameas": "bioregistry.ordb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://senselab.med.yale.edu/ORDB/Data/$1" + }, + "bioregistry.ordb.n2t": { + "authority": "n2t", + "homepage": "http://senselab.med.yale.edu/OrDB/", + "id": "bioregistry.ordb.n2t", + "name": "Olfactory Receptor Database at Yale University School of Medicine", + "prefix": "ordb", + "sameas": "bioregistry.ordb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://senselab.med.yale.edu/ORDB/Data/$1" + }, + "bioregistry.ordb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://senselab.med.yale.edu/senselab/ordb/", + "id": "bioregistry.ordb.prefixcommons", + "name": "Olfactory Receptor Database", + "prefix": "ordb", + "sameas": "bioregistry.ordb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://senselab.med.yale.edu/ordb/eavdata.asp?o=$1" + }, + "bioregistry.oridb.sacch": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.oridb.sacch", + "name": "OriDB Saccharomyces at University of Nottingham", + "prefix": "oridb.sacch", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cerevisiae.oridb.org/details.php?id=$1" + }, + "bioregistry.oridb.sacch.miriam": { + "authority": "miriam", + "homepage": "http://cerevisiae.oridb.org/index.php", + "id": "bioregistry.oridb.sacch.miriam", + "name": "OriDB Saccharomyces", + "prefix": "oridb.sacch", + "sameas": "bioregistry.oridb.sacch", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cerevisiae.oridb.org/details.php?id=$1" + }, + "bioregistry.oridb.sacch.n2t": { + "authority": "n2t", + "homepage": "http://cerevisiae.oridb.org/index.php", + "id": "bioregistry.oridb.sacch.n2t", + "name": "OriDB Saccharomyces at University of Nottingham", + "prefix": "oridb.sacch", + "sameas": "bioregistry.oridb.sacch", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cerevisiae.oridb.org/details.php?id=$1" + }, + "bioregistry.oridb.schizo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.oridb.schizo", + "name": "OriDB Schizosaccharomyces at University of Nottingham", + "prefix": "oridb.schizo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pombe.oridb.org/details.php?id=$1" + }, + "bioregistry.oridb.schizo.miriam": { + "authority": "miriam", + "homepage": "http://pombe.oridb.org/index.php", + "id": "bioregistry.oridb.schizo.miriam", + "name": "OriDB Schizosaccharomyces", + "prefix": "oridb.schizo", + "sameas": "bioregistry.oridb.schizo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pombe.oridb.org/details.php?id=$1" + }, + "bioregistry.oridb.schizo.n2t": { + "authority": "n2t", + "homepage": "http://pombe.oridb.org/index.php", + "id": "bioregistry.oridb.schizo.n2t", + "name": "OriDB Schizosaccharomyces at University of Nottingham", + "prefix": "oridb.schizo", + "sameas": "bioregistry.oridb.schizo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pombe.oridb.org/details.php?id=$1" + }, + "bioregistry.orphanet": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.orphanet", + "name": "Orphanet; a database dedicated to information on rare diseases and orphan drugs", + "prefix": "orphanet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "health sciences", + "pharmacology and pharmacy" + ], + "uri_format": "https://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng=GB&Expert=$1" + }, + "bioregistry.orphanet.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.orphanet.biocontext", + "name": null, + "prefix": "Orphanet", + "sameas": "bioregistry.orphanet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "health sciences", + "pharmacology and pharmacy" + ], + "uri_format": "http://www.orpha.net/ORDO/Orphanet_$1" + }, + "bioregistry.orphanet.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.orphanet.biolink", + "name": null, + "prefix": "orphanet", + "sameas": "bioregistry.orphanet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "health sciences", + "pharmacology and pharmacy" + ], + "uri_format": "http://www.orpha.net/ORDO/Orphanet_$1" + }, + "bioregistry.orphanet.miriam": { + "authority": "miriam", + "homepage": "http://www.orpha.net/consor/", + "id": "bioregistry.orphanet.miriam", + "name": "Orphanet", + "prefix": "orphanet", + "sameas": "bioregistry.orphanet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng=EN&Expert=$1" + }, + "bioregistry.orphanet.n2t": { + "authority": "n2t", + "homepage": "http://www.orpha.net/consor/", + "id": "bioregistry.orphanet.n2t", + "name": "Orphanet at Inserm", + "prefix": "orphanet", + "sameas": "bioregistry.orphanet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng=EN&Expert=$1" + }, + "bioregistry.orphanet.ordo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.orphanet.ordo", + "name": "Orphanet Rare Diseases Ontology", + "prefix": "orphanet.ordo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/ordo/terms?short_form=$1" + }, + "bioregistry.orphanet.ordo.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.orphanet.ordo.biolink", + "name": null, + "prefix": "ORPHA", + "sameas": "bioregistry.orphanet.ordo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.orpha.net/ORDO/Orphanet_$1" + }, + "bioregistry.orphanet.ordo.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ebi.ac.uk/ols/ontologies/ordo", + "id": "bioregistry.orphanet.ordo.cellosaurus", + "name": "Orphanet Rare Disease Ontology", + "prefix": "ORDO", + "sameas": "bioregistry.orphanet.ordo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/ordo/terms?iri=http://www.orpha.net/ORDO/$1" + }, + "bioregistry.orphanet.ordo.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ols/ontologies/ordo", + "id": "bioregistry.orphanet.ordo.miriam", + "name": "Orphanet Rare Disease Ontology", + "prefix": "orphanet.ordo", + "sameas": "bioregistry.orphanet.ordo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/ordo/terms?short_form=$1" + }, + "bioregistry.orphanet.ordo.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/ols/ontologies/ordo", + "id": "bioregistry.orphanet.ordo.n2t", + "name": "ORDO via OLS", + "prefix": "orphanet.ordo", + "sameas": "bioregistry.orphanet.ordo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/ordo/terms?short_form=$1" + }, + "bioregistry.orphanet.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.orpha.net/consor/cgi-bin/home.php?Lng=GB", + "id": "bioregistry.orphanet.prefixcommons", + "name": "Orphanet; a database dedicated to information on rare diseases and orphan drugs", + "prefix": "orphanet", + "sameas": "bioregistry.orphanet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "health sciences", + "pharmacology and pharmacy" + ], + "uri_format": "http://www.orpha.net/consor/cgi-bin/OC_Exp.php?lng=EN&Expert=$1" + }, + "bioregistry.orphanet.uniprot": { + "authority": "uniprot", + "homepage": "https://www.orpha.net/consor/cgi-bin/index.php", + "id": "bioregistry.orphanet.uniprot", + "name": "Orphanet; a database dedicated to information on rare diseases and orphan drugs", + "prefix": "DB-0068", + "sameas": "bioregistry.orphanet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "health sciences", + "pharmacology and pharmacy" + ], + "uri_format": "https://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng=GB&Expert=$1" + }, + "bioregistry.orphanet.wikidata": { + "authority": "wikidata", + "homepage": "https://www.orpha.net", + "id": "bioregistry.orphanet.wikidata", + "name": "Orphanet ID", + "prefix": "P1550", + "sameas": "bioregistry.orphanet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "health sciences", + "pharmacology and pharmacy" + ], + "uri_format": "https://www.orpha.net/consor/cgi-bin//OC_Exp.php?lng=EN&Expert=$1" + }, + "bioregistry.orthodb": { + "authority": "bioregistry", + "homepage": "https://www.orthodb.org", + "id": "bioregistry.orthodb", + "name": "OrthoDB at Swiss Institute of Bioinformatics", + "prefix": "orthodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.orthodb.org/?gene=$1" + }, + "bioregistry.orthodb.miriam": { + "authority": "miriam", + "homepage": "http://cegg.unige.ch/orthodb4", + "id": "bioregistry.orthodb.miriam", + "name": "OrthoDB", + "prefix": "orthodb", + "sameas": "bioregistry.orthodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cegg.unige.ch/orthodb/results?searchtext=$1" + }, + "bioregistry.orthodb.n2t": { + "authority": "n2t", + "homepage": "http://cegg.unige.ch/orthodb4", + "id": "bioregistry.orthodb.n2t", + "name": "OrthoDB at Swiss Institute of Bioinformatics", + "prefix": "orthodb", + "sameas": "bioregistry.orthodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cegg.unige.ch/orthodb/results?searchtext=$1" + }, + "bioregistry.orthodb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://cegg.unige.ch/orthodb/browse", + "id": "bioregistry.orthodb.prefixcommons", + "name": "Database of Orthologous Groups", + "prefix": "orthodb", + "sameas": "bioregistry.orthodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics", + "biochemistry" + ], + "uri_format": "http://cegg.unige.ch/orthodb3/results?searchtext=$1" + }, + "bioregistry.orthodb.uniprot": { + "authority": "uniprot", + "homepage": "https://www.orthodb.org", + "id": "bioregistry.orthodb.uniprot", + "name": "Database of Orthologous Groups", + "prefix": "DB-0143", + "sameas": "bioregistry.orthodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.orthodb.org/?gene=$1" + }, + "bioregistry.oryzabase.gene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.oryzabase.gene", + "name": "Oryzabase v4 Gene at National Institute of Genetics (Japan)", + "prefix": "oryzabase.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/gene/detail/$1" + }, + "bioregistry.oryzabase.gene.miriam": { + "authority": "miriam", + "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "id": "bioregistry.oryzabase.gene.miriam", + "name": "Oryzabase Gene", + "prefix": "oryzabase.gene", + "sameas": "bioregistry.oryzabase.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/gene/detail/$1" + }, + "bioregistry.oryzabase.gene.n2t": { + "authority": "n2t", + "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "id": "bioregistry.oryzabase.gene.n2t", + "name": "Oryzabase v4 Gene at National Institute of Genetics (Japan)", + "prefix": "oryzabase.gene", + "sameas": "bioregistry.oryzabase.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/gene/detail/$1" + }, + "bioregistry.oryzabase.mutant": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.oryzabase.mutant", + "name": "Oryzabase v4 Mutant at National Institute of Genetics (Japan)", + "prefix": "oryzabase.mutant", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/inducedMutationLine/detail/$1" + }, + "bioregistry.oryzabase.mutant.miriam": { + "authority": "miriam", + "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "id": "bioregistry.oryzabase.mutant.miriam", + "name": "Oryzabase Mutant", + "prefix": "oryzabase.mutant", + "sameas": "bioregistry.oryzabase.mutant", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/inducedMutationLine/detail/$1" + }, + "bioregistry.oryzabase.mutant.n2t": { + "authority": "n2t", + "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "id": "bioregistry.oryzabase.mutant.n2t", + "name": "Oryzabase v4 Mutant at National Institute of Genetics (Japan)", + "prefix": "oryzabase.mutant", + "sameas": "bioregistry.oryzabase.mutant", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/inducedMutationLine/detail/$1" + }, + "bioregistry.oryzabase.reference": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.oryzabase.reference", + "name": "Oryzabase Reference", + "prefix": "oryzabase.reference", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://shigen.nig.ac.jp/rice/oryzabase/reference/detail/$1" + }, + "bioregistry.oryzabase.reference.miriam": { + "authority": "miriam", + "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "id": "bioregistry.oryzabase.reference.miriam", + "name": "Oryzabase", + "prefix": "oryzabase.reference", + "sameas": "bioregistry.oryzabase.reference", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://shigen.nig.ac.jp/rice/oryzabase/reference/detail/$1" + }, + "bioregistry.oryzabase.reference.n2t": { + "authority": "n2t", + "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "id": "bioregistry.oryzabase.reference.n2t", + "name": "Oryzabase", + "prefix": "oryzabase.reference", + "sameas": "bioregistry.oryzabase.reference", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://shigen.nig.ac.jp/rice/oryzabase/reference/detail/$1" + }, + "bioregistry.oryzabase.stage": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.oryzabase.stage", + "name": "Oryzabase v4 Stage at National Institute of Genetics (Japan)", + "prefix": "oryzabase.stage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/devstageineachorgan/detail/$1" + }, + "bioregistry.oryzabase.stage.miriam": { + "authority": "miriam", + "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "id": "bioregistry.oryzabase.stage.miriam", + "name": "Oryzabase Stage", + "prefix": "oryzabase.stage", + "sameas": "bioregistry.oryzabase.stage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/devstageineachorgan/detail/$1" + }, + "bioregistry.oryzabase.stage.n2t": { + "authority": "n2t", + "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "id": "bioregistry.oryzabase.stage.n2t", + "name": "Oryzabase v4 Stage at National Institute of Genetics (Japan)", + "prefix": "oryzabase.stage", + "sameas": "bioregistry.oryzabase.stage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/devstageineachorgan/detail/$1" + }, + "bioregistry.oryzabase.strain": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.oryzabase.strain", + "name": "Oryzabase v4 Strain at National Institute of Genetics (Japan)", + "prefix": "oryzabase.strain", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/wildCore/detail/$1" + }, + "bioregistry.oryzabase.strain.miriam": { + "authority": "miriam", + "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "id": "bioregistry.oryzabase.strain.miriam", + "name": "Oryzabase Strain", + "prefix": "oryzabase.strain", + "sameas": "bioregistry.oryzabase.strain", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/wildCore/detail/$1" + }, + "bioregistry.oryzabase.strain.n2t": { + "authority": "n2t", + "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", + "id": "bioregistry.oryzabase.strain.n2t", + "name": "Oryzabase v4 Strain at National Institute of Genetics (Japan)", + "prefix": "oryzabase.strain", + "sameas": "bioregistry.oryzabase.strain", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/wildCore/detail/$1" + }, + "bioregistry.otl": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.otl", + "name": "Oryza Tag Line: An integrated database for the functional analysis of the rice genome", + "prefix": "otl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://urgi.versailles.inra.fr/OryzaTagLine/cgi-bin/general_mutant.pl?line=$1" + }, + "bioregistry.otl.miriam": { + "authority": "miriam", + "homepage": "http://oryzatagline.cirad.fr/", + "id": "bioregistry.otl.miriam", + "name": "Oryza Tag Line", + "prefix": "otl", + "sameas": "bioregistry.otl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://oryzatagline.cirad.fr/cgi-bin/general_mutant.pl?line=$1" + }, + "bioregistry.otl.n2t": { + "authority": "n2t", + "homepage": "http://oryzatagline.cirad.fr/", + "id": "bioregistry.otl.n2t", + "name": "Oryza Tag Line at CIRAD-INRA-SUPAGRO-UMI", + "prefix": "otl", + "sameas": "bioregistry.otl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://oryzatagline.cirad.fr/cgi-bin/general_mutant.pl?line=$1" + }, + "bioregistry.otl.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://urgi.versailles.inra.fr/OryzaTagLine/", + "id": "bioregistry.otl.prefixcommons", + "name": "Oryza Tag Line: An integrated database for the functional analysis of the rice genome", + "prefix": "otl", + "sameas": "bioregistry.otl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://urgi.versailles.inra.fr/OryzaTagLine/cgi-bin/general_mutant.pl?line=$1" + }, + "bioregistry.otol": { + "authority": "bioregistry", + "homepage": "https://tree.opentreeoflife.org", + "id": "bioregistry.otol", + "name": "Open Tree of Life ID", + "prefix": "otol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://tree.opentreeoflife.org/taxonomy/browse?id=$1" + }, + "bioregistry.otol.wikidata": { + "authority": "wikidata", + "homepage": "https://tree.opentreeoflife.org/opentree", + "id": "bioregistry.otol.wikidata", + "name": "Open Tree of Life ID", + "prefix": "P9157", + "sameas": "bioregistry.otol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://tree.opentreeoflife.org/taxonomy/browse?id=$1" + }, + "bioregistry.owl": { + "authority": "bioregistry", + "homepage": "https://www.w3.org/TR/owl-features/", + "id": "bioregistry.owl", + "name": "The OWL 2 Schema vocabulary (OWL 2)", + "prefix": "owl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/2002/07/owl#$1" + }, + "bioregistry.owl.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.owl.biocontext", + "name": null, + "prefix": "owl", + "sameas": "bioregistry.owl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/2002/07/owl#$1" + }, + "bioregistry.owlstar": { + "authority": "bioregistry", + "homepage": "https://linkml.io/owlstar/", + "id": "bioregistry.owlstar", + "name": "Ontological Interpretations for Web Property Graphs", + "prefix": "owlstar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://github.com/cmungall/owlstar/blob/master/owlstar.ttl$1" + }, + "bioregistry.owlstar.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.owlstar.biolink", + "name": null, + "prefix": "os", + "sameas": "bioregistry.owlstar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://github.com/cmungall/owlstar/blob/master/owlstar.ttl$1" + }, + "bioregistry.p3db.protein": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.p3db.protein", + "name": "P3DB Protein at University of Missouri", + "prefix": "p3db.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.p3db.org/protein.php?id=$1&ref=0" + }, + "bioregistry.p3db.protein.miriam": { + "authority": "miriam", + "homepage": "http://www.p3db.org/", + "id": "bioregistry.p3db.protein.miriam", + "name": "P3DB Protein", + "prefix": "p3db.protein", + "sameas": "bioregistry.p3db.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.p3db.org/protein.php?id=$1&ref=0" + }, + "bioregistry.p3db.protein.n2t": { + "authority": "n2t", + "homepage": "http://www.p3db.org/", + "id": "bioregistry.p3db.protein.n2t", + "name": "P3DB Protein at University of Missouri", + "prefix": "p3db.protein", + "sameas": "bioregistry.p3db.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.p3db.org/protein.php?id=$1&ref=0" + }, + "bioregistry.p3db.protein.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.p3db.org", + "id": "bioregistry.p3db.protein.prefixcommons", + "name": "Plant Protein Phosphorylation Database", + "prefix": "p3db", + "sameas": "bioregistry.p3db.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://digbio.missouri.edu/p3db/data/protein.php?id=$1" + }, + "bioregistry.p3db.site": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.p3db.site", + "name": "P3DB Site at University of Missouri", + "prefix": "p3db.site", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.p3db.org/phosphosite.php?id=$1&ref=0" + }, + "bioregistry.p3db.site.miriam": { + "authority": "miriam", + "homepage": "http://www.p3db.org/", + "id": "bioregistry.p3db.site.miriam", + "name": "P3DB Site", + "prefix": "p3db.site", + "sameas": "bioregistry.p3db.site", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.p3db.org/phosphosite.php?id=$1&ref=0" + }, + "bioregistry.p3db.site.n2t": { + "authority": "n2t", + "homepage": "http://www.p3db.org/", + "id": "bioregistry.p3db.site.n2t", + "name": "P3DB Site at University of Missouri", + "prefix": "p3db.site", + "sameas": "bioregistry.p3db.site", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.p3db.org/phosphosite.php?id=$1&ref=0" + }, + "bioregistry.paleodb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.paleodb", + "name": "PaleoDB at Macquarie University", + "prefix": "paleodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://paleodb.geology.wisc.edu/cgi-bin/bridge.pl?a=basicTaxonInfo&taxon_no=$1" + }, + "bioregistry.paleodb.miriam": { + "authority": "miriam", + "homepage": "http://paleodb.org/", + "id": "bioregistry.paleodb.miriam", + "name": "PaleoDB", + "prefix": "paleodb", + "sameas": "bioregistry.paleodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://fossilworks.org/?a=taxonInfo&taxon_no=$1" + }, + "bioregistry.paleodb.n2t": { + "authority": "n2t", + "homepage": "http://paleodb.org/", + "id": "bioregistry.paleodb.n2t", + "name": "PaleoDB at Macquarie University", + "prefix": "paleodb", + "sameas": "bioregistry.paleodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://fossilworks.org/?a=taxonInfo&taxon_no=$1" + }, + "bioregistry.paleodb.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.paleodb.prefixcommons", + "name": "Paleobiology Database", + "prefix": "paleodb", + "sameas": "bioregistry.paleodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://paleodb.geology.wisc.edu/cgi-bin/bridge.pl?a=basicTaxonInfo&taxon_no=$1" + }, + "bioregistry.pandit": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pandit", + "name": "Protein and Associated NucleotideDomains with Inferred Trees", + "prefix": "pandit", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/goldman-srv/pandit/pandit.cgi?action=browse&fam=$1" + }, + "bioregistry.pandit.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/goldman-srv/pandit", + "id": "bioregistry.pandit.prefixcommons", + "name": "Protein and Associated NucleotideDomains with Inferred Trees", + "prefix": "pandit", + "sameas": "bioregistry.pandit", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/goldman-srv/pandit/pandit.cgi?action=browse&fam=$1" + }, + "bioregistry.panther.family": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.panther.family", + "name": "Protein ANalysis THrough Evolutionary Relationships: Classification of Genes and Proteins", + "prefix": "panther.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.pantherdb.org/panther/lookupId.jsp?id=$1" + }, + "bioregistry.panther.family.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.panther.family.biolink", + "name": null, + "prefix": "PANTHER.FAMILY", + "sameas": "bioregistry.panther.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.pantherdb.org/panther/family.do?clsAccession=$1" + }, + "bioregistry.panther.family.go": { + "authority": "go", + "homepage": "http://www.pantherdb.org/", + "id": "bioregistry.panther.family.go", + "name": "Protein ANalysis THrough Evolutionary Relationships Classification System", + "prefix": "PANTHER", + "sameas": "bioregistry.panther.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.pantherdb.org/panther/lookupId.jsp?id=$1" + }, + "bioregistry.panther.family.miriam": { + "authority": "miriam", + "homepage": "http://www.pantherdb.org/", + "id": "bioregistry.panther.family.miriam", + "name": "PANTHER Family", + "prefix": "panther.family", + "sameas": "bioregistry.panther.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pantherdb.org/panther/family.do?clsAccession=$1" + }, + "bioregistry.panther.family.n2t": { + "authority": "n2t", + "homepage": "http://www.pantherdb.org/", + "id": "bioregistry.panther.family.n2t", + "name": "PANTHER Family at USC (Los Angeles)", + "prefix": "panther.family", + "sameas": "bioregistry.panther.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pantherdb.org/panther/family.do?clsAccession=$1" + }, + "bioregistry.panther.family.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.pantherdb.org", + "id": "bioregistry.panther.family.prefixcommons", + "name": "Protein ANalysis THrough Evolutionary Relationships: Classification of Genes and Proteins", + "prefix": "panther", + "sameas": "bioregistry.panther.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.pantherdb.org/panther/family.do?clsAccession=$1" + }, + "bioregistry.panther.family.uniprot": { + "authority": "uniprot", + "homepage": "http://www.pantherdb.org/", + "id": "bioregistry.panther.family.uniprot", + "name": "The PANTHER Classification System", + "prefix": "DB-0069", + "sameas": "bioregistry.panther.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.pantherdb.org/panther/family.do?clsAccession=$1" + }, + "bioregistry.panther.node": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.panther.node", + "name": "PANTHER Node at USC (Los Angeles)", + "prefix": "panther.node", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pantree.org/node/annotationNode.jsp?id=$1" + }, + "bioregistry.panther.node.miriam": { + "authority": "miriam", + "homepage": "http://pantree.org/", + "id": "bioregistry.panther.node.miriam", + "name": "PANTHER Node", + "prefix": "panther.node", + "sameas": "bioregistry.panther.node", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pantree.org/node/annotationNode.jsp?id=$1" + }, + "bioregistry.panther.node.n2t": { + "authority": "n2t", + "homepage": "http://pantree.org/", + "id": "bioregistry.panther.node.n2t", + "name": "PANTHER Node at USC (Los Angeles)", + "prefix": "panther.node", + "sameas": "bioregistry.panther.node", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pantree.org/node/annotationNode.jsp?id=$1" + }, + "bioregistry.panther.pathway": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.panther.pathway", + "name": "PANTHER Pathway at USC (Los Angeles)", + "prefix": "panther.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pantherdb.org/pathway/pathwayDiagram.jsp?catAccession=$1" + }, + "bioregistry.panther.pathway.miriam": { + "authority": "miriam", + "homepage": "http://www.pantherdb.org/", + "id": "bioregistry.panther.pathway.miriam", + "name": "PANTHER Pathway", + "prefix": "panther.pathway", + "sameas": "bioregistry.panther.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pantherdb.org/pathway/pathwayDiagram.jsp?catAccession=$1" + }, + "bioregistry.panther.pathway.n2t": { + "authority": "n2t", + "homepage": "http://www.pantherdb.org/", + "id": "bioregistry.panther.pathway.n2t", + "name": "PANTHER Pathway at USC (Los Angeles)", + "prefix": "panther.pathway", + "sameas": "bioregistry.panther.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pantherdb.org/pathway/pathwayDiagram.jsp?catAccession=$1" + }, + "bioregistry.panther.pthcmp": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.panther.pthcmp", + "name": "PANTHER Pathway Component at USC (Los Angeles)", + "prefix": "panther.pthcmp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pantherdb.org/pathway/pathCatDetail.do?clsAccession=$1" + }, + "bioregistry.panther.pthcmp.miriam": { + "authority": "miriam", + "homepage": "http://www.pantherdb.org/", + "id": "bioregistry.panther.pthcmp.miriam", + "name": "PANTHER Pathway Component", + "prefix": "panther.pthcmp", + "sameas": "bioregistry.panther.pthcmp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pantherdb.org/pathway/pathCatDetail.do?clsAccession=$1" + }, + "bioregistry.panther.pthcmp.n2t": { + "authority": "n2t", + "homepage": "http://www.pantherdb.org/", + "id": "bioregistry.panther.pthcmp.n2t", + "name": "PANTHER Pathway Component at USC (Los Angeles)", + "prefix": "panther.pthcmp", + "sameas": "bioregistry.panther.pthcmp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pantherdb.org/pathway/pathCatDetail.do?clsAccession=$1" + }, + "bioregistry.pass2": { + "authority": "bioregistry", + "homepage": "http://caps.ncbs.res.in/pass2", + "id": "bioregistry.pass2", + "name": "PASS2 at National centre for Biological Sciences (India)", + "prefix": "pass2", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://caps.ncbs.res.in/cgi-bin/pass2//show_sf.py?sf_id=$1" + }, + "bioregistry.pass2.miriam": { + "authority": "miriam", + "homepage": "http://caps.ncbs.res.in/pass2/", + "id": "bioregistry.pass2.miriam", + "name": "PASS2", + "prefix": "pass2", + "sameas": "bioregistry.pass2", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://caps.ncbs.res.in/cgi-bin/pass2//show_sf.py?sf_id=$1" + }, + "bioregistry.pass2.n2t": { + "authority": "n2t", + "homepage": "http://caps.ncbs.res.in/pass2/", + "id": "bioregistry.pass2.n2t", + "name": "PASS2 at National centre for Biological Sciences (India)", + "prefix": "pass2", + "sameas": "bioregistry.pass2", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://caps.ncbs.res.in/cgi-bin/pass2//show_sf.py?sf_id=$1" + }, + "bioregistry.pass2.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbs.res.in/~faculty/mini/campass/pass2.html", + "id": "bioregistry.pass2.prefixcommons", + "name": "Protein Alignments organised as Structural Superfamilies", + "prefix": "pass2", + "sameas": "bioregistry.pass2", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://caps.ncbs.res.in/cgi-bin/mini/databases/campass/pass/pass.cgi?code=$1" + }, + "bioregistry.pathguide": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pathguide", + "name": "Pathguide: The Pathway Resource List", + "prefix": "pathguide", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.pathguide.org/fullrecord.php?organisms=all&availability=all&standards=all&order=alphabetic&DBID=$1" + }, + "bioregistry.pathguide.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://pathguide.org", + "id": "bioregistry.pathguide.prefixcommons", + "name": "Pathguide: The Pathway Resource List", + "prefix": "pathguide", + "sameas": "bioregistry.pathguide", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.pathguide.org/fullrecord.php?organisms=all&availability=all&standards=all&order=alphabetic&DBID=$1" + }, + "bioregistry.pathoplant": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pathoplant", + "name": "PathoPlant\u00ae", + "prefix": "pathoplant", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.pathoplant.de/detail.php?accNo=$1" + }, + "bioregistry.pathoplant.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.pathoplant.de", + "id": "bioregistry.pathoplant.prefixcommons", + "name": "PathoPlant\u00ae", + "prefix": "pathoplant", + "sameas": "bioregistry.pathoplant", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.pathoplant.de/detail.php?accNo=$1" + }, + "bioregistry.pathwaycommons": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pathwaycommons", + "name": "Pathway Commons web resource for biological pathway data", + "prefix": "pathwaycommons", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pathwaycommons.org/pc/record2.do?id=$1" + }, + "bioregistry.pathwaycommons.miriam": { + "authority": "miriam", + "homepage": "http://www.pathwaycommons.org/pc/", + "id": "bioregistry.pathwaycommons.miriam", + "name": "Pathway Commons", + "prefix": "pathwaycommons", + "sameas": "bioregistry.pathwaycommons", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pathwaycommons.org/pc/record2.do?id=$1" + }, + "bioregistry.pathwaycommons.n2t": { + "authority": "n2t", + "homepage": "http://www.pathwaycommons.org/pc/", + "id": "bioregistry.pathwaycommons.n2t", + "name": "Pathway Commons", + "prefix": "pathwaycommons", + "sameas": "bioregistry.pathwaycommons", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pathwaycommons.org/pc/record2.do?id=$1" + }, + "bioregistry.pathwaycommons.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.pathwaycommons.org/pc/", + "id": "bioregistry.pathwaycommons.prefixcommons", + "name": "Pathway Commons", + "prefix": "pathwaycommons", + "sameas": "bioregistry.pathwaycommons", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pathwaycommons.org/pc/record2.do?id=$1" + }, + "bioregistry.pathwaycommons.uniprot": { + "authority": "uniprot", + "homepage": "http://www.pathwaycommons.org", + "id": "bioregistry.pathwaycommons.uniprot", + "name": "Pathway Commons web resource for biological pathway data", + "prefix": "DB-0253", + "sameas": "bioregistry.pathwaycommons", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://apps.pathwaycommons.org/search?q=$1" + }, + "bioregistry.pato": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pato", + "name": "PATO - the Phenotype And Trait Ontology", + "prefix": "pato", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/PATO/PATO:$1" + }, + "bioregistry.pato.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/ontologies/PATO", + "id": "bioregistry.pato.miriam", + "name": "PATO", + "prefix": "pato", + "sameas": "bioregistry.pato", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/PATO/PATO:$1" + }, + "bioregistry.pato.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/PATO", + "id": "bioregistry.pato.n2t", + "name": "PATO through BioPortal", + "prefix": "pato", + "sameas": "bioregistry.pato", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/PATO/PATO:$1" + }, + "bioregistry.pav": { + "authority": "bioregistry", + "homepage": "https://pav-ontology.github.io/pav/", + "id": "bioregistry.pav", + "name": "Provenance, Authoring, and Versioning Vocabulary", + "prefix": "pav", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/pav/$1" + }, + "bioregistry.pav.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.pav.biocontext", + "name": null, + "prefix": "pav", + "sameas": "bioregistry.pav", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/pav/$1" + }, + "bioregistry.pav.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.pav.biolink", + "name": null, + "prefix": "pav", + "sameas": "bioregistry.pav", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/pav/$1" + }, + "bioregistry.paxdb.organism": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.paxdb.organism", + "name": "PaxDb v3 at University of Zurich", + "prefix": "paxdb.organism", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pax-db.org/#!species/$1" + }, + "bioregistry.paxdb.organism.miriam": { + "authority": "miriam", + "homepage": "http://pax-db.org/", + "id": "bioregistry.paxdb.organism.miriam", + "name": "PaxDb Organism", + "prefix": "paxdb.organism", + "sameas": "bioregistry.paxdb.organism", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pax-db.org/#!species/$1" + }, + "bioregistry.paxdb.organism.n2t": { + "authority": "n2t", + "homepage": "http://pax-db.org/", + "id": "bioregistry.paxdb.organism.n2t", + "name": "PaxDb v3 at University of Zurich", + "prefix": "paxdb.organism", + "sameas": "bioregistry.paxdb.organism", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pax-db.org/#!species/$1" + }, + "bioregistry.paxdb.protein": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.paxdb.protein", + "name": "PaxDb v3 at University of Zurich", + "prefix": "paxdb.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pax-db.org/#!protein/$1" + }, + "bioregistry.paxdb.protein.miriam": { + "authority": "miriam", + "homepage": "http://pax-db.org/", + "id": "bioregistry.paxdb.protein.miriam", + "name": "PaxDb Protein", + "prefix": "paxdb.protein", + "sameas": "bioregistry.paxdb.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pax-db.org/#!protein/$1" + }, + "bioregistry.paxdb.protein.n2t": { + "authority": "n2t", + "homepage": "http://pax-db.org/", + "id": "bioregistry.paxdb.protein.n2t", + "name": "PaxDb v3 at University of Zurich", + "prefix": "paxdb.protein", + "sameas": "bioregistry.paxdb.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pax-db.org/#!protein/$1" + }, + "bioregistry.pazar": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pazar", + "name": "Pazar Transcription Factor at University of British Columbia", + "prefix": "pazar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.pazar.info/cgi-bin/tf_search.cgi?searchtab=tfs&ID_list=PAZAR_TF&geneID=$1" + }, + "bioregistry.pazar.miriam": { + "authority": "miriam", + "homepage": "http://www.pazar.info/", + "id": "bioregistry.pazar.miriam", + "name": "Pazar Transcription Factor", + "prefix": "pazar", + "sameas": "bioregistry.pazar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pazar.info/cgi-bin/tf_search.cgi?geneID=$1" + }, + "bioregistry.pazar.n2t": { + "authority": "n2t", + "homepage": "http://www.pazar.info/", + "id": "bioregistry.pazar.n2t", + "name": "Pazar Transcription Factor at University of British Columbia", + "prefix": "pazar", + "sameas": "bioregistry.pazar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pazar.info/cgi-bin/tf_search.cgi?geneID=$1" + }, + "bioregistry.pazar.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.pazar.info/", + "id": "bioregistry.pazar.prefixcommons", + "name": "PAZAR", + "prefix": "pazar", + "sameas": "bioregistry.pazar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.pazar.info/cgi-bin/tf_search.cgi?searchtab=tfs&ID_list=PAZAR_TF&geneID=$1" + }, + "bioregistry.pdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pdb", + "name": "Biological macromolecule three dimensional structure database", + "prefix": "pdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.wwpdb.org/pdb?id=$1" + }, + "bioregistry.pdb-ccd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pdb-ccd", + "name": "Protein Data Bank Chemical Component Dictionary at EBI", + "prefix": "pdb-ccd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences" + ], + "uri_format": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/chemicalCompound/show/$1" + }, + "bioregistry.pdb-ccd.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/", + "id": "bioregistry.pdb-ccd.miriam", + "name": "Chemical Component Dictionary", + "prefix": "pdb-ccd", + "sameas": "bioregistry.pdb-ccd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/chemicalCompound/show/$1" + }, + "bioregistry.pdb-ccd.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/", + "id": "bioregistry.pdb-ccd.n2t", + "name": "Protein Data Bank Chemical Component Dictionary at EBI", + "prefix": "pdb-ccd", + "sameas": "bioregistry.pdb-ccd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/chemicalCompound/show/$1" + }, + "bioregistry.pdb-ccd.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/msd-srv/msdchem/cgi-bin/cgi.pl?APPLICATION=1", + "id": "bioregistry.pdb-ccd.prefixcommons", + "name": "Chemical Component Dictionary", + "prefix": "ccd", + "sameas": "bioregistry.pdb-ccd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "chemical sciences" + ], + "uri_format": "http://www.ebi.ac.uk/msd-srv/msdchem/cgi-bin/cgi.pl?FUNCTION=record&ENTITY=CHEM_COMP&PRIMARYKEY=$1&APPLICATION=1" + }, + "bioregistry.pdb.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.pdb.biocontext", + "name": null, + "prefix": "PDB", + "sameas": "bioregistry.pdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/pdbsum/$1" + }, + "bioregistry.pdb.go": { + "authority": "go", + "homepage": "https://www.rcsb.org/pdb/", + "id": "bioregistry.pdb.go", + "name": "Protein Data Bank", + "prefix": "PDB", + "sameas": "bioregistry.pdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.rcsb.org/structure/$1" + }, + "bioregistry.pdb.ligand": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pdb.ligand", + "name": "Protein Data Bank Ligand", + "prefix": "pdb.ligand", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.rcsb.org/ligand/$1" + }, + "bioregistry.pdb.ligand.miriam": { + "authority": "miriam", + "homepage": "http://www.pdb.org/", + "id": "bioregistry.pdb.ligand.miriam", + "name": "Protein Data Bank Ligand", + "prefix": "pdb.ligand", + "sameas": "bioregistry.pdb.ligand", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.rcsb.org/pdb/ligand/ligandsummary.do?hetId=$1" + }, + "bioregistry.pdb.ligand.n2t": { + "authority": "n2t", + "homepage": "http://www.pdb.org/", + "id": "bioregistry.pdb.ligand.n2t", + "name": "PDB Ligand at RCSB", + "prefix": "pdb.ligand", + "sameas": "bioregistry.pdb.ligand", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.rcsb.org/pdb/ligand/ligandsummary.do?hetId=$1" + }, + "bioregistry.pdb.ligand.wikidata": { + "authority": "wikidata", + "homepage": "http://www.wwpdb.org/", + "id": "bioregistry.pdb.ligand.wikidata", + "name": "PDB ligand ID", + "prefix": "P3636", + "sameas": "bioregistry.pdb.ligand", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.rcsb.org/ligand/$1" + }, + "bioregistry.pdb.miriam": { + "authority": "miriam", + "homepage": "https://www.wwpdb.org/", + "id": "bioregistry.pdb.miriam", + "name": "Protein Data Bank", + "prefix": "pdb", + "sameas": "bioregistry.pdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wwpdb.org/pdb?id=$1" + }, + "bioregistry.pdb.n2t": { + "authority": "n2t", + "homepage": "https://www.pdb.org/", + "id": "bioregistry.pdb.n2t", + "name": "RCSB PDB", + "prefix": "pdb", + "sameas": "bioregistry.pdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.rcsb.org/pdb/explore/explore.do?structureId=$1" + }, + "bioregistry.pdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.pdbj.org/", + "id": "bioregistry.pdb.prefixcommons", + "name": "Protein Data Bank Japan", + "prefix": "pdbj", + "sameas": "bioregistry.pdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://service.pdbj.org/mine/Detail?PDBID=$1&PAGEID=Summary" + }, + "bioregistry.pdb.uniprot": { + "authority": "uniprot", + "homepage": "https://pdbj.org/", + "id": "bioregistry.pdb.uniprot", + "name": "Protein Data Bank Japan", + "prefix": "DB-0172", + "sameas": "bioregistry.pdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://pdbj.org/mine/summary/$1" + }, + "bioregistry.pdb.wikidata": { + "authority": "wikidata", + "homepage": "https://www.rcsb.org/", + "id": "bioregistry.pdb.wikidata", + "name": "PDB structure ID", + "prefix": "P638", + "sameas": "bioregistry.pdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.rcsb.org/structure/$1" + }, + "bioregistry.pdbsum": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pdbsum", + "name": "PDBsum; at-a-glance overview of macromolecular structures", + "prefix": "pdbsum", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/pdbsum/$1" + }, + "bioregistry.pdbsum.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/pdbsum", + "id": "bioregistry.pdbsum.prefixcommons", + "name": "PDBsum; at-a-glance overview of macromolecular structures", + "prefix": "pdbsum", + "sameas": "bioregistry.pdbsum", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/pdbsum/$1" + }, + "bioregistry.pdbsum.uniprot": { + "authority": "uniprot", + "homepage": "https://www.ebi.ac.uk/pdbsum/", + "id": "bioregistry.pdbsum.uniprot", + "name": "PDBsum; at-a-glance overview of macromolecular structures", + "prefix": "DB-0119", + "sameas": "bioregistry.pdbsum", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/pdbsum/$1" + }, + "bioregistry.ped": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ped", + "name": "Protein Ensemble Database", + "prefix": "ped", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://proteinensemble.org/$1" + }, + "bioregistry.ped.ensemble": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ped.ensemble", + "name": "Protein Ensemble Database ensemble", + "prefix": "ped.ensemble", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://proteinensemble.org/$1" + }, + "bioregistry.ped.ensemble.miriam": { + "authority": "miriam", + "homepage": "https://proteinensemble.org/", + "id": "bioregistry.ped.ensemble.miriam", + "name": "Protein Ensemble Database ensemble", + "prefix": "ped.ensemble", + "sameas": "bioregistry.ped.ensemble", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://proteinensemble.org/$1" + }, + "bioregistry.ped.miriam": { + "authority": "miriam", + "homepage": "https://proteinensemble.org/", + "id": "bioregistry.ped.miriam", + "name": "Protein Ensemble Database", + "prefix": "ped", + "sameas": "bioregistry.ped", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://proteinensemble.org/$1" + }, + "bioregistry.pennsieve": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pennsieve", + "name": "Pennsieve", + "prefix": "pennsieve", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://discover.pennsieve.io/package/$1" + }, + "bioregistry.pennsieve.miriam": { + "authority": "miriam", + "homepage": "https://discover.pennsieve.io", + "id": "bioregistry.pennsieve.miriam", + "name": "Pennsieve", + "prefix": "ps", + "sameas": "bioregistry.pennsieve", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://discover.pennsieve.io/package/$1" + }, + "bioregistry.pepbank": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pepbank", + "name": "PepBank Peptide Database", + "prefix": "pepbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://pepbank.mgh.harvard.edu/interactions/details/$1" + }, + "bioregistry.pepbank.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://pepbank.mgh.harvard.edu/", + "id": "bioregistry.pepbank.prefixcommons", + "name": "PepBank Peptide Database", + "prefix": "pepbank", + "sameas": "bioregistry.pepbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://pepbank.mgh.harvard.edu/interactions/details/$1" + }, + "bioregistry.peptideatlas": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.peptideatlas", + "name": "PeptideAtlas at ISB", + "prefix": "peptideatlas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "mass spectrometry" + ], + "uri_format": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/Summarize_Peptide?query=QUERY&searchForThis=$1" + }, + "bioregistry.peptideatlas.dataset": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.peptideatlas.dataset", + "name": "PeptideAtlas Dataset", + "prefix": "peptideatlas.dataset", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.peptideatlas.org/PASS/$1" + }, + "bioregistry.peptideatlas.dataset.miriam": { + "authority": "miriam", + "homepage": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/PASS_Summary", + "id": "bioregistry.peptideatlas.dataset.miriam", + "name": "PeptideAtlas Dataset", + "prefix": "peptideatlas.dataset", + "sameas": "bioregistry.peptideatlas.dataset", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.peptideatlas.org/PASS/$1" + }, + "bioregistry.peptideatlas.dataset.n2t": { + "authority": "n2t", + "homepage": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/PASS_Summary", + "id": "bioregistry.peptideatlas.dataset.n2t", + "name": "PeptideAtlas Dataset", + "prefix": "peptideatlas.dataset", + "sameas": "bioregistry.peptideatlas.dataset", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.peptideatlas.org/PASS/$1" + }, + "bioregistry.peptideatlas.miriam": { + "authority": "miriam", + "homepage": "http://www.peptideatlas.org/", + "id": "bioregistry.peptideatlas.miriam", + "name": "PeptideAtlas", + "prefix": "peptideatlas", + "sameas": "bioregistry.peptideatlas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/Summarize_Peptide?query=QUERY&searchForThis=$1" + }, + "bioregistry.peptideatlas.n2t": { + "authority": "n2t", + "homepage": "http://www.peptideatlas.org/", + "id": "bioregistry.peptideatlas.n2t", + "name": "PeptideAtlas at ISB", + "prefix": "peptideatlas", + "sameas": "bioregistry.peptideatlas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/Summarize_Peptide?query=QUERY&searchForThis=$1" + }, + "bioregistry.peptideatlas.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.peptideatlas.org", + "id": "bioregistry.peptideatlas.prefixcommons", + "name": "PeptideAtlas", + "prefix": "peptideatlas", + "sameas": "bioregistry.peptideatlas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "mass spectrometry" + ], + "uri_format": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/GetProtein?atlas_build_id=242&protein_name=$1&action=QUERY" + }, + "bioregistry.peptideatlas.uniprot": { + "authority": "uniprot", + "homepage": "http://www.peptideatlas.org", + "id": "bioregistry.peptideatlas.uniprot", + "name": "PeptideAtlas", + "prefix": "DB-0071", + "sameas": "bioregistry.peptideatlas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "mass spectrometry" + ], + "uri_format": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/Search?action=GO&search_key=$1" + }, + "bioregistry.perkinelmer": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.perkinelmer", + "name": "PerkinElmer cell line collection", + "prefix": "perkinelmer", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.perkinelmer.com/searchresult?searchName=$1" + }, + "bioregistry.perkinelmer.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.perkinelmer.com/", + "id": "bioregistry.perkinelmer.cellosaurus", + "name": "PerkinElmer cell line collection", + "prefix": "PerkinElmer", + "sameas": "bioregistry.perkinelmer", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.perkinelmer.com/searchresult?searchName=$1" + }, + "bioregistry.peroxibase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.peroxibase", + "name": "Peroxibase at University of Geneva", + "prefix": "peroxibase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://peroxibase.toulouse.inra.fr/listing.php?action=view&id=$1" + }, + "bioregistry.peroxibase.miriam": { + "authority": "miriam", + "homepage": "http://peroxibase.toulouse.inra.fr/", + "id": "bioregistry.peroxibase.miriam", + "name": "Peroxibase", + "prefix": "peroxibase", + "sameas": "bioregistry.peroxibase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://peroxibase.toulouse.inra.fr/browse/process/view_perox.php?id=$1" + }, + "bioregistry.peroxibase.n2t": { + "authority": "n2t", + "homepage": "http://peroxibase.toulouse.inra.fr/", + "id": "bioregistry.peroxibase.n2t", + "name": "Peroxibase at University of Geneva", + "prefix": "peroxibase", + "sameas": "bioregistry.peroxibase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://peroxibase.toulouse.inra.fr/browse/process/view_perox.php?id=$1" + }, + "bioregistry.peroxibase.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://peroxibase.toulouse.inra.fr/", + "id": "bioregistry.peroxibase.prefixcommons", + "name": "PeroxiBase, a peroxidase database", + "prefix": "peroxibase", + "sameas": "bioregistry.peroxibase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://peroxibase.toulouse.inra.fr/listing.php?action=view&id=$1" + }, + "bioregistry.peroxibase.uniprot": { + "authority": "uniprot", + "homepage": "http://peroxibase.toulouse.inra.fr/", + "id": "bioregistry.peroxibase.uniprot", + "name": "PeroxiBase, a peroxidase database", + "prefix": "DB-0072", + "sameas": "bioregistry.peroxibase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://peroxibase.toulouse.inra.fr/display_perox/view_perox/$1" + }, + "bioregistry.pfam": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pfam", + "name": "Pfam database of protein families", + "prefix": "pfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/interpro/entry/pfam/$1" + }, + "bioregistry.pfam.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/interpro/", + "id": "bioregistry.pfam.miriam", + "name": "Pfam", + "prefix": "pfam", + "sameas": "bioregistry.pfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/interpro/entry/pfam/$1" + }, + "bioregistry.pfam.n2t": { + "authority": "n2t", + "homepage": "https://pfam.xfam.org/", + "id": "bioregistry.pfam.n2t", + "name": "Pfam at EMBL-EBI", + "prefix": "pfam", + "sameas": "bioregistry.pfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pfam.xfam.org/family/$1" + }, + "bioregistry.pfam.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://pfam.sanger.ac.uk/", + "id": "bioregistry.pfam.prefixcommons", + "name": "Sanger Pfam Mirror", + "prefix": "pfam", + "sameas": "bioregistry.pfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://pfam.sanger.ac.uk/family?entry=$1" + }, + "bioregistry.pfam.uniprot": { + "authority": "uniprot", + "homepage": "http://pfam-legacy.xfam.org/", + "id": "bioregistry.pfam.uniprot", + "name": "Pfam protein domain database", + "prefix": "DB-0073", + "sameas": "bioregistry.pfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/interpro/entry/pfam/$1" + }, + "bioregistry.pfam.wikidata": { + "authority": "wikidata", + "homepage": "https://pfam.xfam.org/", + "id": "bioregistry.pfam.wikidata", + "name": "Pfam ID", + "prefix": "P3519", + "sameas": "bioregistry.pfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://pfam.xfam.org/family?acc=$1" + }, + "bioregistry.pgs": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pgs", + "name": "Polygenic Score Catalog", + "prefix": "pgs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.pgscatalog.org/pgs/$1/" + }, + "bioregistry.pgs.miriam": { + "authority": "miriam", + "homepage": "http://pgscatalog.org", + "id": "bioregistry.pgs.miriam", + "name": "Polygenic Score Catalog", + "prefix": "pgs", + "sameas": "bioregistry.pgs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.pgscatalog.org/pgs/$1/" + }, + "bioregistry.pgx": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pgx", + "name": "Cancer genome data @ progenetix.org", + "prefix": "pgx", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://progenetix.org/services/ids/$1" + }, + "bioregistry.pgx.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://progenetix.org/", + "id": "bioregistry.pgx.cellosaurus", + "name": "Cancer genome data @ progenetix.org", + "prefix": "Progenetix", + "sameas": "bioregistry.pgx", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://progenetix.org/biosamples/by-curie/cellosaurus:$1" + }, + "bioregistry.pgx.miriam": { + "authority": "miriam", + "homepage": "https://progenetix.org/", + "id": "bioregistry.pgx.miriam", + "name": "Progenetix", + "prefix": "pgx", + "sameas": "bioregistry.pgx", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://progenetix.org/services/ids/$1" + }, + "bioregistry.pgx.n2t": { + "authority": "n2t", + "homepage": "http://progenetix.org/", + "id": "bioregistry.pgx.n2t", + "name": "Progenetix", + "prefix": "pgx", + "sameas": "bioregistry.pgx", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://progenetix.org/pgx:$1" + }, + "bioregistry.pharmacodb.cell": { + "authority": "bioregistry", + "homepage": "https://pharmacodb.ca/cell_lines", + "id": "bioregistry.pharmacodb.cell", + "name": "PharmacoDB integrative pharmacogenomic database", + "prefix": "pharmacodb.cell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pharmacodb.ca/cell_lines/$1" + }, + "bioregistry.pharmacodb.cell.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://pharmacodb.ca/", + "id": "bioregistry.pharmacodb.cell.cellosaurus", + "name": "PharmacoDB integrative pharmacogenomic database", + "prefix": "PharmacoDB", + "sameas": "bioregistry.pharmacodb.cell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pharmacodb.ca/cell_lines/$1" + }, + "bioregistry.pharmgkb.disease": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pharmgkb.disease", + "name": "PharmGKB Disease at Stanford", + "prefix": "pharmgkb.disease", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.pharmgkb.org/disease/$1" + }, + "bioregistry.pharmgkb.disease.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.pharmgkb.disease.biolink", + "name": null, + "prefix": "PHARMGKB.DISEASE", + "sameas": "bioregistry.pharmgkb.disease", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.pharmgkb.org/disease/$1" + }, + "bioregistry.pharmgkb.disease.miriam": { + "authority": "miriam", + "homepage": "http://www.pharmgkb.org/", + "id": "bioregistry.pharmgkb.disease.miriam", + "name": "PharmGKB Disease", + "prefix": "pharmgkb.disease", + "sameas": "bioregistry.pharmgkb.disease", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pharmgkb.org/disease/$1" + }, + "bioregistry.pharmgkb.disease.n2t": { + "authority": "n2t", + "homepage": "http://www.pharmgkb.org/", + "id": "bioregistry.pharmgkb.disease.n2t", + "name": "PharmGKB Disease at Stanford", + "prefix": "pharmgkb.disease", + "sameas": "bioregistry.pharmgkb.disease", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pharmgkb.org/disease/$1" + }, + "bioregistry.pharmgkb.disease.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.pharmgkb.disease.prefixcommons", + "name": "PharmGKB Disease", + "prefix": "pharmgkb.disease", + "sameas": "bioregistry.pharmgkb.disease", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.pharmgkb.org/disease/$1" + }, + "bioregistry.pharmgkb.drug": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pharmgkb.drug", + "name": "PharmGKB Drug at Stanford", + "prefix": "pharmgkb.drug", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "pharmacology and pharmacy" + ], + "uri_format": "http://www.pharmgkb.org/drug/$1" + }, + "bioregistry.pharmgkb.drug.miriam": { + "authority": "miriam", + "homepage": "http://www.pharmgkb.org/", + "id": "bioregistry.pharmgkb.drug.miriam", + "name": "PharmGKB Drug", + "prefix": "pharmgkb.drug", + "sameas": "bioregistry.pharmgkb.drug", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pharmgkb.org/drug/$1" + }, + "bioregistry.pharmgkb.drug.n2t": { + "authority": "n2t", + "homepage": "http://www.pharmgkb.org/", + "id": "bioregistry.pharmgkb.drug.n2t", + "name": "PharmGKB Drug at Stanford", + "prefix": "pharmgkb.drug", + "sameas": "bioregistry.pharmgkb.drug", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pharmgkb.org/drug/$1" + }, + "bioregistry.pharmgkb.drug.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.pharmgkb.drug.prefixcommons", + "name": "PharmGKB Drug", + "prefix": "pharmgkb.drug", + "sameas": "bioregistry.pharmgkb.drug", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "pharmacology and pharmacy" + ], + "uri_format": "http://www.pharmgkb.org/drug/$1" + }, + "bioregistry.pharmgkb.gene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pharmgkb.gene", + "name": "The Pharmacogenetics and Pharmacogenomics Knowledge Base", + "prefix": "pharmgkb.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.pharmgkb.org/gene/$1" + }, + "bioregistry.pharmgkb.gene.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.pharmgkb.gene.biolink", + "name": null, + "prefix": "PHARMGKB.GENE", + "sameas": "bioregistry.pharmgkb.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.pharmgkb.org/gene/$1" + }, + "bioregistry.pharmgkb.gene.go": { + "authority": "go", + "homepage": "https://www.pharmgkb.org", + "id": "bioregistry.pharmgkb.gene.go", + "name": "Pharmacogenetics and Pharmacogenomics Knowledge Base", + "prefix": "PharmGKB", + "sameas": "bioregistry.pharmgkb.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.pharmgkb.org/do/serve?objId=$1" + }, + "bioregistry.pharmgkb.gene.miriam": { + "authority": "miriam", + "homepage": "http://www.pharmgkb.org/", + "id": "bioregistry.pharmgkb.gene.miriam", + "name": "PharmGKB Gene", + "prefix": "pharmgkb.gene", + "sameas": "bioregistry.pharmgkb.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pharmgkb.org/gene/$1" + }, + "bioregistry.pharmgkb.gene.n2t": { + "authority": "n2t", + "homepage": "http://www.pharmgkb.org/", + "id": "bioregistry.pharmgkb.gene.n2t", + "name": "PharmGKB Gene at Stanford", + "prefix": "pharmgkb.gene", + "sameas": "bioregistry.pharmgkb.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pharmgkb.org/gene/$1" + }, + "bioregistry.pharmgkb.gene.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.pharmgkb.gene.prefixcommons", + "name": "PharmGKB Gene", + "prefix": "pharmgkb.gene", + "sameas": "bioregistry.pharmgkb.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.pharmgkb.org/gene/$1" + }, + "bioregistry.pharmgkb.gene.uniprot": { + "authority": "uniprot", + "homepage": "https://www.pharmgkb.org/", + "id": "bioregistry.pharmgkb.gene.uniprot", + "name": "The Pharmacogenetics and Pharmacogenomics Knowledge Base", + "prefix": "DB-0074", + "sameas": "bioregistry.pharmgkb.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.pharmgkb.org/gene/$1" + }, + "bioregistry.pharmgkb.pathways": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pharmgkb.pathways", + "name": "Pathway ID (PharmGKB)", + "prefix": "pharmgkb.pathways", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.pharmgkb.org/pathway/$1" + }, + "bioregistry.pharmgkb.pathways.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.pharmgkb.pathways.biolink", + "name": null, + "prefix": "PHARMGKB.PATHWAYS", + "sameas": "bioregistry.pharmgkb.pathways", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.pharmgkb.org/pathway/$1" + }, + "bioregistry.pharmgkb.pathways.miriam": { + "authority": "miriam", + "homepage": "http://www.pharmgkb.org/", + "id": "bioregistry.pharmgkb.pathways.miriam", + "name": "PharmGKB Pathways", + "prefix": "pharmgkb.pathways", + "sameas": "bioregistry.pharmgkb.pathways", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pharmgkb.org/pathway/$1" + }, + "bioregistry.pharmgkb.pathways.n2t": { + "authority": "n2t", + "homepage": "http://www.pharmgkb.org/", + "id": "bioregistry.pharmgkb.pathways.n2t", + "name": "PharmGKB at Stanford", + "prefix": "pharmgkb.pathways", + "sameas": "bioregistry.pharmgkb.pathways", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pharmgkb.org/pathway/$1" + }, + "bioregistry.pharmgkb.pathways.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.pharmgkb.pathways.prefixcommons", + "name": "PharmGKB Pathways", + "prefix": "pharmgkb.pathways", + "sameas": "bioregistry.pharmgkb.pathways", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.pharmgkb.org/pathway/$1" + }, + "bioregistry.pharmgkb.pathways.wikidata": { + "authority": "wikidata", + "homepage": "https://www.pharmgkb.org/", + "id": "bioregistry.pharmgkb.pathways.wikidata", + "name": "PharmGKB ID", + "prefix": "P7001", + "sameas": "bioregistry.pharmgkb.pathways", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.pharmgkb.org/accession/$1" + }, + "bioregistry.pharmvar": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pharmvar", + "name": "Pharmacogene Variation Consortium", + "prefix": "pharmvar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.pharmvar.org/gene/$1" + }, + "bioregistry.pharmvar.prefixcommons": { + "authority": "prefixcommons", + "homepage": "https://www.pharmvar.org", + "id": "bioregistry.pharmvar.prefixcommons", + "name": "PharmVar", + "prefix": "pharmvar", + "sameas": "bioregistry.pharmvar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.pharmvar.org/gene/$1" + }, + "bioregistry.phenolexplorer": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.phenolexplorer", + "name": "Phenol-Explorer Database on Phenol content of foods", + "prefix": "phenolexplorer", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://phenol-explorer.eu/foods/$1" + }, + "bioregistry.phenolexplorer.miriam": { + "authority": "miriam", + "homepage": "http://www.phenol-explorer.eu/foods/", + "id": "bioregistry.phenolexplorer.miriam", + "name": "Phenol-Explorer", + "prefix": "phenolexplorer", + "sameas": "bioregistry.phenolexplorer", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://phenol-explorer.eu/foods/$1" + }, + "bioregistry.phenolexplorer.n2t": { + "authority": "n2t", + "homepage": "http://www.phenol-explorer.eu/foods/", + "id": "bioregistry.phenolexplorer.n2t", + "name": "Phenol-Explorer Database on Phenol content of foods", + "prefix": "phenolexplorer", + "sameas": "bioregistry.phenolexplorer", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://phenol-explorer.eu/foods/$1" + }, + "bioregistry.phosphopoint.kinase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.phosphopoint.kinase", + "name": "PhosphoPoint Kinase at National Taiwan University", + "prefix": "phosphopoint.kinase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://kinase.bioinformatics.tw/showall.jsp?type=Kinase&info=Gene&name=$1&drawing=0&sorting=0&kinome=1" + }, + "bioregistry.phosphopoint.kinase.miriam": { + "authority": "miriam", + "homepage": "http://kinase.bioinformatics.tw/", + "id": "bioregistry.phosphopoint.kinase.miriam", + "name": "PhosphoPoint Kinase", + "prefix": "phosphopoint.kinase", + "sameas": "bioregistry.phosphopoint.kinase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://kinase.bioinformatics.tw/showall.jsp?type=Kinase&info=Gene&name=$1&drawing=0&sorting=0&kinome=1" + }, + "bioregistry.phosphopoint.kinase.n2t": { + "authority": "n2t", + "homepage": "http://kinase.bioinformatics.tw/", + "id": "bioregistry.phosphopoint.kinase.n2t", + "name": "PhosphoPoint Kinase at National Taiwan University", + "prefix": "phosphopoint.kinase", + "sameas": "bioregistry.phosphopoint.kinase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://kinase.bioinformatics.tw/showall.jsp?type=Kinase&info=Gene&name=$1&drawing=0&sorting=0&kinome=1" + }, + "bioregistry.phosphopoint.protein": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.phosphopoint.protein", + "name": "PhosphoPoint Phosphoprotein at National Taiwan University", + "prefix": "phosphopoint.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://kinase.bioinformatics.tw/showall.jsp?type=PhosphoProtein&info=Gene&name=$1&drawing=0&sorting=0&kinome=0" + }, + "bioregistry.phosphopoint.protein.miriam": { + "authority": "miriam", + "homepage": "http://kinase.bioinformatics.tw/", + "id": "bioregistry.phosphopoint.protein.miriam", + "name": "PhosphoPoint Phosphoprotein", + "prefix": "phosphopoint.protein", + "sameas": "bioregistry.phosphopoint.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://kinase.bioinformatics.tw/showall.jsp?type=PhosphoProtein&info=Gene&name=$1&drawing=0&sorting=0&kinome=0" + }, + "bioregistry.phosphopoint.protein.n2t": { + "authority": "n2t", + "homepage": "http://kinase.bioinformatics.tw/", + "id": "bioregistry.phosphopoint.protein.n2t", + "name": "PhosphoPoint Phosphoprotein at National Taiwan University", + "prefix": "phosphopoint.protein", + "sameas": "bioregistry.phosphopoint.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://kinase.bioinformatics.tw/showall.jsp?type=PhosphoProtein&info=Gene&name=$1&drawing=0&sorting=0&kinome=0" + }, + "bioregistry.phosphosite.protein": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.phosphosite.protein", + "name": "PhosphoSite Protein", + "prefix": "phosphosite.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.phosphosite.org/proteinAction.do?id=$1" + }, + "bioregistry.phosphosite.protein.miriam": { + "authority": "miriam", + "homepage": "http://www.phosphosite.org/homeAction.do", + "id": "bioregistry.phosphosite.protein.miriam", + "name": "PhosphoSite Protein", + "prefix": "phosphosite.protein", + "sameas": "bioregistry.phosphosite.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.phosphosite.org/proteinAction.do?id=$1" + }, + "bioregistry.phosphosite.protein.n2t": { + "authority": "n2t", + "homepage": "http://www.phosphosite.org/homeAction.do", + "id": "bioregistry.phosphosite.protein.n2t", + "name": "PhosphoSite", + "prefix": "phosphosite.protein", + "sameas": "bioregistry.phosphosite.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.phosphosite.org/proteinAction.do?id=$1" + }, + "bioregistry.phosphosite.residue": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.phosphosite.residue", + "name": "PhosphoSite Residue", + "prefix": "phosphosite.residue", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.phosphosite.org/siteAction.do?id=$1" + }, + "bioregistry.phosphosite.residue.miriam": { + "authority": "miriam", + "homepage": "http://www.phosphosite.org/homeAction.do", + "id": "bioregistry.phosphosite.residue.miriam", + "name": "PhosphoSite Residue", + "prefix": "phosphosite.residue", + "sameas": "bioregistry.phosphosite.residue", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.phosphosite.org/siteAction.do?id=$1" + }, + "bioregistry.phosphosite.residue.n2t": { + "authority": "n2t", + "homepage": "http://www.phosphosite.org/homeAction.do", + "id": "bioregistry.phosphosite.residue.n2t", + "name": "PhosphoSite Residue", + "prefix": "phosphosite.residue", + "sameas": "bioregistry.phosphosite.residue", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.phosphosite.org/siteAction.do?id=$1" + }, + "bioregistry.phylomedb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.phylomedb", + "name": "PhylomeDB at Centro de Investigación Príncipe Felipe", + "prefix": "phylomedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://phylomedb.org/search_phylome/?seqid=$1" + }, + "bioregistry.phylomedb.miriam": { + "authority": "miriam", + "homepage": "http://phylomedb.org/", + "id": "bioregistry.phylomedb.miriam", + "name": "PhylomeDB", + "prefix": "phylomedb", + "sameas": "bioregistry.phylomedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://phylomedb.org/?seqid=$1" + }, + "bioregistry.phylomedb.n2t": { + "authority": "n2t", + "homepage": "http://phylomedb.org/", + "id": "bioregistry.phylomedb.n2t", + "name": "PhylomeDB at Centro de Investigación Príncipe Felipe", + "prefix": "phylomedb", + "sameas": "bioregistry.phylomedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://phylomedb.org/?seqid=$1" + }, + "bioregistry.phylomedb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://phylomedb.bioinfo.cipf.es", + "id": "bioregistry.phylomedb.prefixcommons", + "name": "Database for complete collections of gene phylogenies", + "prefix": "phylomedb", + "sameas": "bioregistry.phylomedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://phylomedb.org/?seqid=$1" + }, + "bioregistry.phylomedb.uniprot": { + "authority": "uniprot", + "homepage": "http://phylomedb.org/", + "id": "bioregistry.phylomedb.uniprot", + "name": "Database for complete collections of gene phylogenies", + "prefix": "DB-0144", + "sameas": "bioregistry.phylomedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://phylomedb.org/search_phylome/?seqid=$1" + }, + "bioregistry.phytozome.locus": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.phytozome.locus", + "name": "Phytozome Locus at Joint Genome Institute", + "prefix": "phytozome.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.phytozome.net/genePage.php?crown&method=0&search=1&detail=1&searchText=locusname:$1" + }, + "bioregistry.phytozome.locus.miriam": { + "authority": "miriam", + "homepage": "http://www.phytozome.net/", + "id": "bioregistry.phytozome.locus.miriam", + "name": "Phytozome Locus", + "prefix": "phytozome.locus", + "sameas": "bioregistry.phytozome.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.phytozome.net/genePage.php?crown&method=0&search=1&detail=1&searchText=locusname:$1" + }, + "bioregistry.phytozome.locus.n2t": { + "authority": "n2t", + "homepage": "http://www.phytozome.net/", + "id": "bioregistry.phytozome.locus.n2t", + "name": "Phytozome Locus at Joint Genome Institute", + "prefix": "phytozome.locus", + "sameas": "bioregistry.phytozome.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.phytozome.net/genePage.php?crown&method=0&search=1&detail=1&searchText=locusname:$1" + }, + "bioregistry.pibase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pibase", + "name": "PIBASE: a database of structurally defined protein interfaces", + "prefix": "pibase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://modbase.compbio.ucsf.edu/pibase-cgi/get_details.pl?object_type=complexes&bdp_id=$1" + }, + "bioregistry.pibase.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://salilab.org/pibase", + "id": "bioregistry.pibase.prefixcommons", + "name": "PIBASE: a database of structurally defined protein interfaces", + "prefix": "pibase", + "sameas": "bioregistry.pibase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://modbase.compbio.ucsf.edu/pibase-cgi/get_details.pl?object_type=complexes&bdp_id=$1" + }, + "bioregistry.pid.pathway": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pid.pathway", + "name": "NCI Pathway Interaction Database (Pathway)", + "prefix": "pid.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://pid.nci.nih.gov/search/pathway_landing.shtml?what=graphic&jpg=on&pathway_id=$1" + }, + "bioregistry.pid.pathway.miriam": { + "authority": "miriam", + "homepage": "http://pid.nci.nih.gov/", + "id": "bioregistry.pid.pathway.miriam", + "name": "NCI Pathway Interaction Database: Pathway", + "prefix": "pid.pathway", + "sameas": "bioregistry.pid.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pid.nci.nih.gov/search/pathway_landing.shtml?what=graphic&jpg=on&pathway_id=$1" + }, + "bioregistry.pid.pathway.n2t": { + "authority": "n2t", + "homepage": "http://pid.nci.nih.gov/", + "id": "bioregistry.pid.pathway.n2t", + "name": "NCI Pathway Interaction Database (Pathway)", + "prefix": "pid.pathway", + "sameas": "bioregistry.pid.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pid.nci.nih.gov/search/pathway_landing.shtml?what=graphic&jpg=on&pathway_id=$1" + }, + "bioregistry.pid.pathway.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://pid.nci.nih.gov/", + "id": "bioregistry.pid.pathway.prefixcommons", + "name": "Pathway Interaction Database", + "prefix": "pid", + "sameas": "bioregistry.pid.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://pid.nci.nih.gov/search/pathway_landing.shtml?what=graphic&jpg=on&pathway_id=$1" + }, + "bioregistry.pigqtldb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pigqtldb", + "name": "Animal QTL Pig at Iowa State University", + "prefix": "pigqtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1" + }, + "bioregistry.pigqtldb.miriam": { + "authority": "miriam", + "homepage": "https://www.animalgenome.org/QTLdb", + "id": "bioregistry.pigqtldb.miriam", + "name": "Animal Genome Pig QTL", + "prefix": "pigqtldb", + "sameas": "bioregistry.pigqtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1" + }, + "bioregistry.pigqtldb.n2t": { + "authority": "n2t", + "homepage": "http://www.animalgenome.org/cgi-bin/QTLdb/SS/index", + "id": "bioregistry.pigqtldb.n2t", + "name": "Animal QTL Pig at Iowa State University", + "prefix": "pigqtldb", + "sameas": "bioregistry.pigqtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.animalgenome.org/cgi-bin/QTLdb/SS/qdetails?QTL_ID=$1" + }, + "bioregistry.pigqtldb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.animalgenome.org/cgi-bin/QTLdb/SS/index", + "id": "bioregistry.pigqtldb.prefixcommons", + "name": "Pig Quantitative Trait Locus database", + "prefix": "pigqtldb", + "sameas": "bioregistry.pigqtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.animalgenome.org/cgi-bin/QTLdb/SS/qdetails?QTL_ID=$1" + }, + "bioregistry.pina": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pina", + "name": "Protein Interaction Network Analysis (PINA) at Garvan Institute", + "prefix": "pina", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cbg.garvan.unsw.edu.au/pina/interactome.oneP.do?ac=$1&showExtend=null" + }, + "bioregistry.pina.miriam": { + "authority": "miriam", + "homepage": "http://cbg.garvan.unsw.edu.au/pina/", + "id": "bioregistry.pina.miriam", + "name": "PINA", + "prefix": "pina", + "sameas": "bioregistry.pina", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cbg.garvan.unsw.edu.au/pina/interactome.oneP.do?ac=$1&showExtend=null" + }, + "bioregistry.pina.n2t": { + "authority": "n2t", + "homepage": "http://cbg.garvan.unsw.edu.au/pina/", + "id": "bioregistry.pina.n2t", + "name": "Protein Interaction Network Analysis (PINA) at Garvan Institute", + "prefix": "pina", + "sameas": "bioregistry.pina", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cbg.garvan.unsw.edu.au/pina/interactome.oneP.do?ac=$1&showExtend=null" + }, + "bioregistry.piroplasma": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.piroplasma", + "name": "PiroplasmaBD at EuPathDB", + "prefix": "piroplasma", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://piroplasmadb.org/piro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.piroplasma.miriam": { + "authority": "miriam", + "homepage": "http://piroplasmadb.org/", + "id": "bioregistry.piroplasma.miriam", + "name": "PiroplasmaDB", + "prefix": "piroplasma", + "sameas": "bioregistry.piroplasma", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://piroplasmadb.org/piro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.piroplasma.n2t": { + "authority": "n2t", + "homepage": "http://piroplasmadb.org/", + "id": "bioregistry.piroplasma.n2t", + "name": "PiroplasmaBD at EuPathDB", + "prefix": "piroplasma", + "sameas": "bioregistry.piroplasma", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://piroplasmadb.org/piro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.pirsf": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pirsf", + "name": "PIRSF; a whole-protein classification database", + "prefix": "pirsf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://proteininformationresource.org/cgi-bin/ipcSF?id=$1" + }, + "bioregistry.pirsf.go": { + "authority": "go", + "homepage": "http://pir.georgetown.edu/pirsf/", + "id": "bioregistry.pirsf.go", + "name": "PIR Superfamily Classification System", + "prefix": "PIRSF", + "sameas": "bioregistry.pirsf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://pir.georgetown.edu/cgi-bin/ipcSF?id=$1" + }, + "bioregistry.pirsf.miriam": { + "authority": "miriam", + "homepage": "https://pir.georgetown.edu/", + "id": "bioregistry.pirsf.miriam", + "name": "PIRSF", + "prefix": "pirsf", + "sameas": "bioregistry.pirsf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pir.georgetown.edu/cgi-bin/ipcSF?id=$1" + }, + "bioregistry.pirsf.n2t": { + "authority": "n2t", + "homepage": "https://pir.georgetown.edu/", + "id": "bioregistry.pirsf.n2t", + "name": "PIRSF", + "prefix": "pirsf", + "sameas": "bioregistry.pirsf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pir.georgetown.edu/cgi-bin/ipcSF?id=$1" + }, + "bioregistry.pirsf.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://pir.georgetown.edu/pirsf/", + "id": "bioregistry.pirsf.prefixcommons", + "name": "PIRSF; a whole-protein classification database", + "prefix": "pirsf", + "sameas": "bioregistry.pirsf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://pir.georgetown.edu/cgi-bin/ipcSF?id=$1" + }, + "bioregistry.pirsf.uniprot": { + "authority": "uniprot", + "homepage": "https://proteininformationresource.org/pirwww/dbinfo/pirsf.shtml", + "id": "bioregistry.pirsf.uniprot", + "name": "PIRSF; a whole-protein classification database", + "prefix": "DB-0079", + "sameas": "bioregistry.pirsf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://proteininformationresource.org/cgi-bin/ipcSF?id=$1" + }, + "bioregistry.pkdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pkdb", + "name": "Pharmacokinetics Database", + "prefix": "pkdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pk-db.com/data/$1" + }, + "bioregistry.pkdb.miriam": { + "authority": "miriam", + "homepage": "https://www.hu-berlin.de/?set_language=en&cl=en", + "id": "bioregistry.pkdb.miriam", + "name": "PK-DB", + "prefix": "pkdb", + "sameas": "bioregistry.pkdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pk-db.com/data/$1" + }, + "bioregistry.planttfdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.planttfdb", + "name": "Plant Transcription Factor Database", + "prefix": "planttfdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://planttfdb.cbi.pku.edu.cn/tf.php?uid=$1" + }, + "bioregistry.planttfdb.miriam": { + "authority": "miriam", + "homepage": "http://planttfdb.cbi.pku.edu.cn", + "id": "bioregistry.planttfdb.miriam", + "name": "Plant Transcription Factor Database", + "prefix": "planttfdb", + "sameas": "bioregistry.planttfdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://planttfdb.cbi.pku.edu.cn/tf.php?uid=$1" + }, + "bioregistry.planttfdb.n2t": { + "authority": "n2t", + "homepage": "http://planttfdb.cbi.pku.edu.cn", + "id": "bioregistry.planttfdb.n2t", + "name": "PlantTFDB at Peking University", + "prefix": "planttfdb", + "sameas": "bioregistry.planttfdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://planttfdb.cbi.pku.edu.cn/tf.php?uid=$1" + }, + "bioregistry.planttfdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://planttfdb.cbi.pku.edu.cn", + "id": "bioregistry.planttfdb.prefixcommons", + "name": "Plant Transcription Factor Database", + "prefix": "planttfdb", + "sameas": "bioregistry.planttfdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://planttfdb.cbi.pku.edu.cn/tf.php?sp=[?species_name]&did=$1" + }, + "bioregistry.plasmodb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.plasmodb", + "name": "Plasmodium Genome Resources", + "prefix": "plasmodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://plasmodb.org/plasmo/app/record/gene/$1" + }, + "bioregistry.plasmodb.go": { + "authority": "go", + "homepage": "https://plasmodb.org", + "id": "bioregistry.plasmodb.go", + "name": "PlasmoDB", + "prefix": "PlasmoDB", + "sameas": "bioregistry.plasmodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://plasmodb.org/plasmo/app/record/gene/$1" + }, + "bioregistry.plasmodb.miriam": { + "authority": "miriam", + "homepage": "http://plasmodb.org/plasmo/", + "id": "bioregistry.plasmodb.miriam", + "name": "PlasmoDB", + "prefix": "plasmodb", + "sameas": "bioregistry.plasmodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://plasmodb.org/plasmo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.plasmodb.n2t": { + "authority": "n2t", + "homepage": "http://plasmodb.org/plasmo/", + "id": "bioregistry.plasmodb.n2t", + "name": "PlasmoDB at EuPathDB", + "prefix": "plasmodb", + "sameas": "bioregistry.plasmodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://plasmodb.org/plasmo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.plasmodb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://PlasmoDB.org", + "id": "bioregistry.plasmodb.prefixcommons", + "name": "PlasmoDB", + "prefix": "plasmodb", + "sameas": "bioregistry.plasmodb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://plasmodb.org/plasmo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1&project_id=PlasmoDB" + }, + "bioregistry.pmap.cutdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pmap.cutdb", + "name": "CutDB at The Burnham Institute for Medical Research", + "prefix": "pmap.cutdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.proteolysis.org/proteases/m_summarypg/$1" + }, + "bioregistry.pmap.cutdb.miriam": { + "authority": "miriam", + "homepage": "http://cutdb.burnham.org", + "id": "bioregistry.pmap.cutdb.miriam", + "name": "CutDB", + "prefix": "pmap.cutdb", + "sameas": "bioregistry.pmap.cutdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cutdb.burnham.org/relation/show/$1" + }, + "bioregistry.pmap.cutdb.n2t": { + "authority": "n2t", + "homepage": "http://cutdb.burnham.org", + "id": "bioregistry.pmap.cutdb.n2t", + "name": "CutDB at The Burnham Institute for Medical Research", + "prefix": "pmap.cutdb", + "sameas": "bioregistry.pmap.cutdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cutdb.burnham.org/relation/show/$1" + }, + "bioregistry.pmap.cutdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.proteolysis.org/", + "id": "bioregistry.pmap.cutdb.prefixcommons", + "name": "CutDB - Proteolytic event database", + "prefix": "pmap.cutdb", + "sameas": "bioregistry.pmap.cutdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.proteolysis.org/proteases/m_summarypg/$1" + }, + "bioregistry.pmap.substratedb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pmap.substratedb", + "name": "SubstrateDB at The Burnham Institute for Medical Research", + "prefix": "pmap.substratedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://substrate.burnham.org/protein/annotation/$1/html" + }, + "bioregistry.pmap.substratedb.miriam": { + "authority": "miriam", + "homepage": "http://substrate.burnham.org/", + "id": "bioregistry.pmap.substratedb.miriam", + "name": "SubstrateDB", + "prefix": "pmap.substratedb", + "sameas": "bioregistry.pmap.substratedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://substrate.burnham.org/protein/annotation/$1/html" + }, + "bioregistry.pmap.substratedb.n2t": { + "authority": "n2t", + "homepage": "http://substrate.burnham.org/", + "id": "bioregistry.pmap.substratedb.n2t", + "name": "SubstrateDB at The Burnham Institute for Medical Research", + "prefix": "pmap.substratedb", + "sameas": "bioregistry.pmap.substratedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://substrate.burnham.org/protein/annotation/$1/html" + }, + "bioregistry.pmap.substratedb.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.pmap.substratedb.prefixcommons", + "name": "SubstrateDB - Protease substrates", + "prefix": "pmap.substratedb", + "sameas": "bioregistry.pmap.substratedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://substrate.burnham.org/protein/annotation/$1/html" + }, + "bioregistry.pmc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pmc", + "name": "PMC International", + "prefix": "pmc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/pmc/articles/$1" + }, + "bioregistry.pmc.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.pmc.biocontext", + "name": null, + "prefix": "PMCID", + "sameas": "bioregistry.pmc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/pmc/$1" + }, + "bioregistry.pmc.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.pmc.biolink", + "name": null, + "prefix": "PMC", + "sameas": "bioregistry.pmc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "http://europepmc.org/articles/PMC$1" + }, + "bioregistry.pmc.go": { + "authority": "go", + "homepage": "https://www.ncbi.nlm.nih.gov/pmc/", + "id": "bioregistry.pmc.go", + "name": "Pubmed Central", + "prefix": "PMCID", + "sameas": "bioregistry.pmc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/pmc/articles/$1" + }, + "bioregistry.pmc.miriam": { + "authority": "miriam", + "homepage": "http://europepmc.org/", + "id": "bioregistry.pmc.miriam", + "name": "PMC International", + "prefix": "pmc", + "sameas": "bioregistry.pmc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://europepmc.org/articles/$1" + }, + "bioregistry.pmc.n2t": { + "authority": "n2t", + "homepage": "http://europepmc.org/", + "id": "bioregistry.pmc.n2t", + "name": "Europe PMC", + "prefix": "pmc", + "sameas": "bioregistry.pmc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://europepmc.org/articles/$1" + }, + "bioregistry.pmc.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.pubmedcentral.nih.gov/", + "id": "bioregistry.pmc.prefixcommons", + "name": "Pubmed Central", + "prefix": "pmc", + "sameas": "bioregistry.pmc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/pmc/articles/$1/?tool=pmcentrez" + }, + "bioregistry.pmc.wikidata": { + "authority": "wikidata", + "homepage": "https://www.ncbi.nlm.nih.gov/pmc/", + "id": "bioregistry.pmc.wikidata", + "name": "PMCID", + "prefix": "P932", + "sameas": "bioregistry.pmc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "http://europepmc.org/articles/PMC$1" + }, + "bioregistry.pmdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pmdb", + "name": "Protein Model Database at University of Rome", + "prefix": "pmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://bioinformatics.cineca.it/PMDB/user//search.php?idsearch=$1" + }, + "bioregistry.pmdb.miriam": { + "authority": "miriam", + "homepage": "https://bioinformatics.cineca.it/PMDB/", + "id": "bioregistry.pmdb.miriam", + "name": "Protein Model Database", + "prefix": "pmdb", + "sameas": "bioregistry.pmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bioinformatics.cineca.it/PMDB/user//search.php?idsearch=$1" + }, + "bioregistry.pmdb.n2t": { + "authority": "n2t", + "homepage": "https://bioinformatics.cineca.it/PMDB/", + "id": "bioregistry.pmdb.n2t", + "name": "Protein Model Database at University of Rome", + "prefix": "pmdb", + "sameas": "bioregistry.pmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://bioinformatics.cineca.it/PMDB/user//search.php?idsearch=$1" + }, + "bioregistry.pmdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.caspur.it/PMDB/", + "id": "bioregistry.pmdb.prefixcommons", + "name": "Protein Model Database", + "prefix": "pmdb", + "sameas": "bioregistry.pmdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://mi.caspur.it/PMDB/user/search.php?idsearch=$1" + }, + "bioregistry.pmp": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pmp", + "name": "PMP at University of Basel", + "prefix": "pmp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.proteinmodelportal.org/query/uniprot/$1" + }, + "bioregistry.pmp.n2t": { + "authority": "n2t", + "homepage": "http://www.proteinmodelportal.org/", + "id": "bioregistry.pmp.n2t", + "name": "PMP at University of Basel", + "prefix": "pmp", + "sameas": "bioregistry.pmp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.proteinmodelportal.org/query/uniprot/$1" + }, + "bioregistry.pmp.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.proteinmodelportal.org/", + "id": "bioregistry.pmp.prefixcommons", + "name": "Protein Model Portal", + "prefix": "pmp", + "sameas": "bioregistry.pmp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.proteinmodelportal.org/query/uniprot/$1" + }, + "bioregistry.pmr": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pmr", + "name": "Physical Medicine and Rehabilitation", + "prefix": "pmr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://models.physiomeproject.org/exposure/$1" + }, + "bioregistry.pmr.miriam": { + "authority": "miriam", + "homepage": "https://www.auckland.ac.nz/en.html", + "id": "bioregistry.pmr.miriam", + "name": "Physiome Model Repository", + "prefix": "pmr", + "sameas": "bioregistry.pmr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://models.physiomeproject.org/exposure/$1" + }, + "bioregistry.pmr.workspace": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pmr.workspace", + "name": "Physiome Model Repository workspace", + "prefix": "pmr.workspace", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://models.physiomeproject.org/workspace/$1" + }, + "bioregistry.pmr.workspace.miriam": { + "authority": "miriam", + "homepage": "https://www.auckland.ac.nz/en.html", + "id": "bioregistry.pmr.workspace.miriam", + "name": "Physiome Model Repository workspace", + "prefix": "pmr.workspace", + "sameas": "bioregistry.pmr.workspace", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://models.physiomeproject.org/workspace/$1" + }, + "bioregistry.po": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.po", + "name": "Plant Ontology through BioPortal", + "prefix": "po", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.plantontology.org/amigo/go.cgi?view=details&search_constraint=terms&depth=0&query=$1" + }, + "bioregistry.po.miriam": { + "authority": "miriam", + "homepage": "http://www.plantontology.org/", + "id": "bioregistry.po.miriam", + "name": "Plant Ontology", + "prefix": "po", + "sameas": "bioregistry.po", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.plantontology.org/amigo/go.cgi?view=details&query=PO:$1" + }, + "bioregistry.po.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/PO", + "id": "bioregistry.po.n2t", + "name": "Plant Ontology through BioPortal", + "prefix": "po", + "sameas": "bioregistry.po", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/PO/PO:$1" + }, + "bioregistry.po.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.plantontology.org/", + "id": "bioregistry.po.prefixcommons", + "name": "Plant Ontology", + "prefix": "po", + "sameas": "bioregistry.po", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.plantontology.org/amigo/go.cgi?view=details&search_constraint=terms&depth=0&query=$1" + }, + "bioregistry.pocketome": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pocketome", + "name": "Pocketome: an encyclopedia of small-molecule binding sites in 4D", + "prefix": "pocketome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pocketome.org/files/$1.html" + }, + "bioregistry.pocketome.miriam": { + "authority": "miriam", + "homepage": "http://www.pocketome.org/sfSearch.cgi?act=browseall", + "id": "bioregistry.pocketome.miriam", + "name": "Pocketome", + "prefix": "pocketome", + "sameas": "bioregistry.pocketome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pocketome.org/files/$1.html" + }, + "bioregistry.pocketome.n2t": { + "authority": "n2t", + "homepage": "http://www.pocketome.org/sfSearch.cgi?act=browseall", + "id": "bioregistry.pocketome.n2t", + "name": "Pocketome at UCSD Skaggs School", + "prefix": "pocketome", + "sameas": "bioregistry.pocketome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pocketome.org/files/$1.html" + }, + "bioregistry.polbase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.polbase", + "name": "PolBase at New England BioLabs", + "prefix": "polbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://polbase.neb.com/polymerases/$1#sequences" + }, + "bioregistry.polbase.miriam": { + "authority": "miriam", + "homepage": "http://polbase.neb.com/", + "id": "bioregistry.polbase.miriam", + "name": "PolBase", + "prefix": "polbase", + "sameas": "bioregistry.polbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://polbase.neb.com/polymerases/$1#sequences" + }, + "bioregistry.polbase.n2t": { + "authority": "n2t", + "homepage": "http://polbase.neb.com/", + "id": "bioregistry.polbase.n2t", + "name": "PolBase at New England BioLabs", + "prefix": "polbase", + "sameas": "bioregistry.polbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://polbase.neb.com/polymerases/$1#sequences" + }, + "bioregistry.pombase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pombase", + "name": "Database of Structural and Functional Data for Schizosaccaromyces pombe", + "prefix": "pombase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.pombase.org/spombe/result/$1" + }, + "bioregistry.pombase.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.pombase.biocontext", + "name": null, + "prefix": "PomBase", + "sameas": "bioregistry.pombase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.pombase.org/spombe/result/$1" + }, + "bioregistry.pombase.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.pombase.biolink", + "name": null, + "prefix": "PomBase", + "sameas": "bioregistry.pombase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.pombase.org/gene/$1" + }, + "bioregistry.pombase.go": { + "authority": "go", + "homepage": "https://www.pombase.org/", + "id": "bioregistry.pombase.go", + "name": "PomBase", + "prefix": "PomBase", + "sameas": "bioregistry.pombase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.pombase.org/gene/$1" + }, + "bioregistry.pombase.miriam": { + "authority": "miriam", + "homepage": "https://www.pombase.org/", + "id": "bioregistry.pombase.miriam", + "name": "PomBase", + "prefix": "pombase", + "sameas": "bioregistry.pombase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.pombase.org/gene/$1" + }, + "bioregistry.pombase.n2t": { + "authority": "n2t", + "homepage": "http://www.pombase.org/", + "id": "bioregistry.pombase.n2t", + "name": "PomBase at University of Cambridge", + "prefix": "pombase", + "sameas": "bioregistry.pombase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pombase.org/spombe/result/$1" + }, + "bioregistry.pombase.uniprot": { + "authority": "uniprot", + "homepage": "https://www.pombase.org/", + "id": "bioregistry.pombase.uniprot", + "name": "Schizosaccharomyces pombe database", + "prefix": "DB-0031", + "sameas": "bioregistry.pombase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.pombase.org/gene/$1" + }, + "bioregistry.pombase.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.pombase.wikidata", + "name": "PomBase systematic ID", + "prefix": "P6245", + "sameas": "bioregistry.pombase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.pombase.org/gene/$1" + }, + "bioregistry.pr": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pr", + "name": "Protein Ontology at Georgetown", + "prefix": "pr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://proconsortium.org/app/entry/PR_$1" + }, + "bioregistry.pr.go": { + "authority": "go", + "homepage": "https://proconsortium.org/", + "id": "bioregistry.pr.go", + "name": "Protein Ontology", + "prefix": "PR", + "sameas": "bioregistry.pr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://proconsortium.org/app/entry/PR_$1" + }, + "bioregistry.pr.miriam": { + "authority": "miriam", + "homepage": "https://proconsortium.org/", + "id": "bioregistry.pr.miriam", + "name": "Protein Ontology", + "prefix": "pr", + "sameas": "bioregistry.pr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://proconsortium.org/app/entry/PR:$1" + }, + "bioregistry.pr.n2t": { + "authority": "n2t", + "homepage": "https://proconsortium.org/", + "id": "bioregistry.pr.n2t", + "name": "Protein Ontology at Georgetown", + "prefix": "pr", + "sameas": "bioregistry.pr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://proconsortium.org/app/entry/PR:$1" + }, + "bioregistry.pr.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://pir.georgetown.edu/pro/", + "id": "bioregistry.pr.prefixcommons", + "name": "PRotein Ontology (PRO)", + "prefix": "pr", + "sameas": "bioregistry.pr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://pir.georgetown.edu/cgi-bin/pro/entry_pro?id=$1" + }, + "bioregistry.pr.uniprot": { + "authority": "uniprot", + "homepage": "https://proconsortium.org/", + "id": "bioregistry.pr.uniprot", + "name": "Protein Ontology", + "prefix": "DB-0181", + "sameas": "bioregistry.pr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://proconsortium.org/app/entry/$1" + }, + "bioregistry.pr.wikidata": { + "authority": "wikidata", + "homepage": "https://pir.georgetown.edu/pro/pro.shtml", + "id": "bioregistry.pr.wikidata", + "name": "PRotein Ontology ID", + "prefix": "P4926", + "sameas": "bioregistry.pr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://proconsortium.org/app/entry/$1/" + }, + "bioregistry.pride": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pride", + "name": "PRoteomics IDEntifications database", + "prefix": "pride", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/pride/searchSummary.do?queryTypeSelected=identification%20accession%20number&identificationAccessionNumber=$1" + }, + "bioregistry.pride.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/pride/", + "id": "bioregistry.pride.miriam", + "name": "PRIDE", + "prefix": "pride", + "sameas": "bioregistry.pride", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/pride/archive/assays/$1" + }, + "bioregistry.pride.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/pride/", + "id": "bioregistry.pride.n2t", + "name": "PRIDE at EBI", + "prefix": "pride", + "sameas": "bioregistry.pride", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/pride/archive/assays/$1" + }, + "bioregistry.pride.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/pride/", + "id": "bioregistry.pride.prefixcommons", + "name": "PRoteomics IDEntifications database", + "prefix": "pride", + "sameas": "bioregistry.pride", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/pride/experimentLink.do?experimentAccessionNumber=$1" + }, + "bioregistry.pride.project": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pride.project", + "name": "PRoteomics IDEntifications archive", + "prefix": "pride.project", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/pride/archive/projects/$1" + }, + "bioregistry.pride.project.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ebi.ac.uk/pride/archive/", + "id": "bioregistry.pride.project.cellosaurus", + "name": "PRoteomics IDEntifications archive", + "prefix": "PRIDE", + "sameas": "bioregistry.pride.project", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/pride/archive/projects/$1" + }, + "bioregistry.pride.project.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/pride/", + "id": "bioregistry.pride.project.miriam", + "name": "PRIDE Project", + "prefix": "pride.project", + "sameas": "bioregistry.pride.project", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/pride/archive/projects/$1" + }, + "bioregistry.pride.project.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/pride/", + "id": "bioregistry.pride.project.n2t", + "name": "PRIDE Project at EBI", + "prefix": "pride.project", + "sameas": "bioregistry.pride.project", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/pride/archive/projects/$1" + }, + "bioregistry.pride.uniprot": { + "authority": "uniprot", + "homepage": "https://www.ebi.ac.uk/pride", + "id": "bioregistry.pride.uniprot", + "name": "PRoteomics IDEntifications database", + "prefix": "DB-0130", + "sameas": "bioregistry.pride", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ebi.ac.uk/pride/searchSummary.do?queryTypeSelected=identification%20accession%20number&identificationAccessionNumber=$1" + }, + "bioregistry.prints": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.prints", + "name": "Protein Motif fingerprint database; a protein domain database", + "prefix": "prints", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?prints_accn=$1&display_opts=Prints&category=None&queryform=false®expr=off" + }, + "bioregistry.prints.go": { + "authority": "go", + "homepage": "http://www.bioinf.manchester.ac.uk/dbbrowser/PRINTS/", + "id": "bioregistry.prints.go", + "name": "PRINTS compendium of protein fingerprints", + "prefix": "PRINTS", + "sameas": "bioregistry.prints", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?display_opts=Prints&category=None&queryform=false®expr=off&prints_accn=$1" + }, + "bioregistry.prints.miriam": { + "authority": "miriam", + "homepage": "http://www.bioinf.manchester.ac.uk/dbbrowser/sprint/", + "id": "bioregistry.prints.miriam", + "name": "PRINTS", + "prefix": "prints", + "sameas": "bioregistry.prints", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?prints_accn=$1&display_opts=Prints&category=None&queryform=false®expr=off" + }, + "bioregistry.prints.n2t": { + "authority": "n2t", + "homepage": "http://www.bioinf.manchester.ac.uk/dbbrowser/sprint/", + "id": "bioregistry.prints.n2t", + "name": "PRINTS through SPRINT", + "prefix": "prints", + "sameas": "bioregistry.prints", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?prints_accn=$1&display_opts=Prints&category=None&queryform=false®expr=off" + }, + "bioregistry.prints.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.bioinf.manchester.ac.uk/dbbrowser/sprint/", + "id": "bioregistry.prints.prefixcommons", + "name": "SPRINT", + "prefix": "sprint", + "sameas": "bioregistry.prints", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?prints_accn=$1&display_opts=Prints&category=None&queryform=false®expr=off" + }, + "bioregistry.prints.uniprot": { + "authority": "uniprot", + "homepage": "http://www.bioinf.manchester.ac.uk/dbbrowser/PRINTS/", + "id": "bioregistry.prints.uniprot", + "name": "Protein Motif fingerprint database; a protein domain database", + "prefix": "DB-0082", + "sameas": "bioregistry.prints", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://umber.sbs.man.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?display_opts=Prints&category=None&queryform=false&prints_accn=$1" + }, + "bioregistry.probesanddrugs": { + "authority": "bioregistry", + "homepage": "https://www.probes-drugs.org", + "id": "bioregistry.probesanddrugs", + "name": "Probes And Drugs ID", + "prefix": "probesanddrugs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.probes-drugs.org/compound/$1" + }, + "bioregistry.probesanddrugs.wikidata": { + "authority": "wikidata", + "homepage": "https://www.probes-drugs.org", + "id": "bioregistry.probesanddrugs.wikidata", + "name": "Probes And Drugs ID", + "prefix": "P11199", + "sameas": "bioregistry.probesanddrugs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.probes-drugs.org/compound/$1" + }, + "bioregistry.probonto": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.probonto", + "name": "Ontology and Knowledge Base of Probability Distributions", + "prefix": "probonto", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/probonto/terms?short_form=$1" + }, + "bioregistry.probonto.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ols/ontologies/probonto", + "id": "bioregistry.probonto.miriam", + "name": "ProbOnto", + "prefix": "probonto", + "sameas": "bioregistry.probonto", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/probonto/terms?short_form=$1" + }, + "bioregistry.probonto.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/ols/ontologies/probonto", + "id": "bioregistry.probonto.n2t", + "name": "ProbOnto through OLS", + "prefix": "probonto", + "sameas": "bioregistry.probonto", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/probonto/terms?short_form=$1" + }, + "bioregistry.prodom": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.prodom", + "name": "ProDom; a protein domain database", + "prefix": "prodom", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://prodom.prabi.fr/prodom/current/cgi-bin/request.pl?question=DBEN&query=$1" + }, + "bioregistry.prodom.miriam": { + "authority": "miriam", + "homepage": "http://prodom.prabi.fr/prodom/current/html/home.php", + "id": "bioregistry.prodom.miriam", + "name": "ProDom", + "prefix": "prodom", + "sameas": "bioregistry.prodom", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://prodom.prabi.fr/prodom/current/cgi-bin/request.pl?question=DBEN&query=$1" + }, + "bioregistry.prodom.n2t": { + "authority": "n2t", + "homepage": "http://prodom.prabi.fr/prodom/current/html/home.php", + "id": "bioregistry.prodom.n2t", + "name": "ProDom Protein Domain Database", + "prefix": "prodom", + "sameas": "bioregistry.prodom", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://prodom.prabi.fr/prodom/current/cgi-bin/request.pl?question=DBEN&query=$1" + }, + "bioregistry.prodom.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://prodom.prabi.fr/", + "id": "bioregistry.prodom.prefixcommons", + "name": "ProDom; a protein domain database", + "prefix": "prodom", + "sameas": "bioregistry.prodom", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://prodom.prabi.fr/prodom/current/cgi-bin/request.pl?question=DBEN&query=$1" + }, + "bioregistry.proglyc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.proglyc", + "name": "ProGlycProt at IMT", + "prefix": "proglyc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.proglycprot.org/detail.aspx?ProId=$1" + }, + "bioregistry.proglyc.miriam": { + "authority": "miriam", + "homepage": "http://www.proglycprot.org/", + "id": "bioregistry.proglyc.miriam", + "name": "ProGlycProt", + "prefix": "proglyc", + "sameas": "bioregistry.proglyc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.proglycprot.org/detail.aspx?ProId=$1" + }, + "bioregistry.proglyc.n2t": { + "authority": "n2t", + "homepage": "http://www.proglycprot.org/", + "id": "bioregistry.proglyc.n2t", + "name": "ProGlycProt at IMT", + "prefix": "proglyc", + "sameas": "bioregistry.proglyc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.proglycprot.org/detail.aspx?ProId=$1" + }, + "bioregistry.prosite": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.prosite", + "name": "Prosite database of protein families and domains", + "prefix": "prosite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://prosite.expasy.org/doc/$1" + }, + "bioregistry.prosite.go": { + "authority": "go", + "homepage": "https://prosite.expasy.org/", + "id": "bioregistry.prosite.go", + "name": "Prosite database of protein families and domains", + "prefix": "Prosite", + "sameas": "bioregistry.prosite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://prosite.expasy.org/$1" + }, + "bioregistry.prosite.miriam": { + "authority": "miriam", + "homepage": "https://www.expasy.org/prosite/", + "id": "bioregistry.prosite.miriam", + "name": "PROSITE", + "prefix": "prosite", + "sameas": "bioregistry.prosite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://prosite.expasy.org/$1" + }, + "bioregistry.prosite.n2t": { + "authority": "n2t", + "homepage": "https://www.expasy.org/prosite/", + "id": "bioregistry.prosite.n2t", + "name": "ExPASy PROSITE", + "prefix": "prosite", + "sameas": "bioregistry.prosite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://prosite.expasy.org/$1" + }, + "bioregistry.prosite.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.expasy.org/prosite", + "id": "bioregistry.prosite.prefixcommons", + "name": "PROSITE; a protein domain and family database", + "prefix": "prosite", + "sameas": "bioregistry.prosite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.expasy.org/cgi-bin/nicesite.pl?$1" + }, + "bioregistry.prosite.uniprot": { + "authority": "uniprot", + "homepage": "https://prosite.expasy.org/", + "id": "bioregistry.prosite.uniprot", + "name": "PROSITE; a protein domain and family database", + "prefix": "DB-0084", + "sameas": "bioregistry.prosite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://prosite.expasy.org/doc/$1" + }, + "bioregistry.prosite.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.prosite.wikidata", + "name": "PROSITE documentation ID", + "prefix": "P4355", + "sameas": "bioregistry.prosite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://prosite.expasy.org/$1" + }, + "bioregistry.protclustdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.protclustdb", + "name": "NCBI Protein Clusters Database", + "prefix": "protclustdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/sites/entrez?Db=proteinclusters&Cmd=DetailsSearch&Term=$1" + }, + "bioregistry.protclustdb.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/proteinclusters?db=proteinclusters", + "id": "bioregistry.protclustdb.miriam", + "name": "ProtClustDB", + "prefix": "protclustdb", + "sameas": "bioregistry.protclustdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/sites/entrez?Db=proteinclusters&Cmd=DetailsSearch&Term=$1" + }, + "bioregistry.protclustdb.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/proteinclusters?db=proteinclusters", + "id": "bioregistry.protclustdb.n2t", + "name": "ProtClustDB at NCBI", + "prefix": "protclustdb", + "sameas": "bioregistry.protclustdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/sites/entrez?Db=proteinclusters&Cmd=DetailsSearch&Term=$1" + }, + "bioregistry.protclustdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/sites/entrez?db=proteinclusters", + "id": "bioregistry.protclustdb.prefixcommons", + "name": "ProtClustDB", + "prefix": "protclustdb", + "sameas": "bioregistry.protclustdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/sites/entrez?Db=proteinclusters&Cmd=ShowDetailView&TermToSearch=$1" + }, + "bioregistry.protcom": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.protcom", + "name": "Database of protein-protein complexes", + "prefix": "protcom", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ces.clemson.edu/compbio/protcom/print_file.cgi?pdbid=$1" + }, + "bioregistry.protcom.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ces.clemson.edu/compbio/protcom", + "id": "bioregistry.protcom.prefixcommons", + "name": "Database of protein-protein complexes", + "prefix": "protcom", + "sameas": "bioregistry.protcom", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ces.clemson.edu/compbio/protcom/print_file.cgi?pdbid=$1" + }, + "bioregistry.proteomicsdb.peptide": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.proteomicsdb.peptide", + "name": "Proteomics DB Peptide at Center for Integrated Protein Science", + "prefix": "proteomicsdb.peptide", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.proteomicsdb.org/#human/proteinDetails/$1/peptides/" + }, + "bioregistry.proteomicsdb.peptide.miriam": { + "authority": "miriam", + "homepage": "https://www.proteomicsdb.org/#peptideSearch", + "id": "bioregistry.proteomicsdb.peptide.miriam", + "name": "ProteomicsDB Peptide", + "prefix": "proteomicsdb.peptide", + "sameas": "bioregistry.proteomicsdb.peptide", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.proteomicsdb.org/#human/proteinDetails/$1/peptides/" + }, + "bioregistry.proteomicsdb.peptide.n2t": { + "authority": "n2t", + "homepage": "https://www.proteomicsdb.org/#peptideSearch", + "id": "bioregistry.proteomicsdb.peptide.n2t", + "name": "Proteomics DB Peptide at Center for Integrated Protein Science", + "prefix": "proteomicsdb.peptide", + "sameas": "bioregistry.proteomicsdb.peptide", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.proteomicsdb.org/#human/proteinDetails/$1/peptides/" + }, + "bioregistry.proteomicsdb.protein": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.proteomicsdb.protein", + "name": "Proteomics DB Protein at Center for Integrated Protein Science", + "prefix": "proteomicsdb.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.proteomicsdb.org/#human/proteinDetails/$1/summary" + }, + "bioregistry.proteomicsdb.protein.miriam": { + "authority": "miriam", + "homepage": "https://www.proteomicsdb.org/#human", + "id": "bioregistry.proteomicsdb.protein.miriam", + "name": "ProteomicsDB Protein", + "prefix": "proteomicsdb.protein", + "sameas": "bioregistry.proteomicsdb.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.proteomicsdb.org/#human/proteinDetails/$1/summary" + }, + "bioregistry.proteomicsdb.protein.n2t": { + "authority": "n2t", + "homepage": "https://www.proteomicsdb.org/#human", + "id": "bioregistry.proteomicsdb.protein.n2t", + "name": "Proteomics DB Protein at Center for Integrated Protein Science", + "prefix": "proteomicsdb.protein", + "sameas": "bioregistry.proteomicsdb.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.proteomicsdb.org/#human/proteinDetails/$1/summary" + }, + "bioregistry.protonet.cluster": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.protonet.cluster", + "name": "ProtoNet at Hebrew University", + "prefix": "protonet.cluster", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.protonet.cs.huji.ac.il/requested/cluster_card.php?cluster=$1" + }, + "bioregistry.protonet.cluster.miriam": { + "authority": "miriam", + "homepage": "http://www.protonet.cs.huji.ac.il/", + "id": "bioregistry.protonet.cluster.miriam", + "name": "ProtoNet Cluster", + "prefix": "protonet.cluster", + "sameas": "bioregistry.protonet.cluster", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.protonet.cs.huji.ac.il/requested/cluster_card.php?cluster=$1" + }, + "bioregistry.protonet.cluster.n2t": { + "authority": "n2t", + "homepage": "http://www.protonet.cs.huji.ac.il/", + "id": "bioregistry.protonet.cluster.n2t", + "name": "ProtoNet at Hebrew University", + "prefix": "protonet.cluster", + "sameas": "bioregistry.protonet.cluster", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.protonet.cs.huji.ac.il/requested/cluster_card.php?cluster=$1" + }, + "bioregistry.protonet.cluster.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.protonet.cluster.prefixcommons", + "name": "ProtoNet Cluster", + "prefix": "protonet.cluster", + "sameas": "bioregistry.protonet.cluster", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.protonet.cs.huji.ac.il/requested/cluster_card.php?cluster=$1" + }, + "bioregistry.protonet.proteincard": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.protonet.proteincard", + "name": "ProtoNet at Hebrew University", + "prefix": "protonet.proteincard", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.protonet.cs.huji.ac.il/requested/protein_card.php?protein_id=$1" + }, + "bioregistry.protonet.proteincard.miriam": { + "authority": "miriam", + "homepage": "http://www.protonet.cs.huji.ac.il/", + "id": "bioregistry.protonet.proteincard.miriam", + "name": "ProtoNet ProteinCard", + "prefix": "protonet.proteincard", + "sameas": "bioregistry.protonet.proteincard", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.protonet.cs.huji.ac.il/requested/protein_card.php?protein_id=$1" + }, + "bioregistry.protonet.proteincard.n2t": { + "authority": "n2t", + "homepage": "http://www.protonet.cs.huji.ac.il/", + "id": "bioregistry.protonet.proteincard.n2t", + "name": "ProtoNet at Hebrew University", + "prefix": "protonet.proteincard", + "sameas": "bioregistry.protonet.proteincard", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.protonet.cs.huji.ac.il/requested/protein_card.php?protein_id=$1" + }, + "bioregistry.protonet.proteincard.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.protonet.proteincard.prefixcommons", + "name": "ProtoNet ProteinCard", + "prefix": "protonet.proteincard", + "sameas": "bioregistry.protonet.proteincard", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.protonet.cs.huji.ac.il/requested/protein_card.php?protein_id=$1" + }, + "bioregistry.prov": { + "authority": "bioregistry", + "homepage": "https://www.w3.org/ns/prov", + "id": "bioregistry.prov", + "name": "Superset of Provenance Ontology", + "prefix": "prov", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/ns/prov#$1" + }, + "bioregistry.prov.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.prov.biocontext", + "name": null, + "prefix": "prov", + "sameas": "bioregistry.prov", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/ns/prov#$1" + }, + "bioregistry.prov.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.prov.biolink", + "name": null, + "prefix": "prov", + "sameas": "bioregistry.prov", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/ns/prov#$1" + }, + "bioregistry.pscdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pscdb", + "name": "Protein Structural Change Database", + "prefix": "pscdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/$1.html" + }, + "bioregistry.pscdb.miriam": { + "authority": "miriam", + "homepage": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/index.html", + "id": "bioregistry.pscdb.miriam", + "name": "PSCDB", + "prefix": "pscdb", + "sameas": "bioregistry.pscdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/$1.html" + }, + "bioregistry.pscdb.n2t": { + "authority": "n2t", + "homepage": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/index.html", + "id": "bioregistry.pscdb.n2t", + "name": "PSCDB at Nagoya University", + "prefix": "pscdb", + "sameas": "bioregistry.pscdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/$1.html" + }, + "bioregistry.pseudogene": { + "authority": "bioregistry", + "homepage": "http://www.pseudogene.org", + "id": "bioregistry.pseudogene", + "name": "PseudoGene", + "prefix": "pseudogene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://tables.pseudogene.org/[?species_name]/$1" + }, + "bioregistry.pseudogene.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.pseudogene.org/", + "id": "bioregistry.pseudogene.prefixcommons", + "name": "PseudoGene", + "prefix": "pseudogene", + "sameas": "bioregistry.pseudogene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://tables.pseudogene.org/[?species_name]/$1" + }, + "bioregistry.pseudomonas": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pseudomonas", + "name": "Pseudomonas Genome Database at Simon Fraser University", + "prefix": "pseudomonas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pseudomonas.com/feature/show/?locus_tag=$1" + }, + "bioregistry.pseudomonas.miriam": { + "authority": "miriam", + "homepage": "http://www.pseudomonas.com/", + "id": "bioregistry.pseudomonas.miriam", + "name": "Pseudomonas Genome Database", + "prefix": "pseudomonas", + "sameas": "bioregistry.pseudomonas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pseudomonas.com/feature/show/?locus_tag=$1" + }, + "bioregistry.pseudomonas.n2t": { + "authority": "n2t", + "homepage": "http://www.pseudomonas.com/", + "id": "bioregistry.pseudomonas.n2t", + "name": "Pseudomonas Genome Database at Simon Fraser University", + "prefix": "pseudomonas", + "sameas": "bioregistry.pseudomonas", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.pseudomonas.com/feature/show/?locus_tag=$1" + }, + "bioregistry.psipar": { + "authority": "bioregistry", + "homepage": "https://www.psidev.info/psi-par", + "id": "bioregistry.psipar", + "name": "Protein Affinity Reagents through OLS", + "prefix": "psipar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ontology-lookup/?termId=$1" + }, + "bioregistry.psipar.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=PAR", + "id": "bioregistry.psipar.miriam", + "name": "Protein Affinity Reagents", + "prefix": "psipar", + "sameas": "bioregistry.psipar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ontology-lookup/?termId=$1" + }, + "bioregistry.psipar.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=PAR", + "id": "bioregistry.psipar.n2t", + "name": "Protein Affinity Reagents through OLS", + "prefix": "psipar", + "sameas": "bioregistry.psipar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ontology-lookup/?termId=$1" + }, + "bioregistry.pubchem.bioassay": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pubchem.bioassay", + "name": "NCBI PubChem database of bioassay records", + "prefix": "pubchem.bioassay", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/bioassay/$1" + }, + "bioregistry.pubchem.bioassay.go": { + "authority": "go", + "homepage": "https://pubchem.ncbi.nlm.nih.gov", + "id": "bioregistry.pubchem.bioassay.go", + "name": "NCBI PubChem database of bioassay records", + "prefix": "PubChem_BioAssay", + "sameas": "bioregistry.pubchem.bioassay", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/bioassay/$1" + }, + "bioregistry.pubchem.bioassay.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=pcassay", + "id": "bioregistry.pubchem.bioassay.miriam", + "name": "PubChem-bioassay", + "prefix": "pubchem.bioassay", + "sameas": "bioregistry.pubchem.bioassay", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/bioassay/$1" + }, + "bioregistry.pubchem.bioassay.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=pcassay ", + "id": "bioregistry.pubchem.bioassay.n2t", + "name": "PubChem Bioassay at NCBI", + "prefix": "pubchem.bioassay", + "sameas": "bioregistry.pubchem.bioassay", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/assay/assay.cgi?aid=$1" + }, + "bioregistry.pubchem.bioassay.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/sites/entrez?db=pcassay", + "id": "bioregistry.pubchem.bioassay.prefixcommons", + "name": "Pubchem: Bioassays", + "prefix": "pubchem.bioassay", + "sameas": "bioregistry.pubchem.bioassay", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pubchem.ncbi.nlm.nih.gov/assay/assay.cgi?aid=$1" + }, + "bioregistry.pubchem.compound": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pubchem.compound", + "name": "NCBI PubChem database of chemical structures", + "prefix": "pubchem.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?cid=$1" + }, + "bioregistry.pubchem.compound.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.pubchem.compound.biolink", + "name": null, + "prefix": "CID", + "sameas": "bioregistry.pubchem.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "http://pubchem.ncbi.nlm.nih.gov/compound/$1" + }, + "bioregistry.pubchem.compound.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://pubchem.ncbi.nlm.nih.gov", + "id": "bioregistry.pubchem.compound.cellosaurus", + "name": "PubChem compound database", + "prefix": "PubChem", + "sameas": "bioregistry.pubchem.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/compound/$1" + }, + "bioregistry.pubchem.compound.go": { + "authority": "go", + "homepage": "https://pubchem.ncbi.nlm.nih.gov", + "id": "bioregistry.pubchem.compound.go", + "name": "NCBI PubChem database of chemical structures", + "prefix": "PubChem_Compound", + "sameas": "bioregistry.pubchem.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/compound/$1" + }, + "bioregistry.pubchem.compound.miriam": { + "authority": "miriam", + "homepage": "https://pubchem.ncbi.nlm.nih.gov/", + "id": "bioregistry.pubchem.compound.miriam", + "name": "PubChem-compound", + "prefix": "pubchem.compound", + "sameas": "bioregistry.pubchem.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/compound/$1" + }, + "bioregistry.pubchem.compound.n2t": { + "authority": "n2t", + "homepage": "https://pubchem.ncbi.nlm.nih.gov/", + "id": "bioregistry.pubchem.compound.n2t", + "name": "NCBI PubChem Compound", + "prefix": "pubchem.compound", + "sameas": "bioregistry.pubchem.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?cid=$1" + }, + "bioregistry.pubchem.compound.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.pubchem.compound.prefixcommons", + "name": "Pubchem: Compounds", + "prefix": "pubchem.compound", + "sameas": "bioregistry.pubchem.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "http://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?db=pccompound&term=$1" + }, + "bioregistry.pubchem.compound.wikidata": { + "authority": "wikidata", + "homepage": "http://pubchem.ncbi.nlm.nih.gov", + "id": "bioregistry.pubchem.compound.wikidata", + "name": "PubChem CID", + "prefix": "P662", + "sameas": "bioregistry.pubchem.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/compound/$1" + }, + "bioregistry.pubchem.substance": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pubchem.substance", + "name": "NCBI PubChem database of chemical substances", + "prefix": "pubchem.substance", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?sid=$1" + }, + "bioregistry.pubchem.substance.go": { + "authority": "go", + "homepage": "https://pubchem.ncbi.nlm.nih.gov", + "id": "bioregistry.pubchem.substance.go", + "name": "NCBI PubChem database of chemical substances", + "prefix": "PubChem_Substance", + "sameas": "bioregistry.pubchem.substance", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/substance/$1" + }, + "bioregistry.pubchem.substance.miriam": { + "authority": "miriam", + "homepage": "https://pubchem.ncbi.nlm.nih.gov/", + "id": "bioregistry.pubchem.substance.miriam", + "name": "PubChem-substance", + "prefix": "pubchem.substance", + "sameas": "bioregistry.pubchem.substance", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/substance/$1" + }, + "bioregistry.pubchem.substance.n2t": { + "authority": "n2t", + "homepage": "https://pubchem.ncbi.nlm.nih.gov/", + "id": "bioregistry.pubchem.substance.n2t", + "name": "NCBI PubChem Substance", + "prefix": "pubchem.substance", + "sameas": "bioregistry.pubchem.substance", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?sid=$1" + }, + "bioregistry.pubchem.substance.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.pubchem.substance.prefixcommons", + "name": "Pubchem: Substances", + "prefix": "pubchem.substance", + "sameas": "bioregistry.pubchem.substance", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/sites/entrez?cmd=search&db=pcsubstance&term=$1" + }, + "bioregistry.pubchem.substance.wikidata": { + "authority": "wikidata", + "homepage": "https://www.ncbi.nlm.nih.gov/pcsubstance", + "id": "bioregistry.pubchem.substance.wikidata", + "name": "PubChem Substance ID (SID)", + "prefix": "P2153", + "sameas": "bioregistry.pubchem.substance", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://pubchem.ncbi.nlm.nih.gov/substance/$1" + }, + "bioregistry.publons.publication": { + "authority": "bioregistry", + "homepage": "https://publons.com", + "id": "bioregistry.publons.publication", + "name": "Publons publication ID", + "prefix": "publons.publication", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://publons.com/publon/$1" + }, + "bioregistry.publons.publication.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.publons.publication.wikidata", + "name": "Publons publication ID", + "prefix": "P3431", + "sameas": "bioregistry.publons.publication", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://publons.com/publon/$1" + }, + "bioregistry.publons.researcher": { + "authority": "bioregistry", + "homepage": "https://publons.com/researcher", + "id": "bioregistry.publons.researcher", + "name": "Publons Researcher", + "prefix": "publons.researcher", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://publons.com/researcher/$1" + }, + "bioregistry.publons.researcher.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.publons.researcher.biolink", + "name": null, + "prefix": "ResearchID", + "sameas": "bioregistry.publons.researcher", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://publons.com/researcher/$1" + }, + "bioregistry.pubmed": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pubmed", + "name": "PubMed Identifier", + "prefix": "pubmed", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/pubmed/$1" + }, + "bioregistry.pubmed.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.ncbi.nlm.nih.gov/pubmed", + "id": "bioregistry.pubmed.cellosaurus", + "name": "PubMed", + "prefix": "PubMed", + "sameas": "bioregistry.pubmed", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/pubmed/$1" + }, + "bioregistry.pubmed.go": { + "authority": "go", + "homepage": "https://www.ncbi.nlm.nih.gov/pubmed", + "id": "bioregistry.pubmed.go", + "name": "PubMed", + "prefix": "PMID", + "sameas": "bioregistry.pubmed", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/pubmed/$1" + }, + "bioregistry.pubmed.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/PubMed/", + "id": "bioregistry.pubmed.miriam", + "name": "PubMed", + "prefix": "pubmed", + "sameas": "bioregistry.pubmed", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/pubmed/$1" + }, + "bioregistry.pubmed.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/PubMed/", + "id": "bioregistry.pubmed.n2t", + "name": "NCBI PubMed", + "prefix": "pubmed", + "sameas": "bioregistry.pubmed", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/pubmed/$1" + }, + "bioregistry.pubmed.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/pubmed/", + "id": "bioregistry.pubmed.prefixcommons", + "name": "PubMed", + "prefix": "pubmed", + "sameas": "bioregistry.pubmed", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/pubmed/$1" + }, + "bioregistry.pubmed.wikidata": { + "authority": "wikidata", + "homepage": "https://pubmed.ncbi.nlm.nih.gov", + "id": "bioregistry.pubmed.wikidata", + "name": "PubMed ID", + "prefix": "P698", + "sameas": "bioregistry.pubmed", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "library sciences" + ], + "uri_format": "https://pubmed.ncbi.nlm.nih.gov/$1" + }, + "bioregistry.pw": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pw", + "name": "Pathway Ontology through BioPortal", + "prefix": "pw", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://purl.bioontology.org/ontology/PW/$1" + }, + "bioregistry.pw.miriam": { + "authority": "miriam", + "homepage": "http://rgd.mcw.edu/rgdweb/ontology/search.html", + "id": "bioregistry.pw.miriam", + "name": "Pathway Ontology", + "prefix": "pw", + "sameas": "bioregistry.pw", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rgd.mcw.edu/rgdweb/ontology/annot.html?acc_id=PW:$1" + }, + "bioregistry.pw.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/PW", + "id": "bioregistry.pw.n2t", + "name": "Pathway Ontology through BioPortal", + "prefix": "pw", + "sameas": "bioregistry.pw", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/PW/PW:$1" + }, + "bioregistry.pw.prefixcommons": { + "authority": "prefixcommons", + "homepage": "ftp://rgd.mcw.edu/pub/data_release/ontology_obo_files/", + "id": "bioregistry.pw.prefixcommons", + "name": "Pathway ontology", + "prefix": "pw", + "sameas": "bioregistry.pw", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rgd.mcw.edu/rgdweb/ontology/annot.html?acc_id=$1" + }, + "bioregistry.pw.wikidata": { + "authority": "wikidata", + "homepage": "http://bioportal.bioontology.org/ontologies/PW", + "id": "bioregistry.pw.wikidata", + "name": "Pathway Ontology ID", + "prefix": "P7333", + "sameas": "bioregistry.pw", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://purl.bioontology.org/ontology/PW/$1" + }, + "bioregistry.px": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.px", + "name": "ProteomeXchange at Seattle", + "prefix": "px", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://proteomecentral.proteomexchange.org/cgi/GetDataset?ID=$1" + }, + "bioregistry.px.miriam": { + "authority": "miriam", + "homepage": "http://www.proteomexchange.org/", + "id": "bioregistry.px.miriam", + "name": "ProteomeXchange", + "prefix": "px", + "sameas": "bioregistry.px", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://proteomecentral.proteomexchange.org/cgi/GetDataset?ID=$1" + }, + "bioregistry.px.n2t": { + "authority": "n2t", + "homepage": "http://www.proteomexchange.org/", + "id": "bioregistry.px.n2t", + "name": "ProteomeXchange at Seattle", + "prefix": "px", + "sameas": "bioregistry.px", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://proteomecentral.proteomexchange.org/cgi/GetDataset?ID=$1" + }, + "bioregistry.pypi": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.pypi", + "name": "PyPI", + "prefix": "pypi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pypi.org/project/$1/" + }, + "bioregistry.pypi.miriam": { + "authority": "miriam", + "homepage": "https://www.python.org/psf/", + "id": "bioregistry.pypi.miriam", + "name": "PyPI", + "prefix": "pypi", + "sameas": "bioregistry.pypi", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://pypi.org/project/$1/" + }, + "bioregistry.qtldb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.qtldb", + "name": "Animal Genome QTL", + "prefix": "qtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1" + }, + "bioregistry.qtldb.miriam": { + "authority": "miriam", + "homepage": "https://www.animalgenome.org/QTLdb", + "id": "bioregistry.qtldb.miriam", + "name": "Animal Genome QTL", + "prefix": "qtldb", + "sameas": "bioregistry.qtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1" + }, + "bioregistry.qudt": { + "authority": "bioregistry", + "homepage": "https://qudt.org", + "id": "bioregistry.qudt", + "name": "Quantities, Units, Dimensions, and Types Ontology", + "prefix": "qudt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://qudt.org/1.1/schema/qudt#$1" + }, + "bioregistry.qudt.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.qudt.biolink", + "name": null, + "prefix": "qud", + "sameas": "bioregistry.qudt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://qudt.org/1.1/schema/qudt#$1" + }, + "bioregistry.rapdb.locus": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rapdb.locus", + "name": "RAP-DB Locus", + "prefix": "rapdb.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://rapdb.dna.affrc.go.jp/viewer/gbrowse_details/irgsp1?name=$1" + }, + "bioregistry.rapdb.locus.miriam": { + "authority": "miriam", + "homepage": "https://rapdb.dna.affrc.go.jp/", + "id": "bioregistry.rapdb.locus.miriam", + "name": "RAP-DB Locus", + "prefix": "rapdb.locus", + "sameas": "bioregistry.rapdb.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://rapdb.dna.affrc.go.jp/viewer/gbrowse_details/irgsp1?name=$1" + }, + "bioregistry.rapdb.transcript": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rapdb.transcript", + "name": "The Rice Annotation Project Database", + "prefix": "rapdb.transcript", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://rapdb.dna.affrc.go.jp/viewer/gene_detail/irgsp1?name=$1" + }, + "bioregistry.rapdb.transcript.go": { + "authority": "go", + "homepage": "https://rapdb.dna.affrc.go.jp", + "id": "bioregistry.rapdb.transcript.go", + "name": "Rice annotation Project database", + "prefix": "RAP-DB", + "sameas": "bioregistry.rapdb.transcript", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://rapdb.dna.affrc.go.jp/viewer/gene_detail/irgsp1?name=$1" + }, + "bioregistry.rapdb.transcript.miriam": { + "authority": "miriam", + "homepage": "https://rapdb.dna.affrc.go.jp/", + "id": "bioregistry.rapdb.transcript.miriam", + "name": "RAP-DB Transcript", + "prefix": "rapdb.transcript", + "sameas": "bioregistry.rapdb.transcript", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://rapdb.dna.affrc.go.jp/viewer/gene_detail/irgsp1?name=$1" + }, + "bioregistry.rapdb.transcript.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://rapdb.dna.affrc.go.jp/", + "id": "bioregistry.rapdb.transcript.prefixcommons", + "name": "The Rice Annotation Project Database", + "prefix": "rapdb", + "sameas": "bioregistry.rapdb.transcript", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://rapdb.dna.affrc.go.jp/viewer/gbrowse_details/build5?name=[$1" + }, + "bioregistry.ratmap": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ratmap", + "name": "RatMap, the rat genome database", + "prefix": "ratmap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://ratmap.org/Showgene.php?gene_stable_id=$1" + }, + "bioregistry.ratmap.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://ratmap.org", + "id": "bioregistry.ratmap.prefixcommons", + "name": "RatMap, the rat genome database", + "prefix": "ratmap", + "sameas": "bioregistry.ratmap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://ratmap.org/Showgene.php?gene_stable_id=$1" + }, + "bioregistry.rbk": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rbk", + "name": "(Re)Building a Kidney", + "prefix": "rbk", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.rebuildingakidney.org/id/$1" + }, + "bioregistry.rbk.miriam": { + "authority": "miriam", + "homepage": "https://www.rebuildingakidney.org/", + "id": "bioregistry.rbk.miriam", + "name": "Rebuilding a Kidney", + "prefix": "rbk", + "sameas": "bioregistry.rbk", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.rebuildingakidney.org/id/$1" + }, + "bioregistry.rbk.n2t": { + "authority": "n2t", + "homepage": "https://www.rebuildingakidney.org/", + "id": "bioregistry.rbk.n2t", + "name": "Rebuilding a Kidney", + "prefix": "rbk", + "sameas": "bioregistry.rbk", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.rebuildingakidney.org/id/$1" + }, + "bioregistry.rcb": { + "authority": "bioregistry", + "homepage": "https://cell.brc.riken.jp/en/rcb", + "id": "bioregistry.rcb", + "name": "RIKEN Bioresource Center Cell Bank", + "prefix": "rcb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cellbank.brc.riken.jp/cell_bank/CellInfo/?cellNo=$1&lang=En" + }, + "bioregistry.rcb.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://cell.brc.riken.jp/en/rcb", + "id": "bioregistry.rcb.cellosaurus", + "name": "RIKEN Bioresource Center Cell Bank", + "prefix": "RCB", + "sameas": "bioregistry.rcb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cellbank.brc.riken.jp/cell_bank/CellInfo/?cellNo=$1&lang=En" + }, + "bioregistry.rdf": { + "authority": "bioregistry", + "homepage": "http://www.w3.org/1999/02/22-rdf-syntax-ns", + "id": "bioregistry.rdf", + "name": "Resource Description Framework", + "prefix": "rdf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/1999/02/22-rdf-syntax-ns#$1" + }, + "bioregistry.rdf.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.rdf.biocontext", + "name": null, + "prefix": "rdf", + "sameas": "bioregistry.rdf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/1999/02/22-rdf-syntax-ns#$1" + }, + "bioregistry.rdfs": { + "authority": "bioregistry", + "homepage": "https://www.w3.org/TR/rdf-schema/", + "id": "bioregistry.rdfs", + "name": "Resource Description Framework Schema", + "prefix": "rdfs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/2000/01/rdf-schema#$1" + }, + "bioregistry.rdfs.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.rdfs.biocontext", + "name": null, + "prefix": "rdfs", + "sameas": "bioregistry.rdfs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/2000/01/rdf-schema#$1" + }, + "bioregistry.re3data": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.re3data", + "name": "Schema for the description of research data repositories", + "prefix": "re3data", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.re3data.org/repository/$1" + }, + "bioregistry.re3data.miriam": { + "authority": "miriam", + "homepage": "https://datacite.org", + "id": "bioregistry.re3data.miriam", + "name": "re3data", + "prefix": "re3data", + "sameas": "bioregistry.re3data", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.re3data.org/repository/$1" + }, + "bioregistry.reactome": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.reactome", + "name": "Reactome - a curated knowledgebase of biological pathways", + "prefix": "reactome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.reactome.org/content/detail/$1" + }, + "bioregistry.reactome.go": { + "authority": "go", + "homepage": "https://www.reactome.org/", + "id": "bioregistry.reactome.go", + "name": "Reactome - a curated knowledgebase of biological pathways", + "prefix": "Reactome", + "sameas": "bioregistry.reactome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.reactome.org/content/detail/$1" + }, + "bioregistry.reactome.miriam": { + "authority": "miriam", + "homepage": "https://www.reactome.org/", + "id": "bioregistry.reactome.miriam", + "name": "Reactome", + "prefix": "reactome", + "sameas": "bioregistry.reactome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://reactome.org/content/detail/$1" + }, + "bioregistry.reactome.n2t": { + "authority": "n2t", + "homepage": "https://www.reactome.org/", + "id": "bioregistry.reactome.n2t", + "name": "Reactome, a curated knowledgebase of biological pathways", + "prefix": "reactome", + "sameas": "bioregistry.reactome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://reactome.org/content/detail/$1" + }, + "bioregistry.reactome.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.reactome.org", + "id": "bioregistry.reactome.prefixcommons", + "name": "Reactome - a curated knowledgebase of biological pathways", + "prefix": "reactome", + "sameas": "bioregistry.reactome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.reactome.org/cgi-bin/eventbrowser_st_id?FROM_REACTOME=1&ST_ID=$1" + }, + "bioregistry.reactome.wikidata": { + "authority": "wikidata", + "homepage": "http://www.reactome.org/", + "id": "bioregistry.reactome.wikidata", + "name": "Reactome ID", + "prefix": "P3937", + "sameas": "bioregistry.reactome", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://reactome.org/content/detail/$1" + }, + "bioregistry.rebase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rebase", + "name": "Restriction enzymes and methylases database", + "prefix": "rebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://rebase.neb.com/rebase/enz/$1.html" + }, + "bioregistry.rebase.go": { + "authority": "go", + "homepage": "http://rebase.neb.com/rebase/rebase.html", + "id": "bioregistry.rebase.go", + "name": "REBASE restriction enzyme database", + "prefix": "REBASE", + "sameas": "bioregistry.rebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://rebase.neb.com/rebase/enz/$1.html" + }, + "bioregistry.rebase.miriam": { + "authority": "miriam", + "homepage": "http://rebase.neb.com/rebase/", + "id": "bioregistry.rebase.miriam", + "name": "REBASE", + "prefix": "rebase", + "sameas": "bioregistry.rebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rebase.neb.com/rebase/enz/$1.html" + }, + "bioregistry.rebase.n2t": { + "authority": "n2t", + "homepage": "http://rebase.neb.com/rebase/", + "id": "bioregistry.rebase.n2t", + "name": "REBASE at New England Biolabs", + "prefix": "rebase", + "sameas": "bioregistry.rebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rebase.neb.com/rebase/enz/$1.html" + }, + "bioregistry.rebase.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://rebase.neb.com", + "id": "bioregistry.rebase.prefixcommons", + "name": "Restriction enzymes and methylases database", + "prefix": "rebase", + "sameas": "bioregistry.rebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://rebase.neb.com/rebase/enz/$1.html" + }, + "bioregistry.rebase.uniprot": { + "authority": "uniprot", + "homepage": "http://rebase.neb.com/rebase/rebase.html", + "id": "bioregistry.rebase.uniprot", + "name": "Restriction enzymes and methylases database", + "prefix": "DB-0089", + "sameas": "bioregistry.rebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://rebase.neb.com/rebase/enz/$1.html" + }, + "bioregistry.rebase.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.rebase.wikidata", + "name": "REBASE Enzyme Number", + "prefix": "P4866", + "sameas": "bioregistry.rebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://rebase.neb.com/cgi-bin/reb_get.pl?enzname=$1" + }, + "bioregistry.receptome.family": { + "authority": "bioregistry", + "homepage": "http://www.receptome.org", + "id": "bioregistry.receptome.family", + "name": "Human Plasma Membrane Receptome Families", + "prefix": "receptome.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.receptome.org/HPMR/Families/Frameset_family.asp?FamId=$1" + }, + "bioregistry.receptome.family.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.receptome.org/HPMR/", + "id": "bioregistry.receptome.family.prefixcommons", + "name": "Human Plasma Membrane Receptome", + "prefix": "hpmr", + "sameas": "bioregistry.receptome.family", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.receptome.org/HPMR/Families/Frameset_family.asp?FamId=$1" + }, + "bioregistry.redfly": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.redfly", + "name": "Regulatory Elements Database for Drosophila", + "prefix": "redfly", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://redfly.ccr.buffalo.edu/?content=/view_detail.php&crm_id=$1" + }, + "bioregistry.redfly.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://redfly.ccr.buffalo.edu", + "id": "bioregistry.redfly.prefixcommons", + "name": "Regulatory Elements Database for Drosophila", + "prefix": "redfly", + "sameas": "bioregistry.redfly", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://redfly.ccr.buffalo.edu/?content=/view_detail.php&crm_id=$1" + }, + "bioregistry.refseq": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.refseq", + "name": "The NCBI Reference Sequence database", + "prefix": "refseq", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1" + }, + "bioregistry.refseq.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.refseq.biocontext", + "name": null, + "prefix": "RefSeq", + "sameas": "bioregistry.refseq", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/refseq/?term=$1" + }, + "bioregistry.refseq.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/projects/RefSeq/", + "id": "bioregistry.refseq.miriam", + "name": "RefSeq", + "prefix": "refseq", + "sameas": "bioregistry.refseq", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1" + }, + "bioregistry.refseq.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/projects/RefSeq/", + "id": "bioregistry.refseq.n2t", + "name": "The NCBI Reference Sequence database", + "prefix": "refseq", + "sameas": "bioregistry.refseq", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1" + }, + "bioregistry.refseq.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/RefSeq/", + "id": "bioregistry.refseq.prefixcommons", + "name": "Reference Sequence Database", + "prefix": "refseq", + "sameas": "bioregistry.refseq", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/nuccore/$1" + }, + "bioregistry.refseq.uniprot": { + "authority": "uniprot", + "homepage": "https://www.ncbi.nlm.nih.gov/refseq/", + "id": "bioregistry.refseq.uniprot", + "name": "NCBI Reference Sequences", + "prefix": "DB-0117", + "sameas": "bioregistry.refseq", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/protein/$1" + }, + "bioregistry.repeatsdb.protein": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.repeatsdb.protein", + "name": "RepeatsDB Protein", + "prefix": "repeatsdb.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://repeatsdb.org/protein/$1" + }, + "bioregistry.repeatsdb.protein.miriam": { + "authority": "miriam", + "homepage": "https://repeatsdb.org/", + "id": "bioregistry.repeatsdb.protein.miriam", + "name": "RepeatsDB Protein", + "prefix": "repeatsdb.protein", + "sameas": "bioregistry.repeatsdb.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://repeatsdb.org/protein/$1" + }, + "bioregistry.repeatsdb.structure": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.repeatsdb.structure", + "name": "RepeatsDB Structure", + "prefix": "repeatsdb.structure", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://repeatsdb.org/structure/$1" + }, + "bioregistry.repeatsdb.structure.miriam": { + "authority": "miriam", + "homepage": "https://repeatsdb.org/", + "id": "bioregistry.repeatsdb.structure.miriam", + "name": "RepeatsDB Structure", + "prefix": "repeatsdb.structure", + "sameas": "bioregistry.repeatsdb.structure", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://repeatsdb.org/structure/$1" + }, + "bioregistry.resid": { + "authority": "bioregistry", + "homepage": "https://proteininformationresource.org/resid/", + "id": "bioregistry.resid", + "name": "RESID Database of Protein Modifications", + "prefix": "resid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://proteininformationresource.org/cgi-bin/resid?id=$1" + }, + "bioregistry.resid.go": { + "authority": "go", + "homepage": "https://proteininformationresource.org/resid/resid.shtml", + "id": "bioregistry.resid.go", + "name": "RESID Database of Protein Modifications", + "prefix": "RESID", + "sameas": "bioregistry.resid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://proteininformationresource.org/cgi-bin/resid?id=$1" + }, + "bioregistry.resid.miriam": { + "authority": "miriam", + "homepage": "http://pir0.georgetown.edu/resid/", + "id": "bioregistry.resid.miriam", + "name": "RESID", + "prefix": "resid", + "sameas": "bioregistry.resid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pir0.georgetown.edu/cgi-bin/resid?id=$1" + }, + "bioregistry.resid.n2t": { + "authority": "n2t", + "homepage": "http://pir0.georgetown.edu/resid/", + "id": "bioregistry.resid.n2t", + "name": "RESID at Georgetown University", + "prefix": "resid", + "sameas": "bioregistry.resid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pir0.georgetown.edu/cgi-bin/resid?id=$1" + }, + "bioregistry.resid.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/RESID/", + "id": "bioregistry.resid.prefixcommons", + "name": "RESID Database of Protein Modifications", + "prefix": "resid", + "sameas": "bioregistry.resid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://srs.ebi.ac.uk/srsbin/cgi-bin/wgetz?-id+6JSUg1NA6u4+-e+[RESID:'$1']" + }, + "bioregistry.rfam": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rfam", + "name": "RNA families database of alignments and CMs", + "prefix": "rfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://rfam.xfam.org/family/$1" + }, + "bioregistry.rfam.go": { + "authority": "go", + "homepage": "https://rfam.org", + "id": "bioregistry.rfam.go", + "name": "Rfam database of RNA families", + "prefix": "Rfam", + "sameas": "bioregistry.rfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://rfam.org/family/$1" + }, + "bioregistry.rfam.miriam": { + "authority": "miriam", + "homepage": "https://rfam.xfam.org/", + "id": "bioregistry.rfam.miriam", + "name": "RFAM", + "prefix": "rfam", + "sameas": "bioregistry.rfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://rfam.xfam.org/family/$1" + }, + "bioregistry.rfam.n2t": { + "authority": "n2t", + "homepage": "https://rfam.xfam.org/", + "id": "bioregistry.rfam.n2t", + "name": "Rfam at EMBL-EBI", + "prefix": "rfam", + "sameas": "bioregistry.rfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://rfam.xfam.org/family/$1" + }, + "bioregistry.rfc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rfc", + "name": "Internet Standard -- IETF Request for Comments", + "prefix": "rfc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://tools.ietf.org/rfc/rfc$1" + }, + "bioregistry.rfc.n2t": { + "authority": "n2t", + "homepage": "https://www.ietf.org/", + "id": "bioregistry.rfc.n2t", + "name": "Internet Standard -- IETF Request for Comments", + "prefix": "rfc", + "sameas": "bioregistry.rfc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://tools.ietf.org/rfc/rfc$1" + }, + "bioregistry.rgap": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rgap", + "name": "Rice Genome Annotation Project", + "prefix": "rgap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://rice.plantbiology.msu.edu/cgi-bin/gbrowse/rice/?name=$1" + }, + "bioregistry.rgap.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://rice.plantbiology.msu.edu/", + "id": "bioregistry.rgap.prefixcommons", + "name": "Rice Genome Annotation Project", + "prefix": "rgap", + "sameas": "bioregistry.rgap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://rice.plantbiology.msu.edu/cgi-bin/gbrowse/rice/?name=$1" + }, + "bioregistry.rgd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rgd", + "name": "Rat Genome Database ID", + "prefix": "rgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://rgd.mcw.edu/rgdweb/search/search.html?term=$1" + }, + "bioregistry.rgd.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.rgd.biocontext", + "name": null, + "prefix": "RGD", + "sameas": "bioregistry.rgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://rgd.mcw.edu/rgdweb/report/gene/main.html?id=$1" + }, + "bioregistry.rgd.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://rgd.mcw.edu", + "id": "bioregistry.rgd.cellosaurus", + "name": "Rat Genome Database", + "prefix": "RGD", + "sameas": "bioregistry.rgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://rgd.mcw.edu/rgdweb/report/gene/main.html?id=$1" + }, + "bioregistry.rgd.go": { + "authority": "go", + "homepage": "https://rgd.mcw.edu/", + "id": "bioregistry.rgd.go", + "name": "Rat Genome Database", + "prefix": "RGD", + "sameas": "bioregistry.rgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://rgd.mcw.edu/rgdweb/search/search.html?term=$1" + }, + "bioregistry.rgd.miriam": { + "authority": "miriam", + "homepage": "http://rgd.mcw.edu/", + "id": "bioregistry.rgd.miriam", + "name": "Rat Genome Database", + "prefix": "rgd", + "sameas": "bioregistry.rgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rgd.mcw.edu/rgdweb/report/gene/main.html?id=$1" + }, + "bioregistry.rgd.n2t": { + "authority": "n2t", + "homepage": "http://rgd.mcw.edu/", + "id": "bioregistry.rgd.n2t", + "name": "Rat Genome Database", + "prefix": "rgd", + "sameas": "bioregistry.rgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rgd.mcw.edu/rgdweb/report/gene/main.html?id=$1" + }, + "bioregistry.rgd.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://rgd.mcw.edu/genes/", + "id": "bioregistry.rgd.prefixcommons", + "name": "Rat Genome Database", + "prefix": "rgd", + "sameas": "bioregistry.rgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://rgd.mcw.edu/tools/genes/genes_view.cgi?id=$1" + }, + "bioregistry.rgd.qtl": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rgd.qtl", + "name": "Rat Genome Database qTL at Medical College of Wisconsin", + "prefix": "rgd.qtl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rgd.mcw.edu/rgdweb/report/qtl/main.html?id=$1" + }, + "bioregistry.rgd.qtl.miriam": { + "authority": "miriam", + "homepage": "http://rgd.mcw.edu/", + "id": "bioregistry.rgd.qtl.miriam", + "name": "Rat Genome Database qTL", + "prefix": "rgd.qtl", + "sameas": "bioregistry.rgd.qtl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rgd.mcw.edu/rgdweb/report/qtl/main.html?id=$1" + }, + "bioregistry.rgd.qtl.n2t": { + "authority": "n2t", + "homepage": "http://rgd.mcw.edu/", + "id": "bioregistry.rgd.qtl.n2t", + "name": "Rat Genome Database qTL at Medical College of Wisconsin", + "prefix": "rgd.qtl", + "sameas": "bioregistry.rgd.qtl", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rgd.mcw.edu/rgdweb/report/qtl/main.html?id=$1" + }, + "bioregistry.rgd.strain": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rgd.strain", + "name": "Rat Genome Database strain at Medical College of Wisconsin", + "prefix": "rgd.strain", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rgd.mcw.edu/rgdweb/report/strain/main.html?id=$1" + }, + "bioregistry.rgd.strain.miriam": { + "authority": "miriam", + "homepage": "http://rgd.mcw.edu/", + "id": "bioregistry.rgd.strain.miriam", + "name": "Rat Genome Database strain", + "prefix": "rgd.strain", + "sameas": "bioregistry.rgd.strain", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rgd.mcw.edu/rgdweb/report/strain/main.html?id=$1" + }, + "bioregistry.rgd.strain.n2t": { + "authority": "n2t", + "homepage": "http://rgd.mcw.edu/", + "id": "bioregistry.rgd.strain.n2t", + "name": "Rat Genome Database strain at Medical College of Wisconsin", + "prefix": "rgd.strain", + "sameas": "bioregistry.rgd.strain", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rgd.mcw.edu/rgdweb/report/strain/main.html?id=$1" + }, + "bioregistry.rgd.uniprot": { + "authority": "uniprot", + "homepage": "https://rgd.mcw.edu/", + "id": "bioregistry.rgd.uniprot", + "name": "Rat Genome Database", + "prefix": "DB-0091", + "sameas": "bioregistry.rgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://rgd.mcw.edu/rgdweb/report/gene/main.html?id=$1" + }, + "bioregistry.rgd.wikidata": { + "authority": "wikidata", + "homepage": "https://rgd.mcw.edu/", + "id": "bioregistry.rgd.wikidata", + "name": "Rat Genome Database ID", + "prefix": "P3853", + "sameas": "bioregistry.rgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://rgd.mcw.edu/rgdweb/report/gene/main.html?id=$1" + }, + "bioregistry.rhea": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rhea", + "name": "Rhea, the Annotated Reactions Database", + "prefix": "rhea", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.rhea-db.org/rhea/$1" + }, + "bioregistry.rhea.go": { + "authority": "go", + "homepage": "https://www.rhea-db.org", + "id": "bioregistry.rhea.go", + "name": "Rhea, the Annotated Reactions Database", + "prefix": "RHEA", + "sameas": "bioregistry.rhea", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.rhea-db.org/rhea/$1" + }, + "bioregistry.rhea.miriam": { + "authority": "miriam", + "homepage": "https://www.rhea-db.org/", + "id": "bioregistry.rhea.miriam", + "name": "Rhea", + "prefix": "rhea", + "sameas": "bioregistry.rhea", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.rhea-db.org/rhea/$1" + }, + "bioregistry.rhea.n2t": { + "authority": "n2t", + "homepage": "https://www.rhea-db.org/", + "id": "bioregistry.rhea.n2t", + "name": "Rhea", + "prefix": "rhea", + "sameas": "bioregistry.rhea", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.rhea-db.org/reaction?id=$1" + }, + "bioregistry.rhea.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/rhea/", + "id": "bioregistry.rhea.prefixcommons", + "name": "Reaction database", + "prefix": "rhea", + "sameas": "bioregistry.rhea", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ebi.ac.uk/rhea//reaction.xhtml?id=$1" + }, + "bioregistry.ricecyc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ricecyc", + "name": "Rice Metabolic Pathways", + "prefix": "ricecyc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://pathway.gramene.org/RICE/NEW-IMAGE?type=PATHWAY&object=$1" + }, + "bioregistry.ricecyc.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.gramene.org/pathway/ricecyc.html", + "id": "bioregistry.ricecyc.prefixcommons", + "name": "Rice Metabolic Pathways", + "prefix": "ricecyc", + "sameas": "bioregistry.ricecyc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://pathway.gramene.org/RICE/NEW-IMAGE?type=PATHWAY&object=$1" + }, + "bioregistry.ricegap": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ricegap", + "name": "Rice Genome Annotation Project at TIGR", + "prefix": "ricegap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rice.plantbiology.msu.edu/cgi-bin/ORF_infopage.cgi?&orf=$1" + }, + "bioregistry.ricegap.miriam": { + "authority": "miriam", + "homepage": "http://rice.plantbiology.msu.edu/annotation_pseudo_current.shtml", + "id": "bioregistry.ricegap.miriam", + "name": "Rice Genome Annotation Project", + "prefix": "ricegap", + "sameas": "bioregistry.ricegap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rice.plantbiology.msu.edu/cgi-bin/ORF_infopage.cgi?&orf=$1" + }, + "bioregistry.ricegap.n2t": { + "authority": "n2t", + "homepage": "http://rice.plantbiology.msu.edu/annotation_pseudo_current.shtml", + "id": "bioregistry.ricegap.n2t", + "name": "Rice Genome Annotation Project at TIGR", + "prefix": "ricegap", + "sameas": "bioregistry.ricegap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rice.plantbiology.msu.edu/cgi-bin/ORF_infopage.cgi?&orf=$1" + }, + "bioregistry.ricenetdb.compound": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ricenetdb.compound", + "name": "RiceNetDB Compound", + "prefix": "ricenetdb.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bis.zju.edu.cn/ricenetdb/compounddetails.php?ID=$1" + }, + "bioregistry.ricenetdb.compound.miriam": { + "authority": "miriam", + "homepage": "http://bis.zju.edu.cn/ricenetdb", + "id": "bioregistry.ricenetdb.compound.miriam", + "name": "RiceNetDB Compound", + "prefix": "ricenetdb.compound", + "sameas": "bioregistry.ricenetdb.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bis.zju.edu.cn/ricenetdb/compounddetails.php?ID=$1" + }, + "bioregistry.ricenetdb.compound.n2t": { + "authority": "n2t", + "homepage": "http://bis.zju.edu.cn/ricenetdb", + "id": "bioregistry.ricenetdb.compound.n2t", + "name": "RiceNetDB Compound", + "prefix": "ricenetdb.compound", + "sameas": "bioregistry.ricenetdb.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bis.zju.edu.cn/ricenetdb/compounddetails.php?ID=$1" + }, + "bioregistry.ricenetdb.gene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ricenetdb.gene", + "name": "RiceNetDB Gene", + "prefix": "ricenetdb.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bis.zju.edu.cn/ricenetdb/genedetails.php?ID=$1" + }, + "bioregistry.ricenetdb.gene.miriam": { + "authority": "miriam", + "homepage": "http://bis.zju.edu.cn/ricenetdb/", + "id": "bioregistry.ricenetdb.gene.miriam", + "name": "RiceNetDB Gene", + "prefix": "ricenetdb.gene", + "sameas": "bioregistry.ricenetdb.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bis.zju.edu.cn/ricenetdb/genedetails.php?ID=$1" + }, + "bioregistry.ricenetdb.gene.n2t": { + "authority": "n2t", + "homepage": "http://bis.zju.edu.cn/ricenetdb/", + "id": "bioregistry.ricenetdb.gene.n2t", + "name": "RiceNetDB", + "prefix": "ricenetdb.gene", + "sameas": "bioregistry.ricenetdb.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bis.zju.edu.cn/ricenetdb/genedetails.php?ID=$1" + }, + "bioregistry.ricenetdb.mirna": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ricenetdb.mirna", + "name": "RiceNetDB miRNA", + "prefix": "ricenetdb.mirna", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bis.zju.edu.cn/ricenetdb/miRNAdetails.php?ID=$1" + }, + "bioregistry.ricenetdb.mirna.miriam": { + "authority": "miriam", + "homepage": "http://bis.zju.edu.cn/ricenetdb", + "id": "bioregistry.ricenetdb.mirna.miriam", + "name": "RiceNetDB miRNA", + "prefix": "ricenetdb.mirna", + "sameas": "bioregistry.ricenetdb.mirna", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bis.zju.edu.cn/ricenetdb/miRNAdetails.php?ID=$1" + }, + "bioregistry.ricenetdb.mirna.n2t": { + "authority": "n2t", + "homepage": "http://bis.zju.edu.cn/ricenetdb", + "id": "bioregistry.ricenetdb.mirna.n2t", + "name": "RiceNetDB miRNA", + "prefix": "ricenetdb.mirna", + "sameas": "bioregistry.ricenetdb.mirna", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bis.zju.edu.cn/ricenetdb/miRNAdetails.php?ID=$1" + }, + "bioregistry.ricenetdb.protein": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ricenetdb.protein", + "name": "RiceNetDB Protein", + "prefix": "ricenetdb.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bis.zju.edu.cn/ricenetdb/proteindetails.php?ID=$1" + }, + "bioregistry.ricenetdb.protein.miriam": { + "authority": "miriam", + "homepage": "http://bis.zju.edu.cn/ricenetdb/", + "id": "bioregistry.ricenetdb.protein.miriam", + "name": "RiceNetDB Protein", + "prefix": "ricenetdb.protein", + "sameas": "bioregistry.ricenetdb.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bis.zju.edu.cn/ricenetdb/proteindetails.php?ID=$1" + }, + "bioregistry.ricenetdb.protein.n2t": { + "authority": "n2t", + "homepage": "http://bis.zju.edu.cn/ricenetdb/", + "id": "bioregistry.ricenetdb.protein.n2t", + "name": "RiceNetDB", + "prefix": "ricenetdb.protein", + "sameas": "bioregistry.ricenetdb.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bis.zju.edu.cn/ricenetdb/proteindetails.php?ID=$1" + }, + "bioregistry.ricenetdb.reaction": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ricenetdb.reaction", + "name": "RiceNetDB Reaction", + "prefix": "ricenetdb.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bis.zju.edu.cn/ricenetdb/reactiondetails.php?ID=$1" + }, + "bioregistry.ricenetdb.reaction.miriam": { + "authority": "miriam", + "homepage": "http://bis.zju.edu.cn/ricenetdb", + "id": "bioregistry.ricenetdb.reaction.miriam", + "name": "RiceNetDB Reaction", + "prefix": "ricenetdb.reaction", + "sameas": "bioregistry.ricenetdb.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bis.zju.edu.cn/ricenetdb/reactiondetails.php?ID=$1" + }, + "bioregistry.ricenetdb.reaction.n2t": { + "authority": "n2t", + "homepage": "http://bis.zju.edu.cn/ricenetdb", + "id": "bioregistry.ricenetdb.reaction.n2t", + "name": "RiceNetDB Reaction", + "prefix": "ricenetdb.reaction", + "sameas": "bioregistry.ricenetdb.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bis.zju.edu.cn/ricenetdb/reactiondetails.php?ID=$1" + }, + "bioregistry.rism": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rism", + "name": "RISM Online", + "prefix": "rism", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://rism.online/$1" + }, + "bioregistry.rism.miriam": { + "authority": "miriam", + "homepage": "https://rism.digital/", + "id": "bioregistry.rism.miriam", + "name": "RISM Online", + "prefix": "rism", + "sameas": "bioregistry.rism", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://rism.online/$1" + }, + "bioregistry.rna_sstrand": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rna_sstrand", + "name": "RNA SSTRAND", + "prefix": "rna_sstrand", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.rnasoft.ca/sstrand/show_results.php?molecule_ID=$1" + }, + "bioregistry.rna_sstrand.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.rnasoft.ca/sstrand", + "id": "bioregistry.rna_sstrand.prefixcommons", + "name": "RNA SSTRAND", + "prefix": "rna_sstrand", + "sameas": "bioregistry.rna_sstrand", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.rnasoft.ca/sstrand/show_results.php?molecule_ID=$1" + }, + "bioregistry.rnacentral": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rnacentral", + "name": "Noncoding RNA Sequence Database", + "prefix": "rnacentral", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://rnacentral.org/rna/$1" + }, + "bioregistry.rnacentral.go": { + "authority": "go", + "homepage": "https://rnacentral.org", + "id": "bioregistry.rnacentral.go", + "name": "RNAcentral", + "prefix": "RNAcentral", + "sameas": "bioregistry.rnacentral", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://rnacentral.org/rna/$1" + }, + "bioregistry.rnacentral.miriam": { + "authority": "miriam", + "homepage": "https://rnacentral.org/", + "id": "bioregistry.rnacentral.miriam", + "name": "RNAcentral", + "prefix": "rnacentral", + "sameas": "bioregistry.rnacentral", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://rnacentral.org/rna/$1" + }, + "bioregistry.rnacentral.n2t": { + "authority": "n2t", + "homepage": "https://rnacentral.org/", + "id": "bioregistry.rnacentral.n2t", + "name": "RNAcentral through EMBL-EBI", + "prefix": "rnacentral", + "sameas": "bioregistry.rnacentral", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://rnacentral.org/rna/$1" + }, + "bioregistry.rnacentral.wikidata": { + "authority": "wikidata", + "homepage": "https://rnacentral.org/", + "id": "bioregistry.rnacentral.wikidata", + "name": "RNACentral ID", + "prefix": "P8697", + "sameas": "bioregistry.rnacentral", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://rnacentral.org/rna/$1" + }, + "bioregistry.rnajunction": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rnajunction", + "name": "RNAJunction: A Database of RNA Junction and Kissing loop Structure", + "prefix": "rnajunction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://rnajunction.abcc.ncifcrf.gov/JunctionPage.php?jid=$1" + }, + "bioregistry.rnajunction.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://rnajunction.abcc.ncifcrf.gov", + "id": "bioregistry.rnajunction.prefixcommons", + "name": "RNAJunction: A Database of RNA Junction and Kissing loop Structure", + "prefix": "rnajunction", + "sameas": "bioregistry.rnajunction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://rnajunction.abcc.ncifcrf.gov/JunctionPage.php?jid=$1" + }, + "bioregistry.rnamods": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rnamods", + "name": "RNA Modification Database at University of Utah", + "prefix": "rnamods", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://mods.rna.albany.edu/mods/modifications/view/$1" + }, + "bioregistry.rnamods.go": { + "authority": "go", + "homepage": "https://mods.rna.albany.edu/", + "id": "bioregistry.rnamods.go", + "name": "RNA Modification Database", + "prefix": "RNAmods", + "sameas": "bioregistry.rnamods", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://mods.rna.albany.edu/mods/modifications/view/$1" + }, + "bioregistry.rnamods.miriam": { + "authority": "miriam", + "homepage": "http://rna-mdb.cas.albany.edu/RNAmods/rnaover.htm", + "id": "bioregistry.rnamods.miriam", + "name": "RNA Modification Database", + "prefix": "rnamods", + "sameas": "bioregistry.rnamods", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mods.rna.albany.edu/mods/modifications/view/$1" + }, + "bioregistry.rnamods.n2t": { + "authority": "n2t", + "homepage": "http://rna-mdb.cas.albany.edu/RNAmods/rnaover.htm", + "id": "bioregistry.rnamods.n2t", + "name": "RNA Modification Database at University of Utah", + "prefix": "rnamods", + "sameas": "bioregistry.rnamods", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mods.rna.albany.edu/mods/modifications/view/$1" + }, + "bioregistry.rnamods.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://medlib.med.utah.edu/RNAmods/", + "id": "bioregistry.rnamods.prefixcommons", + "name": "RNA Modification Database", + "prefix": "rnamods", + "sameas": "bioregistry.rnamods", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://s59.cas.albany.edu/RNAmods/cgi-bin/rnashow.cgi?$1" + }, + "bioregistry.rnavdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rnavdb", + "name": "RNA Virus Database", + "prefix": "rnavdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://virus.zoo.ox.ac.uk/rnavirusdb/virus.php?id=$1" + }, + "bioregistry.rnavdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://virus.zoo.ox.ac.uk/rnavirusdb/", + "id": "bioregistry.rnavdb.prefixcommons", + "name": "RNA Virus Database", + "prefix": "rvd", + "sameas": "bioregistry.rnavdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://virus.zoo.ox.ac.uk/rnavirusdb/virus.php?id=$1" + }, + "bioregistry.ro": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ro", + "name": "OBO Relation Ontology through OntoBee", + "prefix": "ro", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/RO_$1" + }, + "bioregistry.ro.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.ro.biolink", + "name": null, + "prefix": "RO", + "sameas": "bioregistry.ro", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/RO_$1" + }, + "bioregistry.ro.miriam": { + "authority": "miriam", + "homepage": "http://obofoundry.org/ontology/ro.html", + "id": "bioregistry.ro.miriam", + "name": "Relation Ontology", + "prefix": "ro", + "sameas": "bioregistry.ro", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/$1" + }, + "bioregistry.ro.n2t": { + "authority": "n2t", + "homepage": "http://obofoundry.org/ontology/ro.html", + "id": "bioregistry.ro.n2t", + "name": "OBO Relation Ontology through OntoBee", + "prefix": "ro", + "sameas": "bioregistry.ro", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/$1" + }, + "bioregistry.ror": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ror", + "name": "Research Organization Registry", + "prefix": "ror", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ror.org/$1" + }, + "bioregistry.ror.miriam": { + "authority": "miriam", + "homepage": "https://ror.org", + "id": "bioregistry.ror.miriam", + "name": "ROR", + "prefix": "ror", + "sameas": "bioregistry.ror", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ror.org/$1" + }, + "bioregistry.ror.n2t": { + "authority": "n2t", + "homepage": "http://ror.org", + "id": "bioregistry.ror.n2t", + "name": "Research Organization Registry", + "prefix": "ror", + "sameas": "bioregistry.ror", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ror.org/$1" + }, + "bioregistry.rouge": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rouge", + "name": "A Database of Rodent Unidentified Gene-Encoded Large Proteins Analyzed", + "prefix": "rouge", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.kazusa.or.jp/rouge/gfpage/$1/" + }, + "bioregistry.rouge.miriam": { + "authority": "miriam", + "homepage": "http://www.kazusa.or.jp/rouge/", + "id": "bioregistry.rouge.miriam", + "name": "Rouge", + "prefix": "rouge", + "sameas": "bioregistry.rouge", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kazusa.or.jp/rouge/gfpage/$1/" + }, + "bioregistry.rouge.n2t": { + "authority": "n2t", + "homepage": "http://www.kazusa.or.jp/rouge/", + "id": "bioregistry.rouge.n2t", + "name": "Rouge at Kazusa DNA Research Institute", + "prefix": "rouge", + "sameas": "bioregistry.rouge", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.kazusa.or.jp/rouge/gfpage/$1/" + }, + "bioregistry.rouge.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.kazusa.or.jp/rouge/", + "id": "bioregistry.rouge.prefixcommons", + "name": "A Database of Rodent Unidentified Gene-Encoded Large Proteins Analyzed", + "prefix": "rouge", + "sameas": "bioregistry.rouge", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.kazusa.or.jp/rouge/gfpage/$1/" + }, + "bioregistry.rouge.uniprot": { + "authority": "uniprot", + "homepage": "http://www.kazusa.or.jp/rouge/", + "id": "bioregistry.rouge.uniprot", + "name": "Rodent Unidentified Gene-Encoded large proteins database", + "prefix": "DB-0092", + "sameas": "bioregistry.rouge", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.kazusa.or.jp/rouge/gfpage/$1" + }, + "bioregistry.rrid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rrid", + "name": "Research Resource Identification", + "prefix": "rrid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://scicrunch.org/resolver/RRID:$1" + }, + "bioregistry.rrid.miriam": { + "authority": "miriam", + "homepage": "https://scicrunch.org/resolver", + "id": "bioregistry.rrid.miriam", + "name": "RRID", + "prefix": "rrid", + "sameas": "bioregistry.rrid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://scicrunch.org/resolver/RRID:$1" + }, + "bioregistry.rrid.n2t": { + "authority": "n2t", + "homepage": "https://scicrunch.org/resolver", + "id": "bioregistry.rrid.n2t", + "name": "RRID at SciCrunch", + "prefix": "rrid", + "sameas": "bioregistry.rrid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://scicrunch.org/resolver/RRID:$1" + }, + "bioregistry.runbiosimulations": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.runbiosimulations", + "name": "runBioSimulations", + "prefix": "runbiosimulations", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://run.biosimulations.org/simulations/$1" + }, + "bioregistry.runbiosimulations.miriam": { + "authority": "miriam", + "homepage": "https://icahn.mssm.edu/", + "id": "bioregistry.runbiosimulations.miriam", + "name": "runBioSimulations", + "prefix": "runbiosimulations", + "sameas": "bioregistry.runbiosimulations", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://run.biosimulations.org/simulations/$1" + }, + "bioregistry.rxno": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.rxno", + "name": "Name Reaction Ontology", + "prefix": "rxno", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.rsc.org/publishing/journals/prospect/ontology.asp?id=$1" + }, + "bioregistry.rxno.wikidata": { + "authority": "wikidata", + "homepage": "https://github.com/rsc-ontologies/rxno", + "id": "bioregistry.rxno.wikidata", + "name": "RXNO Ontology", + "prefix": "P2106", + "sameas": "bioregistry.rxno", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.rsc.org/publishing/journals/prospect/ontology.asp?id=$1" + }, + "bioregistry.rxnorm": { + "authority": "bioregistry", + "homepage": "https://www.nlm.nih.gov/research/umls/rxnorm/", + "id": "bioregistry.rxnorm", + "name": "RxNorm ID", + "prefix": "rxnorm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mor.nlm.nih.gov/RxNav/search?searchBy=RXCUI&searchTerm=$1" + }, + "bioregistry.rxnorm.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.rxnorm.biocontext", + "name": null, + "prefix": "RXCUI", + "sameas": "bioregistry.rxnorm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/RXNORM/$1" + }, + "bioregistry.rxnorm.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.rxnorm.biolink", + "name": null, + "prefix": "RXNORM", + "sameas": "bioregistry.rxnorm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/RXNORM/$1" + }, + "bioregistry.rxnorm.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.rxnorm.wikidata", + "name": "RxNorm ID", + "prefix": "P3345", + "sameas": "bioregistry.rxnorm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://mor.nlm.nih.gov/RxNav/search?searchBy=RXCUI&searchTerm=$1" + }, + "bioregistry.s_mart_db": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.s_mart_db", + "name": "The S/MAR transaction DataBase", + "prefix": "s_mart_db", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://smartdb.bioinf.med.uni-goettingen.de/cgi-bin/SMARtDB/getSMAR.cgi?$1" + }, + "bioregistry.s_mart_db.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://smartdb.bioinf.med.uni-goettingen.de/", + "id": "bioregistry.s_mart_db.prefixcommons", + "name": "The S/MAR transaction DataBase", + "prefix": "s_mart_db", + "sameas": "bioregistry.s_mart_db", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://smartdb.bioinf.med.uni-goettingen.de/cgi-bin/SMARtDB/getSMAR.cgi?$1" + }, + "bioregistry.sabiork.compound": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sabiork.compound", + "name": "SABIO-RK Compound", + "prefix": "sabiork.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sabiork.h-its.org/newSearch?q=$1" + }, + "bioregistry.sabiork.compound.miriam": { + "authority": "miriam", + "homepage": "http://sabiork.h-its.org/", + "id": "bioregistry.sabiork.compound.miriam", + "name": "SABIO-RK Compound", + "prefix": "sabiork.compound", + "sameas": "bioregistry.sabiork.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sabiork.h-its.org/newSearch?q=$1" + }, + "bioregistry.sabiork.compound.n2t": { + "authority": "n2t", + "homepage": "http://sabiork.h-its.org/", + "id": "bioregistry.sabiork.compound.n2t", + "name": "SABIO-RK Compound", + "prefix": "sabiork.compound", + "sameas": "bioregistry.sabiork.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sabiork.h-its.org/newSearch?q=$1" + }, + "bioregistry.sabiork.ec": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sabiork.ec", + "name": "SABIO-RK Reaction Kinetics Database - Enzyme Classification (EC)", + "prefix": "sabiork.ec", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sabiork.h-its.org/newSearch?q=ecnumber:$1" + }, + "bioregistry.sabiork.ec.miriam": { + "authority": "miriam", + "homepage": "http://sabiork.h-its.org/", + "id": "bioregistry.sabiork.ec.miriam", + "name": "SABIO-RK EC Record", + "prefix": "sabiork.ec", + "sameas": "bioregistry.sabiork.ec", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sabiork.h-its.org/newSearch?q=ecnumber:$1" + }, + "bioregistry.sabiork.ec.n2t": { + "authority": "n2t", + "homepage": "http://sabiork.h-its.org/", + "id": "bioregistry.sabiork.ec.n2t", + "name": "SABIO-RK Reaction Kinetics Database - Enzyme Classification (EC)", + "prefix": "sabiork.ec", + "sameas": "bioregistry.sabiork.ec", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sabiork.h-its.org/newSearch?q=ecnumber:$1" + }, + "bioregistry.sabiork.ec.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.sabiork.ec.prefixcommons", + "name": "SABIO-RK EC Record", + "prefix": "sabiork.ec", + "sameas": "bioregistry.sabiork.ec", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sabiork.h-its.org/index2.jsp?EC=$1" + }, + "bioregistry.sabiork.kineticrecord": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sabiork.kineticrecord", + "name": "SABIO-RK Reaction Kinetics Database - Kinetic Dataset", + "prefix": "sabiork.kineticrecord", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://sabiork.h-its.org/kineticLawEntry.jsp?viewData=true&kinlawid=$1" + }, + "bioregistry.sabiork.kineticrecord.go": { + "authority": "go", + "homepage": "http://sabio.villa-bosch.de/", + "id": "bioregistry.sabiork.kineticrecord.go", + "name": "SABIO Reaction Kinetics", + "prefix": "SABIO-RK", + "sameas": "bioregistry.sabiork.kineticrecord", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://sabio.villa-bosch.de/reacdetails.jsp?reactid=$1" + }, + "bioregistry.sabiork.kineticrecord.miriam": { + "authority": "miriam", + "homepage": "http://sabiork.h-its.org/", + "id": "bioregistry.sabiork.kineticrecord.miriam", + "name": "SABIO-RK Kinetic Record", + "prefix": "sabiork.kineticrecord", + "sameas": "bioregistry.sabiork.kineticrecord", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sabiork.h-its.org/kineticLawEntry.jsp?viewData=true&kinlawid=$1" + }, + "bioregistry.sabiork.kineticrecord.n2t": { + "authority": "n2t", + "homepage": "http://sabiork.h-its.org/", + "id": "bioregistry.sabiork.kineticrecord.n2t", + "name": "SABIO-RK Reaction Kinetics Database - Kinetic Dataset", + "prefix": "sabiork.kineticrecord", + "sameas": "bioregistry.sabiork.kineticrecord", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sabiork.h-its.org/kineticLawEntry.jsp?viewData=true&kinlawid=$1" + }, + "bioregistry.sabiork.kineticrecord.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.sabiork.kineticrecord.prefixcommons", + "name": "SABIO-RK Kinetic Record", + "prefix": "sabiork.kinetic", + "sameas": "bioregistry.sabiork.kineticrecord", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://sabiork.h-its.org/kineticLawEntry.jsp?kinlawid=$1" + }, + "bioregistry.sabiork.reaction": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sabiork.reaction", + "name": "SABIO-RK Biochemical Reaction Kinetics Database", + "prefix": "sabiork.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://sabiork.h-its.org/newSearch?q=UniProtKB_AC:$1" + }, + "bioregistry.sabiork.reaction.miriam": { + "authority": "miriam", + "homepage": "http://sabiork.h-its.org/", + "id": "bioregistry.sabiork.reaction.miriam", + "name": "SABIO-RK Reaction", + "prefix": "sabiork.reaction", + "sameas": "bioregistry.sabiork.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sabiork.h-its.org/newSearch?q=sabioreactionid:$1" + }, + "bioregistry.sabiork.reaction.n2t": { + "authority": "n2t", + "homepage": "http://sabiork.h-its.org/", + "id": "bioregistry.sabiork.reaction.n2t", + "name": "SABIO-RK reaction", + "prefix": "sabiork.reaction", + "sameas": "bioregistry.sabiork.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sabiork.h-its.org/newSearch?q=sabioreactionid:$1" + }, + "bioregistry.sabiork.reaction.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.sabiork.reaction.prefixcommons", + "name": "SABIO-RK Reaction Record", + "prefix": "sabiork.reaction", + "sameas": "bioregistry.sabiork.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sabiork.h-its.org/index2.jsp?reac=$1" + }, + "bioregistry.sabiork.reaction.uniprot": { + "authority": "uniprot", + "homepage": "https://sabiork.h-its.org/", + "id": "bioregistry.sabiork.reaction.uniprot", + "name": "SABIO-RK", + "prefix": "DB-0177", + "sameas": "bioregistry.sabiork.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://sabiork.h-its.org/newSearch?q=UniProtKB_AC:$1" + }, + "bioregistry.sasbdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sasbdb", + "name": "SASBDB at European Molecular Biology Laboratory", + "prefix": "sasbdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.sasbdb.org/uniprot/$1/" + }, + "bioregistry.sasbdb.miriam": { + "authority": "miriam", + "homepage": "http://www.sasbdb.org/", + "id": "bioregistry.sasbdb.miriam", + "name": "SASBDB", + "prefix": "sasbdb", + "sameas": "bioregistry.sasbdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.sasbdb.org/data/$1" + }, + "bioregistry.sasbdb.n2t": { + "authority": "n2t", + "homepage": "http://www.sasbdb.org/", + "id": "bioregistry.sasbdb.n2t", + "name": "SASBDB at European Molecular Biology Laboratory", + "prefix": "sasbdb", + "sameas": "bioregistry.sasbdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.sasbdb.org/data/$1" + }, + "bioregistry.sasbdb.uniprot": { + "authority": "uniprot", + "homepage": "https://www.sasbdb.org/", + "id": "bioregistry.sasbdb.uniprot", + "name": "Small Angle Scattering Biological Data Bank", + "prefix": "DB-0258", + "sameas": "bioregistry.sasbdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.sasbdb.org/uniprot/$1/" + }, + "bioregistry.sbo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sbo", + "name": "Systems Biology Ontology", + "prefix": "sbo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/sbo/main/SBO:$1" + }, + "bioregistry.sbo.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ols4/ontologies/sbo", + "id": "bioregistry.sbo.miriam", + "name": "Systems Biology Ontology", + "prefix": "sbo", + "sameas": "bioregistry.sbo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/sbo/terms?obo_id=SBO:$1" + }, + "bioregistry.sbo.n2t": { + "authority": "n2t", + "homepage": "https://www.ebi.ac.uk/sbo/", + "id": "bioregistry.sbo.n2t", + "name": "SBO", + "prefix": "sbo", + "sameas": "bioregistry.sbo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/sbo/main/SBO:$1" + }, + "bioregistry.sbo.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/sbo/", + "id": "bioregistry.sbo.prefixcommons", + "name": "Systems Biology Ontology", + "prefix": "sbo", + "sameas": "bioregistry.sbo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ebi.ac.uk/sbo/main/$1" + }, + "bioregistry.schema": { + "authority": "bioregistry", + "homepage": "https://schema.org", + "id": "bioregistry.schema", + "name": "Schema.org core and all extension vocabularies", + "prefix": "schema", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://schema.org/$1" + }, + "bioregistry.schema.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.schema.biolink", + "name": null, + "prefix": "schema", + "sameas": "bioregistry.schema", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://schema.org/$1" + }, + "bioregistry.sciflection": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sciflection", + "name": "Sciflection", + "prefix": "sciflection", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://sciflection.com/$1" + }, + "bioregistry.sciflection.miriam": { + "authority": "miriam", + "homepage": "https://sciformation.com/sciflection.html", + "id": "bioregistry.sciflection.miriam", + "name": "Sciflection", + "prefix": "sciflection", + "sameas": "bioregistry.sciflection", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://sciflection.com/$1" + }, + "bioregistry.scop": { + "authority": "bioregistry", + "homepage": "https://scop.berkeley.edu", + "id": "bioregistry.scop", + "name": "Structural Classification of Proteins - Unique Identifier", + "prefix": "scop", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://scop.mrc-lmb.cam.ac.uk/scop/search.cgi?sunid=$1" + }, + "bioregistry.scop.miriam": { + "authority": "miriam", + "homepage": "http://scop.mrc-lmb.cam.ac.uk/scop/", + "id": "bioregistry.scop.miriam", + "name": "SCOP", + "prefix": "scop", + "sameas": "bioregistry.scop", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://scop.mrc-lmb.cam.ac.uk/scop/search.cgi?sunid=$1" + }, + "bioregistry.scop.n2t": { + "authority": "n2t", + "homepage": "http://scop.berkeley.edu/", + "id": "bioregistry.scop.n2t", + "name": "SCOP at Berkeley", + "prefix": "scop", + "sameas": "bioregistry.scop", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://scop.berkeley.edu/sunid=$1" + }, + "bioregistry.scopus": { + "authority": "bioregistry", + "homepage": "https://www.scopus.com", + "id": "bioregistry.scopus", + "name": "Scopus Researcher", + "prefix": "scopus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.scopus.com/authid/detail.uri?authorId=$1" + }, + "bioregistry.scopus.affiliation": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.scopus.affiliation", + "name": "Scopus affiliation ID", + "prefix": "scopus.affiliation", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.scopus.com/affil/profile.uri?afid=$1" + }, + "bioregistry.scopus.affiliation.wikidata": { + "authority": "wikidata", + "homepage": "http://info.sciencedirect.com/scopus/scopus-in-detail/tools/affiliationidentifier", + "id": "bioregistry.scopus.affiliation.wikidata", + "name": "Scopus affiliation ID", + "prefix": "P1155", + "sameas": "bioregistry.scopus.affiliation", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.scopus.com/affil/profile.uri?afid=$1" + }, + "bioregistry.scopus.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.scopus.biolink", + "name": null, + "prefix": "ScopusID", + "sameas": "bioregistry.scopus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.scopus.com/authid/detail.uri?authorId=$1" + }, + "bioregistry.scopus.publication": { + "authority": "bioregistry", + "homepage": "https://www.scopus.com/", + "id": "bioregistry.scopus.publication", + "name": "Scopus Publication", + "prefix": "scopus.publication", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.scopus.com/sourceid/$1" + }, + "bioregistry.scopus.publication.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.scopus.publication.wikidata", + "name": "Scopus source ID", + "prefix": "P1156", + "sameas": "bioregistry.scopus.publication", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.scopus.com/sourceid/$1" + }, + "bioregistry.scopus.wikidata": { + "authority": "wikidata", + "homepage": "https://www.scopus.com/freelookup/form/author.uri", + "id": "bioregistry.scopus.wikidata", + "name": "Scopus author ID", + "prefix": "P1153", + "sameas": "bioregistry.scopus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.scopus.com/authid/detail.uri?authorId=$1" + }, + "bioregistry.scopus.work": { + "authority": "bioregistry", + "homepage": "https://www.scopus.com/", + "id": "bioregistry.scopus.work", + "name": "Scopus Work", + "prefix": "scopus.work", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.scopus.com/record/display.url?origin=inward&eid=$1" + }, + "bioregistry.scopus.work.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.scopus.work.wikidata", + "name": "Scopus EID", + "prefix": "P1154", + "sameas": "bioregistry.scopus.work", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.scopus.com/record/display.url?origin=inward&eid=$1" + }, + "bioregistry.scpd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.scpd", + "name": "Saccharomyces cerevisiae promoter database", + "prefix": "scpd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://rulai.cshl.edu/cgi-bin/SCPD/getgene2?$1" + }, + "bioregistry.scpd.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://rulai.cshl.edu/SCPD/", + "id": "bioregistry.scpd.prefixcommons", + "name": "Saccharomyces cerevisiae promoter database", + "prefix": "scpd", + "sameas": "bioregistry.scpd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://rulai.cshl.edu/cgi-bin/SCPD/getgene2?$1" + }, + "bioregistry.scretf": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.scretf", + "name": "ScerTF at Washington University", + "prefix": "scretf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://stormo.wustl.edu/ScerTF/details/$1/" + }, + "bioregistry.scretf.miriam": { + "authority": "miriam", + "homepage": "http://stormo.wustl.edu/ScerTF/", + "id": "bioregistry.scretf.miriam", + "name": "ScerTF", + "prefix": "scretf", + "sameas": "bioregistry.scretf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://stormo.wustl.edu/ScerTF/details/$1/" + }, + "bioregistry.scretf.n2t": { + "authority": "n2t", + "homepage": "http://stormo.wustl.edu/ScerTF/", + "id": "bioregistry.scretf.n2t", + "name": "ScerTF at Washington University", + "prefix": "scretf", + "sameas": "bioregistry.scretf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://stormo.wustl.edu/ScerTF/details/$1/" + }, + "bioregistry.sdap": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sdap", + "name": "Structural Database of Allergenic Proteins", + "prefix": "sdap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://fermi.utmb.edu/cgi-bin/SDAP/sdap_02?dB_Type=0&allid=$1" + }, + "bioregistry.sdap.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://fermi.utmb.edu/SDAP", + "id": "bioregistry.sdap.prefixcommons", + "name": "Structural Database of Allergenic Proteins", + "prefix": "sdap", + "sameas": "bioregistry.sdap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://fermi.utmb.edu/cgi-bin/SDAP/sdap_02?dB_Type=0&allid=$1" + }, + "bioregistry.sdbs": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sdbs", + "name": "Spectral Database for Organic Compounds", + "prefix": "sdbs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/cre_frame_disp.cgi?sdbsno=$1" + }, + "bioregistry.sdbs.miriam": { + "authority": "miriam", + "homepage": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/direct_frame_top.cgi", + "id": "bioregistry.sdbs.miriam", + "name": "Spectral Database for Organic Compounds", + "prefix": "sdbs", + "sameas": "bioregistry.sdbs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/cre_frame_disp.cgi?sdbsno=$1" + }, + "bioregistry.sdbs.n2t": { + "authority": "n2t", + "homepage": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/direct_frame_top.cgi", + "id": "bioregistry.sdbs.n2t", + "name": "SDBS at AIST", + "prefix": "sdbs", + "sameas": "bioregistry.sdbs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/cre_frame_disp.cgi?sdbsno=$1" + }, + "bioregistry.sedml.format": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sedml.format", + "name": "SED-ML data format", + "prefix": "sedml.format", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://sed-ml.org/urns.html#format:$1" + }, + "bioregistry.sedml.format.miriam": { + "authority": "miriam", + "homepage": "http://sed-ml.org/", + "id": "bioregistry.sedml.format.miriam", + "name": "SED-ML data format", + "prefix": "sedml.format", + "sameas": "bioregistry.sedml.format", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://sed-ml.org/urns.html#format:$1" + }, + "bioregistry.sedml.language": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sedml.language", + "name": "SED-ML model format", + "prefix": "sedml.language", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://sed-ml.org/urns.html#language:$1" + }, + "bioregistry.sedml.language.miriam": { + "authority": "miriam", + "homepage": "http://sed-ml.org/", + "id": "bioregistry.sedml.language.miriam", + "name": "SED-ML model format", + "prefix": "sedml.language", + "sameas": "bioregistry.sedml.language", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://sed-ml.org/urns.html#language:$1" + }, + "bioregistry.seed": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.seed", + "name": "SEED Subsystem at Argonne National Laboratory", + "prefix": "seed", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.theseed.org/linkin.cgi?id=$1" + }, + "bioregistry.seed.compound": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.seed.compound", + "name": "SEED Compound at Argonne National Laboratory", + "prefix": "seed.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://modelseed.org/biochem/compounds/$1" + }, + "bioregistry.seed.compound.miriam": { + "authority": "miriam", + "homepage": "http://modelseed.org/", + "id": "bioregistry.seed.compound.miriam", + "name": "SEED Compound", + "prefix": "seed.compound", + "sameas": "bioregistry.seed.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://modelseed.org/biochem/compounds/$1" + }, + "bioregistry.seed.compound.n2t": { + "authority": "n2t", + "homepage": "http://modelseed.org/", + "id": "bioregistry.seed.compound.n2t", + "name": "SEED Compound at Argonne National Laboratory", + "prefix": "seed.compound", + "sameas": "bioregistry.seed.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://modelseed.org/biochem/compounds/$1" + }, + "bioregistry.seed.go": { + "authority": "go", + "homepage": "http://www.theseed.org", + "id": "bioregistry.seed.go", + "name": "The SEED;", + "prefix": "SEED", + "sameas": "bioregistry.seed", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.theseed.org/linkin.cgi?id=$1" + }, + "bioregistry.seed.n2t": { + "authority": "n2t", + "homepage": "http://seed-viewer.theseed.org/seedviewer.cgi", + "id": "bioregistry.seed.n2t", + "name": "SEED Subsystem at Argonne National Laboratory", + "prefix": "seed", + "sameas": "bioregistry.seed", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://seed-viewer.theseed.org/seedviewer.cgi?page=Subsystems&subsystem=$1" + }, + "bioregistry.seed.reaction": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.seed.reaction", + "name": "SEED Reactions", + "prefix": "seed.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://modelseed.org/biochem/reactions/$1" + }, + "bioregistry.seed.reaction.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.seed.reaction.biolink", + "name": null, + "prefix": "SEED.REACTION", + "sameas": "bioregistry.seed.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://modelseed.org/biochem/reactions/$1" + }, + "bioregistry.seed.reaction.miriam": { + "authority": "miriam", + "homepage": "http://modelseed.org/biochem/reactions/", + "id": "bioregistry.seed.reaction.miriam", + "name": "SEED Reactions", + "prefix": "seed.reaction", + "sameas": "bioregistry.seed.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://modelseed.org/biochem/reactions/$1" + }, + "bioregistry.seed.reaction.n2t": { + "authority": "n2t", + "homepage": "http://modelseed.org/biochem/reactions/", + "id": "bioregistry.seed.reaction.n2t", + "name": "SEED Reactions", + "prefix": "seed.reaction", + "sameas": "bioregistry.seed.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://modelseed.org/biochem/reactions/$1" + }, + "bioregistry.seinet": { + "authority": "bioregistry", + "homepage": "https://swbiodiversity.org/seinet/index.php", + "id": "bioregistry.seinet", + "name": "Southwestern Environmental Information Network", + "prefix": "seinet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://swbiodiversity.org/seinet/taxa/index.php?taxon=$1" + }, + "bioregistry.seinet.wikidata": { + "authority": "wikidata", + "homepage": "http://swbiodiversity.org/seinet/index.php", + "id": "bioregistry.seinet.wikidata", + "name": "SEINet ID", + "prefix": "P6209", + "sameas": "bioregistry.seinet", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://swbiodiversity.org/seinet/taxa/index.php?taxon=$1" + }, + "bioregistry.sgd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sgd", + "name": "Saccharomyces Genome Database ID", + "prefix": "sgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics", + "molecular biology" + ], + "uri_format": "https://www.yeastgenome.org/locus/$1" + }, + "bioregistry.sgd.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.sgd.biocontext", + "name": null, + "prefix": "SGD", + "sameas": "bioregistry.sgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics", + "molecular biology" + ], + "uri_format": "https://www.yeastgenome.org/locus/$1" + }, + "bioregistry.sgd.go": { + "authority": "go", + "homepage": "http://www.yeastgenome.org/", + "id": "bioregistry.sgd.go", + "name": "Saccharomyces Genome Database", + "prefix": "SGD", + "sameas": "bioregistry.sgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics", + "molecular biology" + ], + "uri_format": "https://www.yeastgenome.org/locus/$1" + }, + "bioregistry.sgd.miriam": { + "authority": "miriam", + "homepage": "https://www.yeastgenome.org/", + "id": "bioregistry.sgd.miriam", + "name": "SGD", + "prefix": "sgd", + "sameas": "bioregistry.sgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.yeastgenome.org/locus/$1" + }, + "bioregistry.sgd.n2t": { + "authority": "n2t", + "homepage": "https://www.yeastgenome.org/", + "id": "bioregistry.sgd.n2t", + "name": "SGD", + "prefix": "sgd", + "sameas": "bioregistry.sgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.yeastgenome.org/locus/$1" + }, + "bioregistry.sgd.pathways": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sgd.pathways", + "name": "Saccharomyces cerevisiae pathways at SGD.", + "prefix": "sgd.pathways", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://pathway.yeastgenome.org/YEAST/new-image?type=PATHWAY&object=$1" + }, + "bioregistry.sgd.pathways.miriam": { + "authority": "miriam", + "homepage": "http://pathway.yeastgenome.org/", + "id": "bioregistry.sgd.pathways.miriam", + "name": "Saccharomyces genome database pathways", + "prefix": "sgd.pathways", + "sameas": "bioregistry.sgd.pathways", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pathway.yeastgenome.org/YEAST/new-image?type=PATHWAY&object=$1" + }, + "bioregistry.sgd.pathways.n2t": { + "authority": "n2t", + "homepage": "http://pathway.yeastgenome.org/", + "id": "bioregistry.sgd.pathways.n2t", + "name": "Saccharomyces cerevisiae pathways at SGD.", + "prefix": "sgd.pathways", + "sameas": "bioregistry.sgd.pathways", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://pathway.yeastgenome.org/YEAST/new-image?type=PATHWAY&object=$1" + }, + "bioregistry.sgd.pathways.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.yeastgenome.org/", + "id": "bioregistry.sgd.pathways.prefixcommons", + "name": "Saccharomyces genome database pathways", + "prefix": "sgd.pathways", + "sameas": "bioregistry.sgd.pathways", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://pathway.yeastgenome.org/YEAST/new-image?type=PATHWAY&object=$1" + }, + "bioregistry.sgd.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.yeastgenome.org/", + "id": "bioregistry.sgd.prefixcommons", + "name": "Saccharomyces Genome Database", + "prefix": "sgd", + "sameas": "bioregistry.sgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics", + "molecular biology" + ], + "uri_format": "http://db.yeastgenome.org/cgi-bin/locus.pl?dbid=$1" + }, + "bioregistry.sgd.uniprot": { + "authority": "uniprot", + "homepage": "https://www.yeastgenome.org/", + "id": "bioregistry.sgd.uniprot", + "name": "Saccharomyces Genome Database", + "prefix": "DB-0095", + "sameas": "bioregistry.sgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics", + "molecular biology" + ], + "uri_format": "https://www.yeastgenome.org/locus/$1" + }, + "bioregistry.sgd.wikidata": { + "authority": "wikidata", + "homepage": "http://www.yeastgenome.org", + "id": "bioregistry.sgd.wikidata", + "name": "Saccharomyces Genome Database ID", + "prefix": "P3406", + "sameas": "bioregistry.sgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics", + "molecular biology" + ], + "uri_format": "http://www.yeastgenome.org/locus/$1/overview" + }, + "bioregistry.sgn": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sgn", + "name": "Sol Genomics Network at Boyce Thompson Institute for Plant Research", + "prefix": "sgn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "botany" + ], + "uri_format": "http://solgenomics.net/phenome/locus_display.pl?locus_id=$1" + }, + "bioregistry.sgn.go": { + "authority": "go", + "homepage": "https://www.sgn.cornell.edu/", + "id": "bioregistry.sgn.go", + "name": "Sol Genomics Network", + "prefix": "SGN", + "sameas": "bioregistry.sgn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "botany" + ], + "uri_format": "http://solgenomics.net/phenome/locus_display.pl?locus_id=$1" + }, + "bioregistry.sgn.miriam": { + "authority": "miriam", + "homepage": "http://solgenomics.net/", + "id": "bioregistry.sgn.miriam", + "name": "Sol Genomics Network", + "prefix": "sgn", + "sameas": "bioregistry.sgn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://solgenomics.net/phenome/locus_display.pl?locus_id=$1" + }, + "bioregistry.sgn.n2t": { + "authority": "n2t", + "homepage": "http://solgenomics.net/", + "id": "bioregistry.sgn.n2t", + "name": "Sol Genomics Network at Boyce Thompson Institute for Plant Research", + "prefix": "sgn", + "sameas": "bioregistry.sgn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://solgenomics.net/phenome/locus_display.pl?locus_id=$1" + }, + "bioregistry.sgn.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.sgn.cornell.edu", + "id": "bioregistry.sgn.prefixcommons", + "name": "Sol Genomics Network", + "prefix": "sgn", + "sameas": "bioregistry.sgn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "botany" + ], + "uri_format": "http://solgenomics.net/phenome/locus_display.pl?locus_id=$1" + }, + "bioregistry.sheepqtldb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sheepqtldb", + "name": "Animal QTL Sheep at Iowa State University", + "prefix": "sheepqtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1" + }, + "bioregistry.sheepqtldb.miriam": { + "authority": "miriam", + "homepage": "https://www.animalgenome.org/QTLdb", + "id": "bioregistry.sheepqtldb.miriam", + "name": "Animal Genome Sheep QTL", + "prefix": "sheepqtldb", + "sameas": "bioregistry.sheepqtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:$1" + }, + "bioregistry.sheepqtldb.n2t": { + "authority": "n2t", + "homepage": "http://www.animalgenome.org/cgi-bin/QTLdb/OA/index", + "id": "bioregistry.sheepqtldb.n2t", + "name": "Animal QTL Sheep at Iowa State University", + "prefix": "sheepqtldb", + "sameas": "bioregistry.sheepqtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.animalgenome.org/cgi-bin/QTLdb/OA/qdetails?QTL_ID=$1" + }, + "bioregistry.sheepqtldb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.animalgenome.org/cgi-bin/QTLdb/OA/index", + "id": "bioregistry.sheepqtldb.prefixcommons", + "name": "Sheep Quantitative Trait Locus database", + "prefix": "sheepqtldb", + "sameas": "bioregistry.sheepqtldb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.animalgenome.org/cgi-bin/QTLdb/OA/qdetails?QTL_ID=$1" + }, + "bioregistry.shibase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.shibase", + "name": "ShiBASE", + "prefix": "shibase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.mgc.ac.cn/cgi-bin/ShiBASE/ShiBASE_query.cgi?synonym=$1" + }, + "bioregistry.shibase.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.mgc.ac.cn/ShiBASE/", + "id": "bioregistry.shibase.prefixcommons", + "name": "ShiBASE", + "prefix": "shibase", + "sameas": "bioregistry.shibase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.mgc.ac.cn/cgi-bin/ShiBASE/ShiBASE_query.cgi?synonym=$1" + }, + "bioregistry.sider.drug": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sider.drug", + "name": "SIDER Drug v2 at EMBL (Heidelberg)", + "prefix": "sider.drug", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sideeffects.embl.de/drugs/$1/" + }, + "bioregistry.sider.drug.miriam": { + "authority": "miriam", + "homepage": "http://sideeffects.embl.de/", + "id": "bioregistry.sider.drug.miriam", + "name": "SIDER Drug", + "prefix": "sider.drug", + "sameas": "bioregistry.sider.drug", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sideeffects.embl.de/drugs/$1/" + }, + "bioregistry.sider.drug.n2t": { + "authority": "n2t", + "homepage": "http://sideeffects.embl.de/", + "id": "bioregistry.sider.drug.n2t", + "name": "SIDER Drug v2 at EMBL (Heidelberg)", + "prefix": "sider.drug", + "sameas": "bioregistry.sider.drug", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sideeffects.embl.de/drugs/$1/" + }, + "bioregistry.sider.effect": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sider.effect", + "name": "SIDER Side Effect v2 at EMBL (Heidelberg)", + "prefix": "sider.effect", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sideeffects.embl.de/se/$1/" + }, + "bioregistry.sider.effect.miriam": { + "authority": "miriam", + "homepage": "http://sideeffects.embl.de/", + "id": "bioregistry.sider.effect.miriam", + "name": "SIDER Side Effect", + "prefix": "sider.effect", + "sameas": "bioregistry.sider.effect", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sideeffects.embl.de/se/$1/" + }, + "bioregistry.sider.effect.n2t": { + "authority": "n2t", + "homepage": "http://sideeffects.embl.de/", + "id": "bioregistry.sider.effect.n2t", + "name": "SIDER Side Effect v2 at EMBL (Heidelberg)", + "prefix": "sider.effect", + "sameas": "bioregistry.sider.effect", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sideeffects.embl.de/se/$1/" + }, + "bioregistry.signaling-gateway": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.signaling-gateway", + "name": "Signaling Gateway Molecule Pages", + "prefix": "signaling-gateway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.signaling-gateway.org/molecule/query?afcsid=$1" + }, + "bioregistry.signaling-gateway.miriam": { + "authority": "miriam", + "homepage": "http://www.signaling-gateway.org/molecule", + "id": "bioregistry.signaling-gateway.miriam", + "name": "Signaling Gateway", + "prefix": "signaling-gateway", + "sameas": "bioregistry.signaling-gateway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.signaling-gateway.org/molecule/query?afcsid=$1" + }, + "bioregistry.signaling-gateway.n2t": { + "authority": "n2t", + "homepage": "http://www.signaling-gateway.org/molecule", + "id": "bioregistry.signaling-gateway.n2t", + "name": "Signaling Gateway Molecule Pages", + "prefix": "signaling-gateway", + "sameas": "bioregistry.signaling-gateway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.signaling-gateway.org/molecule/query?afcsid=$1" + }, + "bioregistry.signaling-gateway.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.signaling-gateway.org/molecule/", + "id": "bioregistry.signaling-gateway.prefixcommons", + "name": "The Signaling Gateway", + "prefix": "signaling-gateway", + "sameas": "bioregistry.signaling-gateway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.signaling-gateway.org/molecule/query?afcsid=$1" + }, + "bioregistry.signor": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.signor", + "name": "SIGNOR Signaling Network Open Resource", + "prefix": "signor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://signor.uniroma2.it/relation_result.php?id=$1" + }, + "bioregistry.signor.miriam": { + "authority": "miriam", + "homepage": "https://signor.uniroma2.it/", + "id": "bioregistry.signor.miriam", + "name": "SIGNOR", + "prefix": "signor", + "sameas": "bioregistry.signor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://signor.uniroma2.it/relation_result.php?id=$1" + }, + "bioregistry.signor.uniprot": { + "authority": "uniprot", + "homepage": "https://signor.uniroma2.it/", + "id": "bioregistry.signor.uniprot", + "name": "SIGNOR Signaling Network Open Resource", + "prefix": "DB-0206", + "sameas": "bioregistry.signor", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://signor.uniroma2.it/relation_result.php?id=$1" + }, + "bioregistry.sio": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sio", + "name": "Semanticscience Integrated Ontology", + "prefix": "sio", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/sio/terms?short_form=$1" + }, + "bioregistry.sio.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.sio.biocontext", + "name": null, + "prefix": "SIO", + "sameas": "bioregistry.sio", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://semanticscience.org/resource/SIO_$1" + }, + "bioregistry.sio.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.sio.biolink", + "name": null, + "prefix": "SIO", + "sameas": "bioregistry.sio", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://semanticscience.org/resource/SIO_$1" + }, + "bioregistry.sio.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ols4/ontologies/sio", + "id": "bioregistry.sio.miriam", + "name": "Semanticscience Integrated Ontology", + "prefix": "sio", + "sameas": "bioregistry.sio", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/sio/terms?short_form=$1" + }, + "bioregistry.sisu": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sisu", + "name": "Sequencing Initiative Suomi", + "prefix": "sisu", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://search.sisuproject.fi/#/variant/$1" + }, + "bioregistry.sisu.miriam": { + "authority": "miriam", + "homepage": "http://www.sisuproject.fi/", + "id": "bioregistry.sisu.miriam", + "name": "SISu", + "prefix": "sisu", + "sameas": "bioregistry.sisu", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://search.sisuproject.fi/#/variant/$1" + }, + "bioregistry.sisu.n2t": { + "authority": "n2t", + "homepage": "http://www.sisuproject.fi/", + "id": "bioregistry.sisu.n2t", + "name": "SISu", + "prefix": "sisu", + "sameas": "bioregistry.sisu", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://search.sisuproject.fi/#/variant/$1" + }, + "bioregistry.sitex": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sitex", + "name": "SitEx database of eukaryotic protein functional sites", + "prefix": "sitex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics" + ], + "uri_format": "http://www-bionet.sscc.ru/sitex/index.php?siteid=$1" + }, + "bioregistry.sitex.miriam": { + "authority": "miriam", + "homepage": "http://www-bionet.sscc.ru/sitex/", + "id": "bioregistry.sitex.miriam", + "name": "SitEx", + "prefix": "sitex", + "sameas": "bioregistry.sitex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www-bionet.sscc.ru/sitex/index.php?siteid=$1" + }, + "bioregistry.sitex.n2t": { + "authority": "n2t", + "homepage": "http://www-bionet.sscc.ru/sitex/", + "id": "bioregistry.sitex.n2t", + "name": "SitEx at Novosibirsk State University", + "prefix": "sitex", + "sameas": "bioregistry.sitex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www-bionet.sscc.ru/sitex/index.php?siteid=$1" + }, + "bioregistry.sitex.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www-bionet.sscc.ru/sitex/", + "id": "bioregistry.sitex.prefixcommons", + "name": "SitEx database of eukaryotic protein functional sites", + "prefix": "sitex", + "sameas": "bioregistry.sitex", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "cell biology", + "genetics" + ], + "uri_format": "http://www-bionet.sscc.ru/sitex/index.php?siteid=$1" + }, + "bioregistry.skip": { + "authority": "bioregistry", + "homepage": "https://skip.stemcellinformatics.org/en/", + "id": "bioregistry.skip", + "name": "Stemcell Knowledge and Information Portal", + "prefix": "skip", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://skip.stemcellinformatics.org/SKIPSearch/cell_line_detail?accession=$1" + }, + "bioregistry.skip.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.skip.stemcellinformatics.org/en/", + "id": "bioregistry.skip.cellosaurus", + "name": "Stemcell Knowledge and Information Portal", + "prefix": "SKIP", + "sameas": "bioregistry.skip", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://skip.stemcellinformatics.org/SKIPSearch/cell_line_detail?accession=$1" + }, + "bioregistry.skm": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.skm", + "name": "Stress Knowledge Map", + "prefix": "skm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://skm.nib.si/api/pss/reactions?reaction_id=$1&return_field=summary" + }, + "bioregistry.skm.miriam": { + "authority": "miriam", + "homepage": "http://www.nib.si/eng/", + "id": "bioregistry.skm.miriam", + "name": "Stress Knowledge Map", + "prefix": "skm", + "sameas": "bioregistry.skm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://skm.nib.si/api/pss/reactions?reaction_id=$1&return_field=summary" + }, + "bioregistry.skos": { + "authority": "bioregistry", + "homepage": "https://www.w3.org/2004/02/skos/", + "id": "bioregistry.skos", + "name": "Simple Knowledge Organization System", + "prefix": "skos", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/2004/02/skos/core#$1" + }, + "bioregistry.skos.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.skos.biocontext", + "name": null, + "prefix": "skos", + "sameas": "bioregistry.skos", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/2004/02/skos/core#$1" + }, + "bioregistry.slkbase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.slkbase", + "name": "SUM Breast Cancer Cell Line Knowledge Base", + "prefix": "slkbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://sumlineknowledgebase.com/?page_id=$1" + }, + "bioregistry.slkbase.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://sumlineknowledgebase.com/", + "id": "bioregistry.slkbase.cellosaurus", + "name": "SUM Breast Cancer Cell Line Knowledge Base", + "prefix": "SLKBase", + "sameas": "bioregistry.slkbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://sumlineknowledgebase.com/?page_id=$1" + }, + "bioregistry.slm": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.slm", + "name": "SwissLipids at Swiss Institute of Bioinformatics", + "prefix": "slm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.swisslipids.org/#/entity/$1/" + }, + "bioregistry.slm.miriam": { + "authority": "miriam", + "homepage": "http://www.swisslipids.org/#/", + "id": "bioregistry.slm.miriam", + "name": "SwissLipids", + "prefix": "slm", + "sameas": "bioregistry.slm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.swisslipids.org/#/entity/SLM:$1/" + }, + "bioregistry.slm.n2t": { + "authority": "n2t", + "homepage": "http://www.swisslipids.org/#/", + "id": "bioregistry.slm.n2t", + "name": "SwissLipids at Swiss Institute of Bioinformatics", + "prefix": "swisslipid", + "sameas": "bioregistry.slm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.swisslipids.org/#/entity/SLM:$1/" + }, + "bioregistry.slm.uniprot": { + "authority": "uniprot", + "homepage": "https://www.swisslipids.org", + "id": "bioregistry.slm.uniprot", + "name": "SwissLipids knowledge resource for lipid biology", + "prefix": "DB-0197", + "sameas": "bioregistry.slm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.swisslipids.org/#/entity/$1/" + }, + "bioregistry.slm.wikidata": { + "authority": "wikidata", + "homepage": "https://www.swisslipids.org/#/", + "id": "bioregistry.slm.wikidata", + "name": "SwissLipids ID", + "prefix": "P8691", + "sameas": "bioregistry.slm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.swisslipids.org/#/entity/$1/" + }, + "bioregistry.smart": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.smart", + "name": "Simple Modular Architecture Research Tool; a protein domain database", + "prefix": "smart", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://smart.embl.de/smart/do_annotation.pl?DOMAIN=$1" + }, + "bioregistry.smart.go": { + "authority": "go", + "homepage": "http://smart.embl-heidelberg.de/", + "id": "bioregistry.smart.go", + "name": "Simple Modular Architecture Research Tool", + "prefix": "SMART", + "sameas": "bioregistry.smart", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://smart.embl-heidelberg.de/smart/do_annotation.pl?BLAST=DUMMY&DOMAIN=$1" + }, + "bioregistry.smart.miriam": { + "authority": "miriam", + "homepage": "http://smart.embl-heidelberg.de/", + "id": "bioregistry.smart.miriam", + "name": "SMART", + "prefix": "smart", + "sameas": "bioregistry.smart", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://smart.embl-heidelberg.de/smart/do_annotation.pl?DOMAIN=$1" + }, + "bioregistry.smart.n2t": { + "authority": "n2t", + "homepage": "http://smart.embl-heidelberg.de/", + "id": "bioregistry.smart.n2t", + "name": "SMART (Simple Modular Architecture Research Tool)", + "prefix": "smart", + "sameas": "bioregistry.smart", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://smart.embl-heidelberg.de/smart/do_annotation.pl?DOMAIN=$1" + }, + "bioregistry.smart.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://smart.embl.de/", + "id": "bioregistry.smart.prefixcommons", + "name": "Simple Modular Architecture Research Tool; a protein domain database", + "prefix": "smart", + "sameas": "bioregistry.smart", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://smart.embl-heidelberg.de/smart/do_annotation.pl?DOMAIN=$1" + }, + "bioregistry.smart.uniprot": { + "authority": "uniprot", + "homepage": "http://smart.embl.de/", + "id": "bioregistry.smart.uniprot", + "name": "Simple Modular Architecture Research Tool; a protein domain database", + "prefix": "DB-0097", + "sameas": "bioregistry.smart", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://smart.embl.de/smart/do_annotation.pl?DOMAIN=$1" + }, + "bioregistry.smiles": { + "authority": "bioregistry", + "homepage": "https://www.daylight.com/dayhtml/doc/theory/theory.smiles.html", + "id": "bioregistry.smiles", + "name": "Simplified Molecular Input Line Entry Specification Format", + "prefix": "smiles", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://chemapps.stolaf.edu/jmol/jmol.php?model=$1" + }, + "bioregistry.smiles.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.smiles.wikidata", + "name": "canonical SMILES", + "prefix": "P233", + "sameas": "bioregistry.smiles", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://chemapps.stolaf.edu/jmol/jmol.php?model=$1" + }, + "bioregistry.smpdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.smpdb", + "name": "Small Molecule Pathway Database", + "prefix": "smpdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "http://smpdb.ca/view/$1" + }, + "bioregistry.smpdb.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.smpdb.biocontext", + "name": null, + "prefix": "SMPDB", + "sameas": "bioregistry.smpdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "http://smpdb.ca/view/$1" + }, + "bioregistry.smpdb.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.smpdb.biolink", + "name": null, + "prefix": "PathWhiz", + "sameas": "bioregistry.smpdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "http://smpdb.ca/pathways/#$1" + }, + "bioregistry.smpdb.miriam": { + "authority": "miriam", + "homepage": "https://smpdb.ca/", + "id": "bioregistry.smpdb.miriam", + "name": "Small Molecule Pathway Database", + "prefix": "smpdb", + "sameas": "bioregistry.smpdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://smpdb.ca/view/$1" + }, + "bioregistry.smpdb.n2t": { + "authority": "n2t", + "homepage": "http://www.smpdb.ca/pathways", + "id": "bioregistry.smpdb.n2t", + "name": "Small Molecule Pathway Database", + "prefix": "smpdb", + "sameas": "bioregistry.smpdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://smpdb.ca/view/$1" + }, + "bioregistry.smpdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.smpdb.ca/", + "id": "bioregistry.smpdb.prefixcommons", + "name": "Small Molecule Pathway Database", + "prefix": "smpdb", + "sameas": "bioregistry.smpdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry", + "chemical sciences" + ], + "uri_format": "http://pathman.smpdb.ca/pathways/$1/pathway" + }, + "bioregistry.snap": { + "authority": "bioregistry", + "homepage": "http://ontology.buffalo.edu/smith/articles/SNAP_SPAN.pdf", + "id": "bioregistry.snap", + "name": "SNAP: a SNP Annotation Platform", + "prefix": "snap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://snap.humgen.au.dk/views/geneview.cgi?gene=$1" + }, + "bioregistry.snap.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://snap.humgen.au.dk", + "id": "bioregistry.snap.prefixcommons", + "name": "SNAP: a SNP Annotation Platform", + "prefix": "snap", + "sameas": "bioregistry.snap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://snap.humgen.au.dk/views/geneview.cgi?gene=$1" + }, + "bioregistry.snomedct": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.snomedct", + "name": "Systematized Nomenclature of Medicine - Clinical Terms", + "prefix": "snomedct", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.snomedbrowser.com/Codes/Details/$1" + }, + "bioregistry.snomedct.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.snomedct.biolink", + "name": null, + "prefix": "SNOMEDCT", + "sameas": "bioregistry.snomedct", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://snomed.info/id/$1" + }, + "bioregistry.snomedct.miriam": { + "authority": "miriam", + "homepage": "http://www.snomedbrowser.com/", + "id": "bioregistry.snomedct.miriam", + "name": "SNOMED CT", + "prefix": "snomedct", + "sameas": "bioregistry.snomedct", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.snomedbrowser.com/Codes/Details/$1" + }, + "bioregistry.snomedct.n2t": { + "authority": "n2t", + "homepage": "http://www.snomedbrowser.com/", + "id": "bioregistry.snomedct.n2t", + "name": "SNOMED-CT at The National Pathology Exchange", + "prefix": "snomedct", + "sameas": "bioregistry.snomedct", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.snomedbrowser.com/Codes/Details/$1" + }, + "bioregistry.snomedct.wikidata": { + "authority": "wikidata", + "homepage": "http://snomed.info/", + "id": "bioregistry.snomedct.wikidata", + "name": "SNOMED CT ID", + "prefix": "P5806", + "sameas": "bioregistry.snomedct", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://snomed.info/id/$1" + }, + "bioregistry.snornabase": { + "authority": "bioregistry", + "homepage": "https://www-snorna.biotoul.fr/", + "id": "bioregistry.snornabase", + "name": "snoRNA-LBME-db", + "prefix": "snornabase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www-snorna.biotoul.fr/plus.php?id=$1" + }, + "bioregistry.snornabase.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www-snorna.biotoul.fr/", + "id": "bioregistry.snornabase.prefixcommons", + "name": "snoRNA-LBME-db", + "prefix": "snornalbmedb", + "sameas": "bioregistry.snornabase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www-snorna.biotoul.fr/plus.php?id=$1" + }, + "bioregistry.snp2tfbs": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.snp2tfbs", + "name": "SNP to Transcription Factor Binding Sites", + "prefix": "snp2tfbs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ccg.epfl.ch/cgi-bin/snp2tfbs/snpviewer_form_parser.cgi?snpid=$1" + }, + "bioregistry.snp2tfbs.miriam": { + "authority": "miriam", + "homepage": "https://ccg.epfl.ch/snp2tfbs/", + "id": "bioregistry.snp2tfbs.miriam", + "name": "SNP2TFBS", + "prefix": "snp2tfbs", + "sameas": "bioregistry.snp2tfbs", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ccg.epfl.ch/cgi-bin/snp2tfbs/snpviewer_form_parser.cgi?snpid=$1" + }, + "bioregistry.snp500cancer": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.snp500cancer", + "name": "SNP500Cancer", + "prefix": "snp500cancer", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://snp500cancer.nci.nih.gov/snp.cfm?both_snp_id=$1" + }, + "bioregistry.snp500cancer.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://snp500cancer.nci.nih.gov", + "id": "bioregistry.snp500cancer.prefixcommons", + "name": "SNP500Cancer", + "prefix": "snp500cancer", + "sameas": "bioregistry.snp500cancer", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://snp500cancer.nci.nih.gov/snp.cfm?both_snp_id=$1" + }, + "bioregistry.so": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.so", + "name": "Sequence types and features ontology", + "prefix": "so", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.sequenceontology.org/miso/current_release/term/SO:$1" + }, + "bioregistry.so.miriam": { + "authority": "miriam", + "homepage": "http://www.sequenceontology.org/", + "id": "bioregistry.so.miriam", + "name": "Sequence Ontology", + "prefix": "so", + "sameas": "bioregistry.so", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.sequenceontology.org/miso/current_release/term/SO:$1" + }, + "bioregistry.so.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/SO", + "id": "bioregistry.so.n2t", + "name": "Sequence Ontology through BioPortal", + "prefix": "so", + "sameas": "bioregistry.so", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/SO/SO:$1" + }, + "bioregistry.so.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.sequenceontology.org/", + "id": "bioregistry.so.prefixcommons", + "name": "Sequence Ontology", + "prefix": "so", + "sameas": "bioregistry.so", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.sequenceontology.org/miso/current_release/term/$1" + }, + "bioregistry.soybase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.soybase", + "name": "SoyBase at Iowa State University", + "prefix": "soybase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology" + ], + "uri_format": "http://www.soybase.org/sbt/search/search_results.php?category=SNP&search_term=$1" + }, + "bioregistry.soybase.miriam": { + "authority": "miriam", + "homepage": "http://soybase.org/", + "id": "bioregistry.soybase.miriam", + "name": "SoyBase", + "prefix": "soybase", + "sameas": "bioregistry.soybase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.soybase.org/sbt/search/search_results.php?category=SNP&search_term=$1" + }, + "bioregistry.soybase.n2t": { + "authority": "n2t", + "homepage": "http://soybase.org/", + "id": "bioregistry.soybase.n2t", + "name": "SoyBase at Iowa State University", + "prefix": "soybase", + "sameas": "bioregistry.soybase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.soybase.org/sbt/search/search_results.php?category=SNP&search_term=$1" + }, + "bioregistry.spbase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.spbase", + "name": "SpBase", + "prefix": "spbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.spbase.org/SpBase/search/viewAnnoGeneInfo.php?spu_id=$1" + }, + "bioregistry.spbase.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://spbase.org", + "id": "bioregistry.spbase.prefixcommons", + "name": "SpBase", + "prefix": "spbase", + "sameas": "bioregistry.spbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.spbase.org/SpBase/search/viewAnnoGeneInfo.php?spu_id=$1" + }, + "bioregistry.spd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.spd", + "name": "Spider Anatomy Ontology", + "prefix": "spd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology", + "anatomy and morphology" + ], + "uri_format": "http://purl.obolibrary.org/obo/SPD_$1" + }, + "bioregistry.spd.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.spd.wikidata", + "name": "Spider Ontology ID", + "prefix": "P4537", + "sameas": "bioregistry.spd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology", + "anatomy and morphology" + ], + "uri_format": "http://purl.obolibrary.org/obo/SPD_$1" + }, + "bioregistry.spdx": { + "authority": "bioregistry", + "homepage": "https://spdx.org/licenses", + "id": "bioregistry.spdx", + "name": "Software Package Data Exchange License", + "prefix": "spdx", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://spdx.org/licenses/$1" + }, + "bioregistry.spdx.miriam": { + "authority": "miriam", + "homepage": "https://spdx.org", + "id": "bioregistry.spdx.miriam", + "name": "SPDX License List", + "prefix": "spdx", + "sameas": "bioregistry.spdx", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://spdx.org/licenses/$1" + }, + "bioregistry.spdx.n2t": { + "authority": "n2t", + "homepage": "https://spdx.org", + "id": "bioregistry.spdx.n2t", + "name": "SPDX License List", + "prefix": "spdx", + "sameas": "bioregistry.spdx", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://spdx.org/licenses/$1" + }, + "bioregistry.spike.map": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.spike.map", + "name": "Signaling Pathway Integrated Knowledge Engine", + "prefix": "spike.map", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.cs.tau.ac.il/~spike/maps/$1.html" + }, + "bioregistry.spike.map.miriam": { + "authority": "miriam", + "homepage": "http://www.cs.tau.ac.il/~spike/", + "id": "bioregistry.spike.map.miriam", + "name": "SPIKE Map", + "prefix": "spike.map", + "sameas": "bioregistry.spike.map", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cs.tau.ac.il/~spike/maps/$1.html" + }, + "bioregistry.spike.map.n2t": { + "authority": "n2t", + "homepage": "http://www.cs.tau.ac.il/~spike/", + "id": "bioregistry.spike.map.n2t", + "name": "SPIKE database at Tel Aviv University", + "prefix": "spike.map", + "sameas": "bioregistry.spike.map", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.cs.tau.ac.il/~spike/maps/$1.html" + }, + "bioregistry.splash": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.splash", + "name": "Mass Bank of North America (MoNA)", + "prefix": "splash", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mona.fiehnlab.ucdavis.edu/#/spectra/splash/$1" + }, + "bioregistry.splash.miriam": { + "authority": "miriam", + "homepage": "http://mona.fiehnlab.ucdavis.edu/", + "id": "bioregistry.splash.miriam", + "name": "SPLASH", + "prefix": "splash", + "sameas": "bioregistry.splash", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mona.fiehnlab.ucdavis.edu/#/spectra/splash/$1" + }, + "bioregistry.splash.n2t": { + "authority": "n2t", + "homepage": "http://mona.fiehnlab.ucdavis.edu/", + "id": "bioregistry.splash.n2t", + "name": "Mass Bank of North America (MoNA)", + "prefix": "splash", + "sameas": "bioregistry.splash", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://mona.fiehnlab.ucdavis.edu/#/spectra/splash/$1" + }, + "bioregistry.splicenest": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.splicenest", + "name": "SpliceNest", + "prefix": "splicenest", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://splicenest.molgen.mpg.de/cgi-bin/splicegraph.cgi?cluster=$1" + }, + "bioregistry.splicenest.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://splicenest.molgen.mpg.de/", + "id": "bioregistry.splicenest.prefixcommons", + "name": "SpliceNest", + "prefix": "splicenest", + "sameas": "bioregistry.splicenest", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://splicenest.molgen.mpg.de/cgi-bin/splicegraph.cgi?cluster=$1" + }, + "bioregistry.spp": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.spp", + "name": "Signaling Pathways Project", + "prefix": "spp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.signalingpathways.org/datasets/dataset.jsf?doi=$1" + }, + "bioregistry.spp.miriam": { + "authority": "miriam", + "homepage": "https://www.signalingpathways.org/index.jsf", + "id": "bioregistry.spp.miriam", + "name": "Signaling Pathways Project", + "prefix": "spp", + "sameas": "bioregistry.spp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.signalingpathways.org/datasets/dataset.jsf?doi=$1" + }, + "bioregistry.sstoss": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sstoss", + "name": "Sequence-Structural Templates of Single-member Superfamilies", + "prefix": "sstoss", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://caps.ncbs.res.in/cgi-bin/mini/databases/SSTOSS/sstoss.cgi?code=$1" + }, + "bioregistry.sstoss.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://caps.ncbs.res.in/SSTOSS/index.htm", + "id": "bioregistry.sstoss.prefixcommons", + "name": "Sequence-Structural Templates of Single-member Superfamilies", + "prefix": "sstoss", + "sameas": "bioregistry.sstoss", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://caps.ncbs.res.in/cgi-bin/mini/databases/SSTOSS/sstoss.cgi?code=$1" + }, + "bioregistry.stap": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.stap", + "name": "Statistical Torsional Angles Potentials of NMR Refinement Database", + "prefix": "stap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://psb.kobic.re.kr/STAP/refinement1/result.php?search=$1" + }, + "bioregistry.stap.miriam": { + "authority": "miriam", + "homepage": "http://psb.kobic.re.kr/STAP/refinement/", + "id": "bioregistry.stap.miriam", + "name": "STAP", + "prefix": "stap", + "sameas": "bioregistry.stap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://psb.kobic.re.kr/STAP/refinement1/result.php?search=$1" + }, + "bioregistry.stap.n2t": { + "authority": "n2t", + "homepage": "http://psb.kobic.re.kr/STAP/refinement/", + "id": "bioregistry.stap.n2t", + "name": "STAP at Korean Bioinformation Center", + "prefix": "stap", + "sameas": "bioregistry.stap", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://psb.kobic.re.kr/STAP/refinement1/result.php?search=$1" + }, + "bioregistry.stitch": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.stitch", + "name": "Search Tool for Interactions of Chemicals", + "prefix": "stitch", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://stitch.embl.de/interactions/$1" + }, + "bioregistry.stitch.miriam": { + "authority": "miriam", + "homepage": "http://stitch.embl.de/", + "id": "bioregistry.stitch.miriam", + "name": "STITCH", + "prefix": "stitch", + "sameas": "bioregistry.stitch", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://stitch.embl.de/interactions/$1" + }, + "bioregistry.stitch.n2t": { + "authority": "n2t", + "homepage": "http://stitch.embl.de/", + "id": "bioregistry.stitch.n2t", + "name": "STITCH", + "prefix": "stitch", + "sameas": "bioregistry.stitch", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://stitch.embl.de/interactions/$1" + }, + "bioregistry.storedb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.storedb", + "name": "STOREDB at University of Cambridge", + "prefix": "storedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.storedb.org/?$1" + }, + "bioregistry.storedb.miriam": { + "authority": "miriam", + "homepage": "https://www.storedb.org/", + "id": "bioregistry.storedb.miriam", + "name": "STOREDB", + "prefix": "storedb", + "sameas": "bioregistry.storedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.storedb.org/?$1" + }, + "bioregistry.storedb.n2t": { + "authority": "n2t", + "homepage": "https://www.storedb.org/", + "id": "bioregistry.storedb.n2t", + "name": "STOREDB at University of Cambridge", + "prefix": "storedb", + "sameas": "bioregistry.storedb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.storedb.org/?$1" + }, + "bioregistry.string": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.string", + "name": "Search Tool for Retrieval of Interacting Genes/Proteins", + "prefix": "string", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://string-db.org/network/$1" + }, + "bioregistry.string.miriam": { + "authority": "miriam", + "homepage": "http://string.embl.de/", + "id": "bioregistry.string.miriam", + "name": "STRING", + "prefix": "string", + "sameas": "bioregistry.string", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://string.embl.de/interactions/$1" + }, + "bioregistry.string.n2t": { + "authority": "n2t", + "homepage": "http://string-db.org/", + "id": "bioregistry.string.n2t", + "name": "STRING Mirror at Heidelberg", + "prefix": "string", + "sameas": "bioregistry.string", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://string-db.org/interactions/$1" + }, + "bioregistry.string.uniprot": { + "authority": "uniprot", + "homepage": "https://string-db.org/", + "id": "bioregistry.string.uniprot", + "name": "STRING", + "prefix": "DB-0141", + "sameas": "bioregistry.string", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://string-db.org/network/$1" + }, + "bioregistry.sty": { + "authority": "bioregistry", + "homepage": "https://lhncbc.nlm.nih.gov/semanticnetwork/", + "id": "bioregistry.sty", + "name": "UMLS Semantic Types Ontology", + "prefix": "sty", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://lhncbc.nlm.nih.gov/semanticnetwork/download/sg_archive/SemGroups-v04.txt$1" + }, + "bioregistry.sty.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.sty.biolink", + "name": null, + "prefix": "UMLSSG", + "sameas": "bioregistry.sty", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://lhncbc.nlm.nih.gov/semanticnetwork/download/sg_archive/SemGroups-v04.txt$1" + }, + "bioregistry.subtilist": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.subtilist", + "name": "Bacillus subtilis strain 168 genome database", + "prefix": "subtilist", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://genolist.pasteur.fr/SubtiList/genome.cgi?external_query+$1" + }, + "bioregistry.subtilist.miriam": { + "authority": "miriam", + "homepage": "http://genolist.pasteur.fr/SubtiList/", + "id": "bioregistry.subtilist.miriam", + "name": "SubtiList", + "prefix": "subtilist", + "sameas": "bioregistry.subtilist", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://genolist.pasteur.fr/SubtiList/genome.cgi?external_query+$1" + }, + "bioregistry.subtilist.n2t": { + "authority": "n2t", + "homepage": "http://genolist.pasteur.fr/SubtiList/", + "id": "bioregistry.subtilist.n2t", + "name": "SubtiList at Pasteur Institute", + "prefix": "subtilist", + "sameas": "bioregistry.subtilist", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://genolist.pasteur.fr/SubtiList/genome.cgi?external_query+$1" + }, + "bioregistry.subtiwiki": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.subtiwiki", + "name": "SubtiWiki website", + "prefix": "subtiwiki", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/$1" + }, + "bioregistry.subtiwiki.miriam": { + "authority": "miriam", + "homepage": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/Main_Page", + "id": "bioregistry.subtiwiki.miriam", + "name": "SubtiWiki", + "prefix": "subtiwiki", + "sameas": "bioregistry.subtiwiki", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/$1" + }, + "bioregistry.subtiwiki.n2t": { + "authority": "n2t", + "homepage": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/Main_Page", + "id": "bioregistry.subtiwiki.n2t", + "name": "SubtiWiki website", + "prefix": "subtiwiki", + "sameas": "bioregistry.subtiwiki", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/$1" + }, + "bioregistry.subtiwiki.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/Main_Page", + "id": "bioregistry.subtiwiki.prefixcommons", + "name": "SubtiWiki", + "prefix": "subtiwiki", + "sameas": "bioregistry.subtiwiki", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/$1" + }, + "bioregistry.sugarbind": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.sugarbind", + "name": "SugarBind", + "prefix": "sugarbind", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sugarbind.expasy.org/$1" + }, + "bioregistry.sugarbind.miriam": { + "authority": "miriam", + "homepage": "http://sugarbind.expasy.org/", + "id": "bioregistry.sugarbind.miriam", + "name": "SugarBind", + "prefix": "sugarbind", + "sameas": "bioregistry.sugarbind", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sugarbind.expasy.org/$1" + }, + "bioregistry.sugarbind.n2t": { + "authority": "n2t", + "homepage": "http://sugarbind.expasy.org/", + "id": "bioregistry.sugarbind.n2t", + "name": "SugarBind", + "prefix": "sugarbind", + "sameas": "bioregistry.sugarbind", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://sugarbind.expasy.org/$1" + }, + "bioregistry.supfam": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.supfam", + "name": "SUPERFAMILY database of structural and functional annotation", + "prefix": "supfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://supfam.org/SUPERFAMILY/cgi-bin/scop.cgi?ipid=$1" + }, + "bioregistry.supfam.miriam": { + "authority": "miriam", + "homepage": "http://supfam.org/SUPERFAMILY/", + "id": "bioregistry.supfam.miriam", + "name": "SUPFAM", + "prefix": "supfam", + "sameas": "bioregistry.supfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://supfam.org/SUPERFAMILY/cgi-bin/scop.cgi?ipid=$1" + }, + "bioregistry.supfam.n2t": { + "authority": "n2t", + "homepage": "http://supfam.org/SUPERFAMILY/", + "id": "bioregistry.supfam.n2t", + "name": "SUPFAM at MRC and University of Bristol", + "prefix": "supfam", + "sameas": "bioregistry.supfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://supfam.org/SUPERFAMILY/cgi-bin/scop.cgi?ipid=$1" + }, + "bioregistry.supfam.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://supfam.org", + "id": "bioregistry.supfam.prefixcommons", + "name": "SUPERFAMILY database of structural and functional annotation", + "prefix": "superfamily", + "sameas": "bioregistry.supfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://supfam.org/SUPERFAMILY/cgi-bin/scop.cgi?sunid=$1" + }, + "bioregistry.supfam.uniprot": { + "authority": "uniprot", + "homepage": "https://supfam.org", + "id": "bioregistry.supfam.uniprot", + "name": "Superfamily database of structural and functional annotation", + "prefix": "DB-0155", + "sameas": "bioregistry.supfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://supfam.org/SUPERFAMILY/cgi-bin/scop.cgi?ipid=$1" + }, + "bioregistry.swh": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.swh", + "name": "Software Heritage", + "prefix": "swh", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://archive.softwareheritage.org/browse/swh:$1" + }, + "bioregistry.swh.miriam": { + "authority": "miriam", + "homepage": "https://archive.softwareheritage.org", + "id": "bioregistry.swh.miriam", + "name": "Software Heritage", + "prefix": "swh", + "sameas": "bioregistry.swh", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://archive.softwareheritage.org/browse/swh:$1" + }, + "bioregistry.swh.n2t": { + "authority": "n2t", + "homepage": "https://archive.softwareheritage.org", + "id": "bioregistry.swh.n2t", + "name": "Software Heritage", + "prefix": "swh", + "sameas": "bioregistry.swh", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://archive.softwareheritage.org/browse/swh:$1" + }, + "bioregistry.swiss-model": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.swiss-model", + "name": "SWISS-MODEL repository of 3D protein structure models", + "prefix": "swiss-model", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://swissmodel.expasy.org/repository/uniprot/$1" + }, + "bioregistry.swiss-model.miriam": { + "authority": "miriam", + "homepage": "https://swissmodel.expasy.org", + "id": "bioregistry.swiss-model.miriam", + "name": "SWISS-MODEL Repository", + "prefix": "swiss-model", + "sameas": "bioregistry.swiss-model", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://swissmodel.expasy.org/repository/uniprot/$1" + }, + "bioregistry.swiss-model.n2t": { + "authority": "n2t", + "homepage": "https://swissmodel.expasy.org", + "id": "bioregistry.swiss-model.n2t", + "name": "SWISS-MODEL at SIB Swiss Institute of Bioinformatics", + "prefix": "swiss-model", + "sameas": "bioregistry.swiss-model", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://swissmodel.expasy.org/repository/uniprot/$1" + }, + "bioregistry.swiss-model.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://swissmodel.expasy.org/", + "id": "bioregistry.swiss-model.prefixcommons", + "name": "SWISS-MODEL repository of 3D protein structure models", + "prefix": "swissmodel", + "sameas": "bioregistry.swiss-model", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://swissmodel.expasy.org/repository/smr.php?sptr_ac=$1" + }, + "bioregistry.swissregulon": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.swissregulon", + "name": "SwissRegulon", + "prefix": "swissregulon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://swissregulon.unibas.ch/query/$1" + }, + "bioregistry.swissregulon.miriam": { + "authority": "miriam", + "homepage": "http://swissregulon.unibas.ch", + "id": "bioregistry.swissregulon.miriam", + "name": "SwissRegulon", + "prefix": "swissregulon", + "sameas": "bioregistry.swissregulon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://swissregulon.unibas.ch/query/$1" + }, + "bioregistry.swissregulon.n2t": { + "authority": "n2t", + "homepage": "http://swissregulon.unibas.ch", + "id": "bioregistry.swissregulon.n2t", + "name": "SwissRegulon", + "prefix": "swissregulon", + "sameas": "bioregistry.swissregulon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://swissregulon.unibas.ch/query/$1" + }, + "bioregistry.symp": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.symp", + "name": "Symptom Ontology ID", + "prefix": "symp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/symp/terms?iri=http://purl.obolibrary.org/obo/SYMP_$1" + }, + "bioregistry.symp.wikidata": { + "authority": "wikidata", + "homepage": "https://github.com/DiseaseOntology/SymptomOntology", + "id": "bioregistry.symp.wikidata", + "name": "Symptom Ontology ID", + "prefix": "P8656", + "sameas": "bioregistry.symp", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/symp/terms?iri=http://purl.obolibrary.org/obo/SYMP_$1" + }, + "bioregistry.t3db": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.t3db", + "name": "Toxin and Toxin Target Database", + "prefix": "t3db", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.t3db.org/toxins/$1" + }, + "bioregistry.t3db.miriam": { + "authority": "miriam", + "homepage": "http://www.t3db.org/", + "id": "bioregistry.t3db.miriam", + "name": "T3DB", + "prefix": "t3db", + "sameas": "bioregistry.t3db", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.t3db.org/toxins/$1" + }, + "bioregistry.t3db.n2t": { + "authority": "n2t", + "homepage": "http://www.t3db.org/", + "id": "bioregistry.t3db.n2t", + "name": "Toxin and Toxin Target Database", + "prefix": "t3db", + "sameas": "bioregistry.t3db", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.t3db.org/toxins/$1" + }, + "bioregistry.t3db.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.t3db.org/", + "id": "bioregistry.t3db.prefixcommons", + "name": "Toxin and Toxin Target Database", + "prefix": "t3db", + "sameas": "bioregistry.t3db", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.t3db.org/toxins/$1" + }, + "bioregistry.tair.gene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.tair.gene", + "name": "The Arabidopsis Information Resource (TAIR) Gene", + "prefix": "tair.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://arabidopsis.org/servlets/TairObject?accession=$1" + }, + "bioregistry.tair.gene.miriam": { + "authority": "miriam", + "homepage": "http://arabidopsis.org/index.jsp", + "id": "bioregistry.tair.gene.miriam", + "name": "TAIR Gene", + "prefix": "tair.gene", + "sameas": "bioregistry.tair.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://arabidopsis.org/servlets/TairObject?accession=$1" + }, + "bioregistry.tair.gene.n2t": { + "authority": "n2t", + "homepage": "http://arabidopsis.org/index.jsp", + "id": "bioregistry.tair.gene.n2t", + "name": "The Arabidopsis Information Resource (TAIR) Gene", + "prefix": "tair.gene", + "sameas": "bioregistry.tair.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://arabidopsis.org/servlets/TairObject?accession=$1" + }, + "bioregistry.tair.gene.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.tair.gene.prefixcommons", + "name": "TAIR-Gene", + "prefix": "tair.gene", + "sameas": "bioregistry.tair.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://arabidopsis.org/servlets/TairObject?accession=$1" + }, + "bioregistry.tair.locus": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.tair.locus", + "name": "The Arabidopsis Information Resource (TAIR) Locus", + "prefix": "tair.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.arabidopsis.org/servlets/TairObject?accession=Locus:$1" + }, + "bioregistry.tair.locus.miriam": { + "authority": "miriam", + "homepage": "http://arabidopsis.org/index.jsp", + "id": "bioregistry.tair.locus.miriam", + "name": "TAIR Locus", + "prefix": "tair.locus", + "sameas": "bioregistry.tair.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.arabidopsis.org/servlets/TairObject?accession=Locus:$1" + }, + "bioregistry.tair.locus.n2t": { + "authority": "n2t", + "homepage": "http://arabidopsis.org/index.jsp", + "id": "bioregistry.tair.locus.n2t", + "name": "The Arabidopsis Information Resource (TAIR) Locus", + "prefix": "tair.locus", + "sameas": "bioregistry.tair.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.arabidopsis.org/servlets/TairObject?accession=Locus:$1" + }, + "bioregistry.tair.locus.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.tair.locus.prefixcommons", + "name": "TAIR-Locus", + "prefix": "tair.locus", + "sameas": "bioregistry.tair.locus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://arabidopsis.org/servlets/TairObject?type=locus&name=$1" + }, + "bioregistry.tair.protein": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.tair.protein", + "name": "The Arabidopsis Information Resource (TAIR) Protein", + "prefix": "tair.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://arabidopsis.org/servlets/TairObject?accession=$1" + }, + "bioregistry.tair.protein.miriam": { + "authority": "miriam", + "homepage": "http://arabidopsis.org/index.jsp", + "id": "bioregistry.tair.protein.miriam", + "name": "TAIR Protein", + "prefix": "tair.protein", + "sameas": "bioregistry.tair.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://arabidopsis.org/servlets/TairObject?accession=$1" + }, + "bioregistry.tair.protein.n2t": { + "authority": "n2t", + "homepage": "http://arabidopsis.org/index.jsp", + "id": "bioregistry.tair.protein.n2t", + "name": "The Arabidopsis Information Resource (TAIR) Protein", + "prefix": "tair.protein", + "sameas": "bioregistry.tair.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://arabidopsis.org/servlets/TairObject?accession=$1" + }, + "bioregistry.tair.protein.prefixcommons": { + "authority": "prefixcommons", + "homepage": null, + "id": "bioregistry.tair.protein.prefixcommons", + "name": "TAIR-Protein", + "prefix": "tair.protein", + "sameas": "bioregistry.tair.protein", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://arabidopsis.org/servlets/TairObject?accession=$1" + }, + "bioregistry.tarbase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.tarbase", + "name": "TarBase v7 at University of Thessaly", + "prefix": "tarbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index&mirnas=$1" + }, + "bioregistry.tarbase.miriam": { + "authority": "miriam", + "homepage": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index", + "id": "bioregistry.tarbase.miriam", + "name": "TarBase", + "prefix": "tarbase", + "sameas": "bioregistry.tarbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index&mirnas=$1" + }, + "bioregistry.tarbase.n2t": { + "authority": "n2t", + "homepage": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index", + "id": "bioregistry.tarbase.n2t", + "name": "TarBase v7 at University of Thessaly", + "prefix": "tarbase", + "sameas": "bioregistry.tarbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index&mirnas=$1" + }, + "bioregistry.tcb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.tcb", + "name": "Tick Cell Biobank", + "prefix": "tcb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.pirbright.ac.uk/node/$1" + }, + "bioregistry.tcb.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.pirbright.ac.uk/tick-cell-lines-views-page", + "id": "bioregistry.tcb.cellosaurus", + "name": "Tick Cell Biobank", + "prefix": "TCB", + "sameas": "bioregistry.tcb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.pirbright.ac.uk/node/$1" + }, + "bioregistry.tccd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.tccd", + "name": "The Cell Cycle DB", + "prefix": "tccd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.itb.cnr.it/cellcycle/gene_rep.php?gene_name=$1" + }, + "bioregistry.tccd.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.itb.cnr.it/cellcycle", + "id": "bioregistry.tccd.prefixcommons", + "name": "The Cell Cycle DB", + "prefix": "tccd", + "sameas": "bioregistry.tccd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.itb.cnr.it/cellcycle/gene_rep.php?gene_name=$1" + }, + "bioregistry.tcdb": { + "authority": "bioregistry", + "homepage": "https://www.tcdb.org", + "id": "bioregistry.tcdb", + "name": "Transporter Classification Database ID", + "prefix": "tcdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.tcdb.org/tcdb/index.php?tc=$1" + }, + "bioregistry.tcdb.go": { + "authority": "go", + "homepage": "http://www.tcdb.org/", + "id": "bioregistry.tcdb.go", + "name": "Transport Protein Database", + "prefix": "TC", + "sameas": "bioregistry.tcdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.tcdb.org/tcdb/index.php?tc=$1" + }, + "bioregistry.tcdb.miriam": { + "authority": "miriam", + "homepage": "http://www.tcdb.org/", + "id": "bioregistry.tcdb.miriam", + "name": "Transport Classification Database", + "prefix": "tcdb", + "sameas": "bioregistry.tcdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.tcdb.org/search/result.php?tc=$1" + }, + "bioregistry.tcdb.n2t": { + "authority": "n2t", + "homepage": "http://www.tcdb.org/", + "id": "bioregistry.tcdb.n2t", + "name": "TCDB", + "prefix": "tcdb", + "sameas": "bioregistry.tcdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.tcdb.org/search/result.php?tc=$1" + }, + "bioregistry.tcdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.tcdb.org/", + "id": "bioregistry.tcdb.prefixcommons", + "name": "Transport Classification Database", + "prefix": "tcdb", + "sameas": "bioregistry.tcdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.tcdb.org/search/result.php?tc=$1" + }, + "bioregistry.tcdb.uniprot": { + "authority": "uniprot", + "homepage": "http://www.tcdb.org/", + "id": "bioregistry.tcdb.uniprot", + "name": "Transport Classification Database", + "prefix": "DB-0135", + "sameas": "bioregistry.tcdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.tcdb.org/search/result.php?tc=$1" + }, + "bioregistry.tcdb.wikidata": { + "authority": "wikidata", + "homepage": "https://www.tcdb.org", + "id": "bioregistry.tcdb.wikidata", + "name": "Transporter Classification Database ID", + "prefix": "P7260", + "sameas": "bioregistry.tcdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.tcdb.org/search/result.php?tc=$1" + }, + "bioregistry.tfclass": { + "authority": "bioregistry", + "homepage": "http://tfclass.bioinf.med.uni-goettingen.de", + "id": "bioregistry.tfclass", + "name": "TFClass is a resource for the classification of eukaryotic transcription factors based on the characteristics of their DNA-binding domains", + "prefix": "tfclass", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://tfclass.bioinf.med.uni-goettingen.de/?tfclass=$1" + }, + "bioregistry.tfclass.go": { + "authority": "go", + "homepage": "http://tfclass.bioinf.med.uni-goettingen.de/", + "id": "bioregistry.tfclass.go", + "name": "TFClass is a resource for the classification of eukaryotic transcription factors based on the characteristics of their DNA-binding domains", + "prefix": "TFClass", + "sameas": "bioregistry.tfclass", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://tfclass.bioinf.med.uni-goettingen.de/?tfclass=$1" + }, + "bioregistry.tgd": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.tgd", + "name": "Tetrahymena Genome Database", + "prefix": "tgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://phage.bioc.tulane.edu/cgi-bin/gbrowse/$1?name=$1" + }, + "bioregistry.tgd.miriam": { + "authority": "miriam", + "homepage": "http://ciliate.org/index.php/", + "id": "bioregistry.tgd.miriam", + "name": "Tetrahymena Genome Database", + "prefix": "tgd", + "sameas": "bioregistry.tgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ciliate.org/index.php/feature/details/$1" + }, + "bioregistry.tgd.n2t": { + "authority": "n2t", + "homepage": "http://ciliate.org/index.php/", + "id": "bioregistry.tgd.n2t", + "name": "TGD at Stanford University", + "prefix": "tgd", + "sameas": "bioregistry.tgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://ciliate.org/index.php/feature/details/$1" + }, + "bioregistry.tgd.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://phage.bioc.tulane.edu", + "id": "bioregistry.tgd.prefixcommons", + "name": "T4-like genome database", + "prefix": "tgd", + "sameas": "bioregistry.tgd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://phage.bioc.tulane.edu/cgi-bin/gbrowse/$1?name=$1" + }, + "bioregistry.tigrfam": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.tigrfam", + "name": "TIGRFAMs HMM collection at the J. Craig Venter Institute", + "prefix": "tigrfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.jcvi.org/cgi-bin/tigrfams/HmmReportPage.cgi?acc=$1" + }, + "bioregistry.tigrfam.miriam": { + "authority": "miriam", + "homepage": "http://www.jcvi.org/cgi-bin/tigrfams/Listing.cgi", + "id": "bioregistry.tigrfam.miriam", + "name": "TIGRFAMS", + "prefix": "tigrfam", + "sameas": "bioregistry.tigrfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.jcvi.org/cgi-bin/tigrfams/HmmReportPage.cgi?acc=$1" + }, + "bioregistry.tigrfam.n2t": { + "authority": "n2t", + "homepage": "http://www.jcvi.org/cgi-bin/tigrfams/Listing.cgi", + "id": "bioregistry.tigrfam.n2t", + "name": "TIGRFAM at JCVI", + "prefix": "tigrfam", + "sameas": "bioregistry.tigrfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.jcvi.org/cgi-bin/tigrfams/HmmReportPage.cgi?acc=$1" + }, + "bioregistry.tigrfam.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.jcvi.org/cms/research/projects/tigrfams/", + "id": "bioregistry.tigrfam.prefixcommons", + "name": "TIGRFAMs HMM collection at the J. Craig Venter Institute", + "prefix": "tigrfams", + "sameas": "bioregistry.tigrfam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://cmr.jcvi.org/cgi-bin/CMR/HmmReport.cgi?hmm_acc=$1" + }, + "bioregistry.tkg": { + "authority": "bioregistry", + "homepage": "http://www2.idac.tohoku.ac.jp/dep/ccr/", + "id": "bioregistry.tkg", + "name": "Tohoku University cell line catalog", + "prefix": "tkg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www2.idac.tohoku.ac.jp/dep/ccr/TKGdate/TKGvo10%n/$1.html" + }, + "bioregistry.tkg.cellosaurus": { + "authority": "cellosaurus", + "homepage": "http://www2.idac.tohoku.ac.jp/dep/ccr/", + "id": "bioregistry.tkg.cellosaurus", + "name": "Tohoku University cell line catalog", + "prefix": "TKG", + "sameas": "bioregistry.tkg", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www2.idac.tohoku.ac.jp/dep/ccr/TKGdate/TKGvo10%n/$1.html" + }, + "bioregistry.tngb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.tngb", + "name": "Telethon Network of Genetic Biobanks", + "prefix": "tngb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://biobanknetwork.telethon.it/Sample/View?sampleId=$1" + }, + "bioregistry.tngb.cellosaurus": { + "authority": "cellosaurus", + "homepage": "http://biobanknetwork.telethon.it/", + "id": "bioregistry.tngb.cellosaurus", + "name": "Telethon Network of Genetic Biobanks", + "prefix": "TNGB", + "sameas": "bioregistry.tngb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://biobanknetwork.telethon.it/Sample/View?sampleId=$1" + }, + "bioregistry.togovar": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.togovar", + "name": "TogoVar", + "prefix": "togovar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://grch38.togovar.org/variant/$1" + }, + "bioregistry.togovar.miriam": { + "authority": "miriam", + "homepage": "https://grch38.togovar.org/", + "id": "bioregistry.togovar.miriam", + "name": "TogoVar", + "prefix": "togovar", + "sameas": "bioregistry.togovar", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://grch38.togovar.org/variant/$1" + }, + "bioregistry.tokue": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.tokue", + "name": "TOKU-E Cell-culture Database", + "prefix": "tokue", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cell-lines.toku-e.com/Cell-Lines_$1.html" + }, + "bioregistry.tokue.cellosaurus": { + "authority": "cellosaurus", + "homepage": "http://cell-lines.toku-e.com", + "id": "bioregistry.tokue.cellosaurus", + "name": "TOKU-E Cell-culture Database", + "prefix": "TOKU-E", + "sameas": "bioregistry.tokue", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://cell-lines.toku-e.com/Cell-Lines_$1.html" + }, + "bioregistry.tol": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.tol", + "name": "Tree of Life Web Project ID", + "prefix": "tol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://tolweb.org/$1" + }, + "bioregistry.tol.miriam": { + "authority": "miriam", + "homepage": "http://tolweb.org/tree/", + "id": "bioregistry.tol.miriam", + "name": "Tree of Life", + "prefix": "tol", + "sameas": "bioregistry.tol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://tolweb.org/$1" + }, + "bioregistry.tol.n2t": { + "authority": "n2t", + "homepage": "http://tolweb.org/tree/", + "id": "bioregistry.tol.n2t", + "name": "Tree of Life Web", + "prefix": "tol", + "sameas": "bioregistry.tol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://tolweb.org/$1" + }, + "bioregistry.tol.wikidata": { + "authority": "wikidata", + "homepage": "http://tolweb.org/tree/", + "id": "bioregistry.tol.wikidata", + "name": "Tree of Life Web Project ID", + "prefix": "P5221", + "sameas": "bioregistry.tol", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://tolweb.org/$1" + }, + "bioregistry.topdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.topdb", + "name": "Topology Data Bank of Transmembrane Proteins", + "prefix": "topdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://topdb.enzim.hu/?m=show&id=$1" + }, + "bioregistry.topdb.miriam": { + "authority": "miriam", + "homepage": "http://topdb.enzim.hu/", + "id": "bioregistry.topdb.miriam", + "name": "TOPDB", + "prefix": "topdb", + "sameas": "bioregistry.topdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://topdb.enzim.hu/?m=show&id=$1" + }, + "bioregistry.topdb.n2t": { + "authority": "n2t", + "homepage": "http://topdb.enzim.hu/", + "id": "bioregistry.topdb.n2t", + "name": "TOPDB at Hungarian Academy of Sciences", + "prefix": "topdb", + "sameas": "bioregistry.topdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://topdb.enzim.hu/?m=show&id=$1" + }, + "bioregistry.topdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://topdb.enzim.hu", + "id": "bioregistry.topdb.prefixcommons", + "name": "The Topology Databank", + "prefix": "topdb", + "sameas": "bioregistry.topdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://topdb.enzim.hu/?m=show&id=$1" + }, + "bioregistry.topfind": { + "authority": "bioregistry", + "homepage": "https://topfind.clip.msl.ubc.ca", + "id": "bioregistry.topfind", + "name": "Termini-Oriented Protein Function INferred Database", + "prefix": "topfind", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://clipserve.clip.ubc.ca/topfind/proteins/$1" + }, + "bioregistry.topfind.miriam": { + "authority": "miriam", + "homepage": "http://clipserve.clip.ubc.ca/topfind", + "id": "bioregistry.topfind.miriam", + "name": "TopFind", + "prefix": "topfind", + "sameas": "bioregistry.topfind", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://clipserve.clip.ubc.ca/topfind/proteins/$1" + }, + "bioregistry.topfind.n2t": { + "authority": "n2t", + "homepage": "http://clipserve.clip.ubc.ca/topfind", + "id": "bioregistry.topfind.n2t", + "name": "TopFind at University of British Columbia", + "prefix": "topfind", + "sameas": "bioregistry.topfind", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://clipserve.clip.ubc.ca/topfind/proteins/$1" + }, + "bioregistry.toxoplasma": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.toxoplasma", + "name": "ToxoDB at EuPathDB", + "prefix": "toxoplasma", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://toxodb.org/toxo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.toxoplasma.miriam": { + "authority": "miriam", + "homepage": "http://toxodb.org/toxo/", + "id": "bioregistry.toxoplasma.miriam", + "name": "ToxoDB", + "prefix": "toxoplasma", + "sameas": "bioregistry.toxoplasma", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://toxodb.org/toxo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.toxoplasma.n2t": { + "authority": "n2t", + "homepage": "http://toxodb.org/toxo/", + "id": "bioregistry.toxoplasma.n2t", + "name": "ToxoDB at EuPathDB", + "prefix": "toxoplasma", + "sameas": "bioregistry.toxoplasma", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://toxodb.org/toxo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.transportdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.transportdb", + "name": "TransportDB", + "prefix": "transportdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.membranetransport.org/protein.php?pOID=mmar1&pSynonym=$1" + }, + "bioregistry.transportdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.membranetransport.org", + "id": "bioregistry.transportdb.prefixcommons", + "name": "TransportDB", + "prefix": "transportdb", + "sameas": "bioregistry.transportdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.membranetransport.org/protein.php?pOID=mmar1&pSynonym=$1" + }, + "bioregistry.transyt": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.transyt", + "name": "Transport Systems Tracker", + "prefix": "transyt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://transyt.bio.di.uminho.pt/reactions/$1" + }, + "bioregistry.transyt.miriam": { + "authority": "miriam", + "homepage": "https://www.bio.di.uminho.pt/", + "id": "bioregistry.transyt.miriam", + "name": "TranSyT", + "prefix": "transyt", + "sameas": "bioregistry.transyt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://transyt.bio.di.uminho.pt/reactions/$1" + }, + "bioregistry.tred": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.tred", + "name": "Transcriptional Regulatory Element Database", + "prefix": "tred", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://rulai.cshl.edu/cgi-bin/TRED/tred.cgi?process=geneInfo&gid=$1" + }, + "bioregistry.tred.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://rulai.cshl.edu/TRED", + "id": "bioregistry.tred.prefixcommons", + "name": "Transcriptional Regulatory Element Database", + "prefix": "tred", + "sameas": "bioregistry.tred", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://rulai.cshl.edu/cgi-bin/TRED/tred.cgi?process=geneInfo&gid=$1" + }, + "bioregistry.treebase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.treebase", + "name": "TreeBASE (hosted at National Evolutionary Synthesis Center)", + "prefix": "treebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.treebase.org/treebase-web/search/study/summary.html?id=$1" + }, + "bioregistry.treebase.miriam": { + "authority": "miriam", + "homepage": "http://treebase.org/", + "id": "bioregistry.treebase.miriam", + "name": "TreeBASE", + "prefix": "treebase", + "sameas": "bioregistry.treebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/phylo/treebase/phylows/study/$1?format=html" + }, + "bioregistry.treebase.n2t": { + "authority": "n2t", + "homepage": "http://treebase.org/", + "id": "bioregistry.treebase.n2t", + "name": "TreeBASE (hosted at National Evolutionary Synthesis Center)", + "prefix": "treebase", + "sameas": "bioregistry.treebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/phylo/treebase/phylows/study/$1?format=html" + }, + "bioregistry.treebase.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.treebase.org/", + "id": "bioregistry.treebase.prefixcommons", + "name": "TreeBase", + "prefix": "treebase", + "sameas": "bioregistry.treebase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.treebase.org/treebase-web/search/study/summary.html?id=$1" + }, + "bioregistry.treefam": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.treefam", + "name": "TreeFam database of animal gene trees", + "prefix": "treefam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.treefam.org/family/$1" + }, + "bioregistry.treefam.miriam": { + "authority": "miriam", + "homepage": "http://www.treefam.org/", + "id": "bioregistry.treefam.miriam", + "name": "TreeFam", + "prefix": "treefam", + "sameas": "bioregistry.treefam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.treefam.org/family/$1" + }, + "bioregistry.treefam.n2t": { + "authority": "n2t", + "homepage": "http://www.treefam.org/", + "id": "bioregistry.treefam.n2t", + "name": "TreeFam database", + "prefix": "treefam", + "sameas": "bioregistry.treefam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.treefam.org/family/$1" + }, + "bioregistry.treefam.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.treefam.org", + "id": "bioregistry.treefam.prefixcommons", + "name": "TreeFam", + "prefix": "treefam", + "sameas": "bioregistry.treefam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.treefam.org/cgi-bin/TFinfo.pl?ac=$1" + }, + "bioregistry.treefam.uniprot": { + "authority": "uniprot", + "homepage": "http://www.treefam.org", + "id": "bioregistry.treefam.uniprot", + "name": "TreeFam database of animal gene trees", + "prefix": "DB-0185", + "sameas": "bioregistry.treefam", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.treefam.org/family/$1" + }, + "bioregistry.trichdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.trichdb", + "name": "TrichDB at EuPathDB", + "prefix": "trichdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://trichdb.org/trichdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.trichdb.miriam": { + "authority": "miriam", + "homepage": "http://trichdb.org/trichdb/", + "id": "bioregistry.trichdb.miriam", + "name": "TrichDB", + "prefix": "trichdb", + "sameas": "bioregistry.trichdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://trichdb.org/trichdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.trichdb.n2t": { + "authority": "n2t", + "homepage": "http://trichdb.org/trichdb/", + "id": "bioregistry.trichdb.n2t", + "name": "TrichDB at EuPathDB", + "prefix": "trichdb", + "sameas": "bioregistry.trichdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://trichdb.org/trichdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.tritrypdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.tritrypdb", + "name": "TriTrypDB at EuPathDB", + "prefix": "tritrypdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://tritrypdb.org/tritrypdb/app/record/gene/$1" + }, + "bioregistry.tritrypdb.go": { + "authority": "go", + "homepage": "https://tritrypdb.org/", + "id": "bioregistry.tritrypdb.go", + "name": "TriTrypDB", + "prefix": "TriTrypDB", + "sameas": "bioregistry.tritrypdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://tritrypdb.org/tritrypdb/app/record/gene/$1" + }, + "bioregistry.tritrypdb.miriam": { + "authority": "miriam", + "homepage": "http://tritrypdb.org/tritrypdb/", + "id": "bioregistry.tritrypdb.miriam", + "name": "TriTrypDB", + "prefix": "tritrypdb", + "sameas": "bioregistry.tritrypdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://tritrypdb.org/tritrypdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.tritrypdb.n2t": { + "authority": "n2t", + "homepage": "http://tritrypdb.org/tritrypdb/", + "id": "bioregistry.tritrypdb.n2t", + "name": "TriTrypDB at EuPathDB", + "prefix": "tritrypdb", + "sameas": "bioregistry.tritrypdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://tritrypdb.org/tritrypdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id=$1" + }, + "bioregistry.trnadbce": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.trnadbce", + "name": "tRNA Gene Database", + "prefix": "trnadbce", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://trna.nagahama-i-bio.ac.jp/cgi-bin/trnadb/whole_detail.cgi?SID=$1" + }, + "bioregistry.trnadbce.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://trna.nagahama-i-bio.ac.jp", + "id": "bioregistry.trnadbce.prefixcommons", + "name": "tRNA Gene Database", + "prefix": "trnadbce", + "sameas": "bioregistry.trnadbce", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://trna.nagahama-i-bio.ac.jp/cgi-bin/trnadb/whole_detail.cgi?SID=$1" + }, + "bioregistry.ttd.drug": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ttd.drug", + "name": "Therapeutic Target Database Drug", + "prefix": "ttd.drug", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDRUG.asp?ID=$1" + }, + "bioregistry.ttd.drug.miriam": { + "authority": "miriam", + "homepage": "http://bidd.nus.edu.sg/group/ttd/ttd.asp", + "id": "bioregistry.ttd.drug.miriam", + "name": "TTD Drug", + "prefix": "ttd.drug", + "sameas": "bioregistry.ttd.drug", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDRUG.asp?ID=$1" + }, + "bioregistry.ttd.drug.n2t": { + "authority": "n2t", + "homepage": "http://bidd.nus.edu.sg/group/ttd/ttd.asp", + "id": "bioregistry.ttd.drug.n2t", + "name": "Therapeutic Target Database Drug", + "prefix": "ttd.drug", + "sameas": "bioregistry.ttd.drug", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDRUG.asp?ID=$1" + }, + "bioregistry.ttd.target": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ttd.target", + "name": "Therapeutic Target Database Target", + "prefix": "ttd.target", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDetail.asp?ID=$1" + }, + "bioregistry.ttd.target.miriam": { + "authority": "miriam", + "homepage": "http://bidd.nus.edu.sg/group/ttd/ttd.asp", + "id": "bioregistry.ttd.target.miriam", + "name": "TTD Target", + "prefix": "ttd.target", + "sameas": "bioregistry.ttd.target", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDetail.asp?ID=$1" + }, + "bioregistry.ttd.target.n2t": { + "authority": "n2t", + "homepage": "http://bidd.nus.edu.sg/group/ttd/ttd.asp", + "id": "bioregistry.ttd.target.n2t", + "name": "Therapeutic Target Database Target", + "prefix": "ttd.target", + "sameas": "bioregistry.ttd.target", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDetail.asp?ID=$1" + }, + "bioregistry.uberon": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.uberon", + "name": "Uberon multi-species anatomy ontology", + "prefix": "uberon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/uberon/terms?obo_id=UBERON:$1" + }, + "bioregistry.uberon.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://uberon.github.io/", + "id": "bioregistry.uberon.cellosaurus", + "name": "Uber-anatomy ontology", + "prefix": "UBERON", + "sameas": "bioregistry.uberon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols/ontologies/cl/terms?iri=http://purl.obolibrary.org/obo/$1" + }, + "bioregistry.uberon.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/ols4/ontologies/uberon", + "id": "bioregistry.uberon.miriam", + "name": "UBERON", + "prefix": "uberon", + "sameas": "bioregistry.uberon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/ols4/ontologies/uberon/terms?obo_id=UBERON:$1" + }, + "bioregistry.uberon.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/UBERON", + "id": "bioregistry.uberon.n2t", + "name": "UBERON through bioPortal", + "prefix": "uberon", + "sameas": "bioregistry.uberon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/UBERON/UBERON:$1" + }, + "bioregistry.uberon.wikidata": { + "authority": "wikidata", + "homepage": "http://uberon.github.io", + "id": "bioregistry.uberon.wikidata", + "name": "UBERON ID", + "prefix": "P1554", + "sameas": "bioregistry.uberon", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/UBERON_$1" + }, + "bioregistry.ubio.namebank": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ubio.namebank", + "name": "uBio NameBank at The Marine Biological Laboratory", + "prefix": "ubio.namebank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ubio.org/browser/details.php?namebankID=$1" + }, + "bioregistry.ubio.namebank.miriam": { + "authority": "miriam", + "homepage": "http://www.ubio.org", + "id": "bioregistry.ubio.namebank.miriam", + "name": "uBio NameBank", + "prefix": "ubio.namebank", + "sameas": "bioregistry.ubio.namebank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ubio.org/browser/details.php?namebankID=$1" + }, + "bioregistry.ubio.namebank.n2t": { + "authority": "n2t", + "homepage": "http://www.ubio.org", + "id": "bioregistry.ubio.namebank.n2t", + "name": "uBio NameBank at The Marine Biological Laboratory", + "prefix": "ubio.namebank", + "sameas": "bioregistry.ubio.namebank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ubio.org/browser/details.php?namebankID=$1" + }, + "bioregistry.ucsc": { + "authority": "bioregistry", + "homepage": "https://genome.ucsc.edu/", + "id": "bioregistry.ucsc", + "name": "UCSC Genome Browser assembly ID", + "prefix": "ucsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://genome.ucsc.edu/cgi-bin/hgTracks?db=$1" + }, + "bioregistry.ucsc.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.ucsc.biocontext", + "name": null, + "prefix": "UCSC", + "sameas": "bioregistry.ucsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "ftp://hgdownload.cse.ucsc.edu/goldenPath/$1" + }, + "bioregistry.ucsc.uniprot": { + "authority": "uniprot", + "homepage": "https://genome.ucsc.edu/", + "id": "bioregistry.ucsc.uniprot", + "name": "UCSC genome browser", + "prefix": "DB-0139", + "sameas": "bioregistry.ucsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://genome.ucsc.edu/cgi-bin/hgLinkIn?resource=uniprot&id=$1" + }, + "bioregistry.ucsc.wikidata": { + "authority": "wikidata", + "homepage": "https://genome.ucsc.edu", + "id": "bioregistry.ucsc.wikidata", + "name": "UCSC Genome Browser assembly ID", + "prefix": "P2576", + "sameas": "bioregistry.ucsc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://genome.ucsc.edu/cgi-bin/hgTracks?db=$1" + }, + "bioregistry.ukprn": { + "authority": "bioregistry", + "homepage": "https://www.ukrlp.co.uk", + "id": "bioregistry.ukprn", + "name": "UK Provider Reference Number", + "prefix": "ukprn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ukrlp.co.uk/ukrlp/ukrlp_provider.page_pls_provDetails?x=&pn_p_id=$1&pv_status=VERIFIED&pv_vis_code=L" + }, + "bioregistry.ukprn.wikidata": { + "authority": "wikidata", + "homepage": "https://www.ukrlp.co.uk/", + "id": "bioregistry.ukprn.wikidata", + "name": "UK Provider Reference Number", + "prefix": "P4971", + "sameas": "bioregistry.ukprn", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ukrlp.co.uk/ukrlp/ukrlp_provider.page_pls_provDetails?x=&pn_p_id=$1&pv_status=VERIFIED&pv_vis_code=L" + }, + "bioregistry.umbbd.compound": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.umbbd.compound", + "name": "Biocatalysis/Biodegradation Database Mirror (Compound) at ETH Zurich", + "prefix": "umbbd.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=c&compID=$1" + }, + "bioregistry.umbbd.compound.miriam": { + "authority": "miriam", + "homepage": "http://umbbd.ethz.ch/", + "id": "bioregistry.umbbd.compound.miriam", + "name": "UM-BBD Compound", + "prefix": "umbbd.compound", + "sameas": "bioregistry.umbbd.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=c&compID=$1" + }, + "bioregistry.umbbd.compound.n2t": { + "authority": "n2t", + "homepage": "http://umbbd.ethz.ch/", + "id": "bioregistry.umbbd.compound.n2t", + "name": "Biocatalysis/Biodegradation Database Mirror (Compound) at ETH Zurich", + "prefix": "umbbd.compound", + "sameas": "bioregistry.umbbd.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=c&compID=$1" + }, + "bioregistry.umbbd.compound.wikidata": { + "authority": "wikidata", + "homepage": "http://eawag-bbd.ethz.ch/servlets/pageservlet?ptype=allcomps", + "id": "bioregistry.umbbd.compound.wikidata", + "name": "UM-BBD compound ID", + "prefix": "P8121", + "sameas": "bioregistry.umbbd.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://eawag-bbd.ethz.ch/servlets/pageservlet?ptype=c&compID=$1" + }, + "bioregistry.umbbd.enzyme": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.umbbd.enzyme", + "name": "Biocatalysis/Biodegradation Database Mirror (Enzyme) at ETH Zurich", + "prefix": "umbbd.enzyme", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=ep&enzymeID=$1" + }, + "bioregistry.umbbd.enzyme.go": { + "authority": "go", + "homepage": "http://eawag-bbd.ethz.ch/", + "id": "bioregistry.umbbd.enzyme.go", + "name": "EAWAG Biocatalysis/Biodegradation Database", + "prefix": "UM-BBD_enzymeID", + "sameas": "bioregistry.umbbd.enzyme", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://eawag-bbd.ethz.ch/servlets/pageservlet?ptype=ep&enzymeID=$1" + }, + "bioregistry.umbbd.enzyme.miriam": { + "authority": "miriam", + "homepage": "http://umbbd.ethz.ch/", + "id": "bioregistry.umbbd.enzyme.miriam", + "name": "UM-BBD Enzyme", + "prefix": "umbbd.enzyme", + "sameas": "bioregistry.umbbd.enzyme", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=ep&enzymeID=$1" + }, + "bioregistry.umbbd.enzyme.n2t": { + "authority": "n2t", + "homepage": "http://umbbd.ethz.ch/", + "id": "bioregistry.umbbd.enzyme.n2t", + "name": "Biocatalysis/Biodegradation Database Mirror (Enzyme) at ETH Zurich", + "prefix": "umbbd.enzyme", + "sameas": "bioregistry.umbbd.enzyme", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=ep&enzymeID=$1" + }, + "bioregistry.umbbd.pathway": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.umbbd.pathway", + "name": "Biocatalysis/Biodegradation Database Mirror (Pathway) at ETH Zurich", + "prefix": "umbbd.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=p&pathway_abbr=$1" + }, + "bioregistry.umbbd.pathway.go": { + "authority": "go", + "homepage": "http://eawag-bbd.ethz.ch/", + "id": "bioregistry.umbbd.pathway.go", + "name": "EAWAG Biocatalysis/Biodegradation Database", + "prefix": "UM-BBD_pathwayID", + "sameas": "bioregistry.umbbd.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://eawag-bbd.ethz.ch/$1/$1_map.html" + }, + "bioregistry.umbbd.pathway.miriam": { + "authority": "miriam", + "homepage": "http://umbbd.ethz.ch/", + "id": "bioregistry.umbbd.pathway.miriam", + "name": "UM-BBD Pathway", + "prefix": "umbbd.pathway", + "sameas": "bioregistry.umbbd.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=p&pathway_abbr=$1" + }, + "bioregistry.umbbd.pathway.n2t": { + "authority": "n2t", + "homepage": "http://umbbd.ethz.ch/", + "id": "bioregistry.umbbd.pathway.n2t", + "name": "Biocatalysis/Biodegradation Database Mirror (Pathway) at ETH Zurich", + "prefix": "umbbd.pathway", + "sameas": "bioregistry.umbbd.pathway", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=p&pathway_abbr=$1" + }, + "bioregistry.umbbd.reaction": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.umbbd.reaction", + "name": "Biocatalysis/Biodegradation Database Mirror (Reaction) at ETH Zurich", + "prefix": "umbbd.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=r&reacID=$1" + }, + "bioregistry.umbbd.reaction.go": { + "authority": "go", + "homepage": "http://eawag-bbd.ethz.ch/", + "id": "bioregistry.umbbd.reaction.go", + "name": "EAWAG Biocatalysis/Biodegradation Database", + "prefix": "UM-BBD_reactionID", + "sameas": "bioregistry.umbbd.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://eawag-bbd.ethz.ch/servlets/pageservlet?ptype=r&reacID=$1" + }, + "bioregistry.umbbd.reaction.miriam": { + "authority": "miriam", + "homepage": "http://umbbd.ethz.ch/", + "id": "bioregistry.umbbd.reaction.miriam", + "name": "UM-BBD Reaction", + "prefix": "umbbd.reaction", + "sameas": "bioregistry.umbbd.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=r&reacID=$1" + }, + "bioregistry.umbbd.reaction.n2t": { + "authority": "n2t", + "homepage": "http://umbbd.ethz.ch/", + "id": "bioregistry.umbbd.reaction.n2t", + "name": "Biocatalysis/Biodegradation Database Mirror (Reaction) at ETH Zurich", + "prefix": "umbbd.reaction", + "sameas": "bioregistry.umbbd.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=r&reacID=$1" + }, + "bioregistry.umbbd.rule": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.umbbd.rule", + "name": "Biocatalysis/Biodegradation Database Mirror (Biotransformation Rule) at ETH Zurich", + "prefix": "umbbd.rule", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.umbbd.ethz.ch/servlets/rule.jsp?rule=$1" + }, + "bioregistry.umbbd.rule.go": { + "authority": "go", + "homepage": "http://eawag-bbd.ethz.ch/", + "id": "bioregistry.umbbd.rule.go", + "name": "EAWAG Biocatalysis/Biodegradation Database", + "prefix": "UM-BBD_ruleID", + "sameas": "bioregistry.umbbd.rule", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://eawag-bbd.ethz.ch/servlets/rule.jsp?rule=$1" + }, + "bioregistry.umbbd.rule.miriam": { + "authority": "miriam", + "homepage": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=allrules", + "id": "bioregistry.umbbd.rule.miriam", + "name": "UM-BBD Biotransformation Rule", + "prefix": "umbbd.rule", + "sameas": "bioregistry.umbbd.rule", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.umbbd.ethz.ch/servlets/rule.jsp?rule=$1" + }, + "bioregistry.umbbd.rule.n2t": { + "authority": "n2t", + "homepage": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=allrules", + "id": "bioregistry.umbbd.rule.n2t", + "name": "Biocatalysis/Biodegradation Database Mirror (Biotransformation Rule) at ETH Zurich", + "prefix": "umbbd.rule", + "sameas": "bioregistry.umbbd.rule", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.umbbd.ethz.ch/servlets/rule.jsp?rule=$1" + }, + "bioregistry.umls": { + "authority": "bioregistry", + "homepage": "https://www.nlm.nih.gov/research/umls", + "id": "bioregistry.umls", + "name": "Unified Medical Language System Concept Unique Identifier", + "prefix": "umls", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ncim-stage.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20Metathesaurus&code=$1" + }, + "bioregistry.umls.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.umls.biocontext", + "name": null, + "prefix": "UMLS", + "sameas": "bioregistry.umls", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://linkedlifedata.com/resource/umls/id/$1" + }, + "bioregistry.umls.miriam": { + "authority": "miriam", + "homepage": "http://linkedlifedata.com/", + "id": "bioregistry.umls.miriam", + "name": "UMLS", + "prefix": "umls", + "sameas": "bioregistry.umls", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://linkedlifedata.com/resource/umls/id/$1" + }, + "bioregistry.umls.n2t": { + "authority": "n2t", + "homepage": "http://linkedlifedata.com/", + "id": "bioregistry.umls.n2t", + "name": "Unified Medical Language System at LinkedLifeData", + "prefix": "umls", + "sameas": "bioregistry.umls", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://linkedlifedata.com/resource/umls/id/$1" + }, + "bioregistry.umls.wikidata": { + "authority": "wikidata", + "homepage": "https://www.nlm.nih.gov/research/umls/rxnorm/", + "id": "bioregistry.umls.wikidata", + "name": "UMLS CUI", + "prefix": "P2892", + "sameas": "bioregistry.umls", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ncim-stage.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20Metathesaurus&code=$1" + }, + "bioregistry.unichem": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.unichem", + "name": "UniChem compound ID", + "prefix": "unichem", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/unichem/compoundsources?type=uci&compound=$1" + }, + "bioregistry.unichem.wikidata": { + "authority": "wikidata", + "homepage": "https://chembl.gitbook.io/unichem/downloads", + "id": "bioregistry.unichem.wikidata", + "name": "UniChem compound ID", + "prefix": "P11089", + "sameas": "bioregistry.unichem", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/unichem/compoundsources?type=uci&compound=$1" + }, + "bioregistry.unigene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.unigene", + "name": "UniGene gene-oriented nucleotide sequence clusters", + "prefix": "unigene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/UniGene/clust.cgi?UGID=$1" + }, + "bioregistry.unigene.miriam": { + "authority": "miriam", + "homepage": "http://www.ncbi.nlm.nih.gov/unigene", + "id": "bioregistry.unigene.miriam", + "name": "UniGene", + "prefix": "unigene", + "sameas": "bioregistry.unigene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/UniGene/clust.cgi?UGID=$1" + }, + "bioregistry.unigene.n2t": { + "authority": "n2t", + "homepage": "http://www.ncbi.nlm.nih.gov/unigene", + "id": "bioregistry.unigene.n2t", + "name": "UniGene at NCBI", + "prefix": "unigene", + "sameas": "bioregistry.unigene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/UniGene/clust.cgi?UGID=$1" + }, + "bioregistry.unigene.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=unigene", + "id": "bioregistry.unigene.prefixcommons", + "name": "UniGene gene-oriented nucleotide sequence clusters", + "prefix": "unigene", + "sameas": "bioregistry.unigene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/UniGene/clust.cgi?UGID=$1" + }, + "bioregistry.unii": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.unii", + "name": "UNII at U.S. Food and Drug Administration", + "prefix": "unii", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://precision.fda.gov/uniisearch/srs/unii/$1" + }, + "bioregistry.unii.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.unii.biocontext", + "name": null, + "prefix": "UNII", + "sameas": "bioregistry.unii", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://fdasis.nlm.nih.gov/srs/unii/$1" + }, + "bioregistry.unii.miriam": { + "authority": "miriam", + "homepage": "https://precision.fda.gov/uniisearch", + "id": "bioregistry.unii.miriam", + "name": "UNII", + "prefix": "unii", + "sameas": "bioregistry.unii", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://precision.fda.gov/uniisearch/srs/unii/$1" + }, + "bioregistry.unii.n2t": { + "authority": "n2t", + "homepage": "http://fdasis.nlm.nih.gov/srs/", + "id": "bioregistry.unii.n2t", + "name": "UNII at U.S. Food and Drug Administration", + "prefix": "unii", + "sameas": "bioregistry.unii", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://fdasis.nlm.nih.gov/srs/srsdirect.jsp?regno=$1" + }, + "bioregistry.unii.wikidata": { + "authority": "wikidata", + "homepage": "http://fdasis.nlm.nih.gov/srs", + "id": "bioregistry.unii.wikidata", + "name": "UNII", + "prefix": "P652", + "sameas": "bioregistry.unii", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://precision.fda.gov/uniisearch/srs/unii/$1" + }, + "bioregistry.unimod": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.unimod", + "name": "Unimod protein modification database for mass spectrometry", + "prefix": "unimod", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.unimod.org/modifications_view.php?editid1=$1" + }, + "bioregistry.unimod.miriam": { + "authority": "miriam", + "homepage": "http://www.unimod.org/", + "id": "bioregistry.unimod.miriam", + "name": "Unimod", + "prefix": "unimod", + "sameas": "bioregistry.unimod", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.unimod.org/modifications_view.php?editid1=$1" + }, + "bioregistry.unimod.n2t": { + "authority": "n2t", + "homepage": "http://www.unimod.org/", + "id": "bioregistry.unimod.n2t", + "name": "Unimod at Matrix Sciences Ltd.", + "prefix": "unimod", + "sameas": "bioregistry.unimod", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.unimod.org/modifications_view.php?editid1=$1" + }, + "bioregistry.uniparc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.uniparc", + "name": "UniParc through UniProt", + "prefix": "uniparc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.uniprot.org/uniparc/$1" + }, + "bioregistry.uniparc.go": { + "authority": "go", + "homepage": "https://www.uniprot.org/uniparc/", + "id": "bioregistry.uniparc.go", + "name": "UniProt Archive", + "prefix": "UniParc", + "sameas": "bioregistry.uniparc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.uniprot.org/uniparc/$1" + }, + "bioregistry.uniparc.miriam": { + "authority": "miriam", + "homepage": "https://www.ebi.ac.uk/uniparc/", + "id": "bioregistry.uniparc.miriam", + "name": "UniParc", + "prefix": "uniparc", + "sameas": "bioregistry.uniparc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ebi.ac.uk/cgi-bin/dbfetch?db=uniparc&id=$1" + }, + "bioregistry.uniparc.n2t": { + "authority": "n2t", + "homepage": "http://www.uniprot.org/uniparc/", + "id": "bioregistry.uniparc.n2t", + "name": "UniParc through UniProt", + "prefix": "uniparc", + "sameas": "bioregistry.uniparc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.uniprot.org/uniparc/$1" + }, + "bioregistry.uniparc.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ebi.ac.uk/uniparc/", + "id": "bioregistry.uniparc.prefixcommons", + "name": "UniProt Archive", + "prefix": "uniparc", + "sameas": "bioregistry.uniparc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.ebi.ac.uk/cgi-bin/dbfetch?db=uniparc&id=$1" + }, + "bioregistry.unipathway.compound": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.unipathway.compound", + "name": "UniPathway Compound at Swiss Institute of Bioinformatics (SIB)", + "prefix": "unipathway.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upc?upid=$1" + }, + "bioregistry.unipathway.compound.n2t": { + "authority": "n2t", + "homepage": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", + "id": "bioregistry.unipathway.compound.n2t", + "name": "UniPathway Compound at Swiss Institute of Bioinformatics (SIB)", + "prefix": "unipathway.compound", + "sameas": "bioregistry.unipathway.compound", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upc?upid=$1" + }, + "bioregistry.unipathway.reaction": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.unipathway.reaction", + "name": "UniPathway Reaction at Swiss Institute of Bioinformatics (SIB)", + "prefix": "unipathway.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/ucr?upid=$1" + }, + "bioregistry.unipathway.reaction.n2t": { + "authority": "n2t", + "homepage": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", + "id": "bioregistry.unipathway.reaction.n2t", + "name": "UniPathway Reaction at Swiss Institute of Bioinformatics (SIB)", + "prefix": "unipathway.reaction", + "sameas": "bioregistry.unipathway.reaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/ucr?upid=$1" + }, + "bioregistry.uniprot": { + "authority": "bioregistry", + "homepage": "http://www.uniprot.org", + "id": "bioregistry.uniprot", + "name": "section of the UniProt Knowledgebase, containing annotated records, which include curator-evaluated computational analysis, as well as, information extracted from the literature", + "prefix": "uniprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.uniprot.org/uniprotkb/$1/entry" + }, + "bioregistry.uniprot.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.uniprot.biolink", + "name": null, + "prefix": "UniProtKB", + "sameas": "bioregistry.uniprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://purl.uniprot.org/uniprot/$1" + }, + "bioregistry.uniprot.cellosaurus": { + "authority": "cellosaurus", + "homepage": null, + "id": "bioregistry.uniprot.cellosaurus", + "name": "UniProt knowledgebase", + "prefix": "UniProtKB", + "sameas": "bioregistry.uniprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.uniprot.org/uniprotkb/$1/entry" + }, + "bioregistry.uniprot.chain": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.uniprot.chain", + "name": "UniProt Chain", + "prefix": "uniprot.chain", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.uniprot.org/annotation/$1" + }, + "bioregistry.uniprot.chain.miriam": { + "authority": "miriam", + "homepage": "https://www.uniprot.org", + "id": "bioregistry.uniprot.chain.miriam", + "name": "UniProt Chain", + "prefix": "uniprot.chain", + "sameas": "bioregistry.uniprot.chain", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.uniprot.org/annotation/$1" + }, + "bioregistry.uniprot.disease": { + "authority": "bioregistry", + "homepage": "https://www.uniprot.org/diseases/", + "id": "bioregistry.uniprot.disease", + "name": "UniProt disease ID", + "prefix": "uniprot.disease", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.uniprot.org/diseases/$1" + }, + "bioregistry.uniprot.disease.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.uniprot.disease.biolink", + "name": null, + "prefix": "SPDI", + "sameas": "bioregistry.uniprot.disease", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://api.ncbi.nlm.nih.gov/variation/v0/spdi/$1" + }, + "bioregistry.uniprot.disease.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.uniprot.disease.wikidata", + "name": "UniProt disease ID", + "prefix": "P11430", + "sameas": "bioregistry.uniprot.disease", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.uniprot.org/diseases/$1" + }, + "bioregistry.uniprot.go": { + "authority": "go", + "homepage": "http://www.uniprot.org", + "id": "bioregistry.uniprot.go", + "name": "Universal Protein Knowledgebase", + "prefix": "UniProtKB", + "sameas": "bioregistry.uniprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.uniprot.org/uniprot/$1" + }, + "bioregistry.uniprot.isoform": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.uniprot.isoform", + "name": "UniProt Isoform through UniParc", + "prefix": "uniprot.isoform", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.uniprot.org/uniprot/$1" + }, + "bioregistry.uniprot.isoform.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.uniprot.isoform.biolink", + "name": null, + "prefix": "UNIPROT.ISOFORM", + "sameas": "bioregistry.uniprot.isoform", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.uniprot.org/isoforms/$1" + }, + "bioregistry.uniprot.isoform.miriam": { + "authority": "miriam", + "homepage": "http://www.uniprot.org/", + "id": "bioregistry.uniprot.isoform.miriam", + "name": "UniProt Isoform", + "prefix": "uniprot.isoform", + "sameas": "bioregistry.uniprot.isoform", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.uniprot.org/uniprot/$1" + }, + "bioregistry.uniprot.isoform.n2t": { + "authority": "n2t", + "homepage": "http://www.uniprot.org/uniparc/", + "id": "bioregistry.uniprot.isoform.n2t", + "name": "UniProt Isoform through UniParc", + "prefix": "uniprot.isoform", + "sameas": "bioregistry.uniprot.isoform", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.uniprot.org/uniparc/?query=$1" + }, + "bioregistry.uniprot.journal": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.uniprot.journal", + "name": "UniProt journal ID", + "prefix": "uniprot.journal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.uniprot.org/journals/$1" + }, + "bioregistry.uniprot.journal.wikidata": { + "authority": "wikidata", + "homepage": "https://www.uniprot.org/journals", + "id": "bioregistry.uniprot.journal.wikidata", + "name": "UniProt journal ID", + "prefix": "P4616", + "sameas": "bioregistry.uniprot.journal", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.uniprot.org/journals/$1" + }, + "bioregistry.uniprot.keyword": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.uniprot.keyword", + "name": "UniProt Knowledgebase keywords", + "prefix": "uniprot.keyword", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.uniprot.org/keywords/$1" + }, + "bioregistry.uniprot.keyword.go": { + "authority": "go", + "homepage": "http://www.uniprot.org/keywords/", + "id": "bioregistry.uniprot.keyword.go", + "name": "UniProt Knowledgebase keywords", + "prefix": "UniProtKB-KW", + "sameas": "bioregistry.uniprot.keyword", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.uniprot.org/keywords/$1" + }, + "bioregistry.uniprot.keyword.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.uniprot.org/keywords/", + "id": "bioregistry.uniprot.keyword.prefixcommons", + "name": "UniProt Knowledgebase keywords", + "prefix": "uniprot.kw", + "sameas": "bioregistry.uniprot.keyword", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.uniprot.org/keywords/$1" + }, + "bioregistry.uniprot.location": { + "authority": "bioregistry", + "homepage": "https://www.uniprot.org/locations/", + "id": "bioregistry.uniprot.location", + "name": "UniProt Knowledgebase Subcellular Location vocabulary", + "prefix": "uniprot.location", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.uniprot.org/locations/$1" + }, + "bioregistry.uniprot.location.go": { + "authority": "go", + "homepage": "https://www.uniprot.org/locations/", + "id": "bioregistry.uniprot.location.go", + "name": "UniProt Knowledgebase Subcellular Location vocabulary", + "prefix": "UniProtKB-SubCell", + "sameas": "bioregistry.uniprot.location", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.uniprot.org/locations/$1" + }, + "bioregistry.uniprot.miriam": { + "authority": "miriam", + "homepage": "https://www.uniprot.org/", + "id": "bioregistry.uniprot.miriam", + "name": "UniProt Knowledgebase", + "prefix": "uniprot", + "sameas": "bioregistry.uniprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://purl.uniprot.org/uniprot/$1" + }, + "bioregistry.uniprot.n2t": { + "authority": "n2t", + "homepage": "https://www.uniprot.org/", + "id": "bioregistry.uniprot.n2t", + "name": "Universal Protein Resource using Persistent URL system", + "prefix": "uniprot", + "sameas": "bioregistry.uniprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://purl.uniprot.org/uniprot/$1" + }, + "bioregistry.uniprot.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.uniprot.org/", + "id": "bioregistry.uniprot.prefixcommons", + "name": "UniProt Knowledgebase", + "prefix": "uniprot", + "sameas": "bioregistry.uniprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.uniprot.org/uniprot/$1" + }, + "bioregistry.uniprot.tissue": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.uniprot.tissue", + "name": "Tissue List at Swiss Institute of Bioinformatics", + "prefix": "uniprot.tissue", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.uniprot.org/tissues/$1" + }, + "bioregistry.uniprot.tissue.miriam": { + "authority": "miriam", + "homepage": "https://www.uniprot.org/docs/tisslist.txt", + "id": "bioregistry.uniprot.tissue.miriam", + "name": "Tissue List", + "prefix": "tissuelist", + "sameas": "bioregistry.uniprot.tissue", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.uniprot.org/tissues/$1" + }, + "bioregistry.uniprot.tissue.n2t": { + "authority": "n2t", + "homepage": "https://www.uniprot.org/docs/tisslist.txt", + "id": "bioregistry.uniprot.tissue.n2t", + "name": "Tissue List at Swiss Institute of Bioinformatics", + "prefix": "tissuelist", + "sameas": "bioregistry.uniprot.tissue", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.uniprot.org/tissues/$1" + }, + "bioregistry.uniprot.wikidata": { + "authority": "wikidata", + "homepage": "http://mygene.info", + "id": "bioregistry.uniprot.wikidata", + "name": "UniProt protein ID", + "prefix": "P352", + "sameas": "bioregistry.uniprot", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.uniprot.org/uniprot/$1" + }, + "bioregistry.uniref": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.uniref", + "name": "Sequence cluster ID (UniRef)", + "prefix": "uniref", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.uniprot.org/uniref/$1" + }, + "bioregistry.uniref.miriam": { + "authority": "miriam", + "homepage": "https://www.uniprot.org/", + "id": "bioregistry.uniref.miriam", + "name": "UniRef", + "prefix": "uniref", + "sameas": "bioregistry.uniref", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.uniprot.org/uniref/$1" + }, + "bioregistry.unirule": { + "authority": "bioregistry", + "homepage": "https://www.uniprot.org/unirule/", + "id": "bioregistry.unirule", + "name": "Manually curated rules for automatic annotation of UniProtKB unreviewed entries", + "prefix": "unirule", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.uniprot.org/unirule/$1" + }, + "bioregistry.unirule.go": { + "authority": "go", + "homepage": "https://www.uniprot.org/unirule/", + "id": "bioregistry.unirule.go", + "name": "Manually curated rules for automatic annotation of UniProtKB unreviewed entries", + "prefix": "UniRule", + "sameas": "bioregistry.unirule", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.uniprot.org/unirule/$1" + }, + "bioregistry.unists": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.unists", + "name": "Database of Sequence Tagged Sites", + "prefix": "unists", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/genome/sts/sts.cgi?uid=$1" + }, + "bioregistry.unists.miriam": { + "authority": "miriam", + "homepage": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=unists", + "id": "bioregistry.unists.miriam", + "name": "UniSTS", + "prefix": "unists", + "sameas": "bioregistry.unists", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/genome/sts/sts.cgi?uid=$1" + }, + "bioregistry.unists.n2t": { + "authority": "n2t", + "homepage": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=unists", + "id": "bioregistry.unists.n2t", + "name": "UniSTS at NCBI", + "prefix": "unists", + "sameas": "bioregistry.unists", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.ncbi.nlm.nih.gov/genome/sts/sts.cgi?uid=$1" + }, + "bioregistry.unists.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.ncbi.nlm.nih.gov/unists", + "id": "bioregistry.unists.prefixcommons", + "name": "NCBI UniSTS", + "prefix": "unists", + "sameas": "bioregistry.unists", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.ncbi.nlm.nih.gov/genome/sts/sts.cgi?uid=$1" + }, + "bioregistry.unite": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.unite", + "name": "Molecular database for the identification of fungi", + "prefix": "unite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://unite.ut.ee/bl_forw.php?nimi=$1" + }, + "bioregistry.unite.miriam": { + "authority": "miriam", + "homepage": "http://unite.ut.ee/", + "id": "bioregistry.unite.miriam", + "name": "Unite", + "prefix": "unite", + "sameas": "bioregistry.unite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://unite.ut.ee/bl_forw.php?nimi=$1" + }, + "bioregistry.unite.n2t": { + "authority": "n2t", + "homepage": "http://unite.ut.ee/", + "id": "bioregistry.unite.n2t", + "name": "Unite at University of Tartu", + "prefix": "unite", + "sameas": "bioregistry.unite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://unite.ut.ee/bl_forw.php?nimi=$1" + }, + "bioregistry.unite.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://unite.ut.ee/index.php", + "id": "bioregistry.unite.prefixcommons", + "name": "Molecular database for the identification of fungi", + "prefix": "unite", + "sameas": "bioregistry.unite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://unite.ut.ee/bl_forw.php?nimi=$1" + }, + "bioregistry.uo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.uo", + "name": "Unit Ontology through BioPortal", + "prefix": "uo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/UO/UO:$1" + }, + "bioregistry.uo.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/ontologies/UO", + "id": "bioregistry.uo.miriam", + "name": "Unit Ontology", + "prefix": "uo", + "sameas": "bioregistry.uo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/UO/UO:$1" + }, + "bioregistry.uo.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/UO", + "id": "bioregistry.uo.n2t", + "name": "Unit Ontology through BioPortal", + "prefix": "uo", + "sameas": "bioregistry.uo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/UO/UO:$1" + }, + "bioregistry.upa": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.upa", + "name": "UniPathway, a metabolic door to UniProtKB/Swiss-Prot", + "prefix": "upa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upa?upid=$1" + }, + "bioregistry.upa.go": { + "authority": "go", + "homepage": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", + "id": "bioregistry.upa.go", + "name": "UniPathway", + "prefix": "UniPathway", + "sameas": "bioregistry.upa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upa?upid=$1" + }, + "bioregistry.upa.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", + "id": "bioregistry.upa.prefixcommons", + "name": "UniPathway, a metabolic door to UniProtKB/Swiss-Prot", + "prefix": "unipathway", + "sameas": "bioregistry.upa", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upa?upid=$1" + }, + "bioregistry.uspto": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.uspto", + "name": "United States Patent and Trademark Office", + "prefix": "uspto", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://patft.uspto.gov/netacgi/nph-Parser?Sect2=PTO1&Sect2=HITOFF&p=1&u=/netahtml/PTO/search-bool.html&r=1&f=G&l=50&d=PALL&RefSrch=yes&Query=PN/$1" + }, + "bioregistry.uspto.miriam": { + "authority": "miriam", + "homepage": "http://patft.uspto.gov/netahtml/PTO/index.html", + "id": "bioregistry.uspto.miriam", + "name": "USPTO", + "prefix": "uspto", + "sameas": "bioregistry.uspto", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://patft.uspto.gov/netacgi/nph-Parser?Sect2=PTO1&Sect2=HITOFF&p=1&u=/netahtml/PTO/search-bool.html&r=1&f=G&l=50&d=PALL&RefSrch=yes&Query=PN/$1" + }, + "bioregistry.uspto.n2t": { + "authority": "n2t", + "homepage": "http://patft.uspto.gov/netahtml/PTO/index.html", + "id": "bioregistry.uspto.n2t", + "name": "USPTO patents at USPTO", + "prefix": "uspto", + "sameas": "bioregistry.uspto", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://patft.uspto.gov/netacgi/nph-Parser?Sect2=PTO1&Sect2=HITOFF&p=1&u=/netahtml/PTO/search-bool.html&r=1&f=G&l=50&d=PALL&RefSrch=yes&Query=PN/$1" + }, + "bioregistry.utrdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.utrdb", + "name": "UTRdb", + "prefix": "utrdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://utrdb.cloud.ba.infn.it/cgi-bin/utrdb/utrdb?e=$1" + }, + "bioregistry.utrdb.miriam": { + "authority": "miriam", + "homepage": "https://utrdb.cloud.ba.infn.it/utrdb/index_107.html", + "id": "bioregistry.utrdb.miriam", + "name": "UTRdb", + "prefix": "utrdb", + "sameas": "bioregistry.utrdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://utrdb.cloud.ba.infn.it/cgi-bin/utrdb/utrdb?e=$1" + }, + "bioregistry.validatordb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.validatordb", + "name": "ValidatorDB", + "prefix": "validatordb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/$1" + }, + "bioregistry.validatordb.miriam": { + "authority": "miriam", + "homepage": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/", + "id": "bioregistry.validatordb.miriam", + "name": "ValidatorDB", + "prefix": "validatordb", + "sameas": "bioregistry.validatordb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/$1" + }, + "bioregistry.validatordb.n2t": { + "authority": "n2t", + "homepage": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/", + "id": "bioregistry.validatordb.n2t", + "name": "ValidatorDB", + "prefix": "validatordb", + "sameas": "bioregistry.validatordb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/$1" + }, + "bioregistry.vandf": { + "authority": "bioregistry", + "homepage": "https://www.nlm.nih.gov/research/umls/sourcereleasedocs/current/VANDF", + "id": "bioregistry.vandf", + "name": "Veterans Health Administration National Drug File", + "prefix": "vandf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.nlm.nih.gov/research/umls/sourcereleasedocs/current/VANDF/$1" + }, + "bioregistry.vandf.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.vandf.biolink", + "name": null, + "prefix": "VANDF", + "sameas": "bioregistry.vandf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.nlm.nih.gov/research/umls/sourcereleasedocs/current/VANDF/$1" + }, + "bioregistry.vario": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.vario", + "name": "VariO through BioPortal", + "prefix": "vario", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/VARIO/VariO:$1" + }, + "bioregistry.vario.miriam": { + "authority": "miriam", + "homepage": "http://bioportal.bioontology.org/ontologies/VARIO", + "id": "bioregistry.vario.miriam", + "name": "VariO", + "prefix": "vario", + "sameas": "bioregistry.vario", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/VARIO/VariO:$1" + }, + "bioregistry.vario.n2t": { + "authority": "n2t", + "homepage": "http://bioportal.bioontology.org/ontologies/VARIO", + "id": "bioregistry.vario.n2t", + "name": "VariO through BioPortal", + "prefix": "vario", + "sameas": "bioregistry.vario", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.bioontology.org/ontology/VARIO/VariO:$1" + }, + "bioregistry.vbase2": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.vbase2", + "name": "Integrative database of germ-line V genes from the immunoglobulin loci of human and mouse", + "prefix": "vbase2", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.vbase2.org/vgene.php?id=$1" + }, + "bioregistry.vbase2.miriam": { + "authority": "miriam", + "homepage": "http://www.vbase2.org/vbase2.php", + "id": "bioregistry.vbase2.miriam", + "name": "Vbase2", + "prefix": "vbase2", + "sameas": "bioregistry.vbase2", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.vbase2.org/vgene.php?id=$1" + }, + "bioregistry.vbase2.n2t": { + "authority": "n2t", + "homepage": "http://www.vbase2.org/vbase2.php", + "id": "bioregistry.vbase2.n2t", + "name": "Vbase2 at German Research Centre for Biotechnology", + "prefix": "vbase2", + "sameas": "bioregistry.vbase2", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.vbase2.org/vgene.php?id=$1" + }, + "bioregistry.vbase2.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.vbase2.org", + "id": "bioregistry.vbase2.prefixcommons", + "name": "VBASE2", + "prefix": "vbase2", + "sameas": "bioregistry.vbase2", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.vbase2.org/vgene.php?id=$1" + }, + "bioregistry.vbrc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.vbrc", + "name": "Viral Bioinformatics Resource Center", + "prefix": "vbrc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://vbrc.org/gene_detail.asp?gene_id=$1" + }, + "bioregistry.vbrc.miriam": { + "authority": "miriam", + "homepage": "http://vbrc.org/", + "id": "bioregistry.vbrc.miriam", + "name": "VBRC", + "prefix": "vbrc", + "sameas": "bioregistry.vbrc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://vbrc.org/gene_detail.asp?gene_id=$1" + }, + "bioregistry.vbrc.n2t": { + "authority": "n2t", + "homepage": "http://vbrc.org/", + "id": "bioregistry.vbrc.n2t", + "name": "VBRC at University of Alabama", + "prefix": "vbrc", + "sameas": "bioregistry.vbrc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://vbrc.org/gene_detail.asp?gene_id=$1" + }, + "bioregistry.vcell": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.vcell", + "name": "VCell Published Models", + "prefix": "vcell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://vcell.org/biomodel-$1" + }, + "bioregistry.vcell.miriam": { + "authority": "miriam", + "homepage": "https://health.uconn.edu/", + "id": "bioregistry.vcell.miriam", + "name": "VCell Published Models", + "prefix": "vcell", + "sameas": "bioregistry.vcell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://vcell.org/biomodel-$1" + }, + "bioregistry.vectorbase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.vectorbase", + "name": "Bioinformatics Resource Center for Invertebrate Vectors of Human Pathogens", + "prefix": "vectorbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "https://www.vectorbase.org/search/site/$1?&site=\"Genome\"" + }, + "bioregistry.vectorbase.miriam": { + "authority": "miriam", + "homepage": "https://www.vectorbase.org/", + "id": "bioregistry.vectorbase.miriam", + "name": "VectorBase", + "prefix": "vectorbase", + "sameas": "bioregistry.vectorbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://vectorbase.org/gene/$1" + }, + "bioregistry.vectorbase.n2t": { + "authority": "n2t", + "homepage": "https://www.vectorbase.org/", + "id": "bioregistry.vectorbase.n2t", + "name": "Vectorbase at EMBL-EBI", + "prefix": "vectorbase", + "sameas": "bioregistry.vectorbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.vectorbase.org/search/site/$1?&site=\"Genome\"" + }, + "bioregistry.vectorbase.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.vectorbase.org/index.php", + "id": "bioregistry.vectorbase.prefixcommons", + "name": "Invertebrate Vectors of Human Pathogens", + "prefix": "vectorbase", + "sameas": "bioregistry.vectorbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "biochemistry" + ], + "uri_format": "http://www.vectorbase.org/[?species_name]/Gene/Summary?db=core;g=$1" + }, + "bioregistry.vega": { + "authority": "bioregistry", + "homepage": "https://vega.archive.ensembl.org/index.html", + "id": "bioregistry.vega", + "name": "The Vertebrate Genome Annotation Database", + "prefix": "vega", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://vega.sanger.ac.uk/[?species_name]/Gene/Summary?g=$1" + }, + "bioregistry.vega.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://vega.sanger.ac.uk/", + "id": "bioregistry.vega.prefixcommons", + "name": "The Vertebrate Genome Annotation Database", + "prefix": "vega", + "sameas": "bioregistry.vega", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://vega.sanger.ac.uk/[?species_name]/Gene/Summary?g=$1" + }, + "bioregistry.vegbank": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.vegbank", + "name": "VegBank", + "prefix": "vegbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://vegbank.org/cite/$1" + }, + "bioregistry.vegbank.miriam": { + "authority": "miriam", + "homepage": "http://vegbank.org/", + "id": "bioregistry.vegbank.miriam", + "name": "VegBank", + "prefix": "vegbank", + "sameas": "bioregistry.vegbank", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://vegbank.org/cite/$1" + }, + "bioregistry.vfb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.vfb", + "name": "Virtual Fly Brain", + "prefix": "vfb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://virtualflybrain.org/reports/$1" + }, + "bioregistry.vfb.miriam": { + "authority": "miriam", + "homepage": "https://VirtualFlyBrain.org", + "id": "bioregistry.vfb.miriam", + "name": "Virtual Fly Brain", + "prefix": "vfb", + "sameas": "bioregistry.vfb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://virtualflybrain.org/reports/$1" + }, + "bioregistry.vfb.n2t": { + "authority": "n2t", + "homepage": "https://VirtualFlyBrain.org", + "id": "bioregistry.vfb.n2t", + "name": "Virtual Fly Brain", + "prefix": "vfb", + "sameas": "bioregistry.vfb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://virtualflybrain.org/reports/$1" + }, + "bioregistry.vfdb.gene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.vfdb.gene", + "name": "VFDB Gene at Institute of Pathogen Biology", + "prefix": "vfdb.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mgc.ac.cn/cgi-bin/VFs/gene.cgi?GeneID=$1" + }, + "bioregistry.vfdb.gene.miriam": { + "authority": "miriam", + "homepage": "http://www.mgc.ac.cn/VFs/", + "id": "bioregistry.vfdb.gene.miriam", + "name": "VFDB Gene", + "prefix": "vfdb.gene", + "sameas": "bioregistry.vfdb.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mgc.ac.cn/cgi-bin/VFs/gene.cgi?GeneID=$1" + }, + "bioregistry.vfdb.gene.n2t": { + "authority": "n2t", + "homepage": "http://www.mgc.ac.cn/VFs/", + "id": "bioregistry.vfdb.gene.n2t", + "name": "VFDB Gene at Institute of Pathogen Biology", + "prefix": "vfdb.gene", + "sameas": "bioregistry.vfdb.gene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mgc.ac.cn/cgi-bin/VFs/gene.cgi?GeneID=$1" + }, + "bioregistry.vfdb.genus": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.vfdb.genus", + "name": "VFDB Genus at Institute of Pathogen Biology", + "prefix": "vfdb.genus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mgc.ac.cn/cgi-bin/VFs/genus.cgi?Genus=$1" + }, + "bioregistry.vfdb.genus.miriam": { + "authority": "miriam", + "homepage": "http://www.mgc.ac.cn/VFs/", + "id": "bioregistry.vfdb.genus.miriam", + "name": "VFDB Genus", + "prefix": "vfdb.genus", + "sameas": "bioregistry.vfdb.genus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mgc.ac.cn/cgi-bin/VFs/genus.cgi?Genus=$1" + }, + "bioregistry.vfdb.genus.n2t": { + "authority": "n2t", + "homepage": "http://www.mgc.ac.cn/VFs/", + "id": "bioregistry.vfdb.genus.n2t", + "name": "VFDB Genus at Institute of Pathogen Biology", + "prefix": "vfdb.genus", + "sameas": "bioregistry.vfdb.genus", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.mgc.ac.cn/cgi-bin/VFs/genus.cgi?Genus=$1" + }, + "bioregistry.vgnc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.vgnc", + "name": "Vertebrate Gene Nomenclature Committee Database", + "prefix": "vgnc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://vertebrate.genenames.org/data/gene-symbol-report/#!/vgnc_id/VGNC:$1" + }, + "bioregistry.vgnc.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://vertebrate.genenames.org/", + "id": "bioregistry.vgnc.cellosaurus", + "name": "Vertebrate Gene Nomenclature Committee Database", + "prefix": "VGNC", + "sameas": "bioregistry.vgnc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://vertebrate.genenames.org/data/gene-symbol-report/#!/vgnc_id/VGNC:$1" + }, + "bioregistry.vgnc.miriam": { + "authority": "miriam", + "homepage": "https://vertebrate.genenames.org", + "id": "bioregistry.vgnc.miriam", + "name": "VGNC", + "prefix": "vgnc", + "sameas": "bioregistry.vgnc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://vertebrate.genenames.org/data/gene-symbol-report/#!/vgnc_id/$1" + }, + "bioregistry.vgnc.uniprot": { + "authority": "uniprot", + "homepage": "https://vertebrate.genenames.org/", + "id": "bioregistry.vgnc.uniprot", + "name": "Vertebrate Gene Nomenclature Database", + "prefix": "DB-0226", + "sameas": "bioregistry.vgnc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://vertebrate.genenames.org/data/gene-symbol-report/#!/vgnc_id/$1" + }, + "bioregistry.viaf": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.viaf", + "name": "Virtual International Authority File", + "prefix": "viaf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://viaf.org/viaf/$1" + }, + "bioregistry.viaf.miriam": { + "authority": "miriam", + "homepage": "http://viaf.org", + "id": "bioregistry.viaf.miriam", + "name": "Virtual International Authority File", + "prefix": "viaf", + "sameas": "bioregistry.viaf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://viaf.org/viaf/$1" + }, + "bioregistry.viaf.n2t": { + "authority": "n2t", + "homepage": "http://viaf.org", + "id": "bioregistry.viaf.n2t", + "name": "Virtual International Authority File", + "prefix": "viaf", + "sameas": "bioregistry.viaf", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://viaf.org/viaf/$1" + }, + "bioregistry.viperdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.viperdb", + "name": "VIPERdb", + "prefix": "viperdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://viperdb.scripps.edu/info_page.php?VDB=$1" + }, + "bioregistry.viperdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://viperdb.scripps.edu/", + "id": "bioregistry.viperdb.prefixcommons", + "name": "VIPERdb", + "prefix": "viperdb", + "sameas": "bioregistry.viperdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://viperdb.scripps.edu/info_page.php?VDB=$1" + }, + "bioregistry.vipr": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.vipr", + "name": "Virus Pathogen Database and Analysis Resource", + "prefix": "vipr", + "source": "bioregistry.io", + "subjects": [ + "immunology" + ], + "uri_format": "http://www.viprbrc.org/brc/viprStrainDetails.do?strainName=$1&decorator=arena" + }, + "bioregistry.vipr.miriam": { + "authority": "miriam", + "homepage": "http://www.viprbrc.org/brc/home.do?decorator=vipr", + "id": "bioregistry.vipr.miriam", + "name": "ViPR Strain", + "prefix": "vipr", + "sameas": "bioregistry.vipr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.viprbrc.org/brc/viprStrainDetails.do?strainName=$1&decorator=arena" + }, + "bioregistry.vipr.n2t": { + "authority": "n2t", + "homepage": "http://www.viprbrc.org/brc/home.do?decorator=vipr", + "id": "bioregistry.vipr.n2t", + "name": "ViPR Strain at J. Craig Venter Institute", + "prefix": "vipr", + "sameas": "bioregistry.vipr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.viprbrc.org/brc/viprStrainDetails.do?strainName=$1&decorator=arena" + }, + "bioregistry.viralzone": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.viralzone", + "name": "ViralZone at SIB", + "prefix": "viralzone", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "microbiology" + ], + "uri_format": "http://viralzone.expasy.org/all_by_protein/$1.html" + }, + "bioregistry.viralzone.go": { + "authority": "go", + "homepage": "http://viralzone.expasy.org/", + "id": "bioregistry.viralzone.go", + "name": "ViralZone", + "prefix": "VZ", + "sameas": "bioregistry.viralzone", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "microbiology" + ], + "uri_format": "http://viralzone.expasy.org/all_by_protein/$1.html" + }, + "bioregistry.viralzone.miriam": { + "authority": "miriam", + "homepage": "http://www.expasy.org/viralzone/", + "id": "bioregistry.viralzone.miriam", + "name": "ViralZone", + "prefix": "viralzone", + "sameas": "bioregistry.viralzone", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://viralzone.expasy.org/all_by_protein/$1.html" + }, + "bioregistry.viralzone.n2t": { + "authority": "n2t", + "homepage": "http://www.expasy.org/viralzone/", + "id": "bioregistry.viralzone.n2t", + "name": "ViralZone at SIB", + "prefix": "viralzone", + "sameas": "bioregistry.viralzone", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://viralzone.expasy.org/all_by_protein/$1.html" + }, + "bioregistry.viralzone.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://viralzone.expasy.org/", + "id": "bioregistry.viralzone.prefixcommons", + "name": "ViralZone", + "prefix": "vz", + "sameas": "bioregistry.viralzone", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "microbiology" + ], + "uri_format": "http://viralzone.expasy.org/all_by_protein/$1.html" + }, + "bioregistry.virmirdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.virmirdb", + "name": "Vir-Mir db", + "prefix": "virmirdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://alk.ibms.sinica.edu.tw/cgi-bin/miRNA/virus.cgi?tax_id=$1" + }, + "bioregistry.virmirdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://alk.ibms.sinica.edu.tw", + "id": "bioregistry.virmirdb.prefixcommons", + "name": "Vir-Mir db", + "prefix": "virmirdb", + "sameas": "bioregistry.virmirdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://alk.ibms.sinica.edu.tw/cgi-bin/miRNA/virus.cgi?tax_id=$1" + }, + "bioregistry.viroligo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.viroligo", + "name": "VirOligo", + "prefix": "viroligo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://viroligo.okstate.edu/main.php?vid=$1" + }, + "bioregistry.viroligo.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://viroligo.okstate.edu", + "id": "bioregistry.viroligo.prefixcommons", + "name": "VirOligo", + "prefix": "viroligo", + "sameas": "bioregistry.viroligo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://viroligo.okstate.edu/main.php?vid=$1" + }, + "bioregistry.virsirna": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.virsirna", + "name": "VIRsiRNA at Institute of Microbial Technology", + "prefix": "virsirna", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://crdd.osdd.net/servers/virsirnadb/record.php?details=$1" + }, + "bioregistry.virsirna.miriam": { + "authority": "miriam", + "homepage": "http://crdd.osdd.net/servers/virsirnadb", + "id": "bioregistry.virsirna.miriam", + "name": "VIRsiRNA", + "prefix": "virsirna", + "sameas": "bioregistry.virsirna", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://crdd.osdd.net/servers/virsirnadb/record.php?details=$1" + }, + "bioregistry.virsirna.n2t": { + "authority": "n2t", + "homepage": "http://crdd.osdd.net/servers/virsirnadb", + "id": "bioregistry.virsirna.n2t", + "name": "VIRsiRNA at Institute of Microbial Technology", + "prefix": "virsirna", + "sameas": "bioregistry.virsirna", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://crdd.osdd.net/servers/virsirnadb/record.php?details=$1" + }, + "bioregistry.virushostdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.virushostdb", + "name": "Virus-HostDB", + "prefix": "virushostdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "microbiology" + ], + "uri_format": "https://www.genome.jp/virushostdb/$1" + }, + "bioregistry.virushostdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "https://www.genome.jp/virushostdb/", + "id": "bioregistry.virushostdb.prefixcommons", + "name": "Virus-HostDB", + "prefix": "virushostdb", + "sameas": "bioregistry.virushostdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "microbiology" + ], + "uri_format": "https://www.genome.jp/virushostdb/$1" + }, + "bioregistry.vita": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.vita", + "name": "ViTa: virus' miRNA target", + "prefix": "vita", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://vita.mbc.nctu.edu.tw/search.php?acc=$1" + }, + "bioregistry.vita.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://vita.mbc.nctu.edu.tw/", + "id": "bioregistry.vita.prefixcommons", + "name": "ViTa: virus' miRNA target", + "prefix": "vita", + "sameas": "bioregistry.vita", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://vita.mbc.nctu.edu.tw/search.php?acc=$1" + }, + "bioregistry.vmc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.vmc", + "name": "Variation Modelling Collaboration", + "prefix": "vmc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://github.com/ga4gh/vr-spec/$1" + }, + "bioregistry.vmc.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.vmc.biolink", + "name": null, + "prefix": "VMC", + "sameas": "bioregistry.vmc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://github.com/ga4gh/vr-spec/$1" + }, + "bioregistry.vmhgene": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.vmhgene", + "name": "VMH Gene", + "prefix": "vmhgene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.vmh.life/#gene/$1" + }, + "bioregistry.vmhgene.miriam": { + "authority": "miriam", + "homepage": "https://www.vmh.life/", + "id": "bioregistry.vmhgene.miriam", + "name": "VMH Gene", + "prefix": "vmhgene", + "sameas": "bioregistry.vmhgene", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.vmh.life/#gene/$1" + }, + "bioregistry.vmhmetabolite": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.vmhmetabolite", + "name": "VMH metabolite", + "prefix": "vmhmetabolite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.vmh.life/#metabolite/$1" + }, + "bioregistry.vmhmetabolite.miriam": { + "authority": "miriam", + "homepage": "https://www.vmh.life/", + "id": "bioregistry.vmhmetabolite.miriam", + "name": "VMH metabolite", + "prefix": "vmhmetabolite", + "sameas": "bioregistry.vmhmetabolite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.vmh.life/#metabolite/$1" + }, + "bioregistry.vmhmetabolite.n2t": { + "authority": "n2t", + "homepage": "http://vmh.uni.lu", + "id": "bioregistry.vmhmetabolite.n2t", + "name": "VMH metabolite", + "prefix": "vmhmetabolite", + "sameas": "bioregistry.vmhmetabolite", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://vmh.uni.lu/#metabolite/$1" + }, + "bioregistry.vmhreaction": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.vmhreaction", + "name": "VMH reaction", + "prefix": "vmhreaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.vmh.life/#reaction/$1" + }, + "bioregistry.vmhreaction.miriam": { + "authority": "miriam", + "homepage": "https://www.vmh.life/", + "id": "bioregistry.vmhreaction.miriam", + "name": "VMH reaction", + "prefix": "vmhreaction", + "sameas": "bioregistry.vmhreaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.vmh.life/#reaction/$1" + }, + "bioregistry.vmhreaction.n2t": { + "authority": "n2t", + "homepage": "https://vmh.uni.lu", + "id": "bioregistry.vmhreaction.n2t", + "name": "VMH reaction", + "prefix": "vmhreaction", + "sameas": "bioregistry.vmhreaction", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://vmh.uni.lu/#reaction/$1" + }, + "bioregistry.void": { + "authority": "bioregistry", + "homepage": "http://vocab.deri.ie/void", + "id": "bioregistry.void", + "name": "Vocabulary of Interlinked Datasets", + "prefix": "void", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rdfs.org/ns/void#$1" + }, + "bioregistry.void.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.void.biocontext", + "name": null, + "prefix": "void", + "sameas": "bioregistry.void", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rdfs.org/ns/void#$1" + }, + "bioregistry.wb.rnai": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.wb.rnai", + "name": "WormBase RNAi", + "prefix": "wb.rnai", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wormbase.org/species/c_elegans/rnai/$1" + }, + "bioregistry.wb.rnai.miriam": { + "authority": "miriam", + "homepage": "https://www.wormbase.org/", + "id": "bioregistry.wb.rnai.miriam", + "name": "WormBase RNAi", + "prefix": "wb.rnai", + "sameas": "bioregistry.wb.rnai", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wormbase.org/species/c_elegans/rnai/$1" + }, + "bioregistry.wb.rnai.n2t": { + "authority": "n2t", + "homepage": "https://www.wormbase.org/", + "id": "bioregistry.wb.rnai.n2t", + "name": "WormBase RNAi", + "prefix": "wb.rnai", + "sameas": "bioregistry.wb.rnai", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wormbase.org/species/c_elegans/rnai/$1" + }, + "bioregistry.wbbt": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.wbbt", + "name": "C. elegans Gross Anatomy Vocabulary", + "prefix": "wbbt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology", + "anatomy and morphology" + ], + "uri_format": "http://wormbase.org/db/ontology/anatomy?name=$1" + }, + "bioregistry.wbbt.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.wbbt.biolink", + "name": null, + "prefix": "WBbt", + "sameas": "bioregistry.wbbt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology", + "anatomy and morphology" + ], + "uri_format": "http://purl.obolibrary.org/obo/WBbt_$1" + }, + "bioregistry.wbbt.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.wormbase.org/", + "id": "bioregistry.wbbt.prefixcommons", + "name": "C. elegans gross anatomy", + "prefix": "wbbt", + "sameas": "bioregistry.wbbt", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology", + "anatomy and morphology" + ], + "uri_format": "http://wormbase.org/db/ontology/anatomy?name=$1" + }, + "bioregistry.wbls": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.wbls", + "name": "C. elegans Development Vocabulary", + "prefix": "wbls", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology" + ], + "uri_format": "http://www.wormbase.org/get?name=$1" + }, + "bioregistry.wbls.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.wbls.biolink", + "name": null, + "prefix": "WBls", + "sameas": "bioregistry.wbls", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology" + ], + "uri_format": "http://purl.obolibrary.org/obo/WBls_$1" + }, + "bioregistry.wbls.go": { + "authority": "go", + "homepage": "http://www.wormbase.org/", + "id": "bioregistry.wbls.go", + "name": "C. elegans development", + "prefix": "WBls", + "sameas": "bioregistry.wbls", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology" + ], + "uri_format": "http://www.wormbase.org/get?name=$1" + }, + "bioregistry.wbphenotype": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.wbphenotype", + "name": "C. elegans Phenotype Vocabulary", + "prefix": "wbphenotype", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology" + ], + "uri_format": "http://www.wormbase.org/get?name=$1" + }, + "bioregistry.wbphenotype.go": { + "authority": "go", + "homepage": "http://www.wormbase.org/", + "id": "bioregistry.wbphenotype.go", + "name": "WormBase phenotype ontology", + "prefix": "WBPhenotype", + "sameas": "bioregistry.wbphenotype", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology" + ], + "uri_format": "http://www.wormbase.org/get?name=$1" + }, + "bioregistry.wgs84": { + "authority": "bioregistry", + "homepage": "https://www.w3.org/2003/01/geo/wgs84_pos", + "id": "bioregistry.wgs84", + "name": "WGS84 Geo Positioning", + "prefix": "wgs84", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/2003/01/geo/wgs84_pos$1" + }, + "bioregistry.wgs84.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.wgs84.biolink", + "name": null, + "prefix": "wgs", + "sameas": "bioregistry.wgs84", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/2003/01/geo/wgs84_pos$1" + }, + "bioregistry.wicell": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.wicell", + "name": "WiCell Research Institute Cell Collection", + "prefix": "wicell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wicell.org/home/stem-cells/catalog-of-stem-cell-lines/$1.cmsx?closable=true" + }, + "bioregistry.wicell.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.wicell.org", + "id": "bioregistry.wicell.cellosaurus", + "name": "WiCell Research Institute Cell Collection", + "prefix": "WiCell", + "sameas": "bioregistry.wicell", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wicell.org/home/stem-cells/catalog-of-stem-cell-lines/$1.cmsx?closable=true" + }, + "bioregistry.wikidata": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.wikidata", + "name": "Wikidata at Wikimedia Foundation", + "prefix": "wikidata", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wikidata.org/wiki/$1" + }, + "bioregistry.wikidata.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.wikidata.biolink", + "name": null, + "prefix": "WIKIDATA", + "sameas": "bioregistry.wikidata", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wikidata.org/entity/$1" + }, + "bioregistry.wikidata.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://www.wikidata.org/wiki/Wikidata:Main_Page", + "id": "bioregistry.wikidata.cellosaurus", + "name": "Wikidata", + "prefix": "Wikidata", + "sameas": "bioregistry.wikidata", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wikidata.org/wiki/$1" + }, + "bioregistry.wikidata.miriam": { + "authority": "miriam", + "homepage": "https://www.wikidata.org/", + "id": "bioregistry.wikidata.miriam", + "name": "Wikidata", + "prefix": "wikidata", + "sameas": "bioregistry.wikidata", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.wikidata.org/entity/$1" + }, + "bioregistry.wikidata.n2t": { + "authority": "n2t", + "homepage": "https://www.wikidata.org/", + "id": "bioregistry.wikidata.n2t", + "name": "Wikidata at Wikimedia Foundation", + "prefix": "wikidata", + "sameas": "bioregistry.wikidata", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wikidata.org/wiki/$1" + }, + "bioregistry.wikidata.property": { + "authority": "bioregistry", + "homepage": "https://www.wikidata.org", + "id": "bioregistry.wikidata.property", + "name": "Wikidata Property", + "prefix": "wikidata.property", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wikidata.org/wiki/Property:$1" + }, + "bioregistry.wikidata.property.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.wikidata.property.biocontext", + "name": null, + "prefix": "WD_Prop", + "sameas": "bioregistry.wikidata.property", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wikidata.org/wiki/Property:$1" + }, + "bioregistry.wikidata.property.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.wikidata.property.biolink", + "name": null, + "prefix": "WIKIDATA_PROPERTY", + "sameas": "bioregistry.wikidata.property", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wikidata.org/prop/$1" + }, + "bioregistry.wikigenes": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.wikigenes", + "name": "WikiGenes at Massachusetts Institute of Technology", + "prefix": "wikigenes", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.wikigenes.org/e/gene/e/$1.html" + }, + "bioregistry.wikigenes.miriam": { + "authority": "miriam", + "homepage": "http://www.wikigenes.org/", + "id": "bioregistry.wikigenes.miriam", + "name": "WikiGenes", + "prefix": "wikigenes", + "sameas": "bioregistry.wikigenes", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.wikigenes.org/e/gene/e/$1.html" + }, + "bioregistry.wikigenes.n2t": { + "authority": "n2t", + "homepage": "http://www.wikigenes.org/", + "id": "bioregistry.wikigenes.n2t", + "name": "WikiGenes at Massachusetts Institute of Technology", + "prefix": "wikigenes", + "sameas": "bioregistry.wikigenes", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.wikigenes.org/e/gene/e/$1.html" + }, + "bioregistry.wikipathways": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.wikipathways", + "name": "Pathway ID (WikiPathways)", + "prefix": "wikipathways", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://new.wikipathways.org/pathways/$1" + }, + "bioregistry.wikipathways.miriam": { + "authority": "miriam", + "homepage": "http://www.wikipathways.org/", + "id": "bioregistry.wikipathways.miriam", + "name": "WikiPathways", + "prefix": "wikipathways", + "sameas": "bioregistry.wikipathways", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.wikipathways.org/instance/$1" + }, + "bioregistry.wikipathways.n2t": { + "authority": "n2t", + "homepage": "http://www.wikipathways.org/", + "id": "bioregistry.wikipathways.n2t", + "name": "Wikipathways", + "prefix": "wikipathways", + "sameas": "bioregistry.wikipathways", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.wikipathways.org/instance/$1" + }, + "bioregistry.wikipathways.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://wikipathways.org/", + "id": "bioregistry.wikipathways.prefixcommons", + "name": "WikiPathways", + "prefix": "wikipathways", + "sameas": "bioregistry.wikipathways", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.wikipathways.org/index.php/Pathway:$1" + }, + "bioregistry.wikipathways.wikidata": { + "authority": "wikidata", + "homepage": "http://www.wikipathways.org", + "id": "bioregistry.wikipathways.wikidata", + "name": "WikiPathways ID", + "prefix": "P2410", + "sameas": "bioregistry.wikipathways", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://new.wikipathways.org/pathways/$1" + }, + "bioregistry.wikipedia.en": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.wikipedia.en", + "name": "Wikipedia structured content through DBpedia", + "prefix": "wikipedia.en", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://en.wikipedia.org/wiki/$1" + }, + "bioregistry.wikipedia.en.go": { + "authority": "go", + "homepage": "http://en.wikipedia.org/", + "id": "bioregistry.wikipedia.en.go", + "name": "Wikipedia", + "prefix": "Wikipedia", + "sameas": "bioregistry.wikipedia.en", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://en.wikipedia.org/wiki/$1" + }, + "bioregistry.wikipedia.en.miriam": { + "authority": "miriam", + "homepage": "http://en.wikipedia.org/wiki/Main_Page", + "id": "bioregistry.wikipedia.en.miriam", + "name": "Wikipedia (En)", + "prefix": "wikipedia.en", + "sameas": "bioregistry.wikipedia.en", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://en.wikipedia.org/wiki/$1" + }, + "bioregistry.wikipedia.en.n2t": { + "authority": "n2t", + "homepage": "http://wiki.dbpedia.org/", + "id": "bioregistry.wikipedia.en.n2t", + "name": "Wikipedia structured content through DBpedia", + "prefix": "wikipedia.en", + "sameas": "bioregistry.wikipedia.en", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://dbpedia.org/page/$1" + }, + "bioregistry.wikipedia.en.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://en.wikipedia.org/", + "id": "bioregistry.wikipedia.en.prefixcommons", + "name": "Wikipedia", + "prefix": "wikipedia", + "sameas": "bioregistry.wikipedia.en", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://en.wikipedia.org/wiki/$1" + }, + "bioregistry.worfdb": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.worfdb", + "name": "The C.elegans ORFeome cloning project", + "prefix": "worfdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://worfdb.dfci.harvard.edu/searchallwormorfs.pl?sid=$1" + }, + "bioregistry.worfdb.miriam": { + "authority": "miriam", + "homepage": "http://worfdb.dfci.harvard.edu/", + "id": "bioregistry.worfdb.miriam", + "name": "Worfdb", + "prefix": "worfdb", + "sameas": "bioregistry.worfdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://worfdb.dfci.harvard.edu/index.php?search_type=name&page=showresultrc&race_query=$1" + }, + "bioregistry.worfdb.n2t": { + "authority": "n2t", + "homepage": "http://worfdb.dfci.harvard.edu/", + "id": "bioregistry.worfdb.n2t", + "name": "Worm Orf DB at Harvard", + "prefix": "worfdb", + "sameas": "bioregistry.worfdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://worfdb.dfci.harvard.edu/index.php?search_type=name&page=showresultrc&race_query=$1" + }, + "bioregistry.worfdb.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://worfdb.dfci.harvard.edu/", + "id": "bioregistry.worfdb.prefixcommons", + "name": "The C.elegans ORFeome cloning project", + "prefix": "worfdb", + "sameas": "bioregistry.worfdb", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://worfdb.dfci.harvard.edu/searchallwormorfs.pl?sid=$1" + }, + "bioregistry.world2dpage": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.world2dpage", + "name": "The World-2DPAGE database", + "prefix": "world2dpage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://world-2dpage.expasy.org/repository/$1" + }, + "bioregistry.world2dpage.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://world-2dpage.expasy.org/repository/", + "id": "bioregistry.world2dpage.prefixcommons", + "name": "The World-2DPAGE database", + "prefix": "world2dpage", + "sameas": "bioregistry.world2dpage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://world-2dpage.expasy.org/repository/database=$1" + }, + "bioregistry.world2dpage.uniprot": { + "authority": "uniprot", + "homepage": "https://world-2dpage.expasy.org/repository/", + "id": "bioregistry.world2dpage.uniprot", + "name": "The World-2DPAGE database", + "prefix": "DB-0121", + "sameas": "bioregistry.world2dpage", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://world-2dpage.expasy.org/repository/$1" + }, + "bioregistry.wormbase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.wormbase", + "name": "Caenorhabditis elegans Genome Database", + "prefix": "wormbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "anatomy and morphology" + ], + "uri_format": "https://www.wormbase.org/get?name=$1" + }, + "bioregistry.wormbase.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.wormbase.biocontext", + "name": null, + "prefix": "WormBase", + "sameas": "bioregistry.wormbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "anatomy and morphology" + ], + "uri_format": "https://www.wormbase.org/get?name=$1" + }, + "bioregistry.wormbase.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.wormbase.biolink", + "name": null, + "prefix": "WBVocab", + "sameas": "bioregistry.wormbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "anatomy and morphology" + ], + "uri_format": "http://bio2rdf.org/wormbase_vocabulary$1" + }, + "bioregistry.wormbase.go": { + "authority": "go", + "homepage": "http://www.wormbase.org/", + "id": "bioregistry.wormbase.go", + "name": "WormBase database of nematode biology", + "prefix": "WB_REF", + "sameas": "bioregistry.wormbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "anatomy and morphology" + ], + "uri_format": "http://www.wormbase.org/get?name=$1" + }, + "bioregistry.wormbase.miriam": { + "authority": "miriam", + "homepage": "https://www.wormbase.org/", + "id": "bioregistry.wormbase.miriam", + "name": "WormBase", + "prefix": "wb", + "sameas": "bioregistry.wormbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wormbase.org/get?name=$1" + }, + "bioregistry.wormbase.n2t": { + "authority": "n2t", + "homepage": "https://www.wormbase.org/", + "id": "bioregistry.wormbase.n2t", + "name": "WormBase", + "prefix": "wb", + "sameas": "bioregistry.wormbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wormbase.org/get?name=$1" + }, + "bioregistry.wormbase.uniprot": { + "authority": "uniprot", + "homepage": "https://www.wormbase.org/", + "id": "bioregistry.wormbase.uniprot", + "name": "WormBase", + "prefix": "DB-0110", + "sameas": "bioregistry.wormbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "anatomy and morphology" + ], + "uri_format": "https://wormbase.org/db/seq/protein?name=$1;class=CDS" + }, + "bioregistry.wormbase.wikidata": { + "authority": "wikidata", + "homepage": "http://www.wormbase.org", + "id": "bioregistry.wormbase.wikidata", + "name": "Wormbase Gene ID", + "prefix": "P3860", + "sameas": "bioregistry.wormbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics", + "anatomy and morphology" + ], + "uri_format": "http://www.wormbase.org/db/gene/gene?name=$1;class=Gene" + }, + "bioregistry.wormpep": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.wormpep", + "name": "Caenorhabditis elegans genome sequencing project protein database", + "prefix": "wormpep", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "https://www.wormbase.org/db/seq/protein?name=WP:$1" + }, + "bioregistry.wormpep.miriam": { + "authority": "miriam", + "homepage": "https://www.wormbase.org/db/seq/protein", + "id": "bioregistry.wormpep.miriam", + "name": "Wormpep", + "prefix": "wormpep", + "sameas": "bioregistry.wormpep", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wormbase.org/db/seq/protein?name=$1" + }, + "bioregistry.wormpep.n2t": { + "authority": "n2t", + "homepage": "https://www.wormbase.org/db/seq/protein", + "id": "bioregistry.wormpep.n2t", + "name": "Wormpep (Master)", + "prefix": "wormpep", + "sameas": "bioregistry.wormpep", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.wormbase.org/db/seq/protein?name=WP:$1" + }, + "bioregistry.wormpep.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.wormbase.org/db/seq/protein", + "id": "bioregistry.wormpep.prefixcommons", + "name": "Caenorhabditis elegans genome sequencing project protein database", + "prefix": "wormpep", + "sameas": "bioregistry.wormpep", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.wormbase.org/db/seq/protein?name=$1" + }, + "bioregistry.worms": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.worms", + "name": "World Register of Marine Species", + "prefix": "worms", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.marinespecies.org/aphia.php?p=taxdetails&id=$1" + }, + "bioregistry.worms.miriam": { + "authority": "miriam", + "homepage": "http://www.marinespecies.org/", + "id": "bioregistry.worms.miriam", + "name": "World Register of Marine Species", + "prefix": "worms", + "sameas": "bioregistry.worms", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.marinespecies.org/aphia.php?p=taxdetails&id=$1" + }, + "bioregistry.worms.n2t": { + "authority": "n2t", + "homepage": "http://www.marinespecies.org/", + "id": "bioregistry.worms.n2t", + "name": "World Register of Marine Species", + "prefix": "worms", + "sameas": "bioregistry.worms", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.marinespecies.org/aphia.php?p=taxdetails&id=$1" + }, + "bioregistry.worms.wikidata": { + "authority": "wikidata", + "homepage": "https://www.marinespecies.org/aphia.php?p=search", + "id": "bioregistry.worms.wikidata", + "name": "WoRMS-ID for taxa", + "prefix": "P850", + "sameas": "bioregistry.worms", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.marinespecies.org/aphia.php?p=taxdetails&id=$1" + }, + "bioregistry.wos": { + "authority": "bioregistry", + "homepage": "https://www.webofscience.com", + "id": "bioregistry.wos", + "name": "Web of Science ID (work)", + "prefix": "wos", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://gateway.webofknowledge.com/gateway/Gateway.cgi?GWVersion=2&SrcApp=Publons&SrcAuth=Publons_CEL&KeyUT=WOS:$1&DestLinkType=FullRecord&DestApp=WOS_CPL" + }, + "bioregistry.wos.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.wos.wikidata", + "name": "Web of Science ID (work)", + "prefix": "P8372", + "sameas": "bioregistry.wos", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://gateway.webofknowledge.com/gateway/Gateway.cgi?GWVersion=2&SrcApp=Publons&SrcAuth=Publons_CEL&KeyUT=WOS:$1&DestLinkType=FullRecord&DestApp=WOS_CPL" + }, + "bioregistry.wwf.ecoregion": { + "authority": "bioregistry", + "homepage": "https://www.worldwildlife.org/biomes", + "id": "bioregistry.wwf.ecoregion", + "name": "World Wildlife Fund Ecoregion", + "prefix": "wwf.ecoregion", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.worldwildlife.org/ecoregions/$1" + }, + "bioregistry.wwf.ecoregion.wikidata": { + "authority": "wikidata", + "homepage": "https://www.worldwildlife.org/biomes", + "id": "bioregistry.wwf.ecoregion.wikidata", + "name": "WWF ecoregion code", + "prefix": "P1294", + "sameas": "bioregistry.wwf.ecoregion", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.worldwildlife.org/ecoregions/$1" + }, + "bioregistry.xenbase": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.xenbase", + "name": "Xenopus laevis and tropicalis biology and genomics resource", + "prefix": "xenbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.xenbase.org/gene/showgene.do?method=display&geneId=$1" + }, + "bioregistry.xenbase.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.xenbase.biocontext", + "name": null, + "prefix": "Xenbase", + "sameas": "bioregistry.xenbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.xenbase.org/gene/showgene.do?method=display&geneId=$1" + }, + "bioregistry.xenbase.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.xenbase.biolink", + "name": null, + "prefix": "Xenbase", + "sameas": "bioregistry.xenbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.xenbase.org/gene/showgene.do?method=display&geneId=$1" + }, + "bioregistry.xenbase.miriam": { + "authority": "miriam", + "homepage": "https://www.xenbase.org/", + "id": "bioregistry.xenbase.miriam", + "name": "Xenbase", + "prefix": "xenbase", + "sameas": "bioregistry.xenbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://www.xenbase.org/entry/$1" + }, + "bioregistry.xenbase.n2t": { + "authority": "n2t", + "homepage": "http://www.xenbase.org/", + "id": "bioregistry.xenbase.n2t", + "name": "Xenbase at University of Calgary", + "prefix": "xenbase", + "sameas": "bioregistry.xenbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.xenbase.org/gene/showgene.do?method=displayGeneSummary&geneId=$1" + }, + "bioregistry.xenbase.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.xenbase.org", + "id": "bioregistry.xenbase.prefixcommons", + "name": "Xenopus laevis and tropicalis biology and genomics resource", + "prefix": "xenbase", + "sameas": "bioregistry.xenbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.xenbase.org/gene/showgene.do?method=display&geneId=$1" + }, + "bioregistry.xenbase.uniprot": { + "authority": "uniprot", + "homepage": "https://www.xenbase.org/", + "id": "bioregistry.xenbase.uniprot", + "name": "Xenopus laevis and tropicalis biology and genomics resource", + "prefix": "DB-0129", + "sameas": "bioregistry.xenbase", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "https://www.xenbase.org/gene/showgene.do?method=display&geneId=$1" + }, + "bioregistry.ximbio": { + "authority": "bioregistry", + "homepage": "https://ximbio.com", + "id": "bioregistry.ximbio", + "name": "Ximbio reagents online portal", + "prefix": "ximbio", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ximbio.com/reagent/$1" + }, + "bioregistry.ximbio.cellosaurus": { + "authority": "cellosaurus", + "homepage": "https://ximbio.com", + "id": "bioregistry.ximbio.cellosaurus", + "name": "Ximbio reagents online portal", + "prefix": "Ximbio", + "sameas": "bioregistry.ximbio", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://ximbio.com/reagent/$1" + }, + "bioregistry.xml": { + "authority": "bioregistry", + "homepage": "https://www.w3.org/TR/xml/", + "id": "bioregistry.xml", + "name": "Extensible Markup Language", + "prefix": "xml", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/XML/1998/namespace$1" + }, + "bioregistry.xml.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.xml.biocontext", + "name": null, + "prefix": "xml", + "sameas": "bioregistry.xml", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/XML/1998/namespace$1" + }, + "bioregistry.xpo": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.xpo", + "name": "Xenopus Phenotype Ontology", + "prefix": "xpo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/XPO_$1" + }, + "bioregistry.xpo.biolink": { + "authority": "biolink", + "homepage": null, + "id": "bioregistry.xpo.biolink", + "name": null, + "prefix": "XPO", + "sameas": "bioregistry.xpo", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/XPO_$1" + }, + "bioregistry.xsd": { + "authority": "bioregistry", + "homepage": "http://www.w3.org/2001/XMLSchema", + "id": "bioregistry.xsd", + "name": "XML Schema Definition", + "prefix": "xsd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/2001/XMLSchema#$1" + }, + "bioregistry.xsd.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.xsd.biocontext", + "name": null, + "prefix": "xsd", + "sameas": "bioregistry.xsd", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.w3.org/2001/XMLSchema#$1" + }, + "bioregistry.ydpm": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ydpm", + "name": "Yeast Deletion Project and Proteomics of Mitochondria Database", + "prefix": "ydpm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www-deletion.stanford.edu/cgi-bin/YDPM/YDPM_search.cgi?thelist=$1" + }, + "bioregistry.ydpm.miriam": { + "authority": "miriam", + "homepage": "http://www-deletion.stanford.edu/YDPM/", + "id": "bioregistry.ydpm.miriam", + "name": "YDPM", + "prefix": "ydpm", + "sameas": "bioregistry.ydpm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www-deletion.stanford.edu/cgi-bin/YDPM/YDPM_search.cgi?thelist=$1" + }, + "bioregistry.ydpm.n2t": { + "authority": "n2t", + "homepage": "http://www-deletion.stanford.edu/YDPM/", + "id": "bioregistry.ydpm.n2t", + "name": "YDPM at Stanford University School of Medicine", + "prefix": "ydpm", + "sameas": "bioregistry.ydpm", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www-deletion.stanford.edu/cgi-bin/YDPM/YDPM_search.cgi?thelist=$1" + }, + "bioregistry.yeastintron": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.yeastintron", + "name": "Yeast Intron Database version 4.3 at Baskin School of Engineering", + "prefix": "yeastintron", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://intron.ucsc.edu/cgi-bin/yeast4.3/intronreports.pl?outputformat=full&orfName=$1" + }, + "bioregistry.yeastintron.miriam": { + "authority": "miriam", + "homepage": "http://intron.ucsc.edu/yeast4.3/", + "id": "bioregistry.yeastintron.miriam", + "name": "Yeast Intron Database v4.3", + "prefix": "yeastintron", + "sameas": "bioregistry.yeastintron", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://intron.ucsc.edu/cgi-bin/yeast4.3/intronreports.pl?outputformat=full&orfName=$1" + }, + "bioregistry.yeastintron.n2t": { + "authority": "n2t", + "homepage": "http://intron.ucsc.edu/yeast4.3/", + "id": "bioregistry.yeastintron.n2t", + "name": "Yeast Intron Database version 4.3 at Baskin School of Engineering", + "prefix": "yeastintron", + "sameas": "bioregistry.yeastintron", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://intron.ucsc.edu/cgi-bin/yeast4.3/intronreports.pl?outputformat=full&orfName=$1" + }, + "bioregistry.yeastract": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.yeastract", + "name": "Yeast Searching for Transcriptional Regulators and Consensus Tracking", + "prefix": "yeastract", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.yeastract.com/view.php?existing=locus&orfname=$1" + }, + "bioregistry.yeastract.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.yeastract.com", + "id": "bioregistry.yeastract.prefixcommons", + "name": "Yeast Searching for Transcriptional Regulators and Consensus Tracking", + "prefix": "yeastract", + "sameas": "bioregistry.yeastract", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://www.yeastract.com/view.php?existing=locus&orfname=$1" + }, + "bioregistry.yetfasco": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.yetfasco", + "name": "YeTFasCo at University of Toronto", + "prefix": "yetfasco", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://yetfasco.ccbr.utoronto.ca/showPFM.php?mot=$1" + }, + "bioregistry.yetfasco.miriam": { + "authority": "miriam", + "homepage": "http://yetfasco.ccbr.utoronto.ca/", + "id": "bioregistry.yetfasco.miriam", + "name": "YeTFasCo", + "prefix": "yetfasco", + "sameas": "bioregistry.yetfasco", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://yetfasco.ccbr.utoronto.ca/showPFM.php?mot=$1" + }, + "bioregistry.yetfasco.n2t": { + "authority": "n2t", + "homepage": "http://yetfasco.ccbr.utoronto.ca/", + "id": "bioregistry.yetfasco.n2t", + "name": "YeTFasCo at University of Toronto", + "prefix": "yetfasco", + "sameas": "bioregistry.yetfasco", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://yetfasco.ccbr.utoronto.ca/showPFM.php?mot=$1" + }, + "bioregistry.ygob": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.ygob", + "name": "Yeast Genome Order Browser", + "prefix": "ygob", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://wolfe.gen.tcd.ie/cgi/browser/ygob.pl?gene=$1" + }, + "bioregistry.ygob.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://wolfe.gen.tcd.ie/ygob", + "id": "bioregistry.ygob.prefixcommons", + "name": "Yeast Genome Order Browser", + "prefix": "ygob", + "sameas": "bioregistry.ygob", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "genetics" + ], + "uri_format": "http://wolfe.gen.tcd.ie/cgi/browser/ygob.pl?gene=$1" + }, + "bioregistry.yid": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.yid", + "name": "Yeast Intron Database version 3 at Baskin School of Engineering", + "prefix": "yid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://metarray.ucsc.edu/cgi-bin/intron/yirIntrondb?orfName=$1" + }, + "bioregistry.yid.miriam": { + "authority": "miriam", + "homepage": "http://compbio.soe.ucsc.edu/yeast_introns.html", + "id": "bioregistry.yid.miriam", + "name": "Yeast Intron Database v3", + "prefix": "yid", + "sameas": "bioregistry.yid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://metarray.ucsc.edu/cgi-bin/intron/yirIntrondb?orfName=$1" + }, + "bioregistry.yid.n2t": { + "authority": "n2t", + "homepage": "http://compbio.soe.ucsc.edu/yeast_introns.html", + "id": "bioregistry.yid.n2t", + "name": "Yeast Intron Database version 3 at Baskin School of Engineering", + "prefix": "yid", + "sameas": "bioregistry.yid", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://metarray.ucsc.edu/cgi-bin/intron/yirIntrondb?orfName=$1" + }, + "bioregistry.yrcpdr": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.yrcpdr", + "name": "Yeast Resource Center Public Data Repository", + "prefix": "yrcpdr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://yeastrc.org/pdr/viewProtein.do?id=$1" + }, + "bioregistry.yrcpdr.miriam": { + "authority": "miriam", + "homepage": "http://www.yeastrc.org/pdr/", + "id": "bioregistry.yrcpdr.miriam", + "name": "YRC PDR", + "prefix": "yrcpdr", + "sameas": "bioregistry.yrcpdr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://yeastrc.org/pdr/viewProtein.do?id=$1" + }, + "bioregistry.yrcpdr.n2t": { + "authority": "n2t", + "homepage": "http://www.yeastrc.org/pdr/", + "id": "bioregistry.yrcpdr.n2t", + "name": "YRC PDR at University of Washington", + "prefix": "yrcpdr", + "sameas": "bioregistry.yrcpdr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://yeastrc.org/pdr/viewProtein.do?id=$1" + }, + "bioregistry.yrcpdr.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://www.yeastrc.org/pdr/", + "id": "bioregistry.yrcpdr.prefixcommons", + "name": "Yeast Resource Center Public Data Repository", + "prefix": "yrc", + "sameas": "bioregistry.yrcpdr", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "biochemistry" + ], + "uri_format": "http://www.yeastrc.org/pdr/viewProtein.do?id=$1" + }, + "bioregistry.zenodo.record": { + "authority": "bioregistry", + "homepage": "https://zenodo.org", + "id": "bioregistry.zenodo.record", + "name": "Zenodo ID", + "prefix": "zenodo.record", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://zenodo.org/record/$1" + }, + "bioregistry.zenodo.record.wikidata": { + "authority": "wikidata", + "homepage": null, + "id": "bioregistry.zenodo.record.wikidata", + "name": "Zenodo ID", + "prefix": "P4901", + "sameas": "bioregistry.zenodo.record", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://zenodo.org/record/$1" + }, + "bioregistry.zfin": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.zfin", + "name": "Zebrafish Information Network genome database", + "prefix": "zfin", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology", + "genetics" + ], + "uri_format": "https://zfin.org/$1" + }, + "bioregistry.zfin.biocontext": { + "authority": "biocontext", + "homepage": null, + "id": "bioregistry.zfin.biocontext", + "name": null, + "prefix": "ZFIN", + "sameas": "bioregistry.zfin", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology", + "genetics" + ], + "uri_format": "http://zfin.org/$1" + }, + "bioregistry.zfin.miriam": { + "authority": "miriam", + "homepage": "http://zfin.org", + "id": "bioregistry.zfin.miriam", + "name": "ZFIN Bioentity", + "prefix": "zfin", + "sameas": "bioregistry.zfin", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://zfin.org/$1" + }, + "bioregistry.zfin.n2t": { + "authority": "n2t", + "homepage": "http://zfin.org", + "id": "bioregistry.zfin.n2t", + "name": "ZFIN at University of Oregon", + "prefix": "zfin", + "sameas": "bioregistry.zfin", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://zfin.org/$1" + }, + "bioregistry.zfin.prefixcommons": { + "authority": "prefixcommons", + "homepage": "http://zfin.org/", + "id": "bioregistry.zfin.prefixcommons", + "name": "Zebrafish Information Network genome database", + "prefix": "zfin", + "sameas": "bioregistry.zfin", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology", + "genetics" + ], + "uri_format": "http://zfin.org/cgi-bin/webdriver?MIval=aa-markerview.apg&OID=$1" + }, + "bioregistry.zfin.uniprot": { + "authority": "uniprot", + "homepage": "https://zfin.org/", + "id": "bioregistry.zfin.uniprot", + "name": "Zebrafish Information Network genome database", + "prefix": "DB-0113", + "sameas": "bioregistry.zfin", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology", + "genetics" + ], + "uri_format": "https://zfin.org/$1" + }, + "bioregistry.zfin.wikidata": { + "authority": "wikidata", + "homepage": "http://zfin.org", + "id": "bioregistry.zfin.wikidata", + "name": "ZFIN Gene ID", + "prefix": "P3870", + "sameas": "bioregistry.zfin", + "source": "bioregistry.io", + "subjects": [ + "biological sciences", + "zoology", + "genetics" + ], + "uri_format": "https://zfin.org/$1" + }, + "bioregistry.zinc": { + "authority": "bioregistry", + "homepage": null, + "id": "bioregistry.zinc", + "name": "ZINC at University of California (San Francisco)", + "prefix": "zinc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://zinc15.docking.org/substances/$1" + }, + "bioregistry.zinc.miriam": { + "authority": "miriam", + "homepage": "http://zinc15.docking.org/", + "id": "bioregistry.zinc.miriam", + "name": "ZINC", + "prefix": "zinc", + "sameas": "bioregistry.zinc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://zinc15.docking.org/substances/$1" + }, + "bioregistry.zinc.n2t": { + "authority": "n2t", + "homepage": "http://zinc15.docking.org/", + "id": "bioregistry.zinc.n2t", + "name": "ZINC at University of California (San Francisco)", + "prefix": "zinc", + "sameas": "bioregistry.zinc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://zinc15.docking.org/substances/$1" + }, + "bioregistry.zinc.wikidata": { + "authority": "wikidata", + "homepage": "http://zinc.docking.org/", + "id": "bioregistry.zinc.wikidata", + "name": "ZINC ID", + "prefix": "P2084", + "sameas": "bioregistry.zinc", + "source": "bioregistry.io", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://zinc.docking.org/substances/ZINC$1" + } +} diff --git a/fuji_server/data/linked_vocabs/cessda_ontologies.json b/fuji_server/data/linked_vocabs/cessda_ontologies.json index 0471b2bf..444db141 100644 --- a/fuji_server/data/linked_vocabs/cessda_ontologies.json +++ b/fuji_server/data/linked_vocabs/cessda_ontologies.json @@ -1 +1,538 @@ -{"cessda.CdcPublisherNames": {"id": "cessda.CdcPublisherNames", "prefix": "CdcPublisherNames", "name": "CDC Publisher Names", "description": "Names of organisations providing metadata for CESSDA Data Catalogue.", "homepage": "https://vocabularies.cessda.eu/vocabulary/CdcPublisherNames/6.0.0", "uri_format": "https://vocabularies.cessda.eu/vocabulary/CdcPublisherNames/6.0.0$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda:CdcPublisherNames.v2": {"id": "cessda:CdcPublisherNames.v2", "sameas": "cessda:CdcPublisherNames", "prefix": "CdcPublisherNames", "name": "CDC Publisher Names", "description": "Names of organisations providing metadata for CESSDA Data Catalogue.", "homepage": "https://vocabularies.cessda.eu/v2/vocabularies/CdcPublisherNames/6.0.0", "uri_format": "https://vocabularies.cessda.eu/v2/vocabularies/CdcPublisherNames/6.0.0$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.CessdaPersistentIdentifierTypes": {"id": "cessda.CessdaPersistentIdentifierTypes", "prefix": "CessdaPersistentIdentifierTypes", "name": "CESSDA Persistent Identifier Types", "description": "Lists the types of persistent identifiers that CESSDA accepts as study level PIDs in its data catalogue.", "homepage": "https://vocabularies.cessda.eu/vocabulary/CessdaPersistentIdentifierTypes", "uri_format": "https://vocabularies.cessda.eu/vocabulary/CessdaPersistentIdentifierTypes$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda:CessdaPersistentIdentifierTypes.v2": {"id": "cessda:CessdaPersistentIdentifierTypes.v2", "sameas": "cessda:CessdaPersistentIdentifierTypes", "prefix": "CessdaPersistentIdentifierTypes", "name": "CESSDA Persistent Identifier Types", "description": "Lists the types of persistent identifiers that CESSDA accepts as study level PIDs in its data catalogue.", "homepage": "https://vocabularies.cessda.eu/v2/vocabularies/CessdaPersistentIdentifierTypes", "uri_format": "https://vocabularies.cessda.eu/v2/vocabularies/CessdaPersistentIdentifierTypes$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.CountryNamesAndCodes": {"id": "cessda.CountryNamesAndCodes", "prefix": "CountryNamesAndCodes", "name": "Country Names and Codes", "description": "ISO 3166-1 alpha-2 country codes and names.", "homepage": "https://vocabularies.cessda.eu/vocabulary/CountryNamesAndCodes", "uri_format": "https://vocabularies.cessda.eu/vocabulary/CountryNamesAndCodes$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda:CountryNamesAndCodes.v2": {"id": "cessda:CountryNamesAndCodes.v2", "sameas": "cessda:CountryNamesAndCodes", "prefix": "CountryNamesAndCodes", "name": "Country Names and Codes", "description": "ISO 3166-1 alpha-2 country codes and names.", "homepage": "https://vocabularies.cessda.eu/v2/vocabularies/CountryNamesAndCodes", "uri_format": "https://vocabularies.cessda.eu/v2/vocabularies/CountryNamesAndCodes$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.TopicClassification": {"id": "cessda.TopicClassification", "prefix": "TopicClassification", "name": "CESSDA Topic Classification", "description": "A typology of main themes or subjects of data.", "homepage": "https://vocabularies.cessda.eu/vocabulary/TopicClassification", "uri_format": "https://vocabularies.cessda.eu/vocabulary/TopicClassification$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda:TopicClassification.v2": {"id": "cessda:TopicClassification.v2", "sameas": "cessda:TopicClassification", "prefix": "TopicClassification", "name": "CESSDA Topic Classification", "description": "A typology of main themes or subjects of data.", "homepage": "https://vocabularies.cessda.eu/v2/vocabularies/TopicClassification", "uri_format": "https://vocabularies.cessda.eu/v2/vocabularies/TopicClassification$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.AggregationMethod": {"id": "cessda.AggregationMethod", "prefix": "AggregationMethod", "name": "Aggregation Method", "description": "Identifies the type of aggregation used to combine related categories, usually within a common branch of a hierarchy, to provide information at a broader level than the level at which detailed observations are taken. (From: The OECD Glossary of Statistical Terms)", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/AggregationMethod", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/AggregationMethod$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.AnalysisUnit": {"id": "cessda.AnalysisUnit", "prefix": "AnalysisUnit", "name": "Analysis Unit", "description": "Describes the entity being analyzed in the study or variable. This vocabulary can also be used to describe the unit of observation, which is the unit being observed, or from which data are collected. The unit of observation can be the same as, or different from the unit of analysis. ", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/AnalysisUnit", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/AnalysisUnit$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.CharacterSet": {"id": "cessda.CharacterSet", "prefix": "CharacterSet", "name": "Character Set", "description": "Standard set of characters upon which many character encodings are based (Wikipedia).", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/CharacterSet", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/CharacterSet$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.CommonalityType": {"id": "cessda.CommonalityType", "prefix": "CommonalityType", "name": "Commonality Type", "description": "Describes the degree of similarity between two items or schemes (collections of items).", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/CommonalityType", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/CommonalityType$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.ContributorRole": {"id": "cessda.ContributorRole", "prefix": "ContributorRole", "name": "Contributor Role", "description": "A classification of contributor roles.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/ContributorRole", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/ContributorRole$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.DataSourceType": {"id": "cessda.DataSourceType", "prefix": "DataSourceType", "name": "Data Source Type", "description": "Includes a typology of data sources.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/DataSourceType", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/DataSourceType$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.DataType": {"id": "cessda.DataType", "prefix": "DataType", "name": "Data Type", "description": "Identifies the type of data, which has a bearing on the acceptable data values, the operations that can be performed with the data, and the ways in which the data are stored.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/DataType", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/DataType$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.DateType": {"id": "cessda.DateType", "prefix": "DateType", "name": "Date Type", "description": "Specifies the type of date.\n", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/DateType", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/DateType$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.GeneralDataFormat": {"id": "cessda.GeneralDataFormat", "prefix": "GeneralDataFormat", "name": "General Data Format", "description": "Describes the physical format(s) of the data documented in the logical product(s) of a study unit.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/GeneralDataFormat", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/GeneralDataFormat$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.LanguageProficiency": {"id": "cessda.LanguageProficiency", "prefix": "LanguageProficiency", "name": "Language Proficiency", "description": "Describes the level of proficiency of an individual in a natural language.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/LanguageProficiency", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/LanguageProficiency$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.LifecycleEventType": {"id": "cessda.LifecycleEventType", "prefix": "LifecycleEventType", "name": "Lifecycle Event Type", "description": "Specifies the event happening over the data life cycle that is considered significant enough to document.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/LifecycleEventType", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/LifecycleEventType$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.ModeOfCollection": {"id": "cessda.ModeOfCollection", "prefix": "ModeOfCollection", "name": "Mode Of Collection", "description": "The procedure, technique, or mode of inquiry used to attain the data.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/ModeOfCollection", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/ModeOfCollection$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.NumericType": {"id": "cessda.NumericType", "prefix": "NumericType", "name": "Numeric Type", "description": "Specifies the type of numeric data.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/NumericType", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/NumericType$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.ResponseUnit": {"id": "cessda.ResponseUnit", "prefix": "ResponseUnit", "name": "Response Unit", "description": "Indicates the entity that provided the information carried by the variable.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/ResponseUnit", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/ResponseUnit$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.SamplingProcedure": {"id": "cessda.SamplingProcedure", "prefix": "SamplingProcedure", "name": "Sampling Procedure", "description": "A typology of sampling methods.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/SamplingProcedure", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/SamplingProcedure$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.SoftwarePackage": {"id": "cessda.SoftwarePackage", "prefix": "SoftwarePackage", "name": "Software Package", "description": "Indicates the statistical software package used in the production/processing/dissemination of the data. Data collection software is not covered in this list.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/SoftwarePackage", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/SoftwarePackage$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.SummaryStatisticType": {"id": "cessda.SummaryStatisticType", "prefix": "SummaryStatisticType", "name": "Summary Statistic Type", "description": "Specifies the type of summary statistic. Summary statistics are a single number representation of the characteristics of a set of values.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/SummaryStatisticType", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/SummaryStatisticType$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.TimeMethod": {"id": "cessda.TimeMethod", "prefix": "TimeMethod", "name": "Time Method", "description": "Describes the time dimension of the data collection.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TimeMethod", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TimeMethod$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.TimeZone": {"id": "cessda.TimeZone", "prefix": "TimeZone", "name": "Time Zone", "description": "Time zone specification as an offset from UTC (Coordinated Universal Time) in terms of hours and minutes.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TimeZone", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TimeZone$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.TypeOfAddress": {"id": "cessda.TypeOfAddress", "prefix": "TypeOfAddress", "name": "Type of Address", "description": "Identifies the type of address entered as contact information for an individual or an organization.\n\n", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfAddress", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfAddress$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.TypeOfConceptGroup": {"id": "cessda.TypeOfConceptGroup", "prefix": "TypeOfConceptGroup", "name": "Type of Concept Group", "description": "Specifies the rationale for creating a concept group.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfConceptGroup", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfConceptGroup$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.TypeOfFrequency": {"id": "cessda.TypeOfFrequency", "prefix": "TypeOfFrequency", "name": "Type of Frequency", "description": "Indicates the frequency of data collection events. \n", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfFrequency", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfFrequency$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.TypeOfInstrument": {"id": "cessda.TypeOfInstrument", "prefix": "TypeOfInstrument", "name": "Type of Instrument", "description": "Includes a typology of data collection instruments.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfInstrument", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfInstrument$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.TypeOfNote": {"id": "cessda.TypeOfNote", "prefix": "TypeOfNote", "name": "Type of Note", "description": "Includes a typology of notes.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfNote", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfNote$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.TypeOfTelephone": {"id": "cessda.TypeOfTelephone", "prefix": "TypeOfTelephone", "name": "Type of Telephone", "description": "Identifies the type of telephone entered as contact information for an individual or an organization.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfTelephone", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfTelephone$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.TypeOfTranslationMethod": {"id": "cessda.TypeOfTranslationMethod", "prefix": "TypeOfTranslationMethod", "name": "Type of Translation Method", "description": "A typology of methods used to translate data collection instruments, including questionnaires, individual questions, measurements, data capture flows, etc.", "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfTranslationMethod", "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfTranslationMethod$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.KategorienschemaWahlstudien": {"id": "cessda.KategorienschemaWahlstudien", "prefix": "KategorienschemaWahlstudien", "name": "Category Scheme Election Studies ", "description": "The Category Scheme Election Studies provides the ability to categorize election studies at the question and/or variable level.", "homepage": "https://www.gesis.org/vocabulary/KategorienschemaWahlstudien/1.0", "uri_format": "https://www.gesis.org/vocabulary/KategorienschemaWahlstudien/1.0$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.Variables-Relations": {"id": "cessda.Variables-Relations", "prefix": "Variables-Relations", "name": "Variables relations for Social Sciences research data", "description": "As the variable is one of the most relevant entities to enhance data reuse in the Social Sciences, we provide a framework design to better semantics the variables' relations descriptions. These explicit relations between variables enable comparability and facilitate harmonization across waves. We provide a brief textual identification of the relation type, supported by a controlled vocabulary (CV) and an extended description of the relationship. These relations within variables include but are not limited to different versions, derived formats in new waves, new labels and name wording, and alternative response schema through questionnaires and surveys. For instance, a given variable label is changed from one wave to another, even though its concept remains the same. Their values also are subject to change, such as new cardinalities settings, their categorization, or response scheme and scale measurement. They change based on different conditions, e.g., values are updated by any constraints or modified to comply with the study evolution requirements or a new sociological approach. In the Social Sciences, Economics, and Behaviour Sciences, which investigate, for instance, the social structure of the population, political attitudes of voters and candidates, opinions on family, work, religion, politics and society or competencies of adults, those topics are highly subject to change to fit the empirical reality in a constantly changing world. Thus, we propose widening relations descriptions for Social Sciences variables within datasets beginning from the BasedOnObjectType DDI as a first approach. ", "homepage": "null/1.0.0", "uri_format": "null/1.0.0$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.rexconcepts": {"id": "cessda.rexconcepts", "prefix": "rexconcepts", "name": " Central concepts of R|EX research ", "description": "This CV, developed within the framework of the DP-R|EX joint project, maps the central concepts and theoretical approaches in research on racism and right-wing extremism. The compilation is based on a systematic evaluation of the relevant national and international empirical research literature. The CV equally takes into account the different thematic (racism, right-wing extremism, discrimination) as well as methodological (qualitative research, standardised surveys, data from social media and messaging services) research strands. ", "homepage": "null/1.0.0/1.1.0/1.2.0", "uri_format": "null/1.0.0/1.1.0/1.2.0$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}, "cessda.rexgroups": {"id": "cessda.rexgroups", "prefix": "rexgroups", "name": "rexgroups", "description": null, "homepage": "null/1.0.0", "uri_format": "null/1.0.0$1", "source": "https://vocabularies.cessda.eu/", "authority": "cessda", "pattern": "\\/?(v\\=)?([0-9]\\.?)+", "subjects": ["social sciences"]}} \ No newline at end of file +{ + "cessda.AggregationMethod": { + "authority": "cessda", + "description": "Identifies the type of aggregation used to combine related categories, usually within a common branch of a hierarchy, to provide information at a broader level than the level at which detailed observations are taken. (From: The OECD Glossary of Statistical Terms)", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/AggregationMethod", + "id": "cessda.AggregationMethod", + "name": "Aggregation Method", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "AggregationMethod", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/AggregationMethod$1" + }, + "cessda.AnalysisUnit": { + "authority": "cessda", + "description": "Describes the entity being analyzed in the study or variable. This vocabulary can also be used to describe the unit of observation, which is the unit being observed, or from which data are collected. The unit of observation can be the same as, or different from the unit of analysis. ", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/AnalysisUnit", + "id": "cessda.AnalysisUnit", + "name": "Analysis Unit", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "AnalysisUnit", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/AnalysisUnit$1" + }, + "cessda.CdcPublisherNames": { + "authority": "cessda", + "description": "Names of organisations providing metadata for CESSDA Data Catalogue.", + "homepage": "https://vocabularies.cessda.eu/vocabulary/CdcPublisherNames/6.0.0", + "id": "cessda.CdcPublisherNames", + "name": "CDC Publisher Names", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "CdcPublisherNames", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "https://vocabularies.cessda.eu/vocabulary/CdcPublisherNames/6.0.0$1" + }, + "cessda.CessdaPersistentIdentifierTypes": { + "authority": "cessda", + "description": "Lists the types of persistent identifiers that CESSDA accepts as study level PIDs in its data catalogue.", + "homepage": "https://vocabularies.cessda.eu/vocabulary/CessdaPersistentIdentifierTypes", + "id": "cessda.CessdaPersistentIdentifierTypes", + "name": "CESSDA Persistent Identifier Types", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "CessdaPersistentIdentifierTypes", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "https://vocabularies.cessda.eu/vocabulary/CessdaPersistentIdentifierTypes$1" + }, + "cessda.CharacterSet": { + "authority": "cessda", + "description": "Standard set of characters upon which many character encodings are based (Wikipedia).", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/CharacterSet", + "id": "cessda.CharacterSet", + "name": "Character Set", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "CharacterSet", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/CharacterSet$1" + }, + "cessda.CommonalityType": { + "authority": "cessda", + "description": "Describes the degree of similarity between two items or schemes (collections of items).", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/CommonalityType", + "id": "cessda.CommonalityType", + "name": "Commonality Type", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "CommonalityType", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/CommonalityType$1" + }, + "cessda.ContributorRole": { + "authority": "cessda", + "description": "A classification of contributor roles.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/ContributorRole", + "id": "cessda.ContributorRole", + "name": "Contributor Role", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "ContributorRole", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/ContributorRole$1" + }, + "cessda.CountryNamesAndCodes": { + "authority": "cessda", + "description": "ISO 3166-1 alpha-2 country codes and names.", + "homepage": "https://vocabularies.cessda.eu/vocabulary/CountryNamesAndCodes", + "id": "cessda.CountryNamesAndCodes", + "name": "Country Names and Codes", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "CountryNamesAndCodes", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "https://vocabularies.cessda.eu/vocabulary/CountryNamesAndCodes$1" + }, + "cessda.DataSourceType": { + "authority": "cessda", + "description": "Includes a typology of data sources.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/DataSourceType", + "id": "cessda.DataSourceType", + "name": "Data Source Type", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "DataSourceType", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/DataSourceType$1" + }, + "cessda.DataType": { + "authority": "cessda", + "description": "Identifies the type of data, which has a bearing on the acceptable data values, the operations that can be performed with the data, and the ways in which the data are stored.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/DataType", + "id": "cessda.DataType", + "name": "Data Type", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "DataType", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/DataType$1" + }, + "cessda.DateType": { + "authority": "cessda", + "description": "Specifies the type of date.\n", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/DateType", + "id": "cessda.DateType", + "name": "Date Type", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "DateType", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/DateType$1" + }, + "cessda.GeneralDataFormat": { + "authority": "cessda", + "description": "Describes the physical format(s) of the data documented in the logical product(s) of a study unit.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/GeneralDataFormat", + "id": "cessda.GeneralDataFormat", + "name": "General Data Format", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "GeneralDataFormat", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/GeneralDataFormat$1" + }, + "cessda.KategorienschemaWahlstudien": { + "authority": "cessda", + "description": "The Category Scheme Election Studies provides the ability to categorize election studies at the question and/or variable level.", + "homepage": "https://www.gesis.org/vocabulary/KategorienschemaWahlstudien/1.0", + "id": "cessda.KategorienschemaWahlstudien", + "name": "Category Scheme Election Studies ", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "KategorienschemaWahlstudien", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "https://www.gesis.org/vocabulary/KategorienschemaWahlstudien/1.0$1" + }, + "cessda.LanguageProficiency": { + "authority": "cessda", + "description": "Describes the level of proficiency of an individual in a natural language.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/LanguageProficiency", + "id": "cessda.LanguageProficiency", + "name": "Language Proficiency", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "LanguageProficiency", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/LanguageProficiency$1" + }, + "cessda.LifecycleEventType": { + "authority": "cessda", + "description": "Specifies the event happening over the data life cycle that is considered significant enough to document.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/LifecycleEventType", + "id": "cessda.LifecycleEventType", + "name": "Lifecycle Event Type", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "LifecycleEventType", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/LifecycleEventType$1" + }, + "cessda.ModeOfCollection": { + "authority": "cessda", + "description": "The procedure, technique, or mode of inquiry used to attain the data.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/ModeOfCollection", + "id": "cessda.ModeOfCollection", + "name": "Mode Of Collection", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "ModeOfCollection", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/ModeOfCollection$1" + }, + "cessda.NumericType": { + "authority": "cessda", + "description": "Specifies the type of numeric data.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/NumericType", + "id": "cessda.NumericType", + "name": "Numeric Type", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "NumericType", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/NumericType$1" + }, + "cessda.ResponseUnit": { + "authority": "cessda", + "description": "Indicates the entity that provided the information carried by the variable.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/ResponseUnit", + "id": "cessda.ResponseUnit", + "name": "Response Unit", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "ResponseUnit", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/ResponseUnit$1" + }, + "cessda.SamplingProcedure": { + "authority": "cessda", + "description": "A typology of sampling methods.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/SamplingProcedure", + "id": "cessda.SamplingProcedure", + "name": "Sampling Procedure", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "SamplingProcedure", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/SamplingProcedure$1" + }, + "cessda.SoftwarePackage": { + "authority": "cessda", + "description": "Indicates the statistical software package used in the production/processing/dissemination of the data. Data collection software is not covered in this list.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/SoftwarePackage", + "id": "cessda.SoftwarePackage", + "name": "Software Package", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "SoftwarePackage", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/SoftwarePackage$1" + }, + "cessda.SummaryStatisticType": { + "authority": "cessda", + "description": "Specifies the type of summary statistic. Summary statistics are a single number representation of the characteristics of a set of values.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/SummaryStatisticType", + "id": "cessda.SummaryStatisticType", + "name": "Summary Statistic Type", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "SummaryStatisticType", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/SummaryStatisticType$1" + }, + "cessda.TimeMethod": { + "authority": "cessda", + "description": "Describes the time dimension of the data collection.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TimeMethod", + "id": "cessda.TimeMethod", + "name": "Time Method", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "TimeMethod", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TimeMethod$1" + }, + "cessda.TimeZone": { + "authority": "cessda", + "description": "Time zone specification as an offset from UTC (Coordinated Universal Time) in terms of hours and minutes.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TimeZone", + "id": "cessda.TimeZone", + "name": "Time Zone", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "TimeZone", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TimeZone$1" + }, + "cessda.TopicClassification": { + "authority": "cessda", + "description": "A typology of main themes or subjects of data.", + "homepage": "https://vocabularies.cessda.eu/vocabulary/TopicClassification", + "id": "cessda.TopicClassification", + "name": "CESSDA Topic Classification", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "TopicClassification", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "https://vocabularies.cessda.eu/vocabulary/TopicClassification$1" + }, + "cessda.TypeOfAddress": { + "authority": "cessda", + "description": "Identifies the type of address entered as contact information for an individual or an organization.\n\n", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfAddress", + "id": "cessda.TypeOfAddress", + "name": "Type of Address", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "TypeOfAddress", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfAddress$1" + }, + "cessda.TypeOfConceptGroup": { + "authority": "cessda", + "description": "Specifies the rationale for creating a concept group.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfConceptGroup", + "id": "cessda.TypeOfConceptGroup", + "name": "Type of Concept Group", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "TypeOfConceptGroup", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfConceptGroup$1" + }, + "cessda.TypeOfFrequency": { + "authority": "cessda", + "description": "Indicates the frequency of data collection events. \n", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfFrequency", + "id": "cessda.TypeOfFrequency", + "name": "Type of Frequency", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "TypeOfFrequency", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfFrequency$1" + }, + "cessda.TypeOfInstrument": { + "authority": "cessda", + "description": "Includes a typology of data collection instruments.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfInstrument", + "id": "cessda.TypeOfInstrument", + "name": "Type of Instrument", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "TypeOfInstrument", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfInstrument$1" + }, + "cessda.TypeOfNote": { + "authority": "cessda", + "description": "Includes a typology of notes.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfNote", + "id": "cessda.TypeOfNote", + "name": "Type of Note", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "TypeOfNote", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfNote$1" + }, + "cessda.TypeOfTelephone": { + "authority": "cessda", + "description": "Identifies the type of telephone entered as contact information for an individual or an organization.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfTelephone", + "id": "cessda.TypeOfTelephone", + "name": "Type of Telephone", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "TypeOfTelephone", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfTelephone$1" + }, + "cessda.TypeOfTranslationMethod": { + "authority": "cessda", + "description": "A typology of methods used to translate data collection instruments, including questionnaires, individual questions, measurements, data capture flows, etc.", + "homepage": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfTranslationMethod", + "id": "cessda.TypeOfTranslationMethod", + "name": "Type of Translation Method", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "TypeOfTranslationMethod", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "http://rdf-vocabulary.ddialliance.org/cv/TypeOfTranslationMethod$1" + }, + "cessda.Variables-Relations": { + "authority": "cessda", + "description": "As the variable is one of the most relevant entities to enhance data reuse in the Social Sciences, we provide a framework design to better semantics the variables' relations descriptions. These explicit relations between variables enable comparability and facilitate harmonization across waves. We provide a brief textual identification of the relation type, supported by a controlled vocabulary (CV) and an extended description of the relationship. These relations within variables include but are not limited to different versions, derived formats in new waves, new labels and name wording, and alternative response schema through questionnaires and surveys. For instance, a given variable label is changed from one wave to another, even though its concept remains the same. Their values also are subject to change, such as new cardinalities settings, their categorization, or response scheme and scale measurement. They change based on different conditions, e.g., values are updated by any constraints or modified to comply with the study evolution requirements or a new sociological approach. In the Social Sciences, Economics, and Behaviour Sciences, which investigate, for instance, the social structure of the population, political attitudes of voters and candidates, opinions on family, work, religion, politics and society or competencies of adults, those topics are highly subject to change to fit the empirical reality in a constantly changing world. Thus, we propose widening relations descriptions for Social Sciences variables within datasets beginning from the BasedOnObjectType DDI as a first approach. ", + "homepage": "null/1.0.0", + "id": "cessda.Variables-Relations", + "name": "Variables relations for Social Sciences research data", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "Variables-Relations", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "null/1.0.0$1" + }, + "cessda.rexconcepts": { + "authority": "cessda", + "description": "This CV, developed within the framework of the DP-R|EX joint project, maps the central concepts and theoretical approaches in research on racism and right-wing extremism. The compilation is based on a systematic evaluation of the relevant national and international empirical research literature. The CV equally takes into account the different thematic (racism, right-wing extremism, discrimination) as well as methodological (qualitative research, standardised surveys, data from social media and messaging services) research strands. ", + "homepage": "null/1.0.0/1.1.0/1.2.0", + "id": "cessda.rexconcepts", + "name": " Central concepts of R|EX research ", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "rexconcepts", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "null/1.0.0/1.1.0/1.2.0$1" + }, + "cessda.rexgroups": { + "authority": "cessda", + "description": null, + "homepage": "null/1.0.0", + "id": "cessda.rexgroups", + "name": "rexgroups", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "rexgroups", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "null/1.0.0$1" + }, + "cessda:CdcPublisherNames.v2": { + "authority": "cessda", + "description": "Names of organisations providing metadata for CESSDA Data Catalogue.", + "homepage": "https://vocabularies.cessda.eu/v2/vocabularies/CdcPublisherNames/6.0.0", + "id": "cessda:CdcPublisherNames.v2", + "name": "CDC Publisher Names", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "CdcPublisherNames", + "sameas": "cessda:CdcPublisherNames", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "https://vocabularies.cessda.eu/v2/vocabularies/CdcPublisherNames/6.0.0$1" + }, + "cessda:CessdaPersistentIdentifierTypes.v2": { + "authority": "cessda", + "description": "Lists the types of persistent identifiers that CESSDA accepts as study level PIDs in its data catalogue.", + "homepage": "https://vocabularies.cessda.eu/v2/vocabularies/CessdaPersistentIdentifierTypes", + "id": "cessda:CessdaPersistentIdentifierTypes.v2", + "name": "CESSDA Persistent Identifier Types", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "CessdaPersistentIdentifierTypes", + "sameas": "cessda:CessdaPersistentIdentifierTypes", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "https://vocabularies.cessda.eu/v2/vocabularies/CessdaPersistentIdentifierTypes$1" + }, + "cessda:CountryNamesAndCodes.v2": { + "authority": "cessda", + "description": "ISO 3166-1 alpha-2 country codes and names.", + "homepage": "https://vocabularies.cessda.eu/v2/vocabularies/CountryNamesAndCodes", + "id": "cessda:CountryNamesAndCodes.v2", + "name": "Country Names and Codes", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "CountryNamesAndCodes", + "sameas": "cessda:CountryNamesAndCodes", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "https://vocabularies.cessda.eu/v2/vocabularies/CountryNamesAndCodes$1" + }, + "cessda:TopicClassification.v2": { + "authority": "cessda", + "description": "A typology of main themes or subjects of data.", + "homepage": "https://vocabularies.cessda.eu/v2/vocabularies/TopicClassification", + "id": "cessda:TopicClassification.v2", + "name": "CESSDA Topic Classification", + "pattern": "\\/?(v\\=)?([0-9]\\.?)+", + "prefix": "TopicClassification", + "sameas": "cessda:TopicClassification", + "source": "https://vocabularies.cessda.eu/", + "subjects": [ + "social sciences" + ], + "uri_format": "https://vocabularies.cessda.eu/v2/vocabularies/TopicClassification$1" + } +} diff --git a/fuji_server/data/linked_vocabs/fuji_ontologies.json b/fuji_server/data/linked_vocabs/fuji_ontologies.json index 2f1efef9..26a39014 100644 --- a/fuji_server/data/linked_vocabs/fuji_ontologies.json +++ b/fuji_server/data/linked_vocabs/fuji_ontologies.json @@ -1,65 +1,70 @@ { - "fuji.mtlo": { - "id": "fuji.mtlo", - "homepage": "http://www.ics.forth.gr/isl/ontology/MarineTLO/", - "uri_format": "http://www.ics.forth.gr/isl/ontology/MarineTLO/$1", - "download.owl": "http://www.ics.forth.gr/isl/ontology/content-MTLO/marinetlo.owl", - "prefix": "mtlo", - "name": "MarineTLO Ontology", - "description": "MarineTLO is a top-level ontology for the marine domain (also applicable to the terrestrial domain)", + "fuji.euroscivoc": { + "id": "fuji.euroscivoc", + "name": "European Science Vocabulary (EuroSciVoc)", + "prefix": "euroscivoc", "subjects": [ - "earth and related environmental sciences" - ] + "science and technology studies" + ], + "uri_format": "http://data.europa.eu/8mn/euroscivoc/$1" }, - "fuji.qudt": { - "id": "fuji.qudt", - "homepage": "http://qudt.org", - "prefix": "qudt", - "uri_format": "http://qudt.org/$1", - "pattern":"([\\d\\.]+\\/vocab\\/quantity#)" - }, - "fuji.igsn": { - "id": "fuji.igsn", - "prefix": "igsn", - "uri_format": "http://pid.geoscience.gov.au/def/ont/ga/igsn#$1", - "name": "The IGSN Ontology", - "subjects": [ - "earth and related environmental sciences" - ] + "fuji.i-adopt": { + "id": "fuji.i-adopt", + "name": "I-ADOPT Framework ontology", + "prefix": "i-adopt", + "uri_format": "https://w3id.org/iadopt/ont/$1" }, "fuji.icos": { "id": "fuji.icos", - "prefix": "icos", - "uri_format": "http://meta.icos-cp.eu/ontologies/$1", "name": "The Integrated Carbon Observation System (ICOS) ontology", + "prefix": "icos", "subjects": [ - "earth and related environmental sciences" - ] - }, - "fuji.i-adopt": { - "id" : "fuji.i-adopt", - "prefix" : "i-adopt", - "name": "I-ADOPT Framework ontology", - "uri_format": "https://w3id.org/iadopt/ont/$1" + "earth and related environmental sciences" + ], + "uri_format": "http://meta.icos-cp.eu/ontologies/$1" }, - "fuji.euroscivoc": { - "id": "fuji.euroscivoc", - "prefix": "euroscivoc", - "name": "European Science Vocabulary (EuroSciVoc)", - "uri_format": "http://data.europa.eu/8mn/euroscivoc/$1", - "subjects": ["science and technology studies"] + "fuji.igsn": { + "id": "fuji.igsn", + "name": "The IGSN Ontology", + "prefix": "igsn", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://pid.geoscience.gov.au/def/ont/ga/igsn#$1" }, - "fuji.meta-share" : { + "fuji.meta-share": { "id": "fuji.meta-share", - "prefix": "meta-share", "name": "META-SHARE ontology", - "uri_format": "http://w3id.org/meta-share/meta-share/$1", - "subjects" : ["humanities", "languages and literature"] + "prefix": "meta-share", + "subjects": [ + "humanities", + "languages and literature" + ], + "uri_format": "http://w3id.org/meta-share/meta-share/$1" + }, + "fuji.mtlo": { + "description": "MarineTLO is a top-level ontology for the marine domain (also applicable to the terrestrial domain)", + "download.owl": "http://www.ics.forth.gr/isl/ontology/content-MTLO/marinetlo.owl", + "homepage": "http://www.ics.forth.gr/isl/ontology/MarineTLO/", + "id": "fuji.mtlo", + "name": "MarineTLO Ontology", + "prefix": "mtlo", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://www.ics.forth.gr/isl/ontology/MarineTLO/$1" + }, + "fuji.qudt": { + "homepage": "http://qudt.org", + "id": "fuji.qudt", + "pattern": "([\\d\\.]+\\/vocab\\/quantity#)", + "prefix": "qudt", + "uri_format": "http://qudt.org/$1" }, "fuji.wikidata": { "id": "fuji.wikidata", - "prefix": "wikidata", "name": "Wikidata", + "prefix": "wikidata", "uri_format": "https://www.wikidata.org/wiki/$1" } -} \ No newline at end of file +} diff --git a/fuji_server/data/linked_vocabs/gesis_ontologies.json b/fuji_server/data/linked_vocabs/gesis_ontologies.json index 17f5a54d..9536ed8b 100644 --- a/fuji_server/data/linked_vocabs/gesis_ontologies.json +++ b/fuji_server/data/linked_vocabs/gesis_ontologies.json @@ -1 +1,38 @@ -{"gesis.cessda-topic": {"id": "gesis.cessda-topic", "homepage": "https://lod.gesis.org/cessda-topic", "prefix": "gesis.cessda-topic", "name": "CESSDA Topic Classification", "uri_format": "https://vocabularies.cessda.eu/vocabulary/TopicClassification?v=4.1$1", "subjects": ["social sciences"], "authority": "gesis", "source": "lod.gesis.org"}, "gesis.iso-3166-1": {"id": "gesis.iso-3166-1", "homepage": "https://lod.gesis.org/iso-3166-1", "prefix": "gesis.iso-3166-1", "name": "ISO 3166-1 Country Codes", "uri_format": "http://publications.europa.eu/resource/authority/country$1", "subjects": ["social sciences"], "authority": "gesis", "source": "lod.gesis.org"}, "gesis.unesco": {"id": "gesis.unesco", "homepage": "https://lod.gesis.org/unesco", "prefix": "gesis.unesco", "name": "UNESCO Thesaurus", "uri_format": "http://skos.um.es/unescothes/CS000$1", "subjects": ["social sciences"], "authority": "gesis", "source": "lod.gesis.org"}} \ No newline at end of file +{ + "gesis.cessda-topic": { + "authority": "gesis", + "homepage": "https://lod.gesis.org/cessda-topic", + "id": "gesis.cessda-topic", + "name": "CESSDA Topic Classification", + "prefix": "gesis.cessda-topic", + "source": "lod.gesis.org", + "subjects": [ + "social sciences" + ], + "uri_format": "https://vocabularies.cessda.eu/vocabulary/TopicClassification?v=4.1$1" + }, + "gesis.iso-3166-1": { + "authority": "gesis", + "homepage": "https://lod.gesis.org/iso-3166-1", + "id": "gesis.iso-3166-1", + "name": "ISO 3166-1 Country Codes", + "prefix": "gesis.iso-3166-1", + "source": "lod.gesis.org", + "subjects": [ + "social sciences" + ], + "uri_format": "http://publications.europa.eu/resource/authority/country$1" + }, + "gesis.unesco": { + "authority": "gesis", + "homepage": "https://lod.gesis.org/unesco", + "id": "gesis.unesco", + "name": "UNESCO Thesaurus", + "prefix": "gesis.unesco", + "source": "lod.gesis.org", + "subjects": [ + "social sciences" + ], + "uri_format": "http://skos.um.es/unescothes/CS000$1" + } +} diff --git a/fuji_server/data/linked_vocabs/iso_ontologies.json b/fuji_server/data/linked_vocabs/iso_ontologies.json index 4ab17d0f..8330735e 100644 --- a/fuji_server/data/linked_vocabs/iso_ontologies.json +++ b/fuji_server/data/linked_vocabs/iso_ontologies.json @@ -1 +1,1065 @@ -{"isotc.iso:00639.iso": {"name": "Codes for the representation of names of languages", "id": "isotc.iso:00639.iso", "prefix": "iso:00639", "uri_format": "http://def.isotc211.org/00639$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/00639", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:00639.iso2": {"name": "Codes for the representation of names of languages", "id": "isotc.iso:00639.iso2", "prefix": "iso:00639", "uri_format": "http://def.isotc211.org/iso00639$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/00639", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:00639.iso"}, "isotc.iso:19101.iso": {"name": "Geographic information -- Reference model", "id": "isotc.iso:19101.iso", "prefix": "iso:19101", "uri_format": "http://def.isotc211.org/19101$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19101", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19101.iso2": {"name": "Geographic information -- Reference model", "id": "isotc.iso:19101.iso2", "prefix": "iso:19101", "uri_format": "http://def.isotc211.org/iso19101$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19101", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19101.iso"}, "isotc.iso:19103.iso": {"name": "Geographic information -- Conceptual schema language", "id": "isotc.iso:19103.iso", "prefix": "iso:19103", "uri_format": "http://def.isotc211.org/19103$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19103", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19103.iso2": {"name": "Geographic information -- Conceptual schema language", "id": "isotc.iso:19103.iso2", "prefix": "iso:19103", "uri_format": "http://def.isotc211.org/iso19103$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19103", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19103.iso"}, "isotc.iso:19104.iso": {"name": "Geographic information -- Terminology", "id": "isotc.iso:19104.iso", "prefix": "iso:19104", "uri_format": "http://def.isotc211.org/19104$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19104", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19104.iso2": {"name": "Geographic information -- Terminology", "id": "isotc.iso:19104.iso2", "prefix": "iso:19104", "uri_format": "http://def.isotc211.org/iso19104$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19104", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19104.iso"}, "isotc.iso:19107.iso": {"name": "Geographic information -- Spatial schema", "id": "isotc.iso:19107.iso", "prefix": "iso:19107", "uri_format": "http://def.isotc211.org/19107$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19107", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19107.iso2": {"name": "Geographic information -- Spatial schema", "id": "isotc.iso:19107.iso2", "prefix": "iso:19107", "uri_format": "http://def.isotc211.org/iso19107$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19107", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19107.iso"}, "isotc.iso:19108.iso": {"name": "Geographic information -- Temporal schema", "id": "isotc.iso:19108.iso", "prefix": "iso:19108", "uri_format": "http://def.isotc211.org/19108$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19108", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19108.iso2": {"name": "Geographic information -- Temporal schema", "id": "isotc.iso:19108.iso2", "prefix": "iso:19108", "uri_format": "http://def.isotc211.org/iso19108$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19108", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19108.iso"}, "isotc.iso:19109.iso": {"name": "Geographic information -- Rules for application schema", "id": "isotc.iso:19109.iso", "prefix": "iso:19109", "uri_format": "http://def.isotc211.org/19109$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19109", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19109.iso2": {"name": "Geographic information -- Rules for application schema", "id": "isotc.iso:19109.iso2", "prefix": "iso:19109", "uri_format": "http://def.isotc211.org/iso19109$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19109", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19109.iso"}, "isotc.iso:19110.iso": {"name": "Geographic information -- Methodology for feature cataloguing", "id": "isotc.iso:19110.iso", "prefix": "iso:19110", "uri_format": "http://def.isotc211.org/19110$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19110", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19110.iso2": {"name": "Geographic information -- Methodology for feature cataloguing", "id": "isotc.iso:19110.iso2", "prefix": "iso:19110", "uri_format": "http://def.isotc211.org/iso19110$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19110", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19110.iso"}, "isotc.iso:19111.iso": {"name": "Geographic information -- Spatial referencing by coordinates", "id": "isotc.iso:19111.iso", "prefix": "iso:19111", "uri_format": "http://def.isotc211.org/19111$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19111", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19111.iso2": {"name": "Geographic information -- Spatial referencing by coordinates", "id": "isotc.iso:19111.iso2", "prefix": "iso:19111", "uri_format": "http://def.isotc211.org/iso19111$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19111", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19111.iso"}, "isotc.iso:19112.iso": {"name": "Geographic information -- Spatial referencing by geographic identifiers", "id": "isotc.iso:19112.iso", "prefix": "iso:19112", "uri_format": "http://def.isotc211.org/19112$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19112", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19112.iso2": {"name": "Geographic information -- Spatial referencing by geographic identifiers", "id": "isotc.iso:19112.iso2", "prefix": "iso:19112", "uri_format": "http://def.isotc211.org/iso19112$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19112", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19112.iso"}, "isotc.iso:19115.iso": {"name": "Geographic information -- Metadata", "id": "isotc.iso:19115.iso", "prefix": "iso:19115", "uri_format": "http://def.isotc211.org/19115$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19115", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19115.iso2": {"name": "Geographic information -- Metadata", "id": "isotc.iso:19115.iso2", "prefix": "iso:19115", "uri_format": "http://def.isotc211.org/iso19115$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19115", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19115.iso"}, "isotc.iso:19116.iso": {"name": "Geographic information -- Positioning services", "id": "isotc.iso:19116.iso", "prefix": "iso:19116", "uri_format": "http://def.isotc211.org/19116$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19116", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19116.iso2": {"name": "Geographic information -- Positioning services", "id": "isotc.iso:19116.iso2", "prefix": "iso:19116", "uri_format": "http://def.isotc211.org/iso19116$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19116", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19116.iso"}, "isotc.iso:19117.iso": {"name": "Geographic information -- Portrayal", "id": "isotc.iso:19117.iso", "prefix": "iso:19117", "uri_format": "http://def.isotc211.org/19117$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19117", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19117.iso2": {"name": "Geographic information -- Portrayal", "id": "isotc.iso:19117.iso2", "prefix": "iso:19117", "uri_format": "http://def.isotc211.org/iso19117$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19117", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19117.iso"}, "isotc.iso:19118.iso": {"name": "Geographic information -- Encoding", "id": "isotc.iso:19118.iso", "prefix": "iso:19118", "uri_format": "http://def.isotc211.org/19118$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19118", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19118.iso2": {"name": "Geographic information -- Encoding", "id": "isotc.iso:19118.iso2", "prefix": "iso:19118", "uri_format": "http://def.isotc211.org/iso19118$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19118", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19118.iso"}, "isotc.iso:19123.iso": {"name": "Geographic information -- Schema for coverage geometry and functions", "id": "isotc.iso:19123.iso", "prefix": "iso:19123", "uri_format": "http://def.isotc211.org/19123$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19123", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19123.iso2": {"name": "Geographic information -- Schema for coverage geometry and functions", "id": "isotc.iso:19123.iso2", "prefix": "iso:19123", "uri_format": "http://def.isotc211.org/iso19123$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19123", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19123.iso"}, "isotc.iso:19126.iso": {"name": "Geographic information -- Feature concept dictionaries and registers", "id": "isotc.iso:19126.iso", "prefix": "iso:19126", "uri_format": "http://def.isotc211.org/19126$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19126", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19126.iso2": {"name": "Geographic information -- Feature concept dictionaries and registers", "id": "isotc.iso:19126.iso2", "prefix": "iso:19126", "uri_format": "http://def.isotc211.org/iso19126$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19126", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19126.iso"}, "isotc.iso:19128.iso": {"name": "Geographic information -- Web map server interface", "id": "isotc.iso:19128.iso", "prefix": "iso:19128", "uri_format": "http://def.isotc211.org/19128$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19128", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19128.iso2": {"name": "Geographic information -- Web map server interface", "id": "isotc.iso:19128.iso2", "prefix": "iso:19128", "uri_format": "http://def.isotc211.org/iso19128$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19128", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19128.iso"}, "isotc.iso:19129.iso": {"name": "Geographic information -- Imagery, gridded and coverage data framework", "id": "isotc.iso:19129.iso", "prefix": "iso:19129", "uri_format": "http://def.isotc211.org/19129$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19129", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19129.iso2": {"name": "Geographic information -- Imagery, gridded and coverage data framework", "id": "isotc.iso:19129.iso2", "prefix": "iso:19129", "uri_format": "http://def.isotc211.org/iso19129$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19129", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19129.iso"}, "isotc.iso:19130.iso": {"name": "Geographic information - Imagery sensor models for geopositioning", "id": "isotc.iso:19130.iso", "prefix": "iso:19130", "uri_format": "http://def.isotc211.org/19130$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19130", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19130.iso2": {"name": "Geographic information - Imagery sensor models for geopositioning", "id": "isotc.iso:19130.iso2", "prefix": "iso:19130", "uri_format": "http://def.isotc211.org/iso19130$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19130", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19130.iso"}, "isotc.iso:19131.iso": {"name": "Geographic information -- Data product specifications", "id": "isotc.iso:19131.iso", "prefix": "iso:19131", "uri_format": "http://def.isotc211.org/19131$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19131", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19131.iso2": {"name": "Geographic information -- Data product specifications", "id": "isotc.iso:19131.iso2", "prefix": "iso:19131", "uri_format": "http://def.isotc211.org/iso19131$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19131", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19131.iso"}, "isotc.iso:19132.iso": {"name": "Geographic information -- Location-based services -- Reference model", "id": "isotc.iso:19132.iso", "prefix": "iso:19132", "uri_format": "http://def.isotc211.org/19132$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19132", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19132.iso2": {"name": "Geographic information -- Location-based services -- Reference model", "id": "isotc.iso:19132.iso2", "prefix": "iso:19132", "uri_format": "http://def.isotc211.org/iso19132$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19132", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19132.iso"}, "isotc.iso:19134.iso": {"name": "Geographic information -- Location-based services -- Multimodal routing and navigation", "id": "isotc.iso:19134.iso", "prefix": "iso:19134", "uri_format": "http://def.isotc211.org/19134$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19134", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19134.iso2": {"name": "Geographic information -- Location-based services -- Multimodal routing and navigation", "id": "isotc.iso:19134.iso2", "prefix": "iso:19134", "uri_format": "http://def.isotc211.org/iso19134$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19134", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19134.iso"}, "isotc.iso:19135.iso": {"name": "Geographic information -- Procedures for item registration", "id": "isotc.iso:19135.iso", "prefix": "iso:19135", "uri_format": "http://def.isotc211.org/19135$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19135", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19135.iso2": {"name": "Geographic information -- Procedures for item registration", "id": "isotc.iso:19135.iso2", "prefix": "iso:19135", "uri_format": "http://def.isotc211.org/iso19135$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19135", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19135.iso"}, "isotc.iso:19136.iso": {"name": "Geographic information -- Geography Markup Language (GML)", "id": "isotc.iso:19136.iso", "prefix": "iso:19136", "uri_format": "http://def.isotc211.org/19136$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19136", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19136.iso2": {"name": "Geographic information -- Geography Markup Language (GML)", "id": "isotc.iso:19136.iso2", "prefix": "iso:19136", "uri_format": "http://def.isotc211.org/iso19136$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19136", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19136.iso"}, "isotc.iso:19139.iso": {"name": "Geographic information -- Metadata -- XML schema implementation", "id": "isotc.iso:19139.iso", "prefix": "iso:19139", "uri_format": "http://def.isotc211.org/19139$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19139", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19139.iso2": {"name": "Geographic information -- Metadata -- XML schema implementation", "id": "isotc.iso:19139.iso2", "prefix": "iso:19139", "uri_format": "http://def.isotc211.org/iso19139$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19139", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19139.iso"}, "isotc.iso:19141.iso": {"name": "Geographic information -- Schema for moving features", "id": "isotc.iso:19141.iso", "prefix": "iso:19141", "uri_format": "http://def.isotc211.org/19141$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19141", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19141.iso2": {"name": "Geographic information -- Schema for moving features", "id": "isotc.iso:19141.iso2", "prefix": "iso:19141", "uri_format": "http://def.isotc211.org/iso19141$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19141", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19141.iso"}, "isotc.iso:19144.iso": {"name": "Geographic information -- Classification systems", "id": "isotc.iso:19144.iso", "prefix": "iso:19144", "uri_format": "http://def.isotc211.org/19144$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19144", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19144.iso2": {"name": "Geographic information -- Classification systems", "id": "isotc.iso:19144.iso2", "prefix": "iso:19144", "uri_format": "http://def.isotc211.org/iso19144$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19144", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19144.iso"}, "isotc.iso:19145.iso": {"name": "Geographic information -- Registry of representations of geographic point location", "id": "isotc.iso:19145.iso", "prefix": "iso:19145", "uri_format": "http://def.isotc211.org/19145$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19145", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19145.iso2": {"name": "Geographic information -- Registry of representations of geographic point location", "id": "isotc.iso:19145.iso2", "prefix": "iso:19145", "uri_format": "http://def.isotc211.org/iso19145$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19145", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19145.iso"}, "isotc.iso:19146.iso": {"name": "Geographic information -- Cross-domain vocabularies", "id": "isotc.iso:19146.iso", "prefix": "iso:19146", "uri_format": "http://def.isotc211.org/19146$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19146", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19146.iso2": {"name": "Geographic information -- Cross-domain vocabularies", "id": "isotc.iso:19146.iso2", "prefix": "iso:19146", "uri_format": "http://def.isotc211.org/iso19146$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19146", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19146.iso"}, "isotc.iso:19150.iso": {"name": "Geographic information -- Ontology", "id": "isotc.iso:19150.iso", "prefix": "iso:19150", "uri_format": "http://def.isotc211.org/19150$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19150", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19150.iso2": {"name": "Geographic information -- Ontology", "id": "isotc.iso:19150.iso2", "prefix": "iso:19150", "uri_format": "http://def.isotc211.org/iso19150$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19150", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19150.iso"}, "isotc.iso:19155.iso": {"name": "Geographic information -- Place Identifier (PI) architecture", "id": "isotc.iso:19155.iso", "prefix": "iso:19155", "uri_format": "http://def.isotc211.org/19155$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19155", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19155.iso2": {"name": "Geographic information -- Place Identifier (PI) architecture", "id": "isotc.iso:19155.iso2", "prefix": "iso:19155", "uri_format": "http://def.isotc211.org/iso19155$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19155", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19155.iso"}, "isotc.iso:19156.iso": {"name": "Geographic information -- Observations and measurements", "id": "isotc.iso:19156.iso", "prefix": "iso:19156", "uri_format": "http://def.isotc211.org/19156$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19156", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19156.iso2": {"name": "Geographic information -- Observations and measurements", "id": "isotc.iso:19156.iso2", "prefix": "iso:19156", "uri_format": "http://def.isotc211.org/iso19156$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19156", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19156.iso"}, "isotc.iso:19157.iso": {"name": "Geographic information -- Data quality", "id": "isotc.iso:19157.iso", "prefix": "iso:19157", "uri_format": "http://def.isotc211.org/19157$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19157", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19157.iso2": {"name": "Geographic information -- Data quality", "id": "isotc.iso:19157.iso2", "prefix": "iso:19157", "uri_format": "http://def.isotc211.org/iso19157$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19157", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19157.iso"}, "isotc.iso:19160.iso": {"name": "Addressing", "id": "isotc.iso:19160.iso", "prefix": "iso:19160", "uri_format": "http://def.isotc211.org/19160$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19160", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.iso:19160.iso2": {"name": "Addressing", "id": "isotc.iso:19160.iso2", "prefix": "iso:19160", "uri_format": "http://def.isotc211.org/iso19160$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/iso19160", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.iso:19160.iso"}, "isotc.orphans.iso": {"name": "Orphans", "id": "isotc.orphans.iso", "prefix": "orphans", "uri_format": "http://def.isotc211.org/orphans$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/orphans", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc"}, "isotc.orphans.iso2": {"name": "Orphans", "id": "isotc.orphans.iso2", "prefix": "orphans", "uri_format": "http://def.isotc211.org/iso19160$1", "subjects": ["earth and related environmental sciences", "physical geography"], "homepage": "https://def.isotc211.org/ontologies/orphans", "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", "source": "isotc211.org", "authority": "isotc", "sameas": "isotc.orphans.iso"}, "iso.gmxcode": {"name": "gmxCodelists", "prefix": "iso.gmxcode", "uri_format": "https://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#$1", "subjects": ["earth and related environmental sciences", "physical geography"]}, "iso.gmicode": {"name": "gmiCodelists", "prefix": "iso.gmicode", "uri_format": "https://www.isotc211.org/2005/resources/Codelist/gmiCodelists.xml#$1", "subjects": ["earth and related environmental sciences", "physical geography"]}, "iso.gco": {"uri_format": "http://www.isotc211.org/2005/gco$1"}, "iso.gfc": {"uri_format": "http://www.isotc211.org/2005/gfc$1"}, "iso.gmd": {"uri_format": "http://www.isotc211.org/2005/gmd$1"}, "iso.gmi": {"uri_format": "http://www.isotc211.org/2005/gmi$1"}, "iso.gml": {"uri_format": "http://www.isotc211.org/2005/gml$1"}, "iso.gmx": {"uri_format": "http://www.isotc211.org/2005/gmx$1"}, "iso.gplr": {"uri_format": "http://www.isotc211.org/2005/gplr$1"}, "iso.gsr": {"uri_format": "http://www.isotc211.org/2005/gsr$1"}, "iso.gss": {"uri_format": "http://www.isotc211.org/2005/gss$1"}, "iso.gts": {"uri_format": "http://www.isotc211.org/2005/gts$1"}} \ No newline at end of file +{ + "iso.gco": { + "uri_format": "http://www.isotc211.org/2005/gco$1" + }, + "iso.gfc": { + "uri_format": "http://www.isotc211.org/2005/gfc$1" + }, + "iso.gmd": { + "uri_format": "http://www.isotc211.org/2005/gmd$1" + }, + "iso.gmi": { + "uri_format": "http://www.isotc211.org/2005/gmi$1" + }, + "iso.gmicode": { + "name": "gmiCodelists", + "prefix": "iso.gmicode", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "https://www.isotc211.org/2005/resources/Codelist/gmiCodelists.xml#$1" + }, + "iso.gml": { + "uri_format": "http://www.isotc211.org/2005/gml$1" + }, + "iso.gmx": { + "uri_format": "http://www.isotc211.org/2005/gmx$1" + }, + "iso.gmxcode": { + "name": "gmxCodelists", + "prefix": "iso.gmxcode", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "https://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#$1" + }, + "iso.gplr": { + "uri_format": "http://www.isotc211.org/2005/gplr$1" + }, + "iso.gsr": { + "uri_format": "http://www.isotc211.org/2005/gsr$1" + }, + "iso.gss": { + "uri_format": "http://www.isotc211.org/2005/gss$1" + }, + "iso.gts": { + "uri_format": "http://www.isotc211.org/2005/gts$1" + }, + "isotc.iso:00639.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/00639", + "id": "isotc.iso:00639.iso", + "name": "Codes for the representation of names of languages", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:00639", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/00639$1" + }, + "isotc.iso:00639.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/00639", + "id": "isotc.iso:00639.iso2", + "name": "Codes for the representation of names of languages", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:00639", + "sameas": "isotc.iso:00639.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso00639$1" + }, + "isotc.iso:19101.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19101", + "id": "isotc.iso:19101.iso", + "name": "Geographic information -- Reference model", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19101", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19101$1" + }, + "isotc.iso:19101.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19101", + "id": "isotc.iso:19101.iso2", + "name": "Geographic information -- Reference model", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19101", + "sameas": "isotc.iso:19101.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19101$1" + }, + "isotc.iso:19103.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19103", + "id": "isotc.iso:19103.iso", + "name": "Geographic information -- Conceptual schema language", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19103", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19103$1" + }, + "isotc.iso:19103.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19103", + "id": "isotc.iso:19103.iso2", + "name": "Geographic information -- Conceptual schema language", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19103", + "sameas": "isotc.iso:19103.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19103$1" + }, + "isotc.iso:19104.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19104", + "id": "isotc.iso:19104.iso", + "name": "Geographic information -- Terminology", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19104", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19104$1" + }, + "isotc.iso:19104.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19104", + "id": "isotc.iso:19104.iso2", + "name": "Geographic information -- Terminology", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19104", + "sameas": "isotc.iso:19104.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19104$1" + }, + "isotc.iso:19107.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19107", + "id": "isotc.iso:19107.iso", + "name": "Geographic information -- Spatial schema", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19107", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19107$1" + }, + "isotc.iso:19107.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19107", + "id": "isotc.iso:19107.iso2", + "name": "Geographic information -- Spatial schema", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19107", + "sameas": "isotc.iso:19107.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19107$1" + }, + "isotc.iso:19108.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19108", + "id": "isotc.iso:19108.iso", + "name": "Geographic information -- Temporal schema", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19108", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19108$1" + }, + "isotc.iso:19108.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19108", + "id": "isotc.iso:19108.iso2", + "name": "Geographic information -- Temporal schema", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19108", + "sameas": "isotc.iso:19108.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19108$1" + }, + "isotc.iso:19109.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19109", + "id": "isotc.iso:19109.iso", + "name": "Geographic information -- Rules for application schema", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19109", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19109$1" + }, + "isotc.iso:19109.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19109", + "id": "isotc.iso:19109.iso2", + "name": "Geographic information -- Rules for application schema", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19109", + "sameas": "isotc.iso:19109.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19109$1" + }, + "isotc.iso:19110.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19110", + "id": "isotc.iso:19110.iso", + "name": "Geographic information -- Methodology for feature cataloguing", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19110", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19110$1" + }, + "isotc.iso:19110.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19110", + "id": "isotc.iso:19110.iso2", + "name": "Geographic information -- Methodology for feature cataloguing", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19110", + "sameas": "isotc.iso:19110.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19110$1" + }, + "isotc.iso:19111.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19111", + "id": "isotc.iso:19111.iso", + "name": "Geographic information -- Spatial referencing by coordinates", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19111", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19111$1" + }, + "isotc.iso:19111.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19111", + "id": "isotc.iso:19111.iso2", + "name": "Geographic information -- Spatial referencing by coordinates", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19111", + "sameas": "isotc.iso:19111.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19111$1" + }, + "isotc.iso:19112.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19112", + "id": "isotc.iso:19112.iso", + "name": "Geographic information -- Spatial referencing by geographic identifiers", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19112", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19112$1" + }, + "isotc.iso:19112.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19112", + "id": "isotc.iso:19112.iso2", + "name": "Geographic information -- Spatial referencing by geographic identifiers", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19112", + "sameas": "isotc.iso:19112.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19112$1" + }, + "isotc.iso:19115.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19115", + "id": "isotc.iso:19115.iso", + "name": "Geographic information -- Metadata", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19115", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19115$1" + }, + "isotc.iso:19115.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19115", + "id": "isotc.iso:19115.iso2", + "name": "Geographic information -- Metadata", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19115", + "sameas": "isotc.iso:19115.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19115$1" + }, + "isotc.iso:19116.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19116", + "id": "isotc.iso:19116.iso", + "name": "Geographic information -- Positioning services", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19116", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19116$1" + }, + "isotc.iso:19116.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19116", + "id": "isotc.iso:19116.iso2", + "name": "Geographic information -- Positioning services", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19116", + "sameas": "isotc.iso:19116.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19116$1" + }, + "isotc.iso:19117.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19117", + "id": "isotc.iso:19117.iso", + "name": "Geographic information -- Portrayal", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19117", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19117$1" + }, + "isotc.iso:19117.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19117", + "id": "isotc.iso:19117.iso2", + "name": "Geographic information -- Portrayal", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19117", + "sameas": "isotc.iso:19117.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19117$1" + }, + "isotc.iso:19118.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19118", + "id": "isotc.iso:19118.iso", + "name": "Geographic information -- Encoding", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19118", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19118$1" + }, + "isotc.iso:19118.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19118", + "id": "isotc.iso:19118.iso2", + "name": "Geographic information -- Encoding", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19118", + "sameas": "isotc.iso:19118.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19118$1" + }, + "isotc.iso:19123.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19123", + "id": "isotc.iso:19123.iso", + "name": "Geographic information -- Schema for coverage geometry and functions", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19123", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19123$1" + }, + "isotc.iso:19123.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19123", + "id": "isotc.iso:19123.iso2", + "name": "Geographic information -- Schema for coverage geometry and functions", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19123", + "sameas": "isotc.iso:19123.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19123$1" + }, + "isotc.iso:19126.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19126", + "id": "isotc.iso:19126.iso", + "name": "Geographic information -- Feature concept dictionaries and registers", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19126", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19126$1" + }, + "isotc.iso:19126.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19126", + "id": "isotc.iso:19126.iso2", + "name": "Geographic information -- Feature concept dictionaries and registers", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19126", + "sameas": "isotc.iso:19126.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19126$1" + }, + "isotc.iso:19128.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19128", + "id": "isotc.iso:19128.iso", + "name": "Geographic information -- Web map server interface", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19128", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19128$1" + }, + "isotc.iso:19128.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19128", + "id": "isotc.iso:19128.iso2", + "name": "Geographic information -- Web map server interface", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19128", + "sameas": "isotc.iso:19128.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19128$1" + }, + "isotc.iso:19129.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19129", + "id": "isotc.iso:19129.iso", + "name": "Geographic information -- Imagery, gridded and coverage data framework", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19129", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19129$1" + }, + "isotc.iso:19129.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19129", + "id": "isotc.iso:19129.iso2", + "name": "Geographic information -- Imagery, gridded and coverage data framework", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19129", + "sameas": "isotc.iso:19129.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19129$1" + }, + "isotc.iso:19130.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19130", + "id": "isotc.iso:19130.iso", + "name": "Geographic information - Imagery sensor models for geopositioning", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19130", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19130$1" + }, + "isotc.iso:19130.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19130", + "id": "isotc.iso:19130.iso2", + "name": "Geographic information - Imagery sensor models for geopositioning", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19130", + "sameas": "isotc.iso:19130.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19130$1" + }, + "isotc.iso:19131.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19131", + "id": "isotc.iso:19131.iso", + "name": "Geographic information -- Data product specifications", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19131", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19131$1" + }, + "isotc.iso:19131.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19131", + "id": "isotc.iso:19131.iso2", + "name": "Geographic information -- Data product specifications", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19131", + "sameas": "isotc.iso:19131.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19131$1" + }, + "isotc.iso:19132.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19132", + "id": "isotc.iso:19132.iso", + "name": "Geographic information -- Location-based services -- Reference model", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19132", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19132$1" + }, + "isotc.iso:19132.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19132", + "id": "isotc.iso:19132.iso2", + "name": "Geographic information -- Location-based services -- Reference model", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19132", + "sameas": "isotc.iso:19132.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19132$1" + }, + "isotc.iso:19134.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19134", + "id": "isotc.iso:19134.iso", + "name": "Geographic information -- Location-based services -- Multimodal routing and navigation", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19134", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19134$1" + }, + "isotc.iso:19134.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19134", + "id": "isotc.iso:19134.iso2", + "name": "Geographic information -- Location-based services -- Multimodal routing and navigation", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19134", + "sameas": "isotc.iso:19134.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19134$1" + }, + "isotc.iso:19135.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19135", + "id": "isotc.iso:19135.iso", + "name": "Geographic information -- Procedures for item registration", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19135", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19135$1" + }, + "isotc.iso:19135.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19135", + "id": "isotc.iso:19135.iso2", + "name": "Geographic information -- Procedures for item registration", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19135", + "sameas": "isotc.iso:19135.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19135$1" + }, + "isotc.iso:19136.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19136", + "id": "isotc.iso:19136.iso", + "name": "Geographic information -- Geography Markup Language (GML)", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19136", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19136$1" + }, + "isotc.iso:19136.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19136", + "id": "isotc.iso:19136.iso2", + "name": "Geographic information -- Geography Markup Language (GML)", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19136", + "sameas": "isotc.iso:19136.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19136$1" + }, + "isotc.iso:19139.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19139", + "id": "isotc.iso:19139.iso", + "name": "Geographic information -- Metadata -- XML schema implementation", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19139", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19139$1" + }, + "isotc.iso:19139.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19139", + "id": "isotc.iso:19139.iso2", + "name": "Geographic information -- Metadata -- XML schema implementation", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19139", + "sameas": "isotc.iso:19139.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19139$1" + }, + "isotc.iso:19141.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19141", + "id": "isotc.iso:19141.iso", + "name": "Geographic information -- Schema for moving features", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19141", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19141$1" + }, + "isotc.iso:19141.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19141", + "id": "isotc.iso:19141.iso2", + "name": "Geographic information -- Schema for moving features", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19141", + "sameas": "isotc.iso:19141.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19141$1" + }, + "isotc.iso:19144.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19144", + "id": "isotc.iso:19144.iso", + "name": "Geographic information -- Classification systems", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19144", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19144$1" + }, + "isotc.iso:19144.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19144", + "id": "isotc.iso:19144.iso2", + "name": "Geographic information -- Classification systems", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19144", + "sameas": "isotc.iso:19144.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19144$1" + }, + "isotc.iso:19145.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19145", + "id": "isotc.iso:19145.iso", + "name": "Geographic information -- Registry of representations of geographic point location", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19145", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19145$1" + }, + "isotc.iso:19145.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19145", + "id": "isotc.iso:19145.iso2", + "name": "Geographic information -- Registry of representations of geographic point location", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19145", + "sameas": "isotc.iso:19145.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19145$1" + }, + "isotc.iso:19146.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19146", + "id": "isotc.iso:19146.iso", + "name": "Geographic information -- Cross-domain vocabularies", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19146", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19146$1" + }, + "isotc.iso:19146.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19146", + "id": "isotc.iso:19146.iso2", + "name": "Geographic information -- Cross-domain vocabularies", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19146", + "sameas": "isotc.iso:19146.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19146$1" + }, + "isotc.iso:19150.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19150", + "id": "isotc.iso:19150.iso", + "name": "Geographic information -- Ontology", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19150", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19150$1" + }, + "isotc.iso:19150.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19150", + "id": "isotc.iso:19150.iso2", + "name": "Geographic information -- Ontology", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19150", + "sameas": "isotc.iso:19150.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19150$1" + }, + "isotc.iso:19155.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19155", + "id": "isotc.iso:19155.iso", + "name": "Geographic information -- Place Identifier (PI) architecture", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19155", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19155$1" + }, + "isotc.iso:19155.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19155", + "id": "isotc.iso:19155.iso2", + "name": "Geographic information -- Place Identifier (PI) architecture", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19155", + "sameas": "isotc.iso:19155.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19155$1" + }, + "isotc.iso:19156.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19156", + "id": "isotc.iso:19156.iso", + "name": "Geographic information -- Observations and measurements", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19156", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19156$1" + }, + "isotc.iso:19156.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19156", + "id": "isotc.iso:19156.iso2", + "name": "Geographic information -- Observations and measurements", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19156", + "sameas": "isotc.iso:19156.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19156$1" + }, + "isotc.iso:19157.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19157", + "id": "isotc.iso:19157.iso", + "name": "Geographic information -- Data quality", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19157", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19157$1" + }, + "isotc.iso:19157.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19157", + "id": "isotc.iso:19157.iso2", + "name": "Geographic information -- Data quality", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19157", + "sameas": "isotc.iso:19157.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19157$1" + }, + "isotc.iso:19160.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19160", + "id": "isotc.iso:19160.iso", + "name": "Addressing", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19160", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/19160$1" + }, + "isotc.iso:19160.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/iso19160", + "id": "isotc.iso:19160.iso2", + "name": "Addressing", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "iso:19160", + "sameas": "isotc.iso:19160.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19160$1" + }, + "isotc.orphans.iso": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/orphans", + "id": "isotc.orphans.iso", + "name": "Orphans", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "orphans", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/orphans$1" + }, + "isotc.orphans.iso2": { + "authority": "isotc", + "homepage": "https://def.isotc211.org/ontologies/orphans", + "id": "isotc.orphans.iso2", + "name": "Orphans", + "pattern": "(?:\\/[0-9]{5})(?:\\/[-0-9]+)?(?:\\/[0-9]+)?(?:.*?)#(.*?)$", + "prefix": "orphans", + "sameas": "isotc.orphans.iso", + "source": "isotc211.org", + "subjects": [ + "earth and related environmental sciences", + "physical geography" + ], + "uri_format": "http://def.isotc211.org/iso19160$1" + } +} diff --git a/fuji_server/data/linked_vocabs/lov_ontologies.json b/fuji_server/data/linked_vocabs/lov_ontologies.json index 70825b65..81abdbb0 100644 --- a/fuji_server/data/linked_vocabs/lov_ontologies.json +++ b/fuji_server/data/linked_vocabs/lov_ontologies.json @@ -1 +1,9672 @@ -{"lov.san": {"id": "lov.san", "homepage": "http://www.irit.fr/recherches/MELODI/ontologies/SAN", "uri_format": "http://www.irit.fr/recherches/MELODI/ontologies/SAN#$1", "prefix": "SAN", "name": "SAN (Semantic Actuator Network)", "description": "This ontology is intended to describe Semantic Actuator Networks, as a counterpoint to SSN definition of Semantic Sensor Networks. An actuator is a physical device having an effect on the world (see Actuator for more information).\n\nIt is worth noticing that some concepts are imported from SSN, but not SSN as a whole. This is a design choice intended to separate as much as possible the definition on actuator from the definition of sensor, which are completely different concept that can be used independantly from each other.\n\nThis ontology is used as a ontological module in IoT-O ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.a-loc": {"id": "lov.a-loc", "homepage": "https://w3id.org/arco/ontology/location", "uri_format": "https://w3id.org/arco/ontology/location/$1", "prefix": "a-loc", "name": "Location Ontology (ArCo network)", "description": "The module Location models information related to the localization and georeferencing of a cultural property.\nIn this module are used as template the following Ontology Design Patterns:\n- http://www.ontologydesignpatterns.org/cp/owl/collectionentity.owl\n- http://www.ontologydesignpatterns.org/cp/owl/classification.owl\n- http://www.ontologydesignpatterns.org/cp/owl/place.owl\n- http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl\n- http://www.ontologydesignpatterns.org/cp/owl/situation.owl", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.ac": {"id": "lov.ac", "homepage": "http://rs.tdwg.org/ac/terms/", "uri_format": "http://rs.tdwg.org/ac/terms/$1", "prefix": "ac", "name": "Core terms defined by Audubon Core", "description": "This term list includes all currently valid terms that have been defined in the core Audubon Core namespace ac:.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.acco": {"id": "lov.acco", "homepage": "http://purl.org/acco/ns", "uri_format": "http://purl.org/acco/ns#$1", "prefix": "acco", "name": "Accomodation Ontology", "description": "A vocabulary for the description of hotels, vacation homes, camping sites, and other accommodation offers for e-commerce", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.acl": {"id": "lov.acl", "homepage": "http://www.w3.org/ns/auth/acl", "uri_format": "http://www.w3.org/ns/auth/acl#$1", "prefix": "acl", "name": "Basic Access Control ontology", "description": "Defines the element of Authorization and its essential properties, and also some classes of access such as read and write.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.acm": {"id": "lov.acm", "homepage": "http://www.rkbexplorer.com/ontologies/acm", "uri_format": "http://acm.rkbexplorer.com/ontologies/acm#$1", "prefix": "acm", "name": "ACM Classification Ontology", "description": "This ontology is a representation of The ACM Computing Classification System [1998]", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.acrt": {"id": "lov.acrt", "homepage": "http://privatealpha.com/ontology/certification/1#", "uri_format": "http://privatealpha.com/ontology/certification/1#$1", "prefix": "acrt", "name": "Agent Certification Ontology", "description": "This document specifies a vocabulary for asserting the existence of official endorsements or certifications of agents, such as people and organizations.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.adms": {"id": "lov.adms", "homepage": "http://www.w3.org/ns/adms", "uri_format": "http://www.w3.org/ns/adms#$1", "prefix": "adms", "name": "Asset Description Metadata Schema", "description": "ADMS is a profile of DCAT, used to describe semantic assets (or just 'Assets'), defined as highly reusable metadata (e.g. xml schemata, generic data models) and reference data (e.g. code lists, taxonomies, dictionaries, vocabularies) that are used for eGovernment system development.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.af": {"id": "lov.af", "homepage": "http://purl.org/ontology/af/", "uri_format": "http://purl.org/ontology/af/$1", "prefix": "af", "name": "Audio Features Ontology", "description": "This vocabulary expresses some common concepts to represent some features of audio signals.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.agls": {"id": "lov.agls", "homepage": "http://www.agls.gov.au/agls/terms", "uri_format": "http://www.agls.gov.au/agls/terms/$1", "prefix": "agls", "name": "AGLS Metadata Terms", "description": "The AGLS Metadata Terms Namespace provides URIs for the AGLS Metadata Terms Vocabulary in the context of AGLS Metadata Standard, a set of metadata properties and associated usage guidelines to improve the visibility, manageability and interoperability of online information and services. Vocabulary terms are declared using RDF Schema language to support RDF applications. It will be updated according to AGLS Working Group decisions.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.agr": {"id": "lov.agr", "homepage": "http://promsns.org/def/agr", "uri_format": "http://promsns.org/def/agr#$1", "prefix": "agr", "name": "Agreements ontology", "description": "This Agreements Ontology is designed to model 'agreements' which are social contracts that include licenses, laws, contracts, Memoranda of Understanding, standards and definitional metadata. Its purpose is to support data sharing by making explicit the relationships between agreements and data and agreements and Agents (people and organisations). Eventually it will also help with the interplay between different classes of agreements.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences", "law"]}, "lov.agrelon": {"id": "lov.agrelon", "homepage": "http://d-nb.info/standards/elementset/agrelon", "uri_format": "http://d-nb.info/standards/elementset/agrelon#$1", "prefix": "agrelon", "name": "Agent Relationship Ontology", "description": "The ontology of agent relationships, AgRelOn, defines relations of persons to other persons and to organisations", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.aiiso": {"id": "lov.aiiso", "homepage": "http://purl.org/vocab/aiiso/schema", "uri_format": "http://purl.org/vocab/aiiso/schema#$1", "prefix": "aiiso", "name": "Academic Institution Internal Structure Ontology", "description": "The Academic Institution Internal Structure Ontology (AIISO) provides classes and properties to describe the internal organizational structure of an academic institution. AIISO is designed to work in partnership with Participation (http://purl.org/vocab/participation/schema), FOAF (http://xmlns.com/foaf/0.1/) and aiiso-roles (http://purl.org/vocab/aiiso-roles/schema) to describe the roles that people play within an institution.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.airo": {"id": "lov.airo", "homepage": "https://w3id.org/AIRO", "uri_format": "https://w3id.org/AIRO#$1", "prefix": "airo", "name": "AI Risk Ontology", "description": "AIRO represents AI risk concepts and relations based on the AI Act draft and ISO 31000 standard series.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.airs": {"id": "lov.airs", "homepage": "https://raw.githubusercontent.com/airs-linked-data/lov/latest/src/airs_vocabulary.ttl#", "uri_format": "https://raw.githubusercontent.com/airs-linked-data/lov/latest/src/airs_vocabulary.ttl#$1", "prefix": "airs", "name": "Alliance of Information and Referral Services (AIRS) Vocabulary", "description": "The AIRS Linked Open Vocabulary is a way to describe human services information and referral (I&R) concepts. AIRS is the Alliance of Information and Referral Services (airs.org), which possesses over 1,000 member agencies primarily in the United States and Canada. The AIRS LOV is based on the AIRS XML Schema, available at: https://airs-xml.googlecode.com/hg/tags/3.1/airs.xsd", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.akt": {"id": "lov.akt", "homepage": "http://www.aktors.org/ontology/portal", "uri_format": "http://www.aktors.org/ontology/portal#$1", "prefix": "akt", "name": "AKT Reference Ontology", "description": "The AKT Reference Ontology has been designed to support the AKT-2 demonstrator (\"AKTive Portal\"), and subsequent activities. The ontology, designed by the AKT-2 group and codified by Enrico Motta, extends Version 1.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.akts": {"id": "lov.akts", "homepage": "http://www.aktors.org/ontology/support", "uri_format": "http://www.aktors.org/ontology/support#$1", "prefix": "akts", "name": "AKT Support Ontology", "description": "The AKT Reference Ontology has been designed to support the AKT-2 demonstrator (\"AKTive Portal\"), and subsequent activities", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.algo": {"id": "lov.algo", "homepage": "http://securitytoolbox.appspot.com/securityAlgorithms#", "uri_format": "http://securitytoolbox.appspot.com/securityAlgorithms#$1", "prefix": "algo", "name": "Algorithms Ontology", "description": "An ontology describing cryptographic algorithms", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.am": {"id": "lov.am", "homepage": "http://open-services.net/ns/asset#", "uri_format": "http://open-services.net/ns/asset#$1", "prefix": "am", "name": "OSLC Asset Management Vocabulary", "description": "This specification builds on the Open Services for Lifecycle Collaboration (OSLC) Core v2.0 Specification to define the resources, properties and operations supported by an OSLC Asset Management (OSLC-Asset) provider. Asset Management resources include Assets, Artifacts and supporting resources defined in the OSLC Core specification.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.aml": {"id": "lov.aml", "homepage": "https://w3id.org/i40/aml", "uri_format": "https://w3id.org/i40/aml#$1", "prefix": "aml", "name": "AutomationML Ontology", "description": "A vocabulary to represent the AutomationML Standard - IEC 62714", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.amlo-core": {"id": "lov.amlo-core", "homepage": "http://w3id.org/amlo/core", "uri_format": "http://w3id.org/amlo/core#$1", "prefix": "amlo-core", "name": "AMLO-core vocabulary", "description": "The AMLO-core is the main module of the AMLO projects that extends the Financial Industry Business Ontology (FIBO) with some concepts to describe the Anti Money Laundering (AML) knowledge and facts.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.amv": {"id": "lov.amv", "homepage": "https://w3id.org/amv", "uri_format": "https://w3id.org/amv#$1", "prefix": "amv", "name": "AMV:Algorithm Metadata Vocabulary", "description": "Metadata vocabularies are used in various domains of study. It provides an in-depth description of the resources. In this work, we develop Algorithm Metadata Vocabulary (AMV), a vocabulary for capturing and storing the metadata about the algorithms (a procedure or a set of rules that is followed step-by-step to solve a problem, especially by a computer). The snag faced by the researchers in the current time is the failure of getting relevant results when searching for algorithms in any search engine. AMV is represented as a semantic model and produced OWL file, which can be directly used by anyone interested to create and publish algorithm metadata as a knowledge graph, or to provide metadata service through SPARQL endpoint. To design the vocabulary, we propose a well-defined methodology, which considers real issues faced by the algorithm users and the practitioners. The evaluation shows a promising result.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ao": {"id": "lov.ao", "homepage": "http://purl.org/ontology/ao/core#", "uri_format": "http://purl.org/ontology/ao/core#$1", "prefix": "ao", "name": "Association Ontology", "description": "Provides basic concepts and properties for describing specific association statements to something, e.g. an occasion, a genre or a mood ...", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.aos": {"id": "lov.aos", "homepage": "http://rdf.muninn-project.org/ontologies/appearances", "uri_format": "http://rdf.muninn-project.org/ontologies/appearances#$1", "prefix": "aos", "name": "Appearances Ontology Specification", "description": "Appearances is an ontology that grew out of the need to record personal appearance details about individuals while taking into account errors of perception and translation between various diffferent standards. Originally it was meant to record physical caracteristics of Great War soldiers from their medical files, but it became evident that the resource was also useful for other purposes.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.apco": {"id": "lov.apco", "homepage": "https://purl.org/cm/onto/apco", "uri_format": "https://purl.org/cm/onto/apco#$1", "prefix": "apco", "name": "African Public Contract Ontology", "description": "APCO est une ontologie ayant pour but la description des termes des march\u00e9s publics", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences"]}, "lov.api": {"id": "lov.api", "homepage": "http://purl.org/linked-data/api/vocab#", "uri_format": "http://purl.org/linked-data/api/vocab#$1", "prefix": "api", "name": "Linked Data API Vocabulary", "description": "Configuration vocabulary for the Linked Data API", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.apps4x": {"id": "lov.apps4x", "homepage": "http://semweb.mmlab.be/ns/apps4X", "uri_format": "http://semweb.mmlab.be/ns/apps4X#$1", "prefix": "apps4X", "name": "The vocabulary for Co-creation Events based on Open Data", "description": "apps4X is an RDF vocabulary defined to facilitate the description of Open-Data-based Co-creation events", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.arch": {"id": "lov.arch", "homepage": "http://purl.org/archival/vocab/arch", "uri_format": "http://purl.org/archival/vocab/arch#$1", "prefix": "arch", "name": "Archival collections ontology", "description": "An RDF vocabulary for describing archival collections and the names associated with them", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.arco": {"id": "lov.arco", "homepage": "https://w3id.org/arco/ontology/core", "uri_format": "https://w3id.org/arco/ontology/core/$1", "prefix": "arco", "name": "Core Ontology (ArCo network)", "description": "The Core module represents general-purpose concepts orthogonal to the whole network, which are imported by all other ontology modules (e.g. part-whole relation, classification).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.arp": {"id": "lov.arp", "homepage": "http://www.arpenteur.org/ontology/Arpenteur.owl", "uri_format": "http://www.arpenteur.org/ontology/Arpenteur.owl#$1", "prefix": "arp", "name": "Arpenteur Ontology", "description": "Arpenteur ontology is dedicated to photogrammetry, archeology and oceanology communities \n\t in order to perform tasks such as image processing, photogrammetry and modelling.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "mathematics"]}, "lov.atd": {"id": "lov.atd", "homepage": "https://data.nasa.gov/ontologies/atmonto/data#", "uri_format": "https://data.nasa.gov/ontologies/atmonto/data#$1", "prefix": "atd", "name": "Air Traffic Data", "description": "Defines concepts related to airport status, including weather, forecasts, and airport operations", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.atm": {"id": "lov.atm", "homepage": "https://data.nasa.gov/ontologies/atmonto/ATM#", "uri_format": "https://data.nasa.gov/ontologies/atmonto/ATM#$1", "prefix": "atm", "name": "Air Traffic Management (ATM) Vocabulary", "description": "Defines specific air traffic management concepts used in aircraft navigation through the US National Airspace System", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.atts": {"id": "lov.atts", "homepage": "https://data.nasa.gov/ontologies/atmonto/general#", "uri_format": "https://data.nasa.gov/ontologies/atmonto/general#$1", "prefix": "atts", "name": "Air Traffic Temporal and Spacial Vocabulary", "description": "Defines temporal / spatial concepts and general-purpose datastructures", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "mathematics", "computer and information sciences"]}, "lov.awol": {"id": "lov.awol", "homepage": "http://bblfish.net/work/atom-owl/2006-06-06/", "uri_format": "http://bblfish.net/work/atom-owl/2006-06-06/#$1", "prefix": "awol", "name": "Atom Syndication Ontology", "description": "The AtomOWL ontology is inspired from the work done by the atom working group. This ontology is working off the rfc 4287 published among othe places at http://www.atompub.org/rfc4287.html . The AtomOWL ontology uses as much as possible the same terms as the format there to make the relation easy to understand. The AtomOWL name space is slightly different from the atom namespace [see post http://www.imc.org/atom-syntax/mail-archive/msg16476.html]. But this is a good thing as it helps distinguish the ontology from the rfc 4287 serialisation.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.aws": {"id": "lov.aws", "homepage": "http://purl.oclc.org/NET/ssnx/meteo/aws", "uri_format": "http://purl.oclc.org/NET/ssnx/meteo/aws#$1", "prefix": "aws", "name": "Ontology for Meteorological sensors", "description": "This ontology is part of the Agriculture Meteorology example showcasing the ontology developed by the W3C Semantic Sensor Networks incubator group (SSN-XG). It is published here in order to generalize the potential usage and the alignment with other standardization efforts of the SSN ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.bag": {"id": "lov.bag", "homepage": "http://bag.basisregistraties.overheid.nl/def/bag", "uri_format": "http://bag.basisregistraties.overheid.nl/def/bag#$1", "prefix": "bag", "name": "Vocabulary for the Dutch base registration of buildings and addresses (BAG)", "description": "Basisregistraties Adressen en Gebouwen (BAG) vocabulaire", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.basic": {"id": "lov.basic", "homepage": "http://def.seegrid.csiro.au/isotc211/iso19103/2005/basic", "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19103/2005/basic#$1", "prefix": "basic", "name": "OWL representation of ISO 19103 (Basic types package)", "description": "An OWL representation of (some of) the basic types described in ISO 19103:2005, required as primitives in other ontologies based on ISO 19100 series standards", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.bbc": {"id": "lov.bbc", "homepage": "http://www.bbc.co.uk/ontologies/bbc", "uri_format": "http://www.bbc.co.uk/ontologies/bbc/$1", "prefix": "bbc", "name": "BBC Ontology", "description": "The BBC ontology is used to describe BBC concepts in the store. For example, the BBC divisions (products) publishing linked data and interfacing with the triplestore, the platforms for which we produce content and the web documents that publish or are relevant to the BBC's content.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.bbccms": {"id": "lov.bbccms", "homepage": "http://www.bbc.co.uk/ontologies/cms", "uri_format": "http://www.bbc.co.uk/ontologies/cms/$1", "prefix": "bbccms", "name": "BBC CMS Ontology", "description": "An ontology to represent the content management systems and their interaction with the triplestore.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.bbccore": {"id": "lov.bbccore", "homepage": "http://www.bbc.co.uk/ontologies/coreconcepts", "uri_format": "http://www.bbc.co.uk/ontologies/coreconcepts/$1", "prefix": "bbccore", "name": "BBC Core Concepts", "description": "The generic BBC ontology for people, places,events, organisations, themes which represent things that make sense across the BBC. This model is meant to be generic enough, and allow clients (domain experts) link their own concepts", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.bbcprov": {"id": "lov.bbcprov", "homepage": "http://www.bbc.co.uk/ontologies/provenance", "uri_format": "http://www.bbc.co.uk/ontologies/provenance/$1", "prefix": "bbcprov", "name": "BBC Provenance Ontology", "description": "The provenance ontology supports data management and auditing tasks. It is used to define the different types of named graphs we used in the store (quad store) and enables their association with metadata that allow us to manage, validate and expose data to BBC services", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.bci": {"id": "lov.bci", "homepage": "https://w3id.org/BCI-ontology", "uri_format": "https://w3id.org/BCI-ontology#$1", "prefix": "bci", "name": "Brain Computing Interface (BCI) Ontology", "description": "The BCI ontology specifies a foundational metadata model set for real-world multimodal Brain Computing Interface (BCI) data capture activities. The ontology defines a minimalist and simple abstract metadata foundational model for real-world BCI applications that monitors human activity in any scenario. BCI multimodal domain applications are encouraged to extend and use this ontology in their implementations.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.bcom": {"id": "lov.bcom", "homepage": "https://w3id.org/bcom", "uri_format": "https://w3id.org/bcom#$1", "prefix": "bcom", "name": "Building Concrete Monitoring Ontology (BCOM)", "description": "The Building Concrete Monitoring Ontology (BCOM) is defined for capturing information of concrete work, concrete curing and testing of concrete properties. Further Information on the development and usage of the Ontology can be found in the following publication: Liu et al. (2021): An ontology integrating as-built information for infrastructure asset management using BIM and semantic web. In: Proceedings of 2021 European Conference on Computing in Construction, Online eConference, URL: https://ec-3.org/publications/conferences/2021/paper/?id=167", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.being": {"id": "lov.being", "homepage": "http://contextus.net/ontology/ontomedia/ext/common/being#", "uri_format": "http://contextus.net/ontology/ontomedia/ext/common/being#$1", "prefix": "being", "name": "OntoMedia Being Representation", "description": "A vocabulary to describe the interactions between persons and groups occurring in multimedia.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.bevon": {"id": "lov.bevon", "homepage": "http://rdfs.co/bevon/", "uri_format": "http://rdfs.co/bevon/$1", "prefix": "bevon", "name": "BEVON: Beverage Ontology", "description": "Beverage Ontology is a Web vocabulary for describing beverages, mainly alcoholic.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["agriculture, forestry, and fisheries"]}, "lov.bibo": {"id": "lov.bibo", "homepage": "http://purl.org/ontology/bibo/", "uri_format": "http://purl.org/ontology/bibo/$1", "prefix": "bibo", "name": "The Bibliographic Ontology", "description": "The Bibliographic Ontology Specification provides main concepts and properties for describing citations and bibliographic references (i.e. quotes, books, articles, etc) on the Semantic Web.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.bibtex": {"id": "lov.bibtex", "homepage": "http://purl.org/net/nknouf/ns/bibtex", "uri_format": "http://purl.org/net/nknouf/ns/bibtex#$1", "prefix": "bibtex", "name": "BibTeX ontology", "description": "Transformation of bibTeX into an OWL ontology", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.bimerr-op": {"id": "lov.bimerr-op", "homepage": "http://bimerr.iot.linkeddata.es/def/occupancy-profile#", "uri_format": "http://bimerr.iot.linkeddata.es/def/occupancy-profile#$1", "prefix": "bimerr-op", "name": "Occupancy Profile ontology", "description": "The Occupancy Profile ontology has been developed to represent people\u2019s behavior inside building spaces.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.bio": {"id": "lov.bio", "homepage": "http://purl.org/vocab/bio/0.1/", "uri_format": "http://purl.org/vocab/bio/0.1/$1", "prefix": "bio", "name": "BIO: A vocabulary for biographical information", "description": "A vocabulary for describing biographical information about people, both living and dead.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.biol": {"id": "lov.biol", "homepage": "http://purl.org/NET/biol/ns#", "uri_format": "http://purl.org/NET/biol/ns#$1", "prefix": "biol", "name": "Biological Taxonomy Vocabulary 0.2 (Core)", "description": "An RDF vocabulary for the taxonomy of all forms of life", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences"]}, "lov.biopax": {"id": "lov.biopax", "homepage": "http://www.biopax.org/release/biopax-level3.owl", "uri_format": "http://www.biopax.org/release/biopax-level3.owl#$1", "prefix": "biopax", "name": "BioPAX Level 3 ontology", "description": "The goal of the BioPAX group is to develop a common exchange format for biological pathway data. More information is available at http://www.biopax.org. This ontology is freely available under the LGPL license", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences"]}, "lov.biotop": {"id": "lov.biotop", "homepage": "http://purl.org/biotop/biotop.owl", "uri_format": "http://purl.org/biotop/biotop.owl#$1", "prefix": "biotop", "name": "BioTop", "description": "Upper-Level ontology for Biology and Medicine. Compatible with BFO, DOLCE, and the UMLS Semantic Network", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences"]}, "lov.biro": {"id": "lov.biro", "homepage": "http://purl.org/spar/biro", "uri_format": "http://purl.org/spar/biro/$1", "prefix": "biro", "name": "The Bibliographic Reference Ontology", "description": "BiRO, the Bibliographic Reference Ontology, is an ontology structured according to the FRBR model to define bibliographic records (as subclasses of frbr:Work) and bibliographic references (as subclasses of frbr:Expression), and their compilations into bibliographic collections such as library catalogues, and into bibliographic lists such as reference lists in journal articles, respectively.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.blt": {"id": "lov.blt", "homepage": "http://www.bl.uk/schemas/bibliographic/blterms", "uri_format": "http://www.bl.uk/schemas/bibliographic/blterms#$1", "prefix": "blt", "name": "British Library Terms RDF schema", "description": "Some useful terms for describing bibliographic resources that other models did not include. Version 1.4: brings the description for this schema in line with \"Metadata recommendations for Linked Open Vocabulairies\", version 1.1.; dct:license replaced by cc:license and the value changed from http://www.opendatacommons.org/licenses/pddl/1.0/ to http://creativecommons.org/publicdomain/mark/1.0/; various typos corrected. Version 1.4.1: added links to previous schema versions", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.bot": {"id": "lov.bot", "homepage": "http://swa.cefriel.it/ontologies/botdcat-ap", "uri_format": "http://swa.cefriel.it/ontologies/botdcat-ap#$1", "prefix": "bot", "name": "BotDCAT-AP - Data Catalogue vocabulary Application Profile for chatbots", "description": "A vocabulary to describe data sources in a way they can be easily reused and accessed by chatbots.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.botany": {"id": "lov.botany", "homepage": "http://purl.org/NET/biol/botany#", "uri_format": "http://purl.org/NET/biol/botany#$1", "prefix": "botany", "name": "Biological Taxonomy Vocabulary 0.2 (Botany)", "description": "This is a specialist botanical variant of the Biological Taxonomy Vocabulary.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences"]}, "lov.bperson": {"id": "lov.bperson", "homepage": "http://data.vlaanderen.be/ns/persoon", "uri_format": "http://data.vlaanderen.be/ns/persoon#$1", "prefix": "bperson", "name": "Person", "description": "Person ontology in Dutch", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.br": {"id": "lov.br", "homepage": "http://vocab.deri.ie/br", "uri_format": "http://vocab.deri.ie/br#$1", "prefix": "br", "name": "Brainstorm Ontology", "description": "A lightweight ontology to structure e- brainstorming sessions", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.brk": {"id": "lov.brk", "homepage": "http://brk.basisregistraties.overheid.nl/def/brk", "uri_format": "http://brk.basisregistraties.overheid.nl/def/brk#$1", "prefix": "brk", "name": "Key Register Cadastre (BRK) vocabulary", "description": "Basisregistratie Kadaster (BRK) vocabulaire", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.brt": {"id": "lov.brt", "homepage": "http://brt.basisregistraties.overheid.nl/def/top10nl", "uri_format": "http://brt.basisregistraties.overheid.nl/def/top10nl#$1", "prefix": "brt", "name": "Key Register Topography (BRT) vocabulary", "description": "Basisregistratie Topografie (BRT) vocabulaire", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.bto": {"id": "lov.bto", "homepage": "https://w3id.org/bot", "uri_format": "https://w3id.org/bot#$1", "prefix": "bto", "name": "BOT: Building Topology Ontology", "description": "The Building Topology Ontology (BOT) is a simple ontology defining the core concepts of a building.\n\nIt is a simple, easy to extend ontology for the construction industry to document and exchange building data on the web.\n\nChanges since version 0.2.0 of the ontology are documented in:\nhttps://w3id.org/bot/bot.html#changes\n\nThe version 0.2.0 of the ontology is documented in:\nMads Holten Rasmussen, Pieter Pauwels, Maxime Lefran\u00e7ois, Georg Ferdinand Schneider, Christian Anker Hviid and Jan Karlsh\u00f8j (2017) Recent changes in the Building Topology Ontology, 5th Linked Data in Architecture and Construction Workshop (LDAC2017), November 13-15, 2017, Dijon, France, https://www.researchgate.net/publication/320631574_Recent_changes_in_the_Building_Topology_Ontology\n\nThe initial version 0.1.0 of the ontology was documented in:\nMads Holten Rasmussen, Pieter Pauwels, Christian Anker Hviid and Jan Karlsh\u00f8j (2017) Proposing a Central AEC Ontology That Allows for Domain Specific Extensions, Lean and Computing in Construction Congress (LC3): Volume I \u2013 Proceedings of the Joint Conference on Computing in Construction (JC3), July 4-7, 2017, Heraklion, Greece, pp. 237-244 https://doi.org/10.24928/JC3-2017/0153", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.c4n": {"id": "lov.c4n", "homepage": "http://vocab.deri.ie/c4n", "uri_format": "http://vocab.deri.ie/c4n#$1", "prefix": "c4n", "name": "Call for Anything vocabulary", "description": "A vocabulary to describe calls, such as call for tenders, call for proposals, call for papers, etc.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["law"]}, "lov.c4o": {"id": "lov.c4o", "homepage": "http://purl.org/spar/c4o", "uri_format": "http://purl.org/spar/c4o/$1", "prefix": "c4o", "name": "C4O, the Citation Counting and Context Characterization Ontology", "description": "C4O allows the characterization of bibliographic citations in terms of their number and their context.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.cal": {"id": "lov.cal", "homepage": "http://www.w3.org/2002/12/cal/ical", "uri_format": "http://www.w3.org/2002/12/cal/ical#$1", "prefix": "cal", "name": "Internet Calendaring and Scheduling Core Object Specification", "description": "A vocabulary for description of events and calendars", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.caresses": {"id": "lov.caresses", "homepage": "http://caressesrobot.org/ontology", "uri_format": "http://caressesrobot.org/ontology#$1", "prefix": "caresses", "name": "CARESSES Ontology", "description": "The CARESSES Ontology encodes guidelines defined by experts in Transcultural Nursing, with the aim of offering a specific tool for endowing social assistive robots (assisting older adults) with cultural competence.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["health sciences"]}, "lov.cart": {"id": "lov.cart", "homepage": "http://purl.org/net/cartCoord#", "uri_format": "http://purl.org/net/cartCoord#$1", "prefix": "cart", "name": "cartCoordOnt", "description": "Ontology for representation of cartesian co-ordinates", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "mathematics"]}, "lov.caso": {"id": "lov.caso", "homepage": "http://www.w3id.org/def/caso#", "uri_format": "http://www.w3id.org/def/caso#$1", "prefix": "caso", "name": "Context Aware System Observation Ontology", "description": "CASO (Context Aware System Observation) is an ontology for context aware system and observation services. Its goal is to describe all the processing of the context.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.cbcm": {"id": "lov.cbcm", "homepage": "http://w3id.org/um/cbcm/eu-cm-ontology", "uri_format": "http://w3id.org/um/cbcm/eu-cm-ontology#$1", "prefix": "cbcm", "name": "The European Union Company Mobility Ontology (EUCM ontology)", "description": "This ontology describes terms concerning companies, their cross-border movements within the European Union (EU), and associated EU company legislation.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cbo": {"id": "lov.cbo", "homepage": "http://comicmeta.org/cbo/", "uri_format": "http://comicmeta.org/cbo/$1", "prefix": "cbo", "name": "Comic Book Ontology", "description": "A metadata vocabulary for describing comic books and comic book collections.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cbs": {"id": "lov.cbs", "homepage": "http://betalinkeddata.cbs.nl/def/cbs", "uri_format": "http://betalinkeddata.cbs.nl/def/cbs#$1", "prefix": "cbs", "name": "De Centraal Bureau voor de Statistiek (CBS) ontologie", "description": "Ontologie voor datasets van het CBS", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences", "earth and related environmental sciences"]}, "lov.cc": {"id": "lov.cc", "homepage": "http://creativecommons.org/ns", "uri_format": "http://creativecommons.org/ns#$1", "prefix": "cc", "name": "Creative Commons Rights Expression Language", "description": "The Creative Commons Rights Expression Language (CC REL) lets you describe copyright licenses in RDF", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cci": {"id": "lov.cci", "homepage": "http://cookingbigdata.com/linkeddata/ccinstances", "uri_format": "http://cookingbigdata.com/linkeddata/ccinstances#$1", "prefix": "cci", "name": "Ontology for Cloud Computing instances", "description": "Ontology for Cloud Computing Instances. Instance are classes of VM that comprise varying combinations of CPU, memory, storage, and networking capacity. This ontology allows to define the instantiation model of MVs used in large cloud computing providers such as Amazon, Azure, etc.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cco": {"id": "lov.cco", "homepage": "http://purl.org/ontology/cco/core#", "uri_format": "http://purl.org/ontology/cco/core#$1", "prefix": "cco", "name": "Cognitive Characteristics Ontology", "description": "The Cognitive Characteristics Ontology specification provides a vocabulary for describing cognitive pattern within contexts, their temporal dynamics and their origins, on/ for the Semantic Web.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ccp": {"id": "lov.ccp", "homepage": "http://cookingbigdata.com/linkeddata/ccpricing", "uri_format": "http://cookingbigdata.com/linkeddata/ccpricing#$1", "prefix": "ccp", "name": "Vocabulary for prices options in Cloud Computing Services", "description": "Simple and direct pricing ontology for Cloud Computing Services. This ontology allows to define model of prices used in large cloud computing providers such as Amazon, Azure, etc., including options for regions, type of instances, prices specification, etc.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ccr": {"id": "lov.ccr", "homepage": "http://cookingbigdata.com/linkeddata/ccregions", "uri_format": "http://cookingbigdata.com/linkeddata/ccregions#$1", "prefix": "ccr", "name": "Vocabulary for Regions and Zones on Cloud Computing", "description": "Ontology for the definition of regions and zones of availability on CloudComputing platforms and services. This ontology allows to define model of regions used in large cloud computing providers such as Amazon, Azure, etc.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.ccsla": {"id": "lov.ccsla", "homepage": "http://cookingbigdata.com/linkeddata/ccsla", "uri_format": "http://cookingbigdata.com/linkeddata/ccsla#$1", "prefix": "ccsla", "name": "Service Level Agreement for Cloud Computing", "description": "Service Level Agreement for Cloud Computing Services. This ontology allows to define model of SLA/SLO used in large cloud computing providers such as Amazon, Azure, etc., including terms, claims, credit, compensations, etc", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cdc": {"id": "lov.cdc", "homepage": "https://w3id.org/cdc", "uri_format": "https://w3id.org/cdc#$1", "prefix": "cdc", "name": "CDC: Construction Dataset Context ontology", "description": "The Construction Dataset Context (CDC) ontology is an extension of DCAT v2.0, a W3C Recommendation ontology for describing (RDF and non-RDF) datasets published on the Web. Using this extension, it becomes possible to describe a context for construction-related datasets that are being distributed using Web technology as well as datasets that are not shared outside an organization such as local copies, work in progress and other datasets that remain internal. This dataset metadata encompasses the temporal context (period or snapshot), the type of content of the dataset (as-built, design, etc.) and relations between contextualized datasets (previous as-built, requirements related to a design, etc.). In addition, this DCAT extension also provides terminology for managing dataset distributions that are scoped to a certain (named or default) graph of an RDF file or quadstore.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cdesc": {"id": "lov.cdesc", "homepage": "https://w3id.org/arco/ontology/context-description", "uri_format": "https://w3id.org/arco/ontology/context-description/$1", "prefix": "cdesc", "name": "Context Description Ontology (ArCo network)", "description": "The Context Description module includes models for the context of a cultural property, in a broad sense: agents (e.g.: author, collector, copyright holder), objects (e.g.: inventories, bibliography, protective measures, other cultural properties, collections etc.), activities (e.g.: surveys, conservation interventions), situations (e.g.: commission, coin issuance, estimate, legal situation) related, involved or involving the cultural property. Thus it represents attributes that do not result from a measurement of features in a cultural property, but are associated with it.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.cdm": {"id": "lov.cdm", "homepage": "http://purl.org/twc/ontology/cdm.owl#", "uri_format": "http://purl.org/twc/ontology/cdm.owl#$1", "prefix": "cdm", "name": "Conceptual Depth and Momentum", "description": "An attempt to represent how universal/accepted/popular a URI is", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cdtype": {"id": "lov.cdtype", "homepage": "http://purl.org/cld/cdtype/", "uri_format": "http://purl.org/cld/cdtype/$1", "prefix": "cdtype", "name": "The Collection Description Type Namespace", "description": "Types defined by the Dublin Core Collections Application Profile", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.cem": {"id": "lov.cem", "homepage": "https://w3id.org/CEMontology", "uri_format": "https://w3id.org/CEMontology/$1", "prefix": "cem", "name": "Crime Event Model (CEM)", "description": "The Crime Event Model is an ontology for the representation of crime events extracted from local newspapers. It could be employed for Crime Analysis purposes: extracting crime information from newspapers and enriching them with proper machine-readable semantics is a critical task to help law enforcement agencies at preventing crime, supporting criminal investigations and evaluating the action of law enforcement agencies themselves. The model is based on the fundamental 5W1H journalistic questions, that are Who?, What?, When?, Where?, Why? and How?. Another important requirement was the attempt to exploit existing knowledge graphs and ontologies such as the Simple Event Model (SEM) Ontology and the Schema.org data model for interoperability and interconnection.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ceo": {"id": "lov.ceo", "homepage": "http://www.ebusiness-unibw.org/ontologies/consumerelectronics/v1", "uri_format": "http://www.ebusiness-unibw.org/ontologies/consumerelectronics/v1#$1", "prefix": "ceo", "name": "Consumer Electronics Ontology", "description": "An Ontology for Consumer Electronics Products and Services", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cerif": {"id": "lov.cerif", "homepage": "http://www.eurocris.org/ontologies/cerif/1.3", "uri_format": "http://www.eurocris.org/ontologies/cerif/1.3#$1", "prefix": "cerif", "name": "CERIF Ontology 1.3", "description": "The Common European Research Information Format (CERIF) Ontology Specification provides basic concepts and properties for describing research information as semantic data.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.cert": {"id": "lov.cert", "homepage": "http://www.w3.org/ns/auth/cert#", "uri_format": "http://www.w3.org/ns/auth/cert#$1", "prefix": "cert", "name": "The Cert Ontology", "description": "Ontology for Certificates and crypto stuff.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cevent": {"id": "lov.cevent", "homepage": "https://w3id.org/arco/ontology/cultural-event", "uri_format": "https://w3id.org/arco/ontology/cultural-event/$1", "prefix": "cevent", "name": "Cultural Event Ontology (ArCo network)", "description": "The Cultural Event module models cultural events, i.e. events involving cultural properties.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cff": {"id": "lov.cff", "homepage": "http://purl.oclc.org/NET/ssnx/cf/cf-feature", "uri_format": "http://purl.oclc.org/NET/ssnx/cf/cf-feature#$1", "prefix": "cff", "name": "Climate and Forecast (CF) features", "description": "This is an ontology representation of the generic features defined by Climate and Forecast (CF) standard names vocabulary (http://cf-pcmdi.llnl.gov/documents/cf-standard-names/), maintained by the Program for Climate Model Diagnosis and Intercomparison (http://cf-pcmdi.llnl.gov/ ) which is intended for use with climate and forecast data, in the atmosphere, surface and ocean domains.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.cfp": {"id": "lov.cfp", "homepage": "http://purl.oclc.org/NET/ssnx/cf/cf-property", "uri_format": "http://purl.oclc.org/NET/ssnx/cf/cf-property#$1", "prefix": "cfp", "name": "Climate and Forecast (CF) standard names parameter vocabulary", "description": "This is an ontology representation of the climatic data variables defined by Climate and Forecast (CF) standard names vocabulary (http://cf-pcmdi.llnl.gov/documents/cf-standard-names/), maintained by the Program for Climate Model Diagnosis and Intercomparison (http://cf-pcmdi.llnl.gov/ ) which is intended for use with climate and forecast data, in the atmosphere, surface and ocean domains.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.cfrl": {"id": "lov.cfrl", "homepage": "http://linkeddata.finki.ukim.mk/lod/ontology/cfrl#", "uri_format": "http://linkeddata.finki.ukim.mk/lod/ontology/cfrl#$1", "prefix": "cfrl", "name": "Corporate Financial Reports and Loans Ontology", "description": "The Corporate Financial Reports and Loans Ontology (CFRL).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cgov": {"id": "lov.cgov", "homepage": "http://reference.data.gov.uk/def/central-government", "uri_format": "http://reference.data.gov.uk/def/central-government/$1", "prefix": "cgov", "name": "Central Government Ontology", "description": "An ontology of UK central government", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences"]}, "lov.chord": {"id": "lov.chord", "homepage": "http://purl.org/ontology/chord/", "uri_format": "http://purl.org/ontology/chord/$1", "prefix": "chord", "name": "The OMRAS2 Chord Ontology", "description": "This document describes the first draft of a chord ontology based on work from the Centre for Digital Music, Queen Mary, University of London. It has been created as part of the OMRAS2 project and is intended to provide a common, versatile vocabulary for describing chords and chord sequences in RDF.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ci": {"id": "lov.ci", "homepage": "https://privatealpha.com/ontology/content-inventory/1#", "uri_format": "https://privatealpha.com/ontology/content-inventory/1#$1", "prefix": "ci", "name": "A Content Inventory Vocabulary", "description": "This vocabulary defines a number of concepts peculiar to content strategy which are not accounted for by other vocabularies.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cis": {"id": "lov.cis", "homepage": "http://dati.beniculturali.it/cultural-ON/cultural-ON.owl", "uri_format": "http://dati.beniculturali.it/cis/$1", "prefix": "cis", "name": "Cultural-ON (Cultural ONtology): Cultural Institute/Site and Cultural Event Ontology", "description": "The ontology aims at modelling the data on cultural institutes or sites such as data regarding the agents that play a specific role on cultural institutes or sites, the sites themselves, the contact points, all multimedia files which describe the cultural institute or site and any other information useful to the public in order to access the institute or site. Moreover, the ontology represents events that can take place in specific cultural institutes or sites.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences"]}, "lov.cito": {"id": "lov.cito", "homepage": "http://purl.org/spar/cito", "uri_format": "http://purl.org/spar/cito/$1", "prefix": "cito", "name": "CiTO, the Citation Typing Ontology", "description": "The Citation Typing Ontology enables characterization of the nature or type of citations", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.citof": {"id": "lov.citof", "homepage": "http://www.essepuntato.it/2013/03/cito-functions", "uri_format": "http://www.essepuntato.it/2013/03/cito-functions/$1", "prefix": "citof", "name": "Functions of Citations", "description": "CiTOFunctions is an ontology that provides a classification for citations. In particular, it classifies CiTO properties (each defining a particular citational act)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.cl": {"id": "lov.cl", "homepage": "http://advene.org/ns/cinelab/ld", "uri_format": "http://advene.org/ns/cinelab/ld#$1", "prefix": "cl", "name": "Cinelab ontology", "description": "Le projet Advene a pour objectif de fournir un mod\u00e8le et plusieurs formats de donn\u00e9es pour partager des annotations sur des vid\u00e9os num\u00e9riques (films, cours, conf\u00e9rences...), ainsi que des outils pour \u00e9diter et visualiser les hyp\u00e9rvid\u00e9os g\u00e9n\u00e9r\u00e9es \u00e0 partir de ces vid\u00e9os et des annotations. Les enseignants, les amateurs de cin\u00e9ma, etc., peuvent les utiliser pour \u00e9changer leurs commentaires et analyse de documents audiovisuels.\n\nLe mod\u00e8le Cinelab permet non seulement de repr\u00e9senter les annotations vid\u00e9os, mais aussi d'expliciter leur structure (\u00e0 travers les notions de sch\u00e9ma et de type d'annotation), ainsi que leur pr\u00e9sentations \u00e0 l'aide de vues (mod\u00e8les appliqu\u00e9s aux donn\u00e9es pour produire des hypervid\u00e9os) et de requ\u00eates.\n\nCe mod\u00e8le a \u00e9t\u00e9 d\u00e9velopp\u00e9 par les partenaires du projet Cinelab (2007-2008, financ\u00e9 par l'ANR), et utilis\u00e9 par la suite dans plusieurs projets et applications, dont Advene (LIRIS) et Ligne de temps (IRI).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cld": {"id": "lov.cld", "homepage": "http://purl.org/cld/terms/", "uri_format": "http://purl.org/cld/terms/$1", "prefix": "cld", "name": "The Collection Description Terms", "description": "An expression in RDF of the application profile for collection-level description developed by the Dublin Core Collection Description Task Group.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.cmo": {"id": "lov.cmo", "homepage": "http://purl.org/twc/ontologies/cmo.owl", "uri_format": "http://purl.org/twc/ontologies/cmo.owl#$1", "prefix": "cmo", "name": "Conceptual Model Ontology", "description": "An ontology to tie classes and properties to SKOS concepts", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.cnt": {"id": "lov.cnt", "homepage": "http://www.w3.org/2011/content", "uri_format": "http://www.w3.org/2011/content#$1", "prefix": "cnt", "name": "Representing Content in RDF", "description": "Representing Content in RDF as defined by http://www.w3.org/TR/Content-in-RDF/", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.co": {"id": "lov.co", "homepage": "http://purl.org/ontology/co/core#", "uri_format": "http://purl.org/ontology/co/core#$1", "prefix": "co", "name": "Counter Ontology", "description": "The Counter Ontology specification provides basic concepts and properties for describing a general counter concept and some important sub counters", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cochrane": {"id": "lov.cochrane", "homepage": "http://data.cochrane.org/ontologies/core/", "uri_format": "http://data.cochrane.org/ontologies/core/$1", "prefix": "cochrane", "name": "Cochrane Core Vocabulary Ontology", "description": "The Cochrane Core ontology describes the entities and concepts that exist in the domain of evidence based healthcare. It is used for the construction of the Cochrane Linked Data Vocabulary containing some 400k terms including Interventions (Drugs, Procedures etc), Populations (Age, Sex, Condition), and clinical Outcomes.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["health sciences"]}, "lov.cocoon": {"id": "lov.cocoon", "homepage": "https://w3id.org/cocoon/v1.0", "uri_format": "https://w3id.org/cocoon/v1.0#$1", "prefix": "cocoon", "name": "Cloud Computing Services Ontology", "description": "Simple ontology for Cloud Computing Services. This ontology allows to define model of prices used in large cloud computing providers such as Google, Amazon, Azure, etc., including options for regions, type of instances, prices specification, etc.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["law"]}, "lov.cogs": {"id": "lov.cogs", "homepage": "http://vocab.deri.ie/cogs", "uri_format": "http://vocab.deri.ie/cogs#$1", "prefix": "cogs", "name": "COGS Vocabulary", "description": "Vocabulary for describing ETL and data transformation activities.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cold": {"id": "lov.cold", "homepage": "http://purl.org/configurationontology", "uri_format": "http://purl.org/configurationontology#$1", "prefix": "cold", "name": "'Configuration as Linked Data' ontology", "description": "Ontology for the description of customizable products. It models the configuration process as the traversal of a graph of partially defined products, or \"Configurations\"", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.coll": {"id": "lov.coll", "homepage": "http://purl.org/co", "uri_format": "http://purl.org/co/$1", "prefix": "coll", "name": "Collections Ontology", "description": "The Collections Ontology (CO) defines unordered collections (Set and Bag) and ordered collections (or List). This ontology has been inspired by the work \"Putting OWL in Order: Patterns for Sequences in OWL\" by Drummond et al. (OWL-ED 2006).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.comm": {"id": "lov.comm", "homepage": "http://vocab.resc.info/communication", "uri_format": "http://vocab.resc.info/communication#$1", "prefix": "comm", "name": "Vocabulary related to incident communication", "description": "This vocabulary is intended to describe all the aspects which are needed to communicate incident related information for fire department services", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.common": {"id": "lov.common", "homepage": "http://www.w3.org/2007/uwa/context/deliverycontext.owl", "uri_format": "http://www.w3.org/2007/uwa/context/common.owl#$1", "prefix": "common", "name": "The Delivery Context Ontology", "description": "The Delivery Context Ontology models the knowledge of the environment in which devices interact with the Web or other services", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.con": {"id": "lov.con", "homepage": "http://www.w3.org/2000/10/swap/pim/contact", "uri_format": "http://www.w3.org/2000/10/swap/pim/contact#$1", "prefix": "con", "name": "Contact", "description": "Utility concepts for everyday life", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.contax": {"id": "lov.contax", "homepage": "https://w3id.org/con-tax", "uri_format": "https://w3id.org/con-tax#$1", "prefix": "contax", "name": "ConTax ontology", "description": "An ontology containing additional terminology for structuring and annotating RDFS/OWL taxonomies for describing constructions (components, materials, spatial zones, damages, construction tasks and properties). It also functions as an index for known taxonomies starting from root classes and properties.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.conversion": {"id": "lov.conversion", "homepage": "http://purl.org/twc/vocab/conversion/", "uri_format": "http://purl.org/twc/vocab/conversion/$1", "prefix": "conversion", "name": "Conversion Ontology", "description": "Ontology used to describe interpretations of tabular literals to produce RDF", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.coo": {"id": "lov.coo", "homepage": "http://purl.org/coo/ns#", "uri_format": "http://purl.org/coo/ns#$1", "prefix": "coo", "name": "Car Options Ontology", "description": "The COO provides a vocabulary for exposing available configuration options for car models. It allows indicating choices that can be made as well as compatibility, dependency, and inclusion information. The ontology imports and extends the GoodRelations ontology for e-commerce", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.core": {"id": "lov.core", "homepage": "https://w3id.org/mdo/core/", "uri_format": "https://w3id.org/mdo/core/$1", "prefix": "core", "name": "Materials Design Ontology - Core Module", "description": "This is the core module in Materials Design Ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.coun": {"id": "lov.coun", "homepage": "http://www.daml.org/2001/09/countries/iso-3166-ont", "uri_format": "http://www.daml.org/2001/09/countries/iso-3166-ont#$1", "prefix": "coun", "name": "ISO 3166 Country Codes", "description": "Basic properties of a country as defined by ISO 3166 (code and name)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.cpa": {"id": "lov.cpa", "homepage": "http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl", "uri_format": "http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#$1", "prefix": "cpa", "name": "Content Pattern Annotations", "description": "A set of annotation properties to be used for ontology design patterns", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cpmeta": {"id": "lov.cpmeta", "homepage": "http://meta.icos-cp.eu/ontologies/cpmeta/", "uri_format": "http://meta.icos-cp.eu/ontologies/cpmeta/$1", "prefix": "cpmeta", "name": "Ontology of Integrated Carbon Observation System (ICOS)", "description": "OWL vocabulary describing metadata of two environmental research infrastructures: ICOS and SITES", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.crm": {"id": "lov.crm", "homepage": "http://www.cidoc-crm.org/cidoc-crm/", "uri_format": "http://www.cidoc-crm.org/cidoc-crm/$1", "prefix": "crm", "name": "CIDOC Conceptual Reference Model", "description": "This is the encoding approved by CRM-SIG in the meeting 21/11/2012 as the official current version for the CIDOC CRM namespace. Note that this is NOT a definition of the CIDOC CRM, but an encoding derived from the authoritative release of the CIDOC CRM v5.0.4 on http://www.cidoc-crm.org/official_release_cidoc.html", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.cro": {"id": "lov.cro", "homepage": "http://rhizomik.net/ontologies/copyrightonto.owl", "uri_format": "http://rhizomik.net/ontologies/copyrightonto.owl#$1", "prefix": "cro", "name": "Copyright Ontology", "description": "The Copyright Ontology is a contribution geared towards the development of copyright-aware Digital Rights Management (DRM) systems.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.crsw": {"id": "lov.crsw", "homepage": "http://courseware.rkbexplorer.com/ontologies/courseware", "uri_format": "http://courseware.rkbexplorer.com/ontologies/courseware#$1", "prefix": "crsw", "name": "ReSIST Courseware Ontology", "description": "The ReSIST Courseware Ontology represents the various educational courses and resources within the ReSIST project", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.cs": {"id": "lov.cs", "homepage": "http://purl.org/vocab/changeset/schema", "uri_format": "http://purl.org/vocab/changeset/schema#$1", "prefix": "cs", "name": "Changeset", "description": "This vocabulary defines a set of terms for describing changes to resource descriptions.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.csp": {"id": "lov.csp", "homepage": "http://vocab.deri.ie/csp", "uri_format": "http://vocab.deri.ie/csp#$1", "prefix": "csp", "name": "Constraint Satisfaction Problems Vocabulary", "description": "A vocabulary to represent Constraint Satisfaction Problems (CSPs) in which constraints are expressed by Boolean expressions on fluents.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.csvw": {"id": "lov.csvw", "homepage": "http://www.w3.org/ns/csvw#", "uri_format": "http://www.w3.org/ns/csvw#$1", "prefix": "csvw", "name": "CSV on the Web Vocabulary", "description": "This document describes the RDFS vocabulary description used in the Metadata Vocabulary for Tabular Data along with the default JSON-LD Context.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ct": {"id": "lov.ct", "homepage": "http://www.tele.pw.edu.pl/~sims-onto/ConnectivityType.owl", "uri_format": "http://www.tele.pw.edu.pl/~sims-onto/ConnectivityType.owl#$1", "prefix": "ct", "name": "Connectivity types", "description": "Defines types of connectivity used in communication and bearer services accessible in certain connectivity.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ctag": {"id": "lov.ctag", "homepage": "http://commontag.org/ns#", "uri_format": "http://commontag.org/ns#$1", "prefix": "ctag", "name": "Common Tag Vocabulary", "description": "Common Tags are references to unique, well-defined concepts, complete with metadata and their own URLs.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ctlog": {"id": "lov.ctlog", "homepage": "https://w3id.org/arco/ontology/catalogue", "uri_format": "https://w3id.org/arco/ontology/catalogue/$1", "prefix": "ctlog", "name": "Catalogue Ontology (ArCo network)", "description": "The Catalogue module allows the description of concepts related to the Italian General Catalogue of Cultural Heritage (ICCD-MiBAC), and in particular catalogue records, that is XML files recording all data gathered by a cataloguer on a particular cultural property.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.cto": {"id": "lov.cto", "homepage": "https://w3id.org/cto", "uri_format": "https://w3id.org/cto#$1", "prefix": "cto", "name": "CTO: Construction Tasks Ontology", "description": "The Construction Tasks Ontology (CTO) describes tasks operating on construction elements, spatial zones and/or damages. The tasks are either planned or executed depending on the dataset metadata context of the dataset its used in. Five different types of tasks are defined: instalment, removal, modification, repair and inspection. \nConsequences of tasks on the dataset, i.e. added and/or deleted triples, are modeled using reified statements. The tasks can link to a reified statement using the CTO relations.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ctorg": {"id": "lov.ctorg", "homepage": "http://purl.org/ctic/infraestructuras/organizacion", "uri_format": "http://purl.org/ctic/infraestructuras/organizacion#$1", "prefix": "ctorg", "name": "Vocabulario de la estructura de organismos p\u00fablicos", "description": "El objetivo de este vocabulario es la creaci\u00f3n de un esquema que permita definir los contenidos de la informaci\u00f3n relacionada con los \u00f3rganos de gobierno y los centros p\u00fablicos que ofrecen servicios. Se identifican ciertas variables en el dominio de los centros p\u00fablicos, que se modelan a trav\u00e9s de ciertos tipos de datos y de propiedades relacionadas entre los recursos. Se utiliza Ontologies for e-Government para modelar las principales caracter\u00edsticas.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences"]}, "lov.ctrl": {"id": "lov.ctrl", "homepage": "https://w3id.org/ibp/CTRLont", "uri_format": "https://w3id.org/ibp/CTRLont#$1", "prefix": "ctrl", "name": "CTRLont - An ontology to formally specify the control domain", "description": "CTRLont specifies concepts and relationships of control actors on a high level", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ctxdesc": {"id": "lov.ctxdesc", "homepage": "http://www.demcare.eu/ontologies/contextdescriptor.owl", "uri_format": "http://www.demcare.eu/ontologies/contextdescriptor.owl#$1", "prefix": "ctxdesc", "name": "Context Descriptor Pattern", "description": "OWL pattern for describing activity models as abstract dependencies among classes.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cwmo": {"id": "lov.cwmo", "homepage": "http://purl.org/cwmo/#", "uri_format": "http://purl.org/cwmo/#$1", "prefix": "cwmo", "name": "Creative Workshop Management Ontology (CWMO)", "description": "Creative Workshop Management Ontology (CWMO) - an ontology designed to describe the creative workshop domain, to permit reasoning on creative method and to describe resources gathered inside Creative Support System. The primary goal of the ontology is to cover all knowledge about creative workshop and creative method necessary for Creative support system. The second goal is to provide interoperability between distributed Creative Support System.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.cwork": {"id": "lov.cwork", "homepage": "http://www.bbc.co.uk/ontologies/creativework", "uri_format": "http://www.bbc.co.uk/ontologies/creativework/$1", "prefix": "cwork", "name": "Creative Work Ontology", "description": "This ontology defines the terms required to describe the creative works produced by the BBC and their associated metadata.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.cwrc": {"id": "lov.cwrc", "homepage": "http://sparql.cwrc.ca/ontologies/cwrc", "uri_format": "http://sparql.cwrc.ca/ontologies/cwrc#$1", "prefix": "cwrc", "name": "L'Ontologie CWRC", "description": "L'Ontologie CWRC est l'ontologie du Collaboratoire scientifique des \u00e9crits du Canada.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.d2rq": {"id": "lov.d2rq", "homepage": "http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1", "uri_format": "http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1#$1", "prefix": "d2rq", "name": "D2RQ - Language Specification", "description": "This document specifies the D2RQ mapping language. D2RQ is a declarative language to describe mappings between relational database schemata and OWL/RDFS ontologies.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dady": {"id": "lov.dady", "homepage": "http://vocab.deri.ie/dady", "uri_format": "http://purl.org/NET/dady#$1", "prefix": "dady", "name": "Dataset Dynamics (dady) vocabulary", "description": "A vocabulary that allows for coarse-grained descriptions of the data-source dynamics as well as the discovery of change notification mechanism(s).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.daia": {"id": "lov.daia", "homepage": "http://purl.org/ontology/daia", "uri_format": "http://purl.org/ontology/daia/$1", "prefix": "daia", "name": "Document Availability Information Ontology", "description": "The Document Availability Information Ontology (DAIA) describes the current availability of documents in libraries and similar institutions. Availability can be expressed in terms of specific services.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.daq": {"id": "lov.daq", "homepage": "http://purl.org/eis/vocab/daq#", "uri_format": "http://purl.org/eis/vocab/daq#$1", "prefix": "daq", "name": "Dataset Quality Vocabulary", "description": "Quality metrics can be (in principle) calculated on various forms of data (such as datasets, graphs, set of triples etc...). This vocabulary allow the owner/user of such RDF data to calculate metrics on multiple (and different) resources.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dataid": {"id": "lov.dataid", "homepage": "http://dataid.dbpedia.org/ns/core#", "uri_format": "http://dataid.dbpedia.org/ns/core#$1", "prefix": "dataid", "name": "DataID", "description": "DBpedia Data ID is an ontology with the goal of describing LOD datasets via RDF files in a uniform way. Established vocabularies like DCAT, VoID, Prov-O and SPARQL Service Description are used for maximum compatibility.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.date": {"id": "lov.date", "homepage": "http://contextus.net/ontology/ontomedia/misc/date#", "uri_format": "http://contextus.net/ontology/ontomedia/misc/date#$1", "prefix": "date", "name": "OntoMedia Date Part Representation", "description": "OntoMedia (Ontology for Media) Date Component has been designed to describe the different ways of marking time in media.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.datex": {"id": "lov.datex", "homepage": "http://vocab.datex.org/terms#", "uri_format": "http://vocab.datex.org/terms#$1", "prefix": "datex", "name": "Linked Datex II", "description": "This document gives URIs to all terms used within Datex II. the Datex standard was developed for information exchange between traffic management centres, traffic information centres and service providers in Europe", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences"]}, "lov.dave": {"id": "lov.dave", "homepage": "http://theme-e.adaptcentre.ie/dave/dave.ttl", "uri_format": "http://theme-e.adaptcentre.ie/dave#$1", "prefix": "dave", "name": "Data Value Vocabulary (DaVe)", "description": "The Data Value Vocabulary (DaVe) is an extensible core vocabulary that allows user to use custom data value dimensions and metrics to characterise data value in a specific context. This flexibility allows for the comprehensive modelling of data value. As a data value model, DaVe allows users to monitor data value as it occurs within a data exploitation or value creation process (data value chain)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic", "mathematics", "computer and information sciences"]}, "lov.dba": {"id": "lov.dba", "homepage": "https://w3id.org/dba/ontology/", "uri_format": "https://w3id.org/dba/ontology/$1", "prefix": "dba", "name": "Description Banking Archives Ontology", "description": "The ontology, presented here in a beta version, is based on the analysis of the documentation and descriptive requirements of the Intesa Sanpaolo Historical Archive and is intended to describe the content of historical banking documents and of some of the activities carried out by the bank, particularly in relation to third parties (loans, charity donations, seizures and confiscations, etc.), which involve the initiation of processes or the production of documents. The focal point of the descriptive model is the bank - an entity that initiates different types of processes, whose common feature is that they are structured into various stages/events - and the relationship between the documentation produced and the information it contains. In fact, this ontology is based on information collected from archived documents which describe various processes and activities carried out by banking institutions: the starting point for its construction were the inventories and databases of documentation stored in the Historical Archive which was produced by the various banks that over time were merged into Intesa Sanpaolo. The ontology was created to provide a sufficiently abstract representation and model for describing the processes of various banking activities from which the documentation was produced - from a company's request for financing and its outcome, to the preparation of seizure, confiscation and asset restitution filings, to charitable contributions, just to mention a few examples - reusing models that were already well established and widely used. The structure of the proposed ontology is in fact intended to adapt to the various activities, described in the archive files that a banking institution performs in relation to third parties. The proposed ontology is therefore not an ontology on banking activity in general, but on the relationship between this activity and the documents that are produced. Moreover, its objective is not to describe the documents in the strict sense of the term, for which reference is made to OAD ontology. The purpose of this project is to lay the initial, and fundamental, building blocks for describing the complexity, variety, and breadth of the domain of archiving bank records and the data they contain. Despite having data from different banks relating to different activities and having already made arrangements for the integration of third-party datasets and ontologies, before completing the project we will have to wait for the processing of representations based on other types of documents and banking institutions, including non-Italian ones.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.dbm": {"id": "lov.dbm", "homepage": "http://purl.org/net/dbm/ontology#", "uri_format": "http://purl.org/net/dbm/ontology#$1", "prefix": "dbm", "name": "DBM Ontology", "description": "An ontology for the Drug Bureau of Macedonia (DBM).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["health sciences"]}, "lov.dbowl": {"id": "lov.dbowl", "homepage": "http://ontology.cybershare.utep.edu/dbowl", "uri_format": "http://ontology.cybershare.utep.edu/dbowl/relational-to-ontology-mapping-primitive.owl#$1", "prefix": "dbowl", "name": "Relational to Ontology Mapping Primitive", "description": "Primitive ontology for database to Semantic Web mapping which subsumes classes that represent mappings to explicit OWL constructs, such as OWL class, object property, data property, etc. Classes in this ontology are populated by individuals representing components of the database schema being mapped.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dbpedia-owl": {"id": "lov.dbpedia-owl", "homepage": "http://dbpedia.org/ontology/", "uri_format": "http://dbpedia.org/ontology/$1", "prefix": "dbpedia-owl", "name": "The DBpedia Ontology", "description": "The DBpedia ontology provides the classes and properties used in the DBpedia data set.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.dbug": {"id": "lov.dbug", "homepage": "http://ontologi.es/doap-bugs#", "uri_format": "http://ontologi.es/doap-bugs#$1", "prefix": "dbug", "name": "DOAP Bugs", "description": "An extension of DOAP for the description of bugs", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dcam": {"id": "lov.dcam", "homepage": "http://purl.org/dc/dcam/", "uri_format": "http://purl.org/dc/dcam/$1", "prefix": "dcam", "name": "DCMI Abstract Model", "description": "An abstract model for Dublin Core metadata", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.dcat": {"id": "lov.dcat", "homepage": "http://www.w3.org/ns/dcat", "uri_format": "http://www.w3.org/ns/dcat#$1", "prefix": "dcat", "name": "Data Catalog Vocabulary", "description": "DCAT is an RDF vocabulary designed to facilitate interoperability between data catalogs published on the Web", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dce": {"id": "lov.dce", "homepage": "http://purl.org/dc/elements/1.1/", "uri_format": "http://purl.org/dc/elements/1.1/$1", "prefix": "dce", "name": "Dublin Core Metadata Element Set", "description": "The Dublin Core Metadata Element Set is a vocabulary of fifteen properties for use in resource description. The name \"Dublin\" is due to its origin at a 1995 invitational workshop in Dublin, Ohio; \"core\" because its elements are broad and generic, usable for describing a wide range of resources.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dcite": {"id": "lov.dcite", "homepage": "http://purl.org/spar/datacite", "uri_format": "http://purl.org/spar/datacite/$1", "prefix": "dcite", "name": "The DataCite Ontology", "description": "The DataCite Ontology is an ontology written in OWL 2 DL to enable certain metadata properties of the DataCite Metadata Specification version 2.0 (http://datacite.org/schema/DataCite-MetadataKernel_v2.0.pdf) to be described in RDF.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.dcndl": {"id": "lov.dcndl", "homepage": "http://ndl.go.jp/dcndl/terms/", "uri_format": "http://ndl.go.jp/dcndl/terms/$1", "prefix": "dcndl", "name": "NDL Metadata Terms", "description": "RDF Schema declaration for Japan NDL Metadata Terms", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dco": {"id": "lov.dco", "homepage": "https://w3id.org/dco", "uri_format": "https://w3id.org/dco#$1", "prefix": "dco", "name": "domOS Common Ontology", "description": "domOS Common Ontology (dCO) represents a common information model to share a unified understanding for humans and machines and to ensure semantic interoperability in a heterogeneous IoT infrastructure. This ontology allows the decoupling of the infrastructure from the software services and applications.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.dcterms": {"id": "lov.dcterms", "homepage": "http://purl.org/dc/terms/", "uri_format": "http://purl.org/dc/terms/$1", "prefix": "dcterms", "name": "DCMI Metadata Terms", "description": "an up-to-date specification of all metadata terms maintained by the Dublin Core Metadata Initiative, including properties, vocabulary encoding schemes, syntax encoding schemes, and classes.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dctype": {"id": "lov.dctype", "homepage": "http://purl.org/dc/dcmitype/", "uri_format": "http://purl.org/dc/dcmitype/$1", "prefix": "dctype", "name": "DCMI Type Vocabulary", "description": "The DCMI Type Vocabulary provides a general, cross-domain list of approved terms that may be used as values for the Resource Type element to identify the genre of a resource.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.ddesc": {"id": "lov.ddesc", "homepage": "https://w3id.org/arco/ontology/denotative-description", "uri_format": "https://w3id.org/arco/ontology/denotative-description/$1", "prefix": "ddesc", "name": "Denotative Description Ontology (ArCo network)", "description": "The Denotative Description module encodes the characteristics of a cultural property, as detectable and/or detected during the cataloguing process and measurable according to a reference system. Examples include measurements e.g. length, constituting materials e.g. clay, employed techniques e.g. melting, conservation status e.g. good, decent, bad.\nIn this module are used as template the following Ontology Design Patterns:\n- http://www.ontologydesignpatterns.org/cp/owl/collectionentity.owl\n- http://www.ontologydesignpatterns.org/cp/owl/classification.owl\n- http://www.ontologydesignpatterns.org/cp/owl/descriptionandsituation.owl\n- http://www.ontologydesignpatterns.org/cp/owl/situation.owl", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.decision": {"id": "lov.decision", "homepage": "https://decision-ontology.googlecode.com/svn/trunk/decision.owl", "uri_format": "https://decision-ontology.googlecode.com/svn/trunk/decision.owl#$1", "prefix": "decision", "name": "Decision ontology", "description": "Decision-making is a process that can result in some decision and decision is a situation of indicating one of the considered options. Decision Ontology provides means for precise distinguishing and distinct treatment of these two aspects.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.demlab": {"id": "lov.demlab", "homepage": "http://www.demcare.eu/ontologies/demlab.owl", "uri_format": "http://www.demcare.eu/ontologies/demlab.owl#$1", "prefix": "demlab", "name": "Dem@Care Lab Ontology for Dementia Assessment", "description": "The ontology has been developed in the framework of the Dem@Care project for representing the experimentation protocol towards diagnostic support and assessment of Dementia in a controlled environment. The aim of the protocol is to provide a brief overview of their health status of the participants during consultation (cognition, behaviours and function), and to correlate the system (sensor) data with the data collected using typical dementia care assessment tools.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["health sciences"]}, "lov.deo": {"id": "lov.deo", "homepage": "http://purl.org/spar/deo", "uri_format": "http://purl.org/spar/deo/$1", "prefix": "deo", "name": "The Discourse Elements Ontology", "description": "The Discourse Elements Ontology is an ontology for describing the major rhetorical elements of a document such as a journal article. It is a subsidiary ontology that is imported into the Document Components Ontology, itself part of SPAR, the Semantic Publishing and Referencing Ontologies", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.deps": {"id": "lov.deps", "homepage": "http://ontologi.es/doap-deps#", "uri_format": "http://ontologi.es/doap-deps#$1", "prefix": "deps", "name": "DOAP Dependencies", "description": "An extension to DOAP for describing a project's requirements", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dfc": {"id": "lov.dfc", "homepage": "http://static.datafoodconsortium.org/ontologies/DFC_FullModel.owl", "uri_format": "http://static.datafoodconsortium.org/ontologies/DFC_FullModel.owl#$1", "prefix": "dfc", "name": "Data Food Consortium Ontology", "description": "A common vocabulary for digital food platforms", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["agriculture, forestry, and fisheries"]}, "lov.dfc-b": {"id": "lov.dfc-b", "homepage": "http://static.datafoodconsortium.org/ontologies/DFC_BusinessOntology.owl", "uri_format": "http://static.datafoodconsortium.org/ontologies/DFC_BusinessOntology.owl#$1", "prefix": "dfc-b", "name": "DFC Business Ontology", "description": "DFC Business Ontology", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["agriculture, forestry, and fisheries"]}, "lov.dfc-p": {"id": "lov.dfc-p", "homepage": "http://static.datafoodconsortium.org/ontologies/DFC_ProductGlossary.owl", "uri_format": "http://static.datafoodconsortium.org/ontologies/DFC_ProductGlossary.owl#$1", "prefix": "dfc-p", "name": "A common vocabulary for digital food platforms (Product Glossary Part)", "description": "A common vocabulary for digital food platforms (Product Glossary Part)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["agriculture, forestry, and fisheries"]}, "lov.dfc-t": {"id": "lov.dfc-t", "homepage": "http://static.datafoodconsortium.org/ontologies/DFC_TechnicalOntology.owl", "uri_format": "http://static.datafoodconsortium.org/ontologies/DFC_TechnicalOntology.owl#$1", "prefix": "dfc-t", "name": "A common vocabulary for digital food platforms (Technical Part)", "description": "A common vocabulary for digital food platforms (Technical Part)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["agriculture, forestry, and fisheries"]}, "lov.dg": {"id": "lov.dg", "homepage": "https://w3id.org/dingo/", "uri_format": "https://w3id.org/dingo#$1", "prefix": "dg", "name": "DINGO Ontology", "description": "The DINGO ontology (Data Integration for Grant Ontology) defines the terms of the DINGO vocabulary and provides a machine readable extensible framework to model data relative to projects, funding, project and funding actors, and, notably, funding policies. It is designed to yield high modeling power and elasticity to cope with the huge variety in funding and project practices, which makes it applicable to many areas where funding is an important aspect: first of all research, but also the arts, cultural conservation, and many others.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dicom": {"id": "lov.dicom", "homepage": "http://purl.org/healthcarevocab/v1", "uri_format": "http://purl.org/healthcarevocab/v1#$1", "prefix": "dicom", "name": "Healthcare metadata - DICOM ontology", "description": "Ontology for healthcare metadata - especially metadata found in DICOM files (Digital Imaging and Communications in Medicine, see http://dicom.nema.org/). Author: Michael Brunnbauer, Bonubase GmbH (www.bonubase.com). The author's email address is brunni@netestate.de. See http://purl.org/healthcarevocab/v1help for explanations.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["health sciences"]}, "lov.dio": {"id": "lov.dio", "homepage": "https://w3id.org/dio", "uri_format": "https://w3id.org/dio#$1", "prefix": "dio", "name": "The Design Intent Ontology", "description": "The scope of the DIO is the domain of design intent or design rationale that needs to be documented while undertaking the design of any artifact", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.disco": {"id": "lov.disco", "homepage": "http://rdf-vocabulary.ddialliance.org/discovery", "uri_format": "http://rdf-vocabulary.ddialliance.org/discovery#$1", "prefix": "disco", "name": "DDI-RDF Discovery Vocabulary", "description": "A metadata vocabulary for documenting research and survey data", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dita": {"id": "lov.dita", "homepage": "http://purl.org/dita/ns#", "uri_format": "http://purl.org/dita/ns#$1", "prefix": "dita", "name": "DITA RDF ontology", "description": "The DITA RDF ontology translates the semantics of a subset of the vocabulary described in the DITA 1.2 specification in a format that can be understood in the semantic Web of data. By Colin Maudry, licensed under the terms of the Unlicense (public domain).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dk": {"id": "lov.dk", "homepage": "http://www.data-knowledge.org/dk/", "uri_format": "http://www.data-knowledge.org/dk/$1", "prefix": "dk", "name": "The Data Knowledge Vocabulary", "description": "The Data Knowledge Vocabulary allows for a comprehensive description of data assets and enterprise data management. It covers a business data dictionary, data quality management, data governance, the technical infrastructure and many other aspects of enterprise data management. The vocabulary represents a linked data implementation of the Data Knowledge Model which resulted from extensive applied research.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dm2e": {"id": "lov.dm2e", "homepage": "http://onto.dm2e.eu/schemas/dm2e", "uri_format": "http://onto.dm2e.eu/schemas/dm2e/$1", "prefix": "dm2e", "name": "DM2E model", "description": "The DM2E model is a specialisation of the Europeana Data Model (EDM) and can be used for the description of manuscripts in the cultural heritage domain.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dnbt": {"id": "lov.dnbt", "homepage": "http://d-nb.info/standards/elementset/dnb", "uri_format": "http://d-nb.info/standards/elementset/dnb#$1", "prefix": "dnbt", "name": "DNB Metadata Terms", "description": "The DNB RDF Vocabulary (dnb:) is a collection of classes, properties and datatypes used within the DNB's linked data service.It complements the GND Ontology (gndo:) which is specifically geared towards authority data from the Integrated Authority File (GND), whereas this vocabulary is more general-purpose.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.doap": {"id": "lov.doap", "homepage": "http://usefulinc.com/ns/doap#", "uri_format": "http://usefulinc.com/ns/doap#$1", "prefix": "doap", "name": "Description of a Project vocabulary", "description": "The Description of a Project (DOAP) vocabulary, described using W3C RDF Schema and the Web Ontology Language.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.doc": {"id": "lov.doc", "homepage": "http://www.w3.org/2000/10/swap/pim/doc", "uri_format": "http://www.w3.org/2000/10/swap/pim/doc#$1", "prefix": "doc", "name": "Works, licences, derivatives and dependencies", "description": "Defines properties and relationships between works.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.doco": {"id": "lov.doco", "homepage": "http://purl.org/spar/doco", "uri_format": "http://purl.org/spar/doco/$1", "prefix": "doco", "name": "DoCO, the Document Components Ontology", "description": "An ontology for describing the component parts of a bibliographic document", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.docso": {"id": "lov.docso", "homepage": "http://purl.org/ontology/dso", "uri_format": "http://purl.org/ontology/dso#$1", "prefix": "docso", "name": "Document Service Ontology", "description": "A micro-ontology that defines a set of typical document-related services such as provided by libraries, museums and archives.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dogont": {"id": "lov.dogont", "homepage": "http://elite.polito.it/ontologies/dogont.owl", "uri_format": "http://elite.polito.it/ontologies/dogont$1", "prefix": "dogont", "name": "Ontology Modeling for Intelligent Domotic Environments", "description": "The DogOnt ontology supports device/network independent description of houses, including both controllable and architectural elements.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.donto": {"id": "lov.donto", "homepage": "http://reference.data.gov.au/def/ont/dataset", "uri_format": "http://reference.data.gov.au/def/ont/dataset#$1", "prefix": "donto", "name": "Dataset Ontology", "description": "The data.gov.au Dataset Ontology is an OWL ontology designed to describe the characteristics of datasets published on data.gov.au.\n\nThe ontology contains elements which describe the publication, update, origin, governance, spatial and temporal coverage and other contextual information about the dataset. The ontology also covers aspects of organisational custodianship and governance.\n \nBy using this ontology to describe datasets on data.gov.au publishers increase discoverability and enable the consumption of this information in other applications/systems as Linked Data. It further enables decentralised publishing of catalogs and facilitates federated dataset search across sites, e.g. in datasets that are published by the States.\n \nOther publishers of Linked Data may make assertions about data published using this ontology, e.g. they may publish information about the use of the dataset in other applications.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences"]}, "lov.dot": {"id": "lov.dot", "homepage": "https://w3id.org/dot#", "uri_format": "https://w3id.org/dot#$1", "prefix": "dot", "name": "Damage Topology Ontology", "description": "- Version 0.8: \n* completed ontology metadata wrt LOV\n* added classes dot:ClassifiedDamage and dot:UnclassifiedDamage (subclasses of dot:Damage)\n* made dot:StructuralDamage and dot:Defect subclasses of dot:Damage", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.dpn": {"id": "lov.dpn", "homepage": "http://purl.org/dpn", "uri_format": "http://purl.org/dpn#$1", "prefix": "dpn", "name": "Data Provider Node ontology", "description": "This ontology is being developed by CSIRO under the eReefs project for describing data provider nodes, web services available and datasets that are hosted by them. This ontology features a module for describing Datasets. It does not however describe geospatial, temporal, organisational or domain concepts as these are intended to be included from other ontologies via the imports statement. Other modules complementary to the DPN ontology are http://purl.org/dpn/dataset and http://purl.org/dpn/services. This version aligns DCAT and DC terms and imports DPN services.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dprov": {"id": "lov.dprov", "homepage": "http://promsns.org/def/decprov", "uri_format": "http://promsns.org/def/do#$1", "prefix": "dprov", "name": "Decision Provenance ontology (DecPROV)", "description": "This ontology is a reduced-in-scope version of the [W3C Decisions and Decision-Making Incubator Group](https://www.w3.org/2005/Incubator/decision/)'s Decision Ontology (DO) which can be found at . It has been re-worked to align entirely with the W3C's [PROV ontology](https://www.w3.org/TR/prov-o/) since it is widely recognised that analysing the elements of decisions *post hoc* is an exercise in provenance.\n\nUnlike the original DO, this ontology cannot be used for *normative* scenarios: it is only capable of recording decisions that have already been made (so-called *data-driven* use in the DO). This is because PROV, to which this ontology is completely mapped, does not have a templating system which can indicate what *should* occur in future scenarios.\n\nThis ontology introduces only one new element for decision modelling over that which was present in the DO: an Agent which allows agency in decision making to be recorded.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dq": {"id": "lov.dq", "homepage": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/dataquality", "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/dataquality#$1", "prefix": "dq", "name": "OWL representation of ISO 19115 (Geographic Information - Metadata - Data quality package)", "description": "An OWL representation of parts of the Geographic Metadata model described in ISO 19115:2003 with Corrigendum 2006 - DQ Package", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dqc": {"id": "lov.dqc", "homepage": "http://semwebquality.org/ontologies/dq-constraints", "uri_format": "http://semwebquality.org/ontologies/dq-constraints#$1", "prefix": "dqc", "name": "The Data Quality Constraints Library", "description": "This RDF document contains a library of data quality constraints represented as SPARQL query templates based on the SPARQL Inferencing Framework (SPIN). The data quality constraint templates are especially useful for the identification of data quality problems during data entry and for periodic quality checks during data usage.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dqm": {"id": "lov.dqm", "homepage": "http://purl.org/dqm-vocabulary/v1/dqm", "uri_format": "http://purl.org/dqm-vocabulary/v1/dqm#$1", "prefix": "dqm", "name": "The Data Quality Management Vocabulary", "description": "The Data Quality Management Vocabulary - An Ontology for Data Requirements Management, Data Quality Monitoring, Data Quality Assessment, and Data Cleansing", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dqv": {"id": "lov.dqv", "homepage": "http://www.w3.org/ns/dqv", "uri_format": "http://www.w3.org/ns/dqv#$1", "prefix": "dqv", "name": "Data Quality Vocabulary", "description": "The Data Quality Vocabulary (DQV) is seen as an extension to DCAT to cover the quality of the data, how frequently is it updated, whether it accepts user corrections, persistence commitments etc. When used by publishers, this vocabulary will foster trust in the data amongst developers.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dr": {"id": "lov.dr", "homepage": "http://purl.org/swan/2.0/discourse-relationships/", "uri_format": "http://purl.org/swan/2.0/discourse-relationships/$1", "prefix": "dr", "name": "Discourse relationships vocabulary", "description": "Relationships without range and domains meant to be reused in different contexts", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.drama": {"id": "lov.drama", "homepage": "http://www.purl.org/drammar", "uri_format": "http://www.purl.org/drammar#$1", "prefix": "drama", "name": "Drammar: a comprehensive ontology of drama", "description": "Designed with the goals to describe and encode the core dramatic qualities and to serve as a knowledge base underlying a number of applications, Drammar is a comprehensive ontology of drama, realized through a collaboration of computer scientists and drama scholars. It makes the knowledge about drama available as a vocabulary for the linked interchange of drama encodings and readily usable by automatic reasoners.\nBy avoinding references to style and artistic qualities Drammar aims at representing the elements shared by different, cross-media manifestations of drama, the so\u2013called intangible elements of drama as an intangible cultural heritage form.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.drm": {"id": "lov.drm", "homepage": "http://vocab.data.gov/def/drm", "uri_format": "http://vocab.data.gov/def/drm#$1", "prefix": "drm", "name": "Data Reference Model", "description": "A metamodel for government data", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.ds": {"id": "lov.ds", "homepage": "http://purl.org/ctic/dcat#", "uri_format": "http://purl.org/ctic/dcat#$1", "prefix": "ds", "name": "Dataset Catalog Vocabulary", "description": "Este vocabulario se utiliza para modelar los cat\u00e1logos de conjuntos de datos y las relaciones con los datasets", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.dsd": {"id": "lov.dsd", "homepage": "https://w3id.org/dsd", "uri_format": "https://w3id.org/dsd#$1", "prefix": "dsd", "name": "Description of a Data Source", "description": "To ensure comparability between schemas from different data models, the Description of a Data Source (DSD) vocabulary has been developed.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities", "computer and information sciences"]}, "lov.dsn": {"id": "lov.dsn", "homepage": "http://purl.org/dsnotify/vocab/eventset/", "uri_format": "http://purl.org/dsnotify/vocab/eventset/$1", "prefix": "dsn", "name": "DSNotify Eventsets: A vocabulary for change events in linked data sources", "description": "DSNotify Eventsets is a vocabulary for events that change resources in linked data sources.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dso": {"id": "lov.dso", "homepage": "http://inference-web.org/2.0/ds.owl", "uri_format": "http://inference-web.org/2.0/ds.owl#$1", "prefix": "dso", "name": "Data Structure Ontology", "description": "This ontology offers OWL-Lite definition for object list. It is a restricted version of OWL-S ObjectList", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.dtx_srti": {"id": "lov.dtx_srti", "homepage": "http://cef.uv.es/lodroadtran18/def/transporte/dtx_srti", "uri_format": "http://cef.uv.es/lodroadtran18/def/transporte/dtx_srti#$1", "prefix": "dtx_srti", "name": "LOD SRTI DATEX II", "description": "An RDF/OWL vocabulary to represent SRTI DATEX II profile (according the Commission Delegated Regulation (EU) No 886/2013) within the European LOD-RoadTran18 action \"Supporting the cross-border use of Road Traffic Data with Linked Open Data based on DATEX II (LOD-RoadTran18)\" (Agreement No: INEA/CEF/ICT/A2018/1803421, Action No: 2018-EU-IA-0088). The vocabulary is used for mapping between DATEX II and LOD formats.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dtype": {"id": "lov.dtype", "homepage": "http://www.linkedmodel.org/schema/dtype", "uri_format": "http://www.linkedmodel.org/schema/dtype#$1", "prefix": "dtype", "name": "Datatype Ontology", "description": "The ontology 'dtype' provides a specification of simple data types such as enumerations. These are needed in support of the conversion of XML Schemas and UML Models to OWL. Codelists are also defined in 'dtype'.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dul": {"id": "lov.dul", "homepage": "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl", "uri_format": "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#$1", "prefix": "dul", "name": "DOLCE+DnS Ultralite", "description": "The DOLCE+DnS Ultralite ontology. It is a simplification of some parts of the DOLCE Lite-Plus library (cf. http://www.ontologydesignpatterns.org/ont/dul/DLP397.owl)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.duv": {"id": "lov.duv", "homepage": "http://www.w3.org/ns/duv", "uri_format": "http://www.w3.org/ns/duv#$1", "prefix": "duv", "name": "Dataset Usage Vocabulary", "description": "The Dataset Usage Vocabulary (DUV) is used to describe consumer experiences, citations, and feedback about datasets from the human perspective.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.dvia": {"id": "lov.dvia", "homepage": "http://purl.org/ontology/dvia", "uri_format": "http://purl.org/ontology/dvia#$1", "prefix": "dvia", "name": "The visualization vocabulary for LOD applications", "description": "dvia is an RDF vocabulary designed to facilitate interoperability between visualization applications published on the Web.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.eac-cpf": {"id": "lov.eac-cpf", "homepage": "http://archivi.ibc.regione.emilia-romagna.it/ontology/eac-cpf/", "uri_format": "http://archivi.ibc.regione.emilia-romagna.it/ontology/eac-cpf/$1", "prefix": "eac-cpf", "name": "EAC-CPF Descriptions Ontology for Linked Archival Data:", "description": "Derive from the EAC-CPF original XML schema. Encoded Archival Context for Corporate Bodies, Persons, and Families provides a grammar for encoding names of creators of archival materials and related information.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.earl": {"id": "lov.earl", "homepage": "http://www.w3.org/ns/earl", "uri_format": "http://www.w3.org/ns/earl#$1", "prefix": "earl", "name": "Evaluation and Report Language", "description": "EARL is a vocabulary, the terms of which are defined across a set of specifications and technical notes, and that is used to describe test results. The primary motivation for developing this vocabulary is to facilitate the exchange of test results between Web accessibility evaluation tools in a vendor-neutral and platform-independent format. It also provides reusable terms for generic quality assurance and validation purposes.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.earth": {"id": "lov.earth", "homepage": "http://linked.earth/ontology#", "uri_format": "http://linked.earth/ontology#$1", "prefix": "earth", "name": "The Linked Earth Ontology", "description": "The Linked Earth Ontology aims to provide a common vocabulary for annotating paleoclimatology data", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.ebg": {"id": "lov.ebg", "homepage": "http://data.businessgraph.io/ontology#", "uri_format": "http://data.businessgraph.io/ontology#$1", "prefix": "ebg", "name": "euBusinessGraph ontology", "description": "The euBusinessGraph (`ebg:`) ontology represents companies, type/status/economic classification, addresses, identifiers, company officers (e.g., directors and CEOs), and dataset offerings.\n\nIt uses `schema:domainIncludes/rangeIncludes` (which are polymorphic) to describe which properties are applicable to a class, \nrather than `rdfs:domain/range` (which are monomorphic) to prescribe what classes must be applied to each node using a property.\nWe find that this enables more flexible reuse and combination of different ontologies.\nWe reuse the following ontologies and nomenclatures, and extend them where appropriate with classes and properties:\n\n- W3C Org, W3C RegOrg (basic company data), \n\n- W3C Time (officer membership), \n\n- W3C Locn (addresses),\n\n- schema.org (domain/rangeIncludes and various properties)\n\n- DBpedia ontology (jurisdiction)\n\n- NGEO and Spatial (NUTS administrative divisions)\n\n- ADMS (identifiers), \n\n- FOAF, SIOC (blog posts),\n\n- RAMON, SKOS (NACE economic classifications and various nomenclatures),\n\n- VOID (dataset descriptions).\n\nThis is only a reference. See more detail in the [EBG Semantic Model](https://docs.google.com/document/d/1dhMOTlIOC6dOK_jksJRX0CB-GIRoiYY6fWtCnZArUhU/edit) google document, which includes an informative description of classes and properties, gives examples and data provider rules, and provides more schema and instance diagrams.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ebucore": {"id": "lov.ebucore", "homepage": "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore", "uri_format": "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#$1", "prefix": "ebucore", "name": "EBU Ontology", "description": "Combined with the EBU Class Conceptual Data Model (CCDM) of simple business objects, EBUCore provides the appropriate framework for descriptive and technical metadata for use in Service Oriented Architectures and also in audiovisual ontologies for semantic web and linked data developments.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.eccrev": {"id": "lov.eccrev", "homepage": "https://vocab.eccenca.com/revision/", "uri_format": "https://vocab.eccenca.com/revision/$1", "prefix": "eccrev", "name": "RDF changes and revisions vocabulary", "description": "A vocabulary & data model for describing RDF changes and revisions. It defines the Commit & Revision classes together with their expected properties.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ecfo": {"id": "lov.ecfo", "homepage": "https://w3id.org/ecfo", "uri_format": "https://w3id.org/ecfo#$1", "prefix": "ecfo", "name": "The Emission Conversion Factor Ontology", "description": "This ontology defines a vocabulary for describing carbon emission conversion factors (CF). These are values typically used to calculate carbon emissions where the CF multiplies a quantified estimate of the energy (e.g., kWh of electricity, litters of fuel, etc.) used by a particular activity.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.eclap": {"id": "lov.eclap", "homepage": "http://www.eclap.eu/schema/eclap/", "uri_format": "http://www.eclap.eu/schema/eclap/$1", "prefix": "eclap", "name": "ECLAP, Performing Arts Vocabulary", "description": "The ECLAP vocabulary provide classes and properties for the description of multimedia content related with performing arts.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ecpo": {"id": "lov.ecpo", "homepage": "http://purl.org/ontology/ecpo", "uri_format": "http://purl.org/ontology/ecpo#$1", "prefix": "ecpo", "name": "Enumeration and Chronology of Periodicals Ontology", "description": "Defines the common bibliographic terms for the description of enumeration and chronology of periodicals", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ecrm": {"id": "lov.ecrm", "homepage": "http://erlangen-crm.org/current/", "uri_format": "http://erlangen-crm.org/current/$1", "prefix": "ecrm", "name": "Erlangen CRM / OWL", "description": "Erlangen CRM / OWL - An OWL DL 1.0 implementation of the CIDOC Conceptual Reference Model, based on: Nick Crofts, Martin Doerr, Tony Gill, Stephen Stead, Matthew Stiff (eds.): Definition of the CIDOC Conceptual Reference Model (http://cidoc-crm.org/).\nThis implementation has been originally created by Bernhard Schiemann, Martin Oischinger and G\u00fcnther G\u00f6rz at the Friedrich-Alexander-University of Erlangen-Nuremberg, Department of Computer Science, Chair of Computer Science 8 (Artificial Intelligence) in cooperation with the Department of Museum Informatics of the Germanisches Nationalmuseum Nuremberg and the Department of Biodiversity Informatics of the Zoologisches Forschungsmuseum Alexander Koenig Bonn.\nThe Erlangen CRM / OWL implementation of the CIDOC Conceptual Reference Model is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.edac": {"id": "lov.edac", "homepage": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-edac.owl", "uri_format": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-edac.owl#$1", "prefix": "edac", "name": "ELSEWeb EDAC Ontology", "description": "The ELSEWeb EDAC ontology describes datasets published by EDAC. This project provides foundational support for the ELSEWeb project(http://elseweb.cybershare.utep.edu/).\nwebsite: http://elseweb.cybershare.utep.edu/ontologies\nemail: nvillanuevarosales@utep.edu", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.edm": {"id": "lov.edm", "homepage": "http://www.europeana.eu/schemas/edm/", "uri_format": "http://www.europeana.eu/schemas/edm/$1", "prefix": "edm", "name": "Europeana Data Model vocabulary", "description": "The Europeana Data Model (EDM) is aimed at being an integration medium for collecting, connecting and enriching the descriptions provided by Europeana data providers.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.edu": {"id": "lov.edu", "homepage": "https://schema.edu.ee/", "uri_format": "https://schema.edu.ee/$1", "prefix": "edu", "name": "Education Ontology", "description": "Ontoloogia kirjeldab hariduse valdkonna peamised m?isted ja seosed nende vahel. Praeguses versioonis on r?hk pandud ?ppematerjali, ?piv?ljundite ja ?ppekavaga seotud detailidele.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.edupro": {"id": "lov.edupro", "homepage": "http://ns.inria.fr/semed/eduprogression/", "uri_format": "http://ns.inria.fr/semed/eduprogression#$1", "prefix": "edupro", "name": "EduProgression Ontology", "description": "The EduProgression ontology formalizes the educational progressions of the French educational system, making possible to represent the existing progressions in a standard formal model, searchable and understandable by machines (OWL).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.eem": {"id": "lov.eem", "homepage": "http://purl.org/eem", "uri_format": "http://purl.org/eem#$1", "prefix": "eem", "name": "The EPCIS Event Model", "description": "This vocabulary is based on the EPC Information Services Specification http://www.gs1.org/sites/default/files/docs/epc/epcis_1_0_1-standard-20070921.pdf", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.eeo": {"id": "lov.eeo", "homepage": "https://w3id.org/eeo", "uri_format": "https://w3id.org/eeo#$1", "prefix": "eeo", "name": "Experimental Evaluation Ontology", "description": "An ontology to describe experiments, evaluations and their relation.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ei2a": {"id": "lov.ei2a", "homepage": "https://opendata.aragon.es/def/ei2a/ei2a.owl", "uri_format": "http://opendata.aragon.es/def/ei2a#$1", "prefix": "ei2a", "name": "Aragon Interoperable Information Structure Ontology\nEI2A", "description": "The initiative Arag\u00f3n Open Data was initiated by agreement of 17 of July of 2012 of the Government of Aragon. Under the same was ordered the start of the project to open public data and on February 6, 2013 was implemented through the Portal opendata.aragon.es .\n\nThroughout this time there have been numerous works to achieve automation in the publication of information to ensure that third parties can reuse it in the best way. Given the volume of data that begins to exist, within the line of work of automation in information management, all those elements that help in the improvement of the structuring of information and the standardization of the data contained in the databases are beginning to have a special relevance.\n\nBased on this, within the General Directorate of Electronic Administration and Information Society, the idea arises of generating a set of technical and legal rules that allow to deepen in that standardization and that lead to think in the creation of the Interoperable Information Scheme Of Aragon (E2IA). The E2IA thus emerges as the framework in which the open data and in general the information of the Government of Aragon can begin to be automated in a much more profound way. The E2IA has to have a number of technical, organizational and legal elements that need to be developed.\n\nFor this reason, the Technological Institute of Aragon (ITAINNOVA) has been entrusted with carrying out actions consisting in identifying, studying and analyzing current research trends and technological development in relation to ontologies and dictionaries of data interoperability, defining the ontological proposal, performing The necessary tests to validate the ontological proposal and generate the text and web versions of the ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences"]}, "lov.elec": {"id": "lov.elec", "homepage": "http://purl.org/ctic/sector-publico/elecciones", "uri_format": "http://purl.org/ctic/sector-publico/elecciones#$1", "prefix": "elec", "name": "Vocabulario de Resultados Electorales", "description": "El objetivo de este vocabulario es la creaci\u00f3n de un esquema que permita definir los contenidos de informaci\u00f3n relacionada con procesos electorales y sus resultados. \t\t\tSe identifican ciertas variables en el dominio de las elecciones, que se modelan a trav\u00e9s de ciertos tipos de datos y de propiedades relacionadas entre los recursos.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences"]}, "lov.eli": {"id": "lov.eli", "homepage": "http://data.europa.eu/eli/ontology", "uri_format": "http://data.europa.eu/eli/ontology#$1", "prefix": "eli", "name": "The European Legislation Identifier", "description": "Transposition of the ELI metadata fields into an OWL ontology", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities", "law"]}, "lov.emotion": {"id": "lov.emotion", "homepage": "http://ns.inria.fr/emoca", "uri_format": "http://ns.inria.fr/emoca#$1", "prefix": "emotion", "name": "Emotion Ontology for Context Awareness", "description": "EmOCA is used to contextualize dimensionnal emotion and to categorize it for human readability.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.emp": {"id": "lov.emp", "homepage": "http://purl.org/ctic/empleo/oferta", "uri_format": "http://purl.org/ctic/empleo/oferta#$1", "prefix": "emp", "name": "Vocabulario de Ofertas de Empleo", "description": "El objetivo de este vocabulario es la creaci\u00f3n de un esquema que permita definir los contenidos de la informaci\u00f3n relacionada con la oferta de empleo p\u00fablico. \t\t\tSe identifican ciertas variables en el dominio de la oferta de empleo p\u00fablico, que se modelan a trav\u00e9s de ciertos tipos de datos y de propiedades relacionadas entre los recursos.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ends": {"id": "lov.ends", "homepage": "http://labs.mondeca.com/vocab/endpointStatus", "uri_format": "http://labs.mondeca.com/vocab/endpointStatus#$1", "prefix": "ends", "name": "Vocabulary of endpoint status (availability, responseTime)", "description": "Endpoint Status vocabulary intends to describe endpoint availability", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.ep": {"id": "lov.ep", "homepage": "http://eprints.org/ontology/", "uri_format": "http://eprints.org/ontology/$1", "prefix": "ep", "name": "EPrints Ontology", "description": "Describes the main classes and properties which EPrints adds to voID, DC, BIBO and SKOS etc", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.eppl": {"id": "lov.eppl", "homepage": "https://w3id.org/ep-plan", "uri_format": "https://w3id.org/ep-plan#$1", "prefix": "eppl", "name": "The EP-Plan ontology", "description": "PROV extension for linking Plans and parts of plans to their respective executions.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.eqp": {"id": "lov.eqp", "homepage": "https://data.nasa.gov/ontologies/atmonto/equipment#", "uri_format": "https://data.nasa.gov/ontologies/atmonto/equipment#$1", "prefix": "eqp", "name": "Aircraft Equipment Vocabulary", "description": "Defines aircraft models, aircraft systems / subsystems, and aircraft characteristics", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.era": {"id": "lov.era", "homepage": "http://data.europa.eu/949/", "uri_format": "http://data.europa.eu/949/$1", "prefix": "era", "name": "ERA vocabulary", "description": "This is the human and machine readable Vocabulary/Ontology governed by the European Union Agency for Railways. It represents the concepts and relationships linked to the sectorial legal framework and the use cases under the Agency\u00b4s remit. Currently, this vocabulary covers the European railway infrastructure and the vehicles authorized to operate over it. It is a semantic/browsable representation of the [RINF](https://www.era.europa.eu/sites/default/files/registers/docs/rinf_application_guide_for_register_en.pdf) and [ERATV](https://www.era.europa.eu/sites/default/files/registers/docs/iu-eratv_application_guide_for_register_2016-797_en.pdf) application guides that were built by domain experts in the RINF and ERATV working parties.\nSince version 2.6.0, the ontology includes the routebook concepts described in appendix D2 \\\"Elements the infrastructure manager has to provide to the railway undertaking for the Route Book\\\" (https://eur-lex.europa.eu/eli/reg_impl/2019/773/oj) and the appendix D3 \\\"ERTMS trackside engineering information relevant to operation that the infrastructure manager shall provide to the railway undertaking\\\".", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.esco": {"id": "lov.esco", "homepage": "http://data.europa.eu/esco/model", "uri_format": "http://data.europa.eu/esco/model#$1", "prefix": "esco", "name": "The ESCO ontology", "description": "The ontology of the taxonomy \"European Skills, Competences, qualifications and Occupations\".\n\nThe ontology considers three ESCO pillars (or taxonomy) and 2 registers.\nThe three pillars are:\n- Occupation\n- Skill (and competences)\n- Qualification\n\nFor the construction and use of the ESCO pillars, the following modelling artefacts are used:\n- Facetting support to specialize ESCO pillar concepts based on bussiness relevant Concept Groups (e.g. species, languages, ...)\n- Conept Groups, Thesaurus array and Compound terms (as detailed in ISO 25964) to organize faceted concepts\n- SKOS mapping properties to relate ESCO pillar concepts to concepts in other (external) taxonomies (e.g. FoET, ISCO88 and ISCO08. More mappings can be added in the future.)\n- Tagging ESCO pillar concepts by other (external) taxonomies (NUTS, EQF, NACE, ...)\n- Capture gender specifics on the labels of the ESCO pillar concepts\n- Rich ESCO concept relationships holding a description and other specific characteristics of the relation between two ESCO pillar concepts.\n\nESCO maintains two additional registers:\n- Awarding Body\n- Work Context\nAwarding Bodies typically are referenced by ESCO qualifications.\nOccupations can have one or more work context.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.essglobal": {"id": "lov.essglobal", "homepage": "http://purl.org/essglobal/vocab/", "uri_format": "http://purl.org/essglobal/vocab/$1", "prefix": "essglobal", "name": "ESSGlobal Vocabulary", "description": "Un vocabulario para la Economia Social y Solid\u00e1ria (ESS). Este vocabulario es concebido para ser conjugado con los esquemas de metadados/vocabularios/ontologias: dcterms, good relations, foaf, vcard, organization e schema.org - esto esta definido em el Perfil de Aplicaci\u00f3n Dublin Core de la ESS. Vocabulario desarollado por el grupo ESSGlobal de la Red Intercontinental para la promoci\u00f3n de Economia Social y Solidaria (RIPESS).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.eupont": {"id": "lov.eupont", "homepage": "http://elite.polito.it/ontologies/eupont.owl", "uri_format": "http://elite.polito.it/ontologies/eupont.owl#$1", "prefix": "eupont", "name": "EUPont: an ontology for End User Programming of the IoT", "description": "EUPont is an ontology to model high level rules for Internet of Things End User Programming (IoT-EUP).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.event": {"id": "lov.event", "homepage": "http://purl.org/NET/c4dm/event.owl", "uri_format": "http://purl.org/NET/c4dm/event.owl#$1", "prefix": "event", "name": "The Event Ontology", "description": "This ontology deals with the notion of reified events - events seen as first-class objects.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ex": {"id": "lov.ex", "homepage": "http://purl.org/net/ns/ex", "uri_format": "http://purl.org/net/ns/ex#$1", "prefix": "ex", "name": "Example vocabulary", "description": "\u30b9\u30ad\u30fc\u30de\u306b\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3092\u57cb\u3081\u8fbc\u3080\u305f\u3081\u306e\u8a9e\u5f59\u3002XSLT\u3092\u4f7f\u3063\u3066\u3001XHTML\u306e\u4e2d\u3067\u4f8b\u3092\u8868\u793a\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3002", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.exif": {"id": "lov.exif", "homepage": "http://www.w3.org/2003/12/exif/ns", "uri_format": "http://www.w3.org/2003/12/exif/ns#$1", "prefix": "exif", "name": "Exif data description vocabulary", "description": "Vocabulary to describe an Exif format picture data. All Exif 2.2 tags are defined as RDF properties, as well as several terms to help this schema.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ext": {"id": "lov.ext", "homepage": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/extent", "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/extent#$1", "prefix": "ext", "name": "OWL representation of ISO 19115 (Geographic Information - Metadata - Extent package)", "description": "An OWL representation of parts of the Geographic Metadata model described in ISO 19115:2003 with Corrigendum 2006 - EX Package", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["mathematics"]}, "lov.fabio": {"id": "lov.fabio", "homepage": "http://purl.org/spar/fabio", "uri_format": "http://purl.org/spar/fabio/$1", "prefix": "fabio", "name": "FRBR-aligned Bibliographic Ontology", "description": "FaBiO, the FRBR-aligned Bibliographic Ontology, is an ontology for recording and publishing on the Semantic Web bibliographic records of scholarly endeavours. It forms part of SPAR, a suite of Semantic Publishing and Referencing Ontologies.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.faldo": {"id": "lov.faldo", "homepage": "http://biohackathon.org/resource/faldo", "uri_format": "http://biohackathon.org/resource/faldo#$1", "prefix": "faldo", "name": "Feature Annotation Location Description Ontology", "description": "Used to describe a location that consists of a number of Regions but where the order is not known. e.g. the oddly named order() keyword in a INSDC file.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.fea": {"id": "lov.fea", "homepage": "http://vocab.data.gov/def/fea", "uri_format": "http://vocab.data.gov/def/fea#$1", "prefix": "fea", "name": "Federal Enterprise Architecture Vocabulary", "description": "To facilitate efforts to transform the Federal Government to one that is citizen-centered, results-oriented, and market-based, the Office of Management and Budget (OMB) is developing the Federal Enterprise Architecture (FEA), a business-based framework for Governmentwide improvement.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences"]}, "lov.fel": {"id": "lov.fel", "homepage": "http://w3id.org/vcb/fel#", "uri_format": "http://w3id.org/vcb/fel#$1", "prefix": "fel", "name": "A Fine-grained Entity Linking vocabulary", "description": "This RDF vocabulary can be use to describe and categorize annotations involving entity mentions (sub-strings of text) that link to knowledgebase identifiers", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.fiesta-iot": {"id": "lov.fiesta-iot", "homepage": "http://purl.org/iot/ontology/fiesta-iot", "uri_format": "http://purl.org/iot/ontology/fiesta-iot#$1", "prefix": "fiesta-iot", "name": "FIESTA-IoT Ontology", "description": "The FIESTA-IoT ontology takes inspiration from the well-known Noy et al. methodology for reusing and interconnecting existing ontologies. To build the ontology, we leverage a number of core concepts from various mainstream ontologies and taxonomies, such as Semantic Sensor Network (SSN), M3-lite (a lite version of M3 ontology), WGS84, IoT-lite, Time, and DUL ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.fiesta-priv": {"id": "lov.fiesta-priv", "homepage": "http://purl.org/iot/ontology/fiesta-priv#", "uri_format": "http://purl.org/iot/ontology/fiesta-iot#$1", "prefix": "fiesta-priv", "name": "FIESTA-Priv Ontology", "description": "FIESTA-Priv Ontology", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.foaf": {"id": "lov.foaf", "homepage": "http://xmlns.com/foaf/0.1/", "uri_format": "http://xmlns.com/foaf/0.1/$1", "prefix": "foaf", "name": "Friend of a Friend vocabulary", "description": "FOAF is a project devoted to linking people and information using the Web. Regardless of whether information is in people's heads, in physical or digital documents, or in the form of factual data, it can be linked.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.fog": {"id": "lov.fog", "homepage": "https://w3id.org/fog", "uri_format": "https://w3id.org/fog#$1", "prefix": "fog", "name": "FOG: File Ontology for Geometry formats", "description": "The File Ontology for Geometry formats (FOG) describes meaningful relations towards geometry snippets in RDF literals, geometry files on relative or absolute URLs and ontology-based geometry descriptions. The defined properties in this ontology are related towards each other and additional metadata is provided, such as file extension and related specifications/sources (incl. entries in dbpedia and Wikidata). \n\nThe initial version of the ontology (v0.0.1) was documented in:\n\nBonduel, Mathias, Wagner, Anna, Pauwels, Pieter, Vergauwen, Maarten, & Klein, Ralf (2019). Including Widespread Geometry Formats in Semantic Graphs Using RDF Literals. In Proceedings of the European Conference on Computing in Construction (EC3 2019). Chania, Greece.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["mathematics"]}, "lov.foio": {"id": "lov.foio", "homepage": "https://w3id.org/seas/FeatureOfInterestOntology", "uri_format": "https://w3id.org/seas/FeatureOfInterestOntology/$1", "prefix": "foio", "name": "The SEAS Feature of Interest ontology.", "description": "This ontology defines feature of interest and their properties, as an extension of the core classes of the SSN ontology (https://www.w3.org/ns/ssn/).\n\nA feature of interest is an abstraction of a real world phenomena (thing, person, event, etc). A feature of interest is then defined in terms of its properties, which are qualifiable, quantifiable, observable or operable qualities of the feature of interest. \n\nAlignments to other ontologies are proposed in external documents: \n\n- [SSNAlignment](https://w3id.org/seas/SSNAlignment) proposes an alignment to the [SSN ontology](http://www.w3.org/ns/ssn/).\n- [QUDTAlignment](https://w3id.org/seas/QUDTAlignment) proposes an alignment to the [QUDT ontology](http://qudt.org/).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.food": {"id": "lov.food", "homepage": "http://data.lirmm.fr/ontologies/food", "uri_format": "http://data.lirmm.fr/ontologies/food#$1", "prefix": "food", "name": "Food Ontology", "description": "This ontology models the Food domain. It allows to describe ingredients and food products. Ontology used by the Open Food Facts dataset", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["agriculture, forestry, and fisheries"]}, "lov.fowl": {"id": "lov.fowl", "homepage": "http://www.w3.org/TR/2003/PR-owl-guide-20031215/food", "uri_format": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/food#$1", "prefix": "fowl", "name": "Food Ontology in OWL", "description": "Along with Wine Ontology, was used as example in the first OWL Recommendation (February 2004)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["agriculture, forestry, and fisheries"]}, "lov.frad": {"id": "lov.frad", "homepage": "http://iflastandards.info/ns/fr/frad/", "uri_format": "http://iflastandards.info/ns/fr/frad/$1", "prefix": "frad", "name": "FRAD model", "description": "This is the element set of native RDF classes and properties described in the Functional Requirements for Authority Data model. The model also uses elements previously described in the Functional Requirements for Bibliographic Records (FRBR) entity-relationship model.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.frapo": {"id": "lov.frapo", "homepage": "http://purl.org/cerif/frapo/", "uri_format": "http://purl.org/cerif/frapo/$1", "prefix": "frapo", "name": "Funding, Research Administration and Projects Ontology", "description": "FRAPO, the Funding, Research Administration and Projects Ontology, is a CERIF-compliant ontology written in OWL 2 DL for describing research project administrative information.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.frappe": {"id": "lov.frappe", "homepage": "http://streamreasoning.org/ontologies/frappe#", "uri_format": "http://streamreasoning.org/ontologies/frappe#$1", "prefix": "frappe", "name": "FraPPE: Frame, Pixel, Place, Event vocabulary", "description": "FraPPE is a vocabulary to enable Visual Analytics operations on geo-spatial time varying data. By enabling Visual Analytics instruments FraPPE ease the capture, correlation and comparison operations on geo-spatial data from different sources evolving over time", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.frbr": {"id": "lov.frbr", "homepage": "http://purl.org/vocab/frbr/core", "uri_format": "http://purl.org/vocab/frbr/core#$1", "prefix": "frbr", "name": "Expression of Core FRBR Concepts in RDF", "description": "An expression in RDF of the concepts and relations described in the IFLA report on the Functional Requirements for Bibliographic Records (FRBR)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.frbre": {"id": "lov.frbre", "homepage": "http://purl.org/vocab/frbr/extended", "uri_format": "http://purl.org/vocab/frbr/extended#$1", "prefix": "frbre", "name": "Extended FRBR", "description": "Expression of Extended FRBR Concepts in RDF", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.frbrer": {"id": "lov.frbrer", "homepage": "http://iflastandards.info/ns/fr/frbr/frbrer/", "uri_format": "http://iflastandards.info/ns/fr/frbr/frbrer/$1", "prefix": "frbrer", "name": "FRBRer model", "description": "This is the element set of native RDF classes and properties described in the current text (Feb 2009) of the Functional Requirements for Bibliographic Records (FRBR) entity-relationship model.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.fresnel": {"id": "lov.fresnel", "homepage": "http://www.w3.org/2004/09/fresnel", "uri_format": "http://www.w3.org/2004/09/fresnel#$1", "prefix": "fresnel", "name": "Fresnel Lens and Format Core Vocabulary", "description": "OWL Full vocabulary for defining lenses and formats on RDF models.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.g50k": {"id": "lov.g50k", "homepage": "http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/", "uri_format": "http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/$1", "prefix": "g50k", "name": "50K Gazetteer Vocabulary", "description": "A vocabulary developed to describe the Ordance Survey 50k Gazetteer linked data", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.game": {"id": "lov.game", "homepage": "http://data.totl.net/game/", "uri_format": "http://data.totl.net/game/$1", "prefix": "game", "name": "TotL Game Ontology", "description": "This schema describes games with a known state, and few or no random elements.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.gc": {"id": "lov.gc", "homepage": "http://www.oegov.org/core/owl/gc", "uri_format": "http://www.oegov.org/core/owl/gc#$1", "prefix": "gc", "name": "oeGOV Government Core Ontology", "description": "The Government Core Ontology establishes a foundation for all oegov ontologies.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences"]}, "lov.gci": {"id": "lov.gci", "homepage": "http://ontology.eil.utoronto.ca/GCI/Foundation/GCI-Foundation.owl", "uri_format": "http://ontology.eil.utoronto.ca/GCI/Foundation/GCI-Foundation.owl#$1", "prefix": "gci", "name": "Global City Indicator Foundation Ontology", "description": "Global City Indicator Foundation Ontology developed by the Information Engineering Group, Mechanical & Industrial Engineering, University of Toronto. Contains the foundation ontologies required to represent ISO 37120 city indicators, including Placenames, Time, Measurement, Provenance, Statistics, Validity and Trust. See: Fox, M.S., (2013), \"A Foundation Ontology for Global City Indicators\", Global City Institute Working Paper, Vol. 1, No.4, pp. 1-45. Global Cities Institute, University of Toronto. Updated 24 June 2014: http://www.eil. Based on the Global City Indicators Facility, University of Toronto: http://www.cityindicators.org/Deliverables/Core%20and%20Supporting%20Indicators%20Table%20SEPTEMBER%202011.pdf.\n\nContact: Mark S. Fox, msf@eil.utoronto.ca", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.gcon": {"id": "lov.gcon", "homepage": "https://w3id.org/GConsent", "uri_format": "https://w3id.org/GConsent#$1", "prefix": "gcon", "name": "GConsent - a consent ontology based on the GDPR", "description": "GConsent provides concepts and relationships for defining consent and its associated information or metadata with a view towards GDPR compliance. It is the outcome of an analysis of consent and requirements associated with obtaining, using, and changes in consent as per the GDPR. The ontology also provides an approach to using its terms in various scenarios and use-cases (see more information in the documentation) which is intended to assist in its adoption.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.gd": {"id": "lov.gd", "homepage": "http://vocab.data.gov/gd", "uri_format": "http://reference.data.gov/def/govdata/$1", "prefix": "gd", "name": "Government Data Vocabulary", "description": "A RDF Schema that defines concepts and relationships common to all Open Government Data", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences"]}, "lov.gdprov": {"id": "lov.gdprov", "homepage": "https://w3id.org/GDPRov", "uri_format": "https://w3id.org/GDPRov#$1", "prefix": "gdprov", "name": "The GDPR Provenance ontology", "description": "GDPRov is an OWL2 ontology to express provenance metadata of consent and data lifecycles towards documenting compliance for GDPR.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.gdprt": {"id": "lov.gdprt", "homepage": "https://w3id.org/GDPRtEXT", "uri_format": "https://w3id.org/GDPRtEXT#$1", "prefix": "gdprt", "name": "GDPR text EXTensions", "description": "The General Data Protection Regulation (GDPR) is comprised of several articles, each with points that refer to specific concepts. The general convention of referring to these points and concepts is to quote the specific article or point using a human-readable reference. This ontology provides a way to refer to the points within the GDPR using the EurLex ontology published by the European Publication Office. It also defines the concepts defined, mentioned, and requried by the GDPR using the Simple Knowledge Organization System (SKOS) ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.gen": {"id": "lov.gen", "homepage": "http://purl.org/gen/0.1#", "uri_format": "http://purl.org/gen/0.1#$1", "prefix": "gen", "name": "Vocabulary for Linked Genealogical Data", "description": "A simple RDF vocabulary containing terms to facilitate the linking of genealogical data.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.geo": {"id": "lov.geo", "homepage": "http://www.w3.org/2003/01/geo/wgs84_pos", "uri_format": "http://www.w3.org/2003/01/geo/wgs84_pos#$1", "prefix": "geo", "name": "WGS84 Geo Positioning", "description": "A vocabulary for representing latitude, longitude and altitude information in the WGS84 geodetic reference datum.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.geod": {"id": "lov.geod", "homepage": "http://vocab.lenka.no/geo-deling", "uri_format": "http://vocab.lenka.no/geo-deling#$1", "prefix": "geod", "name": "Landinndelingen i Norge", "description": "Vocabulary describing the administrative subdivision of Norway", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.geof": {"id": "lov.geof", "homepage": "http://www.mindswap.org/2003/owl/geo/geoFeatures20040307.owl", "uri_format": "http://www.mindswap.org/2003/owl/geo/geoFeatures20040307.owl#$1", "prefix": "geof", "name": "Geo Features", "description": "This ontology contains geographic feature classes and associated properties including classes and properties for describing the spatial location of the geographic feature. The classes and properties have been defined based on an ESRI dataset.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.geofla": {"id": "lov.geofla", "homepage": "http://data.ign.fr/def/geofla", "uri_format": "http://data.ign.fr/def/geofla#$1", "prefix": "geofla", "name": "Ontologie des unit\u00e9s administratives de l'IGN", "description": "Ontologie d\u00e9crivant le d\u00e9coupage administratif de la France m\u00e9tropolitaine, des d\u00e9partements d'outre mer, ou de la collectivit\u00e9 d\u00e9partementale de Mayotte, repr\u00e9sent\u00e9e comme une hi\u00e9rarchie de classes OWL", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.geom": {"id": "lov.geom", "homepage": "http://data.ign.fr/def/geometrie", "uri_format": "http://data.ign.fr/def/geometrie#$1", "prefix": "geom", "name": "Ontologie des primitives g\u00e9om\u00e9triques", "description": "Ontologie des primitives g\u00e9om\u00e9triques repr\u00e9sentant la forme et la localisation d'entit\u00e9s topographiques.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["mathematics"]}, "lov.geop": {"id": "lov.geop", "homepage": "http://aims.fao.org/aos/geopolitical.owl", "uri_format": "http://aims.fao.org/aos/geopolitical.owl#$1", "prefix": "geop", "name": "FAO Geopolitical Ontology", "description": "FAO's geopolitical ontology version 1.1 was populated with FAO, UN and internationally recognized data sources.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.geosp": {"id": "lov.geosp", "homepage": "http://rdf.geospecies.org/ont/geospecies", "uri_format": "http://rdf.geospecies.org/ont/geospecies#$1", "prefix": "geosp", "name": "GeoSpecies Ontology", "description": "The GeoSpecies Ontology is used to describe geographical distribution of living species.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.gf": {"id": "lov.gf", "homepage": "http://def.seegrid.csiro.au/isotc211/iso19109/2005/feature", "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19109/2005/feature#$1", "prefix": "gf", "name": "OWL representation of ISO 19109 (General Feature Model)", "description": "An OWL representation of part of the General Feature Model described in ISO 19109 and the General Feature Instance model described in Annex C of ISO 19156:2011.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.gleif-l1": {"id": "lov.gleif-l1", "homepage": "https://www.gleif.org/ontology/L1/", "uri_format": "https://www.gleif.org/ontology/L1/$1", "prefix": "gleif-L1", "name": "Global Legal Entity Identifier Foundation Level 1 Ontology - Who Is Who", "description": "Ontology for legal entity identifier registration. It was designed for Global Legal Entity Identifier Foundation (GLEIF) Level 1 data corresponding to the Common Data Format version 2.1. It covers key reference data for a legal entity identifiable with an LEI. The ISO 17442 standard developed by the International Organization for Standardization defines a set of attributes or LEI reference data that comprises the most essential elements of identification. It specifies the minimum reference data, which must be supplied for each LEI: The official name of the legal entity as recorded in the official registers. The registered address of that legal entity. The country of formation. The codes for the representation of names of countries and their subdivisions. The date of the first LEI assignment; the date of last update of the LEI information; and the date of expiry, if applicable.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.gleif-l2": {"id": "lov.gleif-l2", "homepage": "https://www.gleif.org/ontology/L2/", "uri_format": "https://www.gleif.org/ontology/L2/$1", "prefix": "gleif-L2", "name": "Global Legal Entity Identifier Foundation Level 2 Ontology - Who Owns Whom", "description": "Ontology for legal entity parent relationships. It was designed for Global Legal Entity Identifier Foundation (GLEIF) Level 2 data corresponding to the Relationship Record format, version 1.1. Legal entities that have or acquire an LEI report their \u2018direct accounting consolidating parent\u2019 as well as their \u2018ultimate accounting consolidating parent\u2019, or for International Branches \u2018is an International Branch of'. Otherwise they must provide a Reporting Exception.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.gleif-base": {"id": "lov.gleif-base", "homepage": "https://www.gleif.org/ontology/Base/", "uri_format": "https://www.gleif.org/ontology/Base/$1", "prefix": "gleif-base", "name": "Global Legal Entity Identifier Foundation Base Ontology", "description": "Ontology defining generic concepts for reuse by other Global Legal Entity Identifier Foundation (GLEIF) ontologies. It defines generic classes for (legal) Entities and their relationships and statuses; and generic properties for different types of name and address. It makes use of the OMG Languages Countries and Codes (LCC) ontology (based on the ISO 3166 standard) for country and region information.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.gleif-elf": {"id": "lov.gleif-elf", "homepage": "https://www.gleif.org/ontology/EntityLegalForm/", "uri_format": "https://www.gleif.org/ontology/EntityLegalForm/$1", "prefix": "gleif-elf", "name": "Entity Legal Form Ontology", "description": "Ontology defining concepts for Entity Legal Forms and their abbreviations by jurisdiction, based on ISO 20275. Though used by Global Legal Entity Identifier Foundation (GLEIF) for Legal Entity Identifier registration, it is more broadly applicable.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["law"]}, "lov.gleif-geo": {"id": "lov.gleif-geo", "homepage": "https://www.gleif.org/ontology/Geocoding/", "uri_format": "https://www.gleif.org/ontology/Geocoding/$1", "prefix": "gleif-geo", "name": "Global Legal Entity Identifier Foundation Geocoding Ontology", "description": "Ontology defining concepts for Geocoding of addresses. It is based on the geocoding used in the Global Legal Entity Identifier Foundation (GLEIF) Golden Copy Data, but is more broadly applicable.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.gleif-ra": {"id": "lov.gleif-ra", "homepage": "https://www.gleif.org/ontology/RegistrationAuthority/", "uri_format": "https://www.gleif.org/ontology/RegistrationAuthority/$1", "prefix": "gleif-ra", "name": "Global Legal Entity Identifier Foundation Registration Authority Ontology", "description": "Ontology defining concepts for Business Registries, including the jurisdictions served. This is based on the Registration Authority Code List (RAL) used for Global Legal Entity Identifier Foundation (GLEIF) registration, but is more broadly applicable.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["law"]}, "lov.gleif-repex": {"id": "lov.gleif-repex", "homepage": "https://www.gleif.org/ontology/ReportingException/", "uri_format": "https://www.gleif.org/ontology/ReportingException/$1", "prefix": "gleif-repex", "name": "Global Legal Entity Identifier Foundation Reporting Exception Ontology", "description": "Ontology for representing exceptions to reporting of parents, for entities registered with a Legal Entity Identifier. The Global Legal Identifier System (GLEIS) requires that legal entities with an LEI provide information on their ultimate and direct accounting consolidating parents. Relationship reporting is mandatory with exceptions allowed for certain well-defined reasons. This ontology provides a simple structure for recording reasons for each exception by LEI.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.gm": {"id": "lov.gm", "homepage": "http://def.seegrid.csiro.au/isotc211/iso19107/2003/geometry", "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19107/2003/geometry#$1", "prefix": "gm", "name": "OWL representation of ISO 19107 (Geographic Information)", "description": "An OWL representation of part of the model for geometry and space from ISO 19107:2003 Geographic Information - Spatial Schema", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["mathematics"]}, "lov.gml": {"id": "lov.gml", "homepage": "http://www.opengis.net/ont/gml", "uri_format": "http://www.opengis.net/ont/gml#$1", "prefix": "gml", "name": "OGC Geometry", "description": "A specialization of GeoSPARQL defining specific subtypes of Geometry", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["mathematics"]}, "lov.gn": {"id": "lov.gn", "homepage": "http://www.geonames.org/ontology", "uri_format": "http://www.geonames.org/ontology#$1", "prefix": "gn", "name": "The Geonames ontology", "description": "The Geonames ontology provides elements of description for geographical features defined in the geonames.org data base", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.gndo": {"id": "lov.gndo", "homepage": "http://d-nb.info/standards/elementset/gnd#", "uri_format": "http://d-nb.info/standards/elementset/gnd#$1", "prefix": "gndo", "name": "GND Ontology", "description": "GND stands for \"Gemeinsame Normdatei\" (Integrated Authority File) and offers a broad range of elements to describe authorities. The GND originates from the German library community and aims to solve the name ambiguity problem in the library world.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.gold": {"id": "lov.gold", "homepage": "http://purl.org/linguistics/gold", "uri_format": "http://purl.org/linguistics/gold/$1", "prefix": "gold", "name": "General Ontology for Linguistic Description", "description": "The General Ontology for Linguistic Description (GOLD) was created primarily for applications involving descriptive linguistics.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.gom": {"id": "lov.gom", "homepage": "https://w3id.org/gom", "uri_format": "https://w3id.org/gom#$1", "prefix": "gom", "name": "GOM: Geometry Metadata Ontology", "description": "- Version 0.0.1: initial version", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["mathematics"]}, "lov.gov": {"id": "lov.gov", "homepage": "http://gov.genealogy.net/ontology.owl", "uri_format": "http://gov.genealogy.net/ontology.owl#$1", "prefix": "gov", "name": "Ontology for modelling historic administrative information.", "description": "The Genealogisches Orts-Verzeichnis (GOV) contains information about current and historical political, ecclesiastical and legal administrative affiliations of settlements and administrative units. In addition several time-dependent values (such as names, population numbers, postal codes etc.) are given.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.gr": {"id": "lov.gr", "homepage": "http://purl.org/goodrelations/v1", "uri_format": "http://purl.org/goodrelations/v1#$1", "prefix": "gr", "name": "The GoodRelations Ontology for Semantic Web-based E-Commerce", "description": "The GoodRelations ontology provides the vocabulary for annotating e-commerce offerings (1) to sell, lease, repair, dispose, or maintain commodity products and (2) to provide commodity services.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.grddl": {"id": "lov.grddl", "homepage": "http://www.w3.org/2003/g/data-view", "uri_format": "http://www.w3.org/2003/g/data-view#$1", "prefix": "grddl", "name": "Gleaning Resource Descriptions from Dialects of Languages Vocabulary", "description": "Gleaning Resource Descriptions from Dialects of Languages Vocabulary", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.gso": {"id": "lov.gso", "homepage": "http://www.w3.org/2006/gen/ont", "uri_format": "http://www.w3.org/2006/gen/ont#$1", "prefix": "gso", "name": "Generic Specific Ontology", "description": "Ontology for Relating Generic and Specific Information Resources", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.gsp": {"id": "lov.gsp", "homepage": "http://www.opengis.net/ont/geosparql", "uri_format": "http://www.opengis.net/ont/geosparql#$1", "prefix": "gsp", "name": "OGC GeoSPARQL", "description": "A Geographic Query Language for RDF Data OGC 11-052r5", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["mathematics"]}, "lov.gtfs": {"id": "lov.gtfs", "homepage": "http://vocab.gtfs.org/terms#", "uri_format": "http://vocab.gtfs.org/terms#$1", "prefix": "gtfs", "name": "General Transit Feed Specification", "description": "This ontology is a translation of the General Transit Feed Specification towards URIs. Its intended use is creating an exchange platform where the Linked GTFS model can be used as a start to get the right data into the right format.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.gts": {"id": "lov.gts", "homepage": "http://resource.geosciml.org/ontology/timescale/gts", "uri_format": "http://resource.geosciml.org/ontology/timescale/gts#$1", "prefix": "gts", "name": "Geologic Timescale model", "description": "This is an RDF/OWL representation of the GeoSciML Geologic Timescale model, which has been adapted from the model described in Cox, S.J.D, & Richard, S.M. (2005) A formal model for the geologic timescale and GSSP, compatible with geospatial information transfer standards, Geosphere, Geological Society of America 1/3, 119\u2013137.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.gufo": {"id": "lov.gufo", "homepage": "http://purl.org/nemo/gufo#", "uri_format": "http://purl.org/nemo/gufo#$1", "prefix": "gufo", "name": "gUFO: A Lightweight Implementation of the Unified Foundational Ontology (UFO)", "description": "The objective of gUFO is to provide a lightweight implementation of the Unified Foundational Ontology (UFO) [1-5] suitable for Semantic Web OWL 2 DL applications. \n\nIntended users are those implementing UFO-based lightweight ontologies that reuse gUFO by specializing and instantiating its elements.\n\nThere are three implications of the use of the term lightweight. First of all, we have employed little expressive means in an effort to retain computational properties for the resulting OWL ontology. Second, we have selected a subset of UFO-A [1, 2] and UFO-B [3] to include here. In particular, there is minimalistic support for UFO-B (only that which is necessary to establish the participation of objects in events and to capture historical dependence between events). Third, a lightweight ontology, differently from a reference ontology, is designed with the purpose of providing an implementation artifact to structure a knowledge base (or knowledge graph). This has driven a number of pragmatic implementation choices which are discussed in comments annotated to the various elements of this implementation. \n\nThe 'g' in gUFO stands for gentle. At the same time, \"gufo\" is the Italian word for \"owl\".\n\n\nFor the source repository, see: ", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.gvp": {"id": "lov.gvp", "homepage": "http://vocab.getty.edu/ontology", "uri_format": "http://vocab.getty.edu/ontology#$1", "prefix": "gvp", "name": "Getty Vocabulary Program ontology", "description": "The GVP Ontology defines classes, properties and values (skos:Concepts) used in GVP LOD. It is complete regarding AAT and TGN (as of version 2.0), and will be extended in time with more elements needed for the other GVP vocabularies (ULAN, CONA).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.h2o": {"id": "lov.h2o", "homepage": "http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic", "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#$1", "prefix": "h2o", "name": "Ontology for conversion of ISO/TC 211", "description": "This ontology establishes classes corresponding to stereotypes used in ISO-conformant models, as used in the rules for conversion of the ISO TC 211 Harmonized Model from the UML to OWL representations", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ha": {"id": "lov.ha", "homepage": "http://sensormeasurement.appspot.com/ont/home/homeActivity#", "uri_format": "http://sensormeasurement.appspot.com/ont/home/homeActivity#$1", "prefix": "ha", "name": "Home Activity", "description": "An ontology to detect activity in a smart home", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.hctl": {"id": "lov.hctl", "homepage": "https://www.w3.org/2019/wot/hypermedia#", "uri_format": "https://www.w3.org/2019/wot/hypermedia#$1", "prefix": "hctl", "name": "Hypermedia Controls Ontology", "description": "Ontology designed to provide an RDF representation of Hypermedia Controls, in particular links and forms.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.hdo": {"id": "lov.hdo", "homepage": "http://www.samos.gr/ontologies/helpdeskOnto.owl", "uri_format": "http://www.samos.gr/ontologies/helpdeskOnto.owl#$1", "prefix": "hdo", "name": "HelpDesk support Ontology", "description": "Simple ontology developed for integration purposes. Describe helpdesk entities used to record support tickets for diagnosis and resolve purpuses. The ontology re-uses a) W3C ORG and REGORG ontologies, b) DUL upper ontology, and c) GoodRelations ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.hifm": {"id": "lov.hifm", "homepage": "http://purl.org/net/hifm/ontology#", "uri_format": "http://purl.org/net/hifm/ontology#$1", "prefix": "hifm", "name": "HIFM Ontology", "description": "An ontology for describing brand-name drugs.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences", "health sciences"]}, "lov.holding": {"id": "lov.holding", "homepage": "http://purl.org/ontology/holding", "uri_format": "http://purl.org/ontology/holding#$1", "prefix": "holding", "name": "Holding Ontology", "description": "A vocabulary to express (library) holdings in RDF", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.holy": {"id": "lov.holy", "homepage": "http://purl.org/holy/ns#", "uri_format": "http://purl.org/holy/ns#$1", "prefix": "holy", "name": "Hydrogen Ontology", "description": "This is the Hydrogen Ontology (HOLY). HOLY is a domain ontology for describing the complex structure of hydrogen-based markets. HOLY contributes to the systemic modeling of the hydrogen domain with a focus on its value chain. Hence, it provides a foundation for retrieval, storage, and delivery of market insights.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.hosp": {"id": "lov.hosp", "homepage": "http://vocab.data.gov/hosp", "uri_format": "http://health.data.gov/def/hospital/$1", "prefix": "hosp", "name": "Hospital Vocabulary", "description": "A RDF Schema that defines concepts and relationships used for Hospital data.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["health sciences"]}, "lov.hpont": {"id": "lov.hpont", "homepage": "https://w3id.org/hpont", "uri_format": "https://w3id.org/hpont#$1", "prefix": "hpont", "name": "The Heat Pump Ontology (HPOnt).", "description": "The Heat Pump Ontology (HPOnt) aims to formalize and represent all the relevant information of Heat Pumps.\n\nThe HPOnt has been developed as part of the REACT project which has received funding from the European Union\u2019s Horizon 2020 research and innovation programme under grant agreement no. 824395.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.hr": {"id": "lov.hr", "homepage": "http://iserve.kmi.open.ac.uk/ns/hrests", "uri_format": "http://iserve.kmi.open.ac.uk/ns/hrests#$1", "prefix": "hr", "name": "hRESTS Ontology", "description": "hRESTS is a vocabulary for describing RESTful Web services", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.hto": {"id": "lov.hto", "homepage": "http://vcharpenay.github.io/hto/hto.xml", "uri_format": "http://vcharpenay.github.io/hto/hto.xml#$1", "prefix": "hto", "name": "Haystack Tagging Ontology", "description": "The Haystack Tagging Ontology is an OWL ontology for Project Haystack, a domain vocabulary for Building Automation Systems.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.http": {"id": "lov.http", "homepage": "http://www.w3.org/2011/http", "uri_format": "http://www.w3.org/2011/http#$1", "prefix": "http", "name": "HTTP in RDF", "description": "A namespace for describing HTTP messages (http://www.w3.org/Protocols/rfc2616/rfc2616.html)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.hw": {"id": "lov.hw", "homepage": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl", "uri_format": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl$1", "prefix": "hw", "name": "Home Weather", "description": "Smart home ontology for weather phenomena and exterior conditions", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.hydra": {"id": "lov.hydra", "homepage": "http://www.w3.org/ns/hydra/core", "uri_format": "http://www.w3.org/ns/hydra/core#$1", "prefix": "hydra", "name": "The Hydra Core Vocabulary", "description": "A lightweight vocabulary for hypermedia-driven Web APIs", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.iadopt": {"id": "lov.iadopt", "homepage": "https://w3id.org/iadopt/ont", "uri_format": "https://w3id.org/iadopt/ont/$1", "prefix": "iadopt", "name": "I-ADOPT Framework ontology", "description": "The I-ADOPT Framework ontology", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences", "earth and related environmental sciences"]}, "lov.ibis": {"id": "lov.ibis", "homepage": "https://privatealpha.com/ontology/ibis/1#", "uri_format": "https://privatealpha.com/ontology/ibis/1#$1", "prefix": "ibis", "name": "IBIS Vocabulary", "description": "This document specifies a vocabulary for describing an IBIS (issue-based information system).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ic": {"id": "lov.ic", "homepage": "http://ontology.eil.utoronto.ca/icontact.owl", "uri_format": "http://ontology.eil.utoronto.ca/icontact.owl#$1", "prefix": "ic", "name": "International Contact Ontology: Addresses, phone numbers and emails.", "description": "This ontology provides basic classes and more detailed properties for representating international street addresses, phone numbers and emails. Rather than using existing ontologies, such as vcard, it was decided to create a new one as the vcard and foaf ignore the details of international addresses, phone numbers, etc.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.iddo": {"id": "lov.iddo", "homepage": "https://w3id.org/iddo", "uri_format": "https://w3id.org/iddo#$1", "prefix": "iddo", "name": "The Interconnected Data Dictionary Ontology (IDDO)", "description": "The interconnected data dictionary ontology maps the data model of the ISO 23386 for the describing, creating, and maintenance of properties in interconnected data dictionaries.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.idemo": {"id": "lov.idemo", "homepage": "http://rdf.insee.fr/def/demo", "uri_format": "http://rdf.insee.fr/def/demo#$1", "prefix": "idemo", "name": "Ontologie d\u00e9mographique de l'INSEE", "description": "Ontologie des classes et propri\u00e9t\u00e9s utilis\u00e9es pour la d\u00e9mographie, notamment le recensement de la population", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.identity": {"id": "lov.identity", "homepage": "http://www.identity.org/ontologies/identity.owl", "uri_format": "http://www.identity.org/ontologies/identity.owl#$1", "prefix": "identity", "name": "Ontology of digital identity.", "description": "v.2.0 based on P3P1.0 Specification http://www.w3.org/TR/P3P/", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ids": {"id": "lov.ids", "homepage": "https://w3id.org/idsa/core", "uri_format": "https://w3id.org/idsa/core/$1", "prefix": "ids", "name": "IDS Information Model", "description": "This ontology defines classes and properties for describing participants, infrastructure, data and services of the International Data Spaces (formerly known as Industrial Data Space).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities", "law", "computer and information sciences"]}, "lov.ifc": {"id": "lov.ifc", "homepage": "https://w3id.org/ifc/IFC4_ADD1", "uri_format": "https://w3id.org/ifc/IFC4_ADD1#$1", "prefix": "ifc", "name": "IFC4_ADD1", "description": "OWL ontology for the IFC conceptual data schema and exchange file format for Building Information Model (BIM) data", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.igeo": {"id": "lov.igeo", "homepage": "http://rdf.insee.fr/def/geo", "uri_format": "http://rdf.insee.fr/def/geo#$1", "prefix": "igeo", "name": "Ontologie g\u00e9ographique de l'INSEE", "description": "Ontologie des objets g\u00e9ographiques de l'INSEE, en particulier des territoires administratifs de la France", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.ignf": {"id": "lov.ignf", "homepage": "http://data.ign.fr/def/ignf", "uri_format": "http://data.ign.fr/def/ignf#$1", "prefix": "ignf", "name": "Ontologie des syst\u00e8mes de coordonn\u00e9es de r\u00e9f\u00e9rence", "description": "Codes for describing coordinates reference systems consistently with ISO TC/211. French translations of terms and definitions are mainly taken from the multilingual glossary of ISO/TC 211 available online: http://www.isotc211.org/Terminology.htm", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.imo": {"id": "lov.imo", "homepage": "http://imgpedia.dcc.uchile.cl/ontology", "uri_format": "http://imgpedia.dcc.uchile.cl/ontology#$1", "prefix": "imo", "name": "The IMGpedia Ontology", "description": "La Ontologia de IMGpedia provee terminos para referirse a descriptores visuales y relaciones de similitud entre imagenes", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.incident": {"id": "lov.incident", "homepage": "http://vocab.resc.info/incident", "uri_format": "http://vocab.resc.info/incident#$1", "prefix": "incident", "name": "Vocabulary to describe incident response by emergency services", "description": "Vocabulary to describe the response to a incident by emergency services.\nThis is NOT intended to describe the incident itself, it describes the response", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.infor": {"id": "lov.infor", "homepage": "http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl", "uri_format": "http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl#$1", "prefix": "infor", "name": "Information Realization", "description": "Allows designers to model information objects and their realizations. This allows to reason about physical objects and the information they realize, by keeping them distinguished.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.inno": {"id": "lov.inno", "homepage": "http://purl.org/innovation/ns", "uri_format": "http://purl.org/innovation/ns#$1", "prefix": "inno", "name": "Ontology for Innovation", "description": "One key use case for this ontology is to facilitate the matching of needs and innovations.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.interval": {"id": "lov.interval", "homepage": "http://reference.data.gov.uk/def/intervals", "uri_format": "http://reference.data.gov.uk/def/intervals/$1", "prefix": "interval", "name": "Intervals Ontology", "description": "An ontology for time intervals", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.iol": {"id": "lov.iol", "homepage": "http://www.ontologydesignpatterns.org/ont/dul/IOLite.owl", "uri_format": "http://www.ontologydesignpatterns.org/ont/dul/IOLite.owl#$1", "prefix": "iol", "name": "Information Objects ontology", "description": "An ontology of information objects, encodings and realizations, as a plugin to DOLCE-Ultralite", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.iot-lite": {"id": "lov.iot-lite", "homepage": "http://purl.oclc.org/NET/UNIS/fiware/iot-lite#", "uri_format": "http://purl.oclc.org/NET/UNIS/fiware/iot-lite#$1", "prefix": "iot-lite", "name": "Iot-lite ontology", "description": "iot-lite is a lightweight ontology based on SSN to describe Internet of Things (IoT) concepts and relationships.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.iot-tta": {"id": "lov.iot-tta", "homepage": "https://w3id.org/iot-tta", "uri_format": "https://w3id.org/iot-tta#$1", "prefix": "iot-tta", "name": "Ontology for Internet of Things Technologies, Tools, and Applications", "description": "The Internet of Things taxonomy is extended with semantic ontologies for IoT layers, containing classes, properties, individuals, and rules specific to IoT technologies, tools, and applications", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.ioto": {"id": "lov.ioto", "homepage": "http://www.irit.fr/recherches/MELODI/ontologies/IoT-O", "uri_format": "http://www.irit.fr/recherches/MELODI/ontologies/IoT-O#$1", "prefix": "ioto", "name": "IoT-O", "description": "IoT-O is a core domain Internet of Things ontology. It is intended to model horizontal knowledge about IoT systems and applications, and to be extended with vertical, application specific knowledge.\nIt is constituted of different modules : \n - A sensing module, based on W3C's SSN (http://purl.oclc.org/NET/ssnx/ssn)\n - An acting module, based on SAN (http://www.irit.fr/recherches/MELODI/ontologies/SAN)\n - A service module, based on MSM (http://iserve.kmi.open.ac.uk/ns/msm/msm-2014-09-03.rdf) and hRest (http://www.wsmo.org/ns/hrests)\n - A lifecycle module, based on a lifecycle vocabulary (http://vocab.org/lifecycle/schema-20080603.rdf) and an iot-specific extension (http://www.irit.fr/recherches/MELODI/ontologies/IoT-Lifecycle)\n - An energy module, based on powerOnt (ttp://elite.polito.it/ontologies/poweront.owl)\n\nIoT-O developping team also contributes to the oneM2M IoT interoperability standard.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.iottaxolite": {"id": "lov.iottaxolite", "homepage": "http://purl.org/iot/vocab/iot-taxonomy-lite#", "uri_format": "http://purl.org/iot/vocab/iot-taxonomy-lite#$1", "prefix": "iottaxolite", "name": "The IoTTaxonomy-lite Taxonomy", "description": "The IoT-Taxonomy-lite is adapted from M3-lite taxonomy. This taxonomy is refactored and defines many other concepts such as subclasses of Feature-of-Interest and Quality-of-Observation.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.ipo": {"id": "lov.ipo", "homepage": "http://purl.org/ipo/core", "uri_format": "http://purl.org/ipo/core#$1", "prefix": "ipo", "name": "IPO - Issue Procedure Ontology", "description": "Vocabulary for describing issues (or problems) and corresponding symptoms and solutions to a broad variety of contexts. It is intended to provide a generic, reusable core ontology that can be extended or specialized for use in domain-specific situations, aimed at supporting linked data publishing. The solutions are represented by procedures, which are possible workflows for solving corresponding issues.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.irao": {"id": "lov.irao", "homepage": "http://ontology.ethereal.cz/irao", "uri_format": "http://ontology.ethereal.cz/irao/$1", "prefix": "irao", "name": "Informatics Research Artifacts Ontology", "description": "Informatics Research Artifacts Ontology, described using W3C RDF Schema and the Web Ontology Language OWL.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities", "computer and information sciences"]}, "lov.irw": {"id": "lov.irw", "homepage": "http://www.ontologydesignpatterns.org/ont/web/irw.owl", "uri_format": "http://www.ontologydesignpatterns.org/ont/web/irw.owl#$1", "prefix": "irw", "name": "The Identity of Resources on the Web ontology", "description": "This ontology is an evolution of IRE ontology. It describes identification of resources on the Web, through the definition of relationships between resources and their representations on the Web. The requirement is to describe what can be identified by URIs and how this is handled e.g. in form of HTTP requests and reponds.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.is": {"id": "lov.is", "homepage": "http://purl.org/ontology/is/core#", "uri_format": "http://purl.org/ontology/is/core#$1", "prefix": "is", "name": "Info Service Ontology", "description": "The Information Service Ontology specification provides basic concepts and properties for describing different information services, e.g. Wikipedia, MusicBrainz, Freebase", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.isbd": {"id": "lov.isbd", "homepage": "http://iflastandards.info/ns/isbd/elements/", "uri_format": "http://iflastandards.info/ns/isbd/elements/$1", "prefix": "isbd", "name": "ISBD elements", "description": "This is a registration of classes and properties from International Standard Bibliographic Description (ISBD), consolidated edition, published by De Gruyter Saur in July 2011 (ISBN 978-3-11-026379-4).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.iso-thes": {"id": "lov.iso-thes", "homepage": "http://purl.org/iso25964/skos-thes", "uri_format": "http://purl.org/iso25964/skos-thes#$1", "prefix": "iso-thes", "name": "ISO 25964 SKOS extension", "description": "This vocabulary aims at providing interoperability between SKOS and ISO 25964 \u2010 1:2011, the new standard for thesauri", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.iso37120": {"id": "lov.iso37120", "homepage": "http://ontology.eil.utoronto.ca/ISO37120.owl", "uri_format": "http://ontology.eil.utoronto.ca/ISO37120.owl#$1", "prefix": "iso37120", "name": "ISO 37120 indicator URIs", "description": "ISO 37120 \u2013 Sustainable Development and Resilience of Communities \u2013 Indicators for City Services and Quality of Life (under TC268)\n\nhttp://ontology.eil.utoronto.ca/ISO37120.html\n\nThis OWL file defines a class for each indicator defined in the ISO 37120 standard. Names for each indicator are provided. Text definitions are provided only for Economy, Education and Energy indicators, due to copyright restrictions imposed by ISO. This file is meant to provide a single URI for each indicator.\n\nAn ontology for representing an indicator's supporting data plus meta information such as provenance, validity and trust can be found in:\nhttp://ontology.eil.utoronto.ca/GCI/Foundation/GCI-Foundation.owl\n\nDocumentation of the ontology can be found in:\nhttp://eil.utoronto.ca/smartcities/papers/GCI-Foundation-Ontology.pdf", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.isoadr": {"id": "lov.isoadr", "homepage": "http://reference.data.gov.au/def/ont/iso19160-1-address", "uri_format": "http://reference.data.gov.au/def/ont/iso19160-1-address#$1", "prefix": "isoadr", "name": "ISO19160-1:2015 Address ontology", "description": "This ontology is a version of the ISO TC211, Group for Ontology Management (GOM)'s OWL ontology interpretation of the ISO19160-1:2015 \"Addressing -- Part 1: Conceptual model\" standard (see https://www.iso.org/standard/61710.html) taken from that ontology's source code, published at https://github.com/ISO-TC211/GOM/tree/master/isotc211_GOM_harmonizedOntology/19160-1/2015.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.ispra": {"id": "lov.ispra", "homepage": "http://dati.isprambiente.it/ontology/core#", "uri_format": "http://dati.isprambiente.it/ontology/core#$1", "prefix": "ispra", "name": "Ispra Ontology", "description": "L'ontologia ISPRA nasce dall'esigenza di pubblicazione dei dataset LOD ed \u00e8 finalizzata alla descrizione dei processi e delle attivit\u00e0 dell'Istituto negli ambiti circoscritti dai primi dataset pubblicati. Al momento sono descritte in modo analitico le classi e le propriet\u00e0 che insistono sul dominio specifico della rete ondametrica nazionale, della rete mareografica, del consumo del suolo e degli interventi di dissesto idrogeologico, ma l'obiettivo \u00e8 di estenderla parallelamente alla pubblicazione di nuovi dataset.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities", "earth and related environmental sciences"]}, "lov.istex": {"id": "lov.istex", "homepage": "https://data.istex.fr/ontology/istex#", "uri_format": "https://data.istex.fr/ontology/istex#$1", "prefix": "istex", "name": "Ontologie du projet Istex pour la diffusion de la litt\u00e9rature scientifique", "description": "ISTEX est une plateforme qui a pour ambition d\u2019offrir, \u00e0 l\u2019ensemble de la communaut\u00e9 de l\u2019enseignement sup\u00e9rieur et de la recherche fran\u00e7aise qui le souhaite, un acc\u00e8s en ligne aux collections r\u00e9trospectives de la litt\u00e9rature scientifique dans toutes les disciplines. \u00c0 ce r\u00e9servoir in\u00e9gal\u00e9 en ressources multidisciplinaires s\u2019ajoute un nombre important de services \u00e0 valeur ajout\u00e9e permettant d\u2019en optimiser l\u2019exploitation gr\u00e2ce \u00e0 des outils de fouille de contenus (TDM) et de valorisation interactive.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.itm": {"id": "lov.itm", "homepage": "http://spi-fm.uca.es/spdef/models/genericTools/itm/1.0", "uri_format": "http://spi-fm.uca.es/spdef/models/genericTools/itm/1.0#$1", "prefix": "itm", "name": "Issue Tracking tool Model", "description": "A partir del estudio de las caracter\u00edsticas de las herramientas de gesti\u00f3n de tareas o issue tracking systems, se ha elaborado este vocabulario.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.itsmo": {"id": "lov.itsmo", "homepage": "http://ontology.it/itsmo/v1", "uri_format": "http://ontology.it/itsmo/v1#$1", "prefix": "itsmo", "name": "IT Service Management Ontology", "description": "IT Service Management Ontology (ITSMO) provides the vocabulary for annotating resources related to IT Service Management. ITSMO tries to be consistent with 2011 ITIL glossary.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ivoam": {"id": "lov.ivoam", "homepage": "http://www.ivoa.net/rdf/messenger", "uri_format": "http://www.ivoa.net/rdf/messenger#$1", "prefix": "ivoam", "name": "Messengers", "description": "A vocabulary of particles used for observations in astronomy.\nThis list started its existence as the controlled vocabulary for\nVODataService's vs:Waveband type; the machine-readable identifiers are in\nupper case for backwards compatibility.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.jsonsc": {"id": "lov.jsonsc", "homepage": "https://www.w3.org/2019/wot/json-schema#", "uri_format": "https://www.w3.org/2019/wot/json-schema#$1", "prefix": "jsonsc", "name": "JSON Schema in RDF", "description": "Module for data schema specifications, part of the W3C Web of Things (WoT) Thing Description model", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.jup": {"id": "lov.jup", "homepage": "http://w3id.org/charta77/jup", "uri_format": "http://w3id.org/charta77/jup/$1", "prefix": "jup", "name": "Ontology of Building Accessibility", "description": "Slovnik prisupnosti budov vznikl v ramci projektu Mapy bez barier, ktery realizuje Nadace Charty 77 - Konto Bariery. Vychazi z Metodiky kategorizace pristupnosti objektu, je vsak doplnen i o entity vyplyvajici z pozadavku projektu. Tento slovnik je i tematem diplomove prace Ontologie pristupnosti budov. Projekt je spolufinancovan z prostredku Evropske unie, Evropskeho fondu pro regionalni rozvoj.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.juso": {"id": "lov.juso", "homepage": "http://rdfs.co/juso/", "uri_format": "http://rdfs.co/juso/$1", "prefix": "juso", "name": "Juso Ontology", "description": "Juso Ontology is a Web vocabulary for describing geographical addresses and features.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "mathematics"]}, "lov.juso.kr": {"id": "lov.juso.kr", "homepage": "http://rdfs.co/juso/kr/", "uri_format": "http://rdfs.co/juso/kr/$1", "prefix": "juso.kr", "name": "South Korea Extension to Juso Ontology", "description": "South Korea Extension to Juso Ontology is a Web vocabulary that extends Juso Ontology to describe geographical addresses and features in South Korea.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "mathematics"]}, "lov.kdo": {"id": "lov.kdo", "homepage": "http://kdo.render-project.eu/kdo#", "uri_format": "http://kdo.render-project.eu/kdo#$1", "prefix": "kdo", "name": "The Knowledge Diversity Ontology", "description": "The Knowledge Diversity Ontology aims at providing a vocabulary that describes different dimensions of knowledge diversity of the Web. To support the representation of diversity information, the conceptual model of the Knowledge Diversity Ontology includes concepts and relations that were identified and modelled by focusing on real world scenarios in context of customer feedback, news, and Wikipedia opinion mining as well as content and sentiment analysis.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.kees": {"id": "lov.kees", "homepage": "http://linkeddata.center/kees/v1", "uri_format": "http://linkeddata.center/kees/v1#$1", "prefix": "kees", "name": "KEES Ontology", "description": "KEES (Knowledge Exchange Engine Schema ) ontology describes a knowledge base configuration in terms of ABox and TBox statements together with their accrual and reasoning policies. This vocabulary is designed to drive automatic data ingestion in a graph database according KEES and Linked (Open) Data principles.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.keys": {"id": "lov.keys", "homepage": "http://purl.org/NET/c4dm/keys.owl", "uri_format": "http://purl.org/NET/c4dm/keys.owl#$1", "prefix": "keys", "name": "Keys Ontology", "description": "A vocabulary for musical keys and notes", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.km4c": {"id": "lov.km4c", "homepage": "http://www.disit.org/km4city/schema", "uri_format": "http://www.disit.org/km4city/schema#$1", "prefix": "km4c", "name": "km4city, the DISIT Knowledge Model for City and Mobility", "description": "A Knowledge Model to describe a smart city, that interconnect data from infomobility service, Open Data and other source", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.label": {"id": "lov.label", "homepage": "http://purl.org/net/vocab/2004/03/label", "uri_format": "http://purl.org/net/vocab/2004/03/label#$1", "prefix": "label", "name": "label", "description": "Term definitions for singular and plural label properties", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lawd": {"id": "lov.lawd", "homepage": "http://lawd.info/ontology/", "uri_format": "http://lawd.info/ontology/$1", "prefix": "lawd", "name": "Linking Ancient World Data Ontology", "description": "The goal of LAWD is to fill in the cracks between the data used and published by projects with a focus on the ancient world and the standard Linked Data vocablary schemes, like Dublin Core, the Open Annotation Collaboration, and CIDOC-CRM.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.lc": {"id": "lov.lc", "homepage": "http://semweb.mmlab.be/ns/linkedconnections#Ontology", "uri_format": "http://semweb.mmlab.be/ns/linkedconnections#$1", "prefix": "lc", "name": "The Linked Connections ontology", "description": "This ontology provides the predicates necessary to describe a connection or hop from one transit stop to another.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lcy": {"id": "lov.lcy", "homepage": "http://purl.org/vocab/lifecycle/schema", "uri_format": "http://purl.org/vocab/lifecycle/schema#$1", "prefix": "lcy", "name": "Lifecycle Schema", "description": "The Lifecycle Schema provides classes and properties that allow the specification of a lifecycle that any resource may pass through.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ldp": {"id": "lov.ldp", "homepage": "http://www.w3.org/ns/ldp#", "uri_format": "http://www.w3.org/ns/ldp#$1", "prefix": "ldp", "name": "Linked Data Platform", "description": "A set of best practices and simple approach for a read-write Linked Data architecture, based on HTTP access to web resources that describe their state using the RDF data model.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.ldr": {"id": "lov.ldr", "homepage": "http://purl.oclc.org/NET/ldr/ns#", "uri_format": "http://purl.oclc.org/NET/ldr/ns#$1", "prefix": "ldr", "name": "Linked Data Rights (LDR)", "description": "The Linked Data Rights ontology provides the vocabulary for creating rights expressions for Linked Data resources.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["law"]}, "lov.ldvm": {"id": "lov.ldvm", "homepage": "http://linked.opendata.cz/ontology/ldvm/", "uri_format": "http://linked.opendata.cz/ontology/ldvm/$1", "prefix": "ldvm", "name": "Vocabulary for Linked Data Visualization Model", "description": "Vocabulary for Linked Data Visualization Model (LDVM) serves for description and configuration of components and pipelines according to LDVM", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lemon": {"id": "lov.lemon", "homepage": "http://lemon-model.net/lemon", "uri_format": "http://lemon-model.net/lemon#$1", "prefix": "lemon", "name": "LExicon Model for ONtologies", "description": "Lemon: The lexicon model for ontologies is designed to allow for descriptions of lexical information regarding ontological elements and other RDF resources. Lemon covers mapping of lexical decomposition, phrase structure, syntax, variation, morphology, and lexicon-ontology mapping.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lexdcp": {"id": "lov.lexdcp", "homepage": "http://www.w3.org/ns/lemon/decomp", "uri_format": "http://www.w3.org/ns/lemon/decomp#$1", "prefix": "lexdcp", "name": "Lexicon Model for Ontologies - Decomp", "description": "A model for the representation of lexical information relative to ontologies. Decomposition module.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lexinfo": {"id": "lov.lexinfo", "homepage": "http://www.lexinfo.net/ontology/2.0/lexinfo", "uri_format": "http://www.lexinfo.net/ontology/2.0/lexinfo#$1", "prefix": "lexinfo", "name": "LexInfo Ontology", "description": "Version 2.0 of LexInfo Ontology, based on Lemon", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lgdo": {"id": "lov.lgdo", "homepage": "http://linkedgeodata.org/ontology", "uri_format": "http://linkedgeodata.org/ontology/$1", "prefix": "lgdo", "name": "LinkedGeoData ontology", "description": "LinkedGeoData ontology has been derived from concepts defined by Open Street Map", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.lh": {"id": "lov.lh", "homepage": "https://w3id.org/legalhtml/ov", "uri_format": "https://w3id.org/legalhtml/ov#$1", "prefix": "lh", "name": "LegalHTML Ontology", "description": "An ontology for metadata about legal texts represented using the LegalHTML format", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.li": {"id": "lov.li", "homepage": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/lineage", "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/lineage#$1", "prefix": "li", "name": "OWL representation of ISO 19115 (Geographic Information - Metadata - Lineage package)", "description": "An OWL representation of parts of the Geographic Metadata model described in ISO 19115:2003 with Corrigendum 2006 - LI Package", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lib": {"id": "lov.lib", "homepage": "http://purl.org/library/", "uri_format": "http://purl.org/library/$1", "prefix": "lib", "name": "Library extension of schema.org", "description": "Experimental \"library\" extension vocabulary for use with Schema.org", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.lifecycle": {"id": "lov.lifecycle", "homepage": "http://www.irit.fr/recherches/MELODI/ontologies/IoT-Lifecycle", "uri_format": "http://purl.org/vocab/lifecycle/schema#$1", "prefix": "lifecycle", "name": "IoT-Lifecycle", "description": "This ontology is a specialization of the lifecycle vocabulary (http://purl.org/vocab/lifecycle/schema) meant to be used in the context of IoT. It is used as a module in the IoT core domain ontology IoT-O (www.irit.fr/recherches/MELODI/ontologies/IoT-O). \n\nIoT-Lifecycle adds a specific state definition (ParametrizedState) and a specific transition (Update) that is useful to model actuators.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lime": {"id": "lov.lime", "homepage": "http://www.w3.org/ns/lemon/lime", "uri_format": "http://www.w3.org/ns/lemon/lime#$1", "prefix": "lime", "name": "Lexicon Model for Ontologies - LIngusitic MEtadata (LIME)", "description": "LIME (LInguistic MEtadata) is a vocabulary for expressing linguistic metadata about linguistic resources and linguistically grounded datasets.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.limo": {"id": "lov.limo", "homepage": "http://purl.org/limo-ontology/limo/", "uri_format": "http://purl.org/limo-ontology/limo#$1", "prefix": "limo", "name": "Linked Statistical Models Vocabulary", "description": "A Vocabulary for Incorporating Predictive Models into the Linked Data Web", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.limoo": {"id": "lov.limoo", "homepage": "http://purl.org/LiMo/0.1#", "uri_format": "http://purl.org/LiMo/0.1#$1", "prefix": "limoo", "name": "License Model Ontology", "description": "A vocabulary to describe licenses", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lingvo": {"id": "lov.lingvo", "homepage": "https://w3id.org/vocab/lingvoj", "uri_format": "https://w3id.org/vocab/lingvoj#$1", "prefix": "lingvo", "name": "The Lingvoj Ontology", "description": "An ontology for using languages as resources", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lio": {"id": "lov.lio", "homepage": "http://purl.org/net/lio", "uri_format": "http://purl.org/net/lio#$1", "prefix": "lio", "name": "Lightweight Image Ontology", "description": "A Lightweight Ontology for Describing Images", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.llont": {"id": "lov.llont", "homepage": "http://www.linklion.org/ontology", "uri_format": "http://www.linklion.org/ontology#$1", "prefix": "llont", "name": "LinkLion - the Link Discovery Portal", "description": "LinkLion - the Link Discovery Portal", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lmm1": {"id": "lov.lmm1", "homepage": "http://www.ontologydesignpatterns.org/ont/lmm/LMM_L1.owl", "uri_format": "http://www.ontologydesignpatterns.org/ont/lmm/LMM_L1.owl#$1", "prefix": "lmm1", "name": "Lexical MetaModel Level 1", "description": "This ontology is a composition of some content design patterns for the semiotic triangle. Its structure is extracted from DOLCE-Ultralite (DOLCE+c.DnS), but it uses a different terminology,", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lmm2": {"id": "lov.lmm2", "homepage": "http://www.ontologydesignpatterns.org/ont/lmm/LMM_L2.owl", "uri_format": "http://www.ontologydesignpatterns.org/ont/lmm/LMM_L2.owl#$1", "prefix": "lmm2", "name": "Lexical MetaModel Level 2", "description": "An ontology for aligning existing linguistic ontologies, and for describing the research objects of NLP.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.loc": {"id": "lov.loc", "homepage": "http://purl.org/ctic/infraestructuras/localizacion", "uri_format": "http://purl.org/ctic/infraestructuras/localizacion#$1", "prefix": "loc", "name": "Vocabulario de Localizaciones", "description": "Este vocabulario se utiliza para modelar las localizaciones f\u00edsicas de lugares p\u00fablicos. \t\t\tUtiliza elementos de Geonames para identificar las distintas caracter\u00edsticas geogr\u00e1ficas.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.locah": {"id": "lov.locah", "homepage": "http://data.archiveshub.ac.uk/def/", "uri_format": "http://data.archiveshub.ac.uk/def/$1", "prefix": "locah", "name": "The LOCAH RDF Vocabulary", "description": "This vocabulary derived from the Encoded Archival Description standard has been developed in 2010-2011 by the LOCAH project.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.locn": {"id": "lov.locn", "homepage": "http://www.w3.org/ns/locn", "uri_format": "http://www.w3.org/ns/locn#$1", "prefix": "locn", "name": "ISA Programme Location Core Vocabulary", "description": "The ISA Programme Location Core Vocabulary provides a minimum set of classes and properties for describing any place in terms of its name, address or geometry. The vocabulary is specifically designed to aid the publication of data that is interoperable with EU INSPIRE Directive.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "mathematics"]}, "lov.lode": {"id": "lov.lode", "homepage": "http://linkedevents.org/ontology/", "uri_format": "http://linkedevents.org/ontology/$1", "prefix": "lode", "name": "Linking Open Descriptions of Events", "description": "An ontology for publishing descriptions of historical events as Linked Data, and for mapping between other event-related vocabularies and ontologies.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.log": {"id": "lov.log", "homepage": "http://www.w3.org/2000/10/swap/log", "uri_format": "http://www.w3.org/2000/10/swap/log#$1", "prefix": "log", "name": "SWAP Logic Ontology", "description": "An historical ontology used by the cwm command-line tool back in the very early days of the semantic web (~ 2000- 2003 ?)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lom": {"id": "lov.lom", "homepage": "http://data.opendiscoveryspace.eu/lom_ontology_ods.owl", "uri_format": "http://data.opendiscoveryspace.eu/lom_ontology_ods.owl#$1", "prefix": "lom", "name": "Learning Object Metadata Ontology", "description": "An ontology and vocabulary used for exposing IEEE LOM, a metadata standard for educational contents, as Linked Data. \nIt is intended as a bridge for linkage of educational metadata into Linked Open Data (LOD). In this ontology, we designed a mapping of IEEE LOM elements to RDF based on Linked Data principles.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.losp": {"id": "lov.losp", "homepage": "http://sparql.sstu.ru:3030/speciality/", "uri_format": "http://sparql.sstu.ru:3030/speciality/$1", "prefix": "losp", "name": "Linked open specialities RF", "description": "Ontology Specialties describes all possible specialties (directions) in the RF, in which the UGNS they are composed, as well as information about their old codes / groups / names.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.loted": {"id": "lov.loted", "homepage": "http://loted.eu/ontology", "uri_format": "http://loted.eu/ontology#$1", "prefix": "loted", "name": "LOTED ontology", "description": "A vocabulary for European Calls for Tenders (in english, german, and french)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["law"]}, "lov.lsc": {"id": "lov.lsc", "homepage": "http://linkedscience.org/lsc/ns#", "uri_format": "http://linkedscience.org/lsc/ns#$1", "prefix": "lsc", "name": "Linked Science Core Vocabulary", "description": "LSC, the Linked Science Core Vocabulary, is a lightweight vocabulary providing terms to enable publishers and researchers to relate things in science to time, space, and themes.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lslife": {"id": "lov.lslife", "homepage": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper.owl", "uri_format": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper.owl#$1", "prefix": "lslife", "name": "ELSEWeb Lifemapper Ontology", "description": "The ELSEWeb Lifemapper ontology provides classes for describing biodiversity modelling services provided by Lifemapper. This project provides support for the ELSEWeb project(http://elseweb.cybershare.utep.edu/).\nwebsite: http://elseweb.cybershare.utep.edu/ontologies\nemail: nvillanuevarosales@utep.edu", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lsmap": {"id": "lov.lsmap", "homepage": "http://ontology.cybershare.utep.edu/ELSEWeb/mappings/elseweb-mappings.owl", "uri_format": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-data.owl#$1", "prefix": "lsmap", "name": "ELSEWeb Mappings Ontology", "description": "The ELSEWeb mappings ontology imports related upper level ontologies and vocabularies and aligns ELSEWeb ontologies to importec classes. This ontology provides support for the ELSEWeb project(http://elseweb.cybershare.utep.edu/).\nwebsite: http://elseweb.cybershare.utep.edu/ontologies\nemail: nvillanuevarosales@utep.edu", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lsq": {"id": "lov.lsq", "homepage": "http://lsq.aksw.org/vocab", "uri_format": "http://lsq.aksw.org/vocab#$1", "prefix": "lsq", "name": "The Linked SPARQL Queries Vocabulary (LSQ(V))", "description": "The Linked SPARQL Queries Vocabulary (LSQ(V)), defined using RDF(S) and OWL, provides a machine readable vocabulary to help describe queries in SPARQL logs and their statistics. The vocabulary builds upon the SPIN vocabulary and the Service Description vocabulary.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lsweb": {"id": "lov.lsweb", "homepage": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-data.owl", "uri_format": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-data.owl#$1", "prefix": "lsweb", "name": "ELSEWeb Data Ontology", "description": "The ELSEWeb Data ontology provides simple classes for describing datasets. This project provides foundational support for the ELSEWeb project(http://elseweb.cybershare.utep.edu/).\nwebsite: http://elseweb.cybershare.utep.edu/ontologies\nemail: nvillanuevarosales@utep.edu", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lswmo": {"id": "lov.lswmo", "homepage": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-modelling.owl", "uri_format": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-modelling.owl#$1", "prefix": "lswmo", "name": "ELSEWeb Modelling Ontology", "description": "The ELSEWeb Modelling ontology provides simple classes for describing data models. This project provides foundational support for the ELSEWeb project(http://elseweb.cybershare.utep.edu/).\nwebsite: http://elseweb.cybershare.utep.edu/ontologies\nemail: nvillanuevarosales@utep.edu", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lswpm": {"id": "lov.lswpm", "homepage": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper-parameters.owl", "uri_format": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper-parameters.owl#$1", "prefix": "lswpm", "name": "ELSEWeb Lifemapper Parameters Ontology", "description": "The ELSEWeb Lifemapper parameters ontology provides auxiliary classes and instances that describe input parameters of Lifemapper modelling services. This ontology provides support for the ELSEWeb project(http://elseweb.cybershare.utep.edu/).\nwebsite: http://elseweb.cybershare.utep.edu/ontologies\nemail: nvillanuevarosales@utep.edu", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ludo": {"id": "lov.ludo", "homepage": "http://ns.inria.fr/ludo", "uri_format": "http://ns.inria.fr/ludo$1", "prefix": "ludo", "name": "Ludo Ontology", "description": "Ludo is an ontology created to enable the description and representation of Serious Games that use structured data published on the Web through the Linked Data as a knowledge base. From the representation of the players\u2019 profile and their contextual information whithin the game, it is possible to generate personalized recommendations of related educational resources in order to stimulate the learning process while playing.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ludo-gm": {"id": "lov.ludo-gm", "homepage": "http://ns.inria.fr/ludo/v1/gamemodel#", "uri_format": "http://ns.inria.fr/ludo/v1/gamemodel#$1", "prefix": "ludo-gm", "name": "Ludo Game Model Ontology", "description": "Given the increasing amount of structured data published on the Web, many possibilities are open for creating new types of games that use resources from the Web of Data. In particular, if we consider the subcategory of Serious Games in which the object of the game is to educate the user through the interactive discovery of real-life concepts (associated to Semantic Web resources), the inclusion of a semantic representation of the user profile and his contextual information becomes an important element to recommend the user more accurate concepts. Ludo is an ontology that allows the creation of Serious Games with those characteristics.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ludo-gp": {"id": "lov.ludo-gp", "homepage": "http://ns.inria.fr/ludo/v1/gamepresentation#", "uri_format": "http://ns.inria.fr/ludo/v1/gamepresentation#$1", "prefix": "ludo-gp", "name": "Ludo - Game Presentation", "description": "Given the increasing amount of structured data published on the Web, many possibilities are open for creating new types of games that use resources from the Web of Data. In particular, if we consider the subcategory of Serious Games in which the object of the game is to educate the user through the interactive discovery of real-life concepts (associated to Semantic Web resources), the inclusion of a semantic representation of the user profile and his contextual information becomes an important element to recommend the user more accurate concepts. Ludo is an ontology that allows the creation of Serious Games with those characteristics.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ludo-vc": {"id": "lov.ludo-vc", "homepage": "http://ns.inria.fr/ludo/v1/virtualcontext#", "uri_format": "http://ns.inria.fr/ludo/v1/virtualcontext#$1", "prefix": "ludo-vc", "name": "Ludo - Virtual Context", "description": "Given the increasing amount of structured data published on the Web, many possibilities are open for creating new types of games that use resources from the Web of Data. In particular, if we consider the subcategory of Serious Games in which the object of the game is to educate the user through the interactive discovery of real-life concepts (associated to Semantic Web resources), the inclusion of a semantic representation of the user profile and his contextual information becomes an important element to recommend the user more accurate concepts. Ludo is an ontology that allows the creation of Serious Games with those characteristics.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ludo-xapi": {"id": "lov.ludo-xapi", "homepage": "http://ns.inria.fr/ludo/v1/xapi", "uri_format": "http://ns.inria.fr/ludo/v1/xapi#$1", "prefix": "ludo-xapi", "name": "Experience API (xAPI)", "description": "This is an OWL formalization of the statements defined in the Experience API (xAPI) specification. It is a module of the LUDO ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.lv": {"id": "lov.lv", "homepage": "http://purl.org/lobid/lv", "uri_format": "http://purl.org/lobid/lv#$1", "prefix": "lv", "name": "lobid vocab", "description": "Under this name space new properties and classes needed for the lobid.org service are defined . Already existing properties and classes which are (re)used in lobid.org aren't documented here.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.lvont": {"id": "lov.lvont", "homepage": "http://lexvo.org/ontology", "uri_format": "http://lexvo.org/ontology#$1", "prefix": "lvont", "name": "Lexvo.org Ontology", "description": "An ontology for natural language terms description, including scripts, languages and meanings. The Lexvo.org ontology is still under development and may not be able to address all needs. Please also consider using the Lingvoj Ontology and the GOLD ontology, whereever appropriate.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.lyou": {"id": "lov.lyou", "homepage": "http://purl.org/linkingyou/", "uri_format": "http://purl.org/linkingyou/$1", "prefix": "lyou", "name": "Linking-you vocabulary", "description": "Vocabulary for describing common webpages provided by an organisation", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.m3lite": {"id": "lov.m3lite", "homepage": "http://purl.org/iot/vocab/m3-lite#", "uri_format": "http://purl.org/iot/vocab/m3-lite#$1", "prefix": "m3lite", "name": "The Machine-to-Machine Measurement (M3) Lite Ontology", "description": "M3 lite taxonomy is designed for the FIESTA-IOT H2020 EU project. We refactor, clean and simplify the M3 ontology designed by Eurecom (Amelie Gyrard). M3 ontology lite is currently aligned with the quantity taxonomy used by several testbeds: SmartSantander (Spain), University of Surrey (United Kingdom), KETI (Korea) and Com4Innov (France).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.m4i": {"id": "lov.m4i", "homepage": "http://w3id.org/nfdi4ing/metadata4ing#", "uri_format": "http://w3id.org/nfdi4ing/metadata4ing#$1", "prefix": "m4i", "name": "Metadata4Ing: An ontology for describing the generation of research data within a scientific activity.", "description": "Metadata4Ing defines classes and properties or reuses such classes and properties from other ontologies to describe research processes and research data management in NFDI4Ing. \nNew concepts and properties are located in the namespace of Metadata4Ing.\nMetadata4Ing does not import complete ontologies for the sake of relevance, readability, understandability and usability by and for engineers.\nInstead, it tries to make re-use of existing identifiers for classes and properties by re-using all or a relevant subset of the axioms from the original ontology.\nThese statements have been extracted in different ways, e.g. by using Prot\u00e9g\u00e9 tools importing an ontology and copying axioms of relevant items to Metadata4Ing or by download from data services or raw files of ontologies and manual copypasting.\nIn some cases there was a need to extend or modify the original set of statements about an entity, e.g. because labels and definitions were expressed with a different owl:AnnotationProperty than the rest of Metadata4Ing, or because a skos:preflabel or a skos:definition in any of the languages we would like to support was missing.\nAny editorial changes on elements from external ontologies are declared in Metadata4Ing by an annotation with skos:editorialNote at item-level.\nTo get the original set of statements we encourage to visit the original namespace of the respective item.\nMetadata4Ing reuses elements from the following ontologies:\n- BIBO = Bibliographic Ontology \n- BIRO = Bibliographic Reference Ontology \n- DCAT = Data Catalog \n- DCTERMS = Dublin Core Terms \n- FOAF = Friend of a Friend \n- OWL = Web Ontology Language \n- PROV = Provenance Namespace \n- QUDT = Quantities, Units, Dimensions and Types \n- RDF = Resource Description Framework \n- RDFS = RDF Schema \n- SCHEMA = schema.org \n- SKOS = Simple Knowledge Organization System \n- SSN = Semantic Sensor Network Ontology \n- VANN = Vocabulary for Annotating vocabulary descriptions \n- XSD = XML Schema Definition \n- EMMO = European Materials and Modelling Ontology \n- BFO = Basic Formal Ontology \n- RO = Relation Ontology \n- PIMS-II = PIMS Interoperability Infrastructure \n- D-SI = Digital System of Units", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.ma-ont": {"id": "lov.ma-ont", "homepage": "http://www.w3.org/ns/ma-ont", "uri_format": "http://www.w3.org/ns/ma-ont#$1", "prefix": "ma-ont", "name": "Ontology for Media Resources", "description": "The Ontology for Media Resources 1.0 describes a core vocabulary of properties and a set of mappings between different metadata formats of media resources hat describe media resources published on the Web (as opposed to local archives, museums, or other non-web related and non-shared collections of media resources).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.mads": {"id": "lov.mads", "homepage": "http://www.loc.gov/mads/rdf/v1", "uri_format": "http://www.loc.gov/mads/rdf/v1#$1", "prefix": "mads", "name": "Metadata Authority Description Schema", "description": "MADS/RDF (Metadata Authority Description Schema in RDF) is a knowledge organization system (KOS) designed for use with controlled values for names (personal, corporate, geographic, etc.), thesauri, taxonomies, subject heading systems, and other controlled value lists", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.marl": {"id": "lov.marl", "homepage": "http://www.gsi.dit.upm.es/ontologies/marl/ns", "uri_format": "http://www.gsi.dit.upm.es/ontologies/marl/ns#$1", "prefix": "marl", "name": "Marl Ontology Specification", "description": "Marl is a standardised data schema designed to annotate and describe subjective opinions expressed on the web or in particular Information Systems.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.maso": {"id": "lov.maso", "homepage": "http://securitytoolbox.appspot.com/MASO", "uri_format": "http://securitytoolbox.appspot.com/MASO#$1", "prefix": "maso", "name": "S\u00e9curit\u00e9 Agents Mobiles", "description": "Ontologie pour le domaine de la s\u00e9curit\u00e9: application aux agents mobiles", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.md": {"id": "lov.md", "homepage": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/metadata", "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/metadata#$1", "prefix": "md", "name": "OWL representation of ISO 19115", "description": "An OWL representation of parts of the Geographic Metadata model described in ISO 19115:2003 with Corrigendum 2006 - MD Package.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.mdi": {"id": "lov.mdi", "homepage": "https://w3id.org/multidimensional-interface/ontology", "uri_format": "https://w3id.org/multidimensional-interface/ontology#$1", "prefix": "mdi", "name": "RDF vocabulary to describe a Multidimensional Interface.", "description": "An RDF vocabulary to describe and facilitate the usage of a Multidimensional Interface.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.mdo": {"id": "lov.mdo", "homepage": "https://w3id.org/mdo/full/", "uri_format": "https://w3id.org/mdo/full/$1", "prefix": "mdo", "name": "Materials Design Ontology - Full", "description": "This is the Materials Design Ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences"]}, "lov.mdo-calc": {"id": "lov.mdo-calc", "homepage": "https://w3id.org/mdo/calculation/", "uri_format": "https://w3id.org/mdo/calculation/$1", "prefix": "mdo-calc", "name": "Materials Design Ontology - Calculation Module", "description": "This is the calculation module of Materials Design Ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences"]}, "lov.mdo-struc": {"id": "lov.mdo-struc", "homepage": "https://w3id.org/mdo/structure/", "uri_format": "https://w3id.org/mdo/structure/$1", "prefix": "mdo-struc", "name": "Materials Design Ontology - Structure Module", "description": "This is the structure module in Materials Design Ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences"]}, "lov.mdoprov": {"id": "lov.mdoprov", "homepage": "https://w3id.org/mdo/provenance/", "uri_format": "https://w3id.org/mdo/provenance/$1", "prefix": "mdoprov", "name": "Materials Design Ontology - Provenance Module", "description": "This is the provenance module of Materials Design Ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.mdr": {"id": "lov.mdr", "homepage": "http://semanticturkey.uniroma2.it/ns/mdr", "uri_format": "http://semanticturkey.uniroma2.it/ns/mdr#$1", "prefix": "mdr", "name": "The Semantic Turkey metadata registry ontology", "description": "An application profile of DCAT combining it with other metadata vocabularies (e.g. VoID, DCTERMS, LIME)\n to meet requirements elicited in various use cases of the Semantic Web platform Semantic Turkey", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.meb": {"id": "lov.meb", "homepage": "http://rdf.myexperiment.org/ontologies/base/", "uri_format": "http://rdf.myexperiment.org/ontologies/base/$1", "prefix": "meb", "name": "The myExperiment Base Ontology", "description": "This ontology provides the base elements required by myExperiment for content management, social networking and object annotation.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.media": {"id": "lov.media", "homepage": "http://purl.org/media", "uri_format": "http://purl.org/media#$1", "prefix": "media", "name": "The Media RDF Vocabulary", "description": "In order to enable and encourage the sharing, distribution, syndication, and aggregation of media content, the authors propose the Media RDF vocabulary, an open standard for distributed media metadata.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.medred": {"id": "lov.medred", "homepage": "http://w3id.org/medred/medred#", "uri_format": "http://w3id.org/medred/medred#$1", "prefix": "medred", "name": "MedRed ontology: clinical data acquisition model", "description": "This ontology aims to model generic Medical Data Acquisition Instruments, which can be interoperable across different clinical data management systems. The ontology is developed in the context of the MedRed project (https://www.hevs.ch/en/rad-institutes/institute-of-information-systems/projects/medical-research-data-acquisition-platform-14092)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences", "health sciences"]}, "lov.mexalgo": {"id": "lov.mexalgo", "homepage": "http://mex.aksw.org/mex-algo", "uri_format": "http://mex.aksw.org/mex-algo#$1", "prefix": "mexalgo", "name": "MEX Algorithm Ontology", "description": "MEX is an RDF vocabulary designed to facilitate interoperability between published machine learning experiments results on the Web. The mex-algo layer represents the algorithm information existing into a basic machine learning experiment.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.mexcore": {"id": "lov.mexcore", "homepage": "http://mex.aksw.org/mex-core", "uri_format": "http://mex.aksw.org/mex-core#$1", "prefix": "mexcore", "name": "MEX Core Vocabulary", "description": "MEX e um vocabulario modelado para facilitar a interoperabilidade entre resultados de experimentos de aprendizado de maquinas publicados na Web. A camada mex-core representa a principal informacao obtida de um experimento de aprendizado de maquina.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.mexperf": {"id": "lov.mexperf", "homepage": "http://mex.aksw.org/mex-perf", "uri_format": "http://mex.aksw.org/mex-perf#$1", "prefix": "mexperf", "name": "MEX Performance Ontology", "description": "MEX e um vocabulario modelado para facilitar a interoperabilidade entre resultados de experimentos de aprendizado de maquinas publicados na Web. A camada mex-perf e o 3o. nivel na abordagem MEX para representar performances de algoritmos de aprendizado de maquinas", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.mil": {"id": "lov.mil", "homepage": "http://rdf.muninn-project.org/ontologies/military", "uri_format": "http://rdf.muninn-project.org/ontologies/military#$1", "prefix": "mil", "name": "Military Ontology Specification", "description": "The Muninn Military Ontology marks up information about military people, organizations and events.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.mls": {"id": "lov.mls", "homepage": "http://www.w3.org/ns/mls", "uri_format": "http://www.w3.org/ns/mls#$1", "prefix": "mls", "name": "Machine Learning Schema", "description": "ML-Schema is a collaborative, community effort with a mission to develop, maintain, and promote standard schemas for data mining and machine learning algorithms, datasets, and experiments", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.mo": {"id": "lov.mo", "homepage": "http://purl.org/ontology/mo/", "uri_format": "http://purl.org/ontology/mo/$1", "prefix": "mo", "name": "Music Ontology", "description": "The Music Ontology Specification provides main concepts and properties fo describing music (i.e. artists, albums and tracks) on the Semantic Web", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.moac": {"id": "lov.moac", "homepage": "http://www.observedchange.com/moac/ns#", "uri_format": "http://observedchange.com/moac/ns#$1", "prefix": "moac", "name": "Management of a Crisis Vocabulary", "description": "MOAC, the Management of a Crisis Vocabulary, is a lightweight vocabulary aiming to provide terms to enable practitioners to relate different \"things\" in crisis management activities together as Linked Data. The initial MOAC terms originated from the Inter Agency Standing Committee (IASC), Emergency Shelter Cluster in Haiti, UNOCHA 3W Who What Where Contact Database", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.moat": {"id": "lov.moat", "homepage": "http://moat-project.org/ns#", "uri_format": "http://moat-project.org/ns#$1", "prefix": "moat", "name": "Meaning of a Tag Ontology", "description": "An ontology that let users define relationships between Tag objects and URIs of Semantic Web resources", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.mod": {"id": "lov.mod", "homepage": "http://www.isibang.ac.in/ns/mod", "uri_format": "http://www.isibang.ac.in/ns/mod#$1", "prefix": "mod", "name": "MOD: Metadata for Ontology Description and publication", "description": "This specification describes MOD, a metadata vocabulary to describe and publish ontologies", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.modsci": {"id": "lov.modsci", "homepage": "https://w3id.org/skgo/modsci#", "uri_format": "https://w3id.org/skgo/modsci#$1", "prefix": "modsci", "name": "ModSci, Modern Science Ontology.", "description": "ModSci is a reference ontology for modelling different types of modern sciences and related entities, such as scientific discoveries, renowned scientists, instruments, phenomena ... etc.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.mrel": {"id": "lov.mrel", "homepage": "http://id.loc.gov/vocabulary/relators", "uri_format": "http://id.loc.gov/vocabulary/relators/$1", "prefix": "mrel", "name": "MARC Code List for Relators", "description": "MARC relators are defined as both RDF properties and SKOS concepts", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.msm": {"id": "lov.msm", "homepage": "http://iserve.kmi.open.ac.uk/ns/msm", "uri_format": "http://iserve.kmi.open.ac.uk/ns/msm#$1", "prefix": "msm", "name": "Minimal Service Model", "description": "A simple RDF(S) ontology able to capture (part of) the semantics of both Web services and Web APIs", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.msr": {"id": "lov.msr", "homepage": "http://www.telegraphis.net/ontology/measurement/measurement#", "uri_format": "http://www.telegraphis.net/ontology/measurement/measurement#$1", "prefix": "msr", "name": "Measurement Ontology", "description": "The Measurement Ontology is an ontology in which measurements may be rendered", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.mtlo": {"id": "lov.mtlo", "homepage": "http://www.ics.forth.gr/isl/MarineTLO/v4/marinetlo.owl", "uri_format": "http://www.ics.forth.gr/isl/MarineTLO/v4/marinetlo.owl#$1", "prefix": "mtlo", "name": "MarineTLO Ontology", "description": "MarineTLO is a top-level ontology for the marine domain (also applicable to the terrestrial domain).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences"]}, "lov.munc": {"id": "lov.munc", "homepage": "http://ns.inria.fr/munc/", "uri_format": "http://ns.inria.fr/munc#$1", "prefix": "munc", "name": "Meta-Uncertainty", "description": "An OWL vocabulary for describing uncertainty metadata.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.mus": {"id": "lov.mus", "homepage": "http://data.doremus.org/ontology#", "uri_format": "http://data.doremus.org/ontology#$1", "prefix": "mus", "name": "DOREMUS is an extension of the FRBRoo model for describing the music.", "description": "DOREMUS is an extension of the FRBRoo model for describing the music.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.music": {"id": "lov.music", "homepage": "http://www.kanzaki.com/ns/music", "uri_format": "http://www.kanzaki.com/ns/music#$1", "prefix": "music", "name": "Music Vocabulary", "description": "A vocabulary, or music ontology, to describe classical music and performances. Classes (categories) for musical works, events, instruments and performers, as well as related properties are defined. Make sure to distinguish musical works (e.g. Opera) from performance events (Opera_Event), or works (String_Quartette) from performer (StringQuartetEnsemble in this vocab), whose natural language terms are used interchangeblly. The present version experiments more precise model to describe a musical work, its representations (performances, scores, etc) and a musical event to present a representation (a concert). Includes 30 keys as individuals.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.muto": {"id": "lov.muto", "homepage": "http://purl.org/muto/core", "uri_format": "http://purl.org/muto/core#$1", "prefix": "muto", "name": "Modular Unified Tagging Ontology (MUTO)", "description": "The Modular and Unified Tagging Ontology (MUTO) is an ontology for tagging and folksonomies. It is based on a thorough review of earlier tagging ontologies and unifies core concepts in one consistent schema. It supports different forms of tagging, such as common, semantic, group, private, and automatic tagging, and is easily extensible.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.mv": {"id": "lov.mv", "homepage": "http://schema.mobivoc.org/", "uri_format": "http://schema.mobivoc.org/$1", "prefix": "mv", "name": "MobiVoc: Open Mobility Vocabulary", "description": "Our goal is to significantly improve the data mobility between all stakeholders by providing a standardized vocabulary using Semantic Web technologies and ontologies. For the open vocabulary covering various mobility aspects we use RDF (Resource Description Framework) - a recommended specification of the World Wide Web Consortium (W3C) and the so-called lingua franca for the integration of data and web. We invite everyone who is interested to join our MobiVoc initiative and to participate in the development of the Open Mobility Vocabulary.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.mvco": {"id": "lov.mvco", "homepage": "http://purl.oclc.org/NET/mvco.owl", "uri_format": "http://purl.oclc.org/NET/mvco.owl#$1", "prefix": "mvco", "name": "Media Value Chain Ontology", "description": "The Media Value Chain Ontology (MVCO) is an ontology for formalizing the representation of the Media Value Chain. It couples naturally with the MPEG-21 multimedia framework, and its standardization as Part 19 of this ISO/IEC standard is underway (at the editing time of this document).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.nao": {"id": "lov.nao", "homepage": "http://www.semanticdesktop.org/ontologies/2007/08/15/nao", "uri_format": "http://www.semanticdesktop.org/ontologies/2007/08/15/nao#$1", "prefix": "nao", "name": "NEPOMUK Annotation Ontology", "description": "The NEPOMUK Annotation Ontology is an ontology for annotation, providing vocabulary which is commonly required to annotate resources on the semantic desktop.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.nas": {"id": "lov.nas", "homepage": "https://data.nasa.gov/ontologies/atmonto/NAS#", "uri_format": "https://data.nasa.gov/ontologies/atmonto/NAS#$1", "prefix": "nas", "name": "US National Airspace System (NAS) vocabulary", "description": "Defines concepts related to the structure of the US National Airspace System (NAS)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ncal": {"id": "lov.ncal", "homepage": "http://www.semanticdesktop.org/ontologies/2007/04/02/ncal", "uri_format": "http://www.semanticdesktop.org/ontologies/2007/04/02/ncal#$1", "prefix": "ncal", "name": "NEPOMUK Calendar Ontology", "description": "The NEPOMUK Calendaring Ontology intends to provide vocabulary for describing calendaring data (events, tasks, journal entries) which is an important part of the body of information usually stored on a desktop. It is an adaptation of the ICALTZD ontology created by the W3C RDF Calendar Task Force of the Semantic Web Interest Group in the Semantic Web Activity.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.nco": {"id": "lov.nco", "homepage": "http://www.semanticdesktop.org/ontologies/2007/03/22/nco", "uri_format": "http://www.semanticdesktop.org/ontologies/2007/03/22/nco#$1", "prefix": "nco", "name": "NEPOMUK Contact Ontology", "description": "NEPOMUK Contact Ontology describes contact information, common in many places on the desktop. It evolved from the VCARD specification (RFC 2426) and has been inspired by the Vcard Ontology by Renato Ianella. The scope of NCO is much broader though. This document gives an overview of the classes, properties and intended use cases of the NCO ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.nen2660": {"id": "lov.nen2660", "homepage": "https://w3id.org/nen2660/", "uri_format": "https://w3id.org/nen2660/def#$1", "prefix": "nen2660", "name": "NEN 2660-2:2022 'Rules for information modelling of the built environment - Part 2: Practical configuration, extension and implementation of NEN 2660-1''", "description": "Ontology which is a normative part of the Dutch NEN 2660-2 standard", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.nfo": {"id": "lov.nfo", "homepage": "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo", "uri_format": "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#$1", "prefix": "nfo", "name": "NEPOMUK File Ontology", "description": "Part of Nepomuk Information Element Ontology Framework", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ngeo": {"id": "lov.ngeo", "homepage": "http://geovocab.org/geometry", "uri_format": "http://geovocab.org/geometry#$1", "prefix": "ngeo", "name": "NeoGeo Geometry Ontology", "description": "A vocabulary for specifying geographical regions in RDF", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["mathematics"]}, "lov.nie": {"id": "lov.nie", "homepage": "http://www.semanticdesktop.org/ontologies/2007/01/19/nie", "uri_format": "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#$1", "prefix": "nie", "name": "NEPOMUK Information Element Core Ontology", "description": "The Core Ontology of the NEPOMUK suite defines basic elements such as Data Object, Information Element ...", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.nif": {"id": "lov.nif", "homepage": "http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#", "uri_format": "http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#$1", "prefix": "nif", "name": "NLP Interchange Format", "description": "The NLP Interchange Format (NIF) is an RDF/OWL-based format that aims to achieve interoperability between Natural Language Processing (NLP) tools, language resources and annotations.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.nlon": {"id": "lov.nlon", "homepage": "http://lod.nl.go.kr/ontology/", "uri_format": "http://lod.nl.go.kr/ontology/$1", "prefix": "nlon", "name": "National Library of Korea Ontology", "description": "This specification describes National Library of Korea Ontology vocaburaries using W3C's RDF and OWL technology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.nno": {"id": "lov.nno", "homepage": "https://w3id.org/nno/ontology", "uri_format": "https://w3id.org/nno/ontology#$1", "prefix": "nno", "name": "The Neural Network Ontology", "description": "This is the Neural Network Ontology. Designed by the AIFB (http://www.aifb.kit.edu/web/Web_Science)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.noria": {"id": "lov.noria", "homepage": "https://w3id.org/noria/ontology/", "uri_format": "https://w3id.org/noria/ontology/$1", "prefix": "noria", "name": "The NORIA Ontology", "description": "The NORIA-O project is a data model for IT networks, events and operations information.\nThe ontology is developed using web technologies (e.g. RDF, OWL, SKOS) and is intended as a structure for realizing an IT Service Management (ITSM) Knowledge Graph (KG) for Anomaly Detection (AD) and Risk Management applications.\nThe model has been developed in collaboration with operational teams, and in connection with third parties linked vocabularies.\n\nAlignment with third parties vocabularies is implemented on a per class or per property basis when relevant (e.g. with `rdfs:subClassOf`, `owl:equivalentClass`).\nDirections for direct instanciation of these vocabularies are provided for cases where implementing a class/property alignment is redundant.\nAlignment holds for the following vocabulary releases:\n- [BBO](https://hal.archives-ouvertes.fr/hal-02365012/) 1.0.0\n- [BOT](https://w3id.org/bot/) 0.3.2\n- [DevOps-Infra](https://oeg-upm.github.io/devops-infra/) 1.0.0\n- [FOLIO](https://github.com/IBCNServices/Folio-Ontology) 1.0.0\n- [ORG](https://www.w3.org/TR/vocab-org/) 0.8\n- [PEP](https://w3id.org/pep/) 1.1\n- [SEAS](https://w3id.org/seas/) 1.1\n- [SLOGERT](https://sepses.ifs.tuwien.ac.at/ns/log/index-en.html) 1.1.0\n- [UCO](https://github.com/ucoProject/uco) Release-0.8.0", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.np": {"id": "lov.np", "homepage": "http://www.nanopub.org/nschema", "uri_format": "http://www.nanopub.org/nschema#$1", "prefix": "np", "name": "Nano publication ontology", "description": "The nanopub ontology", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.npg": {"id": "lov.npg", "homepage": "http://ns.nature.com/terms/", "uri_format": "http://ns.nature.com/terms/$1", "prefix": "npg", "name": "Nature.com Core Ontology", "description": "The Core Ontology is a formal model providing definitions for the key concepts of interest to content publishing at Macmillan Science and Education.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.nrl": {"id": "lov.nrl", "homepage": "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl", "uri_format": "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#$1", "prefix": "nrl", "name": "NEPOMUK Representational Language", "description": "Designed on top of RDF, it addresses certain limitations on the part of RDF/S. In particular it includes support for Named Graphs", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.nrv": {"id": "lov.nrv", "homepage": "http://ns.inria.fr/nrv", "uri_format": "http://ns.inria.fr/nrv#$1", "prefix": "nrv", "name": "Normative Requirements Vocabulary", "description": "An OWL vocabulary for describing normative requirements.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.nsl": {"id": "lov.nsl", "homepage": "http://purl.org/ontology/storyline", "uri_format": "http://purl.org/ontology/storyline/$1", "prefix": "nsl", "name": "A News Storyline Ontology", "description": "The News Storyline Ontology is a generic model for describing and organising the stories news organisations tell. The ontology is intended to be flexible to support any given news or media publisher's approach to handling news stories. At the heart of the ontology, is the concept of Storyline.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ntag": {"id": "lov.ntag", "homepage": "http://ns.inria.fr/nicetag/2010/09/09/voc", "uri_format": "http://ns.inria.fr/nicetag/2010/09/09/voc#$1", "prefix": "ntag", "name": "Nice Tag Ontology", "description": "NiceTag Ontology is an ontology which describes as generally as possible tags or rather tag actions understood as a speech acts occurring on the Web", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.oa": {"id": "lov.oa", "homepage": "http://www.w3.org/ns/oa#", "uri_format": "http://www.w3.org/ns/oa#$1", "prefix": "oa", "name": "Open Annotation Data Model", "description": "The Open Annotation Core Data Model specifies an interoperable framework for creating associations between related resources, annotations, using a methodology that conforms to the Architecture of the World Wide Web. This ontology is a non-normative OWL formalization of the textual OA specification at http://www.openannotation.org/spec/core/20130208/index.html", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.oad": {"id": "lov.oad", "homepage": "http://culturalis.org/oad#", "uri_format": "http://culturalis.org/oad#$1", "prefix": "oad", "name": "Ontology for archival description", "description": "An ontology for the description of archival data (OAD, \u201cOntology of Archival Description\u201d) using the Web Ontology Language (OWL). This ontology represents the classes and properties needed to expose the archival resources as linked data.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.oae": {"id": "lov.oae", "homepage": "http://www.ics.forth.gr/isl/oae/core", "uri_format": "http://www.ics.forth.gr/isl/oae/core#$1", "prefix": "oae", "name": "Open NEE Model", "description": "The Open NEE Model defines an extension of the Open Annotation Data Model (http://www.openannotation.org/spec/core) that allows describing in RDF the result of a Named Entity Extraction (NEE) process, enabling thereby an application to run advanced (SPARQL) queries over the annotated data. The model also exploits the Open NEE Configuration Model (http://www.ics.forth.gr/isl/oncm) for relating the output of a NEE process with an applied configuration (serving provenance information to the output of the entire NEE process).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.oan": {"id": "lov.oan", "homepage": "http://data.lirmm.fr/ontologies/oan", "uri_format": "http://data.lirmm.fr/ontologies/oan/$1", "prefix": "oan", "name": "Ontologie de l'Assembl\u00e9e Nationale", "description": "Description of French National Assembly", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences"]}, "lov.obo": {"id": "lov.obo", "homepage": "http://purl.obolibrary.org/obo/obi.owl", "uri_format": "http://purl.obolibrary.org/obo/$1", "prefix": "obo", "name": "Ontology for Biomedical Investigation", "description": "The Ontology for Biomedical Investigations (OBI) is build in a collaborative, international effort and will serve as a resource for annotating biomedical investigations, including the study design, protocols and instrumentation used, the data generated and the types of analysis performed on the data. This ontology arose from the Functional Genomics Investigation Ontology (FuGO) and will contain both terms that are common to all biomedical investigations, including functional genomics investigations and those that are more domain specific.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences", "health sciences"]}, "lov.obsm": {"id": "lov.obsm", "homepage": "http://rdf.geospecies.org/methods/observationMethod.rdf", "uri_format": "http://rdf.geospecies.org/methods/observationMethod#$1", "prefix": "obsm", "name": "Observation Method Ontology", "description": "This is a taxonomy of some observation methods. It is incomplete", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences"]}, "lov.obws": {"id": "lov.obws", "homepage": "http://delicias.dia.fi.upm.es/ontologies/ObjectWithStates.owl", "uri_format": "http://delicias.dia.fi.upm.es/ontologies/ObjectWithStates.owl#$1", "prefix": "obws", "name": "Object with states ontology", "description": "Ontology including the content ontology design pattern for modelling objects with states.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.oc": {"id": "lov.oc", "homepage": "http://contextus.net/ontology/ontomedia/core/expression#", "uri_format": "http://contextus.net/ontology/ontomedia/core/expression#$1", "prefix": "oc", "name": "OntoMedia Core", "description": "OntoMedia (Ontology for Media) has been designed to describe the interactions occurring in multimedia.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ocd": {"id": "lov.ocd", "homepage": "http://dati.camera.it/ocd/", "uri_format": "http://dati.camera.it/ocd/$1", "prefix": "ocd", "name": "Ontologia Camera dei Deputati", "description": "L'ontologia Camera dei deputati \u00e8 stata creata per descrivere tutte le risorse (persone, eventi, documenti) sia storiche che correnti, connesse alla Camera e alla sua attivit\u00e0", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences"]}, "lov.ocds": {"id": "lov.ocds", "homepage": "http://purl.org/onto-ocds/ocds", "uri_format": "http://purl.org/onto-ocds/ocds#$1", "prefix": "ocds", "name": "Schema for an Open Contracting Release (OCDS)", "description": "The OCDS is a data model that aims at structuring and publishing contracting data (tenders, procurements, awards, transactions, etc.). It got international adoption and is one of the leading models in this domain.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["law"]}, "lov.odapp": {"id": "lov.odapp", "homepage": "http://vocab.deri.ie/odapp", "uri_format": "http://vocab.deri.ie/odapp#$1", "prefix": "odapp", "name": "Open Data Applications Vocabulary", "description": "This is an early version of a vocabulary to describe \"open data applications\" i.e. applications built using open data. Examples of such applications are listed on government open data catalogues and participant on open data competitions.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.odapps": {"id": "lov.odapps", "homepage": "http://semweb.mmlab.be/ns/odapps", "uri_format": "http://semweb.mmlab.be/ns/odapps#$1", "prefix": "odapps", "name": "The vocabulary for (L)OD ideas and applications", "description": "odapps is an RDF vocabulary defined to facilitate the description of Open-Data-based ideas and applications published on the Web.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.odpart": {"id": "lov.odpart", "homepage": "http://www.ontologydesignpatterns.org/cp/owl/participation.owl", "uri_format": "http://www.ontologydesignpatterns.org/cp/owl/participation.owl#$1", "prefix": "odpart", "name": "Ontology Design Pattern Participation", "description": "The basic participation pattern, without temporal indexing. It clones equivalent elements from DOLCE-UltraLite.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.odrl": {"id": "lov.odrl", "homepage": "http://www.w3.org/ns/odrl/2/", "uri_format": "http://www.w3.org/ns/odrl/2/$1", "prefix": "odrl", "name": "The Open Digital Rights Language (ODRL) Ontology", "description": "The Open Digital Rights Language (ODRL) provides flexible and interoperable mechanisms to support transparent and innovative use of digital content in publishing, distribution, and consumption of of digital media across all sectors and communities. The ODRL Policy model is broad enough to support traditional rights expressions for commercial transaction, open access expressions for publicly distributed content, and privacy expressions for social media.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.odrs": {"id": "lov.odrs", "homepage": "http://schema.theodi.org/odrs", "uri_format": "http://schema.theodi.org/odrs#$1", "prefix": "odrs", "name": "Open Data Rights Statement Vocabulary", "description": "A vocabulary that supports the publication of Open Data by providing the means to capture machine-readable \"rights statements\", e.g. the licensing information, copyright notices and attribution requirements that are associated with the publication and re-use of a dataset.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.odv": {"id": "lov.odv", "homepage": "http://reference.data.gov.uk/def/organogram", "uri_format": "http://reference.data.gov.uk/def/organogram/$1", "prefix": "odv", "name": "Organogram Data Vocabulary", "description": "Extension of data cube for civil service junior posts", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.oecc": {"id": "lov.oecc", "homepage": "http://www.oegov.org/core/owl/cc", "uri_format": "http://www.oegov.org/core/owl/cc#$1", "prefix": "oecc", "name": "Extended Creative Commons Ontology", "description": "Creative Commons Ontology, extending RDF file at http://creativecommons.org/schema.rdf", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.of": {"id": "lov.of", "homepage": "http://owlrep.eu01.aws.af.cm/fridge", "uri_format": "http://owlrep.eu01.aws.af.cm/fridge#$1", "prefix": "of", "name": "Open Fridge vocabulary", "description": "Ontology for Open Fridge project", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.ofo": {"id": "lov.ofo", "homepage": "https://w3id.org/ofo#", "uri_format": "https://w3id.org/ofo#$1", "prefix": "ofo", "name": "Occupant Feedback Ontology", "description": "The aim of the Occupant Feedback Ontology is to semantically describe passive and active occupant feedback and to enable integration of this feedback with linked building data.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.ofrd": {"id": "lov.ofrd", "homepage": "http://purl.org/opdm/refrigerator#", "uri_format": "http://purl.org/opdm/refrigerator#$1", "prefix": "ofrd", "name": "Fridge and Freezer Vocabulary", "description": "Vocabulary to describe fridges and freezers", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.og": {"id": "lov.og", "homepage": "http://ogp.me/ns", "uri_format": "http://ogp.me/ns#$1", "prefix": "og", "name": "Open Graph Protocol Vocabulary", "description": "The Open Graph protocol enables any web page to become a rich object in a social graph. For instance, this is used on Facebook to enable any web page to have the same functionality as a Facebook Page.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.oh": {"id": "lov.oh", "homepage": "http://semweb.mmlab.be/ns/oh", "uri_format": "http://semweb.mmlab.be/ns/oh#$1", "prefix": "oh", "name": "The Opening Hours vocabulary", "description": "A vocabulary to describe opening hours using calendars (recommended: iCal, RDFCal or schema.org) published on the Web.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.olca": {"id": "lov.olca", "homepage": "https://w3id.org/vocab/olca", "uri_format": "https://w3id.org/vocab/olca#$1", "prefix": "olca", "name": "Ontology Loose Coupling Annotation", "description": "A vocabulary defining annotations enabling loose coupling between classes and properties in ontologies. Those annotations define with some accuracy the expected use of properties, in particular across vocabularies, without the formal constraints entailed by the use of OWL or RDFS constructions", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.olo": {"id": "lov.olo", "homepage": "http://purl.org/ontology/olo/core#", "uri_format": "http://purl.org/ontology/olo/core#$1", "prefix": "olo", "name": "Ordered List Ontology", "description": "The Ordered List Ontology Specification provides basic concepts and properties for describing ordered lists as semantic graphs.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.om": {"id": "lov.om", "homepage": "http://def.seegrid.csiro.au/isotc211/iso19156/2011/observation", "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19156/2011/observation#$1", "prefix": "om", "name": "ISO 19156 Observation Model", "description": "An OWL representation of the Observation Schema described in clause 6 of ISO 19156:2011 Geographic Information - Observations and Measurements", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.omg": {"id": "lov.omg", "homepage": "https://w3id.org/omg", "uri_format": "https://w3id.org/omg#$1", "prefix": "omg", "name": "OMG: Ontology for Managing Geometry", "description": "The Ontology for Managing Geometry (OMG) is an ontology for describing geometry descriptions of objects. It provides means to support the application of multiple geometry descriptions of the same object as well as the description of the geometry evolution over time. The OMG is based the concepts introduced in the Ontology for Property Management (OPM) ontology. \n\nThis ontology was created within the research project SCOPE, funded by the German Federal Ministry for Economic Affairs and Energy (BMWi).\n\nThe initial version of the ontology (v0.0.1) is documented in:\nWagner, Anna, Bonduel, Mathias, Pauwels, Pieter & R\u00fcppel, Uwe(2019). Relating Geometry Descroptions to its Derivatives on the Web. In Proceedings of the European Conference on Computing in Construction (EC3 2019). Chania, Greece.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["mathematics"]}, "lov.oml": {"id": "lov.oml", "homepage": "http://def.seegrid.csiro.au/ontology/om/om-lite", "uri_format": "http://def.seegrid.csiro.au/ontology/om/om-lite#$1", "prefix": "oml", "name": "OWL for Observations", "description": "An OWL representation of the Observation Schema described in clauses 7-8 of ISO 19156:2011 Geographic Information - Observations and Measurements / OGC Abstract Specification - Topic 20.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.omn": {"id": "lov.omn", "homepage": "http://open-multinet.info/ontology/omn", "uri_format": "http://open-multinet.info/ontology/omn#$1", "prefix": "omn", "name": "Open-Multinet Upper Ontology", "description": "This ontology defines the most abstract concepts and properties that are needed to semantically manage resource within federated infrastructures", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.omnfed": {"id": "lov.omnfed", "homepage": "http://open-multinet.info/ontology/omn-federation", "uri_format": "http://open-multinet.info/ontology/omn-federation#$1", "prefix": "omnfed", "name": "Open-Multinet Upper Federation Ontology", "description": "This ontology defines concepts related to federation of internet infrastructures.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.omnlc": {"id": "lov.omnlc", "homepage": "http://open-multinet.info/ontology/omn-lifecycle", "uri_format": "http://open-multinet.info/ontology/omn-lifecycle#$1", "prefix": "omnlc", "name": "Open-Multinet Upper Lifecycle Ontology", "description": "This ontology defines generic concepts related to the life cycle of resource or service.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.onc": {"id": "lov.onc", "homepage": "http://www.ics.forth.gr/isl/oncm/core", "uri_format": "http://www.ics.forth.gr/isl/oncm/core#$1", "prefix": "onc", "name": "Open NEE Configuration Model", "description": "The Open NEE Configuration Model defines a Linked Data-based model for describing a configuration supported by a Named Entity Extraction (NEE) service. It is based on the model proposed in \"Configuring Named Entity Extraction through Real-Time Exploitation of Linked Data\" (http://dl.acm.org/citation.cfm?doid=2611040.2611085) for configuring such services, and allows a NEE service to describe and publish as Linked Data its entity mining capabilities, but also to be dynamically configured.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ont": {"id": "lov.ont", "homepage": "http://purl.org/net/ns/ontology-annot", "uri_format": "http://purl.org/net/ns/ontology-annot#$1", "prefix": "ont", "name": "Ontology annotation DLiser vocabulary", "description": "Vocabulary to define some annotation properties as subproperties of common Dublin Core terms", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ontolex": {"id": "lov.ontolex", "homepage": "http://www.w3.org/ns/lemon/ontolex", "uri_format": "http://www.w3.org/ns/lemon/ontolex#$1", "prefix": "ontolex", "name": "Lexicon Model for Ontologies - Core", "description": "A model for the representation of lexical information relative to ontologies. Core module.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ontopic": {"id": "lov.ontopic", "homepage": "http://www.ontologydesignpatterns.org/ont/dul/ontopic.owl", "uri_format": "http://www.ontologydesignpatterns.org/ont/dul/ontopic.owl#$1", "prefix": "ontopic", "name": "Ontopic Ontology", "description": "An ontology of topics as used in thesauri, subject directories, etc.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ontosec": {"id": "lov.ontosec", "homepage": "http://www.semanticweb.org/ontologies/2008/11/OntologySecurity.owl", "uri_format": "http://www.semanticweb.org/ontologies/2008/11/OntologySecurity.owl#$1", "prefix": "ontosec", "name": "Ontology Security", "description": "This ontology covers the domain of security in the field of mobile applications.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ontouml": {"id": "lov.ontouml", "homepage": "https://w3id.org/ontouml", "uri_format": "https://w3id.org/ontouml#$1", "prefix": "ontouml", "name": "OntoUML Metamodel Vocabulary", "description": "A reference implementation of the OntoUML metamodel in OWL.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.onyx": {"id": "lov.onyx", "homepage": "http://www.gsi.dit.upm.es/ontologies/onyx/ns", "uri_format": "http://www.gsi.dit.upm.es/ontologies/onyx/ns#$1", "prefix": "onyx", "name": "Onyx Emotion Ontology", "description": "Onyx is a vovabulary designed designed to annotate and describe the emotions expressed by user-generated content on the web or in particular Information Systems.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.oo": {"id": "lov.oo", "homepage": "http://purl.org/openorg/", "uri_format": "http://purl.org/openorg/$1", "prefix": "oo", "name": "Open Organisations", "description": "This vocabulary provides supplementary terms for organisations wishing to publish open data about themselves.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.op": {"id": "lov.op", "homepage": "http://environment.data.gov.au/def/op", "uri_format": "http://environment.data.gov.au/def/op#$1", "prefix": "op", "name": "Observable properties", "description": "A general purpose ontology for observable properties. The ontology supports description of both qualitative and quantitative properties. The allowed scale or units of measure may be specified. A property may be linked to substances-or-taxa and to features or realms, if they play a role in the definition.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.open311": {"id": "lov.open311", "homepage": "http://ontology.eil.utoronto.ca/open311.owl", "uri_format": "http://ontology.eil.utoronto.ca/open311#$1", "prefix": "open311", "name": "Open 311 Ontology: An Ontology for publishing a city's non-emergency events.", "description": "Open 311 Ontology\n\nThis ontology generalizes the concepts that appear in 311 open data files published by several cities (Toronto, New York, Chicago, Vancouver) across North America. It provides a generis representation of 311 data that other cities can map their data onto and be used as a means of achieving interoperability.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.opm": {"id": "lov.opm", "homepage": "https://w3id.org/opm", "uri_format": "https://w3id.org/opm#$1", "prefix": "opm", "name": "OPM: Ontology for Property Management", "description": "The Ontology for Property Management (OPM) extends the concepts introduced in the Smart Energy Aware Systems (SEAS) Evaluations ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.opmo": {"id": "lov.opmo", "homepage": "http://openprovenance.org/model/opmo", "uri_format": "http://openprovenance.org/model/opmo#$1", "prefix": "opmo", "name": "Open Provenance Model", "description": "The Open Provenance Model is a model of provenance that is designed to meet the following requirements: (1) To allow provenance information to be exchanged between systems, by means of a compatibility layer based on a shared provenance model. (2) To allow developers to build and share tools that operate on such a provenance model. (3) To define provenance in a precise, technology-agnostic manner. (4) To support a digital representation of provenance for any 'thing', whether produced by computer systems or not. (5) To allow multiple levels of description to coexist. (6) To define a core set of rules that identify the valid inferences that can be made on provenance representation.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.opmv": {"id": "lov.opmv", "homepage": "http://purl.org/net/opmv/ns#", "uri_format": "http://purl.org/net/opmv/ns#$1", "prefix": "opmv", "name": "Open Provenance Model Vocabulary", "description": "OPMV, the Open Provenance Model Vocabulary, provides terms to enable practitioners of data publishing to publish their data responsibly.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.opmw": {"id": "lov.opmw", "homepage": "http://www.opmw.org/ontology/", "uri_format": "http://www.opmw.org/ontology/$1", "prefix": "opmw", "name": "The OPMW Ontology", "description": "OPMW is a OPMV profile to model the executions and definitions of scientific workflows.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.opo": {"id": "lov.opo", "homepage": "http://online-presence.net/opo/ns#", "uri_format": "http://online-presence.net/opo/ns#$1", "prefix": "opo", "name": "Online Presence Ontology", "description": "Ontology for representing Online Presence", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.opus": {"id": "lov.opus", "homepage": "http://lsdis.cs.uga.edu/projects/semdis/opus#", "uri_format": "http://lsdis.cs.uga.edu/projects/semdis/opus#$1", "prefix": "opus", "name": "SwetoDblp Ontology of Computer Science Publications", "description": "This file specifies in RDF Schema format the classes and properties for SwetoDblp. These classes and properties are based on the internal LSDIS Library portal engine.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.orca": {"id": "lov.orca", "homepage": "http://vocab.deri.ie/orca", "uri_format": "http://vocab.deri.ie/orca#$1", "prefix": "orca", "name": "orca, the Ontology of Reasoning, Certainty and Attribution", "description": "orca, the Ontology of Reasoning, Certainty and Attribution, is an ontology for characterizing the certainty of information, how it is known, and its source", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ore": {"id": "lov.ore", "homepage": "http://www.openarchives.org/ore/terms/", "uri_format": "http://www.openarchives.org/ore/terms/$1", "prefix": "ore", "name": "The OAI ORE terms vocabulary", "description": "Open Archives Initiative Object Reuse and Exchange (OAI-ORE) defines standards for the description and exchange of aggregations of Web resources.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.org": {"id": "lov.org", "homepage": "http://www.w3.org/ns/org#", "uri_format": "http://www.w3.org/ns/org#$1", "prefix": "org", "name": "Core organization ontology", "description": "Vocabulary for describing organizational structures, specializable to a broad variety of types of organization.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.orges": {"id": "lov.orges", "homepage": "http://datos.gob.es/def/sector-publico/organizacion#", "uri_format": "http://datos.gob.es/def/sector-publico/organizacion#$1", "prefix": "orges", "name": "Ontology about Spanish public organizations", "description": "Extensi\u00f3n de la ontolog\u00eda de Organizaciones para adecuarla al Directorio Com\u00fan de entidades p\u00fablicas en Espa\u00f1a.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences"]}, "lov.osadm": {"id": "lov.osadm", "homepage": "http://data.ordnancesurvey.co.uk/ontology/admingeo/", "uri_format": "http://data.ordnancesurvey.co.uk/ontology/admingeo/$1", "prefix": "osadm", "name": "The administrative geography and civil voting area ontology", "description": "An ontology describing the administrative and voting area geography of Great Britain", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.osgeom": {"id": "lov.osgeom", "homepage": "http://data.ordnancesurvey.co.uk/ontology/geometry/", "uri_format": "http://data.ordnancesurvey.co.uk/ontology/geometry/$1", "prefix": "osgeom", "name": "Ordnance Survey Geometry Ontology", "description": "A provisional small geometry vocabulary used by Ordnance Survey vocabularies and datasets. Likely to change when some standard way of representing geometries in RDF is agreed.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["mathematics"]}, "lov.oslc": {"id": "lov.oslc", "homepage": "http://open-services.net/ns/core#", "uri_format": "http://open-services.net/ns/core#$1", "prefix": "oslc", "name": "OSLC Core Vocabulary", "description": "The Open Services for Lifecycle Collaboration (OSLC) initiative is creating a family of web services specifications for products, services and other tools that support all phases of the software and product lifecycle. This OSLC Core Specification sets out the common features that every OSLC Service can be expected to support", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.oslo": {"id": "lov.oslo", "homepage": "http://purl.org/oslo/ns/localgov", "uri_format": "http://purl.org/oslo/ns/localgov#$1", "prefix": "oslo", "name": "OSLO Exchange Standard", "description": "This version of the OSLO Exchange Standard provides a minimum set of classes and properties for describing a natural person, i.e. the individual as opposed to any role they may play in society or the relationships they have to other people, organisations and property; all of which contribute significantly to the broader concept of identity. The vocabulary is closely integrated with the Person, Organisation and Location Vocabularies published by the W3C in the Gov Linked Data Project. The OSLO specification is the result of a public-private partnership initiated by V-ICT-OR, the Flemish Organization for ICT in Local Government.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.osp": {"id": "lov.osp", "homepage": "http://data.lirmm.fr/ontologies/osp", "uri_format": "http://data.lirmm.fr/ontologies/osp#$1", "prefix": "osp", "name": "Ontologie du Service Public", "description": "Ontologie d'une organisation publique, plus particuli\u00e8rement d'un tribunal, d'une organisation internationale ou d'un pays.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.osr": {"id": "lov.osr", "homepage": "http://contextus.net/ontology/ontomedia/core/space#", "uri_format": "http://contextus.net/ontology/ontomedia/core/space#$1", "prefix": "osr", "name": "OntoMedia Space Representation", "description": "The OntoMedia Space representation denotes areas of landscape. Expands on the AKT location ontology", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.osspr": {"id": "lov.osspr", "homepage": "http://data.ordnancesurvey.co.uk/ontology/spatialrelations/", "uri_format": "http://data.ordnancesurvey.co.uk/ontology/spatialrelations/$1", "prefix": "osspr", "name": "Spatial Relations Ontology", "description": "An ontology describing basic spatial relations.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["mathematics"]}, "lov.ostop": {"id": "lov.ostop", "homepage": "http://www.ordnancesurvey.co.uk/ontology/Topography/v0.1/Topography.owl", "uri_format": "http://www.ordnancesurvey.co.uk/ontology/Topography/v0.1/Topography.owl#$1", "prefix": "ostop", "name": "Ordnance Survey Topography Ontology", "description": "The general purpose of this ontology is to provide a library of high level concepts that are used by the other modules within the whole OS Topographic ontology. The ontology also describes the relationships and instances common to more than one module.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.otl": {"id": "lov.otl", "homepage": "https://w3id.org/opentrafficlights", "uri_format": "https://w3id.org/opentrafficlights#$1", "prefix": "otl", "name": "The Open Traffic Lights ontology", "description": "This ontology provides the terms necessary to describe the status of traffic lights.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.oum": {"id": "lov.oum", "homepage": "http://www.ontology-of-units-of-measure.org/resource/om-2/", "uri_format": "http://www.ontology-of-units-of-measure.org/resource/om-2/$1", "prefix": "oum", "name": "Ontology of units of Measure (OM)", "description": "The Ontology of units of Measure (OM) 2.0 models concepts and relations important to scientific research. It has a strong focus on units, quantities, measurements, and dimensions.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.ov": {"id": "lov.ov", "homepage": "http://open.vocab.org/terms", "uri_format": "http://open.vocab.org/terms/$1", "prefix": "ov", "name": "OpenVocab", "description": "OpenVocab is a community maintained vocabulary intended for use on the Semantic Web, ideal for properties and classes that don't warrant the effort of creating or maintaining a full schema. OpenVocab allows anyone to create and modify vocabulary terms using their web browser.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.owl": {"id": "lov.owl", "homepage": "http://www.w3.org/2002/07/owl", "uri_format": "http://www.w3.org/2002/07/owl#$1", "prefix": "owl", "name": "The OWL 2 Schema vocabulary", "description": "This ontology partially describes the built-in classes and properties that together form the basis of the RDF/XML syntax of OWL 2.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.p-plan": {"id": "lov.p-plan", "homepage": "http://purl.org/net/p-plan#", "uri_format": "http://purl.org/net/p-plan#$1", "prefix": "p-plan", "name": "The P-PLAN Ontology", "description": "The Ontology for Provenance and Plans (P-Plan) is an extension of the PROV-O ontology [PROV-O] created to represent the plans that guided the execution of scientific processes. P-Plan describes how the plans are composed and their correspondence to provenance records that describe the execution itself.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.parl": {"id": "lov.parl", "homepage": "http://reference.data.gov.uk/def/parliament", "uri_format": "http://reference.data.gov.uk/def/parliament/$1", "prefix": "parl", "name": "Parliament Ontology", "description": "An ontology of UK Parliament", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences"]}, "lov.part": {"id": "lov.part", "homepage": "http://purl.org/vocab/participation/schema", "uri_format": "http://purl.org/vocab/participation/schema#$1", "prefix": "part", "name": "Participation Schema", "description": "The participation ontology is a simple model for describing the roles that people play within groups. It is intended that specific domains will create subclasses of roles within their own areas of expertise.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.passim": {"id": "lov.passim", "homepage": "http://data.lirmm.fr/ontologies/passim", "uri_format": "http://data.lirmm.fr/ontologies/passim#$1", "prefix": "passim", "name": "PASSIM ontology", "description": "Description of the operation of a transport information service", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pat": {"id": "lov.pat", "homepage": "http://purl.org/hpi/patchr#", "uri_format": "http://purl.org/hpi/patchr#$1", "prefix": "pat", "name": "Patch Request Ontology", "description": "The Patch Request Ontology provides a schema to describe desired changes in Linked Data. By wrapping the Graph Update Ontology (guo) patch requests can be formulated to add, modify or delete particular triples (or subgraphs) within a dataset.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pattern": {"id": "lov.pattern", "homepage": "http://www.essepuntato.it/2008/12/pattern", "uri_format": "http://www.essepuntato.it/2008/12/pattern#$1", "prefix": "pattern", "name": "The Pattern Ontology", "description": "An ontology defining formally patterns for segmenting a document into atomic components, in order to be manipulated independently and re-flowed in different contexts.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.pav": {"id": "lov.pav", "homepage": "http://purl.org/pav/", "uri_format": "http://purl.org/pav/$1", "prefix": "pav", "name": "Provenance, Authoring and Versioning", "description": "PAV is a lightweight ontology for tracking Provenance, Authoring and Versioning. PAV specializes the W3C provenance ontology PROV-O in order to describe authorship, curation and digital creation of online resources.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pay": {"id": "lov.pay", "homepage": "http://reference.data.gov.uk/def/payment#", "uri_format": "http://reference.data.gov.uk/def/payment#$1", "prefix": "pay", "name": "Payments ontology", "description": "Vocabulary for representing payments, such as government expenditures, using the data cube representation.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["law"]}, "lov.pbo": {"id": "lov.pbo", "homepage": "http://purl.org/ontology/pbo/core#", "uri_format": "http://purl.org/ontology/pbo/core#$1", "prefix": "pbo", "name": "Play Back Ontology", "description": "The Play Back Ontology specification provides basic concepts and properties for describing concepts that are related to the play back domain.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pc": {"id": "lov.pc", "homepage": "http://purl.org/procurement/public-contracts", "uri_format": "http://purl.org/procurement/public-contracts#$1", "prefix": "pc", "name": "Public Contracts Ontology", "description": "Ontologie pro ve\u0159ejn\u00e9 zak\u00e1zky poskytuje vyjad\u0159ovac\u00ed prost\u0159edky pro popis zak\u00e1zek zad\u00e1van\u00fdch institucemi ve\u0159ejn\u00e9 spr\u00e1vy.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["law"]}, "lov.pdo": {"id": "lov.pdo", "homepage": "http://vocab.deri.ie/pdo", "uri_format": "http://ontologies.smile.deri.ie/pdo#$1", "prefix": "pdo", "name": "Project Documents Ontology", "description": "The Project Documents Ontology models the inherent structure and concepts of various documents in a project-specific setting, like meeting minutes, status reports etc.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.peco": {"id": "lov.peco", "homepage": "https://w3id.org/peco", "uri_format": "https://w3id.org/peco#$1", "prefix": "peco", "name": "The Provenance of Emission Calculations Ontology", "description": "This ontology defines a vocabulary for describing provenance traces of carbon emission calculations by capturing the quantifiable measurements of carbon emission sources used by some activities (e.g., electricity used by a machinery to produce a product, petrol used to make a car journey, etc.) and emission conversion factors used to estimate the carbon emissions produced by these. In addition, the ontology provides the ability to capture various data transformations that occurred before energy estimates may be used with relevant conversion factors. For example, sensors may provide raw readings about a water flow of an irrigation rig in an agri-food operation which is then used as a proxy to estimate the total volume of fertilisers used.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.pep": {"id": "lov.pep", "homepage": "https://w3id.org/pep/", "uri_format": "https://w3id.org/pep/$1", "prefix": "pep", "name": "Process Execution ontology.", "description": "The process execution ontology is a proposal for a simple extension of both the [W3C Semantic Sensor Network](https://www.w3.org/TR/vocab-ssn/) and the [Semantic Actuator Network](https://www.irit.fr/recherches/MELODI/ontologies/SAN.owl) ontology cores.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.person": {"id": "lov.person", "homepage": "http://www.w3.org/ns/person", "uri_format": "http://www.w3.org/ns/person#$1", "prefix": "person", "name": "ISA Programme Person Core Vocabulary", "description": "The Person Core Vocabulary provides a minimum set of classes and properties for describing a natural person", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pext": {"id": "lov.pext", "homepage": "http://www.ontotext.com/proton/protonext", "uri_format": "http://www.ontotext.com/proton/protonext#$1", "prefix": "pext", "name": "PROTON Extent module", "description": "Upper-level ontology with extensions to handle Linked Open Data (LOD)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.phdd": {"id": "lov.phdd", "homepage": "http://rdf-vocabulary.ddialliance.org/phdd", "uri_format": "http://rdf-vocabulary.ddialliance.org/phdd#$1", "prefix": "phdd", "name": "Physical Data Description", "description": "Physical data description (PHDD) of existing or published data (tables) in a rectangular format. The data could be either represented in records with character-separated values (CSV) or in records with fixed length.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pico": {"id": "lov.pico", "homepage": "http://data.cochrane.org/ontologies/pico/", "uri_format": "http://data.cochrane.org/ontologies/pico/$1", "prefix": "pico", "name": "Cochrane PICO Ontology", "description": "The PICO ontology provides a machine accessible version of the PICO framework. It essentially provides a model for describing evidence in a consistent way. The model allows the specifying of complex populations, detailed interventions and their comparisons as well as the outcomes considered. The PICO ontology was originally designed to model the questions asked and answered in Cochrane's systematic reviews. As a leader in the field of evidence based healthcare Cochrane uses the PICO model when framing and publishing evidence based questions. The PICO model is widely adopted for describing healthcare evidence, furthermore is equally applicable in other evidence-based domains. It essentially provides a model for describing evidence in a consistent way.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["health sciences"]}, "lov.pimsii": {"id": "lov.pimsii", "homepage": "http://www.molmod.info/semantics/pims-ii.ttl", "uri_format": "http://www.molmod.info/semantics/pims-ii.ttl#$1", "prefix": "pimsii", "name": "Physicalistic Interpretation of Modelling and Simulation - Interoperability Infrastructure (PIMS-II)", "description": "The Physicalistic Interpretation of Modelling and Simulation - Interoperability Infrastructure (PIMS-II) is a mid-level ontology with a focus on documenting cognitive processes and epistemic metadata", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.place": {"id": "lov.place", "homepage": "http://purl.org/ontology/places", "uri_format": "http://purl.org/ontology/places#$1", "prefix": "place", "name": "The Places Ontology", "description": "The Places Ontology is a simple lightweight ontology for describing places of geographic interest.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.plink": {"id": "lov.plink", "homepage": "http://cedric.cnam.fr/isid/ontologies/PersonLink.owl", "uri_format": "http://cedric.cnam.fr/isid/ontologies/PersonLink.owl#$1", "prefix": "plink", "name": "PersonLink Ontology", "description": "A Multilingual and Multicultural Ontology Representing Family Relationships.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.plo": {"id": "lov.plo", "homepage": "http://purl.org/net/po#", "uri_format": "http://purl.org/net/po#$1", "prefix": "plo", "name": "Playlist Ontology", "description": "An ontology for describing playlists, playlist entries and songs.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pmlp": {"id": "lov.pmlp", "homepage": "http://inference-web.org/2.0/pml-provenance.owl", "uri_format": "http://inference-web.org/2.0/pml-provenance.owl#$1", "prefix": "pmlp", "name": "PML2 provenance ontology", "description": "The provenance part of PML2 ontology. It is a fundamental component of PML2 ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pmofn": {"id": "lov.pmofn", "homepage": "http://premon.fbk.eu/ontology/fn", "uri_format": "http://premon.fbk.eu/ontology/fn#$1", "prefix": "pmofn", "name": "Predicate Model for Ontologies (PreMOn) - FrameNet ontology module", "description": "The FrameNet module of the PreMOn ontology extends the core module for representing concepts specific to FrameNet. The modeling is based on the [FrameNet II: Extended Theory and Practice](https://framenet2.icsi.berkeley.edu/docs/r1.5/book.pdf) book.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pmonb": {"id": "lov.pmonb", "homepage": "http://premon.fbk.eu/ontology/nb", "uri_format": "http://premon.fbk.eu/ontology/nb#$1", "prefix": "pmonb", "name": "Predicate Model for Ontologies (PreMOn) - NomBank ontology module", "description": "The NomBank module of the PreMOn ontology extends the core module for representing concepts specific to NomBank. The modelling is based on the NomBank Specifications.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pmopb": {"id": "lov.pmopb", "homepage": "http://premon.fbk.eu/ontology/pb", "uri_format": "http://premon.fbk.eu/ontology/pb#$1", "prefix": "pmopb", "name": "Predicate Model for Ontologies (PreMOn) - PropBank ontology module", "description": "The PropBank module of the PreMOn ontology extends the core module for representing concepts specific to PropBank.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pmovn": {"id": "lov.pmovn", "homepage": "http://premon.fbk.eu/ontology/vn", "uri_format": "http://premon.fbk.eu/ontology/vn#$1", "prefix": "pmovn", "name": "Predicate Model for Ontologies (PreMOn) - VerbNet ontology module", "description": "The VerbNet module of the PreMOn ontology extends the core module with classes and properties specific to the VerbNet predicate model. The modelling is based on the VerbNet Annotation Guidelines.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pna": {"id": "lov.pna", "homepage": "http://data.press.net/ontology/asset/", "uri_format": "http://data.press.net/ontology/asset/$1", "prefix": "pna", "name": "Press.net Asset Ontology", "description": "Press.net Asset Ontology describes news assets (text, images, video, data, etc), the relationships between them and how assets can be classified and semantically annotated.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pnc": {"id": "lov.pnc", "homepage": "http://data.press.net/ontology/classification/", "uri_format": "http://data.press.net/ontology/classification/$1", "prefix": "pnc", "name": "Press.net Classification Ontology", "description": "The Press.net Classification Ontology allows assets to be holistically classified using a controlled vocabulary or taxonomy.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.pne": {"id": "lov.pne", "homepage": "http://data.press.net/ontology/event/", "uri_format": "http://data.press.net/ontology/event/$1", "prefix": "pne", "name": "Press.net Event Ontology", "description": "Press.net Event Ontology models news-worthy events and their relationship to news assets and stuff (simple entities) in the world.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pni": {"id": "lov.pni", "homepage": "http://data.press.net/ontology/identifier/", "uri_format": "http://data.press.net/ontology/identifier/$1", "prefix": "pni", "name": "SNaP Identifier Ontology", "description": "The Identifier Ontology models non-RDF based Identifiers for resources. It is used to maintain a mapping between RDF resources identifiers and their equivalent IDs in an alternate, non-RDF based domain.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pns": {"id": "lov.pns", "homepage": "http://data.press.net/ontology/stuff/", "uri_format": "http://data.press.net/ontology/stuff/$1", "prefix": "pns", "name": "Press.net Stuff Ontology", "description": "Press.net Stuff Ontology models real world entities. There are two kinds of stuff: tangibles and intangibles. Tangible stuff includes persons, locations and organizations. Intangibles are abstract concepts such as smoking, feminism or love.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pnt": {"id": "lov.pnt", "homepage": "http://data.press.net/ontology/tag/", "uri_format": "http://data.press.net/ontology/tag/$1", "prefix": "pnt", "name": "Press.net Tag Ontology", "description": "Press.net Tag Ontology defines relationships for semantically annotating taggable things (for example news assets) with domain entities (stuff) and events.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.po": {"id": "lov.po", "homepage": "http://purl.org/ontology/po/", "uri_format": "http://purl.org/ontology/po/$1", "prefix": "po", "name": "Programmes ontology", "description": "This ontology aims at providing a simple vocabulary for describing programmes. It covers brands, series (seasons), episodes, broadcast events, broadcast services, etc.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.poder": {"id": "lov.poder", "homepage": "http://dev.poderopedia.com/vocab/schema", "uri_format": "http://dev.poderopedia.com/vocab/$1", "prefix": "poder", "name": "Poder Vocabulary", "description": "A vocabulary to express information about people and their relations with Organizations, Companies, etc.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.poso": {"id": "lov.poso", "homepage": "http://purl.org/poso/", "uri_format": "http://purl.org/poso/$1", "prefix": "poso", "name": "Positioning System Ontology", "description": "This ontology provides the terminologies used for positioning systems.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "mathematics"]}, "lov.posocm": {"id": "lov.posocm", "homepage": "http://purl.org/poso/common/", "uri_format": "http://purl.org/poso/common/$1", "prefix": "posocm", "name": "Positioning System Ontology Common Technologies, Algorithms and Systems", "description": "This ontology provides the terminologies used for positioning systems.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["mathematics"]}, "lov.postcode": {"id": "lov.postcode", "homepage": "http://data.ordnancesurvey.co.uk/ontology/postcode/", "uri_format": "http://data.ordnancesurvey.co.uk/ontology/postcode/$1", "prefix": "postcode", "name": "Postcode Ontology", "description": "An ontology describing the postcode geography in Great Britain.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.poste": {"id": "lov.poste", "homepage": "http://data.lirmm.fr/ontologies/poste", "uri_format": "http://data.lirmm.fr/ontologies/poste#$1", "prefix": "poste", "name": "Ontologie de la Poste", "description": "Vocabulaire d\u00e9crivant la r\u00e9partition des points de contact du r\u00e9seau postal en France m\u00e9tropolitaine, Guadeloupe, Guyane, La R\u00e9union, Martinique, Mayotte, Monaco, Monte-Carlo et Saint-Pierre et Miquelon", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ppo": {"id": "lov.ppo", "homepage": "http://vocab.deri.ie/ppo", "uri_format": "http://vocab.deri.ie/ppo#$1", "prefix": "ppo", "name": "Privacy Preference Ontology", "description": "An ontology to create privacy preferences for Linked Data", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.pproc": {"id": "lov.pproc", "homepage": "http://contsem.unizar.es/def/sector-publico/pproc", "uri_format": "http://contsem.unizar.es/def/sector-publico/pproc#$1", "prefix": "pproc", "name": "PPROC ontology", "description": "The PPROC ontology defines the necessary concepts to describe public procurement process and the contracts of public sector (public e-procurement). The ontology has been designed with the main purpose of publishing data about public contracts.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["law"]}, "lov.pr": {"id": "lov.pr", "homepage": "http://purl.org/ontology/prv/core#", "uri_format": "http://purl.org/ontology/prv/core#$1", "prefix": "pr", "name": "Property Reification Vocabulary", "description": "A vocabulary for describing the ontology design pattern of property reification.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.premis": {"id": "lov.premis", "homepage": "http://www.loc.gov/premis/rdf/v1", "uri_format": "http://www.loc.gov/premis/rdf/v1#$1", "prefix": "premis", "name": "PREMIS Ontology", "description": "This ontology identifies the classes and properties used to describe preservation metadata in RDF.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.prissma": {"id": "lov.prissma", "homepage": "http://ns.inria.fr/prissma/v2#", "uri_format": "http://ns.inria.fr/prissma/v2#$1", "prefix": "prissma", "name": "Presentation of Resources for Interoperable Semantic and Shareable Mobile Adaptability", "description": "PRISSMA (Presentation of Resources for Interoperable Semantic and Shareable Mobile Adaptability) is a domain-independent vocabulary for displaying Web of Data resources in mobile environments.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.pro": {"id": "lov.pro", "homepage": "http://purl.org/spar/pro", "uri_format": "http://purl.org/spar/pro/$1", "prefix": "pro", "name": "The Publishing Roles Ontology", "description": "PRO, the Publishing Roles Ontology, is an ontology for describing the role(s) in the publication process of a particular agent over a defined period of time. It forms part of SPAR, a suite of Semantic Publishing and Referencing Ontologies.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.prof": {"id": "lov.prof", "homepage": "http://www.w3.org/ns/dx/prof", "uri_format": "http://www.w3.org/ns/dx/prof/$1", "prefix": "prof", "name": "Profiles Vocabulary", "description": "This vocabulary is for describing relationships between standards/specifications, profiles of them and supporting artifacts such as validating resources.\n\nThis model starts with [http://dublincore.org/2012/06/14/dcterms#Standard](dct:Standard) entities which can either be Base Specifications (a standard not profiling any other Standard) or Profiles (Standards which do profile others). Base Specifications or Profiles can have Resource Descriptors associated with them that defines implementing rules for the it. Resource Descriptors must indicate the role they play (to guide, to validate etc.) and the formalism they adhere to (dct:format) to allow for content negotiation. A vocabulary of Resource Roles are provided alongside this vocabulary but that list is extensible.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.prog": {"id": "lov.prog", "homepage": "http://purl.org/prog/", "uri_format": "http://purl.org/prog/$1", "prefix": "prog", "name": "The Event Programme Vocabulary", "description": "This Vocabulary provides the means to create a document which describes a large event or other connected series of events. The primary purpose is to help humans comprehend the programme, not describe absolute truth. A single event (or even series) may have multiple programmes.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.prov": {"id": "lov.prov", "homepage": "http://www.w3.org/ns/prov#", "uri_format": "http://www.w3.org/ns/prov#$1", "prefix": "prov", "name": "W3C PROVenance Interchange", "description": "The namespace name http://www.w3.org/ns/prov# is intended for use with the PROV family of documents that support the interchange of provenance on the web.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.provoc": {"id": "lov.provoc", "homepage": "http://ns.inria.fr/provoc", "uri_format": "http://ns.inria.fr/provoc#$1", "prefix": "provoc", "name": "Product Vocabulary", "description": "ProVoc (Product Vocabulary) is a vocabulary that can be used to represent information and manipulate them through the Web. This ontology reflects: 1) The basic hierarchy of a company: Group (Company), Divisions of a Group, Brand names attached to a Division or a Group, and 2) The production of a company: products, ranges of products (attached to a Brand), the composition of a product, packages of products...", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.prv": {"id": "lov.prv", "homepage": "http://purl.org/net/provenance/ns#", "uri_format": "http://purl.org/net/provenance/ns#$1", "prefix": "prv", "name": "Provenance Vocabulary Core Ontology", "description": "The Provenance Vocabulary Core Ontology provides the main classes and properties required to describe provenance of data on the Web.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.prvt": {"id": "lov.prvt", "homepage": "http://purl.org/net/provenance/types#", "uri_format": "http://purl.org/net/provenance/types#$1", "prefix": "prvt", "name": "Provenance Vocabulary types", "description": "Extends the Provenance Vocabulary by defining subclasses of the types of provenance elements introduced in the core ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.psh": {"id": "lov.psh", "homepage": "http://ns.inria.fr/probabilistic-shacl/", "uri_format": "http://ns.inria.fr/probabilistic-shacl/$1", "prefix": "psh", "name": "Probabilistic SHACL Validation", "description": "An OWL vocabulary to include and exploit probabilistic information in SHACL validation reports", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pso": {"id": "lov.pso", "homepage": "http://purl.org/spar/pso", "uri_format": "http://purl.org/spar/pso/$1", "prefix": "pso", "name": "The Publishing Status Ontology", "description": "an ontology for describing the status held by a bibliographic document or other publication entity at each of the various stages in the publishing process. It forms part of SPAR, a suite of Semantic Publishing and Referencing Ontologies", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.ptop": {"id": "lov.ptop", "homepage": "http://www.ontotext.com/proton/protontop", "uri_format": "http://www.ontotext.com/proton/protontop#$1", "prefix": "ptop", "name": "PROTON (Proto Ontology), Top Module", "description": "The PROTON Top module represents the most general classes", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.pubsub": {"id": "lov.pubsub", "homepage": "https://vocab.eccenca.com/pubsub/", "uri_format": "https://vocab.eccenca.com/pubsub/$1", "prefix": "pubsub", "name": "Eccenca Publish-Subscribe Vocabulary", "description": "The eccenca Publish-Subscribe Vocabulary defines concepts and relations to create statements about publishers, subscribers and their subscriptions in a Publish-Subscribe environment based on the PubSubHubbub Core 0.4 specification.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.puv": {"id": "lov.puv", "homepage": "https://w3id.org/env/puv", "uri_format": "https://w3id.org/env/puv#$1", "prefix": "puv", "name": "Parameter Usage Vocabulary ontology", "description": "A simple ontology which implements the Parameter Usage Vocabulary semantic model, as described at https://github.com/nvs-vocabs/P01", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.pwo": {"id": "lov.pwo", "homepage": "http://purl.org/spar/pwo", "uri_format": "http://purl.org/spar/pwo/$1", "prefix": "pwo", "name": "The Publishing Workflow Ontology", "description": "An ontology for describing the workflow associated with the publication of a document.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.qb": {"id": "lov.qb", "homepage": "http://purl.org/linked-data/cube", "uri_format": "http://purl.org/linked-data/cube#$1", "prefix": "qb", "name": "The data cube vocabulary", "description": "This vocabulary allows multi-dimensional data, such as statistics, to be published in RDF.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.qb4o": {"id": "lov.qb4o", "homepage": "http://purl.org/qb4olap/cubes", "uri_format": "http://purl.org/qb4olap/cubes#$1", "prefix": "qb4o", "name": "Vocabulary for publishing OLAP data cubes", "description": "This vocabulary allows to publish and operate with OLAP cubes in RDF", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.qu": {"id": "lov.qu", "homepage": "http://purl.oclc.org/NET/ssnx/qu/qu", "uri_format": "http://purl.oclc.org/NET/ssnx/qu/qu#$1", "prefix": "qu", "name": "Quantity Kinds and Units", "description": "This ontology is partially based on the SysML QUDV (Quantities, Units, Dimensions and Values) proposed by a working group of the SysML 1.2 Revision Task Force (RTF), working in close coordination with the OMG MARTE specification group.\nIn order to generalize its potential usage and alignment with other standardization efforts concerning quantities and units, the QU ontology has been further developed as a complement to the Agriculture Meteorology example showcasing the ontology developed by the W3C Semantic Sensor Networks incubator group (SSN-XG).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.qudt": {"id": "lov.qudt", "homepage": "http://qudt.org/schema/qudt", "uri_format": "http://qudt.org/schema/qudt/$1", "prefix": "qudt", "name": "Quantities, Units, Dimensions and Types", "description": "The QUDT, or 'Quantity, Unit, Dimension and Type' collection of ontologies define the base classes properties, and restrictions used for modeling physical quantities, units of measure, and their dimensions in various measurement systems.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.r-arco": {"id": "lov.r-arco", "homepage": "https://w3id.org/arco/ontology/arco", "uri_format": "https://w3id.org/arco/ontology/arco/$1", "prefix": "r-arco", "name": "ArCo Ontology (ArCo network)", "description": "The ArCo module is the root of the network ArCo - Architecture of Knowledge. It imports all the other modules and models top-level distinctions from the cultural heritage domain.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.r4r": {"id": "lov.r4r", "homepage": "http://guava.iis.sinica.edu.tw/r4r", "uri_format": "http://guava.iis.sinica.edu.tw/r4r/$1", "prefix": "r4r", "name": "Relations for Reusing (R4R) Ontology", "description": "R4R is a light-weight ontology for representing general relationships of resource for publication and reusing. It asserts that a certain reusing context occurred and determined by its two basic relations, namely, isPackagedWith and isCitedBy. The isPackagedWith relation declares the resource is ready to be reused by incorporating License and Provenance information. The Cites relation is an exceptional to isCitedBy which occurs only two related objects cite each other at the same time. Five resource objects including article, data, code, provenance and license are major class concepts to represent in this ontology. \n\nThe namespace for all R4R terms is http://guava.iis.sinica.edu.tw/r4r/", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.radion": {"id": "lov.radion", "homepage": "http://www.w3.org/ns/radion#", "uri_format": "http://www.w3.org/ns/radion#$1", "prefix": "radion", "name": "Repository Asset Distribution", "description": "RADion, and the higher level vocabularies that build upon it, are intended as a model that facilitates federation and co-operation. It is not the primary intention that repository owners redesign or convert their current systems and data to conform to RADion, but rather that it acts as a common layer among repositories that want to exchange data.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.rains": {"id": "lov.rains", "homepage": "https://w3id.org/rains", "uri_format": "https://w3id.org/rains#$1", "prefix": "rains", "name": "The RAInS Ontology", "description": "An ontology to model accountability of AI systems which use machine learning.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.rami": {"id": "lov.rami", "homepage": "https://w3id.org/i40/rami/", "uri_format": "http://iais.fraunhofer.de/vocabs/rami#$1", "prefix": "rami", "name": "rami - Reference Architecture Model", "description": "A vocabulary which represents the Reference Architecture Model for Industry 4.0 (RAMI), including the concept of the Administration Shell I4.0 Component.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.raul": {"id": "lov.raul", "homepage": "http://vocab.deri.ie/raul", "uri_format": "http://purl.org/NET/raul#$1", "prefix": "raul", "name": "RAUL Vocabulary", "description": "A vocabulary to describe Web form widgets. Strongly aligned with the meta model of HTML Web forms. A RESTful service that can render HTML Web forms from RaUL models can be found at: http://w3c.org.au/raul", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.rb": {"id": "lov.rb", "homepage": "https://w3id.org/riverbench/schema/metadata", "uri_format": "https://w3id.org/riverbench/schema/metadata#$1", "prefix": "rb", "name": "RiverBench metadata ontology", "description": "Ontology for describing datasets and profiles in the RiverBench benchmark suite.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.rbdoc": {"id": "lov.rbdoc", "homepage": "https://w3id.org/riverbench/schema/documentation", "uri_format": "https://w3id.org/riverbench/schema/documentation#$1", "prefix": "rbdoc", "name": "RiverBench documentation ontology", "description": "Ontology with metadata needed to generate documentation of datasets, distributions, profiles, etc. in RiverBench", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.rdaa": {"id": "lov.rdaa", "homepage": "http://rdaregistry.info/Elements/a", "uri_format": "http://rdaregistry.info/Elements/a/$1", "prefix": "rdaa", "name": "RDA Agent properties", "description": "The Agent properties element set consists of properties representing the attributes and relationships of the RDA Agent, Person, Family, and Corporate Body entities. Each property in the element set has a domain of the class representing one of these entities.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.rdac": {"id": "lov.rdac", "homepage": "http://rdaregistry.info/Elements/c", "uri_format": "http://rdaregistry.info/Elements/c/$1", "prefix": "rdac", "name": "RDA Classes", "description": "The Classes element set consists of classes representing the RDA entities, including Work, Expression, Manifestation, Item, Person, Family, Corporate Body, and Agent.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.rdae": {"id": "lov.rdae", "homepage": "http://rdaregistry.info/Elements/e", "uri_format": "http://rdaregistry.info/Elements/e/$1", "prefix": "rdae", "name": "RDA Expression properties", "description": "The Expression properties element set consists of properties representing the attributes and relationships of the RDA Expression entity. Each property in the element set has a domain of the class representing this entity.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.rdafrbr": {"id": "lov.rdafrbr", "homepage": "http://rdvocab.info/uri/schema/FRBRentitiesRDA", "uri_format": "http://rdvocab.info/uri/schema/FRBRentitiesRDA/$1", "prefix": "rdafrbr", "name": "FRBR Entities for RDA", "description": "Defines the core RDA classes, including FRBR levels Work, Expression, Manifestation and Item.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.rdag1": {"id": "lov.rdag1", "homepage": "http://rdvocab.info/Elements", "uri_format": "http://rdvocab.info/Elements/$1", "prefix": "rdag1", "name": "RDA Group 1 Elements", "description": "This is the provisional registration of the RDA Group 1 Element Vocabulary, managed by the DCMI/RDA Task Group.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.rdag2": {"id": "lov.rdag2", "homepage": "http://rdvocab.info/ElementsGr2", "uri_format": "http://rdvocab.info/ElementsGr2/$1", "prefix": "rdag2", "name": "RDA Group 2 Elements", "description": "The second group of metadata elements defined by RDA", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.rdag3": {"id": "lov.rdag3", "homepage": "http://rdvocab.info/ElementsGr3", "uri_format": "http://rdvocab.info/ElementsGr3/$1", "prefix": "rdag3", "name": "RDA Group 3 Elements", "description": "This group of RDA elements defines preferred and variant names for concepts, places and events", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.rdai": {"id": "lov.rdai", "homepage": "http://rdaregistry.info/Elements/i", "uri_format": "http://rdaregistry.info/Elements/i/$1", "prefix": "rdai", "name": "RDA Item properties", "description": "The Item properties element set consists of properties representing the attributes and relationships of the RDA Item entity.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.rdam": {"id": "lov.rdam", "homepage": "http://rdaregistry.info/Elements/m", "uri_format": "http://rdaregistry.info/Elements/m/$1", "prefix": "rdam", "name": "RDA Manifestation properties", "description": "The Manifestation properties element set consists of properties representing the attributes and relationships of the RDA Manifestation entity.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.rdarel": {"id": "lov.rdarel", "homepage": "http://rdvocab.info/RDARelationshipsWEMI", "uri_format": "http://rdvocab.info/RDARelationshipsWEMI/$1", "prefix": "rdarel", "name": "RDA Relationships for Works, Expressions, Manifestations, Items", "description": "A vocabulary defining a large variety of specific relationships between the various levels of the FRBR pile.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.rdarel2": {"id": "lov.rdarel2", "homepage": "http://metadataregistry.org/uri/schema/RDARelationshipsGR2", "uri_format": "http://metadataregistry.org/uri/schema/RDARelationshipsGR2/$1", "prefix": "rdarel2", "name": "RDA Relationships GR2", "description": "RDA Relationships for Persons, Corporate Bodies, Families", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.rdarole": {"id": "lov.rdarole", "homepage": "http://rdvocab.info/roles", "uri_format": "http://rdvocab.info/roles/$1", "prefix": "rdarole", "name": "RDA Roles", "description": "Defines possible roles linking agents to FRBR objects (works, expressions, manifestations, items)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.rdau": {"id": "lov.rdau", "homepage": "http://rdaregistry.info/Elements/u", "uri_format": "http://rdaregistry.info/Elements/u/$1", "prefix": "rdau", "name": "RDA Unconstrained properties", "description": "The Unconstrained properties element set consists of properties representing the attributes and relationships of the all RDA entities. Each property in the element set has semantics which are independent of the FRBR model and has no specified domain or range.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.rdaw": {"id": "lov.rdaw", "homepage": "http://rdaregistry.info/Elements/w", "uri_format": "http://rdaregistry.info/Elements/w/$1", "prefix": "rdaw", "name": "RDA Work properties", "description": "The Work properties element set consists of properties representing the attributes and relationships of the RDA Work entity.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.rdf": {"id": "lov.rdf", "homepage": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", "uri_format": "http://www.w3.org/1999/02/22-rdf-syntax-ns#$1", "prefix": "rdf", "name": "The RDF Concepts Vocabulary", "description": "This is the RDF Schema for the RDF vocabulary terms in the RDF Namespace, defined in RDF 1.1 Concepts.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.rdfa": {"id": "lov.rdfa", "homepage": "http://www.w3.org/ns/rdfa#", "uri_format": "http://www.w3.org/ns/rdfa#$1", "prefix": "rdfa", "name": "RDFa Vocabulary for Term and Prefix Assignment, and for Processor Graph Reporting", "description": "This document describes the RDFa Vocabulary for Term and Prefix Assignment. The Vocabulary is used to modify RDFa 1.1 processing behavior", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.rdfg": {"id": "lov.rdfg", "homepage": "http://www.w3.org/2004/03/trix/rdfg-1/", "uri_format": "http://www.w3.org/2004/03/trix/rdfg-1/$1", "prefix": "rdfg", "name": "Graph", "description": "Properties allowing statement of intensional equivalence between RDF graphs", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.rdfp": {"id": "lov.rdfp", "homepage": "https://w3id.org/rdfp/", "uri_format": "https://w3id.org/rdfp/$1", "prefix": "rdfp", "name": "The RDF Presentation ontology", "description": "## RDF Presentation and RDF Presentation Negotiation\n\nAn RDF graph can be presented in several ways, using different media types. Examples of RDF media types include `application/rdf+xml`, `text/turtle`, `application/json+ld`.\n\nToday, most of the content consumed/produced/published, on the Web is not presented in RDF. \n\nIn the Web of Things, HTTP servers and clients would rather exchange lightweight documents, potentially binary. \nCurrently, most existing RDF Presentations generically apply to any RDF graph, at the cost of being heavy text-based documents.\nYet, lightweight HTTP servers/clients could be better satisfied with consuming/producing/publishing lightweight documents, may its structure be application-specific.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.rdfs": {"id": "lov.rdfs", "homepage": "http://www.w3.org/2000/01/rdf-schema#", "uri_format": "http://www.w3.org/2000/01/rdf-schema#$1", "prefix": "rdfs", "name": "The RDF Schema vocabulary", "description": "RDF Schema provides a data-modelling vocabulary for RDF data. RDF Schema is an extension of the basic RDF vocabulary.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.rdft": {"id": "lov.rdft", "homepage": "http://www.w3.org/ns/rdftest", "uri_format": "http://www.w3.org/ns/rdftest#$1", "prefix": "rdft", "name": "The RDF 1.1 Test Vocabulary", "description": "This is a vocabulary document and is used to define classes and properties used in\n RDF 1.1 Test Cases and associated test manifests.\n The URI of the vocabulary is http://www.w3.org/ns/rdftest# (abbreviated by rdft: in this document).\n Turtle and an JSON-LD versions of the vocabulary are also available.\n The vocabulary is published by W3C.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.react": {"id": "lov.react", "homepage": "https://w3id.org/react", "uri_format": "https://w3id.org/react#$1", "prefix": "react", "name": "The REACT Ontology", "description": "The REACT ontology aims to represent all the necessary knowledge to support the achievement of island energy independence through renewable energy generation and storage, a demand response platform, and promoting user engagement in a local energy community.\n\nThe REACT ontology has been developed as part of the REACT project which has received funding from the European Union\u2019s Horizon 2020 research and innovation programme under grant agreement no. 824395.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.rec": {"id": "lov.rec", "homepage": "http://purl.org/ontology/rec/core#", "uri_format": "http://purl.org/ontology/rec/core#$1", "prefix": "rec", "name": "Recommendation Ontology", "description": "The Recommendation Ontology specification provides basic concepts and properties for describing recommendations on/ for the Semantic Web.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.rec54": {"id": "lov.rec54", "homepage": "http://www.w3.org/2001/02pd/rec54#", "uri_format": "http://www.w3.org/2001/02pd/rec54#$1", "prefix": "rec54", "name": "Model of the W3C Process", "description": "This is (the start of) an event-based model of the W3C process; e.g. RECdd is the class of Recommendation Director's Decisions; \ti.e. messages to w3c-ac-members announcing a new W3C Recommendation.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.reco": {"id": "lov.reco", "homepage": "http://purl.org/reco#", "uri_format": "http://purl.org/reco#$1", "prefix": "reco", "name": "RECommendations Ontology", "description": "The RECO ontology defines the vocabulary for representing preferences-as-constraints and preferences-as-ratings as RDF graphs. This lightweight vocabulary provides domain-independent means to describe user profiles in a coherent and context-aware way. RECO has been designed as an extension of both Friend-Of-A-Friend (FOAF) and Who Am I! (WAI) ontologies.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.reegle": {"id": "lov.reegle", "homepage": "http://reegle.info/schema", "uri_format": "http://reegle.info/schema#$1", "prefix": "reegle", "name": "Renewable Energy and Energy Efficiency", "description": "Vocabulary used to describe clean energy actors, projects and technologies", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.rel": {"id": "lov.rel", "homepage": "http://purl.org/vocab/relationship/", "uri_format": "http://purl.org/vocab/relationship/$1", "prefix": "rel", "name": "Relationship", "description": "A vocabulary for describing relationships between people", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.remetca": {"id": "lov.remetca", "homepage": "http://www.purl.org/net/remetca#", "uri_format": "http://www.purl.org/net/remetca#$1", "prefix": "remetca", "name": "ReMetCa Ontology", "description": "Ontology for poetry description", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.rev": {"id": "lov.rev", "homepage": "http://purl.org/stuff/rev#", "uri_format": "http://purl.org/stuff/rev#$1", "prefix": "rev", "name": "Review Vocabulary", "description": "Vocabulary for expressing reviews and ratings", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.rico": {"id": "lov.rico", "homepage": "https://www.ica.org/standards/RiC/ontology", "uri_format": "https://www.ica.org/standards/RiC/ontology#$1", "prefix": "rico", "name": "International Council on Archives Records in Contexts Ontology (ICA RiC-O)", "description": "RiC-O (Records in Contexts-Ontology) is an OWL ontology for describing\n archival record resources. As the second part of Records in Contexts standard,\n it is a formal representation of Records in Contexts Conceptual Model (RiC-CM). \t\t\n The current official version is v0.2; it is\n compliant with RiC-CM v0.2 full draft, that will be published in February or\n March 2021, and that is slightly different from RiC-CM\n v0.2 preview, that was published in December 2019.\n RiC-O provides a generic vocabulary and formal rules for creating RDF\n datasets (or generating them from existing archival metadata) that describe in a\n consistent way any kind of archival record resource. It can support publishing\n RDF datasets as Linked Data, querying them using SPARQL, and making inferences\n using the logic of the ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.rlog": {"id": "lov.rlog", "homepage": "http://persistence.uni-leipzig.org/nlp2rdf/ontologies/rlog#", "uri_format": "http://persistence.uni-leipzig.org/nlp2rdf/ontologies/rlog#$1", "prefix": "rlog", "name": "RDF Logging Ontology", "description": "This is a helper ontology for NIF 2.0 to be able to log errors and warning messages.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.ro": {"id": "lov.ro", "homepage": "http://purl.org/wf4ever/ro", "uri_format": "http://purl.org/wf4ever/ro#$1", "prefix": "ro", "name": "The Research Object Ontology", "description": "This ontology shows how AO and ORE ontologies can be used together to define a ResearchObject. This ontology is further customized by the wf4ever ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.roh": {"id": "lov.roh", "homepage": "http://w3id.org/roh", "uri_format": "http://w3id.org/roh#$1", "prefix": "roh", "name": "The ASIO ontology", "description": "An ontology to address the Research Management of the CRUE's Spanish University System (Sistema Universitario Espa\u00f1ol) by applying an encompassing model not only capable of addressing the universities of the CRUE but also more belonging to the European Union.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.rooms": {"id": "lov.rooms", "homepage": "http://vocab.deri.ie/rooms", "uri_format": "http://vocab.deri.ie/rooms#$1", "prefix": "rooms", "name": "Buildings and Rooms Vocabulary", "description": "A simple vocabulary for describing the rooms in a building.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.rov": {"id": "lov.rov", "homepage": "http://www.w3.org/ns/regorg", "uri_format": "http://www.w3.org/ns/regorg#$1", "prefix": "rov", "name": "Registered Organization Vocabulary", "description": "Le vocabulaire des organisations enregistr\u00e9es est un profil de l'ontologie des organisations pour d\u00e9crire les organisations ayant acquis un statut l\u00e9gal au travers d'un processus d'inscription formel, typiquement dans un registre national ou r\u00e9gional.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.rr": {"id": "lov.rr", "homepage": "http://www.w3.org/ns/r2rml#", "uri_format": "http://www.w3.org/ns/r2rml#$1", "prefix": "rr", "name": "RDB to RDF Mapping Language Schema", "description": "A vocabulary which can be used to specify a mapping of relational data to RDF.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.rsctx": {"id": "lov.rsctx", "homepage": "http://softeng.polito.it/rsctx", "uri_format": "http://softeng.polito.it/rsctx#$1", "prefix": "rsctx", "name": "Recommender System Context", "description": "This ontology represent context which may be interesting in providing recommendations to users.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.rss": {"id": "lov.rss", "homepage": "http://purl.org/rss/1.0", "uri_format": "http://purl.org/rss/1.0/$1", "prefix": "rss", "name": "Vocabulary for Rich Site Summary (RSS) 1.0", "description": "RDF Schema declaration for Rich Site Summary (RSS) 1.0", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.rto": {"id": "lov.rto", "homepage": "https://w3id.org/rail/topo#", "uri_format": "https://w3id.org/rail/topo#$1", "prefix": "rto", "name": "Rail Topology Ontology", "description": "The Rail Topology Ontology models foundational rail topology concepts..", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ru": {"id": "lov.ru", "homepage": "http://purl.org/imbi/ru-meta.owl", "uri_format": "http://purl.org/imbi/ru-meta.owl#$1", "prefix": "ru", "name": "Representational Units Metadata Ontology", "description": "Draft for a recommendation for metadata on Representational Units (RU) which appear in ontologies. It is so far harmonized for implementation through owl annotation properties.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ruto": {"id": "lov.ruto", "homepage": "http://rdfunit.aksw.org/ns/core#", "uri_format": "http://rdfunit.aksw.org/ns/core#$1", "prefix": "ruto", "name": "Test-Driven Data Debugging Ontology", "description": "The Databugger ontology describes concepts used in Databugger, a test driven data-debugging framework that can run automatically generated (based on a schema) and manually generated test cases against an endpoint.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.s4ac": {"id": "lov.s4ac", "homepage": "http://ns.inria.fr/s4ac/v2", "uri_format": "http://ns.inria.fr/s4ac/v2#$1", "prefix": "s4ac", "name": "Social Semantic SPARQL Security For Access Control Ontology", "description": "A lightweight vocabulary to create fine-grained access control policies for Linked Data.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.s4agri": {"id": "lov.s4agri", "homepage": "https://saref.etsi.org/saref4agri/", "uri_format": "https://saref.etsi.org/saref4agri/$1", "prefix": "s4agri", "name": "SAREF extension for Agriculture", "description": "This ontology extends the SAREF ontology for the Agricultural domain. This work has been developed in the context of the STF 534 (https://portal.etsi.org/STF/STFs/STFHomePages/STF534.aspx), which was established with the goal to create three SAREF extensions, one of them for the Agricultural domain.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["agriculture, forestry, and fisheries", "computer and information sciences"]}, "lov.s4bldg": {"id": "lov.s4bldg", "homepage": "https://saref.etsi.org/saref4bldg/", "uri_format": "https://saref.etsi.org/saref4bldg/$1", "prefix": "s4bldg", "name": "SAREF extension for building devices", "description": "This ontology extends the SAREF ontology for the building domain by defining building devices and how they are located in a building. This extension is based on the ISO 16739:2013 Industry Foundation Classes (IFC) standard for data sharing in the construction and facility management industries. The descriptions of the classes and properties extracted from IFC have been taken from the IFC documentation.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.s4city": {"id": "lov.s4city", "homepage": "https://saref.etsi.org/saref4city/", "uri_format": "https://saref.etsi.org/saref4city/$1", "prefix": "s4city", "name": "SAREF extension for Smart City", "description": "This ontology extends the SAREF ontology for the Smart City domain. This work has been developed in the context of the STF 534 (https://portal.etsi.org/STF/STFs/STFHomePages/STF534.aspx), which was established with the goal to create three SAREF extensions, one of them for the Smart City domain.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences", "computer and information sciences"]}, "lov.s4ehaw": {"id": "lov.s4ehaw", "homepage": "https://saref.etsi.org/saref4ehaw/", "uri_format": "https://saref.etsi.org/saref4ehaw/$1", "prefix": "s4ehaw", "name": "SAREF4EHAW: an extension of SAREF for eHealth Ageing Well domain", "description": "The objective of SAREF4EHAW is to extend SAREF ontology for the eHealth/Ageing-well (EHAW) vertical. Clause 4.1 of the present document shortly introduces a high level view of the envisioned SAREF4EHAW semantic model and modular ontology, with the retained concepts (i.e. classes) and their relations. \nSAREF4EHAW extension has been specified and formalised by investigating EHAW domain related resources, as reported in ETSI TR 103 509, such as: potential stakeholders, standardization initiatives, alliances/associations, European projects, EC directives, existing ontologies, and data repositories. Therefore, SAREF4EHAW modular ontology shall both:\n - Allow the implementation of a limited set of typical EHAW related use cases already identified in ETSI TR 103 509, i.e.\n - Use case 1 ?elderly at home monitoring and support?,\n - Use case 2 ?monitoring and support of healthy lifestyles for citizens?,\n - Use case 3 ?Early Warning System (EWS) and Cardiovascular Accidents detection?.\n - Fulfil the eHealth Ageing Well related requirements provided in ETSI TR 103 509, mainly the ontological ones that were mostly taken as input for the ontology specification.\n\nSAREF4EHAW mainly reuses the following existing ontologies: SAREF, ETSI SmartBAN reference model, SAREF 4 Environment extension and W3C SSN System module. The following figure presents the high level view of SAREF4EHAW ontology.\n![SAREF4SYST overview](diagrams/SAREF4EHAW_Model.jpg)\nFor semantic interoperability handling purposes, an ontology based solution, combined with sensing-as-a-service and WoT strategies, is retained for SAREF4EHAW. Therefore, an upper level ontology, at service level, shall also behas been fully modelled (Service class and sub-classes depicted in the previous figure).\nFor embedded semantic analytics purposes, SAREF4EHAW shall behas been designed using the modularity principle (see ETSI TR 103 509) and can thus be mainly described by the following self-contained knowledge sub-ontologies (or modules): HealthActor, Ban, HealthDevice, Function (measured data related concepts included) and Service.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.s4ener": {"id": "lov.s4ener", "homepage": "https://saref.etsi.org/saref4ener/", "uri_format": "https://saref.etsi.org/saref4ener/$1", "prefix": "s4ener", "name": "SAREF4EE: the EEbus/Energy@home extension of SAREF", "description": "This is the extension of SAREF for the EEBus and Energy@Home project. The documentation of SAREF4EE is available at http://ontology.tno.nl/SAREF4EE_Documentation_v0.1.pdf. SAREF4EE represents 1) The configuration information exchanged in the use case 'Remote Network Management' according to the EEBus Technical Report, Protocol Specification- Remote Network Management, version 1.0.0.2, 2015-09-19; 2) The scheduling information about power sequences exchanged in the use cases Appliance scheduling through CEM and remote start' and 'Automatic cycle rescheduling', according to the message structures described in General Message Structures, version 0.1.1, 2015-10-07; 3) The monitor and control information exchanged in the use case 'Communicate appliance status and info on manually planned cycles', according to the monitoring and control part of the Energy@Home Data Model, version 1.0; and 4) the event-based data exchanged in the use case 'Demand Response', according to General Message Structures, version 0.1.1, 2015-10-07.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.s4envi": {"id": "lov.s4envi", "homepage": "https://saref.etsi.org/saref4envi/", "uri_format": "https://saref.etsi.org/saref4envi/$1", "prefix": "s4envi", "name": "SAREF extension for environment", "description": "This ontology extends the SAREF ontology for the environment domain, specifically for the light pollution domain, including concepts like photometers, light, etc.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.s4inma": {"id": "lov.s4inma", "homepage": "https://saref.etsi.org/saref4inma/", "uri_format": "https://saref.etsi.org/saref4inma/$1", "prefix": "s4inma", "name": "SAREF4INMA: an extension of SAREF for the industry and manufacturing domain", "description": "SAREF4INMA is an extension of SAREF for the industry and manufacturing domain. SAREF4INMA focuses on extending SAREF for the industry and manufacturing domain to solve the lack of interoperability between various types of production equipment that produce items in a factory and, once outside the factory, between different organizations in the value chain to uniquely track back the produced items to the corresponding production equipment, batches, material and precise time in which they were manufactured. SAREF4INMA is specified and published by ETSI in the TS 103 410-5 associated to this ontology file. SAREF4INMA was created to be aligned with related initiatives in the smart industry and manufacturing domain in terms of modelling and standardization, such as the Reference Architecture Model for Industry 4.0 (RAMI), which combines several standards used by the various national initiatives in Europe that support digitalization in manufacturing. The full list of use cases, standards and requirements that guided the creation of SAREF4INMA are described in the associated ETSI TR 103 507.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.s4syst": {"id": "lov.s4syst", "homepage": "https://saref.etsi.org/saref4syst/", "uri_format": "https://saref.etsi.org/saref4syst/$1", "prefix": "s4syst", "name": "SAREF4SYST: an extension of SAREF for typology of systems and their inter-connections", "description": "The present document is the technical specification of SAREF4SYST, a generic extension of [ETSI TS 103 264 SAREF](https://www.etsi.org/deliver/etsi_ts/103200_103299/103264/02.01.01_60/ts_103264v020101p.pdf) that defines an ontology pattern which can be instantiated for different domains. SAREF4SYST defines Systems, Connections between systems, and Connection Points at which systems may be connected. These core concepts can be used generically to define the topology of features of interest, and can be specialized for multiple domains. The topology of features of interest is highly important in many use cases. If a room holds a lighting device, and if it is adjacent with an open window to a room whose luminosity is low, then by turning on the lighting device in the former room one may expect that the luminosity in the latter room will rise.\n\nThe SAREF4SYST ontology pattern can be instantiated for different domains. For example to describe zones inside a building (systems), that share a frontier (connections). Properties of systems are typically state variables (e.g. agent population, temperature), whereas properties of connections are typically flows (e.g. heat flow).\n\nSAREF4SYST has two main aims: on the one hand, to extend SAREF with the capability or representing general topology of systems and how they are connected or interact and, on the other hand, to exemplify how ontology patterns may help to ensure an homogeneous structure of the overall SAREF ontology and speed up the development of extensions.\n\nSAREF4SYST consists both of a core ontology, and guidelines to create ontologies following the SAREF4SYST ontology pattern. The core ontology is a lightweight OWL-DL ontology that defines 3 classes and 9 object properties.\n\nUse cases for ontology patterns are described extensively in [ETSI TR 103 549 Clauses 4.2 and 4.3](https://www.etsi.org/deliver/etsi_tr/103500_103599/103549/01.01.01_60/tr_103549v010101p.pdf).\n\nFor the Smart Energy domain:\n\n- Electric power systems can exchange electricity with other electric power systems. The electric energy can flow both ways in some cases (from the Public Grid to a Prosumer), or in only one way (from the Public Grid to a Load). Electric power systems can be made up of different sub-systems. Generic sub-types of electric power systems include producers, consumers, storage systems, transmission systems. \n- Electric power systems may be connected one to another through electrical connection points. An Electric power system may have multiple connection points (Multiple Winding Transformer generally have one single primary winding with two or more secondary windings). Generic sub-types of electrical connection points include plugs, sockets, direct-current, single-phase, three-phase, connection points. \n- An Electrical connection may exist between two Electric power systems at two of their respective connection points. Generic sub-types of electrical connections include Single-phase Buses, Three-phase Buses. A single-phase electric power system can be connected using different configurations at a three-phase bus (RN, SN, TN types).\n\nFor the Smart Building domain:\n\n- Buildings, Storeys, Spaces, are different sub-types of Zones. Zones can contain sub-zones. Zones can be adjacent or intersect with other zones. \n- Two zones may share one or more connections. For example some fresh air may be created inside a storey if it has two controllable openings to the exterior at different cardinal points. \n\nA graphical overview of the SAREF4SYST ontology is provided in Figure 1. In such figure:\n\n- Rectangles are used to denote Classes. The label of the rectangle is the identifier of the Class.\n- Plain arrows are used to represent Object Properties between Classes. The label of the arrow is the identifier of the Object Property. The origin of the arrow is the domain Class of the property, and the target of the arrow is the range Class of the property.\n- Dashed arrows with identifiers between stereotype signs (i.e. \"`<< >>`\") refer to OWL axioms that are applied to some property. Four pairs of properties are inverse one of the other; the property `s4syst:connectedTo` is symmetric, and properties `s4syst:hasSubSystem` and `s4syst:hasSubSystem` are transitive.\n- A symbol =1 near the target of an arrow denotes that the associated property is functional. A symbol ? denotes a local existential restriction.\n\n\n![SAREF4SYST overview](diagrams/overview.png)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.s4watr": {"id": "lov.s4watr", "homepage": "https://saref.etsi.org/saref4watr/", "uri_format": "https://saref.etsi.org/saref4watr/$1", "prefix": "s4watr", "name": "SAREF extension for water", "description": "This ontology extends the SAREF ontology for the water domain. This work has been developed in the context of the STF 566, which was established with the goal to create three SAREF extensions, one of them for the water domain.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.s4wear": {"id": "lov.s4wear", "homepage": "https://saref.etsi.org/saref4wear/", "uri_format": "https://saref.etsi.org/saref4wear/$1", "prefix": "s4wear", "name": "SAREF4WEAR: an extension of SAREF for Wearables", "description": "SAREF4WEAR is an extension of SAREF for Wearables", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.sam": {"id": "lov.sam", "homepage": "http://def.seegrid.csiro.au/isotc211/iso19156/2011/sampling", "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19156/2011/sampling#$1", "prefix": "sam", "name": "The Sampling Features Schema Vocabulary", "description": "An OWL representation of the Sampling Features Schema described in clauses 8-10 of ISO 19156:2011 Geographic Information - Observations and Measurements.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.samfl": {"id": "lov.samfl", "homepage": "http://def.seegrid.csiro.au/ontology/om/sam-lite", "uri_format": "http://def.seegrid.csiro.au/ontology/om/sam-lite#$1", "prefix": "samfl", "name": "OWL for Sampling Features", "description": "A simple OWL representation of the Sampling Features Schema described in clauses 9-11 of ISO 19156:2011 Geographic Information - Observations and Measurements", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.san-lod": {"id": "lov.san-lod", "homepage": "http://dati.san.beniculturali.it/SAN/", "uri_format": "http://dati.san.beniculturali.it/SAN/$1", "prefix": "san-lod", "name": "SAN Ontologia", "description": "SAN Ontology", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.sao": {"id": "lov.sao", "homepage": "http://salt.semanticauthoring.org/ontologies/sao", "uri_format": "http://salt.semanticauthoring.org/ontologies/sao#$1", "prefix": "sao", "name": "SALT Annotation Ontology", "description": "The SALT Annotation Ontology represents the connection layer between the rhetorical and argumentation and the document structure and content", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.saont": {"id": "lov.saont", "homepage": "https://w3id.org/sao", "uri_format": "https://w3id.org/sao#$1", "prefix": "saont", "name": "The System Accountability Ontology", "description": "An ontology to model accountability of generic systems.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.saref": {"id": "lov.saref", "homepage": "https://saref.etsi.org/core/", "uri_format": "https://saref.etsi.org/core/$1", "prefix": "saref", "name": "SAREF: the Smart Appliances REFerence ontology", "description": "The Smart Appliances REFerence (SAREF) ontology is a shared model of consensus that facilitates the matching of existing assets (standards/protocols/datamodels/etc.) in the smart appliances domain. The SAREF ontology provides building blocks that allow separation and recombination of different parts of the ontology depending on specific needs.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.saws": {"id": "lov.saws", "homepage": "http://purl.org/saws/ontology", "uri_format": "http://purl.org/saws/ontology#$1", "prefix": "saws", "name": "Sharing Ancient Wisdoms Ontology", "description": "Ontology for the Sharing Ancient Wisdoms (SAWS) project, to represent the information and knowledge available in medieval gnomologia (collections of wise sayings). SAWS concentrates mainly on Ancient Greek and Arabic manuscripts containing wisdom literature. All class descriptions are provided by domain experts and the ontology has been developed through collaboration between these experts and ontology developers.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.sbeo": {"id": "lov.sbeo", "homepage": "https://w3id.org/sbeo", "uri_format": "https://w3id.org/sbeo#$1", "prefix": "sbeo", "name": "SBEO: Smart Building Evacuation Ontology", "description": "Smart Building Evacuation Ontology (SBEO) is an ontology that couples the information about any building with its occupants such that it can be used in many useful ways. For example, indoor localization of people, detection of any hazard, a recommendation of normal routes such as shopping or stadium seating routes, or safe and feasible emergency evacuation routes or both of them all together. \n\nThe core SBEO covers the concepts related to the geometry of building, devices and components of the building, route graphs correspondent to the building topology, users' characteristics and preferences, situational awareness of both building (hazard detection, status of routes in terms of availability and occupancy) and users (tracking, management of groups, status in terms of fitness), and emergency evacuation.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.schema": {"id": "lov.schema", "homepage": "http://schema.org/", "uri_format": "http://schema.org/$1", "prefix": "schema", "name": "Schema.org vocabulary", "description": "Search engines including Bing, Google, Yahoo! and Yandex rely on schema.org markup to improve the display of search results, making it easier for people to find the right web pages.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.scip": {"id": "lov.scip", "homepage": "http://lod.taxonconcept.org/ontology/sci_people.owl", "uri_format": "http://lod.taxonconcept.org/ontology/sci_people.owl#$1", "prefix": "scip", "name": "Scientific People Ontology", "description": "A vocabulary for description of scientific people, focused on bio sciences", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.scoro": {"id": "lov.scoro", "homepage": "http://purl.org/spar/scoro/", "uri_format": "http://purl.org/spar/scoro/$1", "prefix": "scoro", "name": "Scholarly Contributions and Roles Ontology", "description": "SCoRO, the Scholarly Contributions and Roles Ontology, is an ontology for use by authors and publishers for describing the contributions that may be made and the roles that may be held by a person with respect to a journal article or other publication, and by research administrators and others for describing contributions and roles with respect to other aspects of scholarly research.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.scot": {"id": "lov.scot", "homepage": "http://rdfs.org/scot/ns#", "uri_format": "http://rdfs.org/scot/ns#$1", "prefix": "scot", "name": "Social Semantic Cloud of Tags", "description": "SCOT is an ontology for describing the structure and the semantics for tagging data across heterogenous users, sources, and applications.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.scovo": {"id": "lov.scovo", "homepage": "http://vocab.deri.ie/scovo", "uri_format": "http://purl.org/NET/scovo#$1", "prefix": "scovo", "name": "The Statistical Core Vocabulary", "description": "A vocabulary for representing statistical data on the Web. Note :The SCOVO vocabulary is deprecated. We strongly advise to use the Data Cube Vocabulary instead.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.scsv": {"id": "lov.scsv", "homepage": "http://vocab.deri.ie/scsv", "uri_format": "http://purl.org/NET/schema-org-csv#$1", "prefix": "scsv", "name": "Schema.org CSV", "description": "Mapping vocabulary for CSV files that use Schema.org terms in the header.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.sd": {"id": "lov.sd", "homepage": "http://www.w3.org/ns/sparql-service-description", "uri_format": "http://www.w3.org/ns/sparql-service-description#$1", "prefix": "sd", "name": "SPARQL 1.1 Service Description", "description": "Un vocabulaire pour d\u00e9crire des services SPARQL publi\u00e9s via le protocole SPARQL 1.1 pour RDF. Ces descriptions fournissent un m\u00e9canisme par lequel un client ou un utilisateur final peuvent obtenir des informations sur le service SPARQL, telles que les extensions de fonctions support\u00e9es ou les d\u00e9tails \u00e0 propos des jeux de donn\u00e9es disponibles.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.sdm": {"id": "lov.sdm", "homepage": "https://w3id.org/vocab/sdm", "uri_format": "https://w3id.org/vocab/sdm#$1", "prefix": "sdm", "name": "SPARQL endpoint metadata", "description": "A small vocabulary for representing SPARQL endpoint metadata on the web", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.sdmx": {"id": "lov.sdmx", "homepage": "http://purl.org/linked-data/sdmx", "uri_format": "http://purl.org/linked-data/sdmx#$1", "prefix": "sdmx", "name": "SDMX-RDF vocabulary", "description": "This vocabulary extends the data cube vocabulary to support publication of statistical data in RDF, using an information model based on SDMX", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.sdmx-code": {"id": "lov.sdmx-code", "homepage": "http://purl.org/linked-data/sdmx/2009/code", "uri_format": "http://purl.org/linked-data/sdmx/2009/code#$1", "prefix": "sdmx-code", "name": "SDMX Code", "description": "Defines subclasses and instances of codes used in SDMX, such as currencies, decimals, frequencies ...", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.sdmx-dimension": {"id": "lov.sdmx-dimension", "homepage": "http://purl.org/linked-data/sdmx/2009/dimension", "uri_format": "http://purl.org/linked-data/sdmx/2009/dimension#$1", "prefix": "sdmx-dimension", "name": "SDMX Dimension", "description": "Defines dimensions for the statistical \"cubes\" defined by SDMX", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.sdo": {"id": "lov.sdo", "homepage": "http://salt.semanticauthoring.org/ontologies/sdo", "uri_format": "http://salt.semanticauthoring.org/ontologies/sdo#$1", "prefix": "sdo", "name": "SALT Document Ontology", "description": "The SALT Document Ontology captures the linear structure of the publication, in addition to the identification and revisioning information of the publication's content.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["other humanities"]}, "lov.sealit": {"id": "lov.sealit", "homepage": "http://www.sealitproject.eu/ontology/", "uri_format": "http://www.sealitproject.eu/ontology/$1", "prefix": "sealit", "name": "SeaLiT Ontology", "description": "The SeaLiT Ontology is a formal ontology intended to facilitate the integration, mediation and interchange of heterogeneous information related to maritime history. It aims at providing the semantic definitions needed to transform disparate, localised information sources of maritime history into a coherent global resource. It also serves as a common language for domain experts and IT developers to formulate requirements and to agree on system functionalities with respect to the correct handling of historical information. The ontology uses and extends the CIDOC Conceptual Reference Model (ISO 21127:2014), in particular version 7.1.1, as a general ontology of human activity, things and events happening in space and time.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.search": {"id": "lov.search", "homepage": "http://vocab.deri.ie/search", "uri_format": "http://sindice.com/vocab/search#$1", "prefix": "search", "name": "Sindice Search Vocabulary", "description": "A vocabulary for ranked search results, for use in the Sindice API.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.seas": {"id": "lov.seas", "homepage": "https://w3id.org/seas/", "uri_format": "https://w3id.org/seas/$1", "prefix": "seas", "name": "SEAS ontology", "description": "This vocabulary is version v0.1 of the ITEA2 Smart Energy Aware Systems project vocabulary. It enables the description of electricity measurements of a site using the Data Cube W3C vocabulary.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.seas-eval": {"id": "lov.seas-eval", "homepage": "https://w3id.org/seas/EvaluationOntology", "uri_format": "https://w3id.org/seas/$1", "prefix": "seas-eval", "name": "The SEAS Evaluation ontology", "description": "The Evaluation ontology describes evaluation of [`seas:Property`ies](https://w3id.org/seas/Property). There may be:\n\n- direct evaluations, or\n- qualified evaluations.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.seas-op": {"id": "lov.seas-op", "homepage": "https://w3id.org/seas/OperatingOntology", "uri_format": "https://w3id.org/seas/$1", "prefix": "seas-op", "name": "The SEAS Failable System ontology", "description": "The SEAS Operating Ontology defines evaluations of operating features of interest.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.seas-qudt": {"id": "lov.seas-qudt", "homepage": "https://w3id.org/seas/QUDTAlignment", "uri_format": "https://w3id.org/seas/$1", "prefix": "seas-qudt", "name": "QUDT Alignment.", "description": "This ontology defines proposed alignemnts with the QUDT ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.seas-stats": {"id": "lov.seas-stats", "homepage": "https://w3id.org/seas/StatisticsOntology", "uri_format": "https://w3id.org/seas/$1", "prefix": "seas-stats", "name": "The SEAS Statistics ontology.", "description": "This ontology defines common evaluation interpretation concepts for statistics.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.seas-sys": {"id": "lov.seas-sys", "homepage": "https://w3id.org/seas/SystemOntology", "uri_format": "https://w3id.org/seas/$1", "prefix": "seas-sys", "name": "The SEAS System ontology", "description": "The System Ontology defines Systems, Connections between systems, and Connection Points at which systems may be connected. This ontology is then specialized for multiple domains. For example:\n\n- In electric energy: \n - power systems consume, produce, store, and exchange electricity;\n - power connections are where electricity flows between systems;\n - power connection points are plugs, sockets, or power busses.\n- In the electricity market:\n - players and markets are systems;\n - connections are contracts or transactions between two players, or between a player and a market;\n - connection points include offers and bids.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.seasb": {"id": "lov.seasb", "homepage": "https://w3id.org/seas/BatteryOntology", "uri_format": "https://w3id.org/seas/$1", "prefix": "seasb", "name": "The SEAS Battery ontology.", "description": "This ontology defines batteries and their state of charge ratio property.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.seasbo": {"id": "lov.seasbo", "homepage": "https://w3id.org/seas/BuildingOntology", "uri_format": "https://w3id.org/seas/$1", "prefix": "seasbo", "name": "The SEAS Building Ontology", "description": "The SEAS Building ontology describes a taxonomy of buildings, building spaces, and rooms.\n\nSome categorizations are based on the energy efficiency related to their insulation etc., although the actual values for classes depend the country specific regulations and geographical locations.\n\nOther categorizations are based on occupancy and activities. There is no single accepted categorization available. This taxonomy uses some types selected from:\n\n- International building occupancy based categories (USA)\n- The Classification of Types of Constructions (EU)\n- Finnish building categorization VTJ2000 (Finland)\n- Wikipedia category page for Rooms: https://en.wikipedia.org/wiki/Category:Rooms", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.seasd": {"id": "lov.seasd", "homepage": "https://w3id.org/seas/DeviceOntology", "uri_format": "https://w3id.org/seas/$1", "prefix": "seasd", "name": "The SEAS Device ontology", "description": "The SEAS Device ontology defines `seas:Device` as physical system that are designed to execute one or more procedures that involve the physical world.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.seasfo": {"id": "lov.seasfo", "homepage": "https://w3id.org/seas/ForecastingOntology", "uri_format": "https://w3id.org/seas/$1", "prefix": "seasfo", "name": "The SEAS Forecasting ontology", "description": "The SEAS Forecasting ontology extends the [Procedure Execution ontology (PEP)](https://w3id.org/pep/)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.seast": {"id": "lov.seast", "homepage": "https://w3id.org/seas/TimeOntology", "uri_format": "https://w3id.org/seas/$1", "prefix": "seast", "name": "The SEAS Time Ontology.", "description": "This ontology defines:\n- a set of subclasses of `seas:Evaluation` to better interpret evaluations of quantifiable properties.\n- a set of sub properties of `seas:hasProperty` to qualify time-related properties.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.seasto": {"id": "lov.seasto", "homepage": "https://w3id.org/seas/TradingOntology", "uri_format": "https://w3id.org/seas/$1", "prefix": "seasto", "name": "The SEAS Trading ontology", "description": "The Seas Trading Ontology defines concepts and relations to describe ownership, trading, bilateral contracts and market licenses:\n\n- players own systems and trade commodities, which have a price;\n- bilateral electricity contracts are connections between electricity traders at which they exchange\nelectricity;\n- electricity markets are connections between electricity traders at which they exchange electricity,\nusing a market license;\n- electricity markets can be cleared, and balanced;\n- evaluations can have a traded volume validity context", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.security": {"id": "lov.security", "homepage": "http://securitytoolbox.appspot.com/securityMain", "uri_format": "http://securitytoolbox.appspot.com/securityMain#$1", "prefix": "security", "name": "Security Ontology", "description": "A security ontology to annotate resources with security-related information", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.sem": {"id": "lov.sem", "homepage": "http://semanticweb.cs.vu.nl/2009/11/sem/", "uri_format": "http://semanticweb.cs.vu.nl/2009/11/sem/$1", "prefix": "sem", "name": "The SEM Ontology", "description": "The SEM Ontology defines entities that make up the context of an event: Events, Actors, Places, Times.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.semio": {"id": "lov.semio", "homepage": "http://www.lingvoj.org/semio.rdf", "uri_format": "http://www.lingvoj.org/semio#$1", "prefix": "semio", "name": "Semio, an ontology of signs", "description": "A vocabulary to describe signs in a semiotic approach", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.semiotics": {"id": "lov.semiotics", "homepage": "http://www.ontologydesignpatterns.org/cp/owl/semiotics.owl", "uri_format": "http://www.ontologydesignpatterns.org/cp/owl/semiotics.owl#$1", "prefix": "semiotics", "name": "A content ontology pattern that encodes a basic semiotic theory, by reusing the situation pattern.", "description": "A content ontology pattern that encodes a basic semiotic theory, by reusing the situation pattern. The basic classes are: Expression, Meaning, Reference (the semiotic triangle), LinguisticAct (for the pragmatics), and Agent.\nA linguistic act is said to be context for expressions, with their meanings and references, and agents involved.\nBased on this pattern, several specific linguistic acts, such as 'tagging', 'translating', 'defining', 'formalizing', etc. can be defined, so constituting a formal vocabulary for a pragmatic web.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.semsur": {"id": "lov.semsur", "homepage": "http://purl.org/SemSur/", "uri_format": "http://purl.org/SemSur/$1", "prefix": "semsur", "name": "The Semantic Survey Ontology (semsur)", "description": "SemSur, the Semantic Survey Ontology, is a core ontology for describing individual research problems, approaches, implementations and evaluations in a structured, comparable way.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.seo": {"id": "lov.seo", "homepage": "https://w3id.org/seo", "uri_format": "https://w3id.org/seo#$1", "prefix": "seo", "name": "The Scientific Events Ontology", "description": "The vocabulary allows for the description of data about scientific events such as conferences, symposiums and workshops.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.seq": {"id": "lov.seq", "homepage": "http://www.ontologydesignpatterns.org/cp/owl/sequence.owl", "uri_format": "http://www.ontologydesignpatterns.org/cp/owl/sequence.owl#$1", "prefix": "seq", "name": "Sequence Pattern", "description": "Intended to represent sequence schemas. It defines the notion of transitive and intransitive precedence and their inverses. It can then be used between tasks, processes, time intervals, spatially locate objects, situations, etc.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.service": {"id": "lov.service", "homepage": "http://purl.org/ontology/service", "uri_format": "http://purl.org/ontology/service#$1", "prefix": "service", "name": "The Service Ontology", "description": "A micro-ontology that defines the general concept of a service.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.sf": {"id": "lov.sf", "homepage": "http://www.opengis.net/ont/sf", "uri_format": "http://www.opengis.net/ont/sf#$1", "prefix": "sf", "name": "Simplified Features Geometry", "description": "A specification of GeoSPARQL for simple features geometries (points, lines, polygons ...)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["mathematics"]}, "lov.sh": {"id": "lov.sh", "homepage": "http://www.w3.org/ns/shacl#", "uri_format": "http://www.w3.org/ns/shacl#$1", "prefix": "sh", "name": "W3C Shapes Constraint Language (SHACL) Vocabulary", "description": "This vocabulary defines terms used in SHACL, the W3C Shapes Constraint Language.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.shoah": {"id": "lov.shoah", "homepage": "http://dati.cdec.it/lod/shoah/", "uri_format": "http://dati.cdec.it/lod/shoah/$1", "prefix": "shoah", "name": "Shoah Vocabulary Specification", "description": "The ontology describing the Shoah domain, proposed here in beta version, aims to formally describe concepts and relationships that characterize the process of persecution and deportation of Jews in Italy between 1943 and 1945.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.shw": {"id": "lov.shw", "homepage": "http://paul.staroch.name/thesis/SmartHomeWeather.owl#", "uri_format": "http://paul.staroch.name/thesis/SmartHomeWeather.owl#$1", "prefix": "shw", "name": "Smart Home Weather", "description": "An ontology defining weather-related concepts and properties being relevant to smart home systems that provide predictive control.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.sim": {"id": "lov.sim", "homepage": "http://purl.org/ontology/similarity/", "uri_format": "http://purl.org/ontology/similarity/$1", "prefix": "sim", "name": "The Similarity Ontology", "description": "An ontology to describe associations between things. Although this ontology was designed with music similarity in mind, it can readily be applied to other domains.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.simu": {"id": "lov.simu", "homepage": "https://www.w3id.org/simulation/ontology/", "uri_format": "https://www.w3id.org/simulation/ontology/$1", "prefix": "simu", "name": "Simulation Ontology", "description": "This ontology was designed to conceptualize symbolic meanings following Baudrillard's Simulacra and Simulation theory. Symbols, their meaning, the context in which the symbolic meaning (or simulation) exists and the source of the simulation are linked to a N-ary Simulation Class.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.sio": {"id": "lov.sio", "homepage": "http://semanticscience.org/ontology/sio.owl", "uri_format": "http://semanticscience.org/resource/$1", "prefix": "sio", "name": "Semanticscience Integrated Ontology", "description": "The semanticscience integrated ontology (SIO) provides a simple, integrated ontology (types, relations) for objects, processes and their attributes. This project provides foundational support for the Bio2RDF (http://bio2rdf.org) and SADI (http://sadiframework.org) projects.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences"]}, "lov.sioc": {"id": "lov.sioc", "homepage": "http://rdfs.org/sioc/ns#", "uri_format": "http://rdfs.org/sioc/ns#$1", "prefix": "sioc", "name": "Semantically-Interlinked Online Communities", "description": "SIOC is an ontology for describing the information in online communities.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.situ": {"id": "lov.situ", "homepage": "http://www.ontologydesignpatterns.org/cp/owl/situation.owl", "uri_format": "http://www.ontologydesignpatterns.org/cp/owl/situation.owl#$1", "prefix": "situ", "name": "Situation Pattern", "description": "A pattern to represent contexts or situations, and the things that are contextualized.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.skos": {"id": "lov.skos", "homepage": "http://www.w3.org/2004/02/skos/core", "uri_format": "http://www.w3.org/2004/02/skos/core#$1", "prefix": "skos", "name": "Simple Knowledge Organization System", "description": "The Simple Knowledge Organization System (SKOS) is a common data model for sharing and linking knowledge organization systems via the Semantic Web.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.skosxl": {"id": "lov.skosxl", "homepage": "http://www.w3.org/2008/05/skos-xl", "uri_format": "http://www.w3.org/2008/05/skos-xl#$1", "prefix": "skosxl", "name": "SKOS eXtension for Labels", "description": "SKOS-XL defines an extension for the Simple Knowledge Organization System, providing additional support for describing and linking lexical entities.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.smg": {"id": "lov.smg", "homepage": "http://ns.cerise-project.nl/energy/def/cim-smartgrid", "uri_format": "http://ns.cerise-project.nl/energy/def/cim-smartgrid#$1", "prefix": "smg", "name": "CERISE CIM Profile for Smart Grids", "description": "A Profile of the IEC Common Information Model for Smart Grids, developed by the Cerise-SG project.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.snarm": {"id": "lov.snarm", "homepage": "http://rdf.myexperiment.org/ontologies/snarm/", "uri_format": "http://rdf.myexperiment.org/ontologies/snarm/$1", "prefix": "snarm", "name": "Simple Network Access Rights Management Ontology", "description": "This ontology is designed for representing access rights within a simple network of associated users/groups", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.solid": {"id": "lov.solid", "homepage": "http://www.w3.org/ns/solid/terms", "uri_format": "http://www.w3.org/ns/solid/terms#$1", "prefix": "solid", "name": "Solid terms", "description": "Solid terms", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.sor": {"id": "lov.sor", "homepage": "http://purl.org/net/soron", "uri_format": "http://purl.org/net/soron/$1", "prefix": "sor", "name": "SORON: Social Relationships ONtology", "description": "The Social Relationships ONtology (SORON) attempts to describe the different types of social relationships in society (both objective and subjective). Current version focuses on inter-personal 1:1 relationships (except family relationships). Other types of relationships may be covered in later versions. It complements FOAF and RELATIONSHIP ontologies.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.sosa": {"id": "lov.sosa", "homepage": "http://www.w3.org/ns/sosa/", "uri_format": "http://www.w3.org/ns/sosa/$1", "prefix": "sosa", "name": "Sensor, Observation, Sample, and Actuator (SOSA) Ontology", "description": "This ontology is based on the SSN Ontology by the W3C Semantic Sensor Networks Incubator Group (SSN-XG), together with considerations from the W3C/OGC Spatial Data on the Web Working Group.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.sp": {"id": "lov.sp", "homepage": "http://spinrdf.org/sp", "uri_format": "http://spinrdf.org/sp#$1", "prefix": "sp", "name": "SPIN SPARQL Syntax", "description": "An RDF Schema to syntactically represent SPARQL queries (including SPARQL UPDATE) as RDF triples.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.spatial": {"id": "lov.spatial", "homepage": "http://geovocab.org/spatial", "uri_format": "http://geovocab.org/spatial#$1", "prefix": "spatial", "name": "NeoGeo Spatial Ontology", "description": "A vocabulary for describing topological relations between features", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["mathematics"]}, "lov.spcm": {"id": "lov.spcm", "homepage": "http://spi-fm.uca.es/spdef/models/deployment/spcm/1.0", "uri_format": "http://spi-fm.uca.es/spdef/models/deployment/spcm/1.0#$1", "prefix": "spcm", "name": "Software Process Control Model", "description": "La planificaci\u00f3n y monitorizaci\u00f3n de la ejecuci\u00f3n de proyectos software puede llevarse a cabo con diferentes herramientas, desde sistemas basados en gesti\u00f3n de tareas, hasta herramientas especializadas en diagramas de Gantt o incluso mediante simples hojas de c\u00e1lculo. Este vocabulario contempla los elementos t\u00edpicos a la hora de controlar los proyectos de desarrollo o mantenimiento de software.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.spfood": {"id": "lov.spfood", "homepage": "http://kmi.open.ac.uk/projects/smartproducts/ontologies/food.owl", "uri_format": "http://kmi.open.ac.uk/projects/smartproducts/ontologies/food.owl#$1", "prefix": "spfood", "name": "SmartProducts Food Domain Model", "description": "Defines concepts and properties specific for the SmartProducts Philips use case (cooking domain).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["agriculture, forestry, and fisheries"]}, "lov.spin": {"id": "lov.spin", "homepage": "http://spinrdf.org/spin", "uri_format": "http://spinrdf.org/spin#$1", "prefix": "spin", "name": "SPIN Inferencing Vocabulary", "description": "An RDF Schema that can be used to attach constraints and rules to RDFS classes, and to encapsulate reusable SPARQL queries into functions and templates.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.sport": {"id": "lov.sport", "homepage": "http://www.bbc.co.uk/ontologies/sport", "uri_format": "http://www.bbc.co.uk/ontologies/sport/$1", "prefix": "sport", "name": "BBC Sport Ontology", "description": "A simple ontology for representing competitive sports events.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.spt": {"id": "lov.spt", "homepage": "http://spitfire-project.eu/ontology/ns", "uri_format": "http://spitfire-project.eu/ontology/ns/$1", "prefix": "spt", "name": "SPITFIRE Ontology", "description": "TheSPITFIRE Ontology (spt) is based on the alignment among Dolce+DnS Ultralite(dul), the W3C Semantic Sensor Network ontology (ssn) and the Event Model-F ontology (event).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.spvqa": {"id": "lov.spvqa", "homepage": "https://bmake.th-brandenburg.de/spv", "uri_format": "https://bmake.th-brandenburg.de/spv#$1", "prefix": "spvqa", "name": "Scholarly Papers Vocabulary with Focus on Qualtitative Analysis", "description": "The ontology is aimed at the support of research groups in the field of Business Modeling and Knowledge Engineering (BMaKE) in their collaborative work for qualitatively analyzing scholarly papers as well as sharing the results of that analyses and judgements.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.sql": {"id": "lov.sql", "homepage": "http://ns.inria.fr/ast/sql#", "uri_format": "http://ns.inria.fr/ast/sql#$1", "prefix": "sql", "name": "SQL Abstract Syntax Trees Vocabulary", "description": "The SQL AST Vocabulary allows SQL code abstract syntax trees to be published in RDF.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.ssn": {"id": "lov.ssn", "homepage": "http://www.w3.org/ns/ssn/", "uri_format": "http://www.w3.org/ns/ssn/$1", "prefix": "ssn", "name": "Semantic Sensor Network Ontology", "description": "This ontology describes sensors and observations, and related concepts. It does not describe domain concepts, time, locations, etc. these are intended to be included from other ontologies via OWL imports.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.ssno": {"id": "lov.ssno", "homepage": "http://www.w3.org/ns/ssn/", "uri_format": "http://www.w3.org/ns/ssn/$1", "prefix": "ssno", "name": "Semantic Sensor Network Ontology", "description": "This ontology describes sensors, actuators and observations, and related concepts. It does not describe domain concepts, time, locations, etc. these are intended to be included from other ontologies via OWL imports.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.ssso": {"id": "lov.ssso", "homepage": "http://purl.org/ontology/ssso", "uri_format": "http://purl.org/ontology/ssso#$1", "prefix": "ssso", "name": "Simple Service Status Ontology", "description": "An event-based RDF ontology for typical status in fulfillment of a service", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.st": {"id": "lov.st", "homepage": "http://semweb.mmlab.be/ns/stoptimes#Ontology", "uri_format": "http://semweb.mmlab.be/ns/stoptimes#$1", "prefix": "st", "name": "The Stop Times ontology", "description": "This ontology provides the predicates necessary to describe an arrival of a transit vehicle and its departure at a certain Stop.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.stac": {"id": "lov.stac", "homepage": "http://securitytoolbox.appspot.com/stac", "uri_format": "http://securitytoolbox.appspot.com/stac#$1", "prefix": "stac", "name": "Security Toolbox : Attacks and Countermeasures", "description": "A vocabulary to describe main security and cryptographic concepts: attacks, security mechanisms, OSI model, security protocols, security tools in numerous technologies: Web applications, network management, Sensor networks, Cellular (2G, 3G, 4G) and Wireless (Wifi), etc.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.step": {"id": "lov.step", "homepage": "http://purl.org/net/step", "uri_format": "http://purl.org/net/step#$1", "prefix": "step", "name": "Semantic Trajectory Episodes", "description": "A lightweight ontology for representing semantic trajectories and contextual elements in terms of features of interests and episodes.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.sto": {"id": "lov.sto", "homepage": "https://w3id.org/i40/sto#", "uri_format": "https://w3id.org/i40/sto#$1", "prefix": "sto", "name": "i40 Standards Lanscape Vocabulary", "description": "A vocabulary to describe the relation between standards in use on the Industry 4.0, and related concepts", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.stories": {"id": "lov.stories", "homepage": "http://purl.org/ontology/stories/", "uri_format": "http://purl.org/ontology/stories/$1", "prefix": "stories", "name": "Stories Ontology", "description": "The Stories ontology was developed in collaboration with the BBC, with an aim to creating an ontology for narrative representation that could be applied across a diverse set of cases. These included accounts of events in Northern Ireland, the storylines of Doctor Who episodes, and key events of the Battle of Britain.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.summa": {"id": "lov.summa", "homepage": "http://purl.org/voc/summa/", "uri_format": "http://purl.org/voc/summa/$1", "prefix": "summa", "name": "SUMMA Vocabulary", "description": "The SUMMA Vocabulary enables to request and represent summarized RDf resources. It should be used in context to the SUMMA API definition.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.sur": {"id": "lov.sur", "homepage": "https://www.w3id.org/survey-ontology", "uri_format": "https://w3id.org/survey-ontology#$1", "prefix": "sur", "name": "The Survey Ontology", "description": "Ontology for surveys based on the Coney data model.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.sw-quality": {"id": "lov.sw-quality", "homepage": "https://w3id.org/squap/", "uri_format": "https://w3id.org/squap/SoftwareQuality/$1", "prefix": "sw-quality", "name": "SQuAP Ontology", "description": "Quality, architecture, and process are considered the keystones of software engineering. ISO defines them in three separate standards. However, their interaction has been poorly studied, so far. The SQuAP model (Software Quality, Architecture, Process) describes twenty-eight main factors that impact on software quality in banking systems, and each factor is described as a relation among some characteristics from the three ISO standards. Hence, SQuAP makes such relations emerge rigorously, although informally. SQaAP-Ont is an OWL ontology that formalises those relations in order to represent and reason via Linked Data about software engineering in a three-dimensional model consisting of quality, architecture, and process characteristics.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.swc": {"id": "lov.swc", "homepage": "http://data.semanticweb.org/ns/swc/ontology", "uri_format": "http://data.semanticweb.org/ns/swc/ontology#$1", "prefix": "swc", "name": "Semantic Web Conference Ontology", "description": "The Semantic Web Conference ontology (SWC) is an ontology for describing academic conferences", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.swemls": {"id": "lov.swemls", "homepage": "https://w3id.org/semsys/ns/swemls", "uri_format": "https://w3id.org/semsys/ns/swemls#$1", "prefix": "swemls", "name": "Semantic-Web Machine Learning System (SWeMLS) Ontology", "description": "An ontology to describe a Semantic-Web Machine Learning System (SWeMLS)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.swp": {"id": "lov.swp", "homepage": "http://www.w3.org/2004/03/trix/swp-1", "uri_format": "http://www.w3.org/2004/03/trix/swp-1/$1", "prefix": "swp", "name": "Graph Authority", "description": "This vocabulary allows to attach an authority to a named graph", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.swpm": {"id": "lov.swpm", "homepage": "http://spi-fm.uca.es/spdef/models/deployment/swpm/1.0", "uri_format": "http://spi-fm.uca.es/spdef/models/deployment/swpm/1.0#$1", "prefix": "swpm", "name": "Software Work Product Model", "description": "During the modeling of software processes, work products are traditionally treated as atomic units, with names but no structure, and they are generated or changed during the course of the projects. In fact, the language SPEM does not offer mechanisms to detail the structure of work products, allowing only identify whether it is an artifact, a deliverable or an outcome of the project. The typical work products in the software processes are often documents or source code and they are managed from specialized or generic tools. For example, software modeling tools such as Rational Rose, or version control systems such as Git are examples of specialized tools that provide support to the management of certain types of work products. However, other generic tools such as content management systems, document management systems and collaborative editing systems or wikis can also be used to manage evidences of the processes. The design of models for certain types of work products has been an approach used in model-driven web methodologies. However, it is common the need for adapting and customizing well-known methodologies for their application in concrete situations and in specific organizations, a.k.a. process tailoring. Therefore, a vocabulary to define flexible work products in terms of structure and type of its artifacts is proposed here.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.swpo": {"id": "lov.swpo", "homepage": "http://sw-portal.deri.org/ontologies/swportal", "uri_format": "http://sw-portal.deri.org/ontologies/swportal#$1", "prefix": "swpo", "name": "Semantic Web Portal Ontology", "description": "The aim of the Semantic Web Portal Ontology is to serve as the conceptual backbone for community portals driven by Semantic Web technologies.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.swrc": {"id": "lov.swrc", "homepage": "http://swrc.ontoware.org/ontology-07", "uri_format": "http://swrc.ontoware.org/ontology#$1", "prefix": "swrc", "name": "Semantic Web for Research Communities", "description": "An ontology for modeling entities of research communities such as persons, organisations, publications (bibliographic metadata) and their relationship", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.swrl": {"id": "lov.swrl", "homepage": "http://www.w3.org/2003/11/swrl", "uri_format": "http://www.w3.org/2003/11/swrl#$1", "prefix": "swrl", "name": "Semantic Web Rule Language", "description": "OWL definition of the RDF Concrete Syntax for the Semantic Web Rule Language", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.synsem": {"id": "lov.synsem", "homepage": "http://www.w3.org/ns/lemon/synsem", "uri_format": "http://www.w3.org/ns/lemon/synsem#$1", "prefix": "synsem", "name": "Lexicon Model for Ontologies - Synsem", "description": "A model for the representation of lexical information relative to ontologies. Syntax and semantics module.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tac": {"id": "lov.tac", "homepage": "http://ns.bergnet.org/tac/0.1/triple-access-control", "uri_format": "http://ns.bergnet.org/tac/0.1/triple-access-control#$1", "prefix": "tac", "name": "TripleAccessControl Ontology", "description": "The TripleAccessControl Ontology is an extension to WebAccessControl Ontology to describe access control rules for RDF triples.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.tag": {"id": "lov.tag", "homepage": "http://www.holygoat.co.uk/owl/redwood/0.1/tags/", "uri_format": "http://www.holygoat.co.uk/owl/redwood/0.1/tags/$1", "prefix": "tag", "name": "Tag ontology", "description": "An ontology that let users define relationships between Tag objects and URIs of Semantic Web resources", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tao": {"id": "lov.tao", "homepage": "http://vocab.deri.ie/tao", "uri_format": "http://vocab.deri.ie/tao#$1", "prefix": "tao", "name": "Trust Assertion Ontology", "description": "TAO is a light-weight vocabulary to describe asserted user\u2019s subjective trust values.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tax": {"id": "lov.tax", "homepage": "https://w3id.org/EUTaxO", "uri_format": "https://w3id.org/EUTaxO#$1", "prefix": "tax", "name": "EUTaxO - EUdaphobase Taxonomy Ontology", "description": "EUdaphobase Taxonomy Ontology for the European Soil-Biology Data Warehouse for Soil Protection", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences"]}, "lov.taxon": {"id": "lov.taxon", "homepage": "http://purl.org/biodiversity/taxon/", "uri_format": "http://purl.org/biodiversity/taxon/$1", "prefix": "taxon", "name": "TaxonMap Ontology", "description": "This is the initial vocabulary for mapping the various taxon classes on the Linked Open Data Cloud", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences"]}, "lov.taxref-ld": {"id": "lov.taxref-ld", "homepage": "http://taxref.mnhn.fr/lod/taxref-ld", "uri_format": "http://taxref.mnhn.fr/lod/$1", "prefix": "taxref-ld", "name": "TAXREF-LD Ontology", "description": "Representation of the TAXREF taxonomic register as linked data. This resource is at the same time an ontology of classes depicting the taxa and a thesaurus (SKOS concept scheme) of the scientific names attached to the taxa.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences", "earth and related environmental sciences"]}, "lov.tb": {"id": "lov.tb", "homepage": "https://w3id.org/timebank", "uri_format": "https://w3id.org/timebank#$1", "prefix": "tb", "name": "Timebank Ontology", "description": "An ontology to describe people and requests for timebanks. This includes the poeple's skills, limitations, and environment.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.td": {"id": "lov.td", "homepage": "https://www.w3.org/2019/wot/td", "uri_format": "https://www.w3.org/2019/wot/td#$1", "prefix": "td", "name": "Thing Description Ontology", "description": "This ontology aims to model the Web of Things domain according to the W3C Interest Group (http://w3c.github.io/wot/)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.tddfa": {"id": "lov.tddfa", "homepage": "https://w3id.org/todo/tododfa", "uri_format": "https://w3id.org/todo/tododfa#$1", "prefix": "tddfa", "name": "TODODFA: Frame-Action Module for Task-Oriented Dialogue management Ontology (TODO)", "description": "Module for Action (and Frame) modelling inside domain.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tddial": {"id": "lov.tddial", "homepage": "https://w3id.org/todo/tododial", "uri_format": "https://w3id.org/todo/tododial#$1", "prefix": "tddial", "name": "TODODial: Dialogue Module for Task-Oriented Dialogue management Ontology (TODO)", "description": "Module for dialogue process and system output management.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tddm": {"id": "lov.tddm", "homepage": "https://w3id.org/todo/tododm", "uri_format": "https://w3id.org/todo/tododm#$1", "prefix": "tddm", "name": "TODODM: Dialogue Management Module for Task-Oriented Dialogue management Ontology (TODO)", "description": "Module for dialogue process and system output management.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tddom": {"id": "lov.tddom", "homepage": "https://w3id.org/todo/tododom", "uri_format": "https://w3id.org/todo/tododom#$1", "prefix": "tddom", "name": "TODODom: Domain Module for Task-Oriented Dialogue management Ontology (TODO)", "description": "Module for domain modelling.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tddt": {"id": "lov.tddt", "homepage": "https://w3id.org/todo/tododt", "uri_format": "https://w3id.org/todo/tododt#$1", "prefix": "tddt", "name": "TODODT: Dialogue Tracing Module for Task-Oriented Dialogue management Ontology (TODO)", "description": "Module for dialogue tracing.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tddw": {"id": "lov.tddw", "homepage": "https://w3id.org/todo/tododw", "uri_format": "https://w3id.org/todo/tododw#$1", "prefix": "tddw", "name": "TODODW: World Module for Task-Oriented Dialogue management Ontology (TODO)", "description": "Module for scenario modelling (world elements) of domain.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.te": {"id": "lov.te", "homepage": "http://www.w3.org/2006/time-entry", "uri_format": "http://www.w3.org/2006/time-entry#$1", "prefix": "te", "name": "Time Entry", "description": "An entry sub-ontology of time (OWL-Time).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.teach": {"id": "lov.teach", "homepage": "http://linkedscience.org/teach/ns#", "uri_format": "http://linkedscience.org/teach/ns#$1", "prefix": "teach", "name": "Teaching Core Vocabulary Specification", "description": "TEACH, the Teaching Core Vocabulary, is a lightweight vocabulary providing terms to enable teachers to relate things in their courses together. The Teaching Core Vocabulary is based on practical requirements set by providing seminar and course descriptions as Linked Data.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.tempo": {"id": "lov.tempo", "homepage": "http://purl.org/tempo", "uri_format": "http://purl.org/tempo/$1", "prefix": "tempo", "name": "TempO - Temporal Ontology", "description": "In a typical (uni)temporal data model every resource's appearance (and disappearance) is being tracked.\nNumerous systems accomplish unitemporal tracking, either externally by e.g. using git to record the insertion or deletion of a resource, or internally by e.g. using prov:generatedAtTime and prov:invalidatedAtTime.\nThis axis of time is known as *system time*, and none of TempO's concern because for one there is readily available support, and moreover because unitemporal tracking is used for principally true statements, i.e. those that have always been (considered) true or will always be (considered) true.\n\nTempO addresses bitemporal and tritemporal setups: Resources which are (known or believed to be) valid and efficacious for some time.\nA second time axis orthogonal to system time is introduced, that is a resource can be valid even though it is currently not in the system, or, conversely, can be already or still invalid by the time it enters the system.\n\nEfficacy, sometimes called decision time, is yet another concept orthogonal to validity, i.e. a resource that is no longer or not yet valid can be efficacious.\nThe converse, a valid but inefficacious resource in the system, is *usually* not encountered but TempO does not impose restrictions on the shape of the time area.\n\nIn general the necessity for tracking both validity and efficacy arises in areas where concepts are assigned a code or label that is subject to reuse following invalidation.\nTracking efficacy and validity concurrently then allows for fine-grained control over how much future knowledge or how much past knowledge we tolerate in a datset.\n\nExample:\n--------\nCzechoslovakia was founded in 1918 but became part of Germany, Hungary and Poland in 1938.\nIt was reestablished in 1945 but split into two sovereign states in 1993.\nThe ISO 3166 country code for Czechoslovakia used to be 'CS', assigned in 1974, published in February 1978, and invalidated with the country's split.\nIn 2003 ISO 3166 reassigned the country code 'CS' to Serbia and Montenegro.\nThe facts were assembled in 2018 and written down as follows:\n\n cc:CSHH\n a cc:ISO3166-CountryCode ;\n rdfs:label \"CS\" ;\n cc:refersTo \"Czechoslovakia\" ;\n prov:generatedAtTime \"2018-02-29T04:00:00Z\"^^xsd:dateTime .\n tempo:validFrom \"1978-02\"^^xsd:gYearMonth ;\n tempo:validTill \"1993-01-01\"^^xsd:date ;\n tempo:efficaciousFrom \"1918\"^^xsd:gYear , \"1945\"^^xsd:gYear ;\n tempo:efficaciousTill \"1938\"^^xsd:gYear , \"2003\"^^xsd:gYear .\n\nThe use of the country code 'CS' in a statement from 1988 can be resolved to cc:CSHH, as of today, free from ambiguity; it was valid back then after all and we know that today.\nThe same query in 2017 (point-in-time query) would have yielded no results because the information hadn't been in the system back then.\nPoint-in-time queries, however, are not TempO's major concern so only as-of-today queries are assumed from now on.\n\nFollowing the country's split it is highly likely that news reports from, say, 1994 highlighting the then-recent past would still have used 'CS' to refer to cc:CSHH.\nAccording to the resource this is possible, a query for 'CS' in 1994 would bring up cc:CSHH as it is efficacious but marked as invalidated.\n\nOn the other end of history, the use of the code 'CS' in, say, 1976 is plausible. The code was decided on but not yet formally published.\nA query for 'CS' as used in 1976 would bring up cc:CSHH, marked as anachronistic.\nGoing back further, a statement from, say 1942, using the code 'CS' must clearly refer to something else.\nA query for 'CS' as used in 1976 would yield not yield any results.\n\n--\n\nThe ontology IRI http://purl.org/tempo/ always resolve to the latest version of TempO. Particular versionIRIs such as http://purl.org/tempo/0.1/ can be used by clients to force the import of a particular version.\n\nThe goal of TempO is to allow for temporal constraints with control over how much future or past is permissible directly on the published resource, and as such, TempO does not restrict domain/ranges.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.test": {"id": "lov.test", "homepage": "http://www.w3.org/2006/03/test-description", "uri_format": "http://www.w3.org/2006/03/test-description#$1", "prefix": "test", "name": "Test Metadata", "description": "This ontology aims at defining the Quality Assurance Framework by collecting the test development experience of W3C Working Groups and summarizing the work done about tests and metadata.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tfo": {"id": "lov.tfo", "homepage": "https://privatealpha.com/ontology/transformation/1#", "uri_format": "https://privatealpha.com/ontology/transformation/1#$1", "prefix": "tfo", "name": "Transformation Functions Ontology", "description": "This document describes functions which transform HTTP representations, i.e., the actual literal payloads of HTTP messages.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.theatre": {"id": "lov.theatre", "homepage": "http://purl.org/theatre#", "uri_format": "http://purl.org/theatre#$1", "prefix": "theatre", "name": "Theatre Ontology", "description": "An ontology for organising theatrical data.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.thors": {"id": "lov.thors", "homepage": "http://resource.geosciml.org/ontology/timescale/thors", "uri_format": "http://resource.geosciml.org/ontology/timescale/thors#$1", "prefix": "thors", "name": "The Temporal Ordinal Reference Systems", "description": "An OWL representation of the model for Temporal Ordinal Reference Systems defined in GeoSciML v3.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ti": {"id": "lov.ti", "homepage": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl", "uri_format": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#$1", "prefix": "ti", "name": "The Time Interval Pattern", "description": "This pattern is extracted from DOLCE-UltraLite by partial clone of elements and expansion. Two datatype properties have been added which allow to express the boundaries of the time interval.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.time": {"id": "lov.time", "homepage": "http://www.w3.org/2006/time", "uri_format": "http://www.w3.org/2006/time#$1", "prefix": "time", "name": "Time Ontology", "description": "This vocabulary defines temporal entities such as time intervals, their properties and relationships.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tio": {"id": "lov.tio", "homepage": "http://purl.org/tio/ns#", "uri_format": "http://purl.org/tio/ns#$1", "prefix": "tio", "name": "The Tickets Ontology", "description": "A vocabulary for describing tickets for events, transportation, or points of interest for e-commerce.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tis": {"id": "lov.tis", "homepage": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl", "uri_format": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl$1", "prefix": "tis", "name": "Time Indexed Situation", "description": "A generic pattern usable for all situations that require a temporal indexing.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tisc": {"id": "lov.tisc", "homepage": "http://www.observedchange.com/tisc/ns#", "uri_format": "http://observedchange.com/tisc/ns#$1", "prefix": "tisc", "name": "Open Time and Space Core Vocabulary", "description": "TISC, the Open Time and Space Core Vocabulary, is a lightweight spatiotemporal vocabulary aiming to provide spatial and temporal terms such as \"happensAt\", \"locatedAt\", \"rightOf\" to enable practitioners to relate their data to time and space.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tl": {"id": "lov.tl", "homepage": "http://purl.org/NET/c4dm/timeline.owl", "uri_format": "http://purl.org/NET/c4dm/timeline.owl#$1", "prefix": "tl", "name": "The Timeline Ontology", "description": "Extends owl-time ontology with support for several timelines, acting as a backbone to adress time interval/instants. Mainly designed with a multimedia use-case in mind.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tm": {"id": "lov.tm", "homepage": "http://def.seegrid.csiro.au/isotc211/iso19108/2002/temporal", "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19108/2002/temporal#$1", "prefix": "tm", "name": "A vocabulary for temporal objects in Geographic Information", "description": "An OWL representation of part of the model for Temporal objects and reference systems from ISO 19108:2002 Geographic Information - Temporal Schema", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tmo": {"id": "lov.tmo", "homepage": "http://www.w3.org/2001/sw/hcls/ns/transmed/", "uri_format": "http://www.w3.org/2001/sw/hcls/ns/transmed/$1", "prefix": "tmo", "name": "Translational Medicine Ontology", "description": "The Translational Medicine Ontology (TMO) is a high-level, patient-centric ontology that extends existing domain ontologies to integrate data across aspects of drug discovery and clinical practice. The ontology has been developed by participants in the World Wide Web Consortium's Semantic Web for Health Care and Life Sciences Interest Group", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["health sciences"]}, "lov.toco": {"id": "lov.toco", "homepage": "http://purl.org/toco/", "uri_format": "http://purl.org/toco/$1", "prefix": "toco", "name": "Toucan Ontology", "description": "A ontology developed for telecommunciation network systems with hybrid technologies, e.g., WiFi, LiFi, LTE, 2G/3G, optical, etc.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.todo": {"id": "lov.todo", "homepage": "https://w3id.org/todo", "uri_format": "https://w3id.org/todo#$1", "prefix": "todo", "name": "TODO: Task-Oriented Dialogue management Ontology", "description": "With the aim of enhancing natural communication between workers in industrial environments and the systems to be used by them, TODO (Task-Oriented Dialogue management Ontology) has been developed to be the core of task-oriented dialogue systems. TODO is a core ontology that provides task-oriented dialogue systems with the necessary means to be capable of naturally interacting with workers (both at understanding and at ommunication levels) and that can be easily adapted to different industrial scenarios, reducing adaptation time and costs. Moreover, it allows to store and reproduce the dialogue process to be able to learn from new interactions.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.topo": {"id": "lov.topo", "homepage": "http://data.ign.fr/def/topo", "uri_format": "http://data.ign.fr/def/topo#$1", "prefix": "topo", "name": "Ontologie des \u00e9l\u00e9ments du territoire et de ses infrastructures de l'IGN", "description": "Ontologie d\u00e9crivant les \u00e9l\u00e9ments du territoire et ses infrastructures. Elle repend l'essentiel du vocabulaire de la BDTOPO(IGN) et vise \u00e0 couvrir l'ensemble des entit\u00e9s topographiques et administratives du territoire national. Les th\u00e8mes couverts sont: le r\u00e9seau routier, le r\u00e9seau ferroviaire, le r\u00e9seau de transport d'\u00e9nergie, le r\u00e9seau hydrographique, les b\u00e2timents, la v\u00e9g\u00e9tation arbor\u00e9e, l'orographie, les communes, les points d'activit\u00e9 ou d'int\u00e9r\u00eat.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.tp": {"id": "lov.tp", "homepage": "http://tour-pedia.org/download/tp.owl", "uri_format": "http://tour-pedia.org/download/tp.owl#$1", "prefix": "tp", "name": "Tourpedia Ontology", "description": "A vocabulary to describe touristic places: accommodations, points of interest, restaurants and attractions.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.traffic": {"id": "lov.traffic", "homepage": "http://www.sensormeasurement.appspot.com/ont/transport/traffic", "uri_format": "http://www.sensormeasurement.appspot.com/ont/transport/traffic#$1", "prefix": "traffic", "name": "Road Traffic Management", "description": "An ontology that describes the management of the traffic in a straight road with two lanes, both in the same direction.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.trait": {"id": "lov.trait", "homepage": "http://contextus.net/ontology/ontomedia/ext/common/trait#", "uri_format": "http://contextus.net/ontology/ontomedia/ext/common/trait#$1", "prefix": "trait", "name": "OntoMedia Trait Representation", "description": "OntoMedia (Ontology for Media) has been designed to describe the traits of entities.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.transit": {"id": "lov.transit", "homepage": "http://vocab.org/transit/terms/", "uri_format": "http://vocab.org/transit/terms/$1", "prefix": "transit", "name": "TRANSIT", "description": "A vocabulary for describing transit systems and routes", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.trao": {"id": "lov.trao", "homepage": "http://linkeddata.finki.ukim.mk/lod/ontology/tao#", "uri_format": "http://linkeddata.finki.ukim.mk/lod/ontology/tao#$1", "prefix": "trao", "name": "Transport Administration Ontology", "description": "Transport Administration Ontology (TAO) for describing data from Swedish Transport Administration Web site.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tree": {"id": "lov.tree", "homepage": "https://w3id.org/tree", "uri_format": "https://w3id.org/tree#$1", "prefix": "tree", "name": "TREE", "description": "A hypermedia specification for fragmenting collections.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tresiot": {"id": "lov.tresiot", "homepage": "https://liidr.org/trust-recommendation-in-social-internet-of-things/", "uri_format": "https://liidr.org/trust-recommendation-in-social-internet-of-things/$1", "prefix": "tresiot", "name": "Ontology for Trust Recommendation in Social Internet of Things", "description": "This ontology models trust recommendation concepts in SIoT to bridge the gap between abstract trust concepts and real-world device concepts.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.tsioc": {"id": "lov.tsioc", "homepage": "http://rdfs.org/sioc/types#", "uri_format": "http://rdfs.org/sioc/types#$1", "prefix": "tsioc", "name": "SIOC Types Ontology Module", "description": "Extends the SIOC Core Ontology (Semantically-Interlinked Online Communities) by defining subclasses and subproperties of SIOC terms.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tsn": {"id": "lov.tsn", "homepage": "http://purl.org/net/tsn#", "uri_format": "http://purl.org/net/tsn#$1", "prefix": "tsn", "name": "Territorial Statistical Nomenclature Ontology", "description": "This RDF ontology allows describing any Territorial Statistical Nomenclature (TSN) (i.e., partition of the territory) used as a support to socio-economic data (statistical data that describe territory in terms of population, unemployement rate, transport access, etc.).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences", "earth and related environmental sciences", "mathematics"]}, "lov.tsnc": {"id": "lov.tsnc", "homepage": "http://purl.org/net/tsnchange#", "uri_format": "http://purl.org/net/tsnchange#$1", "prefix": "tsnc", "name": "Territorial Statistical Nomenclature Change Ontology", "description": "The TSN-Change ontology aims at describing changes that occured from one version of a Territorial Statistical Nomenclature (TSN) (i.e., partition of the territory) and its subsequent (e.g., change in territorial units boundaries to reflect an administrative reorganisation).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["political sciences", "earth and related environmental sciences", "mathematics"]}, "lov.turismo": {"id": "lov.turismo", "homepage": "http://idi.fundacionctic.org/cruzar/turismo", "uri_format": "http://idi.fundacionctic.org/cruzar/turismo#$1", "prefix": "turismo", "name": "Ontolog\u00eda de Turismo para el Ayuntamiento de Zaragoza", "description": "Esta ontolog\u00eda se ha construido dentro del proyecto financiado por el Ayuntamiento de Zaragoza: \"Un visitante, una ruta\", una aplicaci\u00f3n inform\u00e1tica para el c\u00e1lculo de rutas tur\u00edsticas en la ciudad de Zaragoza en base al perfil y contexto del usuario.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.tvc": {"id": "lov.tvc", "homepage": "http://www.essepuntato.it/2012/04/tvc", "uri_format": "http://www.essepuntato.it/2012/04/tvc/$1", "prefix": "tvc", "name": "The Time-indexed Value in Context", "description": "A pattern for the description of scenarios that involve entities having some value during a particular time and within a particular context.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.txn": {"id": "lov.txn", "homepage": "http://lod.taxonconcept.org/ontology/txn.owl", "uri_format": "http://lod.taxonconcept.org/ontology/txn.owl#$1", "prefix": "txn", "name": "TaxonConcept Ontology", "description": "This ontology and the related TaxonConcept data set mints identifiers that are tied to a specific species concept which can have several names and classifications.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences"]}, "lov.tzont": {"id": "lov.tzont", "homepage": "http://www.w3.org/2006/timezone", "uri_format": "http://www.w3.org/2006/timezone#$1", "prefix": "tzont", "name": "Time Zone Ontology", "description": "A vocabulary to describe time zones and their geographical coverage.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.uby": {"id": "lov.uby", "homepage": "http://purl.org/olia/ubyCat.owl", "uri_format": "http://purl.org/olia/ubyCat.owl#$1", "prefix": "uby", "name": "ubyCat.owl", "description": "OLiA Annotation Model for Uby Parts of Speech (Gurevych et al, 2012)\nextracted from the Uby DTD (http://purl.org/olia/ubyCat.owl, version of Nov 21th, 2012).\n\nReferences\nIryna Gurevych, Judith Eckle-Kohler, Silvana Hartmann, Michael Matuschek, Christian M. Meyer and Christian Wirth, 2012, Uby - A Large-Scale Unified Lexical-Semantic Resource, Proceedings of the 13th Conference of the European Chapter of the Association for Computational Linguistics (EACL 2012), Avignon, France.\n\nThe DTD is made available under a Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) license which is available at http://creativecommons.org/licenses/by-sa/3.0/\nYou are free to share (copy, distribute and transmit) the work, to develop your own extensions (adapt, remix) of the work, and to make commercial use of the work.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.uco": {"id": "lov.uco", "homepage": "http://purl.org/uco/ns#", "uri_format": "http://purl.org/uco/ns#$1", "prefix": "uco", "name": "Used Cars Ontology", "description": "Vocabulaire Web pour d\u00e9crire les caract\u00e9ristiques des voitures d'occasion pour le commerce \u00e9lectronique.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.ucum": {"id": "lov.ucum", "homepage": "http://purl.oclc.org/NET/muo/ucum/", "uri_format": "http://purl.oclc.org/NET/muo/ucum/$1", "prefix": "ucum", "name": "Units of measurement ontology", "description": "The instances of this ontology have been automatically\n generated from the UCUM (The Unified Code for Units of Measure).\n See http://aurora.rg.iupui.edu/UCUM/ for more details\n on UCUM. The members of the MyMobileWeb consortium\n explicitly acknowledge the copyright of the data from\n the UCUM ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.ui": {"id": "lov.ui", "homepage": "http://www.w3.org/ns/ui", "uri_format": "http://www.w3.org/ns/ui#$1", "prefix": "ui", "name": "A user interface ontology", "description": "An ontology suitable for describing forms, sequences in widgets", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.uiot": {"id": "lov.uiot", "homepage": "http://www.w3id.org/urban-iot/core", "uri_format": "http://www.w3id.org/urban-iot/core#$1", "prefix": "uiot", "name": "Urban IoT Ontologies - Core Module", "description": "Core module of the suite of ontologies for urban IoT devices.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.uiote": {"id": "lov.uiote", "homepage": "http://www.w3id.org/urban-iot/electric", "uri_format": "http://www.w3id.org/urban-iot/electric#$1", "prefix": "uiote", "name": "Ontologie per gli Apparati IoT Urbani - Modulo Electric Mobility", "description": "Electric Mobility module of the suite of ontologies for urban IoT devices.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.uiots": {"id": "lov.uiots", "homepage": "http://www.w3id.org/urban-iot/sharing", "uri_format": "http://www.w3id.org/urban-iot/sharing#$1", "prefix": "uiots", "name": "Ontologie per gli Apparati IoT Urbani - Modulo Sharing Mobility", "description": "Modulo Sharing Mobility delle ontologie per gli apparati IoT urbani.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.umbel": {"id": "lov.umbel", "homepage": "http://umbel.org/umbel", "uri_format": "http://umbel.org/umbel#$1", "prefix": "umbel", "name": "Upper Mapping and Binding Exchange Layer", "description": "UMBEL provides a general vocabulary of classes and predicates for describing domain ontologies, with the specific aim of promoting interoperability with external datasets and domains.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["generic"]}, "lov.uneskos": {"id": "lov.uneskos", "homepage": "http://purl.org/umu/uneskos", "uri_format": "http://purl.org/umu/uneskos#$1", "prefix": "uneskos", "name": "UNESKOS Vocabulary", "description": "An RDF vocabulary for extending some SKOS and ISO-THES functions in order to improve the linked data consumption of SKOS datasets", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.uniprot": {"id": "lov.uniprot", "homepage": "http://purl.uniprot.org/core/", "uri_format": "http://purl.uniprot.org/core/$1", "prefix": "uniprot", "name": "Uniprot Core Ontology", "description": "Properties and classes used for protein annotation", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences"]}, "lov.uri4uri": {"id": "lov.uri4uri", "homepage": "http://uri4uri.net/vocab", "uri_format": "http://uri4uri.net/vocab#$1", "prefix": "uri4uri", "name": "URI Vocabulary", "description": "This vocabulary describes the entities which may be derived from a URI and the relationships between them, such as Internet Domains, prototcols, file suffixes etc. It was initially issued as part of an April 1st gag, but has utility beyond the initial joke.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.usability": {"id": "lov.usability", "homepage": "https://w3id.org/usability", "uri_format": "https://w3id.org/usability#$1", "prefix": "usability", "name": "Usability", "description": "Ontology 'Usability' created to describe and store information about interactions of user with a software user interface", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.va": {"id": "lov.va", "homepage": "http://code-research.eu/ontology/visual-analytics", "uri_format": "http://code-research.eu/ontology/visual-analytics#$1", "prefix": "va", "name": "The Visual Analytics Vocabulary", "description": "This vocabulary allows the semantic description of visual analytics applications. It is based on the RDF Data Cube Vocabulary and the Semanticscience Integrated Ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.vaem": {"id": "lov.vaem", "homepage": "http://www.linkedmodel.org/schema/vaem", "uri_format": "http://www.linkedmodel.org/schema/vaem#$1", "prefix": "vaem", "name": "Vocabulary for Attaching Essential Metadata", "description": "The purpose of VAEM is to provide, by import, a foundation for commonly needed resources when building an ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.vag": {"id": "lov.vag", "homepage": "http://www.essepuntato.it/2013/10/vagueness", "uri_format": "http://www.essepuntato.it/2013/10/vagueness/$1", "prefix": "vag", "name": "The Vagueness Ontology", "description": "The Vagueness Ontology (VO) allows one to specify vagueness characterisations of the TBox entities of an ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.vann": {"id": "lov.vann", "homepage": "http://purl.org/vocab/vann/", "uri_format": "http://purl.org/vocab/vann/$1", "prefix": "vann", "name": "VANN: A vocabulary for annotating vocabulary descriptions", "description": "A vocabulary for annotating descriptions of vocabularies with examples and usage notes.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.vartrans": {"id": "lov.vartrans", "homepage": "http://www.w3.org/ns/lemon/vartrans", "uri_format": "http://www.w3.org/ns/lemon/vartrans#$1", "prefix": "vartrans", "name": "Lexicon Model for Ontologies - Vartrans", "description": "A model for the representation of lexical information relative to ontologies. Variation and translation module.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.vcard": {"id": "lov.vcard", "homepage": "http://www.w3.org/2006/vcard/ns", "uri_format": "http://www.w3.org/2006/vcard/ns#$1", "prefix": "vcard", "name": "An Ontology for vCards", "description": "This ontology models and represents vCards in RDF using current best practices", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.vdpp": {"id": "lov.vdpp", "homepage": "http://data.lirmm.fr/ontologies/vdpp", "uri_format": "http://data.lirmm.fr/ontologies/vdpp#$1", "prefix": "vdpp", "name": "Vocabulary for Dataset Publication Projects", "description": "The Vocabulary of Dataset Publication Projects (VDPP) allows to represent the status of a dataset publication project. It is mainly based on the Provenance Vocabulary (PRV), the Dataset Provenance Vocabulary (VOIDP), the Vocabulary of Interlinked Datasets (VoID), and the Description of a Project (DOAP) vocabulary.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.veo": {"id": "lov.veo", "homepage": "http://linkeddata.finki.ukim.mk/lod/ontology/veo#", "uri_format": "http://linkeddata.finki.ukim.mk/lod/ontology/veo#$1", "prefix": "veo", "name": "Vehicle Emissions Ontology", "description": "An ontology for describing vehicles and their emissions.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences"]}, "lov.vgo": {"id": "lov.vgo", "homepage": "http://purl.org/net/VideoGameOntology", "uri_format": "http://purl.org/net/VideoGameOntology#$1", "prefix": "vgo", "name": "The Video Game Ontology", "description": "The Video Game Ontology is an ontology designed for describing video games and all the resources related to their game plays.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.vin": {"id": "lov.vin", "homepage": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine", "uri_format": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#$1", "prefix": "vin", "name": "Wine Ontology", "description": "This ontology was used as example in the first OWL Recommendation (February 2004)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["agriculture, forestry, and fisheries"]}, "lov.vir": {"id": "lov.vir", "homepage": "http://w3id.org/vir#", "uri_format": "http://w3id.org/vir#$1", "prefix": "vir", "name": "VIR - Visual Representation ontology", "description": "This ontology, called VIR, is an extension of CIDOC-CRM created to sustain propositions on the nature of visual elements and permit these descriptions to be published on the Web.\nWith the term visual element, we refer to those signs identified in the visual space as distinct and documentable units, and subject to an analytical interpretation.\nThe scope of this ontology is to s to provide a framework to support the identification, annotation and interconnections between diverse visual elements and presents and assist their documentation and retrieval. Specifically, the model aims to clarify the identity and the relation of these visual signs, providing the necessary classes to characterise their constituent elements, reference, symbolic content and source of interpretation.\nVIR expands on key entities and properties from CIDOC-CRM, introducing new classes and relationships responding to the visual and art historical community, specifically building up on the iconographical tradition. The result is a model which differentiates between interpretation and element identified, providing a clear distinction between denotation and signification of an element. As a consequence of such distinction, the ontology allows for the definition of diverse denotative criteria for the same representation, which could change based on traditions and perspective. Visual objects can be, in fact, polysemic and ambiguous, and it is not so easy to pin down a denotative or connotative meaning because they are very much context-dependent.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.vivo": {"id": "lov.vivo", "homepage": "http://vivoweb.org/ontology/core", "uri_format": "http://vivoweb.org/ontology/core#$1", "prefix": "vivo", "name": "VIVO Core Ontology", "description": "An ontology of academic and research domain, developed in the framework of the VIVO project", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["educational sciences"]}, "lov.vmm": {"id": "lov.vmm", "homepage": "http://spi-fm.uca.es/spdef/models/genericTools/vmm/1.0", "uri_format": "http://spi-fm.uca.es/spdef/models/genericTools/vmm/1.0#$1", "prefix": "vmm", "name": "Visual Modeling tool Model", "description": "In Software Engineering, as well as in other disciplines, it is common to use model-editing tools using a visual language. In particular, the editing tools allow you to design UML software models, so that let you manage much of the work products of a project. From the study of several UML tools, such as Enterprise Architect, Visual Paradigm for UML or Rational Rose, this vocabulary has been defined. This vocabulary represents the basic structure of these UML tools, but does not exclude others that allow you to use other visual languages for modeling software systems or other entities.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.voaf": {"id": "lov.voaf", "homepage": "http://purl.org/vocommons/voaf", "uri_format": "http://purl.org/vocommons/voaf#$1", "prefix": "voaf", "name": "Vocabulary of a Friend", "description": "A vocabulary to describe linked data vocabularies and their relations", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.voag": {"id": "lov.voag", "homepage": "http://voag.linkedmodel.org/schema/voag", "uri_format": "http://voag.linkedmodel.org/voag#$1", "prefix": "voag", "name": "Vocabulary Of Attribution and Governance", "description": "VOAG is intended to specify licensing, attribution, provenance and governance of an ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.vocals": {"id": "lov.vocals", "homepage": "http://w3id.org/rsp/vocals#", "uri_format": "http://w3id.org/rsp/vocals#$1", "prefix": "vocals", "name": "VoCaLS: A Vocabulary and Catalog for Linked Streams", "description": "This ontology aims to model RDF streams, their metadata, and access endpoints for publishing and consuming these streams", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.void": {"id": "lov.void", "homepage": "http://vocab.deri.ie/void", "uri_format": "http://rdfs.org/ns/void#$1", "prefix": "void", "name": "Vocabulary of Interlinked Datasets", "description": "The Vocabulary of Interlinked Datasets (VoID) is an RDF Schema vocabulary for expressing metadata about RDF datasets.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.voidext": {"id": "lov.voidext", "homepage": "http://purl.org/query/voidext", "uri_format": "http://purl.org/query/voidext#$1", "prefix": "voidext", "name": "Extended Vocabulary of Interlinked Datasets (VoIDext)", "description": "The Extension of the Vocabulary of Interlinked Datasets (VoID) RDF Schema that includes the concept of virtual links. This extension enhances interoperability among heterogeneous and distributed RDF data sets by bridging them through explicitly defined virtual links.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.voidwh": {"id": "lov.voidwh", "homepage": "http://www.ics.forth.gr/isl/VoIDWarehouse/VoID_Extension_Schema.owl", "uri_format": "http://www.ics.forth.gr/isl/VoIDWarehouse/VoID_Extension_Schema.owl$1", "prefix": "voidwh", "name": "Void Warehouse Ontology", "description": "An extension of W3C VoID that is able to represent these metrics for expressing the Connectivity Metrics of a Semantic Warehouse.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.vra": {"id": "lov.vra", "homepage": "http://simile.mit.edu/2003/10/ontologies/vraCore3#", "uri_format": "http://simile.mit.edu/2003/10/ontologies/vraCore3#$1", "prefix": "vra", "name": "RDFS Ontology for VRA", "description": "Le VRA Core est un ensemble de propri\u00e9t\u00e9s de m\u00e9tadonn\u00e9es pour d\u00e9crire les oeuvres d'art visuelles et les images qui les documentent.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.vrank": {"id": "lov.vrank", "homepage": "http://vocab.sti2.at/vrank", "uri_format": "http://purl.org/voc/vrank#$1", "prefix": "vrank", "name": "Vocabulary for Ranking", "description": "The Vocabulary for Ranking (vRank) is an RDF Schema vocabulary for materializing ranking computations.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.vs": {"id": "lov.vs", "homepage": "http://www.w3.org/2003/06/sw-vocab-status/ns", "uri_format": "http://www.w3.org/2003/06/sw-vocab-status/ns#$1", "prefix": "vs", "name": "SemWeb Vocab Status ontology", "description": "An RDF vocabulary for relating SW vocabulary terms to their status.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.vsearch": {"id": "lov.vsearch", "homepage": "http://purl.org/vsearch/", "uri_format": "http://purl.org/vsearch/$1", "prefix": "vsearch", "name": "vSearch Vocabulary", "description": "The vSearch vocabulary facilitates the querying and retrieval of vocabulary terms from a vocabularies directory. It can be used to map keywords with mapped result terms accompanied with a ranking value.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.vso": {"id": "lov.vso", "homepage": "http://purl.org/vso/ns", "uri_format": "http://purl.org/vso/ns#$1", "prefix": "vso", "name": "Vehicle Sales Ontology", "description": "The Vehicle Sales Ontology for Semantic Web-based E-Commerce", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.vvo": {"id": "lov.vvo", "homepage": "http://purl.org/vvo/ns#", "uri_format": "http://purl.org/vvo/ns#$1", "prefix": "vvo", "name": "Volkswagen Vehicles Ontology", "description": "A vocabulary for describing Volkswagen-specific features of automobiles and their components", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.w3c-ssn": {"id": "lov.w3c-ssn", "homepage": "https://www.w3.org/ns/ssn", "uri_format": "https://www.w3.org/ns/ssn/$1", "prefix": "w3c-ssn", "name": "Semantic Sensor Network Ontology", "description": "This ontology describes sensors and observations, and related concepts. It does not describe domain concepts, time, locations, etc. as these are intended to be included from other ontologies via OWL imports.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["earth and related environmental sciences", "computer and information sciences"]}, "lov.wai": {"id": "lov.wai", "homepage": "http://purl.org/wai#", "uri_format": "http://purl.org/wai#$1", "prefix": "wai", "name": "Roles and Profiles Ontology", "description": "WAI vocabulary aims to extend the FOAF specification through introducing the concepts of roles and profiles. In society, people are more than just persons, they can be musicians, presidents of government, firemen, football players or car drivers in a traffic jam.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.wdrs": {"id": "lov.wdrs", "homepage": "http://www.w3.org/2007/05/powder-s", "uri_format": "http://www.w3.org/2007/05/powder-s#$1", "prefix": "wdrs", "name": "Protocol for Web Description Resources", "description": "The Protocol for Web Description Resources (POWDER) allows metadata to be associated with groups of resources such as those found on a Web site.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.wf-invoc": {"id": "lov.wf-invoc", "homepage": "http://purl.org/net/wf-invocation", "uri_format": "http://purl.org/net/wf-invocation#$1", "prefix": "wf-invoc", "name": "Workflow Invocation Ontology", "description": "Wf-invoc is a simple profile of the P-plan ontology to describe how workflow steps are invoked within a workflow execution.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.wfdesc": {"id": "lov.wfdesc", "homepage": "http://purl.org/wf4ever/wfdesc", "uri_format": "http://purl.org/wf4ever/wfdesc#$1", "prefix": "wfdesc", "name": "The Wfdesc ontology", "description": "This ontology (\"wfdesc\") describes an abstract workflow description structure, allowing the description of a scientific workflow as a direct acyclic graph, or a dataflow. This ontology is meant as an upper ontology for more specific workflow definitions, and as a way to express abstract workflows. The wfprov ontology shows how to link these descriptions to a provenance trace of a workflow execution.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.wfm": {"id": "lov.wfm", "homepage": "http://purl.org/net/wf-motifs", "uri_format": "http://purl.org/net/wf-motifs#$1", "prefix": "wfm", "name": "The Workflow Motif Ontology", "description": "Ontology for describing Workflow Motifs. Workflow Motifs outline the kinds of data-intensive activities that are observed in workflows (data-operation motifs) and the different manners in which activities are implemented within workflows (workflow-oriented motifs).", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.wfprov": {"id": "lov.wfprov", "homepage": "http://purl.org/wf4ever/wfprov", "uri_format": "http://purl.org/wf4ever/wfprov#$1", "prefix": "wfprov", "name": "The Wfprov Ontology", "description": "The wfprov ontology shows how to express minimal provenance information about the execution of a workflow described using the wfdesc ontology.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.whisky": {"id": "lov.whisky", "homepage": "http://vocab.org/whisky/terms", "uri_format": "http://vocab.org/whisky/terms/$1", "prefix": "whisky", "name": "Whisky Ontology", "description": "A small vocabulary for describing whisky varieties", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["agriculture, forestry, and fisheries"]}, "lov.whois": {"id": "lov.whois", "homepage": "http://www.kanzaki.com/ns/whois", "uri_format": "http://www.kanzaki.com/ns/whois#$1", "prefix": "whois", "name": "Who's who description vocabulary", "description": "A vocabulary to describe a person's profile and history", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.wi": {"id": "lov.wi", "homepage": "http://purl.org/ontology/wi/core#", "uri_format": "http://purl.org/ontology/wi/core#$1", "prefix": "wi", "name": "The Weighted Interests Vocabulary", "description": "The Weighted Interests Vocabulary specification provides basic concepts and properties for describing describing preferences (interests) within contexts, their temporal dynamics and their origin on/ for the Semantic Web.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.wikibase": {"id": "lov.wikibase", "homepage": "http://wikiba.se/ontology", "uri_format": "http://wikiba.se/ontology#$1", "prefix": "wikibase", "name": "Wikibase system ontology", "description": "The system ontology of Wikibase", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.wikim": {"id": "lov.wikim", "homepage": "http://spi-fm.uca.es/spdef/models/genericTools/wikim/1.0", "uri_format": "http://spi-fm.uca.es/spdef/models/genericTools/wikim/1.0#$1", "prefix": "wikim", "name": "WIKI tool Model", "description": "A partir del an\u00e1lisis de diversos sistemas, como MediaWiki, Confluence o DokuWiki, se ha dise\u00f1ado este vocabulario. T\u00e9ngase en cuenta que este modelo no describe completamente el modelo conceptual de todos los tipos de sistemas wiki, sino s\u00f3lo de los elementos principales.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.wl": {"id": "lov.wl", "homepage": "http://www.wsmo.org/ns/wsmo-lite#", "uri_format": "http://www.wsmo.org/ns/wsmo-lite#$1", "prefix": "wl", "name": "WSMO-Lite Ontology", "description": "WSMO-Lite is a lightweight approach to the semantic annotation of Web service descriptions, defined by the STI2 working group Conceptual Models for Services", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.wlo": {"id": "lov.wlo", "homepage": "http://purl.org/ontology/wo/", "uri_format": "http://purl.org/ontology/wo/$1", "prefix": "wlo", "name": "BBC Wildlife Ontology", "description": "A simple vocabulary for describing biological species and related taxa.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["biological sciences"]}, "lov.wo": {"id": "lov.wo", "homepage": "http://purl.org/ontology/wo/core#", "uri_format": "http://purl.org/ontology/wo/core#$1", "prefix": "wo", "name": "Weighting Ontology", "description": "The Weighting Ontology specification provides a vocabulary for describing weightings and their referenced scales, on/ for the Semantic Web.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.wot": {"id": "lov.wot", "homepage": "http://xmlns.com/wot/0.1/", "uri_format": "http://xmlns.com/wot/0.1/$1", "prefix": "wot", "name": "Web Of Trust", "description": "Web Of Trust (wot) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.wotsec": {"id": "lov.wotsec", "homepage": "https://www.w3.org/2019/wot/security#", "uri_format": "https://www.w3.org/2019/wot/security#$1", "prefix": "wotsec", "name": "Security mechanisms for the Web of Things", "description": "Security mechanisms for the the Web of Thing", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.xapi": {"id": "lov.xapi", "homepage": "http://purl.org/xapi/ontology#", "uri_format": "http://purl.org/xapi/ontology#$1", "prefix": "xapi", "name": "xAPI Controlled Vocabulary Ontology", "description": "This ontology contains a list of the classes and properties that can be used when for creating and publishing a controlled vocabulary dataset for xAPI communities of practice.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.xbrll": {"id": "lov.xbrll", "homepage": "https://w3id.org/vocab/xbrll", "uri_format": "https://w3id.org/vocab/xbrll#$1", "prefix": "xbrll", "name": "A lightweight XBRL vocabulary", "description": "An attempt to publish XBRL standard following best practices on the Web. Not an official version from XBRL International and under development", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.xhv": {"id": "lov.xhv", "homepage": "http://www.w3.org/1999/xhtml/vocab", "uri_format": "http://www.w3.org/1999/xhtml/vocab#$1", "prefix": "xhv", "name": "XHTML Vocabulary", "description": "This is a vocabulary collection utilized by XHTML Family modules and document types using XHTML Modularization, including XHTML Role and XHTML + RDFa as defined in rdfa-syntax.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["computer and information sciences"]}, "lov.xkos": {"id": "lov.xkos", "homepage": "http://rdf-vocabulary.ddialliance.org/xkos", "uri_format": "http://rdf-vocabulary.ddialliance.org/xkos#$1", "prefix": "xkos", "name": "XKOS", "description": "Extension de SKOS pour la repr\u00e9sentation des nomenclatures", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.xsd": {"id": "lov.xsd", "homepage": "http://www.w3.org/2001/XMLSchema", "uri_format": "http://www.w3.org/2001/XMLSchema#$1", "prefix": "xsd", "name": "XML Schema", "description": "The XML Schema representation", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}, "lov.yoga": {"id": "lov.yoga", "homepage": "https://yogaontology.org/ontology/", "uri_format": "https://yogaontology.org/ontology/$1", "prefix": "yoga", "name": "Yoga Ontology", "description": "Yoga Ontology is the list of vocabularies that define the yogic practice. Where Yoga is the union of the mind and body.", "source": "lov.linkeddata.es", "authority": "lov", "subjects": ["health sciences"]}, "lov.zbwext": {"id": "lov.zbwext", "homepage": "http://zbw.eu/namespaces/zbw-extensions", "uri_format": "http://zbw.eu/namespaces/zbw-extensions/$1", "prefix": "zbwext", "name": "ZBW Extensions", "description": "Extensions to SKOS and other standard vocabularies used by the German National Library of Economics (ZBW)", "source": "lov.linkeddata.es", "authority": "lov", "subjects": []}} \ No newline at end of file +{ + "lov.a-loc": { + "authority": "lov", + "description": "The module Location models information related to the localization and georeferencing of a cultural property.\nIn this module are used as template the following Ontology Design Patterns:\n- http://www.ontologydesignpatterns.org/cp/owl/collectionentity.owl\n- http://www.ontologydesignpatterns.org/cp/owl/classification.owl\n- http://www.ontologydesignpatterns.org/cp/owl/place.owl\n- http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl\n- http://www.ontologydesignpatterns.org/cp/owl/situation.owl", + "homepage": "https://w3id.org/arco/ontology/location", + "id": "lov.a-loc", + "name": "Location Ontology (ArCo network)", + "prefix": "a-loc", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "https://w3id.org/arco/ontology/location/$1" + }, + "lov.ac": { + "authority": "lov", + "description": "This term list includes all currently valid terms that have been defined in the core Audubon Core namespace ac:.", + "homepage": "http://rs.tdwg.org/ac/terms/", + "id": "lov.ac", + "name": "Core terms defined by Audubon Core", + "prefix": "ac", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://rs.tdwg.org/ac/terms/$1" + }, + "lov.acco": { + "authority": "lov", + "description": "A vocabulary for the description of hotels, vacation homes, camping sites, and other accommodation offers for e-commerce", + "homepage": "http://purl.org/acco/ns", + "id": "lov.acco", + "name": "Accomodation Ontology", + "prefix": "acco", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/acco/ns#$1" + }, + "lov.acl": { + "authority": "lov", + "description": "Defines the element of Authorization and its essential properties, and also some classes of access such as read and write.", + "homepage": "http://www.w3.org/ns/auth/acl", + "id": "lov.acl", + "name": "Basic Access Control ontology", + "prefix": "acl", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://www.w3.org/ns/auth/acl#$1" + }, + "lov.acm": { + "authority": "lov", + "description": "This ontology is a representation of The ACM Computing Classification System [1998]", + "homepage": "http://www.rkbexplorer.com/ontologies/acm", + "id": "lov.acm", + "name": "ACM Classification Ontology", + "prefix": "acm", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://acm.rkbexplorer.com/ontologies/acm#$1" + }, + "lov.acrt": { + "authority": "lov", + "description": "This document specifies a vocabulary for asserting the existence of official endorsements or certifications of agents, such as people and organizations.", + "homepage": "http://privatealpha.com/ontology/certification/1#", + "id": "lov.acrt", + "name": "Agent Certification Ontology", + "prefix": "acrt", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://privatealpha.com/ontology/certification/1#$1" + }, + "lov.adms": { + "authority": "lov", + "description": "ADMS is a profile of DCAT, used to describe semantic assets (or just 'Assets'), defined as highly reusable metadata (e.g. xml schemata, generic data models) and reference data (e.g. code lists, taxonomies, dictionaries, vocabularies) that are used for eGovernment system development.", + "homepage": "http://www.w3.org/ns/adms", + "id": "lov.adms", + "name": "Asset Description Metadata Schema", + "prefix": "adms", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/adms#$1" + }, + "lov.af": { + "authority": "lov", + "description": "This vocabulary expresses some common concepts to represent some features of audio signals.", + "homepage": "http://purl.org/ontology/af/", + "id": "lov.af", + "name": "Audio Features Ontology", + "prefix": "af", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/af/$1" + }, + "lov.agls": { + "authority": "lov", + "description": "The AGLS Metadata Terms Namespace provides URIs for the AGLS Metadata Terms Vocabulary in the context of AGLS Metadata Standard, a set of metadata properties and associated usage guidelines to improve the visibility, manageability and interoperability of online information and services. Vocabulary terms are declared using RDF Schema language to support RDF applications. It will be updated according to AGLS Working Group decisions.", + "homepage": "http://www.agls.gov.au/agls/terms", + "id": "lov.agls", + "name": "AGLS Metadata Terms", + "prefix": "agls", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.agls.gov.au/agls/terms/$1" + }, + "lov.agr": { + "authority": "lov", + "description": "This Agreements Ontology is designed to model 'agreements' which are social contracts that include licenses, laws, contracts, Memoranda of Understanding, standards and definitional metadata. Its purpose is to support data sharing by making explicit the relationships between agreements and data and agreements and Agents (people and organisations). Eventually it will also help with the interplay between different classes of agreements.", + "homepage": "http://promsns.org/def/agr", + "id": "lov.agr", + "name": "Agreements ontology", + "prefix": "agr", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences", + "law" + ], + "uri_format": "http://promsns.org/def/agr#$1" + }, + "lov.agrelon": { + "authority": "lov", + "description": "The ontology of agent relationships, AgRelOn, defines relations of persons to other persons and to organisations", + "homepage": "http://d-nb.info/standards/elementset/agrelon", + "id": "lov.agrelon", + "name": "Agent Relationship Ontology", + "prefix": "agrelon", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://d-nb.info/standards/elementset/agrelon#$1" + }, + "lov.aiiso": { + "authority": "lov", + "description": "The Academic Institution Internal Structure Ontology (AIISO) provides classes and properties to describe the internal organizational structure of an academic institution. AIISO is designed to work in partnership with Participation (http://purl.org/vocab/participation/schema), FOAF (http://xmlns.com/foaf/0.1/) and aiiso-roles (http://purl.org/vocab/aiiso-roles/schema) to describe the roles that people play within an institution.", + "homepage": "http://purl.org/vocab/aiiso/schema", + "id": "lov.aiiso", + "name": "Academic Institution Internal Structure Ontology", + "prefix": "aiiso", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "http://purl.org/vocab/aiiso/schema#$1" + }, + "lov.airo": { + "authority": "lov", + "description": "AIRO represents AI risk concepts and relations based on the AI Act draft and ISO 31000 standard series.", + "homepage": "https://w3id.org/AIRO", + "id": "lov.airo", + "name": "AI Risk Ontology", + "prefix": "airo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/AIRO#$1" + }, + "lov.airs": { + "authority": "lov", + "description": "The AIRS Linked Open Vocabulary is a way to describe human services information and referral (I&R) concepts. AIRS is the Alliance of Information and Referral Services (airs.org), which possesses over 1,000 member agencies primarily in the United States and Canada. The AIRS LOV is based on the AIRS XML Schema, available at: https://airs-xml.googlecode.com/hg/tags/3.1/airs.xsd", + "homepage": "https://raw.githubusercontent.com/airs-linked-data/lov/latest/src/airs_vocabulary.ttl#", + "id": "lov.airs", + "name": "Alliance of Information and Referral Services (AIRS) Vocabulary", + "prefix": "airs", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://raw.githubusercontent.com/airs-linked-data/lov/latest/src/airs_vocabulary.ttl#$1" + }, + "lov.akt": { + "authority": "lov", + "description": "The AKT Reference Ontology has been designed to support the AKT-2 demonstrator (\"AKTive Portal\"), and subsequent activities. The ontology, designed by the AKT-2 group and codified by Enrico Motta, extends Version 1.", + "homepage": "http://www.aktors.org/ontology/portal", + "id": "lov.akt", + "name": "AKT Reference Ontology", + "prefix": "akt", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.aktors.org/ontology/portal#$1" + }, + "lov.akts": { + "authority": "lov", + "description": "The AKT Reference Ontology has been designed to support the AKT-2 demonstrator (\"AKTive Portal\"), and subsequent activities", + "homepage": "http://www.aktors.org/ontology/support", + "id": "lov.akts", + "name": "AKT Support Ontology", + "prefix": "akts", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.aktors.org/ontology/support#$1" + }, + "lov.algo": { + "authority": "lov", + "description": "An ontology describing cryptographic algorithms", + "homepage": "http://securitytoolbox.appspot.com/securityAlgorithms#", + "id": "lov.algo", + "name": "Algorithms Ontology", + "prefix": "algo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://securitytoolbox.appspot.com/securityAlgorithms#$1" + }, + "lov.am": { + "authority": "lov", + "description": "This specification builds on the Open Services for Lifecycle Collaboration (OSLC) Core v2.0 Specification to define the resources, properties and operations supported by an OSLC Asset Management (OSLC-Asset) provider. Asset Management resources include Assets, Artifacts and supporting resources defined in the OSLC Core specification.", + "homepage": "http://open-services.net/ns/asset#", + "id": "lov.am", + "name": "OSLC Asset Management Vocabulary", + "prefix": "am", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://open-services.net/ns/asset#$1" + }, + "lov.aml": { + "authority": "lov", + "description": "A vocabulary to represent the AutomationML Standard - IEC 62714", + "homepage": "https://w3id.org/i40/aml", + "id": "lov.aml", + "name": "AutomationML Ontology", + "prefix": "aml", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/i40/aml#$1" + }, + "lov.amlo-core": { + "authority": "lov", + "description": "The AMLO-core is the main module of the AMLO projects that extends the Financial Industry Business Ontology (FIBO) with some concepts to describe the Anti Money Laundering (AML) knowledge and facts.", + "homepage": "http://w3id.org/amlo/core", + "id": "lov.amlo-core", + "name": "AMLO-core vocabulary", + "prefix": "amlo-core", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://w3id.org/amlo/core#$1" + }, + "lov.amv": { + "authority": "lov", + "description": "Metadata vocabularies are used in various domains of study. It provides an in-depth description of the resources. In this work, we develop Algorithm Metadata Vocabulary (AMV), a vocabulary for capturing and storing the metadata about the algorithms (a procedure or a set of rules that is followed step-by-step to solve a problem, especially by a computer). The snag faced by the researchers in the current time is the failure of getting relevant results when searching for algorithms in any search engine. AMV is represented as a semantic model and produced OWL file, which can be directly used by anyone interested to create and publish algorithm metadata as a knowledge graph, or to provide metadata service through SPARQL endpoint. To design the vocabulary, we propose a well-defined methodology, which considers real issues faced by the algorithm users and the practitioners. The evaluation shows a promising result.", + "homepage": "https://w3id.org/amv", + "id": "lov.amv", + "name": "AMV:Algorithm Metadata Vocabulary", + "prefix": "amv", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/amv#$1" + }, + "lov.ao": { + "authority": "lov", + "description": "Provides basic concepts and properties for describing specific association statements to something, e.g. an occasion, a genre or a mood ...", + "homepage": "http://purl.org/ontology/ao/core#", + "id": "lov.ao", + "name": "Association Ontology", + "prefix": "ao", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/ao/core#$1" + }, + "lov.aos": { + "authority": "lov", + "description": "Appearances is an ontology that grew out of the need to record personal appearance details about individuals while taking into account errors of perception and translation between various diffferent standards. Originally it was meant to record physical caracteristics of Great War soldiers from their medical files, but it became evident that the resource was also useful for other purposes.", + "homepage": "http://rdf.muninn-project.org/ontologies/appearances", + "id": "lov.aos", + "name": "Appearances Ontology Specification", + "prefix": "aos", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://rdf.muninn-project.org/ontologies/appearances#$1" + }, + "lov.apco": { + "authority": "lov", + "description": "APCO est une ontologie ayant pour but la description des termes des march\u00e9s publics", + "homepage": "https://purl.org/cm/onto/apco", + "id": "lov.apco", + "name": "African Public Contract Ontology", + "prefix": "apco", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences" + ], + "uri_format": "https://purl.org/cm/onto/apco#$1" + }, + "lov.api": { + "authority": "lov", + "description": "Configuration vocabulary for the Linked Data API", + "homepage": "http://purl.org/linked-data/api/vocab#", + "id": "lov.api", + "name": "Linked Data API Vocabulary", + "prefix": "api", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/linked-data/api/vocab#$1" + }, + "lov.apps4x": { + "authority": "lov", + "description": "apps4X is an RDF vocabulary defined to facilitate the description of Open-Data-based Co-creation events", + "homepage": "http://semweb.mmlab.be/ns/apps4X", + "id": "lov.apps4x", + "name": "The vocabulary for Co-creation Events based on Open Data", + "prefix": "apps4X", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://semweb.mmlab.be/ns/apps4X#$1" + }, + "lov.arch": { + "authority": "lov", + "description": "An RDF vocabulary for describing archival collections and the names associated with them", + "homepage": "http://purl.org/archival/vocab/arch", + "id": "lov.arch", + "name": "Archival collections ontology", + "prefix": "arch", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/archival/vocab/arch#$1" + }, + "lov.arco": { + "authority": "lov", + "description": "The Core module represents general-purpose concepts orthogonal to the whole network, which are imported by all other ontology modules (e.g. part-whole relation, classification).", + "homepage": "https://w3id.org/arco/ontology/core", + "id": "lov.arco", + "name": "Core Ontology (ArCo network)", + "prefix": "arco", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/arco/ontology/core/$1" + }, + "lov.arp": { + "authority": "lov", + "description": "Arpenteur ontology is dedicated to photogrammetry, archeology and oceanology communities \n\t in order to perform tasks such as image processing, photogrammetry and modelling.", + "homepage": "http://www.arpenteur.org/ontology/Arpenteur.owl", + "id": "lov.arp", + "name": "Arpenteur Ontology", + "prefix": "arp", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "mathematics" + ], + "uri_format": "http://www.arpenteur.org/ontology/Arpenteur.owl#$1" + }, + "lov.atd": { + "authority": "lov", + "description": "Defines concepts related to airport status, including weather, forecasts, and airport operations", + "homepage": "https://data.nasa.gov/ontologies/atmonto/data#", + "id": "lov.atd", + "name": "Air Traffic Data", + "prefix": "atd", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://data.nasa.gov/ontologies/atmonto/data#$1" + }, + "lov.atm": { + "authority": "lov", + "description": "Defines specific air traffic management concepts used in aircraft navigation through the US National Airspace System", + "homepage": "https://data.nasa.gov/ontologies/atmonto/ATM#", + "id": "lov.atm", + "name": "Air Traffic Management (ATM) Vocabulary", + "prefix": "atm", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://data.nasa.gov/ontologies/atmonto/ATM#$1" + }, + "lov.atts": { + "authority": "lov", + "description": "Defines temporal / spatial concepts and general-purpose datastructures", + "homepage": "https://data.nasa.gov/ontologies/atmonto/general#", + "id": "lov.atts", + "name": "Air Traffic Temporal and Spacial Vocabulary", + "prefix": "atts", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "mathematics", + "computer and information sciences" + ], + "uri_format": "https://data.nasa.gov/ontologies/atmonto/general#$1" + }, + "lov.awol": { + "authority": "lov", + "description": "The AtomOWL ontology is inspired from the work done by the atom working group. This ontology is working off the rfc 4287 published among othe places at http://www.atompub.org/rfc4287.html . The AtomOWL ontology uses as much as possible the same terms as the format there to make the relation easy to understand. The AtomOWL name space is slightly different from the atom namespace [see post http://www.imc.org/atom-syntax/mail-archive/msg16476.html]. But this is a good thing as it helps distinguish the ontology from the rfc 4287 serialisation.", + "homepage": "http://bblfish.net/work/atom-owl/2006-06-06/", + "id": "lov.awol", + "name": "Atom Syndication Ontology", + "prefix": "awol", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://bblfish.net/work/atom-owl/2006-06-06/#$1" + }, + "lov.aws": { + "authority": "lov", + "description": "This ontology is part of the Agriculture Meteorology example showcasing the ontology developed by the W3C Semantic Sensor Networks incubator group (SSN-XG). It is published here in order to generalize the potential usage and the alignment with other standardization efforts of the SSN ontology.", + "homepage": "http://purl.oclc.org/NET/ssnx/meteo/aws", + "id": "lov.aws", + "name": "Ontology for Meteorological sensors", + "prefix": "aws", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "http://purl.oclc.org/NET/ssnx/meteo/aws#$1" + }, + "lov.bag": { + "authority": "lov", + "description": "Basisregistraties Adressen en Gebouwen (BAG) vocabulaire", + "homepage": "http://bag.basisregistraties.overheid.nl/def/bag", + "id": "lov.bag", + "name": "Vocabulary for the Dutch base registration of buildings and addresses (BAG)", + "prefix": "bag", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://bag.basisregistraties.overheid.nl/def/bag#$1" + }, + "lov.basic": { + "authority": "lov", + "description": "An OWL representation of (some of) the basic types described in ISO 19103:2005, required as primitives in other ontologies based on ISO 19100 series standards", + "homepage": "http://def.seegrid.csiro.au/isotc211/iso19103/2005/basic", + "id": "lov.basic", + "name": "OWL representation of ISO 19103 (Basic types package)", + "prefix": "basic", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19103/2005/basic#$1" + }, + "lov.bbc": { + "authority": "lov", + "description": "The BBC ontology is used to describe BBC concepts in the store. For example, the BBC divisions (products) publishing linked data and interfacing with the triplestore, the platforms for which we produce content and the web documents that publish or are relevant to the BBC's content.", + "homepage": "http://www.bbc.co.uk/ontologies/bbc", + "id": "lov.bbc", + "name": "BBC Ontology", + "prefix": "bbc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.bbc.co.uk/ontologies/bbc/$1" + }, + "lov.bbccms": { + "authority": "lov", + "description": "An ontology to represent the content management systems and their interaction with the triplestore.", + "homepage": "http://www.bbc.co.uk/ontologies/cms", + "id": "lov.bbccms", + "name": "BBC CMS Ontology", + "prefix": "bbccms", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://www.bbc.co.uk/ontologies/cms/$1" + }, + "lov.bbccore": { + "authority": "lov", + "description": "The generic BBC ontology for people, places,events, organisations, themes which represent things that make sense across the BBC. This model is meant to be generic enough, and allow clients (domain experts) link their own concepts", + "homepage": "http://www.bbc.co.uk/ontologies/coreconcepts", + "id": "lov.bbccore", + "name": "BBC Core Concepts", + "prefix": "bbccore", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://www.bbc.co.uk/ontologies/coreconcepts/$1" + }, + "lov.bbcprov": { + "authority": "lov", + "description": "The provenance ontology supports data management and auditing tasks. It is used to define the different types of named graphs we used in the store (quad store) and enables their association with metadata that allow us to manage, validate and expose data to BBC services", + "homepage": "http://www.bbc.co.uk/ontologies/provenance", + "id": "lov.bbcprov", + "name": "BBC Provenance Ontology", + "prefix": "bbcprov", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.bbc.co.uk/ontologies/provenance/$1" + }, + "lov.bci": { + "authority": "lov", + "description": "The BCI ontology specifies a foundational metadata model set for real-world multimodal Brain Computing Interface (BCI) data capture activities. The ontology defines a minimalist and simple abstract metadata foundational model for real-world BCI applications that monitors human activity in any scenario. BCI multimodal domain applications are encouraged to extend and use this ontology in their implementations.", + "homepage": "https://w3id.org/BCI-ontology", + "id": "lov.bci", + "name": "Brain Computing Interface (BCI) Ontology", + "prefix": "bci", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://w3id.org/BCI-ontology#$1" + }, + "lov.bcom": { + "authority": "lov", + "description": "The Building Concrete Monitoring Ontology (BCOM) is defined for capturing information of concrete work, concrete curing and testing of concrete properties. Further Information on the development and usage of the Ontology can be found in the following publication: Liu et al. (2021): An ontology integrating as-built information for infrastructure asset management using BIM and semantic web. In: Proceedings of 2021 European Conference on Computing in Construction, Online eConference, URL: https://ec-3.org/publications/conferences/2021/paper/?id=167", + "homepage": "https://w3id.org/bcom", + "id": "lov.bcom", + "name": "Building Concrete Monitoring Ontology (BCOM)", + "prefix": "bcom", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/bcom#$1" + }, + "lov.being": { + "authority": "lov", + "description": "A vocabulary to describe the interactions between persons and groups occurring in multimedia.", + "homepage": "http://contextus.net/ontology/ontomedia/ext/common/being#", + "id": "lov.being", + "name": "OntoMedia Being Representation", + "prefix": "being", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://contextus.net/ontology/ontomedia/ext/common/being#$1" + }, + "lov.bevon": { + "authority": "lov", + "description": "Beverage Ontology is a Web vocabulary for describing beverages, mainly alcoholic.", + "homepage": "http://rdfs.co/bevon/", + "id": "lov.bevon", + "name": "BEVON: Beverage Ontology", + "prefix": "bevon", + "source": "lov.linkeddata.es", + "subjects": [ + "agriculture, forestry, and fisheries" + ], + "uri_format": "http://rdfs.co/bevon/$1" + }, + "lov.bibo": { + "authority": "lov", + "description": "The Bibliographic Ontology Specification provides main concepts and properties for describing citations and bibliographic references (i.e. quotes, books, articles, etc) on the Semantic Web.", + "homepage": "http://purl.org/ontology/bibo/", + "id": "lov.bibo", + "name": "The Bibliographic Ontology", + "prefix": "bibo", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/ontology/bibo/$1" + }, + "lov.bibtex": { + "authority": "lov", + "description": "Transformation of bibTeX into an OWL ontology", + "homepage": "http://purl.org/net/nknouf/ns/bibtex", + "id": "lov.bibtex", + "name": "BibTeX ontology", + "prefix": "bibtex", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/net/nknouf/ns/bibtex#$1" + }, + "lov.bimerr-op": { + "authority": "lov", + "description": "The Occupancy Profile ontology has been developed to represent people\u2019s behavior inside building spaces.", + "homepage": "http://bimerr.iot.linkeddata.es/def/occupancy-profile#", + "id": "lov.bimerr-op", + "name": "Occupancy Profile ontology", + "prefix": "bimerr-op", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://bimerr.iot.linkeddata.es/def/occupancy-profile#$1" + }, + "lov.bio": { + "authority": "lov", + "description": "A vocabulary for describing biographical information about people, both living and dead.", + "homepage": "http://purl.org/vocab/bio/0.1/", + "id": "lov.bio", + "name": "BIO: A vocabulary for biographical information", + "prefix": "bio", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/vocab/bio/0.1/$1" + }, + "lov.biol": { + "authority": "lov", + "description": "An RDF vocabulary for the taxonomy of all forms of life", + "homepage": "http://purl.org/NET/biol/ns#", + "id": "lov.biol", + "name": "Biological Taxonomy Vocabulary 0.2 (Core)", + "prefix": "biol", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/NET/biol/ns#$1" + }, + "lov.biopax": { + "authority": "lov", + "description": "The goal of the BioPAX group is to develop a common exchange format for biological pathway data. More information is available at http://www.biopax.org. This ontology is freely available under the LGPL license", + "homepage": "http://www.biopax.org/release/biopax-level3.owl", + "id": "lov.biopax", + "name": "BioPAX Level 3 ontology", + "prefix": "biopax", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.biopax.org/release/biopax-level3.owl#$1" + }, + "lov.biotop": { + "authority": "lov", + "description": "Upper-Level ontology for Biology and Medicine. Compatible with BFO, DOLCE, and the UMLS Semantic Network", + "homepage": "http://purl.org/biotop/biotop.owl", + "id": "lov.biotop", + "name": "BioTop", + "prefix": "biotop", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/biotop/biotop.owl#$1" + }, + "lov.biro": { + "authority": "lov", + "description": "BiRO, the Bibliographic Reference Ontology, is an ontology structured according to the FRBR model to define bibliographic records (as subclasses of frbr:Work) and bibliographic references (as subclasses of frbr:Expression), and their compilations into bibliographic collections such as library catalogues, and into bibliographic lists such as reference lists in journal articles, respectively.", + "homepage": "http://purl.org/spar/biro", + "id": "lov.biro", + "name": "The Bibliographic Reference Ontology", + "prefix": "biro", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/spar/biro/$1" + }, + "lov.blt": { + "authority": "lov", + "description": "Some useful terms for describing bibliographic resources that other models did not include. Version 1.4: brings the description for this schema in line with \"Metadata recommendations for Linked Open Vocabulairies\", version 1.1.; dct:license replaced by cc:license and the value changed from http://www.opendatacommons.org/licenses/pddl/1.0/ to http://creativecommons.org/publicdomain/mark/1.0/; various typos corrected. Version 1.4.1: added links to previous schema versions", + "homepage": "http://www.bl.uk/schemas/bibliographic/blterms", + "id": "lov.blt", + "name": "British Library Terms RDF schema", + "prefix": "blt", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://www.bl.uk/schemas/bibliographic/blterms#$1" + }, + "lov.bot": { + "authority": "lov", + "description": "A vocabulary to describe data sources in a way they can be easily reused and accessed by chatbots.", + "homepage": "http://swa.cefriel.it/ontologies/botdcat-ap", + "id": "lov.bot", + "name": "BotDCAT-AP - Data Catalogue vocabulary Application Profile for chatbots", + "prefix": "bot", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://swa.cefriel.it/ontologies/botdcat-ap#$1" + }, + "lov.botany": { + "authority": "lov", + "description": "This is a specialist botanical variant of the Biological Taxonomy Vocabulary.", + "homepage": "http://purl.org/NET/biol/botany#", + "id": "lov.botany", + "name": "Biological Taxonomy Vocabulary 0.2 (Botany)", + "prefix": "botany", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/NET/biol/botany#$1" + }, + "lov.bperson": { + "authority": "lov", + "description": "Person ontology in Dutch", + "homepage": "http://data.vlaanderen.be/ns/persoon", + "id": "lov.bperson", + "name": "Person", + "prefix": "bperson", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://data.vlaanderen.be/ns/persoon#$1" + }, + "lov.br": { + "authority": "lov", + "description": "A lightweight ontology to structure e- brainstorming sessions", + "homepage": "http://vocab.deri.ie/br", + "id": "lov.br", + "name": "Brainstorm Ontology", + "prefix": "br", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://vocab.deri.ie/br#$1" + }, + "lov.brk": { + "authority": "lov", + "description": "Basisregistratie Kadaster (BRK) vocabulaire", + "homepage": "http://brk.basisregistraties.overheid.nl/def/brk", + "id": "lov.brk", + "name": "Key Register Cadastre (BRK) vocabulary", + "prefix": "brk", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://brk.basisregistraties.overheid.nl/def/brk#$1" + }, + "lov.brt": { + "authority": "lov", + "description": "Basisregistratie Topografie (BRT) vocabulaire", + "homepage": "http://brt.basisregistraties.overheid.nl/def/top10nl", + "id": "lov.brt", + "name": "Key Register Topography (BRT) vocabulary", + "prefix": "brt", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://brt.basisregistraties.overheid.nl/def/top10nl#$1" + }, + "lov.bto": { + "authority": "lov", + "description": "The Building Topology Ontology (BOT) is a simple ontology defining the core concepts of a building.\n\nIt is a simple, easy to extend ontology for the construction industry to document and exchange building data on the web.\n\nChanges since version 0.2.0 of the ontology are documented in:\nhttps://w3id.org/bot/bot.html#changes\n\nThe version 0.2.0 of the ontology is documented in:\nMads Holten Rasmussen, Pieter Pauwels, Maxime Lefran\u00e7ois, Georg Ferdinand Schneider, Christian Anker Hviid and Jan Karlsh\u00f8j (2017) Recent changes in the Building Topology Ontology, 5th Linked Data in Architecture and Construction Workshop (LDAC2017), November 13-15, 2017, Dijon, France, https://www.researchgate.net/publication/320631574_Recent_changes_in_the_Building_Topology_Ontology\n\nThe initial version 0.1.0 of the ontology was documented in:\nMads Holten Rasmussen, Pieter Pauwels, Christian Anker Hviid and Jan Karlsh\u00f8j (2017) Proposing a Central AEC Ontology That Allows for Domain Specific Extensions, Lean and Computing in Construction Congress (LC3): Volume I \u2013 Proceedings of the Joint Conference on Computing in Construction (JC3), July 4-7, 2017, Heraklion, Greece, pp. 237-244 https://doi.org/10.24928/JC3-2017/0153", + "homepage": "https://w3id.org/bot", + "id": "lov.bto", + "name": "BOT: Building Topology Ontology", + "prefix": "bto", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/bot#$1" + }, + "lov.c4n": { + "authority": "lov", + "description": "A vocabulary to describe calls, such as call for tenders, call for proposals, call for papers, etc.", + "homepage": "http://vocab.deri.ie/c4n", + "id": "lov.c4n", + "name": "Call for Anything vocabulary", + "prefix": "c4n", + "source": "lov.linkeddata.es", + "subjects": [ + "law" + ], + "uri_format": "http://vocab.deri.ie/c4n#$1" + }, + "lov.c4o": { + "authority": "lov", + "description": "C4O allows the characterization of bibliographic citations in terms of their number and their context.", + "homepage": "http://purl.org/spar/c4o", + "id": "lov.c4o", + "name": "C4O, the Citation Counting and Context Characterization Ontology", + "prefix": "c4o", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/spar/c4o/$1" + }, + "lov.cal": { + "authority": "lov", + "description": "A vocabulary for description of events and calendars", + "homepage": "http://www.w3.org/2002/12/cal/ical", + "id": "lov.cal", + "name": "Internet Calendaring and Scheduling Core Object Specification", + "prefix": "cal", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2002/12/cal/ical#$1" + }, + "lov.caresses": { + "authority": "lov", + "description": "The CARESSES Ontology encodes guidelines defined by experts in Transcultural Nursing, with the aim of offering a specific tool for endowing social assistive robots (assisting older adults) with cultural competence.", + "homepage": "http://caressesrobot.org/ontology", + "id": "lov.caresses", + "name": "CARESSES Ontology", + "prefix": "caresses", + "source": "lov.linkeddata.es", + "subjects": [ + "health sciences" + ], + "uri_format": "http://caressesrobot.org/ontology#$1" + }, + "lov.cart": { + "authority": "lov", + "description": "Ontology for representation of cartesian co-ordinates", + "homepage": "http://purl.org/net/cartCoord#", + "id": "lov.cart", + "name": "cartCoordOnt", + "prefix": "cart", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "mathematics" + ], + "uri_format": "http://purl.org/net/cartCoord#$1" + }, + "lov.caso": { + "authority": "lov", + "description": "CASO (Context Aware System Observation) is an ontology for context aware system and observation services. Its goal is to describe all the processing of the context.", + "homepage": "http://www.w3id.org/def/caso#", + "id": "lov.caso", + "name": "Context Aware System Observation Ontology", + "prefix": "caso", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://www.w3id.org/def/caso#$1" + }, + "lov.cbcm": { + "authority": "lov", + "description": "This ontology describes terms concerning companies, their cross-border movements within the European Union (EU), and associated EU company legislation.", + "homepage": "http://w3id.org/um/cbcm/eu-cm-ontology", + "id": "lov.cbcm", + "name": "The European Union Company Mobility Ontology (EUCM ontology)", + "prefix": "cbcm", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://w3id.org/um/cbcm/eu-cm-ontology#$1" + }, + "lov.cbo": { + "authority": "lov", + "description": "A metadata vocabulary for describing comic books and comic book collections.", + "homepage": "http://comicmeta.org/cbo/", + "id": "lov.cbo", + "name": "Comic Book Ontology", + "prefix": "cbo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://comicmeta.org/cbo/$1" + }, + "lov.cbs": { + "authority": "lov", + "description": "Ontologie voor datasets van het CBS", + "homepage": "http://betalinkeddata.cbs.nl/def/cbs", + "id": "lov.cbs", + "name": "De Centraal Bureau voor de Statistiek (CBS) ontologie", + "prefix": "cbs", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences", + "earth and related environmental sciences" + ], + "uri_format": "http://betalinkeddata.cbs.nl/def/cbs#$1" + }, + "lov.cc": { + "authority": "lov", + "description": "The Creative Commons Rights Expression Language (CC REL) lets you describe copyright licenses in RDF", + "homepage": "http://creativecommons.org/ns", + "id": "lov.cc", + "name": "Creative Commons Rights Expression Language", + "prefix": "cc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://creativecommons.org/ns#$1" + }, + "lov.cci": { + "authority": "lov", + "description": "Ontology for Cloud Computing Instances. Instance are classes of VM that comprise varying combinations of CPU, memory, storage, and networking capacity. This ontology allows to define the instantiation model of MVs used in large cloud computing providers such as Amazon, Azure, etc.", + "homepage": "http://cookingbigdata.com/linkeddata/ccinstances", + "id": "lov.cci", + "name": "Ontology for Cloud Computing instances", + "prefix": "cci", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://cookingbigdata.com/linkeddata/ccinstances#$1" + }, + "lov.cco": { + "authority": "lov", + "description": "The Cognitive Characteristics Ontology specification provides a vocabulary for describing cognitive pattern within contexts, their temporal dynamics and their origins, on/ for the Semantic Web.", + "homepage": "http://purl.org/ontology/cco/core#", + "id": "lov.cco", + "name": "Cognitive Characteristics Ontology", + "prefix": "cco", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/cco/core#$1" + }, + "lov.ccp": { + "authority": "lov", + "description": "Simple and direct pricing ontology for Cloud Computing Services. This ontology allows to define model of prices used in large cloud computing providers such as Amazon, Azure, etc., including options for regions, type of instances, prices specification, etc.", + "homepage": "http://cookingbigdata.com/linkeddata/ccpricing", + "id": "lov.ccp", + "name": "Vocabulary for prices options in Cloud Computing Services", + "prefix": "ccp", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://cookingbigdata.com/linkeddata/ccpricing#$1" + }, + "lov.ccr": { + "authority": "lov", + "description": "Ontology for the definition of regions and zones of availability on CloudComputing platforms and services. This ontology allows to define model of regions used in large cloud computing providers such as Amazon, Azure, etc.", + "homepage": "http://cookingbigdata.com/linkeddata/ccregions", + "id": "lov.ccr", + "name": "Vocabulary for Regions and Zones on Cloud Computing", + "prefix": "ccr", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://cookingbigdata.com/linkeddata/ccregions#$1" + }, + "lov.ccsla": { + "authority": "lov", + "description": "Service Level Agreement for Cloud Computing Services. This ontology allows to define model of SLA/SLO used in large cloud computing providers such as Amazon, Azure, etc., including terms, claims, credit, compensations, etc", + "homepage": "http://cookingbigdata.com/linkeddata/ccsla", + "id": "lov.ccsla", + "name": "Service Level Agreement for Cloud Computing", + "prefix": "ccsla", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://cookingbigdata.com/linkeddata/ccsla#$1" + }, + "lov.cdc": { + "authority": "lov", + "description": "The Construction Dataset Context (CDC) ontology is an extension of DCAT v2.0, a W3C Recommendation ontology for describing (RDF and non-RDF) datasets published on the Web. Using this extension, it becomes possible to describe a context for construction-related datasets that are being distributed using Web technology as well as datasets that are not shared outside an organization such as local copies, work in progress and other datasets that remain internal. This dataset metadata encompasses the temporal context (period or snapshot), the type of content of the dataset (as-built, design, etc.) and relations between contextualized datasets (previous as-built, requirements related to a design, etc.). In addition, this DCAT extension also provides terminology for managing dataset distributions that are scoped to a certain (named or default) graph of an RDF file or quadstore.", + "homepage": "https://w3id.org/cdc", + "id": "lov.cdc", + "name": "CDC: Construction Dataset Context ontology", + "prefix": "cdc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/cdc#$1" + }, + "lov.cdesc": { + "authority": "lov", + "description": "The Context Description module includes models for the context of a cultural property, in a broad sense: agents (e.g.: author, collector, copyright holder), objects (e.g.: inventories, bibliography, protective measures, other cultural properties, collections etc.), activities (e.g.: surveys, conservation interventions), situations (e.g.: commission, coin issuance, estimate, legal situation) related, involved or involving the cultural property. Thus it represents attributes that do not result from a measurement of features in a cultural property, but are associated with it.", + "homepage": "https://w3id.org/arco/ontology/context-description", + "id": "lov.cdesc", + "name": "Context Description Ontology (ArCo network)", + "prefix": "cdesc", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "https://w3id.org/arco/ontology/context-description/$1" + }, + "lov.cdm": { + "authority": "lov", + "description": "An attempt to represent how universal/accepted/popular a URI is", + "homepage": "http://purl.org/twc/ontology/cdm.owl#", + "id": "lov.cdm", + "name": "Conceptual Depth and Momentum", + "prefix": "cdm", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/twc/ontology/cdm.owl#$1" + }, + "lov.cdtype": { + "authority": "lov", + "description": "Types defined by the Dublin Core Collections Application Profile", + "homepage": "http://purl.org/cld/cdtype/", + "id": "lov.cdtype", + "name": "The Collection Description Type Namespace", + "prefix": "cdtype", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/cld/cdtype/$1" + }, + "lov.cem": { + "authority": "lov", + "description": "The Crime Event Model is an ontology for the representation of crime events extracted from local newspapers. It could be employed for Crime Analysis purposes: extracting crime information from newspapers and enriching them with proper machine-readable semantics is a critical task to help law enforcement agencies at preventing crime, supporting criminal investigations and evaluating the action of law enforcement agencies themselves. The model is based on the fundamental 5W1H journalistic questions, that are Who?, What?, When?, Where?, Why? and How?. Another important requirement was the attempt to exploit existing knowledge graphs and ontologies such as the Simple Event Model (SEM) Ontology and the Schema.org data model for interoperability and interconnection.", + "homepage": "https://w3id.org/CEMontology", + "id": "lov.cem", + "name": "Crime Event Model (CEM)", + "prefix": "cem", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/CEMontology/$1" + }, + "lov.ceo": { + "authority": "lov", + "description": "An Ontology for Consumer Electronics Products and Services", + "homepage": "http://www.ebusiness-unibw.org/ontologies/consumerelectronics/v1", + "id": "lov.ceo", + "name": "Consumer Electronics Ontology", + "prefix": "ceo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ebusiness-unibw.org/ontologies/consumerelectronics/v1#$1" + }, + "lov.cerif": { + "authority": "lov", + "description": "The Common European Research Information Format (CERIF) Ontology Specification provides basic concepts and properties for describing research information as semantic data.", + "homepage": "http://www.eurocris.org/ontologies/cerif/1.3", + "id": "lov.cerif", + "name": "CERIF Ontology 1.3", + "prefix": "cerif", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://www.eurocris.org/ontologies/cerif/1.3#$1" + }, + "lov.cert": { + "authority": "lov", + "description": "Ontology for Certificates and crypto stuff.", + "homepage": "http://www.w3.org/ns/auth/cert#", + "id": "lov.cert", + "name": "The Cert Ontology", + "prefix": "cert", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/auth/cert#$1" + }, + "lov.cevent": { + "authority": "lov", + "description": "The Cultural Event module models cultural events, i.e. events involving cultural properties.", + "homepage": "https://w3id.org/arco/ontology/cultural-event", + "id": "lov.cevent", + "name": "Cultural Event Ontology (ArCo network)", + "prefix": "cevent", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/arco/ontology/cultural-event/$1" + }, + "lov.cff": { + "authority": "lov", + "description": "This is an ontology representation of the generic features defined by Climate and Forecast (CF) standard names vocabulary (http://cf-pcmdi.llnl.gov/documents/cf-standard-names/), maintained by the Program for Climate Model Diagnosis and Intercomparison (http://cf-pcmdi.llnl.gov/ ) which is intended for use with climate and forecast data, in the atmosphere, surface and ocean domains.", + "homepage": "http://purl.oclc.org/NET/ssnx/cf/cf-feature", + "id": "lov.cff", + "name": "Climate and Forecast (CF) features", + "prefix": "cff", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://purl.oclc.org/NET/ssnx/cf/cf-feature#$1" + }, + "lov.cfp": { + "authority": "lov", + "description": "This is an ontology representation of the climatic data variables defined by Climate and Forecast (CF) standard names vocabulary (http://cf-pcmdi.llnl.gov/documents/cf-standard-names/), maintained by the Program for Climate Model Diagnosis and Intercomparison (http://cf-pcmdi.llnl.gov/ ) which is intended for use with climate and forecast data, in the atmosphere, surface and ocean domains.", + "homepage": "http://purl.oclc.org/NET/ssnx/cf/cf-property", + "id": "lov.cfp", + "name": "Climate and Forecast (CF) standard names parameter vocabulary", + "prefix": "cfp", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "http://purl.oclc.org/NET/ssnx/cf/cf-property#$1" + }, + "lov.cfrl": { + "authority": "lov", + "description": "The Corporate Financial Reports and Loans Ontology (CFRL).", + "homepage": "http://linkeddata.finki.ukim.mk/lod/ontology/cfrl#", + "id": "lov.cfrl", + "name": "Corporate Financial Reports and Loans Ontology", + "prefix": "cfrl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://linkeddata.finki.ukim.mk/lod/ontology/cfrl#$1" + }, + "lov.cgov": { + "authority": "lov", + "description": "An ontology of UK central government", + "homepage": "http://reference.data.gov.uk/def/central-government", + "id": "lov.cgov", + "name": "Central Government Ontology", + "prefix": "cgov", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences" + ], + "uri_format": "http://reference.data.gov.uk/def/central-government/$1" + }, + "lov.chord": { + "authority": "lov", + "description": "This document describes the first draft of a chord ontology based on work from the Centre for Digital Music, Queen Mary, University of London. It has been created as part of the OMRAS2 project and is intended to provide a common, versatile vocabulary for describing chords and chord sequences in RDF.", + "homepage": "http://purl.org/ontology/chord/", + "id": "lov.chord", + "name": "The OMRAS2 Chord Ontology", + "prefix": "chord", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/chord/$1" + }, + "lov.ci": { + "authority": "lov", + "description": "This vocabulary defines a number of concepts peculiar to content strategy which are not accounted for by other vocabularies.", + "homepage": "https://privatealpha.com/ontology/content-inventory/1#", + "id": "lov.ci", + "name": "A Content Inventory Vocabulary", + "prefix": "ci", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://privatealpha.com/ontology/content-inventory/1#$1" + }, + "lov.cis": { + "authority": "lov", + "description": "The ontology aims at modelling the data on cultural institutes or sites such as data regarding the agents that play a specific role on cultural institutes or sites, the sites themselves, the contact points, all multimedia files which describe the cultural institute or site and any other information useful to the public in order to access the institute or site. Moreover, the ontology represents events that can take place in specific cultural institutes or sites.", + "homepage": "http://dati.beniculturali.it/cultural-ON/cultural-ON.owl", + "id": "lov.cis", + "name": "Cultural-ON (Cultural ONtology): Cultural Institute/Site and Cultural Event Ontology", + "prefix": "cis", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences" + ], + "uri_format": "http://dati.beniculturali.it/cis/$1" + }, + "lov.cito": { + "authority": "lov", + "description": "The Citation Typing Ontology enables characterization of the nature or type of citations", + "homepage": "http://purl.org/spar/cito", + "id": "lov.cito", + "name": "CiTO, the Citation Typing Ontology", + "prefix": "cito", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/spar/cito/$1" + }, + "lov.citof": { + "authority": "lov", + "description": "CiTOFunctions is an ontology that provides a classification for citations. In particular, it classifies CiTO properties (each defining a particular citational act)", + "homepage": "http://www.essepuntato.it/2013/03/cito-functions", + "id": "lov.citof", + "name": "Functions of Citations", + "prefix": "citof", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://www.essepuntato.it/2013/03/cito-functions/$1" + }, + "lov.cl": { + "authority": "lov", + "description": "Le projet Advene a pour objectif de fournir un mod\u00e8le et plusieurs formats de donn\u00e9es pour partager des annotations sur des vid\u00e9os num\u00e9riques (films, cours, conf\u00e9rences...), ainsi que des outils pour \u00e9diter et visualiser les hyp\u00e9rvid\u00e9os g\u00e9n\u00e9r\u00e9es \u00e0 partir de ces vid\u00e9os et des annotations. Les enseignants, les amateurs de cin\u00e9ma, etc., peuvent les utiliser pour \u00e9changer leurs commentaires et analyse de documents audiovisuels.\n\nLe mod\u00e8le Cinelab permet non seulement de repr\u00e9senter les annotations vid\u00e9os, mais aussi d'expliciter leur structure (\u00e0 travers les notions de sch\u00e9ma et de type d'annotation), ainsi que leur pr\u00e9sentations \u00e0 l'aide de vues (mod\u00e8les appliqu\u00e9s aux donn\u00e9es pour produire des hypervid\u00e9os) et de requ\u00eates.\n\nCe mod\u00e8le a \u00e9t\u00e9 d\u00e9velopp\u00e9 par les partenaires du projet Cinelab (2007-2008, financ\u00e9 par l'ANR), et utilis\u00e9 par la suite dans plusieurs projets et applications, dont Advene (LIRIS) et Ligne de temps (IRI).", + "homepage": "http://advene.org/ns/cinelab/ld", + "id": "lov.cl", + "name": "Cinelab ontology", + "prefix": "cl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://advene.org/ns/cinelab/ld#$1" + }, + "lov.cld": { + "authority": "lov", + "description": "An expression in RDF of the application profile for collection-level description developed by the Dublin Core Collection Description Task Group.", + "homepage": "http://purl.org/cld/terms/", + "id": "lov.cld", + "name": "The Collection Description Terms", + "prefix": "cld", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/cld/terms/$1" + }, + "lov.cmo": { + "authority": "lov", + "description": "An ontology to tie classes and properties to SKOS concepts", + "homepage": "http://purl.org/twc/ontologies/cmo.owl", + "id": "lov.cmo", + "name": "Conceptual Model Ontology", + "prefix": "cmo", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://purl.org/twc/ontologies/cmo.owl#$1" + }, + "lov.cnt": { + "authority": "lov", + "description": "Representing Content in RDF as defined by http://www.w3.org/TR/Content-in-RDF/", + "homepage": "http://www.w3.org/2011/content", + "id": "lov.cnt", + "name": "Representing Content in RDF", + "prefix": "cnt", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2011/content#$1" + }, + "lov.co": { + "authority": "lov", + "description": "The Counter Ontology specification provides basic concepts and properties for describing a general counter concept and some important sub counters", + "homepage": "http://purl.org/ontology/co/core#", + "id": "lov.co", + "name": "Counter Ontology", + "prefix": "co", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/co/core#$1" + }, + "lov.cochrane": { + "authority": "lov", + "description": "The Cochrane Core ontology describes the entities and concepts that exist in the domain of evidence based healthcare. It is used for the construction of the Cochrane Linked Data Vocabulary containing some 400k terms including Interventions (Drugs, Procedures etc), Populations (Age, Sex, Condition), and clinical Outcomes.", + "homepage": "http://data.cochrane.org/ontologies/core/", + "id": "lov.cochrane", + "name": "Cochrane Core Vocabulary Ontology", + "prefix": "cochrane", + "source": "lov.linkeddata.es", + "subjects": [ + "health sciences" + ], + "uri_format": "http://data.cochrane.org/ontologies/core/$1" + }, + "lov.cocoon": { + "authority": "lov", + "description": "Simple ontology for Cloud Computing Services. This ontology allows to define model of prices used in large cloud computing providers such as Google, Amazon, Azure, etc., including options for regions, type of instances, prices specification, etc.", + "homepage": "https://w3id.org/cocoon/v1.0", + "id": "lov.cocoon", + "name": "Cloud Computing Services Ontology", + "prefix": "cocoon", + "source": "lov.linkeddata.es", + "subjects": [ + "law" + ], + "uri_format": "https://w3id.org/cocoon/v1.0#$1" + }, + "lov.cogs": { + "authority": "lov", + "description": "Vocabulary for describing ETL and data transformation activities.", + "homepage": "http://vocab.deri.ie/cogs", + "id": "lov.cogs", + "name": "COGS Vocabulary", + "prefix": "cogs", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://vocab.deri.ie/cogs#$1" + }, + "lov.cold": { + "authority": "lov", + "description": "Ontology for the description of customizable products. It models the configuration process as the traversal of a graph of partially defined products, or \"Configurations\"", + "homepage": "http://purl.org/configurationontology", + "id": "lov.cold", + "name": "'Configuration as Linked Data' ontology", + "prefix": "cold", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/configurationontology#$1" + }, + "lov.coll": { + "authority": "lov", + "description": "The Collections Ontology (CO) defines unordered collections (Set and Bag) and ordered collections (or List). This ontology has been inspired by the work \"Putting OWL in Order: Patterns for Sequences in OWL\" by Drummond et al. (OWL-ED 2006).", + "homepage": "http://purl.org/co", + "id": "lov.coll", + "name": "Collections Ontology", + "prefix": "coll", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/co/$1" + }, + "lov.comm": { + "authority": "lov", + "description": "This vocabulary is intended to describe all the aspects which are needed to communicate incident related information for fire department services", + "homepage": "http://vocab.resc.info/communication", + "id": "lov.comm", + "name": "Vocabulary related to incident communication", + "prefix": "comm", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://vocab.resc.info/communication#$1" + }, + "lov.common": { + "authority": "lov", + "description": "The Delivery Context Ontology models the knowledge of the environment in which devices interact with the Web or other services", + "homepage": "http://www.w3.org/2007/uwa/context/deliverycontext.owl", + "id": "lov.common", + "name": "The Delivery Context Ontology", + "prefix": "common", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2007/uwa/context/common.owl#$1" + }, + "lov.con": { + "authority": "lov", + "description": "Utility concepts for everyday life", + "homepage": "http://www.w3.org/2000/10/swap/pim/contact", + "id": "lov.con", + "name": "Contact", + "prefix": "con", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2000/10/swap/pim/contact#$1" + }, + "lov.contax": { + "authority": "lov", + "description": "An ontology containing additional terminology for structuring and annotating RDFS/OWL taxonomies for describing constructions (components, materials, spatial zones, damages, construction tasks and properties). It also functions as an index for known taxonomies starting from root classes and properties.", + "homepage": "https://w3id.org/con-tax", + "id": "lov.contax", + "name": "ConTax ontology", + "prefix": "contax", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/con-tax#$1" + }, + "lov.conversion": { + "authority": "lov", + "description": "Ontology used to describe interpretations of tabular literals to produce RDF", + "homepage": "http://purl.org/twc/vocab/conversion/", + "id": "lov.conversion", + "name": "Conversion Ontology", + "prefix": "conversion", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/twc/vocab/conversion/$1" + }, + "lov.coo": { + "authority": "lov", + "description": "The COO provides a vocabulary for exposing available configuration options for car models. It allows indicating choices that can be made as well as compatibility, dependency, and inclusion information. The ontology imports and extends the GoodRelations ontology for e-commerce", + "homepage": "http://purl.org/coo/ns#", + "id": "lov.coo", + "name": "Car Options Ontology", + "prefix": "coo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/coo/ns#$1" + }, + "lov.core": { + "authority": "lov", + "description": "This is the core module in Materials Design Ontology.", + "homepage": "https://w3id.org/mdo/core/", + "id": "lov.core", + "name": "Materials Design Ontology - Core Module", + "prefix": "core", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/mdo/core/$1" + }, + "lov.coun": { + "authority": "lov", + "description": "Basic properties of a country as defined by ISO 3166 (code and name)", + "homepage": "http://www.daml.org/2001/09/countries/iso-3166-ont", + "id": "lov.coun", + "name": "ISO 3166 Country Codes", + "prefix": "coun", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://www.daml.org/2001/09/countries/iso-3166-ont#$1" + }, + "lov.cpa": { + "authority": "lov", + "description": "A set of annotation properties to be used for ontology design patterns", + "homepage": "http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl", + "id": "lov.cpa", + "name": "Content Pattern Annotations", + "prefix": "cpa", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#$1" + }, + "lov.cpmeta": { + "authority": "lov", + "description": "OWL vocabulary describing metadata of two environmental research infrastructures: ICOS and SITES", + "homepage": "http://meta.icos-cp.eu/ontologies/cpmeta/", + "id": "lov.cpmeta", + "name": "Ontology of Integrated Carbon Observation System (ICOS)", + "prefix": "cpmeta", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://meta.icos-cp.eu/ontologies/cpmeta/$1" + }, + "lov.crm": { + "authority": "lov", + "description": "This is the encoding approved by CRM-SIG in the meeting 21/11/2012 as the official current version for the CIDOC CRM namespace. Note that this is NOT a definition of the CIDOC CRM, but an encoding derived from the authoritative release of the CIDOC CRM v5.0.4 on http://www.cidoc-crm.org/official_release_cidoc.html", + "homepage": "http://www.cidoc-crm.org/cidoc-crm/", + "id": "lov.crm", + "name": "CIDOC Conceptual Reference Model", + "prefix": "crm", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://www.cidoc-crm.org/cidoc-crm/$1" + }, + "lov.cro": { + "authority": "lov", + "description": "The Copyright Ontology is a contribution geared towards the development of copyright-aware Digital Rights Management (DRM) systems.", + "homepage": "http://rhizomik.net/ontologies/copyrightonto.owl", + "id": "lov.cro", + "name": "Copyright Ontology", + "prefix": "cro", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://rhizomik.net/ontologies/copyrightonto.owl#$1" + }, + "lov.crsw": { + "authority": "lov", + "description": "The ReSIST Courseware Ontology represents the various educational courses and resources within the ReSIST project", + "homepage": "http://courseware.rkbexplorer.com/ontologies/courseware", + "id": "lov.crsw", + "name": "ReSIST Courseware Ontology", + "prefix": "crsw", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "http://courseware.rkbexplorer.com/ontologies/courseware#$1" + }, + "lov.cs": { + "authority": "lov", + "description": "This vocabulary defines a set of terms for describing changes to resource descriptions.", + "homepage": "http://purl.org/vocab/changeset/schema", + "id": "lov.cs", + "name": "Changeset", + "prefix": "cs", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/vocab/changeset/schema#$1" + }, + "lov.csp": { + "authority": "lov", + "description": "A vocabulary to represent Constraint Satisfaction Problems (CSPs) in which constraints are expressed by Boolean expressions on fluents.", + "homepage": "http://vocab.deri.ie/csp", + "id": "lov.csp", + "name": "Constraint Satisfaction Problems Vocabulary", + "prefix": "csp", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://vocab.deri.ie/csp#$1" + }, + "lov.csvw": { + "authority": "lov", + "description": "This document describes the RDFS vocabulary description used in the Metadata Vocabulary for Tabular Data along with the default JSON-LD Context.", + "homepage": "http://www.w3.org/ns/csvw#", + "id": "lov.csvw", + "name": "CSV on the Web Vocabulary", + "prefix": "csvw", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/csvw#$1" + }, + "lov.ct": { + "authority": "lov", + "description": "Defines types of connectivity used in communication and bearer services accessible in certain connectivity.", + "homepage": "http://www.tele.pw.edu.pl/~sims-onto/ConnectivityType.owl", + "id": "lov.ct", + "name": "Connectivity types", + "prefix": "ct", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.tele.pw.edu.pl/~sims-onto/ConnectivityType.owl#$1" + }, + "lov.ctag": { + "authority": "lov", + "description": "Common Tags are references to unique, well-defined concepts, complete with metadata and their own URLs.", + "homepage": "http://commontag.org/ns#", + "id": "lov.ctag", + "name": "Common Tag Vocabulary", + "prefix": "ctag", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://commontag.org/ns#$1" + }, + "lov.ctlog": { + "authority": "lov", + "description": "The Catalogue module allows the description of concepts related to the Italian General Catalogue of Cultural Heritage (ICCD-MiBAC), and in particular catalogue records, that is XML files recording all data gathered by a cataloguer on a particular cultural property.", + "homepage": "https://w3id.org/arco/ontology/catalogue", + "id": "lov.ctlog", + "name": "Catalogue Ontology (ArCo network)", + "prefix": "ctlog", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "https://w3id.org/arco/ontology/catalogue/$1" + }, + "lov.cto": { + "authority": "lov", + "description": "The Construction Tasks Ontology (CTO) describes tasks operating on construction elements, spatial zones and/or damages. The tasks are either planned or executed depending on the dataset metadata context of the dataset its used in. Five different types of tasks are defined: instalment, removal, modification, repair and inspection. \nConsequences of tasks on the dataset, i.e. added and/or deleted triples, are modeled using reified statements. The tasks can link to a reified statement using the CTO relations.", + "homepage": "https://w3id.org/cto", + "id": "lov.cto", + "name": "CTO: Construction Tasks Ontology", + "prefix": "cto", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/cto#$1" + }, + "lov.ctorg": { + "authority": "lov", + "description": "El objetivo de este vocabulario es la creaci\u00f3n de un esquema que permita definir los contenidos de la informaci\u00f3n relacionada con los \u00f3rganos de gobierno y los centros p\u00fablicos que ofrecen servicios. Se identifican ciertas variables en el dominio de los centros p\u00fablicos, que se modelan a trav\u00e9s de ciertos tipos de datos y de propiedades relacionadas entre los recursos. Se utiliza Ontologies for e-Government para modelar las principales caracter\u00edsticas.", + "homepage": "http://purl.org/ctic/infraestructuras/organizacion", + "id": "lov.ctorg", + "name": "Vocabulario de la estructura de organismos p\u00fablicos", + "prefix": "ctorg", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences" + ], + "uri_format": "http://purl.org/ctic/infraestructuras/organizacion#$1" + }, + "lov.ctrl": { + "authority": "lov", + "description": "CTRLont specifies concepts and relationships of control actors on a high level", + "homepage": "https://w3id.org/ibp/CTRLont", + "id": "lov.ctrl", + "name": "CTRLont - An ontology to formally specify the control domain", + "prefix": "ctrl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/ibp/CTRLont#$1" + }, + "lov.ctxdesc": { + "authority": "lov", + "description": "OWL pattern for describing activity models as abstract dependencies among classes.", + "homepage": "http://www.demcare.eu/ontologies/contextdescriptor.owl", + "id": "lov.ctxdesc", + "name": "Context Descriptor Pattern", + "prefix": "ctxdesc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.demcare.eu/ontologies/contextdescriptor.owl#$1" + }, + "lov.cwmo": { + "authority": "lov", + "description": "Creative Workshop Management Ontology (CWMO) - an ontology designed to describe the creative workshop domain, to permit reasoning on creative method and to describe resources gathered inside Creative Support System. The primary goal of the ontology is to cover all knowledge about creative workshop and creative method necessary for Creative support system. The second goal is to provide interoperability between distributed Creative Support System.", + "homepage": "http://purl.org/cwmo/#", + "id": "lov.cwmo", + "name": "Creative Workshop Management Ontology (CWMO)", + "prefix": "cwmo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/cwmo/#$1" + }, + "lov.cwork": { + "authority": "lov", + "description": "This ontology defines the terms required to describe the creative works produced by the BBC and their associated metadata.", + "homepage": "http://www.bbc.co.uk/ontologies/creativework", + "id": "lov.cwork", + "name": "Creative Work Ontology", + "prefix": "cwork", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://www.bbc.co.uk/ontologies/creativework/$1" + }, + "lov.cwrc": { + "authority": "lov", + "description": "L'Ontologie CWRC est l'ontologie du Collaboratoire scientifique des \u00e9crits du Canada.", + "homepage": "http://sparql.cwrc.ca/ontologies/cwrc", + "id": "lov.cwrc", + "name": "L'Ontologie CWRC", + "prefix": "cwrc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://sparql.cwrc.ca/ontologies/cwrc#$1" + }, + "lov.d2rq": { + "authority": "lov", + "description": "This document specifies the D2RQ mapping language. D2RQ is a declarative language to describe mappings between relational database schemata and OWL/RDFS ontologies.", + "homepage": "http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1", + "id": "lov.d2rq", + "name": "D2RQ - Language Specification", + "prefix": "d2rq", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1#$1" + }, + "lov.dady": { + "authority": "lov", + "description": "A vocabulary that allows for coarse-grained descriptions of the data-source dynamics as well as the discovery of change notification mechanism(s).", + "homepage": "http://vocab.deri.ie/dady", + "id": "lov.dady", + "name": "Dataset Dynamics (dady) vocabulary", + "prefix": "dady", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/NET/dady#$1" + }, + "lov.daia": { + "authority": "lov", + "description": "The Document Availability Information Ontology (DAIA) describes the current availability of documents in libraries and similar institutions. Availability can be expressed in terms of specific services.", + "homepage": "http://purl.org/ontology/daia", + "id": "lov.daia", + "name": "Document Availability Information Ontology", + "prefix": "daia", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/ontology/daia/$1" + }, + "lov.daq": { + "authority": "lov", + "description": "Quality metrics can be (in principle) calculated on various forms of data (such as datasets, graphs, set of triples etc...). This vocabulary allow the owner/user of such RDF data to calculate metrics on multiple (and different) resources.", + "homepage": "http://purl.org/eis/vocab/daq#", + "id": "lov.daq", + "name": "Dataset Quality Vocabulary", + "prefix": "daq", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/eis/vocab/daq#$1" + }, + "lov.dataid": { + "authority": "lov", + "description": "DBpedia Data ID is an ontology with the goal of describing LOD datasets via RDF files in a uniform way. Established vocabularies like DCAT, VoID, Prov-O and SPARQL Service Description are used for maximum compatibility.", + "homepage": "http://dataid.dbpedia.org/ns/core#", + "id": "lov.dataid", + "name": "DataID", + "prefix": "dataid", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://dataid.dbpedia.org/ns/core#$1" + }, + "lov.date": { + "authority": "lov", + "description": "OntoMedia (Ontology for Media) Date Component has been designed to describe the different ways of marking time in media.", + "homepage": "http://contextus.net/ontology/ontomedia/misc/date#", + "id": "lov.date", + "name": "OntoMedia Date Part Representation", + "prefix": "date", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://contextus.net/ontology/ontomedia/misc/date#$1" + }, + "lov.datex": { + "authority": "lov", + "description": "This document gives URIs to all terms used within Datex II. the Datex standard was developed for information exchange between traffic management centres, traffic information centres and service providers in Europe", + "homepage": "http://vocab.datex.org/terms#", + "id": "lov.datex", + "name": "Linked Datex II", + "prefix": "datex", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences" + ], + "uri_format": "http://vocab.datex.org/terms#$1" + }, + "lov.dave": { + "authority": "lov", + "description": "The Data Value Vocabulary (DaVe) is an extensible core vocabulary that allows user to use custom data value dimensions and metrics to characterise data value in a specific context. This flexibility allows for the comprehensive modelling of data value. As a data value model, DaVe allows users to monitor data value as it occurs within a data exploitation or value creation process (data value chain)", + "homepage": "http://theme-e.adaptcentre.ie/dave/dave.ttl", + "id": "lov.dave", + "name": "Data Value Vocabulary (DaVe)", + "prefix": "dave", + "source": "lov.linkeddata.es", + "subjects": [ + "generic", + "mathematics", + "computer and information sciences" + ], + "uri_format": "http://theme-e.adaptcentre.ie/dave#$1" + }, + "lov.dba": { + "authority": "lov", + "description": "The ontology, presented here in a beta version, is based on the analysis of the documentation and descriptive requirements of the Intesa Sanpaolo Historical Archive and is intended to describe the content of historical banking documents and of some of the activities carried out by the bank, particularly in relation to third parties (loans, charity donations, seizures and confiscations, etc.), which involve the initiation of processes or the production of documents. The focal point of the descriptive model is the bank - an entity that initiates different types of processes, whose common feature is that they are structured into various stages/events - and the relationship between the documentation produced and the information it contains. In fact, this ontology is based on information collected from archived documents which describe various processes and activities carried out by banking institutions: the starting point for its construction were the inventories and databases of documentation stored in the Historical Archive which was produced by the various banks that over time were merged into Intesa Sanpaolo. The ontology was created to provide a sufficiently abstract representation and model for describing the processes of various banking activities from which the documentation was produced - from a company's request for financing and its outcome, to the preparation of seizure, confiscation and asset restitution filings, to charitable contributions, just to mention a few examples - reusing models that were already well established and widely used. The structure of the proposed ontology is in fact intended to adapt to the various activities, described in the archive files that a banking institution performs in relation to third parties. The proposed ontology is therefore not an ontology on banking activity in general, but on the relationship between this activity and the documents that are produced. Moreover, its objective is not to describe the documents in the strict sense of the term, for which reference is made to OAD ontology. The purpose of this project is to lay the initial, and fundamental, building blocks for describing the complexity, variety, and breadth of the domain of archiving bank records and the data they contain. Despite having data from different banks relating to different activities and having already made arrangements for the integration of third-party datasets and ontologies, before completing the project we will have to wait for the processing of representations based on other types of documents and banking institutions, including non-Italian ones.", + "homepage": "https://w3id.org/dba/ontology/", + "id": "lov.dba", + "name": "Description Banking Archives Ontology", + "prefix": "dba", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "https://w3id.org/dba/ontology/$1" + }, + "lov.dbm": { + "authority": "lov", + "description": "An ontology for the Drug Bureau of Macedonia (DBM).", + "homepage": "http://purl.org/net/dbm/ontology#", + "id": "lov.dbm", + "name": "DBM Ontology", + "prefix": "dbm", + "source": "lov.linkeddata.es", + "subjects": [ + "health sciences" + ], + "uri_format": "http://purl.org/net/dbm/ontology#$1" + }, + "lov.dbowl": { + "authority": "lov", + "description": "Primitive ontology for database to Semantic Web mapping which subsumes classes that represent mappings to explicit OWL constructs, such as OWL class, object property, data property, etc. Classes in this ontology are populated by individuals representing components of the database schema being mapped.", + "homepage": "http://ontology.cybershare.utep.edu/dbowl", + "id": "lov.dbowl", + "name": "Relational to Ontology Mapping Primitive", + "prefix": "dbowl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ontology.cybershare.utep.edu/dbowl/relational-to-ontology-mapping-primitive.owl#$1" + }, + "lov.dbpedia-owl": { + "authority": "lov", + "description": "The DBpedia ontology provides the classes and properties used in the DBpedia data set.", + "homepage": "http://dbpedia.org/ontology/", + "id": "lov.dbpedia-owl", + "name": "The DBpedia Ontology", + "prefix": "dbpedia-owl", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://dbpedia.org/ontology/$1" + }, + "lov.dbug": { + "authority": "lov", + "description": "An extension of DOAP for the description of bugs", + "homepage": "http://ontologi.es/doap-bugs#", + "id": "lov.dbug", + "name": "DOAP Bugs", + "prefix": "dbug", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ontologi.es/doap-bugs#$1" + }, + "lov.dcam": { + "authority": "lov", + "description": "An abstract model for Dublin Core metadata", + "homepage": "http://purl.org/dc/dcam/", + "id": "lov.dcam", + "name": "DCMI Abstract Model", + "prefix": "dcam", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://purl.org/dc/dcam/$1" + }, + "lov.dcat": { + "authority": "lov", + "description": "DCAT is an RDF vocabulary designed to facilitate interoperability between data catalogs published on the Web", + "homepage": "http://www.w3.org/ns/dcat", + "id": "lov.dcat", + "name": "Data Catalog Vocabulary", + "prefix": "dcat", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/dcat#$1" + }, + "lov.dce": { + "authority": "lov", + "description": "The Dublin Core Metadata Element Set is a vocabulary of fifteen properties for use in resource description. The name \"Dublin\" is due to its origin at a 1995 invitational workshop in Dublin, Ohio; \"core\" because its elements are broad and generic, usable for describing a wide range of resources.", + "homepage": "http://purl.org/dc/elements/1.1/", + "id": "lov.dce", + "name": "Dublin Core Metadata Element Set", + "prefix": "dce", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/dc/elements/1.1/$1" + }, + "lov.dcite": { + "authority": "lov", + "description": "The DataCite Ontology is an ontology written in OWL 2 DL to enable certain metadata properties of the DataCite Metadata Specification version 2.0 (http://datacite.org/schema/DataCite-MetadataKernel_v2.0.pdf) to be described in RDF.", + "homepage": "http://purl.org/spar/datacite", + "id": "lov.dcite", + "name": "The DataCite Ontology", + "prefix": "dcite", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/spar/datacite/$1" + }, + "lov.dcndl": { + "authority": "lov", + "description": "RDF Schema declaration for Japan NDL Metadata Terms", + "homepage": "http://ndl.go.jp/dcndl/terms/", + "id": "lov.dcndl", + "name": "NDL Metadata Terms", + "prefix": "dcndl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ndl.go.jp/dcndl/terms/$1" + }, + "lov.dco": { + "authority": "lov", + "description": "domOS Common Ontology (dCO) represents a common information model to share a unified understanding for humans and machines and to ensure semantic interoperability in a heterogeneous IoT infrastructure. This ontology allows the decoupling of the infrastructure from the software services and applications.", + "homepage": "https://w3id.org/dco", + "id": "lov.dco", + "name": "domOS Common Ontology", + "prefix": "dco", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://w3id.org/dco#$1" + }, + "lov.dcterms": { + "authority": "lov", + "description": "an up-to-date specification of all metadata terms maintained by the Dublin Core Metadata Initiative, including properties, vocabulary encoding schemes, syntax encoding schemes, and classes.", + "homepage": "http://purl.org/dc/terms/", + "id": "lov.dcterms", + "name": "DCMI Metadata Terms", + "prefix": "dcterms", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/dc/terms/$1" + }, + "lov.dctype": { + "authority": "lov", + "description": "The DCMI Type Vocabulary provides a general, cross-domain list of approved terms that may be used as values for the Resource Type element to identify the genre of a resource.", + "homepage": "http://purl.org/dc/dcmitype/", + "id": "lov.dctype", + "name": "DCMI Type Vocabulary", + "prefix": "dctype", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://purl.org/dc/dcmitype/$1" + }, + "lov.ddesc": { + "authority": "lov", + "description": "The Denotative Description module encodes the characteristics of a cultural property, as detectable and/or detected during the cataloguing process and measurable according to a reference system. Examples include measurements e.g. length, constituting materials e.g. clay, employed techniques e.g. melting, conservation status e.g. good, decent, bad.\nIn this module are used as template the following Ontology Design Patterns:\n- http://www.ontologydesignpatterns.org/cp/owl/collectionentity.owl\n- http://www.ontologydesignpatterns.org/cp/owl/classification.owl\n- http://www.ontologydesignpatterns.org/cp/owl/descriptionandsituation.owl\n- http://www.ontologydesignpatterns.org/cp/owl/situation.owl", + "homepage": "https://w3id.org/arco/ontology/denotative-description", + "id": "lov.ddesc", + "name": "Denotative Description Ontology (ArCo network)", + "prefix": "ddesc", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "https://w3id.org/arco/ontology/denotative-description/$1" + }, + "lov.decision": { + "authority": "lov", + "description": "Decision-making is a process that can result in some decision and decision is a situation of indicating one of the considered options. Decision Ontology provides means for precise distinguishing and distinct treatment of these two aspects.", + "homepage": "https://decision-ontology.googlecode.com/svn/trunk/decision.owl", + "id": "lov.decision", + "name": "Decision ontology", + "prefix": "decision", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://decision-ontology.googlecode.com/svn/trunk/decision.owl#$1" + }, + "lov.demlab": { + "authority": "lov", + "description": "The ontology has been developed in the framework of the Dem@Care project for representing the experimentation protocol towards diagnostic support and assessment of Dementia in a controlled environment. The aim of the protocol is to provide a brief overview of their health status of the participants during consultation (cognition, behaviours and function), and to correlate the system (sensor) data with the data collected using typical dementia care assessment tools.", + "homepage": "http://www.demcare.eu/ontologies/demlab.owl", + "id": "lov.demlab", + "name": "Dem@Care Lab Ontology for Dementia Assessment", + "prefix": "demlab", + "source": "lov.linkeddata.es", + "subjects": [ + "health sciences" + ], + "uri_format": "http://www.demcare.eu/ontologies/demlab.owl#$1" + }, + "lov.deo": { + "authority": "lov", + "description": "The Discourse Elements Ontology is an ontology for describing the major rhetorical elements of a document such as a journal article. It is a subsidiary ontology that is imported into the Document Components Ontology, itself part of SPAR, the Semantic Publishing and Referencing Ontologies", + "homepage": "http://purl.org/spar/deo", + "id": "lov.deo", + "name": "The Discourse Elements Ontology", + "prefix": "deo", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/spar/deo/$1" + }, + "lov.deps": { + "authority": "lov", + "description": "An extension to DOAP for describing a project's requirements", + "homepage": "http://ontologi.es/doap-deps#", + "id": "lov.deps", + "name": "DOAP Dependencies", + "prefix": "deps", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ontologi.es/doap-deps#$1" + }, + "lov.dfc": { + "authority": "lov", + "description": "A common vocabulary for digital food platforms", + "homepage": "http://static.datafoodconsortium.org/ontologies/DFC_FullModel.owl", + "id": "lov.dfc", + "name": "Data Food Consortium Ontology", + "prefix": "dfc", + "source": "lov.linkeddata.es", + "subjects": [ + "agriculture, forestry, and fisheries" + ], + "uri_format": "http://static.datafoodconsortium.org/ontologies/DFC_FullModel.owl#$1" + }, + "lov.dfc-b": { + "authority": "lov", + "description": "DFC Business Ontology", + "homepage": "http://static.datafoodconsortium.org/ontologies/DFC_BusinessOntology.owl", + "id": "lov.dfc-b", + "name": "DFC Business Ontology", + "prefix": "dfc-b", + "source": "lov.linkeddata.es", + "subjects": [ + "agriculture, forestry, and fisheries" + ], + "uri_format": "http://static.datafoodconsortium.org/ontologies/DFC_BusinessOntology.owl#$1" + }, + "lov.dfc-p": { + "authority": "lov", + "description": "A common vocabulary for digital food platforms (Product Glossary Part)", + "homepage": "http://static.datafoodconsortium.org/ontologies/DFC_ProductGlossary.owl", + "id": "lov.dfc-p", + "name": "A common vocabulary for digital food platforms (Product Glossary Part)", + "prefix": "dfc-p", + "source": "lov.linkeddata.es", + "subjects": [ + "agriculture, forestry, and fisheries" + ], + "uri_format": "http://static.datafoodconsortium.org/ontologies/DFC_ProductGlossary.owl#$1" + }, + "lov.dfc-t": { + "authority": "lov", + "description": "A common vocabulary for digital food platforms (Technical Part)", + "homepage": "http://static.datafoodconsortium.org/ontologies/DFC_TechnicalOntology.owl", + "id": "lov.dfc-t", + "name": "A common vocabulary for digital food platforms (Technical Part)", + "prefix": "dfc-t", + "source": "lov.linkeddata.es", + "subjects": [ + "agriculture, forestry, and fisheries" + ], + "uri_format": "http://static.datafoodconsortium.org/ontologies/DFC_TechnicalOntology.owl#$1" + }, + "lov.dg": { + "authority": "lov", + "description": "The DINGO ontology (Data Integration for Grant Ontology) defines the terms of the DINGO vocabulary and provides a machine readable extensible framework to model data relative to projects, funding, project and funding actors, and, notably, funding policies. It is designed to yield high modeling power and elasticity to cope with the huge variety in funding and project practices, which makes it applicable to many areas where funding is an important aspect: first of all research, but also the arts, cultural conservation, and many others.", + "homepage": "https://w3id.org/dingo/", + "id": "lov.dg", + "name": "DINGO Ontology", + "prefix": "dg", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/dingo#$1" + }, + "lov.dicom": { + "authority": "lov", + "description": "Ontology for healthcare metadata - especially metadata found in DICOM files (Digital Imaging and Communications in Medicine, see http://dicom.nema.org/). Author: Michael Brunnbauer, Bonubase GmbH (www.bonubase.com). The author's email address is brunni@netestate.de. See http://purl.org/healthcarevocab/v1help for explanations.", + "homepage": "http://purl.org/healthcarevocab/v1", + "id": "lov.dicom", + "name": "Healthcare metadata - DICOM ontology", + "prefix": "dicom", + "source": "lov.linkeddata.es", + "subjects": [ + "health sciences" + ], + "uri_format": "http://purl.org/healthcarevocab/v1#$1" + }, + "lov.dio": { + "authority": "lov", + "description": "The scope of the DIO is the domain of design intent or design rationale that needs to be documented while undertaking the design of any artifact", + "homepage": "https://w3id.org/dio", + "id": "lov.dio", + "name": "The Design Intent Ontology", + "prefix": "dio", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/dio#$1" + }, + "lov.disco": { + "authority": "lov", + "description": "A metadata vocabulary for documenting research and survey data", + "homepage": "http://rdf-vocabulary.ddialliance.org/discovery", + "id": "lov.disco", + "name": "DDI-RDF Discovery Vocabulary", + "prefix": "disco", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://rdf-vocabulary.ddialliance.org/discovery#$1" + }, + "lov.dita": { + "authority": "lov", + "description": "The DITA RDF ontology translates the semantics of a subset of the vocabulary described in the DITA 1.2 specification in a format that can be understood in the semantic Web of data. By Colin Maudry, licensed under the terms of the Unlicense (public domain).", + "homepage": "http://purl.org/dita/ns#", + "id": "lov.dita", + "name": "DITA RDF ontology", + "prefix": "dita", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/dita/ns#$1" + }, + "lov.dk": { + "authority": "lov", + "description": "The Data Knowledge Vocabulary allows for a comprehensive description of data assets and enterprise data management. It covers a business data dictionary, data quality management, data governance, the technical infrastructure and many other aspects of enterprise data management. The vocabulary represents a linked data implementation of the Data Knowledge Model which resulted from extensive applied research.", + "homepage": "http://www.data-knowledge.org/dk/", + "id": "lov.dk", + "name": "The Data Knowledge Vocabulary", + "prefix": "dk", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.data-knowledge.org/dk/$1" + }, + "lov.dm2e": { + "authority": "lov", + "description": "The DM2E model is a specialisation of the Europeana Data Model (EDM) and can be used for the description of manuscripts in the cultural heritage domain.", + "homepage": "http://onto.dm2e.eu/schemas/dm2e", + "id": "lov.dm2e", + "name": "DM2E model", + "prefix": "dm2e", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://onto.dm2e.eu/schemas/dm2e/$1" + }, + "lov.dnbt": { + "authority": "lov", + "description": "The DNB RDF Vocabulary (dnb:) is a collection of classes, properties and datatypes used within the DNB's linked data service.It complements the GND Ontology (gndo:) which is specifically geared towards authority data from the Integrated Authority File (GND), whereas this vocabulary is more general-purpose.", + "homepage": "http://d-nb.info/standards/elementset/dnb", + "id": "lov.dnbt", + "name": "DNB Metadata Terms", + "prefix": "dnbt", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://d-nb.info/standards/elementset/dnb#$1" + }, + "lov.doap": { + "authority": "lov", + "description": "The Description of a Project (DOAP) vocabulary, described using W3C RDF Schema and the Web Ontology Language.", + "homepage": "http://usefulinc.com/ns/doap#", + "id": "lov.doap", + "name": "Description of a Project vocabulary", + "prefix": "doap", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://usefulinc.com/ns/doap#$1" + }, + "lov.doc": { + "authority": "lov", + "description": "Defines properties and relationships between works.", + "homepage": "http://www.w3.org/2000/10/swap/pim/doc", + "id": "lov.doc", + "name": "Works, licences, derivatives and dependencies", + "prefix": "doc", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://www.w3.org/2000/10/swap/pim/doc#$1" + }, + "lov.doco": { + "authority": "lov", + "description": "An ontology for describing the component parts of a bibliographic document", + "homepage": "http://purl.org/spar/doco", + "id": "lov.doco", + "name": "DoCO, the Document Components Ontology", + "prefix": "doco", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/spar/doco/$1" + }, + "lov.docso": { + "authority": "lov", + "description": "A micro-ontology that defines a set of typical document-related services such as provided by libraries, museums and archives.", + "homepage": "http://purl.org/ontology/dso", + "id": "lov.docso", + "name": "Document Service Ontology", + "prefix": "docso", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/dso#$1" + }, + "lov.dogont": { + "authority": "lov", + "description": "The DogOnt ontology supports device/network independent description of houses, including both controllable and architectural elements.", + "homepage": "http://elite.polito.it/ontologies/dogont.owl", + "id": "lov.dogont", + "name": "Ontology Modeling for Intelligent Domotic Environments", + "prefix": "dogont", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "http://elite.polito.it/ontologies/dogont$1" + }, + "lov.donto": { + "authority": "lov", + "description": "The data.gov.au Dataset Ontology is an OWL ontology designed to describe the characteristics of datasets published on data.gov.au.\n\nThe ontology contains elements which describe the publication, update, origin, governance, spatial and temporal coverage and other contextual information about the dataset. The ontology also covers aspects of organisational custodianship and governance.\n \nBy using this ontology to describe datasets on data.gov.au publishers increase discoverability and enable the consumption of this information in other applications/systems as Linked Data. It further enables decentralised publishing of catalogs and facilitates federated dataset search across sites, e.g. in datasets that are published by the States.\n \nOther publishers of Linked Data may make assertions about data published using this ontology, e.g. they may publish information about the use of the dataset in other applications.", + "homepage": "http://reference.data.gov.au/def/ont/dataset", + "id": "lov.donto", + "name": "Dataset Ontology", + "prefix": "donto", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences" + ], + "uri_format": "http://reference.data.gov.au/def/ont/dataset#$1" + }, + "lov.dot": { + "authority": "lov", + "description": "- Version 0.8: \n* completed ontology metadata wrt LOV\n* added classes dot:ClassifiedDamage and dot:UnclassifiedDamage (subclasses of dot:Damage)\n* made dot:StructuralDamage and dot:Defect subclasses of dot:Damage", + "homepage": "https://w3id.org/dot#", + "id": "lov.dot", + "name": "Damage Topology Ontology", + "prefix": "dot", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "https://w3id.org/dot#$1" + }, + "lov.dpn": { + "authority": "lov", + "description": "This ontology is being developed by CSIRO under the eReefs project for describing data provider nodes, web services available and datasets that are hosted by them. This ontology features a module for describing Datasets. It does not however describe geospatial, temporal, organisational or domain concepts as these are intended to be included from other ontologies via the imports statement. Other modules complementary to the DPN ontology are http://purl.org/dpn/dataset and http://purl.org/dpn/services. This version aligns DCAT and DC terms and imports DPN services.", + "homepage": "http://purl.org/dpn", + "id": "lov.dpn", + "name": "Data Provider Node ontology", + "prefix": "dpn", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/dpn#$1" + }, + "lov.dprov": { + "authority": "lov", + "description": "This ontology is a reduced-in-scope version of the [W3C Decisions and Decision-Making Incubator Group](https://www.w3.org/2005/Incubator/decision/)'s Decision Ontology (DO) which can be found at . It has been re-worked to align entirely with the W3C's [PROV ontology](https://www.w3.org/TR/prov-o/) since it is widely recognised that analysing the elements of decisions *post hoc* is an exercise in provenance.\n\nUnlike the original DO, this ontology cannot be used for *normative* scenarios: it is only capable of recording decisions that have already been made (so-called *data-driven* use in the DO). This is because PROV, to which this ontology is completely mapped, does not have a templating system which can indicate what *should* occur in future scenarios.\n\nThis ontology introduces only one new element for decision modelling over that which was present in the DO: an Agent which allows agency in decision making to be recorded.", + "homepage": "http://promsns.org/def/decprov", + "id": "lov.dprov", + "name": "Decision Provenance ontology (DecPROV)", + "prefix": "dprov", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://promsns.org/def/do#$1" + }, + "lov.dq": { + "authority": "lov", + "description": "An OWL representation of parts of the Geographic Metadata model described in ISO 19115:2003 with Corrigendum 2006 - DQ Package", + "homepage": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/dataquality", + "id": "lov.dq", + "name": "OWL representation of ISO 19115 (Geographic Information - Metadata - Data quality package)", + "prefix": "dq", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/dataquality#$1" + }, + "lov.dqc": { + "authority": "lov", + "description": "This RDF document contains a library of data quality constraints represented as SPARQL query templates based on the SPARQL Inferencing Framework (SPIN). The data quality constraint templates are especially useful for the identification of data quality problems during data entry and for periodic quality checks during data usage.", + "homepage": "http://semwebquality.org/ontologies/dq-constraints", + "id": "lov.dqc", + "name": "The Data Quality Constraints Library", + "prefix": "dqc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://semwebquality.org/ontologies/dq-constraints#$1" + }, + "lov.dqm": { + "authority": "lov", + "description": "The Data Quality Management Vocabulary - An Ontology for Data Requirements Management, Data Quality Monitoring, Data Quality Assessment, and Data Cleansing", + "homepage": "http://purl.org/dqm-vocabulary/v1/dqm", + "id": "lov.dqm", + "name": "The Data Quality Management Vocabulary", + "prefix": "dqm", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/dqm-vocabulary/v1/dqm#$1" + }, + "lov.dqv": { + "authority": "lov", + "description": "The Data Quality Vocabulary (DQV) is seen as an extension to DCAT to cover the quality of the data, how frequently is it updated, whether it accepts user corrections, persistence commitments etc. When used by publishers, this vocabulary will foster trust in the data amongst developers.", + "homepage": "http://www.w3.org/ns/dqv", + "id": "lov.dqv", + "name": "Data Quality Vocabulary", + "prefix": "dqv", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/dqv#$1" + }, + "lov.dr": { + "authority": "lov", + "description": "Relationships without range and domains meant to be reused in different contexts", + "homepage": "http://purl.org/swan/2.0/discourse-relationships/", + "id": "lov.dr", + "name": "Discourse relationships vocabulary", + "prefix": "dr", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/swan/2.0/discourse-relationships/$1" + }, + "lov.drama": { + "authority": "lov", + "description": "Designed with the goals to describe and encode the core dramatic qualities and to serve as a knowledge base underlying a number of applications, Drammar is a comprehensive ontology of drama, realized through a collaboration of computer scientists and drama scholars. It makes the knowledge about drama available as a vocabulary for the linked interchange of drama encodings and readily usable by automatic reasoners.\nBy avoinding references to style and artistic qualities Drammar aims at representing the elements shared by different, cross-media manifestations of drama, the so\u2013called intangible elements of drama as an intangible cultural heritage form.", + "homepage": "http://www.purl.org/drammar", + "id": "lov.drama", + "name": "Drammar: a comprehensive ontology of drama", + "prefix": "drama", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.purl.org/drammar#$1" + }, + "lov.drm": { + "authority": "lov", + "description": "A metamodel for government data", + "homepage": "http://vocab.data.gov/def/drm", + "id": "lov.drm", + "name": "Data Reference Model", + "prefix": "drm", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://vocab.data.gov/def/drm#$1" + }, + "lov.ds": { + "authority": "lov", + "description": "Este vocabulario se utiliza para modelar los cat\u00e1logos de conjuntos de datos y las relaciones con los datasets", + "homepage": "http://purl.org/ctic/dcat#", + "id": "lov.ds", + "name": "Dataset Catalog Vocabulary", + "prefix": "ds", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/ctic/dcat#$1" + }, + "lov.dsd": { + "authority": "lov", + "description": "To ensure comparability between schemas from different data models, the Description of a Data Source (DSD) vocabulary has been developed.", + "homepage": "https://w3id.org/dsd", + "id": "lov.dsd", + "name": "Description of a Data Source", + "prefix": "dsd", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities", + "computer and information sciences" + ], + "uri_format": "https://w3id.org/dsd#$1" + }, + "lov.dsn": { + "authority": "lov", + "description": "DSNotify Eventsets is a vocabulary for events that change resources in linked data sources.", + "homepage": "http://purl.org/dsnotify/vocab/eventset/", + "id": "lov.dsn", + "name": "DSNotify Eventsets: A vocabulary for change events in linked data sources", + "prefix": "dsn", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/dsnotify/vocab/eventset/$1" + }, + "lov.dso": { + "authority": "lov", + "description": "This ontology offers OWL-Lite definition for object list. It is a restricted version of OWL-S ObjectList", + "homepage": "http://inference-web.org/2.0/ds.owl", + "id": "lov.dso", + "name": "Data Structure Ontology", + "prefix": "dso", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://inference-web.org/2.0/ds.owl#$1" + }, + "lov.dtx_srti": { + "authority": "lov", + "description": "An RDF/OWL vocabulary to represent SRTI DATEX II profile (according the Commission Delegated Regulation (EU) No 886/2013) within the European LOD-RoadTran18 action \"Supporting the cross-border use of Road Traffic Data with Linked Open Data based on DATEX II (LOD-RoadTran18)\" (Agreement No: INEA/CEF/ICT/A2018/1803421, Action No: 2018-EU-IA-0088). The vocabulary is used for mapping between DATEX II and LOD formats.", + "homepage": "http://cef.uv.es/lodroadtran18/def/transporte/dtx_srti", + "id": "lov.dtx_srti", + "name": "LOD SRTI DATEX II", + "prefix": "dtx_srti", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://cef.uv.es/lodroadtran18/def/transporte/dtx_srti#$1" + }, + "lov.dtype": { + "authority": "lov", + "description": "The ontology 'dtype' provides a specification of simple data types such as enumerations. These are needed in support of the conversion of XML Schemas and UML Models to OWL. Codelists are also defined in 'dtype'.", + "homepage": "http://www.linkedmodel.org/schema/dtype", + "id": "lov.dtype", + "name": "Datatype Ontology", + "prefix": "dtype", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.linkedmodel.org/schema/dtype#$1" + }, + "lov.dul": { + "authority": "lov", + "description": "The DOLCE+DnS Ultralite ontology. It is a simplification of some parts of the DOLCE Lite-Plus library (cf. http://www.ontologydesignpatterns.org/ont/dul/DLP397.owl)", + "homepage": "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl", + "id": "lov.dul", + "name": "DOLCE+DnS Ultralite", + "prefix": "dul", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#$1" + }, + "lov.duv": { + "authority": "lov", + "description": "The Dataset Usage Vocabulary (DUV) is used to describe consumer experiences, citations, and feedback about datasets from the human perspective.", + "homepage": "http://www.w3.org/ns/duv", + "id": "lov.duv", + "name": "Dataset Usage Vocabulary", + "prefix": "duv", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/duv#$1" + }, + "lov.dvia": { + "authority": "lov", + "description": "dvia is an RDF vocabulary designed to facilitate interoperability between visualization applications published on the Web.", + "homepage": "http://purl.org/ontology/dvia", + "id": "lov.dvia", + "name": "The visualization vocabulary for LOD applications", + "prefix": "dvia", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://purl.org/ontology/dvia#$1" + }, + "lov.eac-cpf": { + "authority": "lov", + "description": "Derive from the EAC-CPF original XML schema. Encoded Archival Context for Corporate Bodies, Persons, and Families provides a grammar for encoding names of creators of archival materials and related information.", + "homepage": "http://archivi.ibc.regione.emilia-romagna.it/ontology/eac-cpf/", + "id": "lov.eac-cpf", + "name": "EAC-CPF Descriptions Ontology for Linked Archival Data:", + "prefix": "eac-cpf", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://archivi.ibc.regione.emilia-romagna.it/ontology/eac-cpf/$1" + }, + "lov.earl": { + "authority": "lov", + "description": "EARL is a vocabulary, the terms of which are defined across a set of specifications and technical notes, and that is used to describe test results. The primary motivation for developing this vocabulary is to facilitate the exchange of test results between Web accessibility evaluation tools in a vendor-neutral and platform-independent format. It also provides reusable terms for generic quality assurance and validation purposes.", + "homepage": "http://www.w3.org/ns/earl", + "id": "lov.earl", + "name": "Evaluation and Report Language", + "prefix": "earl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/earl#$1" + }, + "lov.earth": { + "authority": "lov", + "description": "The Linked Earth Ontology aims to provide a common vocabulary for annotating paleoclimatology data", + "homepage": "http://linked.earth/ontology#", + "id": "lov.earth", + "name": "The Linked Earth Ontology", + "prefix": "earth", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://linked.earth/ontology#$1" + }, + "lov.ebg": { + "authority": "lov", + "description": "The euBusinessGraph (`ebg:`) ontology represents companies, type/status/economic classification, addresses, identifiers, company officers (e.g., directors and CEOs), and dataset offerings.\n\nIt uses `schema:domainIncludes/rangeIncludes` (which are polymorphic) to describe which properties are applicable to a class, \nrather than `rdfs:domain/range` (which are monomorphic) to prescribe what classes must be applied to each node using a property.\nWe find that this enables more flexible reuse and combination of different ontologies.\nWe reuse the following ontologies and nomenclatures, and extend them where appropriate with classes and properties:\n\n- W3C Org, W3C RegOrg (basic company data), \n\n- W3C Time (officer membership), \n\n- W3C Locn (addresses),\n\n- schema.org (domain/rangeIncludes and various properties)\n\n- DBpedia ontology (jurisdiction)\n\n- NGEO and Spatial (NUTS administrative divisions)\n\n- ADMS (identifiers), \n\n- FOAF, SIOC (blog posts),\n\n- RAMON, SKOS (NACE economic classifications and various nomenclatures),\n\n- VOID (dataset descriptions).\n\nThis is only a reference. See more detail in the [EBG Semantic Model](https://docs.google.com/document/d/1dhMOTlIOC6dOK_jksJRX0CB-GIRoiYY6fWtCnZArUhU/edit) google document, which includes an informative description of classes and properties, gives examples and data provider rules, and provides more schema and instance diagrams.", + "homepage": "http://data.businessgraph.io/ontology#", + "id": "lov.ebg", + "name": "euBusinessGraph ontology", + "prefix": "ebg", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://data.businessgraph.io/ontology#$1" + }, + "lov.ebucore": { + "authority": "lov", + "description": "Combined with the EBU Class Conceptual Data Model (CCDM) of simple business objects, EBUCore provides the appropriate framework for descriptive and technical metadata for use in Service Oriented Architectures and also in audiovisual ontologies for semantic web and linked data developments.", + "homepage": "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore", + "id": "lov.ebucore", + "name": "EBU Ontology", + "prefix": "ebucore", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#$1" + }, + "lov.eccrev": { + "authority": "lov", + "description": "A vocabulary & data model for describing RDF changes and revisions. It defines the Commit & Revision classes together with their expected properties.", + "homepage": "https://vocab.eccenca.com/revision/", + "id": "lov.eccrev", + "name": "RDF changes and revisions vocabulary", + "prefix": "eccrev", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://vocab.eccenca.com/revision/$1" + }, + "lov.ecfo": { + "authority": "lov", + "description": "This ontology defines a vocabulary for describing carbon emission conversion factors (CF). These are values typically used to calculate carbon emissions where the CF multiplies a quantified estimate of the energy (e.g., kWh of electricity, litters of fuel, etc.) used by a particular activity.", + "homepage": "https://w3id.org/ecfo", + "id": "lov.ecfo", + "name": "The Emission Conversion Factor Ontology", + "prefix": "ecfo", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "https://w3id.org/ecfo#$1" + }, + "lov.eclap": { + "authority": "lov", + "description": "The ECLAP vocabulary provide classes and properties for the description of multimedia content related with performing arts.", + "homepage": "http://www.eclap.eu/schema/eclap/", + "id": "lov.eclap", + "name": "ECLAP, Performing Arts Vocabulary", + "prefix": "eclap", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.eclap.eu/schema/eclap/$1" + }, + "lov.ecpo": { + "authority": "lov", + "description": "Defines the common bibliographic terms for the description of enumeration and chronology of periodicals", + "homepage": "http://purl.org/ontology/ecpo", + "id": "lov.ecpo", + "name": "Enumeration and Chronology of Periodicals Ontology", + "prefix": "ecpo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/ecpo#$1" + }, + "lov.ecrm": { + "authority": "lov", + "description": "Erlangen CRM / OWL - An OWL DL 1.0 implementation of the CIDOC Conceptual Reference Model, based on: Nick Crofts, Martin Doerr, Tony Gill, Stephen Stead, Matthew Stiff (eds.): Definition of the CIDOC Conceptual Reference Model (http://cidoc-crm.org/).\nThis implementation has been originally created by Bernhard Schiemann, Martin Oischinger and G\u00fcnther G\u00f6rz at the Friedrich-Alexander-University of Erlangen-Nuremberg, Department of Computer Science, Chair of Computer Science 8 (Artificial Intelligence) in cooperation with the Department of Museum Informatics of the Germanisches Nationalmuseum Nuremberg and the Department of Biodiversity Informatics of the Zoologisches Forschungsmuseum Alexander Koenig Bonn.\nThe Erlangen CRM / OWL implementation of the CIDOC Conceptual Reference Model is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.", + "homepage": "http://erlangen-crm.org/current/", + "id": "lov.ecrm", + "name": "Erlangen CRM / OWL", + "prefix": "ecrm", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://erlangen-crm.org/current/$1" + }, + "lov.edac": { + "authority": "lov", + "description": "The ELSEWeb EDAC ontology describes datasets published by EDAC. This project provides foundational support for the ELSEWeb project(http://elseweb.cybershare.utep.edu/).\nwebsite: http://elseweb.cybershare.utep.edu/ontologies\nemail: nvillanuevarosales@utep.edu", + "homepage": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-edac.owl", + "id": "lov.edac", + "name": "ELSEWeb EDAC Ontology", + "prefix": "edac", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-edac.owl#$1" + }, + "lov.edm": { + "authority": "lov", + "description": "The Europeana Data Model (EDM) is aimed at being an integration medium for collecting, connecting and enriching the descriptions provided by Europeana data providers.", + "homepage": "http://www.europeana.eu/schemas/edm/", + "id": "lov.edm", + "name": "Europeana Data Model vocabulary", + "prefix": "edm", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://www.europeana.eu/schemas/edm/$1" + }, + "lov.edu": { + "authority": "lov", + "description": "Ontoloogia kirjeldab hariduse valdkonna peamised m?isted ja seosed nende vahel. Praeguses versioonis on r?hk pandud ?ppematerjali, ?piv?ljundite ja ?ppekavaga seotud detailidele.", + "homepage": "https://schema.edu.ee/", + "id": "lov.edu", + "name": "Education Ontology", + "prefix": "edu", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "https://schema.edu.ee/$1" + }, + "lov.edupro": { + "authority": "lov", + "description": "The EduProgression ontology formalizes the educational progressions of the French educational system, making possible to represent the existing progressions in a standard formal model, searchable and understandable by machines (OWL).", + "homepage": "http://ns.inria.fr/semed/eduprogression/", + "id": "lov.edupro", + "name": "EduProgression Ontology", + "prefix": "edupro", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "http://ns.inria.fr/semed/eduprogression#$1" + }, + "lov.eem": { + "authority": "lov", + "description": "This vocabulary is based on the EPC Information Services Specification http://www.gs1.org/sites/default/files/docs/epc/epcis_1_0_1-standard-20070921.pdf", + "homepage": "http://purl.org/eem", + "id": "lov.eem", + "name": "The EPCIS Event Model", + "prefix": "eem", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/eem#$1" + }, + "lov.eeo": { + "authority": "lov", + "description": "An ontology to describe experiments, evaluations and their relation.", + "homepage": "https://w3id.org/eeo", + "id": "lov.eeo", + "name": "Experimental Evaluation Ontology", + "prefix": "eeo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/eeo#$1" + }, + "lov.ei2a": { + "authority": "lov", + "description": "The initiative Arag\u00f3n Open Data was initiated by agreement of 17 of July of 2012 of the Government of Aragon. Under the same was ordered the start of the project to open public data and on February 6, 2013 was implemented through the Portal opendata.aragon.es .\n\nThroughout this time there have been numerous works to achieve automation in the publication of information to ensure that third parties can reuse it in the best way. Given the volume of data that begins to exist, within the line of work of automation in information management, all those elements that help in the improvement of the structuring of information and the standardization of the data contained in the databases are beginning to have a special relevance.\n\nBased on this, within the General Directorate of Electronic Administration and Information Society, the idea arises of generating a set of technical and legal rules that allow to deepen in that standardization and that lead to think in the creation of the Interoperable Information Scheme Of Aragon (E2IA). The E2IA thus emerges as the framework in which the open data and in general the information of the Government of Aragon can begin to be automated in a much more profound way. The E2IA has to have a number of technical, organizational and legal elements that need to be developed.\n\nFor this reason, the Technological Institute of Aragon (ITAINNOVA) has been entrusted with carrying out actions consisting in identifying, studying and analyzing current research trends and technological development in relation to ontologies and dictionaries of data interoperability, defining the ontological proposal, performing The necessary tests to validate the ontological proposal and generate the text and web versions of the ontology.", + "homepage": "https://opendata.aragon.es/def/ei2a/ei2a.owl", + "id": "lov.ei2a", + "name": "Aragon Interoperable Information Structure Ontology\nEI2A", + "prefix": "ei2a", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences" + ], + "uri_format": "http://opendata.aragon.es/def/ei2a#$1" + }, + "lov.elec": { + "authority": "lov", + "description": "El objetivo de este vocabulario es la creaci\u00f3n de un esquema que permita definir los contenidos de informaci\u00f3n relacionada con procesos electorales y sus resultados. \t\t\tSe identifican ciertas variables en el dominio de las elecciones, que se modelan a trav\u00e9s de ciertos tipos de datos y de propiedades relacionadas entre los recursos.", + "homepage": "http://purl.org/ctic/sector-publico/elecciones", + "id": "lov.elec", + "name": "Vocabulario de Resultados Electorales", + "prefix": "elec", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences" + ], + "uri_format": "http://purl.org/ctic/sector-publico/elecciones#$1" + }, + "lov.eli": { + "authority": "lov", + "description": "Transposition of the ELI metadata fields into an OWL ontology", + "homepage": "http://data.europa.eu/eli/ontology", + "id": "lov.eli", + "name": "The European Legislation Identifier", + "prefix": "eli", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities", + "law" + ], + "uri_format": "http://data.europa.eu/eli/ontology#$1" + }, + "lov.emotion": { + "authority": "lov", + "description": "EmOCA is used to contextualize dimensionnal emotion and to categorize it for human readability.", + "homepage": "http://ns.inria.fr/emoca", + "id": "lov.emotion", + "name": "Emotion Ontology for Context Awareness", + "prefix": "emotion", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ns.inria.fr/emoca#$1" + }, + "lov.emp": { + "authority": "lov", + "description": "El objetivo de este vocabulario es la creaci\u00f3n de un esquema que permita definir los contenidos de la informaci\u00f3n relacionada con la oferta de empleo p\u00fablico. \t\t\tSe identifican ciertas variables en el dominio de la oferta de empleo p\u00fablico, que se modelan a trav\u00e9s de ciertos tipos de datos y de propiedades relacionadas entre los recursos.", + "homepage": "http://purl.org/ctic/empleo/oferta", + "id": "lov.emp", + "name": "Vocabulario de Ofertas de Empleo", + "prefix": "emp", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ctic/empleo/oferta#$1" + }, + "lov.ends": { + "authority": "lov", + "description": "Endpoint Status vocabulary intends to describe endpoint availability", + "homepage": "http://labs.mondeca.com/vocab/endpointStatus", + "id": "lov.ends", + "name": "Vocabulary of endpoint status (availability, responseTime)", + "prefix": "ends", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://labs.mondeca.com/vocab/endpointStatus#$1" + }, + "lov.ep": { + "authority": "lov", + "description": "Describes the main classes and properties which EPrints adds to voID, DC, BIBO and SKOS etc", + "homepage": "http://eprints.org/ontology/", + "id": "lov.ep", + "name": "EPrints Ontology", + "prefix": "ep", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://eprints.org/ontology/$1" + }, + "lov.eppl": { + "authority": "lov", + "description": "PROV extension for linking Plans and parts of plans to their respective executions.", + "homepage": "https://w3id.org/ep-plan", + "id": "lov.eppl", + "name": "The EP-Plan ontology", + "prefix": "eppl", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://w3id.org/ep-plan#$1" + }, + "lov.eqp": { + "authority": "lov", + "description": "Defines aircraft models, aircraft systems / subsystems, and aircraft characteristics", + "homepage": "https://data.nasa.gov/ontologies/atmonto/equipment#", + "id": "lov.eqp", + "name": "Aircraft Equipment Vocabulary", + "prefix": "eqp", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://data.nasa.gov/ontologies/atmonto/equipment#$1" + }, + "lov.era": { + "authority": "lov", + "description": "This is the human and machine readable Vocabulary/Ontology governed by the European Union Agency for Railways. It represents the concepts and relationships linked to the sectorial legal framework and the use cases under the Agency\u00b4s remit. Currently, this vocabulary covers the European railway infrastructure and the vehicles authorized to operate over it. It is a semantic/browsable representation of the [RINF](https://www.era.europa.eu/sites/default/files/registers/docs/rinf_application_guide_for_register_en.pdf) and [ERATV](https://www.era.europa.eu/sites/default/files/registers/docs/iu-eratv_application_guide_for_register_2016-797_en.pdf) application guides that were built by domain experts in the RINF and ERATV working parties.\nSince version 2.6.0, the ontology includes the routebook concepts described in appendix D2 \\\"Elements the infrastructure manager has to provide to the railway undertaking for the Route Book\\\" (https://eur-lex.europa.eu/eli/reg_impl/2019/773/oj) and the appendix D3 \\\"ERTMS trackside engineering information relevant to operation that the infrastructure manager shall provide to the railway undertaking\\\".", + "homepage": "http://data.europa.eu/949/", + "id": "lov.era", + "name": "ERA vocabulary", + "prefix": "era", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://data.europa.eu/949/$1" + }, + "lov.esco": { + "authority": "lov", + "description": "The ontology of the taxonomy \"European Skills, Competences, qualifications and Occupations\".\n\nThe ontology considers three ESCO pillars (or taxonomy) and 2 registers.\nThe three pillars are:\n- Occupation\n- Skill (and competences)\n- Qualification\n\nFor the construction and use of the ESCO pillars, the following modelling artefacts are used:\n- Facetting support to specialize ESCO pillar concepts based on bussiness relevant Concept Groups (e.g. species, languages, ...)\n- Conept Groups, Thesaurus array and Compound terms (as detailed in ISO 25964) to organize faceted concepts\n- SKOS mapping properties to relate ESCO pillar concepts to concepts in other (external) taxonomies (e.g. FoET, ISCO88 and ISCO08. More mappings can be added in the future.)\n- Tagging ESCO pillar concepts by other (external) taxonomies (NUTS, EQF, NACE, ...)\n- Capture gender specifics on the labels of the ESCO pillar concepts\n- Rich ESCO concept relationships holding a description and other specific characteristics of the relation between two ESCO pillar concepts.\n\nESCO maintains two additional registers:\n- Awarding Body\n- Work Context\nAwarding Bodies typically are referenced by ESCO qualifications.\nOccupations can have one or more work context.", + "homepage": "http://data.europa.eu/esco/model", + "id": "lov.esco", + "name": "The ESCO ontology", + "prefix": "esco", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://data.europa.eu/esco/model#$1" + }, + "lov.essglobal": { + "authority": "lov", + "description": "Un vocabulario para la Economia Social y Solid\u00e1ria (ESS). Este vocabulario es concebido para ser conjugado con los esquemas de metadados/vocabularios/ontologias: dcterms, good relations, foaf, vcard, organization e schema.org - esto esta definido em el Perfil de Aplicaci\u00f3n Dublin Core de la ESS. Vocabulario desarollado por el grupo ESSGlobal de la Red Intercontinental para la promoci\u00f3n de Economia Social y Solidaria (RIPESS).", + "homepage": "http://purl.org/essglobal/vocab/", + "id": "lov.essglobal", + "name": "ESSGlobal Vocabulary", + "prefix": "essglobal", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/essglobal/vocab/$1" + }, + "lov.eupont": { + "authority": "lov", + "description": "EUPont is an ontology to model high level rules for Internet of Things End User Programming (IoT-EUP).", + "homepage": "http://elite.polito.it/ontologies/eupont.owl", + "id": "lov.eupont", + "name": "EUPont: an ontology for End User Programming of the IoT", + "prefix": "eupont", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://elite.polito.it/ontologies/eupont.owl#$1" + }, + "lov.event": { + "authority": "lov", + "description": "This ontology deals with the notion of reified events - events seen as first-class objects.", + "homepage": "http://purl.org/NET/c4dm/event.owl", + "id": "lov.event", + "name": "The Event Ontology", + "prefix": "event", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/NET/c4dm/event.owl#$1" + }, + "lov.ex": { + "authority": "lov", + "description": "\u30b9\u30ad\u30fc\u30de\u306b\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3092\u57cb\u3081\u8fbc\u3080\u305f\u3081\u306e\u8a9e\u5f59\u3002XSLT\u3092\u4f7f\u3063\u3066\u3001XHTML\u306e\u4e2d\u3067\u4f8b\u3092\u8868\u793a\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3002", + "homepage": "http://purl.org/net/ns/ex", + "id": "lov.ex", + "name": "Example vocabulary", + "prefix": "ex", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/net/ns/ex#$1" + }, + "lov.exif": { + "authority": "lov", + "description": "Vocabulary to describe an Exif format picture data. All Exif 2.2 tags are defined as RDF properties, as well as several terms to help this schema.", + "homepage": "http://www.w3.org/2003/12/exif/ns", + "id": "lov.exif", + "name": "Exif data description vocabulary", + "prefix": "exif", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2003/12/exif/ns#$1" + }, + "lov.ext": { + "authority": "lov", + "description": "An OWL representation of parts of the Geographic Metadata model described in ISO 19115:2003 with Corrigendum 2006 - EX Package", + "homepage": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/extent", + "id": "lov.ext", + "name": "OWL representation of ISO 19115 (Geographic Information - Metadata - Extent package)", + "prefix": "ext", + "source": "lov.linkeddata.es", + "subjects": [ + "mathematics" + ], + "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/extent#$1" + }, + "lov.fabio": { + "authority": "lov", + "description": "FaBiO, the FRBR-aligned Bibliographic Ontology, is an ontology for recording and publishing on the Semantic Web bibliographic records of scholarly endeavours. It forms part of SPAR, a suite of Semantic Publishing and Referencing Ontologies.", + "homepage": "http://purl.org/spar/fabio", + "id": "lov.fabio", + "name": "FRBR-aligned Bibliographic Ontology", + "prefix": "fabio", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/spar/fabio/$1" + }, + "lov.faldo": { + "authority": "lov", + "description": "Used to describe a location that consists of a number of Regions but where the order is not known. e.g. the oddly named order() keyword in a INSDC file.", + "homepage": "http://biohackathon.org/resource/faldo", + "id": "lov.faldo", + "name": "Feature Annotation Location Description Ontology", + "prefix": "faldo", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://biohackathon.org/resource/faldo#$1" + }, + "lov.fea": { + "authority": "lov", + "description": "To facilitate efforts to transform the Federal Government to one that is citizen-centered, results-oriented, and market-based, the Office of Management and Budget (OMB) is developing the Federal Enterprise Architecture (FEA), a business-based framework for Governmentwide improvement.", + "homepage": "http://vocab.data.gov/def/fea", + "id": "lov.fea", + "name": "Federal Enterprise Architecture Vocabulary", + "prefix": "fea", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences" + ], + "uri_format": "http://vocab.data.gov/def/fea#$1" + }, + "lov.fel": { + "authority": "lov", + "description": "This RDF vocabulary can be use to describe and categorize annotations involving entity mentions (sub-strings of text) that link to knowledgebase identifiers", + "homepage": "http://w3id.org/vcb/fel#", + "id": "lov.fel", + "name": "A Fine-grained Entity Linking vocabulary", + "prefix": "fel", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://w3id.org/vcb/fel#$1" + }, + "lov.fiesta-iot": { + "authority": "lov", + "description": "The FIESTA-IoT ontology takes inspiration from the well-known Noy et al. methodology for reusing and interconnecting existing ontologies. To build the ontology, we leverage a number of core concepts from various mainstream ontologies and taxonomies, such as Semantic Sensor Network (SSN), M3-lite (a lite version of M3 ontology), WGS84, IoT-lite, Time, and DUL ontology.", + "homepage": "http://purl.org/iot/ontology/fiesta-iot", + "id": "lov.fiesta-iot", + "name": "FIESTA-IoT Ontology", + "prefix": "fiesta-iot", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://purl.org/iot/ontology/fiesta-iot#$1" + }, + "lov.fiesta-priv": { + "authority": "lov", + "description": "FIESTA-Priv Ontology", + "homepage": "http://purl.org/iot/ontology/fiesta-priv#", + "id": "lov.fiesta-priv", + "name": "FIESTA-Priv Ontology", + "prefix": "fiesta-priv", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://purl.org/iot/ontology/fiesta-iot#$1" + }, + "lov.foaf": { + "authority": "lov", + "description": "FOAF is a project devoted to linking people and information using the Web. Regardless of whether information is in people's heads, in physical or digital documents, or in the form of factual data, it can be linked.", + "homepage": "http://xmlns.com/foaf/0.1/", + "id": "lov.foaf", + "name": "Friend of a Friend vocabulary", + "prefix": "foaf", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://xmlns.com/foaf/0.1/$1" + }, + "lov.fog": { + "authority": "lov", + "description": "The File Ontology for Geometry formats (FOG) describes meaningful relations towards geometry snippets in RDF literals, geometry files on relative or absolute URLs and ontology-based geometry descriptions. The defined properties in this ontology are related towards each other and additional metadata is provided, such as file extension and related specifications/sources (incl. entries in dbpedia and Wikidata). \n\nThe initial version of the ontology (v0.0.1) was documented in:\n\nBonduel, Mathias, Wagner, Anna, Pauwels, Pieter, Vergauwen, Maarten, & Klein, Ralf (2019). Including Widespread Geometry Formats in Semantic Graphs Using RDF Literals. In Proceedings of the European Conference on Computing in Construction (EC3 2019). Chania, Greece.", + "homepage": "https://w3id.org/fog", + "id": "lov.fog", + "name": "FOG: File Ontology for Geometry formats", + "prefix": "fog", + "source": "lov.linkeddata.es", + "subjects": [ + "mathematics" + ], + "uri_format": "https://w3id.org/fog#$1" + }, + "lov.foio": { + "authority": "lov", + "description": "This ontology defines feature of interest and their properties, as an extension of the core classes of the SSN ontology (https://www.w3.org/ns/ssn/).\n\nA feature of interest is an abstraction of a real world phenomena (thing, person, event, etc). A feature of interest is then defined in terms of its properties, which are qualifiable, quantifiable, observable or operable qualities of the feature of interest. \n\nAlignments to other ontologies are proposed in external documents: \n\n- [SSNAlignment](https://w3id.org/seas/SSNAlignment) proposes an alignment to the [SSN ontology](http://www.w3.org/ns/ssn/).\n- [QUDTAlignment](https://w3id.org/seas/QUDTAlignment) proposes an alignment to the [QUDT ontology](http://qudt.org/).", + "homepage": "https://w3id.org/seas/FeatureOfInterestOntology", + "id": "lov.foio", + "name": "The SEAS Feature of Interest ontology.", + "prefix": "foio", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/seas/FeatureOfInterestOntology/$1" + }, + "lov.food": { + "authority": "lov", + "description": "This ontology models the Food domain. It allows to describe ingredients and food products. Ontology used by the Open Food Facts dataset", + "homepage": "http://data.lirmm.fr/ontologies/food", + "id": "lov.food", + "name": "Food Ontology", + "prefix": "food", + "source": "lov.linkeddata.es", + "subjects": [ + "agriculture, forestry, and fisheries" + ], + "uri_format": "http://data.lirmm.fr/ontologies/food#$1" + }, + "lov.fowl": { + "authority": "lov", + "description": "Along with Wine Ontology, was used as example in the first OWL Recommendation (February 2004)", + "homepage": "http://www.w3.org/TR/2003/PR-owl-guide-20031215/food", + "id": "lov.fowl", + "name": "Food Ontology in OWL", + "prefix": "fowl", + "source": "lov.linkeddata.es", + "subjects": [ + "agriculture, forestry, and fisheries" + ], + "uri_format": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/food#$1" + }, + "lov.frad": { + "authority": "lov", + "description": "This is the element set of native RDF classes and properties described in the Functional Requirements for Authority Data model. The model also uses elements previously described in the Functional Requirements for Bibliographic Records (FRBR) entity-relationship model.", + "homepage": "http://iflastandards.info/ns/fr/frad/", + "id": "lov.frad", + "name": "FRAD model", + "prefix": "frad", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://iflastandards.info/ns/fr/frad/$1" + }, + "lov.frapo": { + "authority": "lov", + "description": "FRAPO, the Funding, Research Administration and Projects Ontology, is a CERIF-compliant ontology written in OWL 2 DL for describing research project administrative information.", + "homepage": "http://purl.org/cerif/frapo/", + "id": "lov.frapo", + "name": "Funding, Research Administration and Projects Ontology", + "prefix": "frapo", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "http://purl.org/cerif/frapo/$1" + }, + "lov.frappe": { + "authority": "lov", + "description": "FraPPE is a vocabulary to enable Visual Analytics operations on geo-spatial time varying data. By enabling Visual Analytics instruments FraPPE ease the capture, correlation and comparison operations on geo-spatial data from different sources evolving over time", + "homepage": "http://streamreasoning.org/ontologies/frappe#", + "id": "lov.frappe", + "name": "FraPPE: Frame, Pixel, Place, Event vocabulary", + "prefix": "frappe", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://streamreasoning.org/ontologies/frappe#$1" + }, + "lov.frbr": { + "authority": "lov", + "description": "An expression in RDF of the concepts and relations described in the IFLA report on the Functional Requirements for Bibliographic Records (FRBR)", + "homepage": "http://purl.org/vocab/frbr/core", + "id": "lov.frbr", + "name": "Expression of Core FRBR Concepts in RDF", + "prefix": "frbr", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/vocab/frbr/core#$1" + }, + "lov.frbre": { + "authority": "lov", + "description": "Expression of Extended FRBR Concepts in RDF", + "homepage": "http://purl.org/vocab/frbr/extended", + "id": "lov.frbre", + "name": "Extended FRBR", + "prefix": "frbre", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/vocab/frbr/extended#$1" + }, + "lov.frbrer": { + "authority": "lov", + "description": "This is the element set of native RDF classes and properties described in the current text (Feb 2009) of the Functional Requirements for Bibliographic Records (FRBR) entity-relationship model.", + "homepage": "http://iflastandards.info/ns/fr/frbr/frbrer/", + "id": "lov.frbrer", + "name": "FRBRer model", + "prefix": "frbrer", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://iflastandards.info/ns/fr/frbr/frbrer/$1" + }, + "lov.fresnel": { + "authority": "lov", + "description": "OWL Full vocabulary for defining lenses and formats on RDF models.", + "homepage": "http://www.w3.org/2004/09/fresnel", + "id": "lov.fresnel", + "name": "Fresnel Lens and Format Core Vocabulary", + "prefix": "fresnel", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2004/09/fresnel#$1" + }, + "lov.g50k": { + "authority": "lov", + "description": "A vocabulary developed to describe the Ordance Survey 50k Gazetteer linked data", + "homepage": "http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/", + "id": "lov.g50k", + "name": "50K Gazetteer Vocabulary", + "prefix": "g50k", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/$1" + }, + "lov.game": { + "authority": "lov", + "description": "This schema describes games with a known state, and few or no random elements.", + "homepage": "http://data.totl.net/game/", + "id": "lov.game", + "name": "TotL Game Ontology", + "prefix": "game", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://data.totl.net/game/$1" + }, + "lov.gc": { + "authority": "lov", + "description": "The Government Core Ontology establishes a foundation for all oegov ontologies.", + "homepage": "http://www.oegov.org/core/owl/gc", + "id": "lov.gc", + "name": "oeGOV Government Core Ontology", + "prefix": "gc", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences" + ], + "uri_format": "http://www.oegov.org/core/owl/gc#$1" + }, + "lov.gci": { + "authority": "lov", + "description": "Global City Indicator Foundation Ontology developed by the Information Engineering Group, Mechanical & Industrial Engineering, University of Toronto. Contains the foundation ontologies required to represent ISO 37120 city indicators, including Placenames, Time, Measurement, Provenance, Statistics, Validity and Trust. See: Fox, M.S., (2013), \"A Foundation Ontology for Global City Indicators\", Global City Institute Working Paper, Vol. 1, No.4, pp. 1-45. Global Cities Institute, University of Toronto. Updated 24 June 2014: http://www.eil. Based on the Global City Indicators Facility, University of Toronto: http://www.cityindicators.org/Deliverables/Core%20and%20Supporting%20Indicators%20Table%20SEPTEMBER%202011.pdf.\n\nContact: Mark S. Fox, msf@eil.utoronto.ca", + "homepage": "http://ontology.eil.utoronto.ca/GCI/Foundation/GCI-Foundation.owl", + "id": "lov.gci", + "name": "Global City Indicator Foundation Ontology", + "prefix": "gci", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ontology.eil.utoronto.ca/GCI/Foundation/GCI-Foundation.owl#$1" + }, + "lov.gcon": { + "authority": "lov", + "description": "GConsent provides concepts and relationships for defining consent and its associated information or metadata with a view towards GDPR compliance. It is the outcome of an analysis of consent and requirements associated with obtaining, using, and changes in consent as per the GDPR. The ontology also provides an approach to using its terms in various scenarios and use-cases (see more information in the documentation) which is intended to assist in its adoption.", + "homepage": "https://w3id.org/GConsent", + "id": "lov.gcon", + "name": "GConsent - a consent ontology based on the GDPR", + "prefix": "gcon", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/GConsent#$1" + }, + "lov.gd": { + "authority": "lov", + "description": "A RDF Schema that defines concepts and relationships common to all Open Government Data", + "homepage": "http://vocab.data.gov/gd", + "id": "lov.gd", + "name": "Government Data Vocabulary", + "prefix": "gd", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences" + ], + "uri_format": "http://reference.data.gov/def/govdata/$1" + }, + "lov.gdprov": { + "authority": "lov", + "description": "GDPRov is an OWL2 ontology to express provenance metadata of consent and data lifecycles towards documenting compliance for GDPR.", + "homepage": "https://w3id.org/GDPRov", + "id": "lov.gdprov", + "name": "The GDPR Provenance ontology", + "prefix": "gdprov", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/GDPRov#$1" + }, + "lov.gdprt": { + "authority": "lov", + "description": "The General Data Protection Regulation (GDPR) is comprised of several articles, each with points that refer to specific concepts. The general convention of referring to these points and concepts is to quote the specific article or point using a human-readable reference. This ontology provides a way to refer to the points within the GDPR using the EurLex ontology published by the European Publication Office. It also defines the concepts defined, mentioned, and requried by the GDPR using the Simple Knowledge Organization System (SKOS) ontology.", + "homepage": "https://w3id.org/GDPRtEXT", + "id": "lov.gdprt", + "name": "GDPR text EXTensions", + "prefix": "gdprt", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/GDPRtEXT#$1" + }, + "lov.gen": { + "authority": "lov", + "description": "A simple RDF vocabulary containing terms to facilitate the linking of genealogical data.", + "homepage": "http://purl.org/gen/0.1#", + "id": "lov.gen", + "name": "Vocabulary for Linked Genealogical Data", + "prefix": "gen", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/gen/0.1#$1" + }, + "lov.geo": { + "authority": "lov", + "description": "A vocabulary for representing latitude, longitude and altitude information in the WGS84 geodetic reference datum.", + "homepage": "http://www.w3.org/2003/01/geo/wgs84_pos", + "id": "lov.geo", + "name": "WGS84 Geo Positioning", + "prefix": "geo", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://www.w3.org/2003/01/geo/wgs84_pos#$1" + }, + "lov.geod": { + "authority": "lov", + "description": "Vocabulary describing the administrative subdivision of Norway", + "homepage": "http://vocab.lenka.no/geo-deling", + "id": "lov.geod", + "name": "Landinndelingen i Norge", + "prefix": "geod", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://vocab.lenka.no/geo-deling#$1" + }, + "lov.geof": { + "authority": "lov", + "description": "This ontology contains geographic feature classes and associated properties including classes and properties for describing the spatial location of the geographic feature. The classes and properties have been defined based on an ESRI dataset.", + "homepage": "http://www.mindswap.org/2003/owl/geo/geoFeatures20040307.owl", + "id": "lov.geof", + "name": "Geo Features", + "prefix": "geof", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://www.mindswap.org/2003/owl/geo/geoFeatures20040307.owl#$1" + }, + "lov.geofla": { + "authority": "lov", + "description": "Ontologie d\u00e9crivant le d\u00e9coupage administratif de la France m\u00e9tropolitaine, des d\u00e9partements d'outre mer, ou de la collectivit\u00e9 d\u00e9partementale de Mayotte, repr\u00e9sent\u00e9e comme une hi\u00e9rarchie de classes OWL", + "homepage": "http://data.ign.fr/def/geofla", + "id": "lov.geofla", + "name": "Ontologie des unit\u00e9s administratives de l'IGN", + "prefix": "geofla", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://data.ign.fr/def/geofla#$1" + }, + "lov.geom": { + "authority": "lov", + "description": "Ontologie des primitives g\u00e9om\u00e9triques repr\u00e9sentant la forme et la localisation d'entit\u00e9s topographiques.", + "homepage": "http://data.ign.fr/def/geometrie", + "id": "lov.geom", + "name": "Ontologie des primitives g\u00e9om\u00e9triques", + "prefix": "geom", + "source": "lov.linkeddata.es", + "subjects": [ + "mathematics" + ], + "uri_format": "http://data.ign.fr/def/geometrie#$1" + }, + "lov.geop": { + "authority": "lov", + "description": "FAO's geopolitical ontology version 1.1 was populated with FAO, UN and internationally recognized data sources.", + "homepage": "http://aims.fao.org/aos/geopolitical.owl", + "id": "lov.geop", + "name": "FAO Geopolitical Ontology", + "prefix": "geop", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://aims.fao.org/aos/geopolitical.owl#$1" + }, + "lov.geosp": { + "authority": "lov", + "description": "The GeoSpecies Ontology is used to describe geographical distribution of living species.", + "homepage": "http://rdf.geospecies.org/ont/geospecies", + "id": "lov.geosp", + "name": "GeoSpecies Ontology", + "prefix": "geosp", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://rdf.geospecies.org/ont/geospecies#$1" + }, + "lov.gf": { + "authority": "lov", + "description": "An OWL representation of part of the General Feature Model described in ISO 19109 and the General Feature Instance model described in Annex C of ISO 19156:2011.", + "homepage": "http://def.seegrid.csiro.au/isotc211/iso19109/2005/feature", + "id": "lov.gf", + "name": "OWL representation of ISO 19109 (General Feature Model)", + "prefix": "gf", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19109/2005/feature#$1" + }, + "lov.gleif-base": { + "authority": "lov", + "description": "Ontology defining generic concepts for reuse by other Global Legal Entity Identifier Foundation (GLEIF) ontologies. It defines generic classes for (legal) Entities and their relationships and statuses; and generic properties for different types of name and address. It makes use of the OMG Languages Countries and Codes (LCC) ontology (based on the ISO 3166 standard) for country and region information.", + "homepage": "https://www.gleif.org/ontology/Base/", + "id": "lov.gleif-base", + "name": "Global Legal Entity Identifier Foundation Base Ontology", + "prefix": "gleif-base", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "https://www.gleif.org/ontology/Base/$1" + }, + "lov.gleif-elf": { + "authority": "lov", + "description": "Ontology defining concepts for Entity Legal Forms and their abbreviations by jurisdiction, based on ISO 20275. Though used by Global Legal Entity Identifier Foundation (GLEIF) for Legal Entity Identifier registration, it is more broadly applicable.", + "homepage": "https://www.gleif.org/ontology/EntityLegalForm/", + "id": "lov.gleif-elf", + "name": "Entity Legal Form Ontology", + "prefix": "gleif-elf", + "source": "lov.linkeddata.es", + "subjects": [ + "law" + ], + "uri_format": "https://www.gleif.org/ontology/EntityLegalForm/$1" + }, + "lov.gleif-geo": { + "authority": "lov", + "description": "Ontology defining concepts for Geocoding of addresses. It is based on the geocoding used in the Global Legal Entity Identifier Foundation (GLEIF) Golden Copy Data, but is more broadly applicable.", + "homepage": "https://www.gleif.org/ontology/Geocoding/", + "id": "lov.gleif-geo", + "name": "Global Legal Entity Identifier Foundation Geocoding Ontology", + "prefix": "gleif-geo", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "https://www.gleif.org/ontology/Geocoding/$1" + }, + "lov.gleif-l1": { + "authority": "lov", + "description": "Ontology for legal entity identifier registration. It was designed for Global Legal Entity Identifier Foundation (GLEIF) Level 1 data corresponding to the Common Data Format version 2.1. It covers key reference data for a legal entity identifiable with an LEI. The ISO 17442 standard developed by the International Organization for Standardization defines a set of attributes or LEI reference data that comprises the most essential elements of identification. It specifies the minimum reference data, which must be supplied for each LEI: The official name of the legal entity as recorded in the official registers. The registered address of that legal entity. The country of formation. The codes for the representation of names of countries and their subdivisions. The date of the first LEI assignment; the date of last update of the LEI information; and the date of expiry, if applicable.", + "homepage": "https://www.gleif.org/ontology/L1/", + "id": "lov.gleif-l1", + "name": "Global Legal Entity Identifier Foundation Level 1 Ontology - Who Is Who", + "prefix": "gleif-L1", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://www.gleif.org/ontology/L1/$1" + }, + "lov.gleif-l2": { + "authority": "lov", + "description": "Ontology for legal entity parent relationships. It was designed for Global Legal Entity Identifier Foundation (GLEIF) Level 2 data corresponding to the Relationship Record format, version 1.1. Legal entities that have or acquire an LEI report their \u2018direct accounting consolidating parent\u2019 as well as their \u2018ultimate accounting consolidating parent\u2019, or for International Branches \u2018is an International Branch of'. Otherwise they must provide a Reporting Exception.", + "homepage": "https://www.gleif.org/ontology/L2/", + "id": "lov.gleif-l2", + "name": "Global Legal Entity Identifier Foundation Level 2 Ontology - Who Owns Whom", + "prefix": "gleif-L2", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://www.gleif.org/ontology/L2/$1" + }, + "lov.gleif-ra": { + "authority": "lov", + "description": "Ontology defining concepts for Business Registries, including the jurisdictions served. This is based on the Registration Authority Code List (RAL) used for Global Legal Entity Identifier Foundation (GLEIF) registration, but is more broadly applicable.", + "homepage": "https://www.gleif.org/ontology/RegistrationAuthority/", + "id": "lov.gleif-ra", + "name": "Global Legal Entity Identifier Foundation Registration Authority Ontology", + "prefix": "gleif-ra", + "source": "lov.linkeddata.es", + "subjects": [ + "law" + ], + "uri_format": "https://www.gleif.org/ontology/RegistrationAuthority/$1" + }, + "lov.gleif-repex": { + "authority": "lov", + "description": "Ontology for representing exceptions to reporting of parents, for entities registered with a Legal Entity Identifier. The Global Legal Identifier System (GLEIS) requires that legal entities with an LEI provide information on their ultimate and direct accounting consolidating parents. Relationship reporting is mandatory with exceptions allowed for certain well-defined reasons. This ontology provides a simple structure for recording reasons for each exception by LEI.", + "homepage": "https://www.gleif.org/ontology/ReportingException/", + "id": "lov.gleif-repex", + "name": "Global Legal Entity Identifier Foundation Reporting Exception Ontology", + "prefix": "gleif-repex", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://www.gleif.org/ontology/ReportingException/$1" + }, + "lov.gm": { + "authority": "lov", + "description": "An OWL representation of part of the model for geometry and space from ISO 19107:2003 Geographic Information - Spatial Schema", + "homepage": "http://def.seegrid.csiro.au/isotc211/iso19107/2003/geometry", + "id": "lov.gm", + "name": "OWL representation of ISO 19107 (Geographic Information)", + "prefix": "gm", + "source": "lov.linkeddata.es", + "subjects": [ + "mathematics" + ], + "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19107/2003/geometry#$1" + }, + "lov.gml": { + "authority": "lov", + "description": "A specialization of GeoSPARQL defining specific subtypes of Geometry", + "homepage": "http://www.opengis.net/ont/gml", + "id": "lov.gml", + "name": "OGC Geometry", + "prefix": "gml", + "source": "lov.linkeddata.es", + "subjects": [ + "mathematics" + ], + "uri_format": "http://www.opengis.net/ont/gml#$1" + }, + "lov.gn": { + "authority": "lov", + "description": "The Geonames ontology provides elements of description for geographical features defined in the geonames.org data base", + "homepage": "http://www.geonames.org/ontology", + "id": "lov.gn", + "name": "The Geonames ontology", + "prefix": "gn", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://www.geonames.org/ontology#$1" + }, + "lov.gndo": { + "authority": "lov", + "description": "GND stands for \"Gemeinsame Normdatei\" (Integrated Authority File) and offers a broad range of elements to describe authorities. The GND originates from the German library community and aims to solve the name ambiguity problem in the library world.", + "homepage": "http://d-nb.info/standards/elementset/gnd#", + "id": "lov.gndo", + "name": "GND Ontology", + "prefix": "gndo", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://d-nb.info/standards/elementset/gnd#$1" + }, + "lov.gold": { + "authority": "lov", + "description": "The General Ontology for Linguistic Description (GOLD) was created primarily for applications involving descriptive linguistics.", + "homepage": "http://purl.org/linguistics/gold", + "id": "lov.gold", + "name": "General Ontology for Linguistic Description", + "prefix": "gold", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/linguistics/gold/$1" + }, + "lov.gom": { + "authority": "lov", + "description": "- Version 0.0.1: initial version", + "homepage": "https://w3id.org/gom", + "id": "lov.gom", + "name": "GOM: Geometry Metadata Ontology", + "prefix": "gom", + "source": "lov.linkeddata.es", + "subjects": [ + "mathematics" + ], + "uri_format": "https://w3id.org/gom#$1" + }, + "lov.gov": { + "authority": "lov", + "description": "The Genealogisches Orts-Verzeichnis (GOV) contains information about current and historical political, ecclesiastical and legal administrative affiliations of settlements and administrative units. In addition several time-dependent values (such as names, population numbers, postal codes etc.) are given.", + "homepage": "http://gov.genealogy.net/ontology.owl", + "id": "lov.gov", + "name": "Ontology for modelling historic administrative information.", + "prefix": "gov", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://gov.genealogy.net/ontology.owl#$1" + }, + "lov.gr": { + "authority": "lov", + "description": "The GoodRelations ontology provides the vocabulary for annotating e-commerce offerings (1) to sell, lease, repair, dispose, or maintain commodity products and (2) to provide commodity services.", + "homepage": "http://purl.org/goodrelations/v1", + "id": "lov.gr", + "name": "The GoodRelations Ontology for Semantic Web-based E-Commerce", + "prefix": "gr", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/goodrelations/v1#$1" + }, + "lov.grddl": { + "authority": "lov", + "description": "Gleaning Resource Descriptions from Dialects of Languages Vocabulary", + "homepage": "http://www.w3.org/2003/g/data-view", + "id": "lov.grddl", + "name": "Gleaning Resource Descriptions from Dialects of Languages Vocabulary", + "prefix": "grddl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2003/g/data-view#$1" + }, + "lov.gso": { + "authority": "lov", + "description": "Ontology for Relating Generic and Specific Information Resources", + "homepage": "http://www.w3.org/2006/gen/ont", + "id": "lov.gso", + "name": "Generic Specific Ontology", + "prefix": "gso", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2006/gen/ont#$1" + }, + "lov.gsp": { + "authority": "lov", + "description": "A Geographic Query Language for RDF Data OGC 11-052r5", + "homepage": "http://www.opengis.net/ont/geosparql", + "id": "lov.gsp", + "name": "OGC GeoSPARQL", + "prefix": "gsp", + "source": "lov.linkeddata.es", + "subjects": [ + "mathematics" + ], + "uri_format": "http://www.opengis.net/ont/geosparql#$1" + }, + "lov.gtfs": { + "authority": "lov", + "description": "This ontology is a translation of the General Transit Feed Specification towards URIs. Its intended use is creating an exchange platform where the Linked GTFS model can be used as a start to get the right data into the right format.", + "homepage": "http://vocab.gtfs.org/terms#", + "id": "lov.gtfs", + "name": "General Transit Feed Specification", + "prefix": "gtfs", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://vocab.gtfs.org/terms#$1" + }, + "lov.gts": { + "authority": "lov", + "description": "This is an RDF/OWL representation of the GeoSciML Geologic Timescale model, which has been adapted from the model described in Cox, S.J.D, & Richard, S.M. (2005) A formal model for the geologic timescale and GSSP, compatible with geospatial information transfer standards, Geosphere, Geological Society of America 1/3, 119\u2013137.", + "homepage": "http://resource.geosciml.org/ontology/timescale/gts", + "id": "lov.gts", + "name": "Geologic Timescale model", + "prefix": "gts", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://resource.geosciml.org/ontology/timescale/gts#$1" + }, + "lov.gufo": { + "authority": "lov", + "description": "The objective of gUFO is to provide a lightweight implementation of the Unified Foundational Ontology (UFO) [1-5] suitable for Semantic Web OWL 2 DL applications. \n\nIntended users are those implementing UFO-based lightweight ontologies that reuse gUFO by specializing and instantiating its elements.\n\nThere are three implications of the use of the term lightweight. First of all, we have employed little expressive means in an effort to retain computational properties for the resulting OWL ontology. Second, we have selected a subset of UFO-A [1, 2] and UFO-B [3] to include here. In particular, there is minimalistic support for UFO-B (only that which is necessary to establish the participation of objects in events and to capture historical dependence between events). Third, a lightweight ontology, differently from a reference ontology, is designed with the purpose of providing an implementation artifact to structure a knowledge base (or knowledge graph). This has driven a number of pragmatic implementation choices which are discussed in comments annotated to the various elements of this implementation. \n\nThe 'g' in gUFO stands for gentle. At the same time, \"gufo\" is the Italian word for \"owl\".\n\n\nFor the source repository, see: ", + "homepage": "http://purl.org/nemo/gufo#", + "id": "lov.gufo", + "name": "gUFO: A Lightweight Implementation of the Unified Foundational Ontology (UFO)", + "prefix": "gufo", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://purl.org/nemo/gufo#$1" + }, + "lov.gvp": { + "authority": "lov", + "description": "The GVP Ontology defines classes, properties and values (skos:Concepts) used in GVP LOD. It is complete regarding AAT and TGN (as of version 2.0), and will be extended in time with more elements needed for the other GVP vocabularies (ULAN, CONA).", + "homepage": "http://vocab.getty.edu/ontology", + "id": "lov.gvp", + "name": "Getty Vocabulary Program ontology", + "prefix": "gvp", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://vocab.getty.edu/ontology#$1" + }, + "lov.h2o": { + "authority": "lov", + "description": "This ontology establishes classes corresponding to stereotypes used in ISO-conformant models, as used in the rules for conversion of the ISO TC 211 Harmonized Model from the UML to OWL representations", + "homepage": "http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic", + "id": "lov.h2o", + "name": "Ontology for conversion of ISO/TC 211", + "prefix": "h2o", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#$1" + }, + "lov.ha": { + "authority": "lov", + "description": "An ontology to detect activity in a smart home", + "homepage": "http://sensormeasurement.appspot.com/ont/home/homeActivity#", + "id": "lov.ha", + "name": "Home Activity", + "prefix": "ha", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sensormeasurement.appspot.com/ont/home/homeActivity#$1" + }, + "lov.hctl": { + "authority": "lov", + "description": "Ontology designed to provide an RDF representation of Hypermedia Controls, in particular links and forms.", + "homepage": "https://www.w3.org/2019/wot/hypermedia#", + "id": "lov.hctl", + "name": "Hypermedia Controls Ontology", + "prefix": "hctl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://www.w3.org/2019/wot/hypermedia#$1" + }, + "lov.hdo": { + "authority": "lov", + "description": "Simple ontology developed for integration purposes. Describe helpdesk entities used to record support tickets for diagnosis and resolve purpuses. The ontology re-uses a) W3C ORG and REGORG ontologies, b) DUL upper ontology, and c) GoodRelations ontology.", + "homepage": "http://www.samos.gr/ontologies/helpdeskOnto.owl", + "id": "lov.hdo", + "name": "HelpDesk support Ontology", + "prefix": "hdo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.samos.gr/ontologies/helpdeskOnto.owl#$1" + }, + "lov.hifm": { + "authority": "lov", + "description": "An ontology for describing brand-name drugs.", + "homepage": "http://purl.org/net/hifm/ontology#", + "id": "lov.hifm", + "name": "HIFM Ontology", + "prefix": "hifm", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences", + "health sciences" + ], + "uri_format": "http://purl.org/net/hifm/ontology#$1" + }, + "lov.holding": { + "authority": "lov", + "description": "A vocabulary to express (library) holdings in RDF", + "homepage": "http://purl.org/ontology/holding", + "id": "lov.holding", + "name": "Holding Ontology", + "prefix": "holding", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/ontology/holding#$1" + }, + "lov.holy": { + "authority": "lov", + "description": "This is the Hydrogen Ontology (HOLY). HOLY is a domain ontology for describing the complex structure of hydrogen-based markets. HOLY contributes to the systemic modeling of the hydrogen domain with a focus on its value chain. Hence, it provides a foundation for retrieval, storage, and delivery of market insights.", + "homepage": "http://purl.org/holy/ns#", + "id": "lov.holy", + "name": "Hydrogen Ontology", + "prefix": "holy", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://purl.org/holy/ns#$1" + }, + "lov.hosp": { + "authority": "lov", + "description": "A RDF Schema that defines concepts and relationships used for Hospital data.", + "homepage": "http://vocab.data.gov/hosp", + "id": "lov.hosp", + "name": "Hospital Vocabulary", + "prefix": "hosp", + "source": "lov.linkeddata.es", + "subjects": [ + "health sciences" + ], + "uri_format": "http://health.data.gov/def/hospital/$1" + }, + "lov.hpont": { + "authority": "lov", + "description": "The Heat Pump Ontology (HPOnt) aims to formalize and represent all the relevant information of Heat Pumps.\n\nThe HPOnt has been developed as part of the REACT project which has received funding from the European Union\u2019s Horizon 2020 research and innovation programme under grant agreement no. 824395.", + "homepage": "https://w3id.org/hpont", + "id": "lov.hpont", + "name": "The Heat Pump Ontology (HPOnt).", + "prefix": "hpont", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://w3id.org/hpont#$1" + }, + "lov.hr": { + "authority": "lov", + "description": "hRESTS is a vocabulary for describing RESTful Web services", + "homepage": "http://iserve.kmi.open.ac.uk/ns/hrests", + "id": "lov.hr", + "name": "hRESTS Ontology", + "prefix": "hr", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://iserve.kmi.open.ac.uk/ns/hrests#$1" + }, + "lov.hto": { + "authority": "lov", + "description": "The Haystack Tagging Ontology is an OWL ontology for Project Haystack, a domain vocabulary for Building Automation Systems.", + "homepage": "http://vcharpenay.github.io/hto/hto.xml", + "id": "lov.hto", + "name": "Haystack Tagging Ontology", + "prefix": "hto", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://vcharpenay.github.io/hto/hto.xml#$1" + }, + "lov.http": { + "authority": "lov", + "description": "A namespace for describing HTTP messages (http://www.w3.org/Protocols/rfc2616/rfc2616.html)", + "homepage": "http://www.w3.org/2011/http", + "id": "lov.http", + "name": "HTTP in RDF", + "prefix": "http", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://www.w3.org/2011/http#$1" + }, + "lov.hw": { + "authority": "lov", + "description": "Smart home ontology for weather phenomena and exterior conditions", + "homepage": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl", + "id": "lov.hw", + "name": "Home Weather", + "prefix": "hw", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl$1" + }, + "lov.hydra": { + "authority": "lov", + "description": "A lightweight vocabulary for hypermedia-driven Web APIs", + "homepage": "http://www.w3.org/ns/hydra/core", + "id": "lov.hydra", + "name": "The Hydra Core Vocabulary", + "prefix": "hydra", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/hydra/core#$1" + }, + "lov.iadopt": { + "authority": "lov", + "description": "The I-ADOPT Framework ontology", + "homepage": "https://w3id.org/iadopt/ont", + "id": "lov.iadopt", + "name": "I-ADOPT Framework ontology", + "prefix": "iadopt", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences", + "earth and related environmental sciences" + ], + "uri_format": "https://w3id.org/iadopt/ont/$1" + }, + "lov.ibis": { + "authority": "lov", + "description": "This document specifies a vocabulary for describing an IBIS (issue-based information system).", + "homepage": "https://privatealpha.com/ontology/ibis/1#", + "id": "lov.ibis", + "name": "IBIS Vocabulary", + "prefix": "ibis", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://privatealpha.com/ontology/ibis/1#$1" + }, + "lov.ic": { + "authority": "lov", + "description": "This ontology provides basic classes and more detailed properties for representating international street addresses, phone numbers and emails. Rather than using existing ontologies, such as vcard, it was decided to create a new one as the vcard and foaf ignore the details of international addresses, phone numbers, etc.", + "homepage": "http://ontology.eil.utoronto.ca/icontact.owl", + "id": "lov.ic", + "name": "International Contact Ontology: Addresses, phone numbers and emails.", + "prefix": "ic", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ontology.eil.utoronto.ca/icontact.owl#$1" + }, + "lov.iddo": { + "authority": "lov", + "description": "The interconnected data dictionary ontology maps the data model of the ISO 23386 for the describing, creating, and maintenance of properties in interconnected data dictionaries.", + "homepage": "https://w3id.org/iddo", + "id": "lov.iddo", + "name": "The Interconnected Data Dictionary Ontology (IDDO)", + "prefix": "iddo", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "https://w3id.org/iddo#$1" + }, + "lov.idemo": { + "authority": "lov", + "description": "Ontologie des classes et propri\u00e9t\u00e9s utilis\u00e9es pour la d\u00e9mographie, notamment le recensement de la population", + "homepage": "http://rdf.insee.fr/def/demo", + "id": "lov.idemo", + "name": "Ontologie d\u00e9mographique de l'INSEE", + "prefix": "idemo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://rdf.insee.fr/def/demo#$1" + }, + "lov.identity": { + "authority": "lov", + "description": "v.2.0 based on P3P1.0 Specification http://www.w3.org/TR/P3P/", + "homepage": "http://www.identity.org/ontologies/identity.owl", + "id": "lov.identity", + "name": "Ontology of digital identity.", + "prefix": "identity", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.identity.org/ontologies/identity.owl#$1" + }, + "lov.ids": { + "authority": "lov", + "description": "This ontology defines classes and properties for describing participants, infrastructure, data and services of the International Data Spaces (formerly known as Industrial Data Space).", + "homepage": "https://w3id.org/idsa/core", + "id": "lov.ids", + "name": "IDS Information Model", + "prefix": "ids", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities", + "law", + "computer and information sciences" + ], + "uri_format": "https://w3id.org/idsa/core/$1" + }, + "lov.ifc": { + "authority": "lov", + "description": "OWL ontology for the IFC conceptual data schema and exchange file format for Building Information Model (BIM) data", + "homepage": "https://w3id.org/ifc/IFC4_ADD1", + "id": "lov.ifc", + "name": "IFC4_ADD1", + "prefix": "ifc", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "https://w3id.org/ifc/IFC4_ADD1#$1" + }, + "lov.igeo": { + "authority": "lov", + "description": "Ontologie des objets g\u00e9ographiques de l'INSEE, en particulier des territoires administratifs de la France", + "homepage": "http://rdf.insee.fr/def/geo", + "id": "lov.igeo", + "name": "Ontologie g\u00e9ographique de l'INSEE", + "prefix": "igeo", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://rdf.insee.fr/def/geo#$1" + }, + "lov.ignf": { + "authority": "lov", + "description": "Codes for describing coordinates reference systems consistently with ISO TC/211. French translations of terms and definitions are mainly taken from the multilingual glossary of ISO/TC 211 available online: http://www.isotc211.org/Terminology.htm", + "homepage": "http://data.ign.fr/def/ignf", + "id": "lov.ignf", + "name": "Ontologie des syst\u00e8mes de coordonn\u00e9es de r\u00e9f\u00e9rence", + "prefix": "ignf", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://data.ign.fr/def/ignf#$1" + }, + "lov.imo": { + "authority": "lov", + "description": "La Ontologia de IMGpedia provee terminos para referirse a descriptores visuales y relaciones de similitud entre imagenes", + "homepage": "http://imgpedia.dcc.uchile.cl/ontology", + "id": "lov.imo", + "name": "The IMGpedia Ontology", + "prefix": "imo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://imgpedia.dcc.uchile.cl/ontology#$1" + }, + "lov.incident": { + "authority": "lov", + "description": "Vocabulary to describe the response to a incident by emergency services.\nThis is NOT intended to describe the incident itself, it describes the response", + "homepage": "http://vocab.resc.info/incident", + "id": "lov.incident", + "name": "Vocabulary to describe incident response by emergency services", + "prefix": "incident", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://vocab.resc.info/incident#$1" + }, + "lov.infor": { + "authority": "lov", + "description": "Allows designers to model information objects and their realizations. This allows to reason about physical objects and the information they realize, by keeping them distinguished.", + "homepage": "http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl", + "id": "lov.infor", + "name": "Information Realization", + "prefix": "infor", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl#$1" + }, + "lov.inno": { + "authority": "lov", + "description": "One key use case for this ontology is to facilitate the matching of needs and innovations.", + "homepage": "http://purl.org/innovation/ns", + "id": "lov.inno", + "name": "Ontology for Innovation", + "prefix": "inno", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/innovation/ns#$1" + }, + "lov.interval": { + "authority": "lov", + "description": "An ontology for time intervals", + "homepage": "http://reference.data.gov.uk/def/intervals", + "id": "lov.interval", + "name": "Intervals Ontology", + "prefix": "interval", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://reference.data.gov.uk/def/intervals/$1" + }, + "lov.iol": { + "authority": "lov", + "description": "An ontology of information objects, encodings and realizations, as a plugin to DOLCE-Ultralite", + "homepage": "http://www.ontologydesignpatterns.org/ont/dul/IOLite.owl", + "id": "lov.iol", + "name": "Information Objects ontology", + "prefix": "iol", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://www.ontologydesignpatterns.org/ont/dul/IOLite.owl#$1" + }, + "lov.iot-lite": { + "authority": "lov", + "description": "iot-lite is a lightweight ontology based on SSN to describe Internet of Things (IoT) concepts and relationships.", + "homepage": "http://purl.oclc.org/NET/UNIS/fiware/iot-lite#", + "id": "lov.iot-lite", + "name": "Iot-lite ontology", + "prefix": "iot-lite", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "http://purl.oclc.org/NET/UNIS/fiware/iot-lite#$1" + }, + "lov.iot-tta": { + "authority": "lov", + "description": "The Internet of Things taxonomy is extended with semantic ontologies for IoT layers, containing classes, properties, individuals, and rules specific to IoT technologies, tools, and applications", + "homepage": "https://w3id.org/iot-tta", + "id": "lov.iot-tta", + "name": "Ontology for Internet of Things Technologies, Tools, and Applications", + "prefix": "iot-tta", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://w3id.org/iot-tta#$1" + }, + "lov.ioto": { + "authority": "lov", + "description": "IoT-O is a core domain Internet of Things ontology. It is intended to model horizontal knowledge about IoT systems and applications, and to be extended with vertical, application specific knowledge.\nIt is constituted of different modules : \n - A sensing module, based on W3C's SSN (http://purl.oclc.org/NET/ssnx/ssn)\n - An acting module, based on SAN (http://www.irit.fr/recherches/MELODI/ontologies/SAN)\n - A service module, based on MSM (http://iserve.kmi.open.ac.uk/ns/msm/msm-2014-09-03.rdf) and hRest (http://www.wsmo.org/ns/hrests)\n - A lifecycle module, based on a lifecycle vocabulary (http://vocab.org/lifecycle/schema-20080603.rdf) and an iot-specific extension (http://www.irit.fr/recherches/MELODI/ontologies/IoT-Lifecycle)\n - An energy module, based on powerOnt (ttp://elite.polito.it/ontologies/poweront.owl)\n\nIoT-O developping team also contributes to the oneM2M IoT interoperability standard.", + "homepage": "http://www.irit.fr/recherches/MELODI/ontologies/IoT-O", + "id": "lov.ioto", + "name": "IoT-O", + "prefix": "ioto", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://www.irit.fr/recherches/MELODI/ontologies/IoT-O#$1" + }, + "lov.iottaxolite": { + "authority": "lov", + "description": "The IoT-Taxonomy-lite is adapted from M3-lite taxonomy. This taxonomy is refactored and defines many other concepts such as subclasses of Feature-of-Interest and Quality-of-Observation.", + "homepage": "http://purl.org/iot/vocab/iot-taxonomy-lite#", + "id": "lov.iottaxolite", + "name": "The IoTTaxonomy-lite Taxonomy", + "prefix": "iottaxolite", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://purl.org/iot/vocab/iot-taxonomy-lite#$1" + }, + "lov.ipo": { + "authority": "lov", + "description": "Vocabulary for describing issues (or problems) and corresponding symptoms and solutions to a broad variety of contexts. It is intended to provide a generic, reusable core ontology that can be extended or specialized for use in domain-specific situations, aimed at supporting linked data publishing. The solutions are represented by procedures, which are possible workflows for solving corresponding issues.", + "homepage": "http://purl.org/ipo/core", + "id": "lov.ipo", + "name": "IPO - Issue Procedure Ontology", + "prefix": "ipo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ipo/core#$1" + }, + "lov.irao": { + "authority": "lov", + "description": "Informatics Research Artifacts Ontology, described using W3C RDF Schema and the Web Ontology Language OWL.", + "homepage": "http://ontology.ethereal.cz/irao", + "id": "lov.irao", + "name": "Informatics Research Artifacts Ontology", + "prefix": "irao", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities", + "computer and information sciences" + ], + "uri_format": "http://ontology.ethereal.cz/irao/$1" + }, + "lov.irw": { + "authority": "lov", + "description": "This ontology is an evolution of IRE ontology. It describes identification of resources on the Web, through the definition of relationships between resources and their representations on the Web. The requirement is to describe what can be identified by URIs and how this is handled e.g. in form of HTTP requests and reponds.", + "homepage": "http://www.ontologydesignpatterns.org/ont/web/irw.owl", + "id": "lov.irw", + "name": "The Identity of Resources on the Web ontology", + "prefix": "irw", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ontologydesignpatterns.org/ont/web/irw.owl#$1" + }, + "lov.is": { + "authority": "lov", + "description": "The Information Service Ontology specification provides basic concepts and properties for describing different information services, e.g. Wikipedia, MusicBrainz, Freebase", + "homepage": "http://purl.org/ontology/is/core#", + "id": "lov.is", + "name": "Info Service Ontology", + "prefix": "is", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/is/core#$1" + }, + "lov.isbd": { + "authority": "lov", + "description": "This is a registration of classes and properties from International Standard Bibliographic Description (ISBD), consolidated edition, published by De Gruyter Saur in July 2011 (ISBN 978-3-11-026379-4).", + "homepage": "http://iflastandards.info/ns/isbd/elements/", + "id": "lov.isbd", + "name": "ISBD elements", + "prefix": "isbd", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://iflastandards.info/ns/isbd/elements/$1" + }, + "lov.iso-thes": { + "authority": "lov", + "description": "This vocabulary aims at providing interoperability between SKOS and ISO 25964 \u2010 1:2011, the new standard for thesauri", + "homepage": "http://purl.org/iso25964/skos-thes", + "id": "lov.iso-thes", + "name": "ISO 25964 SKOS extension", + "prefix": "iso-thes", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/iso25964/skos-thes#$1" + }, + "lov.iso37120": { + "authority": "lov", + "description": "ISO 37120 \u2013 Sustainable Development and Resilience of Communities \u2013 Indicators for City Services and Quality of Life (under TC268)\n\nhttp://ontology.eil.utoronto.ca/ISO37120.html\n\nThis OWL file defines a class for each indicator defined in the ISO 37120 standard. Names for each indicator are provided. Text definitions are provided only for Economy, Education and Energy indicators, due to copyright restrictions imposed by ISO. This file is meant to provide a single URI for each indicator.\n\nAn ontology for representing an indicator's supporting data plus meta information such as provenance, validity and trust can be found in:\nhttp://ontology.eil.utoronto.ca/GCI/Foundation/GCI-Foundation.owl\n\nDocumentation of the ontology can be found in:\nhttp://eil.utoronto.ca/smartcities/papers/GCI-Foundation-Ontology.pdf", + "homepage": "http://ontology.eil.utoronto.ca/ISO37120.owl", + "id": "lov.iso37120", + "name": "ISO 37120 indicator URIs", + "prefix": "iso37120", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://ontology.eil.utoronto.ca/ISO37120.owl#$1" + }, + "lov.isoadr": { + "authority": "lov", + "description": "This ontology is a version of the ISO TC211, Group for Ontology Management (GOM)'s OWL ontology interpretation of the ISO19160-1:2015 \"Addressing -- Part 1: Conceptual model\" standard (see https://www.iso.org/standard/61710.html) taken from that ontology's source code, published at https://github.com/ISO-TC211/GOM/tree/master/isotc211_GOM_harmonizedOntology/19160-1/2015.", + "homepage": "http://reference.data.gov.au/def/ont/iso19160-1-address", + "id": "lov.isoadr", + "name": "ISO19160-1:2015 Address ontology", + "prefix": "isoadr", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://reference.data.gov.au/def/ont/iso19160-1-address#$1" + }, + "lov.ispra": { + "authority": "lov", + "description": "L'ontologia ISPRA nasce dall'esigenza di pubblicazione dei dataset LOD ed \u00e8 finalizzata alla descrizione dei processi e delle attivit\u00e0 dell'Istituto negli ambiti circoscritti dai primi dataset pubblicati. Al momento sono descritte in modo analitico le classi e le propriet\u00e0 che insistono sul dominio specifico della rete ondametrica nazionale, della rete mareografica, del consumo del suolo e degli interventi di dissesto idrogeologico, ma l'obiettivo \u00e8 di estenderla parallelamente alla pubblicazione di nuovi dataset.", + "homepage": "http://dati.isprambiente.it/ontology/core#", + "id": "lov.ispra", + "name": "Ispra Ontology", + "prefix": "ispra", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities", + "earth and related environmental sciences" + ], + "uri_format": "http://dati.isprambiente.it/ontology/core#$1" + }, + "lov.istex": { + "authority": "lov", + "description": "ISTEX est une plateforme qui a pour ambition d\u2019offrir, \u00e0 l\u2019ensemble de la communaut\u00e9 de l\u2019enseignement sup\u00e9rieur et de la recherche fran\u00e7aise qui le souhaite, un acc\u00e8s en ligne aux collections r\u00e9trospectives de la litt\u00e9rature scientifique dans toutes les disciplines. \u00c0 ce r\u00e9servoir in\u00e9gal\u00e9 en ressources multidisciplinaires s\u2019ajoute un nombre important de services \u00e0 valeur ajout\u00e9e permettant d\u2019en optimiser l\u2019exploitation gr\u00e2ce \u00e0 des outils de fouille de contenus (TDM) et de valorisation interactive.", + "homepage": "https://data.istex.fr/ontology/istex#", + "id": "lov.istex", + "name": "Ontologie du projet Istex pour la diffusion de la litt\u00e9rature scientifique", + "prefix": "istex", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "https://data.istex.fr/ontology/istex#$1" + }, + "lov.itm": { + "authority": "lov", + "description": "A partir del estudio de las caracter\u00edsticas de las herramientas de gesti\u00f3n de tareas o issue tracking systems, se ha elaborado este vocabulario.", + "homepage": "http://spi-fm.uca.es/spdef/models/genericTools/itm/1.0", + "id": "lov.itm", + "name": "Issue Tracking tool Model", + "prefix": "itm", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://spi-fm.uca.es/spdef/models/genericTools/itm/1.0#$1" + }, + "lov.itsmo": { + "authority": "lov", + "description": "IT Service Management Ontology (ITSMO) provides the vocabulary for annotating resources related to IT Service Management. ITSMO tries to be consistent with 2011 ITIL glossary.", + "homepage": "http://ontology.it/itsmo/v1", + "id": "lov.itsmo", + "name": "IT Service Management Ontology", + "prefix": "itsmo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ontology.it/itsmo/v1#$1" + }, + "lov.ivoam": { + "authority": "lov", + "description": "A vocabulary of particles used for observations in astronomy.\nThis list started its existence as the controlled vocabulary for\nVODataService's vs:Waveband type; the machine-readable identifiers are in\nupper case for backwards compatibility.", + "homepage": "http://www.ivoa.net/rdf/messenger", + "id": "lov.ivoam", + "name": "Messengers", + "prefix": "ivoam", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ivoa.net/rdf/messenger#$1" + }, + "lov.jsonsc": { + "authority": "lov", + "description": "Module for data schema specifications, part of the W3C Web of Things (WoT) Thing Description model", + "homepage": "https://www.w3.org/2019/wot/json-schema#", + "id": "lov.jsonsc", + "name": "JSON Schema in RDF", + "prefix": "jsonsc", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://www.w3.org/2019/wot/json-schema#$1" + }, + "lov.jup": { + "authority": "lov", + "description": "Slovnik prisupnosti budov vznikl v ramci projektu Mapy bez barier, ktery realizuje Nadace Charty 77 - Konto Bariery. Vychazi z Metodiky kategorizace pristupnosti objektu, je vsak doplnen i o entity vyplyvajici z pozadavku projektu. Tento slovnik je i tematem diplomove prace Ontologie pristupnosti budov. Projekt je spolufinancovan z prostredku Evropske unie, Evropskeho fondu pro regionalni rozvoj.", + "homepage": "http://w3id.org/charta77/jup", + "id": "lov.jup", + "name": "Ontology of Building Accessibility", + "prefix": "jup", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://w3id.org/charta77/jup/$1" + }, + "lov.juso": { + "authority": "lov", + "description": "Juso Ontology is a Web vocabulary for describing geographical addresses and features.", + "homepage": "http://rdfs.co/juso/", + "id": "lov.juso", + "name": "Juso Ontology", + "prefix": "juso", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "mathematics" + ], + "uri_format": "http://rdfs.co/juso/$1" + }, + "lov.juso.kr": { + "authority": "lov", + "description": "South Korea Extension to Juso Ontology is a Web vocabulary that extends Juso Ontology to describe geographical addresses and features in South Korea.", + "homepage": "http://rdfs.co/juso/kr/", + "id": "lov.juso.kr", + "name": "South Korea Extension to Juso Ontology", + "prefix": "juso.kr", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "mathematics" + ], + "uri_format": "http://rdfs.co/juso/kr/$1" + }, + "lov.kdo": { + "authority": "lov", + "description": "The Knowledge Diversity Ontology aims at providing a vocabulary that describes different dimensions of knowledge diversity of the Web. To support the representation of diversity information, the conceptual model of the Knowledge Diversity Ontology includes concepts and relations that were identified and modelled by focusing on real world scenarios in context of customer feedback, news, and Wikipedia opinion mining as well as content and sentiment analysis.", + "homepage": "http://kdo.render-project.eu/kdo#", + "id": "lov.kdo", + "name": "The Knowledge Diversity Ontology", + "prefix": "kdo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://kdo.render-project.eu/kdo#$1" + }, + "lov.kees": { + "authority": "lov", + "description": "KEES (Knowledge Exchange Engine Schema ) ontology describes a knowledge base configuration in terms of ABox and TBox statements together with their accrual and reasoning policies. This vocabulary is designed to drive automatic data ingestion in a graph database according KEES and Linked (Open) Data principles.", + "homepage": "http://linkeddata.center/kees/v1", + "id": "lov.kees", + "name": "KEES Ontology", + "prefix": "kees", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://linkeddata.center/kees/v1#$1" + }, + "lov.keys": { + "authority": "lov", + "description": "A vocabulary for musical keys and notes", + "homepage": "http://purl.org/NET/c4dm/keys.owl", + "id": "lov.keys", + "name": "Keys Ontology", + "prefix": "keys", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/NET/c4dm/keys.owl#$1" + }, + "lov.km4c": { + "authority": "lov", + "description": "A Knowledge Model to describe a smart city, that interconnect data from infomobility service, Open Data and other source", + "homepage": "http://www.disit.org/km4city/schema", + "id": "lov.km4c", + "name": "km4city, the DISIT Knowledge Model for City and Mobility", + "prefix": "km4c", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://www.disit.org/km4city/schema#$1" + }, + "lov.label": { + "authority": "lov", + "description": "Term definitions for singular and plural label properties", + "homepage": "http://purl.org/net/vocab/2004/03/label", + "id": "lov.label", + "name": "label", + "prefix": "label", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/net/vocab/2004/03/label#$1" + }, + "lov.lawd": { + "authority": "lov", + "description": "The goal of LAWD is to fill in the cracks between the data used and published by projects with a focus on the ancient world and the standard Linked Data vocablary schemes, like Dublin Core, the Open Annotation Collaboration, and CIDOC-CRM.", + "homepage": "http://lawd.info/ontology/", + "id": "lov.lawd", + "name": "Linking Ancient World Data Ontology", + "prefix": "lawd", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://lawd.info/ontology/$1" + }, + "lov.lc": { + "authority": "lov", + "description": "This ontology provides the predicates necessary to describe a connection or hop from one transit stop to another.", + "homepage": "http://semweb.mmlab.be/ns/linkedconnections#Ontology", + "id": "lov.lc", + "name": "The Linked Connections ontology", + "prefix": "lc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://semweb.mmlab.be/ns/linkedconnections#$1" + }, + "lov.lcy": { + "authority": "lov", + "description": "The Lifecycle Schema provides classes and properties that allow the specification of a lifecycle that any resource may pass through.", + "homepage": "http://purl.org/vocab/lifecycle/schema", + "id": "lov.lcy", + "name": "Lifecycle Schema", + "prefix": "lcy", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/vocab/lifecycle/schema#$1" + }, + "lov.ldp": { + "authority": "lov", + "description": "A set of best practices and simple approach for a read-write Linked Data architecture, based on HTTP access to web resources that describe their state using the RDF data model.", + "homepage": "http://www.w3.org/ns/ldp#", + "id": "lov.ldp", + "name": "Linked Data Platform", + "prefix": "ldp", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://www.w3.org/ns/ldp#$1" + }, + "lov.ldr": { + "authority": "lov", + "description": "The Linked Data Rights ontology provides the vocabulary for creating rights expressions for Linked Data resources.", + "homepage": "http://purl.oclc.org/NET/ldr/ns#", + "id": "lov.ldr", + "name": "Linked Data Rights (LDR)", + "prefix": "ldr", + "source": "lov.linkeddata.es", + "subjects": [ + "law" + ], + "uri_format": "http://purl.oclc.org/NET/ldr/ns#$1" + }, + "lov.ldvm": { + "authority": "lov", + "description": "Vocabulary for Linked Data Visualization Model (LDVM) serves for description and configuration of components and pipelines according to LDVM", + "homepage": "http://linked.opendata.cz/ontology/ldvm/", + "id": "lov.ldvm", + "name": "Vocabulary for Linked Data Visualization Model", + "prefix": "ldvm", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://linked.opendata.cz/ontology/ldvm/$1" + }, + "lov.lemon": { + "authority": "lov", + "description": "Lemon: The lexicon model for ontologies is designed to allow for descriptions of lexical information regarding ontological elements and other RDF resources. Lemon covers mapping of lexical decomposition, phrase structure, syntax, variation, morphology, and lexicon-ontology mapping.", + "homepage": "http://lemon-model.net/lemon", + "id": "lov.lemon", + "name": "LExicon Model for ONtologies", + "prefix": "lemon", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://lemon-model.net/lemon#$1" + }, + "lov.lexdcp": { + "authority": "lov", + "description": "A model for the representation of lexical information relative to ontologies. Decomposition module.", + "homepage": "http://www.w3.org/ns/lemon/decomp", + "id": "lov.lexdcp", + "name": "Lexicon Model for Ontologies - Decomp", + "prefix": "lexdcp", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/lemon/decomp#$1" + }, + "lov.lexinfo": { + "authority": "lov", + "description": "Version 2.0 of LexInfo Ontology, based on Lemon", + "homepage": "http://www.lexinfo.net/ontology/2.0/lexinfo", + "id": "lov.lexinfo", + "name": "LexInfo Ontology", + "prefix": "lexinfo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.lexinfo.net/ontology/2.0/lexinfo#$1" + }, + "lov.lgdo": { + "authority": "lov", + "description": "LinkedGeoData ontology has been derived from concepts defined by Open Street Map", + "homepage": "http://linkedgeodata.org/ontology", + "id": "lov.lgdo", + "name": "LinkedGeoData ontology", + "prefix": "lgdo", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://linkedgeodata.org/ontology/$1" + }, + "lov.lh": { + "authority": "lov", + "description": "An ontology for metadata about legal texts represented using the LegalHTML format", + "homepage": "https://w3id.org/legalhtml/ov", + "id": "lov.lh", + "name": "LegalHTML Ontology", + "prefix": "lh", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/legalhtml/ov#$1" + }, + "lov.li": { + "authority": "lov", + "description": "An OWL representation of parts of the Geographic Metadata model described in ISO 19115:2003 with Corrigendum 2006 - LI Package", + "homepage": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/lineage", + "id": "lov.li", + "name": "OWL representation of ISO 19115 (Geographic Information - Metadata - Lineage package)", + "prefix": "li", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/lineage#$1" + }, + "lov.lib": { + "authority": "lov", + "description": "Experimental \"library\" extension vocabulary for use with Schema.org", + "homepage": "http://purl.org/library/", + "id": "lov.lib", + "name": "Library extension of schema.org", + "prefix": "lib", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/library/$1" + }, + "lov.lifecycle": { + "authority": "lov", + "description": "This ontology is a specialization of the lifecycle vocabulary (http://purl.org/vocab/lifecycle/schema) meant to be used in the context of IoT. It is used as a module in the IoT core domain ontology IoT-O (www.irit.fr/recherches/MELODI/ontologies/IoT-O). \n\nIoT-Lifecycle adds a specific state definition (ParametrizedState) and a specific transition (Update) that is useful to model actuators.", + "homepage": "http://www.irit.fr/recherches/MELODI/ontologies/IoT-Lifecycle", + "id": "lov.lifecycle", + "name": "IoT-Lifecycle", + "prefix": "lifecycle", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/vocab/lifecycle/schema#$1" + }, + "lov.lime": { + "authority": "lov", + "description": "LIME (LInguistic MEtadata) is a vocabulary for expressing linguistic metadata about linguistic resources and linguistically grounded datasets.", + "homepage": "http://www.w3.org/ns/lemon/lime", + "id": "lov.lime", + "name": "Lexicon Model for Ontologies - LIngusitic MEtadata (LIME)", + "prefix": "lime", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://www.w3.org/ns/lemon/lime#$1" + }, + "lov.limo": { + "authority": "lov", + "description": "A Vocabulary for Incorporating Predictive Models into the Linked Data Web", + "homepage": "http://purl.org/limo-ontology/limo/", + "id": "lov.limo", + "name": "Linked Statistical Models Vocabulary", + "prefix": "limo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/limo-ontology/limo#$1" + }, + "lov.limoo": { + "authority": "lov", + "description": "A vocabulary to describe licenses", + "homepage": "http://purl.org/LiMo/0.1#", + "id": "lov.limoo", + "name": "License Model Ontology", + "prefix": "limoo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/LiMo/0.1#$1" + }, + "lov.lingvo": { + "authority": "lov", + "description": "An ontology for using languages as resources", + "homepage": "https://w3id.org/vocab/lingvoj", + "id": "lov.lingvo", + "name": "The Lingvoj Ontology", + "prefix": "lingvo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/vocab/lingvoj#$1" + }, + "lov.lio": { + "authority": "lov", + "description": "A Lightweight Ontology for Describing Images", + "homepage": "http://purl.org/net/lio", + "id": "lov.lio", + "name": "Lightweight Image Ontology", + "prefix": "lio", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/net/lio#$1" + }, + "lov.llont": { + "authority": "lov", + "description": "LinkLion - the Link Discovery Portal", + "homepage": "http://www.linklion.org/ontology", + "id": "lov.llont", + "name": "LinkLion - the Link Discovery Portal", + "prefix": "llont", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.linklion.org/ontology#$1" + }, + "lov.lmm1": { + "authority": "lov", + "description": "This ontology is a composition of some content design patterns for the semiotic triangle. Its structure is extracted from DOLCE-Ultralite (DOLCE+c.DnS), but it uses a different terminology,", + "homepage": "http://www.ontologydesignpatterns.org/ont/lmm/LMM_L1.owl", + "id": "lov.lmm1", + "name": "Lexical MetaModel Level 1", + "prefix": "lmm1", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ontologydesignpatterns.org/ont/lmm/LMM_L1.owl#$1" + }, + "lov.lmm2": { + "authority": "lov", + "description": "An ontology for aligning existing linguistic ontologies, and for describing the research objects of NLP.", + "homepage": "http://www.ontologydesignpatterns.org/ont/lmm/LMM_L2.owl", + "id": "lov.lmm2", + "name": "Lexical MetaModel Level 2", + "prefix": "lmm2", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ontologydesignpatterns.org/ont/lmm/LMM_L2.owl#$1" + }, + "lov.loc": { + "authority": "lov", + "description": "Este vocabulario se utiliza para modelar las localizaciones f\u00edsicas de lugares p\u00fablicos. \t\t\tUtiliza elementos de Geonames para identificar las distintas caracter\u00edsticas geogr\u00e1ficas.", + "homepage": "http://purl.org/ctic/infraestructuras/localizacion", + "id": "lov.loc", + "name": "Vocabulario de Localizaciones", + "prefix": "loc", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://purl.org/ctic/infraestructuras/localizacion#$1" + }, + "lov.locah": { + "authority": "lov", + "description": "This vocabulary derived from the Encoded Archival Description standard has been developed in 2010-2011 by the LOCAH project.", + "homepage": "http://data.archiveshub.ac.uk/def/", + "id": "lov.locah", + "name": "The LOCAH RDF Vocabulary", + "prefix": "locah", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://data.archiveshub.ac.uk/def/$1" + }, + "lov.locn": { + "authority": "lov", + "description": "The ISA Programme Location Core Vocabulary provides a minimum set of classes and properties for describing any place in terms of its name, address or geometry. The vocabulary is specifically designed to aid the publication of data that is interoperable with EU INSPIRE Directive.", + "homepage": "http://www.w3.org/ns/locn", + "id": "lov.locn", + "name": "ISA Programme Location Core Vocabulary", + "prefix": "locn", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "mathematics" + ], + "uri_format": "http://www.w3.org/ns/locn#$1" + }, + "lov.lode": { + "authority": "lov", + "description": "An ontology for publishing descriptions of historical events as Linked Data, and for mapping between other event-related vocabularies and ontologies.", + "homepage": "http://linkedevents.org/ontology/", + "id": "lov.lode", + "name": "Linking Open Descriptions of Events", + "prefix": "lode", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://linkedevents.org/ontology/$1" + }, + "lov.log": { + "authority": "lov", + "description": "An historical ontology used by the cwm command-line tool back in the very early days of the semantic web (~ 2000- 2003 ?)", + "homepage": "http://www.w3.org/2000/10/swap/log", + "id": "lov.log", + "name": "SWAP Logic Ontology", + "prefix": "log", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2000/10/swap/log#$1" + }, + "lov.lom": { + "authority": "lov", + "description": "An ontology and vocabulary used for exposing IEEE LOM, a metadata standard for educational contents, as Linked Data. \nIt is intended as a bridge for linkage of educational metadata into Linked Open Data (LOD). In this ontology, we designed a mapping of IEEE LOM elements to RDF based on Linked Data principles.", + "homepage": "http://data.opendiscoveryspace.eu/lom_ontology_ods.owl", + "id": "lov.lom", + "name": "Learning Object Metadata Ontology", + "prefix": "lom", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://data.opendiscoveryspace.eu/lom_ontology_ods.owl#$1" + }, + "lov.losp": { + "authority": "lov", + "description": "Ontology Specialties describes all possible specialties (directions) in the RF, in which the UGNS they are composed, as well as information about their old codes / groups / names.", + "homepage": "http://sparql.sstu.ru:3030/speciality/", + "id": "lov.losp", + "name": "Linked open specialities RF", + "prefix": "losp", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://sparql.sstu.ru:3030/speciality/$1" + }, + "lov.loted": { + "authority": "lov", + "description": "A vocabulary for European Calls for Tenders (in english, german, and french)", + "homepage": "http://loted.eu/ontology", + "id": "lov.loted", + "name": "LOTED ontology", + "prefix": "loted", + "source": "lov.linkeddata.es", + "subjects": [ + "law" + ], + "uri_format": "http://loted.eu/ontology#$1" + }, + "lov.lsc": { + "authority": "lov", + "description": "LSC, the Linked Science Core Vocabulary, is a lightweight vocabulary providing terms to enable publishers and researchers to relate things in science to time, space, and themes.", + "homepage": "http://linkedscience.org/lsc/ns#", + "id": "lov.lsc", + "name": "Linked Science Core Vocabulary", + "prefix": "lsc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://linkedscience.org/lsc/ns#$1" + }, + "lov.lslife": { + "authority": "lov", + "description": "The ELSEWeb Lifemapper ontology provides classes for describing biodiversity modelling services provided by Lifemapper. This project provides support for the ELSEWeb project(http://elseweb.cybershare.utep.edu/).\nwebsite: http://elseweb.cybershare.utep.edu/ontologies\nemail: nvillanuevarosales@utep.edu", + "homepage": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper.owl", + "id": "lov.lslife", + "name": "ELSEWeb Lifemapper Ontology", + "prefix": "lslife", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper.owl#$1" + }, + "lov.lsmap": { + "authority": "lov", + "description": "The ELSEWeb mappings ontology imports related upper level ontologies and vocabularies and aligns ELSEWeb ontologies to importec classes. This ontology provides support for the ELSEWeb project(http://elseweb.cybershare.utep.edu/).\nwebsite: http://elseweb.cybershare.utep.edu/ontologies\nemail: nvillanuevarosales@utep.edu", + "homepage": "http://ontology.cybershare.utep.edu/ELSEWeb/mappings/elseweb-mappings.owl", + "id": "lov.lsmap", + "name": "ELSEWeb Mappings Ontology", + "prefix": "lsmap", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-data.owl#$1" + }, + "lov.lsq": { + "authority": "lov", + "description": "The Linked SPARQL Queries Vocabulary (LSQ(V)), defined using RDF(S) and OWL, provides a machine readable vocabulary to help describe queries in SPARQL logs and their statistics. The vocabulary builds upon the SPIN vocabulary and the Service Description vocabulary.", + "homepage": "http://lsq.aksw.org/vocab", + "id": "lov.lsq", + "name": "The Linked SPARQL Queries Vocabulary (LSQ(V))", + "prefix": "lsq", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://lsq.aksw.org/vocab#$1" + }, + "lov.lsweb": { + "authority": "lov", + "description": "The ELSEWeb Data ontology provides simple classes for describing datasets. This project provides foundational support for the ELSEWeb project(http://elseweb.cybershare.utep.edu/).\nwebsite: http://elseweb.cybershare.utep.edu/ontologies\nemail: nvillanuevarosales@utep.edu", + "homepage": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-data.owl", + "id": "lov.lsweb", + "name": "ELSEWeb Data Ontology", + "prefix": "lsweb", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-data.owl#$1" + }, + "lov.lswmo": { + "authority": "lov", + "description": "The ELSEWeb Modelling ontology provides simple classes for describing data models. This project provides foundational support for the ELSEWeb project(http://elseweb.cybershare.utep.edu/).\nwebsite: http://elseweb.cybershare.utep.edu/ontologies\nemail: nvillanuevarosales@utep.edu", + "homepage": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-modelling.owl", + "id": "lov.lswmo", + "name": "ELSEWeb Modelling Ontology", + "prefix": "lswmo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-modelling.owl#$1" + }, + "lov.lswpm": { + "authority": "lov", + "description": "The ELSEWeb Lifemapper parameters ontology provides auxiliary classes and instances that describe input parameters of Lifemapper modelling services. This ontology provides support for the ELSEWeb project(http://elseweb.cybershare.utep.edu/).\nwebsite: http://elseweb.cybershare.utep.edu/ontologies\nemail: nvillanuevarosales@utep.edu", + "homepage": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper-parameters.owl", + "id": "lov.lswpm", + "name": "ELSEWeb Lifemapper Parameters Ontology", + "prefix": "lswpm", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper-parameters.owl#$1" + }, + "lov.ludo": { + "authority": "lov", + "description": "Ludo is an ontology created to enable the description and representation of Serious Games that use structured data published on the Web through the Linked Data as a knowledge base. From the representation of the players\u2019 profile and their contextual information whithin the game, it is possible to generate personalized recommendations of related educational resources in order to stimulate the learning process while playing.", + "homepage": "http://ns.inria.fr/ludo", + "id": "lov.ludo", + "name": "Ludo Ontology", + "prefix": "ludo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ns.inria.fr/ludo$1" + }, + "lov.ludo-gm": { + "authority": "lov", + "description": "Given the increasing amount of structured data published on the Web, many possibilities are open for creating new types of games that use resources from the Web of Data. In particular, if we consider the subcategory of Serious Games in which the object of the game is to educate the user through the interactive discovery of real-life concepts (associated to Semantic Web resources), the inclusion of a semantic representation of the user profile and his contextual information becomes an important element to recommend the user more accurate concepts. Ludo is an ontology that allows the creation of Serious Games with those characteristics.", + "homepage": "http://ns.inria.fr/ludo/v1/gamemodel#", + "id": "lov.ludo-gm", + "name": "Ludo Game Model Ontology", + "prefix": "ludo-gm", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ns.inria.fr/ludo/v1/gamemodel#$1" + }, + "lov.ludo-gp": { + "authority": "lov", + "description": "Given the increasing amount of structured data published on the Web, many possibilities are open for creating new types of games that use resources from the Web of Data. In particular, if we consider the subcategory of Serious Games in which the object of the game is to educate the user through the interactive discovery of real-life concepts (associated to Semantic Web resources), the inclusion of a semantic representation of the user profile and his contextual information becomes an important element to recommend the user more accurate concepts. Ludo is an ontology that allows the creation of Serious Games with those characteristics.", + "homepage": "http://ns.inria.fr/ludo/v1/gamepresentation#", + "id": "lov.ludo-gp", + "name": "Ludo - Game Presentation", + "prefix": "ludo-gp", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ns.inria.fr/ludo/v1/gamepresentation#$1" + }, + "lov.ludo-vc": { + "authority": "lov", + "description": "Given the increasing amount of structured data published on the Web, many possibilities are open for creating new types of games that use resources from the Web of Data. In particular, if we consider the subcategory of Serious Games in which the object of the game is to educate the user through the interactive discovery of real-life concepts (associated to Semantic Web resources), the inclusion of a semantic representation of the user profile and his contextual information becomes an important element to recommend the user more accurate concepts. Ludo is an ontology that allows the creation of Serious Games with those characteristics.", + "homepage": "http://ns.inria.fr/ludo/v1/virtualcontext#", + "id": "lov.ludo-vc", + "name": "Ludo - Virtual Context", + "prefix": "ludo-vc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ns.inria.fr/ludo/v1/virtualcontext#$1" + }, + "lov.ludo-xapi": { + "authority": "lov", + "description": "This is an OWL formalization of the statements defined in the Experience API (xAPI) specification. It is a module of the LUDO ontology.", + "homepage": "http://ns.inria.fr/ludo/v1/xapi", + "id": "lov.ludo-xapi", + "name": "Experience API (xAPI)", + "prefix": "ludo-xapi", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://ns.inria.fr/ludo/v1/xapi#$1" + }, + "lov.lv": { + "authority": "lov", + "description": "Under this name space new properties and classes needed for the lobid.org service are defined . Already existing properties and classes which are (re)used in lobid.org aren't documented here.", + "homepage": "http://purl.org/lobid/lv", + "id": "lov.lv", + "name": "lobid vocab", + "prefix": "lv", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/lobid/lv#$1" + }, + "lov.lvont": { + "authority": "lov", + "description": "An ontology for natural language terms description, including scripts, languages and meanings. The Lexvo.org ontology is still under development and may not be able to address all needs. Please also consider using the Lingvoj Ontology and the GOLD ontology, whereever appropriate.", + "homepage": "http://lexvo.org/ontology", + "id": "lov.lvont", + "name": "Lexvo.org Ontology", + "prefix": "lvont", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://lexvo.org/ontology#$1" + }, + "lov.lyou": { + "authority": "lov", + "description": "Vocabulary for describing common webpages provided by an organisation", + "homepage": "http://purl.org/linkingyou/", + "id": "lov.lyou", + "name": "Linking-you vocabulary", + "prefix": "lyou", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/linkingyou/$1" + }, + "lov.m3lite": { + "authority": "lov", + "description": "M3 lite taxonomy is designed for the FIESTA-IOT H2020 EU project. We refactor, clean and simplify the M3 ontology designed by Eurecom (Amelie Gyrard). M3 ontology lite is currently aligned with the quantity taxonomy used by several testbeds: SmartSantander (Spain), University of Surrey (United Kingdom), KETI (Korea) and Com4Innov (France).", + "homepage": "http://purl.org/iot/vocab/m3-lite#", + "id": "lov.m3lite", + "name": "The Machine-to-Machine Measurement (M3) Lite Ontology", + "prefix": "m3lite", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://purl.org/iot/vocab/m3-lite#$1" + }, + "lov.m4i": { + "authority": "lov", + "description": "Metadata4Ing defines classes and properties or reuses such classes and properties from other ontologies to describe research processes and research data management in NFDI4Ing. \nNew concepts and properties are located in the namespace of Metadata4Ing.\nMetadata4Ing does not import complete ontologies for the sake of relevance, readability, understandability and usability by and for engineers.\nInstead, it tries to make re-use of existing identifiers for classes and properties by re-using all or a relevant subset of the axioms from the original ontology.\nThese statements have been extracted in different ways, e.g. by using Prot\u00e9g\u00e9 tools importing an ontology and copying axioms of relevant items to Metadata4Ing or by download from data services or raw files of ontologies and manual copypasting.\nIn some cases there was a need to extend or modify the original set of statements about an entity, e.g. because labels and definitions were expressed with a different owl:AnnotationProperty than the rest of Metadata4Ing, or because a skos:preflabel or a skos:definition in any of the languages we would like to support was missing.\nAny editorial changes on elements from external ontologies are declared in Metadata4Ing by an annotation with skos:editorialNote at item-level.\nTo get the original set of statements we encourage to visit the original namespace of the respective item.\nMetadata4Ing reuses elements from the following ontologies:\n- BIBO = Bibliographic Ontology \n- BIRO = Bibliographic Reference Ontology \n- DCAT = Data Catalog \n- DCTERMS = Dublin Core Terms \n- FOAF = Friend of a Friend \n- OWL = Web Ontology Language \n- PROV = Provenance Namespace \n- QUDT = Quantities, Units, Dimensions and Types \n- RDF = Resource Description Framework \n- RDFS = RDF Schema \n- SCHEMA = schema.org \n- SKOS = Simple Knowledge Organization System \n- SSN = Semantic Sensor Network Ontology \n- VANN = Vocabulary for Annotating vocabulary descriptions \n- XSD = XML Schema Definition \n- EMMO = European Materials and Modelling Ontology \n- BFO = Basic Formal Ontology \n- RO = Relation Ontology \n- PIMS-II = PIMS Interoperability Infrastructure \n- D-SI = Digital System of Units", + "homepage": "http://w3id.org/nfdi4ing/metadata4ing#", + "id": "lov.m4i", + "name": "Metadata4Ing: An ontology for describing the generation of research data within a scientific activity.", + "prefix": "m4i", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "http://w3id.org/nfdi4ing/metadata4ing#$1" + }, + "lov.ma-ont": { + "authority": "lov", + "description": "The Ontology for Media Resources 1.0 describes a core vocabulary of properties and a set of mappings between different metadata formats of media resources hat describe media resources published on the Web (as opposed to local archives, museums, or other non-web related and non-shared collections of media resources).", + "homepage": "http://www.w3.org/ns/ma-ont", + "id": "lov.ma-ont", + "name": "Ontology for Media Resources", + "prefix": "ma-ont", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/ma-ont#$1" + }, + "lov.mads": { + "authority": "lov", + "description": "MADS/RDF (Metadata Authority Description Schema in RDF) is a knowledge organization system (KOS) designed for use with controlled values for names (personal, corporate, geographic, etc.), thesauri, taxonomies, subject heading systems, and other controlled value lists", + "homepage": "http://www.loc.gov/mads/rdf/v1", + "id": "lov.mads", + "name": "Metadata Authority Description Schema", + "prefix": "mads", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.loc.gov/mads/rdf/v1#$1" + }, + "lov.marl": { + "authority": "lov", + "description": "Marl is a standardised data schema designed to annotate and describe subjective opinions expressed on the web or in particular Information Systems.", + "homepage": "http://www.gsi.dit.upm.es/ontologies/marl/ns", + "id": "lov.marl", + "name": "Marl Ontology Specification", + "prefix": "marl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.gsi.dit.upm.es/ontologies/marl/ns#$1" + }, + "lov.maso": { + "authority": "lov", + "description": "Ontologie pour le domaine de la s\u00e9curit\u00e9: application aux agents mobiles", + "homepage": "http://securitytoolbox.appspot.com/MASO", + "id": "lov.maso", + "name": "S\u00e9curit\u00e9 Agents Mobiles", + "prefix": "maso", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://securitytoolbox.appspot.com/MASO#$1" + }, + "lov.md": { + "authority": "lov", + "description": "An OWL representation of parts of the Geographic Metadata model described in ISO 19115:2003 with Corrigendum 2006 - MD Package.", + "homepage": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/metadata", + "id": "lov.md", + "name": "OWL representation of ISO 19115", + "prefix": "md", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19115/2003/metadata#$1" + }, + "lov.mdi": { + "authority": "lov", + "description": "An RDF vocabulary to describe and facilitate the usage of a Multidimensional Interface.", + "homepage": "https://w3id.org/multidimensional-interface/ontology", + "id": "lov.mdi", + "name": "RDF vocabulary to describe a Multidimensional Interface.", + "prefix": "mdi", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/multidimensional-interface/ontology#$1" + }, + "lov.mdo": { + "authority": "lov", + "description": "This is the Materials Design Ontology.", + "homepage": "https://w3id.org/mdo/full/", + "id": "lov.mdo", + "name": "Materials Design Ontology - Full", + "prefix": "mdo", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/mdo/full/$1" + }, + "lov.mdo-calc": { + "authority": "lov", + "description": "This is the calculation module of Materials Design Ontology.", + "homepage": "https://w3id.org/mdo/calculation/", + "id": "lov.mdo-calc", + "name": "Materials Design Ontology - Calculation Module", + "prefix": "mdo-calc", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/mdo/calculation/$1" + }, + "lov.mdo-struc": { + "authority": "lov", + "description": "This is the structure module in Materials Design Ontology.", + "homepage": "https://w3id.org/mdo/structure/", + "id": "lov.mdo-struc", + "name": "Materials Design Ontology - Structure Module", + "prefix": "mdo-struc", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/mdo/structure/$1" + }, + "lov.mdoprov": { + "authority": "lov", + "description": "This is the provenance module of Materials Design Ontology.", + "homepage": "https://w3id.org/mdo/provenance/", + "id": "lov.mdoprov", + "name": "Materials Design Ontology - Provenance Module", + "prefix": "mdoprov", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/mdo/provenance/$1" + }, + "lov.mdr": { + "authority": "lov", + "description": "An application profile of DCAT combining it with other metadata vocabularies (e.g. VoID, DCTERMS, LIME)\n to meet requirements elicited in various use cases of the Semantic Web platform Semantic Turkey", + "homepage": "http://semanticturkey.uniroma2.it/ns/mdr", + "id": "lov.mdr", + "name": "The Semantic Turkey metadata registry ontology", + "prefix": "mdr", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://semanticturkey.uniroma2.it/ns/mdr#$1" + }, + "lov.meb": { + "authority": "lov", + "description": "This ontology provides the base elements required by myExperiment for content management, social networking and object annotation.", + "homepage": "http://rdf.myexperiment.org/ontologies/base/", + "id": "lov.meb", + "name": "The myExperiment Base Ontology", + "prefix": "meb", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "http://rdf.myexperiment.org/ontologies/base/$1" + }, + "lov.media": { + "authority": "lov", + "description": "In order to enable and encourage the sharing, distribution, syndication, and aggregation of media content, the authors propose the Media RDF vocabulary, an open standard for distributed media metadata.", + "homepage": "http://purl.org/media", + "id": "lov.media", + "name": "The Media RDF Vocabulary", + "prefix": "media", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/media#$1" + }, + "lov.medred": { + "authority": "lov", + "description": "This ontology aims to model generic Medical Data Acquisition Instruments, which can be interoperable across different clinical data management systems. The ontology is developed in the context of the MedRed project (https://www.hevs.ch/en/rad-institutes/institute-of-information-systems/projects/medical-research-data-acquisition-platform-14092)", + "homepage": "http://w3id.org/medred/medred#", + "id": "lov.medred", + "name": "MedRed ontology: clinical data acquisition model", + "prefix": "medred", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences", + "health sciences" + ], + "uri_format": "http://w3id.org/medred/medred#$1" + }, + "lov.mexalgo": { + "authority": "lov", + "description": "MEX is an RDF vocabulary designed to facilitate interoperability between published machine learning experiments results on the Web. The mex-algo layer represents the algorithm information existing into a basic machine learning experiment.", + "homepage": "http://mex.aksw.org/mex-algo", + "id": "lov.mexalgo", + "name": "MEX Algorithm Ontology", + "prefix": "mexalgo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://mex.aksw.org/mex-algo#$1" + }, + "lov.mexcore": { + "authority": "lov", + "description": "MEX e um vocabulario modelado para facilitar a interoperabilidade entre resultados de experimentos de aprendizado de maquinas publicados na Web. A camada mex-core representa a principal informacao obtida de um experimento de aprendizado de maquina.", + "homepage": "http://mex.aksw.org/mex-core", + "id": "lov.mexcore", + "name": "MEX Core Vocabulary", + "prefix": "mexcore", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://mex.aksw.org/mex-core#$1" + }, + "lov.mexperf": { + "authority": "lov", + "description": "MEX e um vocabulario modelado para facilitar a interoperabilidade entre resultados de experimentos de aprendizado de maquinas publicados na Web. A camada mex-perf e o 3o. nivel na abordagem MEX para representar performances de algoritmos de aprendizado de maquinas", + "homepage": "http://mex.aksw.org/mex-perf", + "id": "lov.mexperf", + "name": "MEX Performance Ontology", + "prefix": "mexperf", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://mex.aksw.org/mex-perf#$1" + }, + "lov.mil": { + "authority": "lov", + "description": "The Muninn Military Ontology marks up information about military people, organizations and events.", + "homepage": "http://rdf.muninn-project.org/ontologies/military", + "id": "lov.mil", + "name": "Military Ontology Specification", + "prefix": "mil", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://rdf.muninn-project.org/ontologies/military#$1" + }, + "lov.mls": { + "authority": "lov", + "description": "ML-Schema is a collaborative, community effort with a mission to develop, maintain, and promote standard schemas for data mining and machine learning algorithms, datasets, and experiments", + "homepage": "http://www.w3.org/ns/mls", + "id": "lov.mls", + "name": "Machine Learning Schema", + "prefix": "mls", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/mls#$1" + }, + "lov.mo": { + "authority": "lov", + "description": "The Music Ontology Specification provides main concepts and properties fo describing music (i.e. artists, albums and tracks) on the Semantic Web", + "homepage": "http://purl.org/ontology/mo/", + "id": "lov.mo", + "name": "Music Ontology", + "prefix": "mo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/mo/$1" + }, + "lov.moac": { + "authority": "lov", + "description": "MOAC, the Management of a Crisis Vocabulary, is a lightweight vocabulary aiming to provide terms to enable practitioners to relate different \"things\" in crisis management activities together as Linked Data. The initial MOAC terms originated from the Inter Agency Standing Committee (IASC), Emergency Shelter Cluster in Haiti, UNOCHA 3W Who What Where Contact Database", + "homepage": "http://www.observedchange.com/moac/ns#", + "id": "lov.moac", + "name": "Management of a Crisis Vocabulary", + "prefix": "moac", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://observedchange.com/moac/ns#$1" + }, + "lov.moat": { + "authority": "lov", + "description": "An ontology that let users define relationships between Tag objects and URIs of Semantic Web resources", + "homepage": "http://moat-project.org/ns#", + "id": "lov.moat", + "name": "Meaning of a Tag Ontology", + "prefix": "moat", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://moat-project.org/ns#$1" + }, + "lov.mod": { + "authority": "lov", + "description": "This specification describes MOD, a metadata vocabulary to describe and publish ontologies", + "homepage": "http://www.isibang.ac.in/ns/mod", + "id": "lov.mod", + "name": "MOD: Metadata for Ontology Description and publication", + "prefix": "mod", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.isibang.ac.in/ns/mod#$1" + }, + "lov.modsci": { + "authority": "lov", + "description": "ModSci is a reference ontology for modelling different types of modern sciences and related entities, such as scientific discoveries, renowned scientists, instruments, phenomena ... etc.", + "homepage": "https://w3id.org/skgo/modsci#", + "id": "lov.modsci", + "name": "ModSci, Modern Science Ontology.", + "prefix": "modsci", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "https://w3id.org/skgo/modsci#$1" + }, + "lov.mrel": { + "authority": "lov", + "description": "MARC relators are defined as both RDF properties and SKOS concepts", + "homepage": "http://id.loc.gov/vocabulary/relators", + "id": "lov.mrel", + "name": "MARC Code List for Relators", + "prefix": "mrel", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://id.loc.gov/vocabulary/relators/$1" + }, + "lov.msm": { + "authority": "lov", + "description": "A simple RDF(S) ontology able to capture (part of) the semantics of both Web services and Web APIs", + "homepage": "http://iserve.kmi.open.ac.uk/ns/msm", + "id": "lov.msm", + "name": "Minimal Service Model", + "prefix": "msm", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://iserve.kmi.open.ac.uk/ns/msm#$1" + }, + "lov.msr": { + "authority": "lov", + "description": "The Measurement Ontology is an ontology in which measurements may be rendered", + "homepage": "http://www.telegraphis.net/ontology/measurement/measurement#", + "id": "lov.msr", + "name": "Measurement Ontology", + "prefix": "msr", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.telegraphis.net/ontology/measurement/measurement#$1" + }, + "lov.mtlo": { + "authority": "lov", + "description": "MarineTLO is a top-level ontology for the marine domain (also applicable to the terrestrial domain).", + "homepage": "http://www.ics.forth.gr/isl/MarineTLO/v4/marinetlo.owl", + "id": "lov.mtlo", + "name": "MarineTLO Ontology", + "prefix": "mtlo", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://www.ics.forth.gr/isl/MarineTLO/v4/marinetlo.owl#$1" + }, + "lov.munc": { + "authority": "lov", + "description": "An OWL vocabulary for describing uncertainty metadata.", + "homepage": "http://ns.inria.fr/munc/", + "id": "lov.munc", + "name": "Meta-Uncertainty", + "prefix": "munc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ns.inria.fr/munc#$1" + }, + "lov.mus": { + "authority": "lov", + "description": "DOREMUS is an extension of the FRBRoo model for describing the music.", + "homepage": "http://data.doremus.org/ontology#", + "id": "lov.mus", + "name": "DOREMUS is an extension of the FRBRoo model for describing the music.", + "prefix": "mus", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://data.doremus.org/ontology#$1" + }, + "lov.music": { + "authority": "lov", + "description": "A vocabulary, or music ontology, to describe classical music and performances. Classes (categories) for musical works, events, instruments and performers, as well as related properties are defined. Make sure to distinguish musical works (e.g. Opera) from performance events (Opera_Event), or works (String_Quartette) from performer (StringQuartetEnsemble in this vocab), whose natural language terms are used interchangeblly. The present version experiments more precise model to describe a musical work, its representations (performances, scores, etc) and a musical event to present a representation (a concert). Includes 30 keys as individuals.", + "homepage": "http://www.kanzaki.com/ns/music", + "id": "lov.music", + "name": "Music Vocabulary", + "prefix": "music", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.kanzaki.com/ns/music#$1" + }, + "lov.muto": { + "authority": "lov", + "description": "The Modular and Unified Tagging Ontology (MUTO) is an ontology for tagging and folksonomies. It is based on a thorough review of earlier tagging ontologies and unifies core concepts in one consistent schema. It supports different forms of tagging, such as common, semantic, group, private, and automatic tagging, and is easily extensible.", + "homepage": "http://purl.org/muto/core", + "id": "lov.muto", + "name": "Modular Unified Tagging Ontology (MUTO)", + "prefix": "muto", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/muto/core#$1" + }, + "lov.mv": { + "authority": "lov", + "description": "Our goal is to significantly improve the data mobility between all stakeholders by providing a standardized vocabulary using Semantic Web technologies and ontologies. For the open vocabulary covering various mobility aspects we use RDF (Resource Description Framework) - a recommended specification of the World Wide Web Consortium (W3C) and the so-called lingua franca for the integration of data and web. We invite everyone who is interested to join our MobiVoc initiative and to participate in the development of the Open Mobility Vocabulary.", + "homepage": "http://schema.mobivoc.org/", + "id": "lov.mv", + "name": "MobiVoc: Open Mobility Vocabulary", + "prefix": "mv", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://schema.mobivoc.org/$1" + }, + "lov.mvco": { + "authority": "lov", + "description": "The Media Value Chain Ontology (MVCO) is an ontology for formalizing the representation of the Media Value Chain. It couples naturally with the MPEG-21 multimedia framework, and its standardization as Part 19 of this ISO/IEC standard is underway (at the editing time of this document).", + "homepage": "http://purl.oclc.org/NET/mvco.owl", + "id": "lov.mvco", + "name": "Media Value Chain Ontology", + "prefix": "mvco", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.oclc.org/NET/mvco.owl#$1" + }, + "lov.nao": { + "authority": "lov", + "description": "The NEPOMUK Annotation Ontology is an ontology for annotation, providing vocabulary which is commonly required to annotate resources on the semantic desktop.", + "homepage": "http://www.semanticdesktop.org/ontologies/2007/08/15/nao", + "id": "lov.nao", + "name": "NEPOMUK Annotation Ontology", + "prefix": "nao", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.semanticdesktop.org/ontologies/2007/08/15/nao#$1" + }, + "lov.nas": { + "authority": "lov", + "description": "Defines concepts related to the structure of the US National Airspace System (NAS)", + "homepage": "https://data.nasa.gov/ontologies/atmonto/NAS#", + "id": "lov.nas", + "name": "US National Airspace System (NAS) vocabulary", + "prefix": "nas", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://data.nasa.gov/ontologies/atmonto/NAS#$1" + }, + "lov.ncal": { + "authority": "lov", + "description": "The NEPOMUK Calendaring Ontology intends to provide vocabulary for describing calendaring data (events, tasks, journal entries) which is an important part of the body of information usually stored on a desktop. It is an adaptation of the ICALTZD ontology created by the W3C RDF Calendar Task Force of the Semantic Web Interest Group in the Semantic Web Activity.", + "homepage": "http://www.semanticdesktop.org/ontologies/2007/04/02/ncal", + "id": "lov.ncal", + "name": "NEPOMUK Calendar Ontology", + "prefix": "ncal", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.semanticdesktop.org/ontologies/2007/04/02/ncal#$1" + }, + "lov.nco": { + "authority": "lov", + "description": "NEPOMUK Contact Ontology describes contact information, common in many places on the desktop. It evolved from the VCARD specification (RFC 2426) and has been inspired by the Vcard Ontology by Renato Ianella. The scope of NCO is much broader though. This document gives an overview of the classes, properties and intended use cases of the NCO ontology.", + "homepage": "http://www.semanticdesktop.org/ontologies/2007/03/22/nco", + "id": "lov.nco", + "name": "NEPOMUK Contact Ontology", + "prefix": "nco", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.semanticdesktop.org/ontologies/2007/03/22/nco#$1" + }, + "lov.nen2660": { + "authority": "lov", + "description": "Ontology which is a normative part of the Dutch NEN 2660-2 standard", + "homepage": "https://w3id.org/nen2660/", + "id": "lov.nen2660", + "name": "NEN 2660-2:2022 'Rules for information modelling of the built environment - Part 2: Practical configuration, extension and implementation of NEN 2660-1''", + "prefix": "nen2660", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/nen2660/def#$1" + }, + "lov.nfo": { + "authority": "lov", + "description": "Part of Nepomuk Information Element Ontology Framework", + "homepage": "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo", + "id": "lov.nfo", + "name": "NEPOMUK File Ontology", + "prefix": "nfo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#$1" + }, + "lov.ngeo": { + "authority": "lov", + "description": "A vocabulary for specifying geographical regions in RDF", + "homepage": "http://geovocab.org/geometry", + "id": "lov.ngeo", + "name": "NeoGeo Geometry Ontology", + "prefix": "ngeo", + "source": "lov.linkeddata.es", + "subjects": [ + "mathematics" + ], + "uri_format": "http://geovocab.org/geometry#$1" + }, + "lov.nie": { + "authority": "lov", + "description": "The Core Ontology of the NEPOMUK suite defines basic elements such as Data Object, Information Element ...", + "homepage": "http://www.semanticdesktop.org/ontologies/2007/01/19/nie", + "id": "lov.nie", + "name": "NEPOMUK Information Element Core Ontology", + "prefix": "nie", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#$1" + }, + "lov.nif": { + "authority": "lov", + "description": "The NLP Interchange Format (NIF) is an RDF/OWL-based format that aims to achieve interoperability between Natural Language Processing (NLP) tools, language resources and annotations.", + "homepage": "http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#", + "id": "lov.nif", + "name": "NLP Interchange Format", + "prefix": "nif", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#$1" + }, + "lov.nlon": { + "authority": "lov", + "description": "This specification describes National Library of Korea Ontology vocaburaries using W3C's RDF and OWL technology.", + "homepage": "http://lod.nl.go.kr/ontology/", + "id": "lov.nlon", + "name": "National Library of Korea Ontology", + "prefix": "nlon", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://lod.nl.go.kr/ontology/$1" + }, + "lov.nno": { + "authority": "lov", + "description": "This is the Neural Network Ontology. Designed by the AIFB (http://www.aifb.kit.edu/web/Web_Science)", + "homepage": "https://w3id.org/nno/ontology", + "id": "lov.nno", + "name": "The Neural Network Ontology", + "prefix": "nno", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/nno/ontology#$1" + }, + "lov.noria": { + "authority": "lov", + "description": "The NORIA-O project is a data model for IT networks, events and operations information.\nThe ontology is developed using web technologies (e.g. RDF, OWL, SKOS) and is intended as a structure for realizing an IT Service Management (ITSM) Knowledge Graph (KG) for Anomaly Detection (AD) and Risk Management applications.\nThe model has been developed in collaboration with operational teams, and in connection with third parties linked vocabularies.\n\nAlignment with third parties vocabularies is implemented on a per class or per property basis when relevant (e.g. with `rdfs:subClassOf`, `owl:equivalentClass`).\nDirections for direct instanciation of these vocabularies are provided for cases where implementing a class/property alignment is redundant.\nAlignment holds for the following vocabulary releases:\n- [BBO](https://hal.archives-ouvertes.fr/hal-02365012/) 1.0.0\n- [BOT](https://w3id.org/bot/) 0.3.2\n- [DevOps-Infra](https://oeg-upm.github.io/devops-infra/) 1.0.0\n- [FOLIO](https://github.com/IBCNServices/Folio-Ontology) 1.0.0\n- [ORG](https://www.w3.org/TR/vocab-org/) 0.8\n- [PEP](https://w3id.org/pep/) 1.1\n- [SEAS](https://w3id.org/seas/) 1.1\n- [SLOGERT](https://sepses.ifs.tuwien.ac.at/ns/log/index-en.html) 1.1.0\n- [UCO](https://github.com/ucoProject/uco) Release-0.8.0", + "homepage": "https://w3id.org/noria/ontology/", + "id": "lov.noria", + "name": "The NORIA Ontology", + "prefix": "noria", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://w3id.org/noria/ontology/$1" + }, + "lov.np": { + "authority": "lov", + "description": "The nanopub ontology", + "homepage": "http://www.nanopub.org/nschema", + "id": "lov.np", + "name": "Nano publication ontology", + "prefix": "np", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.nanopub.org/nschema#$1" + }, + "lov.npg": { + "authority": "lov", + "description": "The Core Ontology is a formal model providing definitions for the key concepts of interest to content publishing at Macmillan Science and Education.", + "homepage": "http://ns.nature.com/terms/", + "id": "lov.npg", + "name": "Nature.com Core Ontology", + "prefix": "npg", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ns.nature.com/terms/$1" + }, + "lov.nrl": { + "authority": "lov", + "description": "Designed on top of RDF, it addresses certain limitations on the part of RDF/S. In particular it includes support for Named Graphs", + "homepage": "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl", + "id": "lov.nrl", + "name": "NEPOMUK Representational Language", + "prefix": "nrl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#$1" + }, + "lov.nrv": { + "authority": "lov", + "description": "An OWL vocabulary for describing normative requirements.", + "homepage": "http://ns.inria.fr/nrv", + "id": "lov.nrv", + "name": "Normative Requirements Vocabulary", + "prefix": "nrv", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ns.inria.fr/nrv#$1" + }, + "lov.nsl": { + "authority": "lov", + "description": "The News Storyline Ontology is a generic model for describing and organising the stories news organisations tell. The ontology is intended to be flexible to support any given news or media publisher's approach to handling news stories. At the heart of the ontology, is the concept of Storyline.", + "homepage": "http://purl.org/ontology/storyline", + "id": "lov.nsl", + "name": "A News Storyline Ontology", + "prefix": "nsl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/storyline/$1" + }, + "lov.ntag": { + "authority": "lov", + "description": "NiceTag Ontology is an ontology which describes as generally as possible tags or rather tag actions understood as a speech acts occurring on the Web", + "homepage": "http://ns.inria.fr/nicetag/2010/09/09/voc", + "id": "lov.ntag", + "name": "Nice Tag Ontology", + "prefix": "ntag", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ns.inria.fr/nicetag/2010/09/09/voc#$1" + }, + "lov.oa": { + "authority": "lov", + "description": "The Open Annotation Core Data Model specifies an interoperable framework for creating associations between related resources, annotations, using a methodology that conforms to the Architecture of the World Wide Web. This ontology is a non-normative OWL formalization of the textual OA specification at http://www.openannotation.org/spec/core/20130208/index.html", + "homepage": "http://www.w3.org/ns/oa#", + "id": "lov.oa", + "name": "Open Annotation Data Model", + "prefix": "oa", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/oa#$1" + }, + "lov.oad": { + "authority": "lov", + "description": "An ontology for the description of archival data (OAD, \u201cOntology of Archival Description\u201d) using the Web Ontology Language (OWL). This ontology represents the classes and properties needed to expose the archival resources as linked data.", + "homepage": "http://culturalis.org/oad#", + "id": "lov.oad", + "name": "Ontology for archival description", + "prefix": "oad", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://culturalis.org/oad#$1" + }, + "lov.oae": { + "authority": "lov", + "description": "The Open NEE Model defines an extension of the Open Annotation Data Model (http://www.openannotation.org/spec/core) that allows describing in RDF the result of a Named Entity Extraction (NEE) process, enabling thereby an application to run advanced (SPARQL) queries over the annotated data. The model also exploits the Open NEE Configuration Model (http://www.ics.forth.gr/isl/oncm) for relating the output of a NEE process with an applied configuration (serving provenance information to the output of the entire NEE process).", + "homepage": "http://www.ics.forth.gr/isl/oae/core", + "id": "lov.oae", + "name": "Open NEE Model", + "prefix": "oae", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ics.forth.gr/isl/oae/core#$1" + }, + "lov.oan": { + "authority": "lov", + "description": "Description of French National Assembly", + "homepage": "http://data.lirmm.fr/ontologies/oan", + "id": "lov.oan", + "name": "Ontologie de l'Assembl\u00e9e Nationale", + "prefix": "oan", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences" + ], + "uri_format": "http://data.lirmm.fr/ontologies/oan/$1" + }, + "lov.obo": { + "authority": "lov", + "description": "The Ontology for Biomedical Investigations (OBI) is build in a collaborative, international effort and will serve as a resource for annotating biomedical investigations, including the study design, protocols and instrumentation used, the data generated and the types of analysis performed on the data. This ontology arose from the Functional Genomics Investigation Ontology (FuGO) and will contain both terms that are common to all biomedical investigations, including functional genomics investigations and those that are more domain specific.", + "homepage": "http://purl.obolibrary.org/obo/obi.owl", + "id": "lov.obo", + "name": "Ontology for Biomedical Investigation", + "prefix": "obo", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences", + "health sciences" + ], + "uri_format": "http://purl.obolibrary.org/obo/$1" + }, + "lov.obsm": { + "authority": "lov", + "description": "This is a taxonomy of some observation methods. It is incomplete", + "homepage": "http://rdf.geospecies.org/methods/observationMethod.rdf", + "id": "lov.obsm", + "name": "Observation Method Ontology", + "prefix": "obsm", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://rdf.geospecies.org/methods/observationMethod#$1" + }, + "lov.obws": { + "authority": "lov", + "description": "Ontology including the content ontology design pattern for modelling objects with states.", + "homepage": "http://delicias.dia.fi.upm.es/ontologies/ObjectWithStates.owl", + "id": "lov.obws", + "name": "Object with states ontology", + "prefix": "obws", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://delicias.dia.fi.upm.es/ontologies/ObjectWithStates.owl#$1" + }, + "lov.oc": { + "authority": "lov", + "description": "OntoMedia (Ontology for Media) has been designed to describe the interactions occurring in multimedia.", + "homepage": "http://contextus.net/ontology/ontomedia/core/expression#", + "id": "lov.oc", + "name": "OntoMedia Core", + "prefix": "oc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://contextus.net/ontology/ontomedia/core/expression#$1" + }, + "lov.ocd": { + "authority": "lov", + "description": "L'ontologia Camera dei deputati \u00e8 stata creata per descrivere tutte le risorse (persone, eventi, documenti) sia storiche che correnti, connesse alla Camera e alla sua attivit\u00e0", + "homepage": "http://dati.camera.it/ocd/", + "id": "lov.ocd", + "name": "Ontologia Camera dei Deputati", + "prefix": "ocd", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences" + ], + "uri_format": "http://dati.camera.it/ocd/$1" + }, + "lov.ocds": { + "authority": "lov", + "description": "The OCDS is a data model that aims at structuring and publishing contracting data (tenders, procurements, awards, transactions, etc.). It got international adoption and is one of the leading models in this domain.", + "homepage": "http://purl.org/onto-ocds/ocds", + "id": "lov.ocds", + "name": "Schema for an Open Contracting Release (OCDS)", + "prefix": "ocds", + "source": "lov.linkeddata.es", + "subjects": [ + "law" + ], + "uri_format": "http://purl.org/onto-ocds/ocds#$1" + }, + "lov.odapp": { + "authority": "lov", + "description": "This is an early version of a vocabulary to describe \"open data applications\" i.e. applications built using open data. Examples of such applications are listed on government open data catalogues and participant on open data competitions.", + "homepage": "http://vocab.deri.ie/odapp", + "id": "lov.odapp", + "name": "Open Data Applications Vocabulary", + "prefix": "odapp", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://vocab.deri.ie/odapp#$1" + }, + "lov.odapps": { + "authority": "lov", + "description": "odapps is an RDF vocabulary defined to facilitate the description of Open-Data-based ideas and applications published on the Web.", + "homepage": "http://semweb.mmlab.be/ns/odapps", + "id": "lov.odapps", + "name": "The vocabulary for (L)OD ideas and applications", + "prefix": "odapps", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://semweb.mmlab.be/ns/odapps#$1" + }, + "lov.odpart": { + "authority": "lov", + "description": "The basic participation pattern, without temporal indexing. It clones equivalent elements from DOLCE-UltraLite.", + "homepage": "http://www.ontologydesignpatterns.org/cp/owl/participation.owl", + "id": "lov.odpart", + "name": "Ontology Design Pattern Participation", + "prefix": "odpart", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ontologydesignpatterns.org/cp/owl/participation.owl#$1" + }, + "lov.odrl": { + "authority": "lov", + "description": "The Open Digital Rights Language (ODRL) provides flexible and interoperable mechanisms to support transparent and innovative use of digital content in publishing, distribution, and consumption of of digital media across all sectors and communities. The ODRL Policy model is broad enough to support traditional rights expressions for commercial transaction, open access expressions for publicly distributed content, and privacy expressions for social media.", + "homepage": "http://www.w3.org/ns/odrl/2/", + "id": "lov.odrl", + "name": "The Open Digital Rights Language (ODRL) Ontology", + "prefix": "odrl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/odrl/2/$1" + }, + "lov.odrs": { + "authority": "lov", + "description": "A vocabulary that supports the publication of Open Data by providing the means to capture machine-readable \"rights statements\", e.g. the licensing information, copyright notices and attribution requirements that are associated with the publication and re-use of a dataset.", + "homepage": "http://schema.theodi.org/odrs", + "id": "lov.odrs", + "name": "Open Data Rights Statement Vocabulary", + "prefix": "odrs", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://schema.theodi.org/odrs#$1" + }, + "lov.odv": { + "authority": "lov", + "description": "Extension of data cube for civil service junior posts", + "homepage": "http://reference.data.gov.uk/def/organogram", + "id": "lov.odv", + "name": "Organogram Data Vocabulary", + "prefix": "odv", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://reference.data.gov.uk/def/organogram/$1" + }, + "lov.oecc": { + "authority": "lov", + "description": "Creative Commons Ontology, extending RDF file at http://creativecommons.org/schema.rdf", + "homepage": "http://www.oegov.org/core/owl/cc", + "id": "lov.oecc", + "name": "Extended Creative Commons Ontology", + "prefix": "oecc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.oegov.org/core/owl/cc#$1" + }, + "lov.of": { + "authority": "lov", + "description": "Ontology for Open Fridge project", + "homepage": "http://owlrep.eu01.aws.af.cm/fridge", + "id": "lov.of", + "name": "Open Fridge vocabulary", + "prefix": "of", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://owlrep.eu01.aws.af.cm/fridge#$1" + }, + "lov.ofo": { + "authority": "lov", + "description": "The aim of the Occupant Feedback Ontology is to semantically describe passive and active occupant feedback and to enable integration of this feedback with linked building data.", + "homepage": "https://w3id.org/ofo#", + "id": "lov.ofo", + "name": "Occupant Feedback Ontology", + "prefix": "ofo", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://w3id.org/ofo#$1" + }, + "lov.ofrd": { + "authority": "lov", + "description": "Vocabulary to describe fridges and freezers", + "homepage": "http://purl.org/opdm/refrigerator#", + "id": "lov.ofrd", + "name": "Fridge and Freezer Vocabulary", + "prefix": "ofrd", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/opdm/refrigerator#$1" + }, + "lov.og": { + "authority": "lov", + "description": "The Open Graph protocol enables any web page to become a rich object in a social graph. For instance, this is used on Facebook to enable any web page to have the same functionality as a Facebook Page.", + "homepage": "http://ogp.me/ns", + "id": "lov.og", + "name": "Open Graph Protocol Vocabulary", + "prefix": "og", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://ogp.me/ns#$1" + }, + "lov.oh": { + "authority": "lov", + "description": "A vocabulary to describe opening hours using calendars (recommended: iCal, RDFCal or schema.org) published on the Web.", + "homepage": "http://semweb.mmlab.be/ns/oh", + "id": "lov.oh", + "name": "The Opening Hours vocabulary", + "prefix": "oh", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://semweb.mmlab.be/ns/oh#$1" + }, + "lov.olca": { + "authority": "lov", + "description": "A vocabulary defining annotations enabling loose coupling between classes and properties in ontologies. Those annotations define with some accuracy the expected use of properties, in particular across vocabularies, without the formal constraints entailed by the use of OWL or RDFS constructions", + "homepage": "https://w3id.org/vocab/olca", + "id": "lov.olca", + "name": "Ontology Loose Coupling Annotation", + "prefix": "olca", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/vocab/olca#$1" + }, + "lov.olo": { + "authority": "lov", + "description": "The Ordered List Ontology Specification provides basic concepts and properties for describing ordered lists as semantic graphs.", + "homepage": "http://purl.org/ontology/olo/core#", + "id": "lov.olo", + "name": "Ordered List Ontology", + "prefix": "olo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/olo/core#$1" + }, + "lov.om": { + "authority": "lov", + "description": "An OWL representation of the Observation Schema described in clause 6 of ISO 19156:2011 Geographic Information - Observations and Measurements", + "homepage": "http://def.seegrid.csiro.au/isotc211/iso19156/2011/observation", + "id": "lov.om", + "name": "ISO 19156 Observation Model", + "prefix": "om", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19156/2011/observation#$1" + }, + "lov.omg": { + "authority": "lov", + "description": "The Ontology for Managing Geometry (OMG) is an ontology for describing geometry descriptions of objects. It provides means to support the application of multiple geometry descriptions of the same object as well as the description of the geometry evolution over time. The OMG is based the concepts introduced in the Ontology for Property Management (OPM) ontology. \n\nThis ontology was created within the research project SCOPE, funded by the German Federal Ministry for Economic Affairs and Energy (BMWi).\n\nThe initial version of the ontology (v0.0.1) is documented in:\nWagner, Anna, Bonduel, Mathias, Pauwels, Pieter & R\u00fcppel, Uwe(2019). Relating Geometry Descroptions to its Derivatives on the Web. In Proceedings of the European Conference on Computing in Construction (EC3 2019). Chania, Greece.", + "homepage": "https://w3id.org/omg", + "id": "lov.omg", + "name": "OMG: Ontology for Managing Geometry", + "prefix": "omg", + "source": "lov.linkeddata.es", + "subjects": [ + "mathematics" + ], + "uri_format": "https://w3id.org/omg#$1" + }, + "lov.oml": { + "authority": "lov", + "description": "An OWL representation of the Observation Schema described in clauses 7-8 of ISO 19156:2011 Geographic Information - Observations and Measurements / OGC Abstract Specification - Topic 20.", + "homepage": "http://def.seegrid.csiro.au/ontology/om/om-lite", + "id": "lov.oml", + "name": "OWL for Observations", + "prefix": "oml", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://def.seegrid.csiro.au/ontology/om/om-lite#$1" + }, + "lov.omn": { + "authority": "lov", + "description": "This ontology defines the most abstract concepts and properties that are needed to semantically manage resource within federated infrastructures", + "homepage": "http://open-multinet.info/ontology/omn", + "id": "lov.omn", + "name": "Open-Multinet Upper Ontology", + "prefix": "omn", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://open-multinet.info/ontology/omn#$1" + }, + "lov.omnfed": { + "authority": "lov", + "description": "This ontology defines concepts related to federation of internet infrastructures.", + "homepage": "http://open-multinet.info/ontology/omn-federation", + "id": "lov.omnfed", + "name": "Open-Multinet Upper Federation Ontology", + "prefix": "omnfed", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://open-multinet.info/ontology/omn-federation#$1" + }, + "lov.omnlc": { + "authority": "lov", + "description": "This ontology defines generic concepts related to the life cycle of resource or service.", + "homepage": "http://open-multinet.info/ontology/omn-lifecycle", + "id": "lov.omnlc", + "name": "Open-Multinet Upper Lifecycle Ontology", + "prefix": "omnlc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://open-multinet.info/ontology/omn-lifecycle#$1" + }, + "lov.onc": { + "authority": "lov", + "description": "The Open NEE Configuration Model defines a Linked Data-based model for describing a configuration supported by a Named Entity Extraction (NEE) service. It is based on the model proposed in \"Configuring Named Entity Extraction through Real-Time Exploitation of Linked Data\" (http://dl.acm.org/citation.cfm?doid=2611040.2611085) for configuring such services, and allows a NEE service to describe and publish as Linked Data its entity mining capabilities, but also to be dynamically configured.", + "homepage": "http://www.ics.forth.gr/isl/oncm/core", + "id": "lov.onc", + "name": "Open NEE Configuration Model", + "prefix": "onc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ics.forth.gr/isl/oncm/core#$1" + }, + "lov.ont": { + "authority": "lov", + "description": "Vocabulary to define some annotation properties as subproperties of common Dublin Core terms", + "homepage": "http://purl.org/net/ns/ontology-annot", + "id": "lov.ont", + "name": "Ontology annotation DLiser vocabulary", + "prefix": "ont", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/net/ns/ontology-annot#$1" + }, + "lov.ontolex": { + "authority": "lov", + "description": "A model for the representation of lexical information relative to ontologies. Core module.", + "homepage": "http://www.w3.org/ns/lemon/ontolex", + "id": "lov.ontolex", + "name": "Lexicon Model for Ontologies - Core", + "prefix": "ontolex", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/lemon/ontolex#$1" + }, + "lov.ontopic": { + "authority": "lov", + "description": "An ontology of topics as used in thesauri, subject directories, etc.", + "homepage": "http://www.ontologydesignpatterns.org/ont/dul/ontopic.owl", + "id": "lov.ontopic", + "name": "Ontopic Ontology", + "prefix": "ontopic", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ontologydesignpatterns.org/ont/dul/ontopic.owl#$1" + }, + "lov.ontosec": { + "authority": "lov", + "description": "This ontology covers the domain of security in the field of mobile applications.", + "homepage": "http://www.semanticweb.org/ontologies/2008/11/OntologySecurity.owl", + "id": "lov.ontosec", + "name": "Ontology Security", + "prefix": "ontosec", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.semanticweb.org/ontologies/2008/11/OntologySecurity.owl#$1" + }, + "lov.ontouml": { + "authority": "lov", + "description": "A reference implementation of the OntoUML metamodel in OWL.", + "homepage": "https://w3id.org/ontouml", + "id": "lov.ontouml", + "name": "OntoUML Metamodel Vocabulary", + "prefix": "ontouml", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/ontouml#$1" + }, + "lov.onyx": { + "authority": "lov", + "description": "Onyx is a vovabulary designed designed to annotate and describe the emotions expressed by user-generated content on the web or in particular Information Systems.", + "homepage": "http://www.gsi.dit.upm.es/ontologies/onyx/ns", + "id": "lov.onyx", + "name": "Onyx Emotion Ontology", + "prefix": "onyx", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.gsi.dit.upm.es/ontologies/onyx/ns#$1" + }, + "lov.oo": { + "authority": "lov", + "description": "This vocabulary provides supplementary terms for organisations wishing to publish open data about themselves.", + "homepage": "http://purl.org/openorg/", + "id": "lov.oo", + "name": "Open Organisations", + "prefix": "oo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/openorg/$1" + }, + "lov.op": { + "authority": "lov", + "description": "A general purpose ontology for observable properties. The ontology supports description of both qualitative and quantitative properties. The allowed scale or units of measure may be specified. A property may be linked to substances-or-taxa and to features or realms, if they play a role in the definition.", + "homepage": "http://environment.data.gov.au/def/op", + "id": "lov.op", + "name": "Observable properties", + "prefix": "op", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://environment.data.gov.au/def/op#$1" + }, + "lov.open311": { + "authority": "lov", + "description": "Open 311 Ontology\n\nThis ontology generalizes the concepts that appear in 311 open data files published by several cities (Toronto, New York, Chicago, Vancouver) across North America. It provides a generis representation of 311 data that other cities can map their data onto and be used as a means of achieving interoperability.", + "homepage": "http://ontology.eil.utoronto.ca/open311.owl", + "id": "lov.open311", + "name": "Open 311 Ontology: An Ontology for publishing a city's non-emergency events.", + "prefix": "open311", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ontology.eil.utoronto.ca/open311#$1" + }, + "lov.opm": { + "authority": "lov", + "description": "The Ontology for Property Management (OPM) extends the concepts introduced in the Smart Energy Aware Systems (SEAS) Evaluations ontology.", + "homepage": "https://w3id.org/opm", + "id": "lov.opm", + "name": "OPM: Ontology for Property Management", + "prefix": "opm", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "https://w3id.org/opm#$1" + }, + "lov.opmo": { + "authority": "lov", + "description": "The Open Provenance Model is a model of provenance that is designed to meet the following requirements: (1) To allow provenance information to be exchanged between systems, by means of a compatibility layer based on a shared provenance model. (2) To allow developers to build and share tools that operate on such a provenance model. (3) To define provenance in a precise, technology-agnostic manner. (4) To support a digital representation of provenance for any 'thing', whether produced by computer systems or not. (5) To allow multiple levels of description to coexist. (6) To define a core set of rules that identify the valid inferences that can be made on provenance representation.", + "homepage": "http://openprovenance.org/model/opmo", + "id": "lov.opmo", + "name": "Open Provenance Model", + "prefix": "opmo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://openprovenance.org/model/opmo#$1" + }, + "lov.opmv": { + "authority": "lov", + "description": "OPMV, the Open Provenance Model Vocabulary, provides terms to enable practitioners of data publishing to publish their data responsibly.", + "homepage": "http://purl.org/net/opmv/ns#", + "id": "lov.opmv", + "name": "Open Provenance Model Vocabulary", + "prefix": "opmv", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/net/opmv/ns#$1" + }, + "lov.opmw": { + "authority": "lov", + "description": "OPMW is a OPMV profile to model the executions and definitions of scientific workflows.", + "homepage": "http://www.opmw.org/ontology/", + "id": "lov.opmw", + "name": "The OPMW Ontology", + "prefix": "opmw", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.opmw.org/ontology/$1" + }, + "lov.opo": { + "authority": "lov", + "description": "Ontology for representing Online Presence", + "homepage": "http://online-presence.net/opo/ns#", + "id": "lov.opo", + "name": "Online Presence Ontology", + "prefix": "opo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://online-presence.net/opo/ns#$1" + }, + "lov.opus": { + "authority": "lov", + "description": "This file specifies in RDF Schema format the classes and properties for SwetoDblp. These classes and properties are based on the internal LSDIS Library portal engine.", + "homepage": "http://lsdis.cs.uga.edu/projects/semdis/opus#", + "id": "lov.opus", + "name": "SwetoDblp Ontology of Computer Science Publications", + "prefix": "opus", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://lsdis.cs.uga.edu/projects/semdis/opus#$1" + }, + "lov.orca": { + "authority": "lov", + "description": "orca, the Ontology of Reasoning, Certainty and Attribution, is an ontology for characterizing the certainty of information, how it is known, and its source", + "homepage": "http://vocab.deri.ie/orca", + "id": "lov.orca", + "name": "orca, the Ontology of Reasoning, Certainty and Attribution", + "prefix": "orca", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://vocab.deri.ie/orca#$1" + }, + "lov.ore": { + "authority": "lov", + "description": "Open Archives Initiative Object Reuse and Exchange (OAI-ORE) defines standards for the description and exchange of aggregations of Web resources.", + "homepage": "http://www.openarchives.org/ore/terms/", + "id": "lov.ore", + "name": "The OAI ORE terms vocabulary", + "prefix": "ore", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://www.openarchives.org/ore/terms/$1" + }, + "lov.org": { + "authority": "lov", + "description": "Vocabulary for describing organizational structures, specializable to a broad variety of types of organization.", + "homepage": "http://www.w3.org/ns/org#", + "id": "lov.org", + "name": "Core organization ontology", + "prefix": "org", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/org#$1" + }, + "lov.orges": { + "authority": "lov", + "description": "Extensi\u00f3n de la ontolog\u00eda de Organizaciones para adecuarla al Directorio Com\u00fan de entidades p\u00fablicas en Espa\u00f1a.", + "homepage": "http://datos.gob.es/def/sector-publico/organizacion#", + "id": "lov.orges", + "name": "Ontology about Spanish public organizations", + "prefix": "orges", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences" + ], + "uri_format": "http://datos.gob.es/def/sector-publico/organizacion#$1" + }, + "lov.osadm": { + "authority": "lov", + "description": "An ontology describing the administrative and voting area geography of Great Britain", + "homepage": "http://data.ordnancesurvey.co.uk/ontology/admingeo/", + "id": "lov.osadm", + "name": "The administrative geography and civil voting area ontology", + "prefix": "osadm", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://data.ordnancesurvey.co.uk/ontology/admingeo/$1" + }, + "lov.osgeom": { + "authority": "lov", + "description": "A provisional small geometry vocabulary used by Ordnance Survey vocabularies and datasets. Likely to change when some standard way of representing geometries in RDF is agreed.", + "homepage": "http://data.ordnancesurvey.co.uk/ontology/geometry/", + "id": "lov.osgeom", + "name": "Ordnance Survey Geometry Ontology", + "prefix": "osgeom", + "source": "lov.linkeddata.es", + "subjects": [ + "mathematics" + ], + "uri_format": "http://data.ordnancesurvey.co.uk/ontology/geometry/$1" + }, + "lov.oslc": { + "authority": "lov", + "description": "The Open Services for Lifecycle Collaboration (OSLC) initiative is creating a family of web services specifications for products, services and other tools that support all phases of the software and product lifecycle. This OSLC Core Specification sets out the common features that every OSLC Service can be expected to support", + "homepage": "http://open-services.net/ns/core#", + "id": "lov.oslc", + "name": "OSLC Core Vocabulary", + "prefix": "oslc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://open-services.net/ns/core#$1" + }, + "lov.oslo": { + "authority": "lov", + "description": "This version of the OSLO Exchange Standard provides a minimum set of classes and properties for describing a natural person, i.e. the individual as opposed to any role they may play in society or the relationships they have to other people, organisations and property; all of which contribute significantly to the broader concept of identity. The vocabulary is closely integrated with the Person, Organisation and Location Vocabularies published by the W3C in the Gov Linked Data Project. The OSLO specification is the result of a public-private partnership initiated by V-ICT-OR, the Flemish Organization for ICT in Local Government.", + "homepage": "http://purl.org/oslo/ns/localgov", + "id": "lov.oslo", + "name": "OSLO Exchange Standard", + "prefix": "oslo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/oslo/ns/localgov#$1" + }, + "lov.osp": { + "authority": "lov", + "description": "Ontologie d'une organisation publique, plus particuli\u00e8rement d'un tribunal, d'une organisation internationale ou d'un pays.", + "homepage": "http://data.lirmm.fr/ontologies/osp", + "id": "lov.osp", + "name": "Ontologie du Service Public", + "prefix": "osp", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://data.lirmm.fr/ontologies/osp#$1" + }, + "lov.osr": { + "authority": "lov", + "description": "The OntoMedia Space representation denotes areas of landscape. Expands on the AKT location ontology", + "homepage": "http://contextus.net/ontology/ontomedia/core/space#", + "id": "lov.osr", + "name": "OntoMedia Space Representation", + "prefix": "osr", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://contextus.net/ontology/ontomedia/core/space#$1" + }, + "lov.osspr": { + "authority": "lov", + "description": "An ontology describing basic spatial relations.", + "homepage": "http://data.ordnancesurvey.co.uk/ontology/spatialrelations/", + "id": "lov.osspr", + "name": "Spatial Relations Ontology", + "prefix": "osspr", + "source": "lov.linkeddata.es", + "subjects": [ + "mathematics" + ], + "uri_format": "http://data.ordnancesurvey.co.uk/ontology/spatialrelations/$1" + }, + "lov.ostop": { + "authority": "lov", + "description": "The general purpose of this ontology is to provide a library of high level concepts that are used by the other modules within the whole OS Topographic ontology. The ontology also describes the relationships and instances common to more than one module.", + "homepage": "http://www.ordnancesurvey.co.uk/ontology/Topography/v0.1/Topography.owl", + "id": "lov.ostop", + "name": "Ordnance Survey Topography Ontology", + "prefix": "ostop", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://www.ordnancesurvey.co.uk/ontology/Topography/v0.1/Topography.owl#$1" + }, + "lov.otl": { + "authority": "lov", + "description": "This ontology provides the terms necessary to describe the status of traffic lights.", + "homepage": "https://w3id.org/opentrafficlights", + "id": "lov.otl", + "name": "The Open Traffic Lights ontology", + "prefix": "otl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/opentrafficlights#$1" + }, + "lov.oum": { + "authority": "lov", + "description": "The Ontology of units of Measure (OM) 2.0 models concepts and relations important to scientific research. It has a strong focus on units, quantities, measurements, and dimensions.", + "homepage": "http://www.ontology-of-units-of-measure.org/resource/om-2/", + "id": "lov.oum", + "name": "Ontology of units of Measure (OM)", + "prefix": "oum", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://www.ontology-of-units-of-measure.org/resource/om-2/$1" + }, + "lov.ov": { + "authority": "lov", + "description": "OpenVocab is a community maintained vocabulary intended for use on the Semantic Web, ideal for properties and classes that don't warrant the effort of creating or maintaining a full schema. OpenVocab allows anyone to create and modify vocabulary terms using their web browser.", + "homepage": "http://open.vocab.org/terms", + "id": "lov.ov", + "name": "OpenVocab", + "prefix": "ov", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://open.vocab.org/terms/$1" + }, + "lov.owl": { + "authority": "lov", + "description": "This ontology partially describes the built-in classes and properties that together form the basis of the RDF/XML syntax of OWL 2.", + "homepage": "http://www.w3.org/2002/07/owl", + "id": "lov.owl", + "name": "The OWL 2 Schema vocabulary", + "prefix": "owl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2002/07/owl#$1" + }, + "lov.p-plan": { + "authority": "lov", + "description": "The Ontology for Provenance and Plans (P-Plan) is an extension of the PROV-O ontology [PROV-O] created to represent the plans that guided the execution of scientific processes. P-Plan describes how the plans are composed and their correspondence to provenance records that describe the execution itself.", + "homepage": "http://purl.org/net/p-plan#", + "id": "lov.p-plan", + "name": "The P-PLAN Ontology", + "prefix": "p-plan", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/net/p-plan#$1" + }, + "lov.parl": { + "authority": "lov", + "description": "An ontology of UK Parliament", + "homepage": "http://reference.data.gov.uk/def/parliament", + "id": "lov.parl", + "name": "Parliament Ontology", + "prefix": "parl", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences" + ], + "uri_format": "http://reference.data.gov.uk/def/parliament/$1" + }, + "lov.part": { + "authority": "lov", + "description": "The participation ontology is a simple model for describing the roles that people play within groups. It is intended that specific domains will create subclasses of roles within their own areas of expertise.", + "homepage": "http://purl.org/vocab/participation/schema", + "id": "lov.part", + "name": "Participation Schema", + "prefix": "part", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/vocab/participation/schema#$1" + }, + "lov.passim": { + "authority": "lov", + "description": "Description of the operation of a transport information service", + "homepage": "http://data.lirmm.fr/ontologies/passim", + "id": "lov.passim", + "name": "PASSIM ontology", + "prefix": "passim", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://data.lirmm.fr/ontologies/passim#$1" + }, + "lov.pat": { + "authority": "lov", + "description": "The Patch Request Ontology provides a schema to describe desired changes in Linked Data. By wrapping the Graph Update Ontology (guo) patch requests can be formulated to add, modify or delete particular triples (or subgraphs) within a dataset.", + "homepage": "http://purl.org/hpi/patchr#", + "id": "lov.pat", + "name": "Patch Request Ontology", + "prefix": "pat", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/hpi/patchr#$1" + }, + "lov.pattern": { + "authority": "lov", + "description": "An ontology defining formally patterns for segmenting a document into atomic components, in order to be manipulated independently and re-flowed in different contexts.", + "homepage": "http://www.essepuntato.it/2008/12/pattern", + "id": "lov.pattern", + "name": "The Pattern Ontology", + "prefix": "pattern", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://www.essepuntato.it/2008/12/pattern#$1" + }, + "lov.pav": { + "authority": "lov", + "description": "PAV is a lightweight ontology for tracking Provenance, Authoring and Versioning. PAV specializes the W3C provenance ontology PROV-O in order to describe authorship, curation and digital creation of online resources.", + "homepage": "http://purl.org/pav/", + "id": "lov.pav", + "name": "Provenance, Authoring and Versioning", + "prefix": "pav", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/pav/$1" + }, + "lov.pay": { + "authority": "lov", + "description": "Vocabulary for representing payments, such as government expenditures, using the data cube representation.", + "homepage": "http://reference.data.gov.uk/def/payment#", + "id": "lov.pay", + "name": "Payments ontology", + "prefix": "pay", + "source": "lov.linkeddata.es", + "subjects": [ + "law" + ], + "uri_format": "http://reference.data.gov.uk/def/payment#$1" + }, + "lov.pbo": { + "authority": "lov", + "description": "The Play Back Ontology specification provides basic concepts and properties for describing concepts that are related to the play back domain.", + "homepage": "http://purl.org/ontology/pbo/core#", + "id": "lov.pbo", + "name": "Play Back Ontology", + "prefix": "pbo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/pbo/core#$1" + }, + "lov.pc": { + "authority": "lov", + "description": "Ontologie pro ve\u0159ejn\u00e9 zak\u00e1zky poskytuje vyjad\u0159ovac\u00ed prost\u0159edky pro popis zak\u00e1zek zad\u00e1van\u00fdch institucemi ve\u0159ejn\u00e9 spr\u00e1vy.", + "homepage": "http://purl.org/procurement/public-contracts", + "id": "lov.pc", + "name": "Public Contracts Ontology", + "prefix": "pc", + "source": "lov.linkeddata.es", + "subjects": [ + "law" + ], + "uri_format": "http://purl.org/procurement/public-contracts#$1" + }, + "lov.pdo": { + "authority": "lov", + "description": "The Project Documents Ontology models the inherent structure and concepts of various documents in a project-specific setting, like meeting minutes, status reports etc.", + "homepage": "http://vocab.deri.ie/pdo", + "id": "lov.pdo", + "name": "Project Documents Ontology", + "prefix": "pdo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ontologies.smile.deri.ie/pdo#$1" + }, + "lov.peco": { + "authority": "lov", + "description": "This ontology defines a vocabulary for describing provenance traces of carbon emission calculations by capturing the quantifiable measurements of carbon emission sources used by some activities (e.g., electricity used by a machinery to produce a product, petrol used to make a car journey, etc.) and emission conversion factors used to estimate the carbon emissions produced by these. In addition, the ontology provides the ability to capture various data transformations that occurred before energy estimates may be used with relevant conversion factors. For example, sensors may provide raw readings about a water flow of an irrigation rig in an agri-food operation which is then used as a proxy to estimate the total volume of fertilisers used.", + "homepage": "https://w3id.org/peco", + "id": "lov.peco", + "name": "The Provenance of Emission Calculations Ontology", + "prefix": "peco", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "https://w3id.org/peco#$1" + }, + "lov.pep": { + "authority": "lov", + "description": "The process execution ontology is a proposal for a simple extension of both the [W3C Semantic Sensor Network](https://www.w3.org/TR/vocab-ssn/) and the [Semantic Actuator Network](https://www.irit.fr/recherches/MELODI/ontologies/SAN.owl) ontology cores.", + "homepage": "https://w3id.org/pep/", + "id": "lov.pep", + "name": "Process Execution ontology.", + "prefix": "pep", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/pep/$1" + }, + "lov.person": { + "authority": "lov", + "description": "The Person Core Vocabulary provides a minimum set of classes and properties for describing a natural person", + "homepage": "http://www.w3.org/ns/person", + "id": "lov.person", + "name": "ISA Programme Person Core Vocabulary", + "prefix": "person", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/person#$1" + }, + "lov.pext": { + "authority": "lov", + "description": "Upper-level ontology with extensions to handle Linked Open Data (LOD)", + "homepage": "http://www.ontotext.com/proton/protonext", + "id": "lov.pext", + "name": "PROTON Extent module", + "prefix": "pext", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ontotext.com/proton/protonext#$1" + }, + "lov.phdd": { + "authority": "lov", + "description": "Physical data description (PHDD) of existing or published data (tables) in a rectangular format. The data could be either represented in records with character-separated values (CSV) or in records with fixed length.", + "homepage": "http://rdf-vocabulary.ddialliance.org/phdd", + "id": "lov.phdd", + "name": "Physical Data Description", + "prefix": "phdd", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://rdf-vocabulary.ddialliance.org/phdd#$1" + }, + "lov.pico": { + "authority": "lov", + "description": "The PICO ontology provides a machine accessible version of the PICO framework. It essentially provides a model for describing evidence in a consistent way. The model allows the specifying of complex populations, detailed interventions and their comparisons as well as the outcomes considered. The PICO ontology was originally designed to model the questions asked and answered in Cochrane's systematic reviews. As a leader in the field of evidence based healthcare Cochrane uses the PICO model when framing and publishing evidence based questions. The PICO model is widely adopted for describing healthcare evidence, furthermore is equally applicable in other evidence-based domains. It essentially provides a model for describing evidence in a consistent way.", + "homepage": "http://data.cochrane.org/ontologies/pico/", + "id": "lov.pico", + "name": "Cochrane PICO Ontology", + "prefix": "pico", + "source": "lov.linkeddata.es", + "subjects": [ + "health sciences" + ], + "uri_format": "http://data.cochrane.org/ontologies/pico/$1" + }, + "lov.pimsii": { + "authority": "lov", + "description": "The Physicalistic Interpretation of Modelling and Simulation - Interoperability Infrastructure (PIMS-II) is a mid-level ontology with a focus on documenting cognitive processes and epistemic metadata", + "homepage": "http://www.molmod.info/semantics/pims-ii.ttl", + "id": "lov.pimsii", + "name": "Physicalistic Interpretation of Modelling and Simulation - Interoperability Infrastructure (PIMS-II)", + "prefix": "pimsii", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.molmod.info/semantics/pims-ii.ttl#$1" + }, + "lov.place": { + "authority": "lov", + "description": "The Places Ontology is a simple lightweight ontology for describing places of geographic interest.", + "homepage": "http://purl.org/ontology/places", + "id": "lov.place", + "name": "The Places Ontology", + "prefix": "place", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://purl.org/ontology/places#$1" + }, + "lov.plink": { + "authority": "lov", + "description": "A Multilingual and Multicultural Ontology Representing Family Relationships.", + "homepage": "http://cedric.cnam.fr/isid/ontologies/PersonLink.owl", + "id": "lov.plink", + "name": "PersonLink Ontology", + "prefix": "plink", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://cedric.cnam.fr/isid/ontologies/PersonLink.owl#$1" + }, + "lov.plo": { + "authority": "lov", + "description": "An ontology for describing playlists, playlist entries and songs.", + "homepage": "http://purl.org/net/po#", + "id": "lov.plo", + "name": "Playlist Ontology", + "prefix": "plo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/net/po#$1" + }, + "lov.pmlp": { + "authority": "lov", + "description": "The provenance part of PML2 ontology. It is a fundamental component of PML2 ontology.", + "homepage": "http://inference-web.org/2.0/pml-provenance.owl", + "id": "lov.pmlp", + "name": "PML2 provenance ontology", + "prefix": "pmlp", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://inference-web.org/2.0/pml-provenance.owl#$1" + }, + "lov.pmofn": { + "authority": "lov", + "description": "The FrameNet module of the PreMOn ontology extends the core module for representing concepts specific to FrameNet. The modeling is based on the [FrameNet II: Extended Theory and Practice](https://framenet2.icsi.berkeley.edu/docs/r1.5/book.pdf) book.", + "homepage": "http://premon.fbk.eu/ontology/fn", + "id": "lov.pmofn", + "name": "Predicate Model for Ontologies (PreMOn) - FrameNet ontology module", + "prefix": "pmofn", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://premon.fbk.eu/ontology/fn#$1" + }, + "lov.pmonb": { + "authority": "lov", + "description": "The NomBank module of the PreMOn ontology extends the core module for representing concepts specific to NomBank. The modelling is based on the NomBank Specifications.", + "homepage": "http://premon.fbk.eu/ontology/nb", + "id": "lov.pmonb", + "name": "Predicate Model for Ontologies (PreMOn) - NomBank ontology module", + "prefix": "pmonb", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://premon.fbk.eu/ontology/nb#$1" + }, + "lov.pmopb": { + "authority": "lov", + "description": "The PropBank module of the PreMOn ontology extends the core module for representing concepts specific to PropBank.", + "homepage": "http://premon.fbk.eu/ontology/pb", + "id": "lov.pmopb", + "name": "Predicate Model for Ontologies (PreMOn) - PropBank ontology module", + "prefix": "pmopb", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://premon.fbk.eu/ontology/pb#$1" + }, + "lov.pmovn": { + "authority": "lov", + "description": "The VerbNet module of the PreMOn ontology extends the core module with classes and properties specific to the VerbNet predicate model. The modelling is based on the VerbNet Annotation Guidelines.", + "homepage": "http://premon.fbk.eu/ontology/vn", + "id": "lov.pmovn", + "name": "Predicate Model for Ontologies (PreMOn) - VerbNet ontology module", + "prefix": "pmovn", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://premon.fbk.eu/ontology/vn#$1" + }, + "lov.pna": { + "authority": "lov", + "description": "Press.net Asset Ontology describes news assets (text, images, video, data, etc), the relationships between them and how assets can be classified and semantically annotated.", + "homepage": "http://data.press.net/ontology/asset/", + "id": "lov.pna", + "name": "Press.net Asset Ontology", + "prefix": "pna", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://data.press.net/ontology/asset/$1" + }, + "lov.pnc": { + "authority": "lov", + "description": "The Press.net Classification Ontology allows assets to be holistically classified using a controlled vocabulary or taxonomy.", + "homepage": "http://data.press.net/ontology/classification/", + "id": "lov.pnc", + "name": "Press.net Classification Ontology", + "prefix": "pnc", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://data.press.net/ontology/classification/$1" + }, + "lov.pne": { + "authority": "lov", + "description": "Press.net Event Ontology models news-worthy events and their relationship to news assets and stuff (simple entities) in the world.", + "homepage": "http://data.press.net/ontology/event/", + "id": "lov.pne", + "name": "Press.net Event Ontology", + "prefix": "pne", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://data.press.net/ontology/event/$1" + }, + "lov.pni": { + "authority": "lov", + "description": "The Identifier Ontology models non-RDF based Identifiers for resources. It is used to maintain a mapping between RDF resources identifiers and their equivalent IDs in an alternate, non-RDF based domain.", + "homepage": "http://data.press.net/ontology/identifier/", + "id": "lov.pni", + "name": "SNaP Identifier Ontology", + "prefix": "pni", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://data.press.net/ontology/identifier/$1" + }, + "lov.pns": { + "authority": "lov", + "description": "Press.net Stuff Ontology models real world entities. There are two kinds of stuff: tangibles and intangibles. Tangible stuff includes persons, locations and organizations. Intangibles are abstract concepts such as smoking, feminism or love.", + "homepage": "http://data.press.net/ontology/stuff/", + "id": "lov.pns", + "name": "Press.net Stuff Ontology", + "prefix": "pns", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://data.press.net/ontology/stuff/$1" + }, + "lov.pnt": { + "authority": "lov", + "description": "Press.net Tag Ontology defines relationships for semantically annotating taggable things (for example news assets) with domain entities (stuff) and events.", + "homepage": "http://data.press.net/ontology/tag/", + "id": "lov.pnt", + "name": "Press.net Tag Ontology", + "prefix": "pnt", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://data.press.net/ontology/tag/$1" + }, + "lov.po": { + "authority": "lov", + "description": "This ontology aims at providing a simple vocabulary for describing programmes. It covers brands, series (seasons), episodes, broadcast events, broadcast services, etc.", + "homepage": "http://purl.org/ontology/po/", + "id": "lov.po", + "name": "Programmes ontology", + "prefix": "po", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/po/$1" + }, + "lov.poder": { + "authority": "lov", + "description": "A vocabulary to express information about people and their relations with Organizations, Companies, etc.", + "homepage": "http://dev.poderopedia.com/vocab/schema", + "id": "lov.poder", + "name": "Poder Vocabulary", + "prefix": "poder", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://dev.poderopedia.com/vocab/$1" + }, + "lov.poso": { + "authority": "lov", + "description": "This ontology provides the terminologies used for positioning systems.", + "homepage": "http://purl.org/poso/", + "id": "lov.poso", + "name": "Positioning System Ontology", + "prefix": "poso", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "mathematics" + ], + "uri_format": "http://purl.org/poso/$1" + }, + "lov.posocm": { + "authority": "lov", + "description": "This ontology provides the terminologies used for positioning systems.", + "homepage": "http://purl.org/poso/common/", + "id": "lov.posocm", + "name": "Positioning System Ontology Common Technologies, Algorithms and Systems", + "prefix": "posocm", + "source": "lov.linkeddata.es", + "subjects": [ + "mathematics" + ], + "uri_format": "http://purl.org/poso/common/$1" + }, + "lov.postcode": { + "authority": "lov", + "description": "An ontology describing the postcode geography in Great Britain.", + "homepage": "http://data.ordnancesurvey.co.uk/ontology/postcode/", + "id": "lov.postcode", + "name": "Postcode Ontology", + "prefix": "postcode", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://data.ordnancesurvey.co.uk/ontology/postcode/$1" + }, + "lov.poste": { + "authority": "lov", + "description": "Vocabulaire d\u00e9crivant la r\u00e9partition des points de contact du r\u00e9seau postal en France m\u00e9tropolitaine, Guadeloupe, Guyane, La R\u00e9union, Martinique, Mayotte, Monaco, Monte-Carlo et Saint-Pierre et Miquelon", + "homepage": "http://data.lirmm.fr/ontologies/poste", + "id": "lov.poste", + "name": "Ontologie de la Poste", + "prefix": "poste", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://data.lirmm.fr/ontologies/poste#$1" + }, + "lov.ppo": { + "authority": "lov", + "description": "An ontology to create privacy preferences for Linked Data", + "homepage": "http://vocab.deri.ie/ppo", + "id": "lov.ppo", + "name": "Privacy Preference Ontology", + "prefix": "ppo", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://vocab.deri.ie/ppo#$1" + }, + "lov.pproc": { + "authority": "lov", + "description": "The PPROC ontology defines the necessary concepts to describe public procurement process and the contracts of public sector (public e-procurement). The ontology has been designed with the main purpose of publishing data about public contracts.", + "homepage": "http://contsem.unizar.es/def/sector-publico/pproc", + "id": "lov.pproc", + "name": "PPROC ontology", + "prefix": "pproc", + "source": "lov.linkeddata.es", + "subjects": [ + "law" + ], + "uri_format": "http://contsem.unizar.es/def/sector-publico/pproc#$1" + }, + "lov.pr": { + "authority": "lov", + "description": "A vocabulary for describing the ontology design pattern of property reification.", + "homepage": "http://purl.org/ontology/prv/core#", + "id": "lov.pr", + "name": "Property Reification Vocabulary", + "prefix": "pr", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/prv/core#$1" + }, + "lov.premis": { + "authority": "lov", + "description": "This ontology identifies the classes and properties used to describe preservation metadata in RDF.", + "homepage": "http://www.loc.gov/premis/rdf/v1", + "id": "lov.premis", + "name": "PREMIS Ontology", + "prefix": "premis", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://www.loc.gov/premis/rdf/v1#$1" + }, + "lov.prissma": { + "authority": "lov", + "description": "PRISSMA (Presentation of Resources for Interoperable Semantic and Shareable Mobile Adaptability) is a domain-independent vocabulary for displaying Web of Data resources in mobile environments.", + "homepage": "http://ns.inria.fr/prissma/v2#", + "id": "lov.prissma", + "name": "Presentation of Resources for Interoperable Semantic and Shareable Mobile Adaptability", + "prefix": "prissma", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://ns.inria.fr/prissma/v2#$1" + }, + "lov.pro": { + "authority": "lov", + "description": "PRO, the Publishing Roles Ontology, is an ontology for describing the role(s) in the publication process of a particular agent over a defined period of time. It forms part of SPAR, a suite of Semantic Publishing and Referencing Ontologies.", + "homepage": "http://purl.org/spar/pro", + "id": "lov.pro", + "name": "The Publishing Roles Ontology", + "prefix": "pro", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/spar/pro/$1" + }, + "lov.prof": { + "authority": "lov", + "description": "This vocabulary is for describing relationships between standards/specifications, profiles of them and supporting artifacts such as validating resources.\n\nThis model starts with [http://dublincore.org/2012/06/14/dcterms#Standard](dct:Standard) entities which can either be Base Specifications (a standard not profiling any other Standard) or Profiles (Standards which do profile others). Base Specifications or Profiles can have Resource Descriptors associated with them that defines implementing rules for the it. Resource Descriptors must indicate the role they play (to guide, to validate etc.) and the formalism they adhere to (dct:format) to allow for content negotiation. A vocabulary of Resource Roles are provided alongside this vocabulary but that list is extensible.", + "homepage": "http://www.w3.org/ns/dx/prof", + "id": "lov.prof", + "name": "Profiles Vocabulary", + "prefix": "prof", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/dx/prof/$1" + }, + "lov.prog": { + "authority": "lov", + "description": "This Vocabulary provides the means to create a document which describes a large event or other connected series of events. The primary purpose is to help humans comprehend the programme, not describe absolute truth. A single event (or even series) may have multiple programmes.", + "homepage": "http://purl.org/prog/", + "id": "lov.prog", + "name": "The Event Programme Vocabulary", + "prefix": "prog", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/prog/$1" + }, + "lov.prov": { + "authority": "lov", + "description": "The namespace name http://www.w3.org/ns/prov# is intended for use with the PROV family of documents that support the interchange of provenance on the web.", + "homepage": "http://www.w3.org/ns/prov#", + "id": "lov.prov", + "name": "W3C PROVenance Interchange", + "prefix": "prov", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/prov#$1" + }, + "lov.provoc": { + "authority": "lov", + "description": "ProVoc (Product Vocabulary) is a vocabulary that can be used to represent information and manipulate them through the Web. This ontology reflects: 1) The basic hierarchy of a company: Group (Company), Divisions of a Group, Brand names attached to a Division or a Group, and 2) The production of a company: products, ranges of products (attached to a Brand), the composition of a product, packages of products...", + "homepage": "http://ns.inria.fr/provoc", + "id": "lov.provoc", + "name": "Product Vocabulary", + "prefix": "provoc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ns.inria.fr/provoc#$1" + }, + "lov.prv": { + "authority": "lov", + "description": "The Provenance Vocabulary Core Ontology provides the main classes and properties required to describe provenance of data on the Web.", + "homepage": "http://purl.org/net/provenance/ns#", + "id": "lov.prv", + "name": "Provenance Vocabulary Core Ontology", + "prefix": "prv", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/net/provenance/ns#$1" + }, + "lov.prvt": { + "authority": "lov", + "description": "Extends the Provenance Vocabulary by defining subclasses of the types of provenance elements introduced in the core ontology.", + "homepage": "http://purl.org/net/provenance/types#", + "id": "lov.prvt", + "name": "Provenance Vocabulary types", + "prefix": "prvt", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/net/provenance/types#$1" + }, + "lov.psh": { + "authority": "lov", + "description": "An OWL vocabulary to include and exploit probabilistic information in SHACL validation reports", + "homepage": "http://ns.inria.fr/probabilistic-shacl/", + "id": "lov.psh", + "name": "Probabilistic SHACL Validation", + "prefix": "psh", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ns.inria.fr/probabilistic-shacl/$1" + }, + "lov.pso": { + "authority": "lov", + "description": "an ontology for describing the status held by a bibliographic document or other publication entity at each of the various stages in the publishing process. It forms part of SPAR, a suite of Semantic Publishing and Referencing Ontologies", + "homepage": "http://purl.org/spar/pso", + "id": "lov.pso", + "name": "The Publishing Status Ontology", + "prefix": "pso", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/spar/pso/$1" + }, + "lov.ptop": { + "authority": "lov", + "description": "The PROTON Top module represents the most general classes", + "homepage": "http://www.ontotext.com/proton/protontop", + "id": "lov.ptop", + "name": "PROTON (Proto Ontology), Top Module", + "prefix": "ptop", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ontotext.com/proton/protontop#$1" + }, + "lov.pubsub": { + "authority": "lov", + "description": "The eccenca Publish-Subscribe Vocabulary defines concepts and relations to create statements about publishers, subscribers and their subscriptions in a Publish-Subscribe environment based on the PubSubHubbub Core 0.4 specification.", + "homepage": "https://vocab.eccenca.com/pubsub/", + "id": "lov.pubsub", + "name": "Eccenca Publish-Subscribe Vocabulary", + "prefix": "pubsub", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://vocab.eccenca.com/pubsub/$1" + }, + "lov.puv": { + "authority": "lov", + "description": "A simple ontology which implements the Parameter Usage Vocabulary semantic model, as described at https://github.com/nvs-vocabs/P01", + "homepage": "https://w3id.org/env/puv", + "id": "lov.puv", + "name": "Parameter Usage Vocabulary ontology", + "prefix": "puv", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "https://w3id.org/env/puv#$1" + }, + "lov.pwo": { + "authority": "lov", + "description": "An ontology for describing the workflow associated with the publication of a document.", + "homepage": "http://purl.org/spar/pwo", + "id": "lov.pwo", + "name": "The Publishing Workflow Ontology", + "prefix": "pwo", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/spar/pwo/$1" + }, + "lov.qb": { + "authority": "lov", + "description": "This vocabulary allows multi-dimensional data, such as statistics, to be published in RDF.", + "homepage": "http://purl.org/linked-data/cube", + "id": "lov.qb", + "name": "The data cube vocabulary", + "prefix": "qb", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/linked-data/cube#$1" + }, + "lov.qb4o": { + "authority": "lov", + "description": "This vocabulary allows to publish and operate with OLAP cubes in RDF", + "homepage": "http://purl.org/qb4olap/cubes", + "id": "lov.qb4o", + "name": "Vocabulary for publishing OLAP data cubes", + "prefix": "qb4o", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/qb4olap/cubes#$1" + }, + "lov.qu": { + "authority": "lov", + "description": "This ontology is partially based on the SysML QUDV (Quantities, Units, Dimensions and Values) proposed by a working group of the SysML 1.2 Revision Task Force (RTF), working in close coordination with the OMG MARTE specification group.\nIn order to generalize its potential usage and alignment with other standardization efforts concerning quantities and units, the QU ontology has been further developed as a complement to the Agriculture Meteorology example showcasing the ontology developed by the W3C Semantic Sensor Networks incubator group (SSN-XG).", + "homepage": "http://purl.oclc.org/NET/ssnx/qu/qu", + "id": "lov.qu", + "name": "Quantity Kinds and Units", + "prefix": "qu", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.oclc.org/NET/ssnx/qu/qu#$1" + }, + "lov.qudt": { + "authority": "lov", + "description": "The QUDT, or 'Quantity, Unit, Dimension and Type' collection of ontologies define the base classes properties, and restrictions used for modeling physical quantities, units of measure, and their dimensions in various measurement systems.", + "homepage": "http://qudt.org/schema/qudt", + "id": "lov.qudt", + "name": "Quantities, Units, Dimensions and Types", + "prefix": "qudt", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://qudt.org/schema/qudt/$1" + }, + "lov.r-arco": { + "authority": "lov", + "description": "The ArCo module is the root of the network ArCo - Architecture of Knowledge. It imports all the other modules and models top-level distinctions from the cultural heritage domain.", + "homepage": "https://w3id.org/arco/ontology/arco", + "id": "lov.r-arco", + "name": "ArCo Ontology (ArCo network)", + "prefix": "r-arco", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "https://w3id.org/arco/ontology/arco/$1" + }, + "lov.r4r": { + "authority": "lov", + "description": "R4R is a light-weight ontology for representing general relationships of resource for publication and reusing. It asserts that a certain reusing context occurred and determined by its two basic relations, namely, isPackagedWith and isCitedBy. The isPackagedWith relation declares the resource is ready to be reused by incorporating License and Provenance information. The Cites relation is an exceptional to isCitedBy which occurs only two related objects cite each other at the same time. Five resource objects including article, data, code, provenance and license are major class concepts to represent in this ontology. \n\nThe namespace for all R4R terms is http://guava.iis.sinica.edu.tw/r4r/", + "homepage": "http://guava.iis.sinica.edu.tw/r4r", + "id": "lov.r4r", + "name": "Relations for Reusing (R4R) Ontology", + "prefix": "r4r", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://guava.iis.sinica.edu.tw/r4r/$1" + }, + "lov.radion": { + "authority": "lov", + "description": "RADion, and the higher level vocabularies that build upon it, are intended as a model that facilitates federation and co-operation. It is not the primary intention that repository owners redesign or convert their current systems and data to conform to RADion, but rather that it acts as a common layer among repositories that want to exchange data.", + "homepage": "http://www.w3.org/ns/radion#", + "id": "lov.radion", + "name": "Repository Asset Distribution", + "prefix": "radion", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/radion#$1" + }, + "lov.rains": { + "authority": "lov", + "description": "An ontology to model accountability of AI systems which use machine learning.", + "homepage": "https://w3id.org/rains", + "id": "lov.rains", + "name": "The RAInS Ontology", + "prefix": "rains", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://w3id.org/rains#$1" + }, + "lov.rami": { + "authority": "lov", + "description": "A vocabulary which represents the Reference Architecture Model for Industry 4.0 (RAMI), including the concept of the Administration Shell I4.0 Component.", + "homepage": "https://w3id.org/i40/rami/", + "id": "lov.rami", + "name": "rami - Reference Architecture Model", + "prefix": "rami", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://iais.fraunhofer.de/vocabs/rami#$1" + }, + "lov.raul": { + "authority": "lov", + "description": "A vocabulary to describe Web form widgets. Strongly aligned with the meta model of HTML Web forms. A RESTful service that can render HTML Web forms from RaUL models can be found at: http://w3c.org.au/raul", + "homepage": "http://vocab.deri.ie/raul", + "id": "lov.raul", + "name": "RAUL Vocabulary", + "prefix": "raul", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://purl.org/NET/raul#$1" + }, + "lov.rb": { + "authority": "lov", + "description": "Ontology for describing datasets and profiles in the RiverBench benchmark suite.", + "homepage": "https://w3id.org/riverbench/schema/metadata", + "id": "lov.rb", + "name": "RiverBench metadata ontology", + "prefix": "rb", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "https://w3id.org/riverbench/schema/metadata#$1" + }, + "lov.rbdoc": { + "authority": "lov", + "description": "Ontology with metadata needed to generate documentation of datasets, distributions, profiles, etc. in RiverBench", + "homepage": "https://w3id.org/riverbench/schema/documentation", + "id": "lov.rbdoc", + "name": "RiverBench documentation ontology", + "prefix": "rbdoc", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "https://w3id.org/riverbench/schema/documentation#$1" + }, + "lov.rdaa": { + "authority": "lov", + "description": "The Agent properties element set consists of properties representing the attributes and relationships of the RDA Agent, Person, Family, and Corporate Body entities. Each property in the element set has a domain of the class representing one of these entities.", + "homepage": "http://rdaregistry.info/Elements/a", + "id": "lov.rdaa", + "name": "RDA Agent properties", + "prefix": "rdaa", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://rdaregistry.info/Elements/a/$1" + }, + "lov.rdac": { + "authority": "lov", + "description": "The Classes element set consists of classes representing the RDA entities, including Work, Expression, Manifestation, Item, Person, Family, Corporate Body, and Agent.", + "homepage": "http://rdaregistry.info/Elements/c", + "id": "lov.rdac", + "name": "RDA Classes", + "prefix": "rdac", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://rdaregistry.info/Elements/c/$1" + }, + "lov.rdae": { + "authority": "lov", + "description": "The Expression properties element set consists of properties representing the attributes and relationships of the RDA Expression entity. Each property in the element set has a domain of the class representing this entity.", + "homepage": "http://rdaregistry.info/Elements/e", + "id": "lov.rdae", + "name": "RDA Expression properties", + "prefix": "rdae", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://rdaregistry.info/Elements/e/$1" + }, + "lov.rdafrbr": { + "authority": "lov", + "description": "Defines the core RDA classes, including FRBR levels Work, Expression, Manifestation and Item.", + "homepage": "http://rdvocab.info/uri/schema/FRBRentitiesRDA", + "id": "lov.rdafrbr", + "name": "FRBR Entities for RDA", + "prefix": "rdafrbr", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://rdvocab.info/uri/schema/FRBRentitiesRDA/$1" + }, + "lov.rdag1": { + "authority": "lov", + "description": "This is the provisional registration of the RDA Group 1 Element Vocabulary, managed by the DCMI/RDA Task Group.", + "homepage": "http://rdvocab.info/Elements", + "id": "lov.rdag1", + "name": "RDA Group 1 Elements", + "prefix": "rdag1", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://rdvocab.info/Elements/$1" + }, + "lov.rdag2": { + "authority": "lov", + "description": "The second group of metadata elements defined by RDA", + "homepage": "http://rdvocab.info/ElementsGr2", + "id": "lov.rdag2", + "name": "RDA Group 2 Elements", + "prefix": "rdag2", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://rdvocab.info/ElementsGr2/$1" + }, + "lov.rdag3": { + "authority": "lov", + "description": "This group of RDA elements defines preferred and variant names for concepts, places and events", + "homepage": "http://rdvocab.info/ElementsGr3", + "id": "lov.rdag3", + "name": "RDA Group 3 Elements", + "prefix": "rdag3", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://rdvocab.info/ElementsGr3/$1" + }, + "lov.rdai": { + "authority": "lov", + "description": "The Item properties element set consists of properties representing the attributes and relationships of the RDA Item entity.", + "homepage": "http://rdaregistry.info/Elements/i", + "id": "lov.rdai", + "name": "RDA Item properties", + "prefix": "rdai", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://rdaregistry.info/Elements/i/$1" + }, + "lov.rdam": { + "authority": "lov", + "description": "The Manifestation properties element set consists of properties representing the attributes and relationships of the RDA Manifestation entity.", + "homepage": "http://rdaregistry.info/Elements/m", + "id": "lov.rdam", + "name": "RDA Manifestation properties", + "prefix": "rdam", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://rdaregistry.info/Elements/m/$1" + }, + "lov.rdarel": { + "authority": "lov", + "description": "A vocabulary defining a large variety of specific relationships between the various levels of the FRBR pile.", + "homepage": "http://rdvocab.info/RDARelationshipsWEMI", + "id": "lov.rdarel", + "name": "RDA Relationships for Works, Expressions, Manifestations, Items", + "prefix": "rdarel", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://rdvocab.info/RDARelationshipsWEMI/$1" + }, + "lov.rdarel2": { + "authority": "lov", + "description": "RDA Relationships for Persons, Corporate Bodies, Families", + "homepage": "http://metadataregistry.org/uri/schema/RDARelationshipsGR2", + "id": "lov.rdarel2", + "name": "RDA Relationships GR2", + "prefix": "rdarel2", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://metadataregistry.org/uri/schema/RDARelationshipsGR2/$1" + }, + "lov.rdarole": { + "authority": "lov", + "description": "Defines possible roles linking agents to FRBR objects (works, expressions, manifestations, items)", + "homepage": "http://rdvocab.info/roles", + "id": "lov.rdarole", + "name": "RDA Roles", + "prefix": "rdarole", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://rdvocab.info/roles/$1" + }, + "lov.rdau": { + "authority": "lov", + "description": "The Unconstrained properties element set consists of properties representing the attributes and relationships of the all RDA entities. Each property in the element set has semantics which are independent of the FRBR model and has no specified domain or range.", + "homepage": "http://rdaregistry.info/Elements/u", + "id": "lov.rdau", + "name": "RDA Unconstrained properties", + "prefix": "rdau", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://rdaregistry.info/Elements/u/$1" + }, + "lov.rdaw": { + "authority": "lov", + "description": "The Work properties element set consists of properties representing the attributes and relationships of the RDA Work entity.", + "homepage": "http://rdaregistry.info/Elements/w", + "id": "lov.rdaw", + "name": "RDA Work properties", + "prefix": "rdaw", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://rdaregistry.info/Elements/w/$1" + }, + "lov.rdf": { + "authority": "lov", + "description": "This is the RDF Schema for the RDF vocabulary terms in the RDF Namespace, defined in RDF 1.1 Concepts.", + "homepage": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "id": "lov.rdf", + "name": "The RDF Concepts Vocabulary", + "prefix": "rdf", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/1999/02/22-rdf-syntax-ns#$1" + }, + "lov.rdfa": { + "authority": "lov", + "description": "This document describes the RDFa Vocabulary for Term and Prefix Assignment. The Vocabulary is used to modify RDFa 1.1 processing behavior", + "homepage": "http://www.w3.org/ns/rdfa#", + "id": "lov.rdfa", + "name": "RDFa Vocabulary for Term and Prefix Assignment, and for Processor Graph Reporting", + "prefix": "rdfa", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/rdfa#$1" + }, + "lov.rdfg": { + "authority": "lov", + "description": "Properties allowing statement of intensional equivalence between RDF graphs", + "homepage": "http://www.w3.org/2004/03/trix/rdfg-1/", + "id": "lov.rdfg", + "name": "Graph", + "prefix": "rdfg", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2004/03/trix/rdfg-1/$1" + }, + "lov.rdfp": { + "authority": "lov", + "description": "## RDF Presentation and RDF Presentation Negotiation\n\nAn RDF graph can be presented in several ways, using different media types. Examples of RDF media types include `application/rdf+xml`, `text/turtle`, `application/json+ld`.\n\nToday, most of the content consumed/produced/published, on the Web is not presented in RDF. \n\nIn the Web of Things, HTTP servers and clients would rather exchange lightweight documents, potentially binary. \nCurrently, most existing RDF Presentations generically apply to any RDF graph, at the cost of being heavy text-based documents.\nYet, lightweight HTTP servers/clients could be better satisfied with consuming/producing/publishing lightweight documents, may its structure be application-specific.", + "homepage": "https://w3id.org/rdfp/", + "id": "lov.rdfp", + "name": "The RDF Presentation ontology", + "prefix": "rdfp", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://w3id.org/rdfp/$1" + }, + "lov.rdfs": { + "authority": "lov", + "description": "RDF Schema provides a data-modelling vocabulary for RDF data. RDF Schema is an extension of the basic RDF vocabulary.", + "homepage": "http://www.w3.org/2000/01/rdf-schema#", + "id": "lov.rdfs", + "name": "The RDF Schema vocabulary", + "prefix": "rdfs", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2000/01/rdf-schema#$1" + }, + "lov.rdft": { + "authority": "lov", + "description": "This is a vocabulary document and is used to define classes and properties used in\n RDF 1.1 Test Cases and associated test manifests.\n The URI of the vocabulary is http://www.w3.org/ns/rdftest# (abbreviated by rdft: in this document).\n Turtle and an JSON-LD versions of the vocabulary are also available.\n The vocabulary is published by W3C.", + "homepage": "http://www.w3.org/ns/rdftest", + "id": "lov.rdft", + "name": "The RDF 1.1 Test Vocabulary", + "prefix": "rdft", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/rdftest#$1" + }, + "lov.react": { + "authority": "lov", + "description": "The REACT ontology aims to represent all the necessary knowledge to support the achievement of island energy independence through renewable energy generation and storage, a demand response platform, and promoting user engagement in a local energy community.\n\nThe REACT ontology has been developed as part of the REACT project which has received funding from the European Union\u2019s Horizon 2020 research and innovation programme under grant agreement no. 824395.", + "homepage": "https://w3id.org/react", + "id": "lov.react", + "name": "The REACT Ontology", + "prefix": "react", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "https://w3id.org/react#$1" + }, + "lov.rec": { + "authority": "lov", + "description": "The Recommendation Ontology specification provides basic concepts and properties for describing recommendations on/ for the Semantic Web.", + "homepage": "http://purl.org/ontology/rec/core#", + "id": "lov.rec", + "name": "Recommendation Ontology", + "prefix": "rec", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/rec/core#$1" + }, + "lov.rec54": { + "authority": "lov", + "description": "This is (the start of) an event-based model of the W3C process; e.g. RECdd is the class of Recommendation Director's Decisions; \ti.e. messages to w3c-ac-members announcing a new W3C Recommendation.", + "homepage": "http://www.w3.org/2001/02pd/rec54#", + "id": "lov.rec54", + "name": "Model of the W3C Process", + "prefix": "rec54", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2001/02pd/rec54#$1" + }, + "lov.reco": { + "authority": "lov", + "description": "The RECO ontology defines the vocabulary for representing preferences-as-constraints and preferences-as-ratings as RDF graphs. This lightweight vocabulary provides domain-independent means to describe user profiles in a coherent and context-aware way. RECO has been designed as an extension of both Friend-Of-A-Friend (FOAF) and Who Am I! (WAI) ontologies.", + "homepage": "http://purl.org/reco#", + "id": "lov.reco", + "name": "RECommendations Ontology", + "prefix": "reco", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/reco#$1" + }, + "lov.reegle": { + "authority": "lov", + "description": "Vocabulary used to describe clean energy actors, projects and technologies", + "homepage": "http://reegle.info/schema", + "id": "lov.reegle", + "name": "Renewable Energy and Energy Efficiency", + "prefix": "reegle", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://reegle.info/schema#$1" + }, + "lov.rel": { + "authority": "lov", + "description": "A vocabulary for describing relationships between people", + "homepage": "http://purl.org/vocab/relationship/", + "id": "lov.rel", + "name": "Relationship", + "prefix": "rel", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/vocab/relationship/$1" + }, + "lov.remetca": { + "authority": "lov", + "description": "Ontology for poetry description", + "homepage": "http://www.purl.org/net/remetca#", + "id": "lov.remetca", + "name": "ReMetCa Ontology", + "prefix": "remetca", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://www.purl.org/net/remetca#$1" + }, + "lov.rev": { + "authority": "lov", + "description": "Vocabulary for expressing reviews and ratings", + "homepage": "http://purl.org/stuff/rev#", + "id": "lov.rev", + "name": "Review Vocabulary", + "prefix": "rev", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/stuff/rev#$1" + }, + "lov.rico": { + "authority": "lov", + "description": "RiC-O (Records in Contexts-Ontology) is an OWL ontology for describing\n archival record resources. As the second part of Records in Contexts standard,\n it is a formal representation of Records in Contexts Conceptual Model (RiC-CM). \t\t\n The current official version is v0.2; it is\n compliant with RiC-CM v0.2 full draft, that will be published in February or\n March 2021, and that is slightly different from RiC-CM\n v0.2 preview, that was published in December 2019.\n RiC-O provides a generic vocabulary and formal rules for creating RDF\n datasets (or generating them from existing archival metadata) that describe in a\n consistent way any kind of archival record resource. It can support publishing\n RDF datasets as Linked Data, querying them using SPARQL, and making inferences\n using the logic of the ontology.", + "homepage": "https://www.ica.org/standards/RiC/ontology", + "id": "lov.rico", + "name": "International Council on Archives Records in Contexts Ontology (ICA RiC-O)", + "prefix": "rico", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "https://www.ica.org/standards/RiC/ontology#$1" + }, + "lov.rlog": { + "authority": "lov", + "description": "This is a helper ontology for NIF 2.0 to be able to log errors and warning messages.", + "homepage": "http://persistence.uni-leipzig.org/nlp2rdf/ontologies/rlog#", + "id": "lov.rlog", + "name": "RDF Logging Ontology", + "prefix": "rlog", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://persistence.uni-leipzig.org/nlp2rdf/ontologies/rlog#$1" + }, + "lov.ro": { + "authority": "lov", + "description": "This ontology shows how AO and ORE ontologies can be used together to define a ResearchObject. This ontology is further customized by the wf4ever ontology.", + "homepage": "http://purl.org/wf4ever/ro", + "id": "lov.ro", + "name": "The Research Object Ontology", + "prefix": "ro", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/wf4ever/ro#$1" + }, + "lov.roh": { + "authority": "lov", + "description": "An ontology to address the Research Management of the CRUE's Spanish University System (Sistema Universitario Espa\u00f1ol) by applying an encompassing model not only capable of addressing the universities of the CRUE but also more belonging to the European Union.", + "homepage": "http://w3id.org/roh", + "id": "lov.roh", + "name": "The ASIO ontology", + "prefix": "roh", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "http://w3id.org/roh#$1" + }, + "lov.rooms": { + "authority": "lov", + "description": "A simple vocabulary for describing the rooms in a building.", + "homepage": "http://vocab.deri.ie/rooms", + "id": "lov.rooms", + "name": "Buildings and Rooms Vocabulary", + "prefix": "rooms", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://vocab.deri.ie/rooms#$1" + }, + "lov.rov": { + "authority": "lov", + "description": "Le vocabulaire des organisations enregistr\u00e9es est un profil de l'ontologie des organisations pour d\u00e9crire les organisations ayant acquis un statut l\u00e9gal au travers d'un processus d'inscription formel, typiquement dans un registre national ou r\u00e9gional.", + "homepage": "http://www.w3.org/ns/regorg", + "id": "lov.rov", + "name": "Registered Organization Vocabulary", + "prefix": "rov", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/regorg#$1" + }, + "lov.rr": { + "authority": "lov", + "description": "A vocabulary which can be used to specify a mapping of relational data to RDF.", + "homepage": "http://www.w3.org/ns/r2rml#", + "id": "lov.rr", + "name": "RDB to RDF Mapping Language Schema", + "prefix": "rr", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/r2rml#$1" + }, + "lov.rsctx": { + "authority": "lov", + "description": "This ontology represent context which may be interesting in providing recommendations to users.", + "homepage": "http://softeng.polito.it/rsctx", + "id": "lov.rsctx", + "name": "Recommender System Context", + "prefix": "rsctx", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://softeng.polito.it/rsctx#$1" + }, + "lov.rss": { + "authority": "lov", + "description": "RDF Schema declaration for Rich Site Summary (RSS) 1.0", + "homepage": "http://purl.org/rss/1.0", + "id": "lov.rss", + "name": "Vocabulary for Rich Site Summary (RSS) 1.0", + "prefix": "rss", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://purl.org/rss/1.0/$1" + }, + "lov.rto": { + "authority": "lov", + "description": "The Rail Topology Ontology models foundational rail topology concepts..", + "homepage": "https://w3id.org/rail/topo#", + "id": "lov.rto", + "name": "Rail Topology Ontology", + "prefix": "rto", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/rail/topo#$1" + }, + "lov.ru": { + "authority": "lov", + "description": "Draft for a recommendation for metadata on Representational Units (RU) which appear in ontologies. It is so far harmonized for implementation through owl annotation properties.", + "homepage": "http://purl.org/imbi/ru-meta.owl", + "id": "lov.ru", + "name": "Representational Units Metadata Ontology", + "prefix": "ru", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/imbi/ru-meta.owl#$1" + }, + "lov.ruto": { + "authority": "lov", + "description": "The Databugger ontology describes concepts used in Databugger, a test driven data-debugging framework that can run automatically generated (based on a schema) and manually generated test cases against an endpoint.", + "homepage": "http://rdfunit.aksw.org/ns/core#", + "id": "lov.ruto", + "name": "Test-Driven Data Debugging Ontology", + "prefix": "ruto", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://rdfunit.aksw.org/ns/core#$1" + }, + "lov.s4ac": { + "authority": "lov", + "description": "A lightweight vocabulary to create fine-grained access control policies for Linked Data.", + "homepage": "http://ns.inria.fr/s4ac/v2", + "id": "lov.s4ac", + "name": "Social Semantic SPARQL Security For Access Control Ontology", + "prefix": "s4ac", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://ns.inria.fr/s4ac/v2#$1" + }, + "lov.s4agri": { + "authority": "lov", + "description": "This ontology extends the SAREF ontology for the Agricultural domain. This work has been developed in the context of the STF 534 (https://portal.etsi.org/STF/STFs/STFHomePages/STF534.aspx), which was established with the goal to create three SAREF extensions, one of them for the Agricultural domain.", + "homepage": "https://saref.etsi.org/saref4agri/", + "id": "lov.s4agri", + "name": "SAREF extension for Agriculture", + "prefix": "s4agri", + "source": "lov.linkeddata.es", + "subjects": [ + "agriculture, forestry, and fisheries", + "computer and information sciences" + ], + "uri_format": "https://saref.etsi.org/saref4agri/$1" + }, + "lov.s4bldg": { + "authority": "lov", + "description": "This ontology extends the SAREF ontology for the building domain by defining building devices and how they are located in a building. This extension is based on the ISO 16739:2013 Industry Foundation Classes (IFC) standard for data sharing in the construction and facility management industries. The descriptions of the classes and properties extracted from IFC have been taken from the IFC documentation.", + "homepage": "https://saref.etsi.org/saref4bldg/", + "id": "lov.s4bldg", + "name": "SAREF extension for building devices", + "prefix": "s4bldg", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://saref.etsi.org/saref4bldg/$1" + }, + "lov.s4city": { + "authority": "lov", + "description": "This ontology extends the SAREF ontology for the Smart City domain. This work has been developed in the context of the STF 534 (https://portal.etsi.org/STF/STFs/STFHomePages/STF534.aspx), which was established with the goal to create three SAREF extensions, one of them for the Smart City domain.", + "homepage": "https://saref.etsi.org/saref4city/", + "id": "lov.s4city", + "name": "SAREF extension for Smart City", + "prefix": "s4city", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences", + "computer and information sciences" + ], + "uri_format": "https://saref.etsi.org/saref4city/$1" + }, + "lov.s4ehaw": { + "authority": "lov", + "description": "The objective of SAREF4EHAW is to extend SAREF ontology for the eHealth/Ageing-well (EHAW) vertical. Clause 4.1 of the present document shortly introduces a high level view of the envisioned SAREF4EHAW semantic model and modular ontology, with the retained concepts (i.e. classes) and their relations. \nSAREF4EHAW extension has been specified and formalised by investigating EHAW domain related resources, as reported in ETSI TR 103 509, such as: potential stakeholders, standardization initiatives, alliances/associations, European projects, EC directives, existing ontologies, and data repositories. Therefore, SAREF4EHAW modular ontology shall both:\n - Allow the implementation of a limited set of typical EHAW related use cases already identified in ETSI TR 103 509, i.e.\n - Use case 1 ?elderly at home monitoring and support?,\n - Use case 2 ?monitoring and support of healthy lifestyles for citizens?,\n - Use case 3 ?Early Warning System (EWS) and Cardiovascular Accidents detection?.\n - Fulfil the eHealth Ageing Well related requirements provided in ETSI TR 103 509, mainly the ontological ones that were mostly taken as input for the ontology specification.\n\nSAREF4EHAW mainly reuses the following existing ontologies: SAREF, ETSI SmartBAN reference model, SAREF 4 Environment extension and W3C SSN System module. The following figure presents the high level view of SAREF4EHAW ontology.\n![SAREF4SYST overview](diagrams/SAREF4EHAW_Model.jpg)\nFor semantic interoperability handling purposes, an ontology based solution, combined with sensing-as-a-service and WoT strategies, is retained for SAREF4EHAW. Therefore, an upper level ontology, at service level, shall also behas been fully modelled (Service class and sub-classes depicted in the previous figure).\nFor embedded semantic analytics purposes, SAREF4EHAW shall behas been designed using the modularity principle (see ETSI TR 103 509) and can thus be mainly described by the following self-contained knowledge sub-ontologies (or modules): HealthActor, Ban, HealthDevice, Function (measured data related concepts included) and Service.", + "homepage": "https://saref.etsi.org/saref4ehaw/", + "id": "lov.s4ehaw", + "name": "SAREF4EHAW: an extension of SAREF for eHealth Ageing Well domain", + "prefix": "s4ehaw", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://saref.etsi.org/saref4ehaw/$1" + }, + "lov.s4ener": { + "authority": "lov", + "description": "This is the extension of SAREF for the EEBus and Energy@Home project. The documentation of SAREF4EE is available at http://ontology.tno.nl/SAREF4EE_Documentation_v0.1.pdf. SAREF4EE represents 1) The configuration information exchanged in the use case 'Remote Network Management' according to the EEBus Technical Report, Protocol Specification- Remote Network Management, version 1.0.0.2, 2015-09-19; 2) The scheduling information about power sequences exchanged in the use cases Appliance scheduling through CEM and remote start' and 'Automatic cycle rescheduling', according to the message structures described in General Message Structures, version 0.1.1, 2015-10-07; 3) The monitor and control information exchanged in the use case 'Communicate appliance status and info on manually planned cycles', according to the monitoring and control part of the Energy@Home Data Model, version 1.0; and 4) the event-based data exchanged in the use case 'Demand Response', according to General Message Structures, version 0.1.1, 2015-10-07.", + "homepage": "https://saref.etsi.org/saref4ener/", + "id": "lov.s4ener", + "name": "SAREF4EE: the EEbus/Energy@home extension of SAREF", + "prefix": "s4ener", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "https://saref.etsi.org/saref4ener/$1" + }, + "lov.s4envi": { + "authority": "lov", + "description": "This ontology extends the SAREF ontology for the environment domain, specifically for the light pollution domain, including concepts like photometers, light, etc.", + "homepage": "https://saref.etsi.org/saref4envi/", + "id": "lov.s4envi", + "name": "SAREF extension for environment", + "prefix": "s4envi", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "https://saref.etsi.org/saref4envi/$1" + }, + "lov.s4inma": { + "authority": "lov", + "description": "SAREF4INMA is an extension of SAREF for the industry and manufacturing domain. SAREF4INMA focuses on extending SAREF for the industry and manufacturing domain to solve the lack of interoperability between various types of production equipment that produce items in a factory and, once outside the factory, between different organizations in the value chain to uniquely track back the produced items to the corresponding production equipment, batches, material and precise time in which they were manufactured. SAREF4INMA is specified and published by ETSI in the TS 103 410-5 associated to this ontology file. SAREF4INMA was created to be aligned with related initiatives in the smart industry and manufacturing domain in terms of modelling and standardization, such as the Reference Architecture Model for Industry 4.0 (RAMI), which combines several standards used by the various national initiatives in Europe that support digitalization in manufacturing. The full list of use cases, standards and requirements that guided the creation of SAREF4INMA are described in the associated ETSI TR 103 507.", + "homepage": "https://saref.etsi.org/saref4inma/", + "id": "lov.s4inma", + "name": "SAREF4INMA: an extension of SAREF for the industry and manufacturing domain", + "prefix": "s4inma", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://saref.etsi.org/saref4inma/$1" + }, + "lov.s4syst": { + "authority": "lov", + "description": "The present document is the technical specification of SAREF4SYST, a generic extension of [ETSI TS 103 264 SAREF](https://www.etsi.org/deliver/etsi_ts/103200_103299/103264/02.01.01_60/ts_103264v020101p.pdf) that defines an ontology pattern which can be instantiated for different domains. SAREF4SYST defines Systems, Connections between systems, and Connection Points at which systems may be connected. These core concepts can be used generically to define the topology of features of interest, and can be specialized for multiple domains. The topology of features of interest is highly important in many use cases. If a room holds a lighting device, and if it is adjacent with an open window to a room whose luminosity is low, then by turning on the lighting device in the former room one may expect that the luminosity in the latter room will rise.\n\nThe SAREF4SYST ontology pattern can be instantiated for different domains. For example to describe zones inside a building (systems), that share a frontier (connections). Properties of systems are typically state variables (e.g. agent population, temperature), whereas properties of connections are typically flows (e.g. heat flow).\n\nSAREF4SYST has two main aims: on the one hand, to extend SAREF with the capability or representing general topology of systems and how they are connected or interact and, on the other hand, to exemplify how ontology patterns may help to ensure an homogeneous structure of the overall SAREF ontology and speed up the development of extensions.\n\nSAREF4SYST consists both of a core ontology, and guidelines to create ontologies following the SAREF4SYST ontology pattern. The core ontology is a lightweight OWL-DL ontology that defines 3 classes and 9 object properties.\n\nUse cases for ontology patterns are described extensively in [ETSI TR 103 549 Clauses 4.2 and 4.3](https://www.etsi.org/deliver/etsi_tr/103500_103599/103549/01.01.01_60/tr_103549v010101p.pdf).\n\nFor the Smart Energy domain:\n\n- Electric power systems can exchange electricity with other electric power systems. The electric energy can flow both ways in some cases (from the Public Grid to a Prosumer), or in only one way (from the Public Grid to a Load). Electric power systems can be made up of different sub-systems. Generic sub-types of electric power systems include producers, consumers, storage systems, transmission systems. \n- Electric power systems may be connected one to another through electrical connection points. An Electric power system may have multiple connection points (Multiple Winding Transformer generally have one single primary winding with two or more secondary windings). Generic sub-types of electrical connection points include plugs, sockets, direct-current, single-phase, three-phase, connection points. \n- An Electrical connection may exist between two Electric power systems at two of their respective connection points. Generic sub-types of electrical connections include Single-phase Buses, Three-phase Buses. A single-phase electric power system can be connected using different configurations at a three-phase bus (RN, SN, TN types).\n\nFor the Smart Building domain:\n\n- Buildings, Storeys, Spaces, are different sub-types of Zones. Zones can contain sub-zones. Zones can be adjacent or intersect with other zones. \n- Two zones may share one or more connections. For example some fresh air may be created inside a storey if it has two controllable openings to the exterior at different cardinal points. \n\nA graphical overview of the SAREF4SYST ontology is provided in Figure 1. In such figure:\n\n- Rectangles are used to denote Classes. The label of the rectangle is the identifier of the Class.\n- Plain arrows are used to represent Object Properties between Classes. The label of the arrow is the identifier of the Object Property. The origin of the arrow is the domain Class of the property, and the target of the arrow is the range Class of the property.\n- Dashed arrows with identifiers between stereotype signs (i.e. \"`<< >>`\") refer to OWL axioms that are applied to some property. Four pairs of properties are inverse one of the other; the property `s4syst:connectedTo` is symmetric, and properties `s4syst:hasSubSystem` and `s4syst:hasSubSystem` are transitive.\n- A symbol =1 near the target of an arrow denotes that the associated property is functional. A symbol ? denotes a local existential restriction.\n\n\n![SAREF4SYST overview](diagrams/overview.png)", + "homepage": "https://saref.etsi.org/saref4syst/", + "id": "lov.s4syst", + "name": "SAREF4SYST: an extension of SAREF for typology of systems and their inter-connections", + "prefix": "s4syst", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://saref.etsi.org/saref4syst/$1" + }, + "lov.s4watr": { + "authority": "lov", + "description": "This ontology extends the SAREF ontology for the water domain. This work has been developed in the context of the STF 566, which was established with the goal to create three SAREF extensions, one of them for the water domain.", + "homepage": "https://saref.etsi.org/saref4watr/", + "id": "lov.s4watr", + "name": "SAREF extension for water", + "prefix": "s4watr", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "https://saref.etsi.org/saref4watr/$1" + }, + "lov.s4wear": { + "authority": "lov", + "description": "SAREF4WEAR is an extension of SAREF for Wearables", + "homepage": "https://saref.etsi.org/saref4wear/", + "id": "lov.s4wear", + "name": "SAREF4WEAR: an extension of SAREF for Wearables", + "prefix": "s4wear", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://saref.etsi.org/saref4wear/$1" + }, + "lov.sam": { + "authority": "lov", + "description": "An OWL representation of the Sampling Features Schema described in clauses 8-10 of ISO 19156:2011 Geographic Information - Observations and Measurements.", + "homepage": "http://def.seegrid.csiro.au/isotc211/iso19156/2011/sampling", + "id": "lov.sam", + "name": "The Sampling Features Schema Vocabulary", + "prefix": "sam", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19156/2011/sampling#$1" + }, + "lov.samfl": { + "authority": "lov", + "description": "A simple OWL representation of the Sampling Features Schema described in clauses 9-11 of ISO 19156:2011 Geographic Information - Observations and Measurements", + "homepage": "http://def.seegrid.csiro.au/ontology/om/sam-lite", + "id": "lov.samfl", + "name": "OWL for Sampling Features", + "prefix": "samfl", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://def.seegrid.csiro.au/ontology/om/sam-lite#$1" + }, + "lov.san": { + "authority": "lov", + "description": "This ontology is intended to describe Semantic Actuator Networks, as a counterpoint to SSN definition of Semantic Sensor Networks. An actuator is a physical device having an effect on the world (see Actuator for more information).\n\nIt is worth noticing that some concepts are imported from SSN, but not SSN as a whole. This is a design choice intended to separate as much as possible the definition on actuator from the definition of sensor, which are completely different concept that can be used independantly from each other.\n\nThis ontology is used as a ontological module in IoT-O ontology.", + "homepage": "http://www.irit.fr/recherches/MELODI/ontologies/SAN", + "id": "lov.san", + "name": "SAN (Semantic Actuator Network)", + "prefix": "SAN", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://www.irit.fr/recherches/MELODI/ontologies/SAN#$1" + }, + "lov.san-lod": { + "authority": "lov", + "description": "SAN Ontology", + "homepage": "http://dati.san.beniculturali.it/SAN/", + "id": "lov.san-lod", + "name": "SAN Ontologia", + "prefix": "san-lod", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://dati.san.beniculturali.it/SAN/$1" + }, + "lov.sao": { + "authority": "lov", + "description": "The SALT Annotation Ontology represents the connection layer between the rhetorical and argumentation and the document structure and content", + "homepage": "http://salt.semanticauthoring.org/ontologies/sao", + "id": "lov.sao", + "name": "SALT Annotation Ontology", + "prefix": "sao", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://salt.semanticauthoring.org/ontologies/sao#$1" + }, + "lov.saont": { + "authority": "lov", + "description": "An ontology to model accountability of generic systems.", + "homepage": "https://w3id.org/sao", + "id": "lov.saont", + "name": "The System Accountability Ontology", + "prefix": "saont", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://w3id.org/sao#$1" + }, + "lov.saref": { + "authority": "lov", + "description": "The Smart Appliances REFerence (SAREF) ontology is a shared model of consensus that facilitates the matching of existing assets (standards/protocols/datamodels/etc.) in the smart appliances domain. The SAREF ontology provides building blocks that allow separation and recombination of different parts of the ontology depending on specific needs.", + "homepage": "https://saref.etsi.org/core/", + "id": "lov.saref", + "name": "SAREF: the Smart Appliances REFerence ontology", + "prefix": "saref", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://saref.etsi.org/core/$1" + }, + "lov.saws": { + "authority": "lov", + "description": "Ontology for the Sharing Ancient Wisdoms (SAWS) project, to represent the information and knowledge available in medieval gnomologia (collections of wise sayings). SAWS concentrates mainly on Ancient Greek and Arabic manuscripts containing wisdom literature. All class descriptions are provided by domain experts and the ontology has been developed through collaboration between these experts and ontology developers.", + "homepage": "http://purl.org/saws/ontology", + "id": "lov.saws", + "name": "Sharing Ancient Wisdoms Ontology", + "prefix": "saws", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://purl.org/saws/ontology#$1" + }, + "lov.sbeo": { + "authority": "lov", + "description": "Smart Building Evacuation Ontology (SBEO) is an ontology that couples the information about any building with its occupants such that it can be used in many useful ways. For example, indoor localization of people, detection of any hazard, a recommendation of normal routes such as shopping or stadium seating routes, or safe and feasible emergency evacuation routes or both of them all together. \n\nThe core SBEO covers the concepts related to the geometry of building, devices and components of the building, route graphs correspondent to the building topology, users' characteristics and preferences, situational awareness of both building (hazard detection, status of routes in terms of availability and occupancy) and users (tracking, management of groups, status in terms of fitness), and emergency evacuation.", + "homepage": "https://w3id.org/sbeo", + "id": "lov.sbeo", + "name": "SBEO: Smart Building Evacuation Ontology", + "prefix": "sbeo", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://w3id.org/sbeo#$1" + }, + "lov.schema": { + "authority": "lov", + "description": "Search engines including Bing, Google, Yahoo! and Yandex rely on schema.org markup to improve the display of search results, making it easier for people to find the right web pages.", + "homepage": "http://schema.org/", + "id": "lov.schema", + "name": "Schema.org vocabulary", + "prefix": "schema", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://schema.org/$1" + }, + "lov.scip": { + "authority": "lov", + "description": "A vocabulary for description of scientific people, focused on bio sciences", + "homepage": "http://lod.taxonconcept.org/ontology/sci_people.owl", + "id": "lov.scip", + "name": "Scientific People Ontology", + "prefix": "scip", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "http://lod.taxonconcept.org/ontology/sci_people.owl#$1" + }, + "lov.scoro": { + "authority": "lov", + "description": "SCoRO, the Scholarly Contributions and Roles Ontology, is an ontology for use by authors and publishers for describing the contributions that may be made and the roles that may be held by a person with respect to a journal article or other publication, and by research administrators and others for describing contributions and roles with respect to other aspects of scholarly research.", + "homepage": "http://purl.org/spar/scoro/", + "id": "lov.scoro", + "name": "Scholarly Contributions and Roles Ontology", + "prefix": "scoro", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "http://purl.org/spar/scoro/$1" + }, + "lov.scot": { + "authority": "lov", + "description": "SCOT is an ontology for describing the structure and the semantics for tagging data across heterogenous users, sources, and applications.", + "homepage": "http://rdfs.org/scot/ns#", + "id": "lov.scot", + "name": "Social Semantic Cloud of Tags", + "prefix": "scot", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://rdfs.org/scot/ns#$1" + }, + "lov.scovo": { + "authority": "lov", + "description": "A vocabulary for representing statistical data on the Web. Note :The SCOVO vocabulary is deprecated. We strongly advise to use the Data Cube Vocabulary instead.", + "homepage": "http://vocab.deri.ie/scovo", + "id": "lov.scovo", + "name": "The Statistical Core Vocabulary", + "prefix": "scovo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/NET/scovo#$1" + }, + "lov.scsv": { + "authority": "lov", + "description": "Mapping vocabulary for CSV files that use Schema.org terms in the header.", + "homepage": "http://vocab.deri.ie/scsv", + "id": "lov.scsv", + "name": "Schema.org CSV", + "prefix": "scsv", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/NET/schema-org-csv#$1" + }, + "lov.sd": { + "authority": "lov", + "description": "Un vocabulaire pour d\u00e9crire des services SPARQL publi\u00e9s via le protocole SPARQL 1.1 pour RDF. Ces descriptions fournissent un m\u00e9canisme par lequel un client ou un utilisateur final peuvent obtenir des informations sur le service SPARQL, telles que les extensions de fonctions support\u00e9es ou les d\u00e9tails \u00e0 propos des jeux de donn\u00e9es disponibles.", + "homepage": "http://www.w3.org/ns/sparql-service-description", + "id": "lov.sd", + "name": "SPARQL 1.1 Service Description", + "prefix": "sd", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/sparql-service-description#$1" + }, + "lov.sdm": { + "authority": "lov", + "description": "A small vocabulary for representing SPARQL endpoint metadata on the web", + "homepage": "https://w3id.org/vocab/sdm", + "id": "lov.sdm", + "name": "SPARQL endpoint metadata", + "prefix": "sdm", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/vocab/sdm#$1" + }, + "lov.sdmx": { + "authority": "lov", + "description": "This vocabulary extends the data cube vocabulary to support publication of statistical data in RDF, using an information model based on SDMX", + "homepage": "http://purl.org/linked-data/sdmx", + "id": "lov.sdmx", + "name": "SDMX-RDF vocabulary", + "prefix": "sdmx", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/linked-data/sdmx#$1" + }, + "lov.sdmx-code": { + "authority": "lov", + "description": "Defines subclasses and instances of codes used in SDMX, such as currencies, decimals, frequencies ...", + "homepage": "http://purl.org/linked-data/sdmx/2009/code", + "id": "lov.sdmx-code", + "name": "SDMX Code", + "prefix": "sdmx-code", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/linked-data/sdmx/2009/code#$1" + }, + "lov.sdmx-dimension": { + "authority": "lov", + "description": "Defines dimensions for the statistical \"cubes\" defined by SDMX", + "homepage": "http://purl.org/linked-data/sdmx/2009/dimension", + "id": "lov.sdmx-dimension", + "name": "SDMX Dimension", + "prefix": "sdmx-dimension", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/linked-data/sdmx/2009/dimension#$1" + }, + "lov.sdo": { + "authority": "lov", + "description": "The SALT Document Ontology captures the linear structure of the publication, in addition to the identification and revisioning information of the publication's content.", + "homepage": "http://salt.semanticauthoring.org/ontologies/sdo", + "id": "lov.sdo", + "name": "SALT Document Ontology", + "prefix": "sdo", + "source": "lov.linkeddata.es", + "subjects": [ + "other humanities" + ], + "uri_format": "http://salt.semanticauthoring.org/ontologies/sdo#$1" + }, + "lov.sealit": { + "authority": "lov", + "description": "The SeaLiT Ontology is a formal ontology intended to facilitate the integration, mediation and interchange of heterogeneous information related to maritime history. It aims at providing the semantic definitions needed to transform disparate, localised information sources of maritime history into a coherent global resource. It also serves as a common language for domain experts and IT developers to formulate requirements and to agree on system functionalities with respect to the correct handling of historical information. The ontology uses and extends the CIDOC Conceptual Reference Model (ISO 21127:2014), in particular version 7.1.1, as a general ontology of human activity, things and events happening in space and time.", + "homepage": "http://www.sealitproject.eu/ontology/", + "id": "lov.sealit", + "name": "SeaLiT Ontology", + "prefix": "sealit", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.sealitproject.eu/ontology/$1" + }, + "lov.search": { + "authority": "lov", + "description": "A vocabulary for ranked search results, for use in the Sindice API.", + "homepage": "http://vocab.deri.ie/search", + "id": "lov.search", + "name": "Sindice Search Vocabulary", + "prefix": "search", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://sindice.com/vocab/search#$1" + }, + "lov.seas": { + "authority": "lov", + "description": "This vocabulary is version v0.1 of the ITEA2 Smart Energy Aware Systems project vocabulary. It enables the description of electricity measurements of a site using the Data Cube W3C vocabulary.", + "homepage": "https://w3id.org/seas/", + "id": "lov.seas", + "name": "SEAS ontology", + "prefix": "seas", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/seas/$1" + }, + "lov.seas-eval": { + "authority": "lov", + "description": "The Evaluation ontology describes evaluation of [`seas:Property`ies](https://w3id.org/seas/Property). There may be:\n\n- direct evaluations, or\n- qualified evaluations.", + "homepage": "https://w3id.org/seas/EvaluationOntology", + "id": "lov.seas-eval", + "name": "The SEAS Evaluation ontology", + "prefix": "seas-eval", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/seas/$1" + }, + "lov.seas-op": { + "authority": "lov", + "description": "The SEAS Operating Ontology defines evaluations of operating features of interest.", + "homepage": "https://w3id.org/seas/OperatingOntology", + "id": "lov.seas-op", + "name": "The SEAS Failable System ontology", + "prefix": "seas-op", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/seas/$1" + }, + "lov.seas-qudt": { + "authority": "lov", + "description": "This ontology defines proposed alignemnts with the QUDT ontology.", + "homepage": "https://w3id.org/seas/QUDTAlignment", + "id": "lov.seas-qudt", + "name": "QUDT Alignment.", + "prefix": "seas-qudt", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/seas/$1" + }, + "lov.seas-stats": { + "authority": "lov", + "description": "This ontology defines common evaluation interpretation concepts for statistics.", + "homepage": "https://w3id.org/seas/StatisticsOntology", + "id": "lov.seas-stats", + "name": "The SEAS Statistics ontology.", + "prefix": "seas-stats", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/seas/$1" + }, + "lov.seas-sys": { + "authority": "lov", + "description": "The System Ontology defines Systems, Connections between systems, and Connection Points at which systems may be connected. This ontology is then specialized for multiple domains. For example:\n\n- In electric energy: \n - power systems consume, produce, store, and exchange electricity;\n - power connections are where electricity flows between systems;\n - power connection points are plugs, sockets, or power busses.\n- In the electricity market:\n - players and markets are systems;\n - connections are contracts or transactions between two players, or between a player and a market;\n - connection points include offers and bids.", + "homepage": "https://w3id.org/seas/SystemOntology", + "id": "lov.seas-sys", + "name": "The SEAS System ontology", + "prefix": "seas-sys", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/seas/$1" + }, + "lov.seasb": { + "authority": "lov", + "description": "This ontology defines batteries and their state of charge ratio property.", + "homepage": "https://w3id.org/seas/BatteryOntology", + "id": "lov.seasb", + "name": "The SEAS Battery ontology.", + "prefix": "seasb", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "https://w3id.org/seas/$1" + }, + "lov.seasbo": { + "authority": "lov", + "description": "The SEAS Building ontology describes a taxonomy of buildings, building spaces, and rooms.\n\nSome categorizations are based on the energy efficiency related to their insulation etc., although the actual values for classes depend the country specific regulations and geographical locations.\n\nOther categorizations are based on occupancy and activities. There is no single accepted categorization available. This taxonomy uses some types selected from:\n\n- International building occupancy based categories (USA)\n- The Classification of Types of Constructions (EU)\n- Finnish building categorization VTJ2000 (Finland)\n- Wikipedia category page for Rooms: https://en.wikipedia.org/wiki/Category:Rooms", + "homepage": "https://w3id.org/seas/BuildingOntology", + "id": "lov.seasbo", + "name": "The SEAS Building Ontology", + "prefix": "seasbo", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "https://w3id.org/seas/$1" + }, + "lov.seasd": { + "authority": "lov", + "description": "The SEAS Device ontology defines `seas:Device` as physical system that are designed to execute one or more procedures that involve the physical world.", + "homepage": "https://w3id.org/seas/DeviceOntology", + "id": "lov.seasd", + "name": "The SEAS Device ontology", + "prefix": "seasd", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "https://w3id.org/seas/$1" + }, + "lov.seasfo": { + "authority": "lov", + "description": "The SEAS Forecasting ontology extends the [Procedure Execution ontology (PEP)](https://w3id.org/pep/)", + "homepage": "https://w3id.org/seas/ForecastingOntology", + "id": "lov.seasfo", + "name": "The SEAS Forecasting ontology", + "prefix": "seasfo", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "https://w3id.org/seas/$1" + }, + "lov.seast": { + "authority": "lov", + "description": "This ontology defines:\n- a set of subclasses of `seas:Evaluation` to better interpret evaluations of quantifiable properties.\n- a set of sub properties of `seas:hasProperty` to qualify time-related properties.", + "homepage": "https://w3id.org/seas/TimeOntology", + "id": "lov.seast", + "name": "The SEAS Time Ontology.", + "prefix": "seast", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "https://w3id.org/seas/$1" + }, + "lov.seasto": { + "authority": "lov", + "description": "The Seas Trading Ontology defines concepts and relations to describe ownership, trading, bilateral contracts and market licenses:\n\n- players own systems and trade commodities, which have a price;\n- bilateral electricity contracts are connections between electricity traders at which they exchange\nelectricity;\n- electricity markets are connections between electricity traders at which they exchange electricity,\nusing a market license;\n- electricity markets can be cleared, and balanced;\n- evaluations can have a traded volume validity context", + "homepage": "https://w3id.org/seas/TradingOntology", + "id": "lov.seasto", + "name": "The SEAS Trading ontology", + "prefix": "seasto", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "https://w3id.org/seas/$1" + }, + "lov.security": { + "authority": "lov", + "description": "A security ontology to annotate resources with security-related information", + "homepage": "http://securitytoolbox.appspot.com/securityMain", + "id": "lov.security", + "name": "Security Ontology", + "prefix": "security", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://securitytoolbox.appspot.com/securityMain#$1" + }, + "lov.sem": { + "authority": "lov", + "description": "The SEM Ontology defines entities that make up the context of an event: Events, Actors, Places, Times.", + "homepage": "http://semanticweb.cs.vu.nl/2009/11/sem/", + "id": "lov.sem", + "name": "The SEM Ontology", + "prefix": "sem", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://semanticweb.cs.vu.nl/2009/11/sem/$1" + }, + "lov.semio": { + "authority": "lov", + "description": "A vocabulary to describe signs in a semiotic approach", + "homepage": "http://www.lingvoj.org/semio.rdf", + "id": "lov.semio", + "name": "Semio, an ontology of signs", + "prefix": "semio", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.lingvoj.org/semio#$1" + }, + "lov.semiotics": { + "authority": "lov", + "description": "A content ontology pattern that encodes a basic semiotic theory, by reusing the situation pattern. The basic classes are: Expression, Meaning, Reference (the semiotic triangle), LinguisticAct (for the pragmatics), and Agent.\nA linguistic act is said to be context for expressions, with their meanings and references, and agents involved.\nBased on this pattern, several specific linguistic acts, such as 'tagging', 'translating', 'defining', 'formalizing', etc. can be defined, so constituting a formal vocabulary for a pragmatic web.", + "homepage": "http://www.ontologydesignpatterns.org/cp/owl/semiotics.owl", + "id": "lov.semiotics", + "name": "A content ontology pattern that encodes a basic semiotic theory, by reusing the situation pattern.", + "prefix": "semiotics", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://www.ontologydesignpatterns.org/cp/owl/semiotics.owl#$1" + }, + "lov.semsur": { + "authority": "lov", + "description": "SemSur, the Semantic Survey Ontology, is a core ontology for describing individual research problems, approaches, implementations and evaluations in a structured, comparable way.", + "homepage": "http://purl.org/SemSur/", + "id": "lov.semsur", + "name": "The Semantic Survey Ontology (semsur)", + "prefix": "semsur", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/SemSur/$1" + }, + "lov.seo": { + "authority": "lov", + "description": "The vocabulary allows for the description of data about scientific events such as conferences, symposiums and workshops.", + "homepage": "https://w3id.org/seo", + "id": "lov.seo", + "name": "The Scientific Events Ontology", + "prefix": "seo", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "https://w3id.org/seo#$1" + }, + "lov.seq": { + "authority": "lov", + "description": "Intended to represent sequence schemas. It defines the notion of transitive and intransitive precedence and their inverses. It can then be used between tasks, processes, time intervals, spatially locate objects, situations, etc.", + "homepage": "http://www.ontologydesignpatterns.org/cp/owl/sequence.owl", + "id": "lov.seq", + "name": "Sequence Pattern", + "prefix": "seq", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ontologydesignpatterns.org/cp/owl/sequence.owl#$1" + }, + "lov.service": { + "authority": "lov", + "description": "A micro-ontology that defines the general concept of a service.", + "homepage": "http://purl.org/ontology/service", + "id": "lov.service", + "name": "The Service Ontology", + "prefix": "service", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/service#$1" + }, + "lov.sf": { + "authority": "lov", + "description": "A specification of GeoSPARQL for simple features geometries (points, lines, polygons ...)", + "homepage": "http://www.opengis.net/ont/sf", + "id": "lov.sf", + "name": "Simplified Features Geometry", + "prefix": "sf", + "source": "lov.linkeddata.es", + "subjects": [ + "mathematics" + ], + "uri_format": "http://www.opengis.net/ont/sf#$1" + }, + "lov.sh": { + "authority": "lov", + "description": "This vocabulary defines terms used in SHACL, the W3C Shapes Constraint Language.", + "homepage": "http://www.w3.org/ns/shacl#", + "id": "lov.sh", + "name": "W3C Shapes Constraint Language (SHACL) Vocabulary", + "prefix": "sh", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/shacl#$1" + }, + "lov.shoah": { + "authority": "lov", + "description": "The ontology describing the Shoah domain, proposed here in beta version, aims to formally describe concepts and relationships that characterize the process of persecution and deportation of Jews in Italy between 1943 and 1945.", + "homepage": "http://dati.cdec.it/lod/shoah/", + "id": "lov.shoah", + "name": "Shoah Vocabulary Specification", + "prefix": "shoah", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://dati.cdec.it/lod/shoah/$1" + }, + "lov.shw": { + "authority": "lov", + "description": "An ontology defining weather-related concepts and properties being relevant to smart home systems that provide predictive control.", + "homepage": "http://paul.staroch.name/thesis/SmartHomeWeather.owl#", + "id": "lov.shw", + "name": "Smart Home Weather", + "prefix": "shw", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "http://paul.staroch.name/thesis/SmartHomeWeather.owl#$1" + }, + "lov.sim": { + "authority": "lov", + "description": "An ontology to describe associations between things. Although this ontology was designed with music similarity in mind, it can readily be applied to other domains.", + "homepage": "http://purl.org/ontology/similarity/", + "id": "lov.sim", + "name": "The Similarity Ontology", + "prefix": "sim", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/similarity/$1" + }, + "lov.simu": { + "authority": "lov", + "description": "This ontology was designed to conceptualize symbolic meanings following Baudrillard's Simulacra and Simulation theory. Symbols, their meaning, the context in which the symbolic meaning (or simulation) exists and the source of the simulation are linked to a N-ary Simulation Class.", + "homepage": "https://www.w3id.org/simulation/ontology/", + "id": "lov.simu", + "name": "Simulation Ontology", + "prefix": "simu", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "https://www.w3id.org/simulation/ontology/$1" + }, + "lov.sio": { + "authority": "lov", + "description": "The semanticscience integrated ontology (SIO) provides a simple, integrated ontology (types, relations) for objects, processes and their attributes. This project provides foundational support for the Bio2RDF (http://bio2rdf.org) and SADI (http://sadiframework.org) projects.", + "homepage": "http://semanticscience.org/ontology/sio.owl", + "id": "lov.sio", + "name": "Semanticscience Integrated Ontology", + "prefix": "sio", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://semanticscience.org/resource/$1" + }, + "lov.sioc": { + "authority": "lov", + "description": "SIOC is an ontology for describing the information in online communities.", + "homepage": "http://rdfs.org/sioc/ns#", + "id": "lov.sioc", + "name": "Semantically-Interlinked Online Communities", + "prefix": "sioc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://rdfs.org/sioc/ns#$1" + }, + "lov.situ": { + "authority": "lov", + "description": "A pattern to represent contexts or situations, and the things that are contextualized.", + "homepage": "http://www.ontologydesignpatterns.org/cp/owl/situation.owl", + "id": "lov.situ", + "name": "Situation Pattern", + "prefix": "situ", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ontologydesignpatterns.org/cp/owl/situation.owl#$1" + }, + "lov.skos": { + "authority": "lov", + "description": "The Simple Knowledge Organization System (SKOS) is a common data model for sharing and linking knowledge organization systems via the Semantic Web.", + "homepage": "http://www.w3.org/2004/02/skos/core", + "id": "lov.skos", + "name": "Simple Knowledge Organization System", + "prefix": "skos", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2004/02/skos/core#$1" + }, + "lov.skosxl": { + "authority": "lov", + "description": "SKOS-XL defines an extension for the Simple Knowledge Organization System, providing additional support for describing and linking lexical entities.", + "homepage": "http://www.w3.org/2008/05/skos-xl", + "id": "lov.skosxl", + "name": "SKOS eXtension for Labels", + "prefix": "skosxl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2008/05/skos-xl#$1" + }, + "lov.smg": { + "authority": "lov", + "description": "A Profile of the IEC Common Information Model for Smart Grids, developed by the Cerise-SG project.", + "homepage": "http://ns.cerise-project.nl/energy/def/cim-smartgrid", + "id": "lov.smg", + "name": "CERISE CIM Profile for Smart Grids", + "prefix": "smg", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://ns.cerise-project.nl/energy/def/cim-smartgrid#$1" + }, + "lov.snarm": { + "authority": "lov", + "description": "This ontology is designed for representing access rights within a simple network of associated users/groups", + "homepage": "http://rdf.myexperiment.org/ontologies/snarm/", + "id": "lov.snarm", + "name": "Simple Network Access Rights Management Ontology", + "prefix": "snarm", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://rdf.myexperiment.org/ontologies/snarm/$1" + }, + "lov.solid": { + "authority": "lov", + "description": "Solid terms", + "homepage": "http://www.w3.org/ns/solid/terms", + "id": "lov.solid", + "name": "Solid terms", + "prefix": "solid", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://www.w3.org/ns/solid/terms#$1" + }, + "lov.sor": { + "authority": "lov", + "description": "The Social Relationships ONtology (SORON) attempts to describe the different types of social relationships in society (both objective and subjective). Current version focuses on inter-personal 1:1 relationships (except family relationships). Other types of relationships may be covered in later versions. It complements FOAF and RELATIONSHIP ontologies.", + "homepage": "http://purl.org/net/soron", + "id": "lov.sor", + "name": "SORON: Social Relationships ONtology", + "prefix": "sor", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/net/soron/$1" + }, + "lov.sosa": { + "authority": "lov", + "description": "This ontology is based on the SSN Ontology by the W3C Semantic Sensor Networks Incubator Group (SSN-XG), together with considerations from the W3C/OGC Spatial Data on the Web Working Group.", + "homepage": "http://www.w3.org/ns/sosa/", + "id": "lov.sosa", + "name": "Sensor, Observation, Sample, and Actuator (SOSA) Ontology", + "prefix": "sosa", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "http://www.w3.org/ns/sosa/$1" + }, + "lov.sp": { + "authority": "lov", + "description": "An RDF Schema to syntactically represent SPARQL queries (including SPARQL UPDATE) as RDF triples.", + "homepage": "http://spinrdf.org/sp", + "id": "lov.sp", + "name": "SPIN SPARQL Syntax", + "prefix": "sp", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://spinrdf.org/sp#$1" + }, + "lov.spatial": { + "authority": "lov", + "description": "A vocabulary for describing topological relations between features", + "homepage": "http://geovocab.org/spatial", + "id": "lov.spatial", + "name": "NeoGeo Spatial Ontology", + "prefix": "spatial", + "source": "lov.linkeddata.es", + "subjects": [ + "mathematics" + ], + "uri_format": "http://geovocab.org/spatial#$1" + }, + "lov.spcm": { + "authority": "lov", + "description": "La planificaci\u00f3n y monitorizaci\u00f3n de la ejecuci\u00f3n de proyectos software puede llevarse a cabo con diferentes herramientas, desde sistemas basados en gesti\u00f3n de tareas, hasta herramientas especializadas en diagramas de Gantt o incluso mediante simples hojas de c\u00e1lculo. Este vocabulario contempla los elementos t\u00edpicos a la hora de controlar los proyectos de desarrollo o mantenimiento de software.", + "homepage": "http://spi-fm.uca.es/spdef/models/deployment/spcm/1.0", + "id": "lov.spcm", + "name": "Software Process Control Model", + "prefix": "spcm", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://spi-fm.uca.es/spdef/models/deployment/spcm/1.0#$1" + }, + "lov.spfood": { + "authority": "lov", + "description": "Defines concepts and properties specific for the SmartProducts Philips use case (cooking domain).", + "homepage": "http://kmi.open.ac.uk/projects/smartproducts/ontologies/food.owl", + "id": "lov.spfood", + "name": "SmartProducts Food Domain Model", + "prefix": "spfood", + "source": "lov.linkeddata.es", + "subjects": [ + "agriculture, forestry, and fisheries" + ], + "uri_format": "http://kmi.open.ac.uk/projects/smartproducts/ontologies/food.owl#$1" + }, + "lov.spin": { + "authority": "lov", + "description": "An RDF Schema that can be used to attach constraints and rules to RDFS classes, and to encapsulate reusable SPARQL queries into functions and templates.", + "homepage": "http://spinrdf.org/spin", + "id": "lov.spin", + "name": "SPIN Inferencing Vocabulary", + "prefix": "spin", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://spinrdf.org/spin#$1" + }, + "lov.sport": { + "authority": "lov", + "description": "A simple ontology for representing competitive sports events.", + "homepage": "http://www.bbc.co.uk/ontologies/sport", + "id": "lov.sport", + "name": "BBC Sport Ontology", + "prefix": "sport", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.bbc.co.uk/ontologies/sport/$1" + }, + "lov.spt": { + "authority": "lov", + "description": "TheSPITFIRE Ontology (spt) is based on the alignment among Dolce+DnS Ultralite(dul), the W3C Semantic Sensor Network ontology (ssn) and the Event Model-F ontology (event).", + "homepage": "http://spitfire-project.eu/ontology/ns", + "id": "lov.spt", + "name": "SPITFIRE Ontology", + "prefix": "spt", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://spitfire-project.eu/ontology/ns/$1" + }, + "lov.spvqa": { + "authority": "lov", + "description": "The ontology is aimed at the support of research groups in the field of Business Modeling and Knowledge Engineering (BMaKE) in their collaborative work for qualitatively analyzing scholarly papers as well as sharing the results of that analyses and judgements.", + "homepage": "https://bmake.th-brandenburg.de/spv", + "id": "lov.spvqa", + "name": "Scholarly Papers Vocabulary with Focus on Qualtitative Analysis", + "prefix": "spvqa", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://bmake.th-brandenburg.de/spv#$1" + }, + "lov.sql": { + "authority": "lov", + "description": "The SQL AST Vocabulary allows SQL code abstract syntax trees to be published in RDF.", + "homepage": "http://ns.inria.fr/ast/sql#", + "id": "lov.sql", + "name": "SQL Abstract Syntax Trees Vocabulary", + "prefix": "sql", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://ns.inria.fr/ast/sql#$1" + }, + "lov.ssn": { + "authority": "lov", + "description": "This ontology describes sensors and observations, and related concepts. It does not describe domain concepts, time, locations, etc. these are intended to be included from other ontologies via OWL imports.", + "homepage": "http://www.w3.org/ns/ssn/", + "id": "lov.ssn", + "name": "Semantic Sensor Network Ontology", + "prefix": "ssn", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://www.w3.org/ns/ssn/$1" + }, + "lov.ssno": { + "authority": "lov", + "description": "This ontology describes sensors, actuators and observations, and related concepts. It does not describe domain concepts, time, locations, etc. these are intended to be included from other ontologies via OWL imports.", + "homepage": "http://www.w3.org/ns/ssn/", + "id": "lov.ssno", + "name": "Semantic Sensor Network Ontology", + "prefix": "ssno", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://www.w3.org/ns/ssn/$1" + }, + "lov.ssso": { + "authority": "lov", + "description": "An event-based RDF ontology for typical status in fulfillment of a service", + "homepage": "http://purl.org/ontology/ssso", + "id": "lov.ssso", + "name": "Simple Service Status Ontology", + "prefix": "ssso", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/ssso#$1" + }, + "lov.st": { + "authority": "lov", + "description": "This ontology provides the predicates necessary to describe an arrival of a transit vehicle and its departure at a certain Stop.", + "homepage": "http://semweb.mmlab.be/ns/stoptimes#Ontology", + "id": "lov.st", + "name": "The Stop Times ontology", + "prefix": "st", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://semweb.mmlab.be/ns/stoptimes#$1" + }, + "lov.stac": { + "authority": "lov", + "description": "A vocabulary to describe main security and cryptographic concepts: attacks, security mechanisms, OSI model, security protocols, security tools in numerous technologies: Web applications, network management, Sensor networks, Cellular (2G, 3G, 4G) and Wireless (Wifi), etc.", + "homepage": "http://securitytoolbox.appspot.com/stac", + "id": "lov.stac", + "name": "Security Toolbox : Attacks and Countermeasures", + "prefix": "stac", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://securitytoolbox.appspot.com/stac#$1" + }, + "lov.step": { + "authority": "lov", + "description": "A lightweight ontology for representing semantic trajectories and contextual elements in terms of features of interests and episodes.", + "homepage": "http://purl.org/net/step", + "id": "lov.step", + "name": "Semantic Trajectory Episodes", + "prefix": "step", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://purl.org/net/step#$1" + }, + "lov.sto": { + "authority": "lov", + "description": "A vocabulary to describe the relation between standards in use on the Industry 4.0, and related concepts", + "homepage": "https://w3id.org/i40/sto#", + "id": "lov.sto", + "name": "i40 Standards Lanscape Vocabulary", + "prefix": "sto", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/i40/sto#$1" + }, + "lov.stories": { + "authority": "lov", + "description": "The Stories ontology was developed in collaboration with the BBC, with an aim to creating an ontology for narrative representation that could be applied across a diverse set of cases. These included accounts of events in Northern Ireland, the storylines of Doctor Who episodes, and key events of the Battle of Britain.", + "homepage": "http://purl.org/ontology/stories/", + "id": "lov.stories", + "name": "Stories Ontology", + "prefix": "stories", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/stories/$1" + }, + "lov.summa": { + "authority": "lov", + "description": "The SUMMA Vocabulary enables to request and represent summarized RDf resources. It should be used in context to the SUMMA API definition.", + "homepage": "http://purl.org/voc/summa/", + "id": "lov.summa", + "name": "SUMMA Vocabulary", + "prefix": "summa", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://purl.org/voc/summa/$1" + }, + "lov.sur": { + "authority": "lov", + "description": "Ontology for surveys based on the Coney data model.", + "homepage": "https://www.w3id.org/survey-ontology", + "id": "lov.sur", + "name": "The Survey Ontology", + "prefix": "sur", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/survey-ontology#$1" + }, + "lov.sw-quality": { + "authority": "lov", + "description": "Quality, architecture, and process are considered the keystones of software engineering. ISO defines them in three separate standards. However, their interaction has been poorly studied, so far. The SQuAP model (Software Quality, Architecture, Process) describes twenty-eight main factors that impact on software quality in banking systems, and each factor is described as a relation among some characteristics from the three ISO standards. Hence, SQuAP makes such relations emerge rigorously, although informally. SQaAP-Ont is an OWL ontology that formalises those relations in order to represent and reason via Linked Data about software engineering in a three-dimensional model consisting of quality, architecture, and process characteristics.", + "homepage": "https://w3id.org/squap/", + "id": "lov.sw-quality", + "name": "SQuAP Ontology", + "prefix": "sw-quality", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/squap/SoftwareQuality/$1" + }, + "lov.swc": { + "authority": "lov", + "description": "The Semantic Web Conference ontology (SWC) is an ontology for describing academic conferences", + "homepage": "http://data.semanticweb.org/ns/swc/ontology", + "id": "lov.swc", + "name": "Semantic Web Conference Ontology", + "prefix": "swc", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "http://data.semanticweb.org/ns/swc/ontology#$1" + }, + "lov.swemls": { + "authority": "lov", + "description": "An ontology to describe a Semantic-Web Machine Learning System (SWeMLS)", + "homepage": "https://w3id.org/semsys/ns/swemls", + "id": "lov.swemls", + "name": "Semantic-Web Machine Learning System (SWeMLS) Ontology", + "prefix": "swemls", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/semsys/ns/swemls#$1" + }, + "lov.swp": { + "authority": "lov", + "description": "This vocabulary allows to attach an authority to a named graph", + "homepage": "http://www.w3.org/2004/03/trix/swp-1", + "id": "lov.swp", + "name": "Graph Authority", + "prefix": "swp", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2004/03/trix/swp-1/$1" + }, + "lov.swpm": { + "authority": "lov", + "description": "During the modeling of software processes, work products are traditionally treated as atomic units, with names but no structure, and they are generated or changed during the course of the projects. In fact, the language SPEM does not offer mechanisms to detail the structure of work products, allowing only identify whether it is an artifact, a deliverable or an outcome of the project. The typical work products in the software processes are often documents or source code and they are managed from specialized or generic tools. For example, software modeling tools such as Rational Rose, or version control systems such as Git are examples of specialized tools that provide support to the management of certain types of work products. However, other generic tools such as content management systems, document management systems and collaborative editing systems or wikis can also be used to manage evidences of the processes. The design of models for certain types of work products has been an approach used in model-driven web methodologies. However, it is common the need for adapting and customizing well-known methodologies for their application in concrete situations and in specific organizations, a.k.a. process tailoring. Therefore, a vocabulary to define flexible work products in terms of structure and type of its artifacts is proposed here.", + "homepage": "http://spi-fm.uca.es/spdef/models/deployment/swpm/1.0", + "id": "lov.swpm", + "name": "Software Work Product Model", + "prefix": "swpm", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://spi-fm.uca.es/spdef/models/deployment/swpm/1.0#$1" + }, + "lov.swpo": { + "authority": "lov", + "description": "The aim of the Semantic Web Portal Ontology is to serve as the conceptual backbone for community portals driven by Semantic Web technologies.", + "homepage": "http://sw-portal.deri.org/ontologies/swportal", + "id": "lov.swpo", + "name": "Semantic Web Portal Ontology", + "prefix": "swpo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://sw-portal.deri.org/ontologies/swportal#$1" + }, + "lov.swrc": { + "authority": "lov", + "description": "An ontology for modeling entities of research communities such as persons, organisations, publications (bibliographic metadata) and their relationship", + "homepage": "http://swrc.ontoware.org/ontology-07", + "id": "lov.swrc", + "name": "Semantic Web for Research Communities", + "prefix": "swrc", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "http://swrc.ontoware.org/ontology#$1" + }, + "lov.swrl": { + "authority": "lov", + "description": "OWL definition of the RDF Concrete Syntax for the Semantic Web Rule Language", + "homepage": "http://www.w3.org/2003/11/swrl", + "id": "lov.swrl", + "name": "Semantic Web Rule Language", + "prefix": "swrl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2003/11/swrl#$1" + }, + "lov.synsem": { + "authority": "lov", + "description": "A model for the representation of lexical information relative to ontologies. Syntax and semantics module.", + "homepage": "http://www.w3.org/ns/lemon/synsem", + "id": "lov.synsem", + "name": "Lexicon Model for Ontologies - Synsem", + "prefix": "synsem", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/lemon/synsem#$1" + }, + "lov.tac": { + "authority": "lov", + "description": "The TripleAccessControl Ontology is an extension to WebAccessControl Ontology to describe access control rules for RDF triples.", + "homepage": "http://ns.bergnet.org/tac/0.1/triple-access-control", + "id": "lov.tac", + "name": "TripleAccessControl Ontology", + "prefix": "tac", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://ns.bergnet.org/tac/0.1/triple-access-control#$1" + }, + "lov.tag": { + "authority": "lov", + "description": "An ontology that let users define relationships between Tag objects and URIs of Semantic Web resources", + "homepage": "http://www.holygoat.co.uk/owl/redwood/0.1/tags/", + "id": "lov.tag", + "name": "Tag ontology", + "prefix": "tag", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.holygoat.co.uk/owl/redwood/0.1/tags/$1" + }, + "lov.tao": { + "authority": "lov", + "description": "TAO is a light-weight vocabulary to describe asserted user\u2019s subjective trust values.", + "homepage": "http://vocab.deri.ie/tao", + "id": "lov.tao", + "name": "Trust Assertion Ontology", + "prefix": "tao", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://vocab.deri.ie/tao#$1" + }, + "lov.tax": { + "authority": "lov", + "description": "EUdaphobase Taxonomy Ontology for the European Soil-Biology Data Warehouse for Soil Protection", + "homepage": "https://w3id.org/EUTaxO", + "id": "lov.tax", + "name": "EUTaxO - EUdaphobase Taxonomy Ontology", + "prefix": "tax", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences" + ], + "uri_format": "https://w3id.org/EUTaxO#$1" + }, + "lov.taxon": { + "authority": "lov", + "description": "This is the initial vocabulary for mapping the various taxon classes on the Linked Open Data Cloud", + "homepage": "http://purl.org/biodiversity/taxon/", + "id": "lov.taxon", + "name": "TaxonMap Ontology", + "prefix": "taxon", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/biodiversity/taxon/$1" + }, + "lov.taxref-ld": { + "authority": "lov", + "description": "Representation of the TAXREF taxonomic register as linked data. This resource is at the same time an ontology of classes depicting the taxa and a thesaurus (SKOS concept scheme) of the scientific names attached to the taxa.", + "homepage": "http://taxref.mnhn.fr/lod/taxref-ld", + "id": "lov.taxref-ld", + "name": "TAXREF-LD Ontology", + "prefix": "taxref-ld", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences", + "earth and related environmental sciences" + ], + "uri_format": "http://taxref.mnhn.fr/lod/$1" + }, + "lov.tb": { + "authority": "lov", + "description": "An ontology to describe people and requests for timebanks. This includes the poeple's skills, limitations, and environment.", + "homepage": "https://w3id.org/timebank", + "id": "lov.tb", + "name": "Timebank Ontology", + "prefix": "tb", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/timebank#$1" + }, + "lov.td": { + "authority": "lov", + "description": "This ontology aims to model the Web of Things domain according to the W3C Interest Group (http://w3c.github.io/wot/)", + "homepage": "https://www.w3.org/2019/wot/td", + "id": "lov.td", + "name": "Thing Description Ontology", + "prefix": "td", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://www.w3.org/2019/wot/td#$1" + }, + "lov.tddfa": { + "authority": "lov", + "description": "Module for Action (and Frame) modelling inside domain.", + "homepage": "https://w3id.org/todo/tododfa", + "id": "lov.tddfa", + "name": "TODODFA: Frame-Action Module for Task-Oriented Dialogue management Ontology (TODO)", + "prefix": "tddfa", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/todo/tododfa#$1" + }, + "lov.tddial": { + "authority": "lov", + "description": "Module for dialogue process and system output management.", + "homepage": "https://w3id.org/todo/tododial", + "id": "lov.tddial", + "name": "TODODial: Dialogue Module for Task-Oriented Dialogue management Ontology (TODO)", + "prefix": "tddial", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/todo/tododial#$1" + }, + "lov.tddm": { + "authority": "lov", + "description": "Module for dialogue process and system output management.", + "homepage": "https://w3id.org/todo/tododm", + "id": "lov.tddm", + "name": "TODODM: Dialogue Management Module for Task-Oriented Dialogue management Ontology (TODO)", + "prefix": "tddm", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/todo/tododm#$1" + }, + "lov.tddom": { + "authority": "lov", + "description": "Module for domain modelling.", + "homepage": "https://w3id.org/todo/tododom", + "id": "lov.tddom", + "name": "TODODom: Domain Module for Task-Oriented Dialogue management Ontology (TODO)", + "prefix": "tddom", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/todo/tododom#$1" + }, + "lov.tddt": { + "authority": "lov", + "description": "Module for dialogue tracing.", + "homepage": "https://w3id.org/todo/tododt", + "id": "lov.tddt", + "name": "TODODT: Dialogue Tracing Module for Task-Oriented Dialogue management Ontology (TODO)", + "prefix": "tddt", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/todo/tododt#$1" + }, + "lov.tddw": { + "authority": "lov", + "description": "Module for scenario modelling (world elements) of domain.", + "homepage": "https://w3id.org/todo/tododw", + "id": "lov.tddw", + "name": "TODODW: World Module for Task-Oriented Dialogue management Ontology (TODO)", + "prefix": "tddw", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/todo/tododw#$1" + }, + "lov.te": { + "authority": "lov", + "description": "An entry sub-ontology of time (OWL-Time).", + "homepage": "http://www.w3.org/2006/time-entry", + "id": "lov.te", + "name": "Time Entry", + "prefix": "te", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2006/time-entry#$1" + }, + "lov.teach": { + "authority": "lov", + "description": "TEACH, the Teaching Core Vocabulary, is a lightweight vocabulary providing terms to enable teachers to relate things in their courses together. The Teaching Core Vocabulary is based on practical requirements set by providing seminar and course descriptions as Linked Data.", + "homepage": "http://linkedscience.org/teach/ns#", + "id": "lov.teach", + "name": "Teaching Core Vocabulary Specification", + "prefix": "teach", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "http://linkedscience.org/teach/ns#$1" + }, + "lov.tempo": { + "authority": "lov", + "description": "In a typical (uni)temporal data model every resource's appearance (and disappearance) is being tracked.\nNumerous systems accomplish unitemporal tracking, either externally by e.g. using git to record the insertion or deletion of a resource, or internally by e.g. using prov:generatedAtTime and prov:invalidatedAtTime.\nThis axis of time is known as *system time*, and none of TempO's concern because for one there is readily available support, and moreover because unitemporal tracking is used for principally true statements, i.e. those that have always been (considered) true or will always be (considered) true.\n\nTempO addresses bitemporal and tritemporal setups: Resources which are (known or believed to be) valid and efficacious for some time.\nA second time axis orthogonal to system time is introduced, that is a resource can be valid even though it is currently not in the system, or, conversely, can be already or still invalid by the time it enters the system.\n\nEfficacy, sometimes called decision time, is yet another concept orthogonal to validity, i.e. a resource that is no longer or not yet valid can be efficacious.\nThe converse, a valid but inefficacious resource in the system, is *usually* not encountered but TempO does not impose restrictions on the shape of the time area.\n\nIn general the necessity for tracking both validity and efficacy arises in areas where concepts are assigned a code or label that is subject to reuse following invalidation.\nTracking efficacy and validity concurrently then allows for fine-grained control over how much future knowledge or how much past knowledge we tolerate in a datset.\n\nExample:\n--------\nCzechoslovakia was founded in 1918 but became part of Germany, Hungary and Poland in 1938.\nIt was reestablished in 1945 but split into two sovereign states in 1993.\nThe ISO 3166 country code for Czechoslovakia used to be 'CS', assigned in 1974, published in February 1978, and invalidated with the country's split.\nIn 2003 ISO 3166 reassigned the country code 'CS' to Serbia and Montenegro.\nThe facts were assembled in 2018 and written down as follows:\n\n cc:CSHH\n a cc:ISO3166-CountryCode ;\n rdfs:label \"CS\" ;\n cc:refersTo \"Czechoslovakia\" ;\n prov:generatedAtTime \"2018-02-29T04:00:00Z\"^^xsd:dateTime .\n tempo:validFrom \"1978-02\"^^xsd:gYearMonth ;\n tempo:validTill \"1993-01-01\"^^xsd:date ;\n tempo:efficaciousFrom \"1918\"^^xsd:gYear , \"1945\"^^xsd:gYear ;\n tempo:efficaciousTill \"1938\"^^xsd:gYear , \"2003\"^^xsd:gYear .\n\nThe use of the country code 'CS' in a statement from 1988 can be resolved to cc:CSHH, as of today, free from ambiguity; it was valid back then after all and we know that today.\nThe same query in 2017 (point-in-time query) would have yielded no results because the information hadn't been in the system back then.\nPoint-in-time queries, however, are not TempO's major concern so only as-of-today queries are assumed from now on.\n\nFollowing the country's split it is highly likely that news reports from, say, 1994 highlighting the then-recent past would still have used 'CS' to refer to cc:CSHH.\nAccording to the resource this is possible, a query for 'CS' in 1994 would bring up cc:CSHH as it is efficacious but marked as invalidated.\n\nOn the other end of history, the use of the code 'CS' in, say, 1976 is plausible. The code was decided on but not yet formally published.\nA query for 'CS' as used in 1976 would bring up cc:CSHH, marked as anachronistic.\nGoing back further, a statement from, say 1942, using the code 'CS' must clearly refer to something else.\nA query for 'CS' as used in 1976 would yield not yield any results.\n\n--\n\nThe ontology IRI http://purl.org/tempo/ always resolve to the latest version of TempO. Particular versionIRIs such as http://purl.org/tempo/0.1/ can be used by clients to force the import of a particular version.\n\nThe goal of TempO is to allow for temporal constraints with control over how much future or past is permissible directly on the published resource, and as such, TempO does not restrict domain/ranges.", + "homepage": "http://purl.org/tempo", + "id": "lov.tempo", + "name": "TempO - Temporal Ontology", + "prefix": "tempo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/tempo/$1" + }, + "lov.test": { + "authority": "lov", + "description": "This ontology aims at defining the Quality Assurance Framework by collecting the test development experience of W3C Working Groups and summarizing the work done about tests and metadata.", + "homepage": "http://www.w3.org/2006/03/test-description", + "id": "lov.test", + "name": "Test Metadata", + "prefix": "test", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2006/03/test-description#$1" + }, + "lov.tfo": { + "authority": "lov", + "description": "This document describes functions which transform HTTP representations, i.e., the actual literal payloads of HTTP messages.", + "homepage": "https://privatealpha.com/ontology/transformation/1#", + "id": "lov.tfo", + "name": "Transformation Functions Ontology", + "prefix": "tfo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://privatealpha.com/ontology/transformation/1#$1" + }, + "lov.theatre": { + "authority": "lov", + "description": "An ontology for organising theatrical data.", + "homepage": "http://purl.org/theatre#", + "id": "lov.theatre", + "name": "Theatre Ontology", + "prefix": "theatre", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/theatre#$1" + }, + "lov.thors": { + "authority": "lov", + "description": "An OWL representation of the model for Temporal Ordinal Reference Systems defined in GeoSciML v3.", + "homepage": "http://resource.geosciml.org/ontology/timescale/thors", + "id": "lov.thors", + "name": "The Temporal Ordinal Reference Systems", + "prefix": "thors", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://resource.geosciml.org/ontology/timescale/thors#$1" + }, + "lov.ti": { + "authority": "lov", + "description": "This pattern is extracted from DOLCE-UltraLite by partial clone of elements and expansion. Two datatype properties have been added which allow to express the boundaries of the time interval.", + "homepage": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl", + "id": "lov.ti", + "name": "The Time Interval Pattern", + "prefix": "ti", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#$1" + }, + "lov.time": { + "authority": "lov", + "description": "This vocabulary defines temporal entities such as time intervals, their properties and relationships.", + "homepage": "http://www.w3.org/2006/time", + "id": "lov.time", + "name": "Time Ontology", + "prefix": "time", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2006/time#$1" + }, + "lov.tio": { + "authority": "lov", + "description": "A vocabulary for describing tickets for events, transportation, or points of interest for e-commerce.", + "homepage": "http://purl.org/tio/ns#", + "id": "lov.tio", + "name": "The Tickets Ontology", + "prefix": "tio", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/tio/ns#$1" + }, + "lov.tis": { + "authority": "lov", + "description": "A generic pattern usable for all situations that require a temporal indexing.", + "homepage": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl", + "id": "lov.tis", + "name": "Time Indexed Situation", + "prefix": "tis", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl$1" + }, + "lov.tisc": { + "authority": "lov", + "description": "TISC, the Open Time and Space Core Vocabulary, is a lightweight spatiotemporal vocabulary aiming to provide spatial and temporal terms such as \"happensAt\", \"locatedAt\", \"rightOf\" to enable practitioners to relate their data to time and space.", + "homepage": "http://www.observedchange.com/tisc/ns#", + "id": "lov.tisc", + "name": "Open Time and Space Core Vocabulary", + "prefix": "tisc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://observedchange.com/tisc/ns#$1" + }, + "lov.tl": { + "authority": "lov", + "description": "Extends owl-time ontology with support for several timelines, acting as a backbone to adress time interval/instants. Mainly designed with a multimedia use-case in mind.", + "homepage": "http://purl.org/NET/c4dm/timeline.owl", + "id": "lov.tl", + "name": "The Timeline Ontology", + "prefix": "tl", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/NET/c4dm/timeline.owl#$1" + }, + "lov.tm": { + "authority": "lov", + "description": "An OWL representation of part of the model for Temporal objects and reference systems from ISO 19108:2002 Geographic Information - Temporal Schema", + "homepage": "http://def.seegrid.csiro.au/isotc211/iso19108/2002/temporal", + "id": "lov.tm", + "name": "A vocabulary for temporal objects in Geographic Information", + "prefix": "tm", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://def.seegrid.csiro.au/isotc211/iso19108/2002/temporal#$1" + }, + "lov.tmo": { + "authority": "lov", + "description": "The Translational Medicine Ontology (TMO) is a high-level, patient-centric ontology that extends existing domain ontologies to integrate data across aspects of drug discovery and clinical practice. The ontology has been developed by participants in the World Wide Web Consortium's Semantic Web for Health Care and Life Sciences Interest Group", + "homepage": "http://www.w3.org/2001/sw/hcls/ns/transmed/", + "id": "lov.tmo", + "name": "Translational Medicine Ontology", + "prefix": "tmo", + "source": "lov.linkeddata.es", + "subjects": [ + "health sciences" + ], + "uri_format": "http://www.w3.org/2001/sw/hcls/ns/transmed/$1" + }, + "lov.toco": { + "authority": "lov", + "description": "A ontology developed for telecommunciation network systems with hybrid technologies, e.g., WiFi, LiFi, LTE, 2G/3G, optical, etc.", + "homepage": "http://purl.org/toco/", + "id": "lov.toco", + "name": "Toucan Ontology", + "prefix": "toco", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://purl.org/toco/$1" + }, + "lov.todo": { + "authority": "lov", + "description": "With the aim of enhancing natural communication between workers in industrial environments and the systems to be used by them, TODO (Task-Oriented Dialogue management Ontology) has been developed to be the core of task-oriented dialogue systems. TODO is a core ontology that provides task-oriented dialogue systems with the necessary means to be capable of naturally interacting with workers (both at understanding and at ommunication levels) and that can be easily adapted to different industrial scenarios, reducing adaptation time and costs. Moreover, it allows to store and reproduce the dialogue process to be able to learn from new interactions.", + "homepage": "https://w3id.org/todo", + "id": "lov.todo", + "name": "TODO: Task-Oriented Dialogue management Ontology", + "prefix": "todo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/todo#$1" + }, + "lov.topo": { + "authority": "lov", + "description": "Ontologie d\u00e9crivant les \u00e9l\u00e9ments du territoire et ses infrastructures. Elle repend l'essentiel du vocabulaire de la BDTOPO(IGN) et vise \u00e0 couvrir l'ensemble des entit\u00e9s topographiques et administratives du territoire national. Les th\u00e8mes couverts sont: le r\u00e9seau routier, le r\u00e9seau ferroviaire, le r\u00e9seau de transport d'\u00e9nergie, le r\u00e9seau hydrographique, les b\u00e2timents, la v\u00e9g\u00e9tation arbor\u00e9e, l'orographie, les communes, les points d'activit\u00e9 ou d'int\u00e9r\u00eat.", + "homepage": "http://data.ign.fr/def/topo", + "id": "lov.topo", + "name": "Ontologie des \u00e9l\u00e9ments du territoire et de ses infrastructures de l'IGN", + "prefix": "topo", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://data.ign.fr/def/topo#$1" + }, + "lov.tp": { + "authority": "lov", + "description": "A vocabulary to describe touristic places: accommodations, points of interest, restaurants and attractions.", + "homepage": "http://tour-pedia.org/download/tp.owl", + "id": "lov.tp", + "name": "Tourpedia Ontology", + "prefix": "tp", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://tour-pedia.org/download/tp.owl#$1" + }, + "lov.traffic": { + "authority": "lov", + "description": "An ontology that describes the management of the traffic in a straight road with two lanes, both in the same direction.", + "homepage": "http://www.sensormeasurement.appspot.com/ont/transport/traffic", + "id": "lov.traffic", + "name": "Road Traffic Management", + "prefix": "traffic", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.sensormeasurement.appspot.com/ont/transport/traffic#$1" + }, + "lov.trait": { + "authority": "lov", + "description": "OntoMedia (Ontology for Media) has been designed to describe the traits of entities.", + "homepage": "http://contextus.net/ontology/ontomedia/ext/common/trait#", + "id": "lov.trait", + "name": "OntoMedia Trait Representation", + "prefix": "trait", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://contextus.net/ontology/ontomedia/ext/common/trait#$1" + }, + "lov.transit": { + "authority": "lov", + "description": "A vocabulary for describing transit systems and routes", + "homepage": "http://vocab.org/transit/terms/", + "id": "lov.transit", + "name": "TRANSIT", + "prefix": "transit", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://vocab.org/transit/terms/$1" + }, + "lov.trao": { + "authority": "lov", + "description": "Transport Administration Ontology (TAO) for describing data from Swedish Transport Administration Web site.", + "homepage": "http://linkeddata.finki.ukim.mk/lod/ontology/tao#", + "id": "lov.trao", + "name": "Transport Administration Ontology", + "prefix": "trao", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://linkeddata.finki.ukim.mk/lod/ontology/tao#$1" + }, + "lov.tree": { + "authority": "lov", + "description": "A hypermedia specification for fragmenting collections.", + "homepage": "https://w3id.org/tree", + "id": "lov.tree", + "name": "TREE", + "prefix": "tree", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/tree#$1" + }, + "lov.tresiot": { + "authority": "lov", + "description": "This ontology models trust recommendation concepts in SIoT to bridge the gap between abstract trust concepts and real-world device concepts.", + "homepage": "https://liidr.org/trust-recommendation-in-social-internet-of-things/", + "id": "lov.tresiot", + "name": "Ontology for Trust Recommendation in Social Internet of Things", + "prefix": "tresiot", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://liidr.org/trust-recommendation-in-social-internet-of-things/$1" + }, + "lov.tsioc": { + "authority": "lov", + "description": "Extends the SIOC Core Ontology (Semantically-Interlinked Online Communities) by defining subclasses and subproperties of SIOC terms.", + "homepage": "http://rdfs.org/sioc/types#", + "id": "lov.tsioc", + "name": "SIOC Types Ontology Module", + "prefix": "tsioc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://rdfs.org/sioc/types#$1" + }, + "lov.tsn": { + "authority": "lov", + "description": "This RDF ontology allows describing any Territorial Statistical Nomenclature (TSN) (i.e., partition of the territory) used as a support to socio-economic data (statistical data that describe territory in terms of population, unemployement rate, transport access, etc.).", + "homepage": "http://purl.org/net/tsn#", + "id": "lov.tsn", + "name": "Territorial Statistical Nomenclature Ontology", + "prefix": "tsn", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences", + "earth and related environmental sciences", + "mathematics" + ], + "uri_format": "http://purl.org/net/tsn#$1" + }, + "lov.tsnc": { + "authority": "lov", + "description": "The TSN-Change ontology aims at describing changes that occured from one version of a Territorial Statistical Nomenclature (TSN) (i.e., partition of the territory) and its subsequent (e.g., change in territorial units boundaries to reflect an administrative reorganisation).", + "homepage": "http://purl.org/net/tsnchange#", + "id": "lov.tsnc", + "name": "Territorial Statistical Nomenclature Change Ontology", + "prefix": "tsnc", + "source": "lov.linkeddata.es", + "subjects": [ + "political sciences", + "earth and related environmental sciences", + "mathematics" + ], + "uri_format": "http://purl.org/net/tsnchange#$1" + }, + "lov.turismo": { + "authority": "lov", + "description": "Esta ontolog\u00eda se ha construido dentro del proyecto financiado por el Ayuntamiento de Zaragoza: \"Un visitante, una ruta\", una aplicaci\u00f3n inform\u00e1tica para el c\u00e1lculo de rutas tur\u00edsticas en la ciudad de Zaragoza en base al perfil y contexto del usuario.", + "homepage": "http://idi.fundacionctic.org/cruzar/turismo", + "id": "lov.turismo", + "name": "Ontolog\u00eda de Turismo para el Ayuntamiento de Zaragoza", + "prefix": "turismo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://idi.fundacionctic.org/cruzar/turismo#$1" + }, + "lov.tvc": { + "authority": "lov", + "description": "A pattern for the description of scenarios that involve entities having some value during a particular time and within a particular context.", + "homepage": "http://www.essepuntato.it/2012/04/tvc", + "id": "lov.tvc", + "name": "The Time-indexed Value in Context", + "prefix": "tvc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.essepuntato.it/2012/04/tvc/$1" + }, + "lov.txn": { + "authority": "lov", + "description": "This ontology and the related TaxonConcept data set mints identifiers that are tied to a specific species concept which can have several names and classifications.", + "homepage": "http://lod.taxonconcept.org/ontology/txn.owl", + "id": "lov.txn", + "name": "TaxonConcept Ontology", + "prefix": "txn", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://lod.taxonconcept.org/ontology/txn.owl#$1" + }, + "lov.tzont": { + "authority": "lov", + "description": "A vocabulary to describe time zones and their geographical coverage.", + "homepage": "http://www.w3.org/2006/timezone", + "id": "lov.tzont", + "name": "Time Zone Ontology", + "prefix": "tzont", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2006/timezone#$1" + }, + "lov.uby": { + "authority": "lov", + "description": "OLiA Annotation Model for Uby Parts of Speech (Gurevych et al, 2012)\nextracted from the Uby DTD (http://purl.org/olia/ubyCat.owl, version of Nov 21th, 2012).\n\nReferences\nIryna Gurevych, Judith Eckle-Kohler, Silvana Hartmann, Michael Matuschek, Christian M. Meyer and Christian Wirth, 2012, Uby - A Large-Scale Unified Lexical-Semantic Resource, Proceedings of the 13th Conference of the European Chapter of the Association for Computational Linguistics (EACL 2012), Avignon, France.\n\nThe DTD is made available under a Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) license which is available at http://creativecommons.org/licenses/by-sa/3.0/\nYou are free to share (copy, distribute and transmit) the work, to develop your own extensions (adapt, remix) of the work, and to make commercial use of the work.", + "homepage": "http://purl.org/olia/ubyCat.owl", + "id": "lov.uby", + "name": "ubyCat.owl", + "prefix": "uby", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/olia/ubyCat.owl#$1" + }, + "lov.uco": { + "authority": "lov", + "description": "Vocabulaire Web pour d\u00e9crire les caract\u00e9ristiques des voitures d'occasion pour le commerce \u00e9lectronique.", + "homepage": "http://purl.org/uco/ns#", + "id": "lov.uco", + "name": "Used Cars Ontology", + "prefix": "uco", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/uco/ns#$1" + }, + "lov.ucum": { + "authority": "lov", + "description": "The instances of this ontology have been automatically\n generated from the UCUM (The Unified Code for Units of Measure).\n See http://aurora.rg.iupui.edu/UCUM/ for more details\n on UCUM. The members of the MyMobileWeb consortium\n explicitly acknowledge the copyright of the data from\n the UCUM ontology.", + "homepage": "http://purl.oclc.org/NET/muo/ucum/", + "id": "lov.ucum", + "name": "Units of measurement ontology", + "prefix": "ucum", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://purl.oclc.org/NET/muo/ucum/$1" + }, + "lov.ui": { + "authority": "lov", + "description": "An ontology suitable for describing forms, sequences in widgets", + "homepage": "http://www.w3.org/ns/ui", + "id": "lov.ui", + "name": "A user interface ontology", + "prefix": "ui", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/ui#$1" + }, + "lov.uiot": { + "authority": "lov", + "description": "Core module of the suite of ontologies for urban IoT devices.", + "homepage": "http://www.w3id.org/urban-iot/core", + "id": "lov.uiot", + "name": "Urban IoT Ontologies - Core Module", + "prefix": "uiot", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://www.w3id.org/urban-iot/core#$1" + }, + "lov.uiote": { + "authority": "lov", + "description": "Electric Mobility module of the suite of ontologies for urban IoT devices.", + "homepage": "http://www.w3id.org/urban-iot/electric", + "id": "lov.uiote", + "name": "Ontologie per gli Apparati IoT Urbani - Modulo Electric Mobility", + "prefix": "uiote", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://www.w3id.org/urban-iot/electric#$1" + }, + "lov.uiots": { + "authority": "lov", + "description": "Modulo Sharing Mobility delle ontologie per gli apparati IoT urbani.", + "homepage": "http://www.w3id.org/urban-iot/sharing", + "id": "lov.uiots", + "name": "Ontologie per gli Apparati IoT Urbani - Modulo Sharing Mobility", + "prefix": "uiots", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3id.org/urban-iot/sharing#$1" + }, + "lov.umbel": { + "authority": "lov", + "description": "UMBEL provides a general vocabulary of classes and predicates for describing domain ontologies, with the specific aim of promoting interoperability with external datasets and domains.", + "homepage": "http://umbel.org/umbel", + "id": "lov.umbel", + "name": "Upper Mapping and Binding Exchange Layer", + "prefix": "umbel", + "source": "lov.linkeddata.es", + "subjects": [ + "generic" + ], + "uri_format": "http://umbel.org/umbel#$1" + }, + "lov.uneskos": { + "authority": "lov", + "description": "An RDF vocabulary for extending some SKOS and ISO-THES functions in order to improve the linked data consumption of SKOS datasets", + "homepage": "http://purl.org/umu/uneskos", + "id": "lov.uneskos", + "name": "UNESKOS Vocabulary", + "prefix": "uneskos", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/umu/uneskos#$1" + }, + "lov.uniprot": { + "authority": "lov", + "description": "Properties and classes used for protein annotation", + "homepage": "http://purl.uniprot.org/core/", + "id": "lov.uniprot", + "name": "Uniprot Core Ontology", + "prefix": "uniprot", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.uniprot.org/core/$1" + }, + "lov.uri4uri": { + "authority": "lov", + "description": "This vocabulary describes the entities which may be derived from a URI and the relationships between them, such as Internet Domains, prototcols, file suffixes etc. It was initially issued as part of an April 1st gag, but has utility beyond the initial joke.", + "homepage": "http://uri4uri.net/vocab", + "id": "lov.uri4uri", + "name": "URI Vocabulary", + "prefix": "uri4uri", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://uri4uri.net/vocab#$1" + }, + "lov.usability": { + "authority": "lov", + "description": "Ontology 'Usability' created to describe and store information about interactions of user with a software user interface", + "homepage": "https://w3id.org/usability", + "id": "lov.usability", + "name": "Usability", + "prefix": "usability", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/usability#$1" + }, + "lov.va": { + "authority": "lov", + "description": "This vocabulary allows the semantic description of visual analytics applications. It is based on the RDF Data Cube Vocabulary and the Semanticscience Integrated Ontology.", + "homepage": "http://code-research.eu/ontology/visual-analytics", + "id": "lov.va", + "name": "The Visual Analytics Vocabulary", + "prefix": "va", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://code-research.eu/ontology/visual-analytics#$1" + }, + "lov.vaem": { + "authority": "lov", + "description": "The purpose of VAEM is to provide, by import, a foundation for commonly needed resources when building an ontology.", + "homepage": "http://www.linkedmodel.org/schema/vaem", + "id": "lov.vaem", + "name": "Vocabulary for Attaching Essential Metadata", + "prefix": "vaem", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.linkedmodel.org/schema/vaem#$1" + }, + "lov.vag": { + "authority": "lov", + "description": "The Vagueness Ontology (VO) allows one to specify vagueness characterisations of the TBox entities of an ontology.", + "homepage": "http://www.essepuntato.it/2013/10/vagueness", + "id": "lov.vag", + "name": "The Vagueness Ontology", + "prefix": "vag", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.essepuntato.it/2013/10/vagueness/$1" + }, + "lov.vann": { + "authority": "lov", + "description": "A vocabulary for annotating descriptions of vocabularies with examples and usage notes.", + "homepage": "http://purl.org/vocab/vann/", + "id": "lov.vann", + "name": "VANN: A vocabulary for annotating vocabulary descriptions", + "prefix": "vann", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/vocab/vann/$1" + }, + "lov.vartrans": { + "authority": "lov", + "description": "A model for the representation of lexical information relative to ontologies. Variation and translation module.", + "homepage": "http://www.w3.org/ns/lemon/vartrans", + "id": "lov.vartrans", + "name": "Lexicon Model for Ontologies - Vartrans", + "prefix": "vartrans", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/ns/lemon/vartrans#$1" + }, + "lov.vcard": { + "authority": "lov", + "description": "This ontology models and represents vCards in RDF using current best practices", + "homepage": "http://www.w3.org/2006/vcard/ns", + "id": "lov.vcard", + "name": "An Ontology for vCards", + "prefix": "vcard", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2006/vcard/ns#$1" + }, + "lov.vdpp": { + "authority": "lov", + "description": "The Vocabulary of Dataset Publication Projects (VDPP) allows to represent the status of a dataset publication project. It is mainly based on the Provenance Vocabulary (PRV), the Dataset Provenance Vocabulary (VOIDP), the Vocabulary of Interlinked Datasets (VoID), and the Description of a Project (DOAP) vocabulary.", + "homepage": "http://data.lirmm.fr/ontologies/vdpp", + "id": "lov.vdpp", + "name": "Vocabulary for Dataset Publication Projects", + "prefix": "vdpp", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://data.lirmm.fr/ontologies/vdpp#$1" + }, + "lov.veo": { + "authority": "lov", + "description": "An ontology for describing vehicles and their emissions.", + "homepage": "http://linkeddata.finki.ukim.mk/lod/ontology/veo#", + "id": "lov.veo", + "name": "Vehicle Emissions Ontology", + "prefix": "veo", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://linkeddata.finki.ukim.mk/lod/ontology/veo#$1" + }, + "lov.vgo": { + "authority": "lov", + "description": "The Video Game Ontology is an ontology designed for describing video games and all the resources related to their game plays.", + "homepage": "http://purl.org/net/VideoGameOntology", + "id": "lov.vgo", + "name": "The Video Game Ontology", + "prefix": "vgo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/net/VideoGameOntology#$1" + }, + "lov.vin": { + "authority": "lov", + "description": "This ontology was used as example in the first OWL Recommendation (February 2004)", + "homepage": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine", + "id": "lov.vin", + "name": "Wine Ontology", + "prefix": "vin", + "source": "lov.linkeddata.es", + "subjects": [ + "agriculture, forestry, and fisheries" + ], + "uri_format": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#$1" + }, + "lov.vir": { + "authority": "lov", + "description": "This ontology, called VIR, is an extension of CIDOC-CRM created to sustain propositions on the nature of visual elements and permit these descriptions to be published on the Web.\nWith the term visual element, we refer to those signs identified in the visual space as distinct and documentable units, and subject to an analytical interpretation.\nThe scope of this ontology is to s to provide a framework to support the identification, annotation and interconnections between diverse visual elements and presents and assist their documentation and retrieval. Specifically, the model aims to clarify the identity and the relation of these visual signs, providing the necessary classes to characterise their constituent elements, reference, symbolic content and source of interpretation.\nVIR expands on key entities and properties from CIDOC-CRM, introducing new classes and relationships responding to the visual and art historical community, specifically building up on the iconographical tradition. The result is a model which differentiates between interpretation and element identified, providing a clear distinction between denotation and signification of an element. As a consequence of such distinction, the ontology allows for the definition of diverse denotative criteria for the same representation, which could change based on traditions and perspective. Visual objects can be, in fact, polysemic and ambiguous, and it is not so easy to pin down a denotative or connotative meaning because they are very much context-dependent.", + "homepage": "http://w3id.org/vir#", + "id": "lov.vir", + "name": "VIR - Visual Representation ontology", + "prefix": "vir", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://w3id.org/vir#$1" + }, + "lov.vivo": { + "authority": "lov", + "description": "An ontology of academic and research domain, developed in the framework of the VIVO project", + "homepage": "http://vivoweb.org/ontology/core", + "id": "lov.vivo", + "name": "VIVO Core Ontology", + "prefix": "vivo", + "source": "lov.linkeddata.es", + "subjects": [ + "educational sciences" + ], + "uri_format": "http://vivoweb.org/ontology/core#$1" + }, + "lov.vmm": { + "authority": "lov", + "description": "In Software Engineering, as well as in other disciplines, it is common to use model-editing tools using a visual language. In particular, the editing tools allow you to design UML software models, so that let you manage much of the work products of a project. From the study of several UML tools, such as Enterprise Architect, Visual Paradigm for UML or Rational Rose, this vocabulary has been defined. This vocabulary represents the basic structure of these UML tools, but does not exclude others that allow you to use other visual languages for modeling software systems or other entities.", + "homepage": "http://spi-fm.uca.es/spdef/models/genericTools/vmm/1.0", + "id": "lov.vmm", + "name": "Visual Modeling tool Model", + "prefix": "vmm", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://spi-fm.uca.es/spdef/models/genericTools/vmm/1.0#$1" + }, + "lov.voaf": { + "authority": "lov", + "description": "A vocabulary to describe linked data vocabularies and their relations", + "homepage": "http://purl.org/vocommons/voaf", + "id": "lov.voaf", + "name": "Vocabulary of a Friend", + "prefix": "voaf", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/vocommons/voaf#$1" + }, + "lov.voag": { + "authority": "lov", + "description": "VOAG is intended to specify licensing, attribution, provenance and governance of an ontology.", + "homepage": "http://voag.linkedmodel.org/schema/voag", + "id": "lov.voag", + "name": "Vocabulary Of Attribution and Governance", + "prefix": "voag", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://voag.linkedmodel.org/voag#$1" + }, + "lov.vocals": { + "authority": "lov", + "description": "This ontology aims to model RDF streams, their metadata, and access endpoints for publishing and consuming these streams", + "homepage": "http://w3id.org/rsp/vocals#", + "id": "lov.vocals", + "name": "VoCaLS: A Vocabulary and Catalog for Linked Streams", + "prefix": "vocals", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://w3id.org/rsp/vocals#$1" + }, + "lov.void": { + "authority": "lov", + "description": "The Vocabulary of Interlinked Datasets (VoID) is an RDF Schema vocabulary for expressing metadata about RDF datasets.", + "homepage": "http://vocab.deri.ie/void", + "id": "lov.void", + "name": "Vocabulary of Interlinked Datasets", + "prefix": "void", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://rdfs.org/ns/void#$1" + }, + "lov.voidext": { + "authority": "lov", + "description": "The Extension of the Vocabulary of Interlinked Datasets (VoID) RDF Schema that includes the concept of virtual links. This extension enhances interoperability among heterogeneous and distributed RDF data sets by bridging them through explicitly defined virtual links.", + "homepage": "http://purl.org/query/voidext", + "id": "lov.voidext", + "name": "Extended Vocabulary of Interlinked Datasets (VoIDext)", + "prefix": "voidext", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/query/voidext#$1" + }, + "lov.voidwh": { + "authority": "lov", + "description": "An extension of W3C VoID that is able to represent these metrics for expressing the Connectivity Metrics of a Semantic Warehouse.", + "homepage": "http://www.ics.forth.gr/isl/VoIDWarehouse/VoID_Extension_Schema.owl", + "id": "lov.voidwh", + "name": "Void Warehouse Ontology", + "prefix": "voidwh", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.ics.forth.gr/isl/VoIDWarehouse/VoID_Extension_Schema.owl$1" + }, + "lov.vra": { + "authority": "lov", + "description": "Le VRA Core est un ensemble de propri\u00e9t\u00e9s de m\u00e9tadonn\u00e9es pour d\u00e9crire les oeuvres d'art visuelles et les images qui les documentent.", + "homepage": "http://simile.mit.edu/2003/10/ontologies/vraCore3#", + "id": "lov.vra", + "name": "RDFS Ontology for VRA", + "prefix": "vra", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://simile.mit.edu/2003/10/ontologies/vraCore3#$1" + }, + "lov.vrank": { + "authority": "lov", + "description": "The Vocabulary for Ranking (vRank) is an RDF Schema vocabulary for materializing ranking computations.", + "homepage": "http://vocab.sti2.at/vrank", + "id": "lov.vrank", + "name": "Vocabulary for Ranking", + "prefix": "vrank", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/voc/vrank#$1" + }, + "lov.vs": { + "authority": "lov", + "description": "An RDF vocabulary for relating SW vocabulary terms to their status.", + "homepage": "http://www.w3.org/2003/06/sw-vocab-status/ns", + "id": "lov.vs", + "name": "SemWeb Vocab Status ontology", + "prefix": "vs", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2003/06/sw-vocab-status/ns#$1" + }, + "lov.vsearch": { + "authority": "lov", + "description": "The vSearch vocabulary facilitates the querying and retrieval of vocabulary terms from a vocabularies directory. It can be used to map keywords with mapped result terms accompanied with a ranking value.", + "homepage": "http://purl.org/vsearch/", + "id": "lov.vsearch", + "name": "vSearch Vocabulary", + "prefix": "vsearch", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/vsearch/$1" + }, + "lov.vso": { + "authority": "lov", + "description": "The Vehicle Sales Ontology for Semantic Web-based E-Commerce", + "homepage": "http://purl.org/vso/ns", + "id": "lov.vso", + "name": "Vehicle Sales Ontology", + "prefix": "vso", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/vso/ns#$1" + }, + "lov.vvo": { + "authority": "lov", + "description": "A vocabulary for describing Volkswagen-specific features of automobiles and their components", + "homepage": "http://purl.org/vvo/ns#", + "id": "lov.vvo", + "name": "Volkswagen Vehicles Ontology", + "prefix": "vvo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/vvo/ns#$1" + }, + "lov.w3c-ssn": { + "authority": "lov", + "description": "This ontology describes sensors and observations, and related concepts. It does not describe domain concepts, time, locations, etc. as these are intended to be included from other ontologies via OWL imports.", + "homepage": "https://www.w3.org/ns/ssn", + "id": "lov.w3c-ssn", + "name": "Semantic Sensor Network Ontology", + "prefix": "w3c-ssn", + "source": "lov.linkeddata.es", + "subjects": [ + "earth and related environmental sciences", + "computer and information sciences" + ], + "uri_format": "https://www.w3.org/ns/ssn/$1" + }, + "lov.wai": { + "authority": "lov", + "description": "WAI vocabulary aims to extend the FOAF specification through introducing the concepts of roles and profiles. In society, people are more than just persons, they can be musicians, presidents of government, firemen, football players or car drivers in a traffic jam.", + "homepage": "http://purl.org/wai#", + "id": "lov.wai", + "name": "Roles and Profiles Ontology", + "prefix": "wai", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/wai#$1" + }, + "lov.wdrs": { + "authority": "lov", + "description": "The Protocol for Web Description Resources (POWDER) allows metadata to be associated with groups of resources such as those found on a Web site.", + "homepage": "http://www.w3.org/2007/05/powder-s", + "id": "lov.wdrs", + "name": "Protocol for Web Description Resources", + "prefix": "wdrs", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://www.w3.org/2007/05/powder-s#$1" + }, + "lov.wf-invoc": { + "authority": "lov", + "description": "Wf-invoc is a simple profile of the P-plan ontology to describe how workflow steps are invoked within a workflow execution.", + "homepage": "http://purl.org/net/wf-invocation", + "id": "lov.wf-invoc", + "name": "Workflow Invocation Ontology", + "prefix": "wf-invoc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/net/wf-invocation#$1" + }, + "lov.wfdesc": { + "authority": "lov", + "description": "This ontology (\"wfdesc\") describes an abstract workflow description structure, allowing the description of a scientific workflow as a direct acyclic graph, or a dataflow. This ontology is meant as an upper ontology for more specific workflow definitions, and as a way to express abstract workflows. The wfprov ontology shows how to link these descriptions to a provenance trace of a workflow execution.", + "homepage": "http://purl.org/wf4ever/wfdesc", + "id": "lov.wfdesc", + "name": "The Wfdesc ontology", + "prefix": "wfdesc", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/wf4ever/wfdesc#$1" + }, + "lov.wfm": { + "authority": "lov", + "description": "Ontology for describing Workflow Motifs. Workflow Motifs outline the kinds of data-intensive activities that are observed in workflows (data-operation motifs) and the different manners in which activities are implemented within workflows (workflow-oriented motifs).", + "homepage": "http://purl.org/net/wf-motifs", + "id": "lov.wfm", + "name": "The Workflow Motif Ontology", + "prefix": "wfm", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/net/wf-motifs#$1" + }, + "lov.wfprov": { + "authority": "lov", + "description": "The wfprov ontology shows how to express minimal provenance information about the execution of a workflow described using the wfdesc ontology.", + "homepage": "http://purl.org/wf4ever/wfprov", + "id": "lov.wfprov", + "name": "The Wfprov Ontology", + "prefix": "wfprov", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/wf4ever/wfprov#$1" + }, + "lov.whisky": { + "authority": "lov", + "description": "A small vocabulary for describing whisky varieties", + "homepage": "http://vocab.org/whisky/terms", + "id": "lov.whisky", + "name": "Whisky Ontology", + "prefix": "whisky", + "source": "lov.linkeddata.es", + "subjects": [ + "agriculture, forestry, and fisheries" + ], + "uri_format": "http://vocab.org/whisky/terms/$1" + }, + "lov.whois": { + "authority": "lov", + "description": "A vocabulary to describe a person's profile and history", + "homepage": "http://www.kanzaki.com/ns/whois", + "id": "lov.whois", + "name": "Who's who description vocabulary", + "prefix": "whois", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.kanzaki.com/ns/whois#$1" + }, + "lov.wi": { + "authority": "lov", + "description": "The Weighted Interests Vocabulary specification provides basic concepts and properties for describing describing preferences (interests) within contexts, their temporal dynamics and their origin on/ for the Semantic Web.", + "homepage": "http://purl.org/ontology/wi/core#", + "id": "lov.wi", + "name": "The Weighted Interests Vocabulary", + "prefix": "wi", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/wi/core#$1" + }, + "lov.wikibase": { + "authority": "lov", + "description": "The system ontology of Wikibase", + "homepage": "http://wikiba.se/ontology", + "id": "lov.wikibase", + "name": "Wikibase system ontology", + "prefix": "wikibase", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://wikiba.se/ontology#$1" + }, + "lov.wikim": { + "authority": "lov", + "description": "A partir del an\u00e1lisis de diversos sistemas, como MediaWiki, Confluence o DokuWiki, se ha dise\u00f1ado este vocabulario. T\u00e9ngase en cuenta que este modelo no describe completamente el modelo conceptual de todos los tipos de sistemas wiki, sino s\u00f3lo de los elementos principales.", + "homepage": "http://spi-fm.uca.es/spdef/models/genericTools/wikim/1.0", + "id": "lov.wikim", + "name": "WIKI tool Model", + "prefix": "wikim", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://spi-fm.uca.es/spdef/models/genericTools/wikim/1.0#$1" + }, + "lov.wl": { + "authority": "lov", + "description": "WSMO-Lite is a lightweight approach to the semantic annotation of Web service descriptions, defined by the STI2 working group Conceptual Models for Services", + "homepage": "http://www.wsmo.org/ns/wsmo-lite#", + "id": "lov.wl", + "name": "WSMO-Lite Ontology", + "prefix": "wl", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://www.wsmo.org/ns/wsmo-lite#$1" + }, + "lov.wlo": { + "authority": "lov", + "description": "A simple vocabulary for describing biological species and related taxa.", + "homepage": "http://purl.org/ontology/wo/", + "id": "lov.wlo", + "name": "BBC Wildlife Ontology", + "prefix": "wlo", + "source": "lov.linkeddata.es", + "subjects": [ + "biological sciences" + ], + "uri_format": "http://purl.org/ontology/wo/$1" + }, + "lov.wo": { + "authority": "lov", + "description": "The Weighting Ontology specification provides a vocabulary for describing weightings and their referenced scales, on/ for the Semantic Web.", + "homepage": "http://purl.org/ontology/wo/core#", + "id": "lov.wo", + "name": "Weighting Ontology", + "prefix": "wo", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://purl.org/ontology/wo/core#$1" + }, + "lov.wot": { + "authority": "lov", + "description": "Web Of Trust (wot) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language.", + "homepage": "http://xmlns.com/wot/0.1/", + "id": "lov.wot", + "name": "Web Of Trust", + "prefix": "wot", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://xmlns.com/wot/0.1/$1" + }, + "lov.wotsec": { + "authority": "lov", + "description": "Security mechanisms for the the Web of Thing", + "homepage": "https://www.w3.org/2019/wot/security#", + "id": "lov.wotsec", + "name": "Security mechanisms for the Web of Things", + "prefix": "wotsec", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "https://www.w3.org/2019/wot/security#$1" + }, + "lov.xapi": { + "authority": "lov", + "description": "This ontology contains a list of the classes and properties that can be used when for creating and publishing a controlled vocabulary dataset for xAPI communities of practice.", + "homepage": "http://purl.org/xapi/ontology#", + "id": "lov.xapi", + "name": "xAPI Controlled Vocabulary Ontology", + "prefix": "xapi", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://purl.org/xapi/ontology#$1" + }, + "lov.xbrll": { + "authority": "lov", + "description": "An attempt to publish XBRL standard following best practices on the Web. Not an official version from XBRL International and under development", + "homepage": "https://w3id.org/vocab/xbrll", + "id": "lov.xbrll", + "name": "A lightweight XBRL vocabulary", + "prefix": "xbrll", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "https://w3id.org/vocab/xbrll#$1" + }, + "lov.xhv": { + "authority": "lov", + "description": "This is a vocabulary collection utilized by XHTML Family modules and document types using XHTML Modularization, including XHTML Role and XHTML + RDFa as defined in rdfa-syntax.", + "homepage": "http://www.w3.org/1999/xhtml/vocab", + "id": "lov.xhv", + "name": "XHTML Vocabulary", + "prefix": "xhv", + "source": "lov.linkeddata.es", + "subjects": [ + "computer and information sciences" + ], + "uri_format": "http://www.w3.org/1999/xhtml/vocab#$1" + }, + "lov.xkos": { + "authority": "lov", + "description": "Extension de SKOS pour la repr\u00e9sentation des nomenclatures", + "homepage": "http://rdf-vocabulary.ddialliance.org/xkos", + "id": "lov.xkos", + "name": "XKOS", + "prefix": "xkos", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://rdf-vocabulary.ddialliance.org/xkos#$1" + }, + "lov.xsd": { + "authority": "lov", + "description": "The XML Schema representation", + "homepage": "http://www.w3.org/2001/XMLSchema", + "id": "lov.xsd", + "name": "XML Schema", + "prefix": "xsd", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://www.w3.org/2001/XMLSchema#$1" + }, + "lov.yoga": { + "authority": "lov", + "description": "Yoga Ontology is the list of vocabularies that define the yogic practice. Where Yoga is the union of the mind and body.", + "homepage": "https://yogaontology.org/ontology/", + "id": "lov.yoga", + "name": "Yoga Ontology", + "prefix": "yoga", + "source": "lov.linkeddata.es", + "subjects": [ + "health sciences" + ], + "uri_format": "https://yogaontology.org/ontology/$1" + }, + "lov.zbwext": { + "authority": "lov", + "description": "Extensions to SKOS and other standard vocabularies used by the German National Library of Economics (ZBW)", + "homepage": "http://zbw.eu/namespaces/zbw-extensions", + "id": "lov.zbwext", + "name": "ZBW Extensions", + "prefix": "zbwext", + "source": "lov.linkeddata.es", + "subjects": [], + "uri_format": "http://zbw.eu/namespaces/zbw-extensions/$1" + } +} diff --git a/fuji_server/data/linked_vocabs/mmisw_ontologies.json b/fuji_server/data/linked_vocabs/mmisw_ontologies.json index 9e26dfee..0967ef42 100644 --- a/fuji_server/data/linked_vocabs/mmisw_ontologies.json +++ b/fuji_server/data/linked_vocabs/mmisw_ontologies.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/fuji_server/data/linked_vocabs/sdn_ontologies.json b/fuji_server/data/linked_vocabs/sdn_ontologies.json index b509f4a0..285b25cf 100644 --- a/fuji_server/data/linked_vocabs/sdn_ontologies.json +++ b/fuji_server/data/linked_vocabs/sdn_ontologies.json @@ -1 +1,4160 @@ -{"seadatanet.a01": {"id": "seadatanet.a01", "prefix": "a01", "uri_format": "http://vocab.nerc.ac.uk/collection/A01/current/$1", "name": "International Coastal Atlas Network Coastal Erosion Global Thesaurus", "description": "Terms used at all hierarchical levels in the ICAN global thesaurus for coastal erosion. Terms used to populate drop-down lists in discovery portals.", "homepage": "http://vocab.nerc.ac.uk/collection/A01/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.a02": {"id": "seadatanet.a02", "prefix": "a02", "uri_format": "http://vocab.nerc.ac.uk/collection/A02/current/$1", "name": "Oregon Coastal Atlas Coastal Erosion Thesaurus markup terms", "description": "Terms used at all hierarchical levels in the Oregon Coastal Atlas for coastal erosion layers, datasets and discovery.", "homepage": "http://vocab.nerc.ac.uk/collection/A02/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.a03": {"id": "seadatanet.a03", "prefix": "a03", "uri_format": "http://vocab.nerc.ac.uk/collection/A03/current/$1", "name": "Oregon Coastal Atlas Coastal Erosion Thesaurus discovery terms", "description": "Terms used at all hierarchical levels in the Oregon Coastal Atlas for categorisation and discovery, but not for layer or dataset markup.", "homepage": "http://vocab.nerc.ac.uk/collection/A03/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.a04": {"id": "seadatanet.a04", "prefix": "a04", "uri_format": "http://vocab.nerc.ac.uk/collection/A04/current/$1", "name": "MIDA Coastal Erosion Thesaurus", "description": "A collection of terms used by the Irish Marine Data Atlas in association with the topic of coastal erosion", "homepage": "http://vocab.nerc.ac.uk/collection/A04/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.a05": {"id": "seadatanet.a05", "prefix": "a05", "uri_format": "http://vocab.nerc.ac.uk/collection/A05/current/$1", "name": "AtlantOS Essential Variables", "description": "Collection of terms used to group key measurements into a set of Essential Variables (EV) and their associated units as part of the AtlantOS Atlantic Ocean dataset", "homepage": "http://vocab.nerc.ac.uk/collection/A05/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.b02": {"id": "seadatanet.b02", "prefix": "b02", "uri_format": "http://vocab.nerc.ac.uk/collection/B02/current/$1", "name": "BODC-annotated certified reference materials", "description": "Internationally registered materials used to assess the accuracy of analyses and for laboratory intercomparability studies with unique identifiers assigned by BODC.", "homepage": "http://vocab.nerc.ac.uk/collection/B02/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.b03": {"id": "seadatanet.b03", "prefix": "b03", "uri_format": "http://vocab.nerc.ac.uk/collection/B03/current/$1", "name": "BODC-annotated reference material classifiers", "description": "Terms used to classify the type of reference material used by laboratories in the verification of analytical techniques in terms of consistency, accuracy and precision", "homepage": "http://vocab.nerc.ac.uk/collection/B03/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.b04": {"id": "seadatanet.b04", "prefix": "b04", "uri_format": "http://vocab.nerc.ac.uk/collection/B04/current/$1", "name": "BODC people titles", "description": "Terms used to populate the title field in the BODC address book.", "homepage": "http://vocab.nerc.ac.uk/collection/B04/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.b05": {"id": "seadatanet.b05", "prefix": "b05", "uri_format": "http://vocab.nerc.ac.uk/collection/B05/current/$1", "name": "BODC governance roles", "description": "Terms used by BODC to describe roles that may be given to people within a governance structure.", "homepage": "http://vocab.nerc.ac.uk/collection/B05/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.b06": {"id": "seadatanet.b06", "prefix": "b06", "uri_format": "http://vocab.nerc.ac.uk/collection/B06/current/$1", "name": "BODC data and metadata integrity checks", "description": "Terms describing automated integrity checks applied to data and metadata during BODC quality control.", "homepage": "http://vocab.nerc.ac.uk/collection/B06/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.b07": {"id": "seadatanet.b07", "prefix": "b07", "uri_format": "http://vocab.nerc.ac.uk/collection/B07/current/$1", "name": "Sampling net gear deployment vocabulary", "description": "A catalogue of deployment methods of sampling net gears for the collection of mainly plankton, micronekton, and neuston organisms based on Wiebe P.H. et al. (2014)", "homepage": "http://vocab.nerc.ac.uk/collection/B07/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.b09": {"id": "seadatanet.b09", "prefix": "b09", "uri_format": "http://vocab.nerc.ac.uk/collection/B09/current/$1", "name": "Celtic Seas Partnership data owner nations bordering MSFD Celtic Seas Marine Region", "description": "Terms used to describe single and multiple nations who own datasets (and are part of the Celtic Seas Partnership) bounding the Celtic Seas Marine Region as designated by the Marine Strategy Framework Directive (MSFD)", "homepage": "http://vocab.nerc.ac.uk/collection/B09/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.b11": {"id": "seadatanet.b11", "prefix": "b11", "uri_format": "http://vocab.nerc.ac.uk/collection/B11/current/$1", "name": "BODC Standard Operating Procedures and Protocols for environmental observations", "description": "Procedures or protocols that have been adopted by communities to ensure consistent and comparable methods are used when making observations from the environment. This also includes derivation and quality assurance practices.", "homepage": "http://vocab.nerc.ac.uk/collection/B11/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.b12": {"id": "seadatanet.b12", "prefix": "b12", "uri_format": "http://vocab.nerc.ac.uk/collection/B12/current/$1", "name": "BODC measurement numeric attribute types", "description": "Terms used by BODC to define measurement attributes described by numbers associated with data held in its repositories.", "homepage": "http://vocab.nerc.ac.uk/collection/B12/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.b20": {"id": "seadatanet.b20", "prefix": "b20", "uri_format": "http://vocab.nerc.ac.uk/collection/B20/current/$1", "name": "Celtic Seas Partnership stakeholder sectors", "description": "Terms used by the Celtic Seas Partnership to categorise stakeholders according to the marine areas within which they operate.", "homepage": "http://vocab.nerc.ac.uk/collection/B20/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.b21": {"id": "seadatanet.b21", "prefix": "b21", "uri_format": "http://vocab.nerc.ac.uk/collection/B21/current/$1", "name": "Celtic Seas Partnership scale", "description": "Terms used by the Celtic Seas Partnership to broadly describe the spatial area of influence of a project, programme or initiative.", "homepage": "http://vocab.nerc.ac.uk/collection/B21/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.b22": {"id": "seadatanet.b22", "prefix": "b22", "uri_format": "http://vocab.nerc.ac.uk/collection/B22/current/$1", "name": "Celtic Seas Partnership governance mechanisms", "description": "Terms used by the Celtic Seas Partnership to describe the transboundary nature of a project, programme or initiative.", "homepage": "http://vocab.nerc.ac.uk/collection/B22/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.b39": {"id": "seadatanet.b39", "prefix": "b39", "uri_format": "http://vocab.nerc.ac.uk/collection/B39/current/$1", "name": "NMF-SS Research Vessel underway variable NetCDF vocabulary", "description": "Names of variables recorded into NetCDF files by the underway monitoring system on National Marine Facilities Sea Systems (NMF-SS) research vessels such as the RRS James Cook and RRS Discovery. Variables are from meteorological, hydrographic and navigational instruments.", "homepage": "http://vocab.nerc.ac.uk/collection/B39/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.b75": {"id": "seadatanet.b75", "prefix": "b75", "uri_format": "http://vocab.nerc.ac.uk/collection/B75/current/$1", "name": "BODC Organisations", "description": "Up-to-date names and addresses for organisational entities referenced in BODC systems.", "homepage": "http://vocab.nerc.ac.uk/collection/B75/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.b76": {"id": "seadatanet.b76", "prefix": "b76", "uri_format": "http://vocab.nerc.ac.uk/collection/B76/current/$1", "name": "BODC Platform Models", "description": "Terms used to describe designs or versions of platforms.", "homepage": "http://vocab.nerc.ac.uk/collection/B76/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.bq1": {"id": "seadatanet.bq1", "prefix": "bq1", "uri_format": "http://vocab.nerc.ac.uk/collection/BQ1/current/$1", "name": "EMODnet Bathymetry Quality Indicators of horizontal accuracy (QI_Horizontal)", "description": "Terms used by the EMODnet Bathymetry Lot to define the estimated horizontal accuracy of bathymetric data (QI_Horizontal).", "homepage": "http://vocab.nerc.ac.uk/collection/BQ1/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.bq2": {"id": "seadatanet.bq2", "prefix": "bq2", "uri_format": "http://vocab.nerc.ac.uk/collection/BQ2/current/$1", "name": "EMODnet Bathymetry Quality Indicators of vertical accuracy (QI_Vertical)", "description": "Terms used by the EMODnet Bathymetry Lot to define the estimated vertical accuracy of bathymetric data (QI_Vertical).", "homepage": "http://vocab.nerc.ac.uk/collection/BQ2/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.bq3": {"id": "seadatanet.bq3", "prefix": "bq3", "uri_format": "http://vocab.nerc.ac.uk/collection/BQ3/current/$1", "name": "EMODnet Bathymetry Quality Indicators of survey purpose (QI_Purpose)", "description": "Terms used by the EMODnet Bathymetry Lot to define the purpose of the bathymetry survey (QI_Purpose).", "homepage": "http://vocab.nerc.ac.uk/collection/BQ3/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c00": {"id": "seadatanet.c00", "prefix": "c00", "uri_format": "http://vocab.nerc.ac.uk/collection/C00/current/$1", "name": "BODC Seafloor Depth Data Sources", "description": "Terms used to describe the provenance of a water depth included in BODC metadata", "homepage": "http://vocab.nerc.ac.uk/collection/C00/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c10": {"id": "seadatanet.c10", "prefix": "c10", "uri_format": "http://vocab.nerc.ac.uk/collection/C10/current/$1", "name": "BODC series feature types", "description": "Terms that describe groups of BODC series with common independent variable characteristics.", "homepage": "http://vocab.nerc.ac.uk/collection/C10/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c16": {"id": "seadatanet.c16", "prefix": "c16", "uri_format": "http://vocab.nerc.ac.uk/collection/C16/current/$1", "name": "SeaDataNet sea areas", "description": "Sea area terms from the IHB(1953) list plus additional terms added under SeaDataNet governance.", "homepage": "http://vocab.nerc.ac.uk/collection/C16/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c17": {"id": "seadatanet.c17", "prefix": "c17", "uri_format": "http://vocab.nerc.ac.uk/collection/C17/current/$1", "name": "ICES Platform Codes", "description": "Identifiers and metadata for platform instances (combinations of names and physical entities such as hulls or airframes).", "homepage": "http://vocab.nerc.ac.uk/collection/C17/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c18": {"id": "seadatanet.c18", "prefix": "c18", "uri_format": "http://vocab.nerc.ac.uk/collection/C18/current/$1", "name": "Intergovernmental Oceanographic Commission countries", "description": "Country names published by ICES on behalf of IOC as part of their RNODC (formats) responsibility. Maintained until 2003.", "homepage": "http://vocab.nerc.ac.uk/collection/C18/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c19": {"id": "seadatanet.c19", "prefix": "c19", "uri_format": "http://vocab.nerc.ac.uk/collection/C19/current/$1", "name": "SeaVoX salt and fresh water body gazetteer", "description": "Terms specified by the SeaVoX vocabulary governance to describe coherent regions of the hydrosphere. Includes land masses enclosing freshwater bodies.", "homepage": "http://vocab.nerc.ac.uk/collection/C19/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c30": {"id": "seadatanet.c30", "prefix": "c30", "uri_format": "http://vocab.nerc.ac.uk/collection/C30/current/$1", "name": "Active vocabulary content governance authorities", "description": "Bodies responsible for the intellectual control of vocabularies served by the NDG/SeaDataNet vocabulary server.", "homepage": "http://vocab.nerc.ac.uk/collection/C30/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c31": {"id": "seadatanet.c31", "prefix": "c31", "uri_format": "http://vocab.nerc.ac.uk/collection/C31/current/$1", "name": "World Meteorological Organisation voluntary observing ship category", "description": "WMO ship type codes used to classify voluntary observing ships. Source: [WMO No.47 - International List of Selected, Supplementary and Auxiliary Ships](http://www.wmo.int/pages/prog/www/ois/pub47/pub47-home.htm).", "homepage": "http://vocab.nerc.ac.uk/collection/C31/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c32": {"id": "seadatanet.c32", "prefix": "c32", "uri_format": "http://vocab.nerc.ac.uk/collection/C32/current/$1", "name": "International Standards Organisation countries", "description": "ISO country codes from ISO3166-1 and ISO3166-3 lists taken from www.iso.org on 16/08/2011 plus OGC terms for missing values and the ISO 3166 Maintenance Agency (ISO3166/MA) Exceptionally Reserved code for the European Union.", "homepage": "http://vocab.nerc.ac.uk/collection/C32/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c33": {"id": "seadatanet.c33", "prefix": "c33", "uri_format": "http://vocab.nerc.ac.uk/collection/C33/current/$1", "name": "NERC DataGrid data production tool category", "description": "Abbreviated terms used to specify categories of data production tools in the NERC DataGrid MOLES metadata schema.", "homepage": "http://vocab.nerc.ac.uk/collection/C33/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c34": {"id": "seadatanet.c34", "prefix": "c34", "uri_format": "http://vocab.nerc.ac.uk/collection/C34/current/$1", "name": "Activity purpose categories", "description": "Terms used to specify why an activity was undertaken.", "homepage": "http://vocab.nerc.ac.uk/collection/C34/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c35": {"id": "seadatanet.c35", "prefix": "c35", "uri_format": "http://vocab.nerc.ac.uk/collection/C35/current/$1", "name": "European Nature Information System Level 3 Habitats", "description": "Medium-granularity (hierarchical level 3 of 5) terms describing the environment associated with an activity from a biological perspective.", "homepage": "http://vocab.nerc.ac.uk/collection/C35/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c36": {"id": "seadatanet.c36", "prefix": "c36", "uri_format": "http://vocab.nerc.ac.uk/collection/C36/current/$1", "name": "Monitoring activity legislative drivers", "description": "Legislative acts, agreements and treaties that have provided the impetus for monitoring activities to be undertaken.", "homepage": "http://vocab.nerc.ac.uk/collection/C36/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c37": {"id": "seadatanet.c37", "prefix": "c37", "uri_format": "http://vocab.nerc.ac.uk/collection/C37/current/$1", "name": "Ten-degree Marsden Squares", "description": "Labels applied to areas of ten degrees latitude by ten degrees longitude in the Marsden Square system.", "homepage": "http://vocab.nerc.ac.uk/collection/C37/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c38": {"id": "seadatanet.c38", "prefix": "c38", "uri_format": "http://vocab.nerc.ac.uk/collection/C38/current/$1", "name": "SeaDataNet Ports Gazetteer", "description": "Names of a geographic location at which a cruise may begin or end. Used by SeaDataNet to populate Cruise Summary Report metadata.", "homepage": "http://vocab.nerc.ac.uk/collection/C38/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c39": {"id": "seadatanet.c39", "prefix": "c39", "uri_format": "http://vocab.nerc.ac.uk/collection/C39/current/$1", "name": "World Meteorological Organisation sea states", "description": "Codes and terms developed from the Douglas wind sea states to describe the general condition of the surface of a large water body.", "homepage": "http://vocab.nerc.ac.uk/collection/C39/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c40": {"id": "seadatanet.c40", "prefix": "c40", "uri_format": "http://vocab.nerc.ac.uk/collection/C40/current/$1", "name": "Bonn Agreement pollution report accuracy", "description": "Terms used to classify the accuracy and reliablity of pollution reports filed under the Bonn Agreement.", "homepage": "http://vocab.nerc.ac.uk/collection/C40/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c41": {"id": "seadatanet.c41", "prefix": "c41", "uri_format": "http://vocab.nerc.ac.uk/collection/C41/current/$1", "name": "BODC marine pollution sources", "description": "Terms developed by BODC to provide a standard classification of pollution sources to be used in UK pollution reports filed under the Bonn Agreement.", "homepage": "http://vocab.nerc.ac.uk/collection/C41/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c43": {"id": "seadatanet.c43", "prefix": "c43", "uri_format": "http://vocab.nerc.ac.uk/collection/C43/current/$1", "name": "BODC oilspill quantity", "description": "Terms developed by BODC to classify the magnitude of a discharge of oil into the marine environment", "homepage": "http://vocab.nerc.ac.uk/collection/C43/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c45": {"id": "seadatanet.c45", "prefix": "c45", "uri_format": "http://vocab.nerc.ac.uk/collection/C45/current/$1", "name": "Marine Strategy Framework Directive descriptors 2010/477/EU", "description": "Concepts specified as descriptors of good environmental status as defined by the Marine Strategy Framework Directive as published in 2010/477/EU: Commission Decision of 1 September 2010 on criteria and methodological standards on good environmental status of marine waters (notified under document C(2010) 5956).", "homepage": "http://vocab.nerc.ac.uk/collection/C45/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c46": {"id": "seadatanet.c46", "prefix": "c46", "uri_format": "http://vocab.nerc.ac.uk/collection/C46/current/$1", "name": "Marine Strategy Framework Directive criteria 2010/477/EU", "description": "Concepts specified as criteria to be used to measure good environmental status as defined by the Marine Strategy Framework Directive as published in 2010/477/EU: Commission Decision of 1 September 2010 on criteria and methodological standards on good environmental status of marine waters (notified under document C(2010) 5956).", "homepage": "http://vocab.nerc.ac.uk/collection/C46/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c47": {"id": "seadatanet.c47", "prefix": "c47", "uri_format": "http://vocab.nerc.ac.uk/collection/C47/current/$1", "name": "Marine Strategy Framework Directive indicators 2010/477/EU", "description": "Concepts specified as indicators to be used to measure good environmental status as defined by the Marine Strategy Framework Directive as published in 2010/477/EU: Commission Decision of 1 September 2010 on criteria and methodological standards on good environmental status of marine waters (notified under document C(2010) 5956).", "homepage": "http://vocab.nerc.ac.uk/collection/C47/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c48": {"id": "seadatanet.c48", "prefix": "c48", "uri_format": "http://vocab.nerc.ac.uk/collection/C48/current/$1", "name": "MEDIN Data Guidelines", "description": "Documents produced by the Marine Environmental Data and Information Network specifying information content standards for the collection of specific types of marine data", "homepage": "http://vocab.nerc.ac.uk/collection/C48/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c59": {"id": "seadatanet.c59", "prefix": "c59", "uri_format": "http://vocab.nerc.ac.uk/collection/C59/current/$1", "name": "BODC organisation roles within activities and projects", "description": "Generic terms used by BODC to describe the relationship between organisations and projects or data collection activities such as cruises", "homepage": "http://vocab.nerc.ac.uk/collection/C59/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c60": {"id": "seadatanet.c60", "prefix": "c60", "uri_format": "http://vocab.nerc.ac.uk/collection/C60/current/$1", "name": "NERC DataGrid vocabulary term relationships", "description": "Terms used in the NDG project to describe the relationship between subjects and objects in RDF triples, including vocabulary term mappings.", "homepage": "http://vocab.nerc.ac.uk/collection/C60/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c61": {"id": "seadatanet.c61", "prefix": "c61", "uri_format": "http://vocab.nerc.ac.uk/collection/C61/current/$1", "name": "BODC post town names", "description": "Labels used by BODC to populate 'city' or 'post town' metadata fields.", "homepage": "http://vocab.nerc.ac.uk/collection/C61/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c62": {"id": "seadatanet.c62", "prefix": "c62", "uri_format": "http://vocab.nerc.ac.uk/collection/C62/current/$1", "name": "BODC administrative region names", "description": "Labels used by BODC to populate 'county' metadata fields.", "homepage": "http://vocab.nerc.ac.uk/collection/C62/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c64": {"id": "seadatanet.c64", "prefix": "c64", "uri_format": "http://vocab.nerc.ac.uk/collection/C64/current/$1", "name": "United Kingdom Charting Progress 2 sea regions", "description": "Terms used specify regions of the seas around the UK based on bio-geographical features rather than administrative boundaries", "homepage": "http://vocab.nerc.ac.uk/collection/C64/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c67": {"id": "seadatanet.c67", "prefix": "c67", "uri_format": "http://vocab.nerc.ac.uk/collection/C67/current/$1", "name": "BODC series parameter collection names", "description": "Terms used by BODC to describe groups of related parameters brought together to form a series from the sample schema. Each term maps to multiple BODC parameter sets.", "homepage": "http://vocab.nerc.ac.uk/collection/C67/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c71": {"id": "seadatanet.c71", "prefix": "c71", "uri_format": "http://vocab.nerc.ac.uk/collection/C71/current/$1", "name": "BODC organisation categories", "description": "Terms used by BODC to classify the organisation entities with which it deals.", "homepage": "http://vocab.nerc.ac.uk/collection/C71/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c72": {"id": "seadatanet.c72", "prefix": "c72", "uri_format": "http://vocab.nerc.ac.uk/collection/C72/current/$1", "name": "BODC core failure codes", "description": "Concepts that describe sediment corer deployment operational issues.", "homepage": "http://vocab.nerc.ac.uk/collection/C72/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c75": {"id": "seadatanet.c75", "prefix": "c75", "uri_format": "http://vocab.nerc.ac.uk/collection/C75/current/$1", "name": "BODC Organisation Histories", "description": "Concepts used to populate 'organisation' fields in BODC metadata schemas. When used in conjunction with the C75PK group of functions (NMNOW, NMTHEN, NMALL)they provide access to past organisation names. For example, the C75 code 'ISB' translates to 'Proudman Oceanographic Laboratory' for a date in 1995, but to 'National Oceanography Centre, Liverpool' for a date in 2015.", "homepage": "http://vocab.nerc.ac.uk/collection/C75/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c77": {"id": "seadatanet.c77", "prefix": "c77", "uri_format": "http://vocab.nerc.ac.uk/collection/C77/current/$1", "name": "SeaDataNet Cruise Summary Report data categories", "description": "Terms used to describe shipboard activities (sometimes inaccurately described as parameters) by SeaDataNet in Cruise Summary Report (formerly known as ROSCOP) metadata.", "homepage": "http://vocab.nerc.ac.uk/collection/C77/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c86": {"id": "seadatanet.c86", "prefix": "c86", "uri_format": "http://vocab.nerc.ac.uk/collection/C86/current/$1", "name": "SeaDataNet contact and security access roles", "description": "SeaDataNet terms to describe roles associated with access rights to data, metadata and project information or the responsibilities for a contact within an activity, project or dataset.", "homepage": "http://vocab.nerc.ac.uk/collection/C86/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c87": {"id": "seadatanet.c87", "prefix": "c87", "uri_format": "http://vocab.nerc.ac.uk/collection/C87/current/$1", "name": "BODC project roles", "description": "Terms used by BODC to describe roles associated with scientific projects.", "homepage": "http://vocab.nerc.ac.uk/collection/C87/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c88": {"id": "seadatanet.c88", "prefix": "c88", "uri_format": "http://vocab.nerc.ac.uk/collection/C88/current/$1", "name": "BODC asset access right roles", "description": "Terms used by BODC to describe roles specifying access rights to assets, which include data objects, web pages, services and vocabulary lists.", "homepage": "http://vocab.nerc.ac.uk/collection/C88/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c89": {"id": "seadatanet.c89", "prefix": "c89", "uri_format": "http://vocab.nerc.ac.uk/collection/C89/current/$1", "name": "BODC dataset roles", "description": "Terms used by BODC for roles that describe the relationship between a person or organisation with a specific dataset.", "homepage": "http://vocab.nerc.ac.uk/collection/C89/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c96": {"id": "seadatanet.c96", "prefix": "c96", "uri_format": "http://vocab.nerc.ac.uk/collection/C96/current/$1", "name": "BODC data model spatial objects", "description": "Entities in the BODC data model that may be associated with a spatial coverage in the real world", "homepage": "http://vocab.nerc.ac.uk/collection/C96/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.c98": {"id": "seadatanet.c98", "prefix": "c98", "uri_format": "http://vocab.nerc.ac.uk/collection/C98/current/$1", "name": "Vocabulary Server list subject categories", "description": "Terms used to classify the lists held in the Vocabulary Server (formerly known as code tables) by the subject of their contents.", "homepage": "http://vocab.nerc.ac.uk/collection/C98/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.d01": {"id": "seadatanet.d01", "prefix": "d01", "uri_format": "http://vocab.nerc.ac.uk/collection/D01/current/$1", "name": "DCAT Themes for Linked Data Representation of the SeaDataNet EDMED Catalogue", "description": "A vocabulary of SKOS top concepts for use as entry points to a SKOS scheme defining the DCAT theme keywords for use in linked data representations of the SeaDataNet EDMED catalogue.", "homepage": "http://vocab.nerc.ac.uk/collection/D01/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.e01": {"id": "seadatanet.e01", "prefix": "e01", "uri_format": "http://vocab.nerc.ac.uk/collection/E01/current/$1", "name": "ESEAS active tide gauge sites", "description": "Names of stations providing sea level data into the ESEAS network.", "homepage": "http://vocab.nerc.ac.uk/collection/E01/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.e02": {"id": "seadatanet.e02", "prefix": "e02", "uri_format": "http://vocab.nerc.ac.uk/collection/E02/current/$1", "name": "Processing Levels for Earth Observing System Standard Data Products", "description": "The standard states of processed data defined by the Earth Observing System Data and Information Ssytem (EOSDIS) Data Panel, which are also consistent with the Committee on Data Management, Archiving,\nand Computing (CODMAC) definitions.", "homepage": "http://vocab.nerc.ac.uk/collection/E02/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.el1": {"id": "seadatanet.el1", "prefix": "el1", "uri_format": "http://vocab.nerc.ac.uk/collection/EL1/current/$1", "name": "SeaVoX Sampling and Observation Platform Event Actions", "description": "Terms used to identify actions performed on sampling and observation platforms. This vocabulary is the result of an harmonisation exercise between the Eurofleets Automatic Reporting System (EARS) ontology and the Rolling Deck to Repository (R2R) project, for research vessel event logs. The terms it contains should be applicable to any sampling or observation platforms.", "homepage": "http://vocab.nerc.ac.uk/collection/EL1/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.el2": {"id": "seadatanet.el2", "prefix": "el2", "uri_format": "http://vocab.nerc.ac.uk/collection/EL2/current/$1", "name": "SeaVoX Sampling and Observation Platform Event Processes", "description": "Terms used to identify processes performed on sampling and observation platforms. This vocabulary is the result of an harmonisation exercise between the Eurofleets Automatic Reporting System (EARS) ontology and the Rolling Deck to Repository (R2R) project, for research vessel event logs. The terms it contains should be applicable to any sampling or observation platforms.", "homepage": "http://vocab.nerc.ac.uk/collection/EL2/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.f02": {"id": "seadatanet.f02", "prefix": "f02", "uri_format": "http://vocab.nerc.ac.uk/collection/F02/current/$1", "name": "Marine Microbial Flow Cytometry Standardised Group Names", "description": "Terms recommended by an international consortium of marine microbial flow cytometry experts to standardise the naming and definition of groups derived from flow cytometry analysis of marine samples.", "homepage": "http://vocab.nerc.ac.uk/collection/F02/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g01": {"id": "seadatanet.g01", "prefix": "g01", "uri_format": "http://vocab.nerc.ac.uk/collection/G01/current/$1", "name": "CI_DateTypeCode", "description": "Identification of when a given event occurred", "homepage": "http://vocab.nerc.ac.uk/collection/G01/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g02": {"id": "seadatanet.g02", "prefix": "g02", "uri_format": "http://vocab.nerc.ac.uk/collection/G02/current/$1", "name": "CI_OnlineFunctionCode", "description": "Function performed by the resource", "homepage": "http://vocab.nerc.ac.uk/collection/G02/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g03": {"id": "seadatanet.g03", "prefix": "g03", "uri_format": "http://vocab.nerc.ac.uk/collection/G03/current/$1", "name": "CI_PresentationFormCode", "description": "Mode in which the data are represented", "homepage": "http://vocab.nerc.ac.uk/collection/G03/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g04": {"id": "seadatanet.g04", "prefix": "g04", "uri_format": "http://vocab.nerc.ac.uk/collection/G04/current/$1", "name": "CI_RoleCode", "description": "Function performed by the responsible party", "homepage": "http://vocab.nerc.ac.uk/collection/G04/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g05": {"id": "seadatanet.g05", "prefix": "g05", "uri_format": "http://vocab.nerc.ac.uk/collection/G05/current/$1", "name": "DQ_EvaluationMethodTypeCode", "description": "Type or method for evaluating an identified data quality measure", "homepage": "http://vocab.nerc.ac.uk/collection/G05/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g06": {"id": "seadatanet.g06", "prefix": "g06", "uri_format": "http://vocab.nerc.ac.uk/collection/G06/current/$1", "name": "DS_AssociationTypeCode", "description": "Justification for the correlation of two datasets", "homepage": "http://vocab.nerc.ac.uk/collection/G06/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g07": {"id": "seadatanet.g07", "prefix": "g07", "uri_format": "http://vocab.nerc.ac.uk/collection/G07/current/$1", "name": "DS_InitiativeTypeCode", "description": "Type of aggregation activity in which datasets are related", "homepage": "http://vocab.nerc.ac.uk/collection/G07/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g08": {"id": "seadatanet.g08", "prefix": "g08", "uri_format": "http://vocab.nerc.ac.uk/collection/G08/current/$1", "name": "MD_CellGeometryCode", "description": "Code indicating whether grid data are points or area", "homepage": "http://vocab.nerc.ac.uk/collection/G08/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g09": {"id": "seadatanet.g09", "prefix": "g09", "uri_format": "http://vocab.nerc.ac.uk/collection/G09/current/$1", "name": "MD_CharacterSetCode", "description": "Name of the character coding standard used in the resource", "homepage": "http://vocab.nerc.ac.uk/collection/G09/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g10": {"id": "seadatanet.g10", "prefix": "g10", "uri_format": "http://vocab.nerc.ac.uk/collection/G10/current/$1", "name": "MD_ClassificationCode", "description": "Name of the handling restrictions on the dataset", "homepage": "http://vocab.nerc.ac.uk/collection/G10/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g11": {"id": "seadatanet.g11", "prefix": "g11", "uri_format": "http://vocab.nerc.ac.uk/collection/G11/current/$1", "name": "MD_CoverageContentTypeCode", "description": "Specific type of information represented in the cell", "homepage": "http://vocab.nerc.ac.uk/collection/G11/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g12": {"id": "seadatanet.g12", "prefix": "g12", "uri_format": "http://vocab.nerc.ac.uk/collection/G12/current/$1", "name": "MD_DatatypeCode", "description": "Datatype of element or entity", "homepage": "http://vocab.nerc.ac.uk/collection/G12/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g13": {"id": "seadatanet.g13", "prefix": "g13", "uri_format": "http://vocab.nerc.ac.uk/collection/G13/current/$1", "name": "MD_DimensionNameTypeCode ", "description": "Name of the dimension", "homepage": "http://vocab.nerc.ac.uk/collection/G13/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g14": {"id": "seadatanet.g14", "prefix": "g14", "uri_format": "http://vocab.nerc.ac.uk/collection/G14/current/$1", "name": "MD_GeometricObjectTypeCode", "description": "Name of point or vector objects used to locate zero-, one-, two-, or three-dimensional spatial locations in the dataset", "homepage": "http://vocab.nerc.ac.uk/collection/G14/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g15": {"id": "seadatanet.g15", "prefix": "g15", "uri_format": "http://vocab.nerc.ac.uk/collection/G15/current/$1", "name": "MD_ImagingConditionCode ", "description": "Code which indicates conditions which may affect the image", "homepage": "http://vocab.nerc.ac.uk/collection/G15/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g17": {"id": "seadatanet.g17", "prefix": "g17", "uri_format": "http://vocab.nerc.ac.uk/collection/G17/current/$1", "name": "MD_MaintenanceFrequencyCode", "description": "Frequency with which modifications and deletions are made to the data after they are first produced", "homepage": "http://vocab.nerc.ac.uk/collection/G17/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g18": {"id": "seadatanet.g18", "prefix": "g18", "uri_format": "http://vocab.nerc.ac.uk/collection/G18/current/$1", "name": "MD_MediumFormatCode", "description": "Method used to write to the medium", "homepage": "http://vocab.nerc.ac.uk/collection/G18/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g20": {"id": "seadatanet.g20", "prefix": "g20", "uri_format": "http://vocab.nerc.ac.uk/collection/G20/current/$1", "name": "MD_ObligationCode", "description": "Obligation of the element or entity", "homepage": "http://vocab.nerc.ac.uk/collection/G20/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g21": {"id": "seadatanet.g21", "prefix": "g21", "uri_format": "http://vocab.nerc.ac.uk/collection/G21/current/$1", "name": "MD_PixelOrientationCode", "description": "Point in a pixel corresponding to the Earth location of the pixel", "homepage": "http://vocab.nerc.ac.uk/collection/G21/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g22": {"id": "seadatanet.g22", "prefix": "g22", "uri_format": "http://vocab.nerc.ac.uk/collection/G22/current/$1", "name": "MD_ProgressCode", "description": "Status of the dataset or progress of a review", "homepage": "http://vocab.nerc.ac.uk/collection/G22/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g23": {"id": "seadatanet.g23", "prefix": "g23", "uri_format": "http://vocab.nerc.ac.uk/collection/G23/current/$1", "name": "MD_RestrictionCode", "description": "Limitation(s) placed upon the access or use of the data", "homepage": "http://vocab.nerc.ac.uk/collection/G23/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g25": {"id": "seadatanet.g25", "prefix": "g25", "uri_format": "http://vocab.nerc.ac.uk/collection/G25/current/$1", "name": "MD_ScopeCode", "description": "Class of information to which the referencing entity applies", "homepage": "http://vocab.nerc.ac.uk/collection/G25/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g26": {"id": "seadatanet.g26", "prefix": "g26", "uri_format": "http://vocab.nerc.ac.uk/collection/G26/current/$1", "name": "MD_SpatialRepresentationTypeCode", "description": "Terms used to represent geographic information in a dataset; \nISO codelist extracted from 'Codelists for description of metadata datasets compliant with ISO/TC 211 19115:2003 and 19139' at http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml; last checked on 24Sep2018.", "homepage": "http://vocab.nerc.ac.uk/collection/G26/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g28": {"id": "seadatanet.g28", "prefix": "g28", "uri_format": "http://vocab.nerc.ac.uk/collection/G28/current/$1", "name": "MD_TopologyLevelCode", "description": "Degree of complexity of the spatial relationships", "homepage": "http://vocab.nerc.ac.uk/collection/G28/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g29": {"id": "seadatanet.g29", "prefix": "g29", "uri_format": "http://vocab.nerc.ac.uk/collection/G29/current/$1", "name": "MX_ScopeCode", "description": "Extension of MD_ScopeCode for the needs of GMX application schemas and in the context of a transfer", "homepage": "http://vocab.nerc.ac.uk/collection/G29/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.g30": {"id": "seadatanet.g30", "prefix": "g30", "uri_format": "http://vocab.nerc.ac.uk/collection/G30/current/$1", "name": "MD_SpatialRepresentationTypeCode (DO NOT USE - use G26 instead)", "description": "Terms used to represent geographic information in a dataset; ISO codelist extracted from 'Codelists for description of metadata datasets compliant with ISO/TC 211 19115:2003 and 19139' at http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml. on 24Sep2018.", "homepage": "http://vocab.nerc.ac.uk/collection/G30/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.gbx": {"id": "seadatanet.gbx", "prefix": "gbx", "uri_format": "http://vocab.nerc.ac.uk/collection/GBX/current/$1", "name": "I18n system English (UK) language terms", "description": "System used to control text displayed on BODC web pages on dynamic applications. The text stored in the description field is displayed in response to a CODVAL instance in the application code.", "homepage": "http://vocab.nerc.ac.uk/collection/GBX/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.ggb": {"id": "seadatanet.ggb", "prefix": "ggb", "uri_format": "http://vocab.nerc.ac.uk/collection/GGB/current/$1", "name": "GEBCO_2019 Grid source data types", "description": "Source data type information for the data sets used in the generation of the GEBCO_2019 Grid.", "homepage": "http://vocab.nerc.ac.uk/collection/GGB/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.ggs": {"id": "seadatanet.ggs", "prefix": "ggs", "uri_format": "http://vocab.nerc.ac.uk/collection/GGS/current/$1", "name": "GEBCO 30-second grid data sources", "description": "Provenance attributes of data source files used in the production of the GEBCO 30-second grid.", "homepage": "http://vocab.nerc.ac.uk/collection/GGS/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.ggt": {"id": "seadatanet.ggt", "prefix": "ggt", "uri_format": "http://vocab.nerc.ac.uk/collection/GGT/current/$1", "name": "GEBCO Grid Source Data Type Identifier", "description": "Source data type information for the data sets used in the generation of the GEBCO Global Grid.", "homepage": "http://vocab.nerc.ac.uk/collection/GGT/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.gs1": {"id": "seadatanet.gs1", "prefix": "gs1", "uri_format": "http://vocab.nerc.ac.uk/collection/GS1/current/$1", "name": "Geo-Seas features of interest", "description": "Terms used to populate the featureOfInterest name field in the Geo-Seas data object Observations and Measurments documents.", "homepage": "http://vocab.nerc.ac.uk/collection/GS1/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.gs2": {"id": "seadatanet.gs2", "prefix": "gs2", "uri_format": "http://vocab.nerc.ac.uk/collection/GS2/current/$1", "name": "Geo-Seas observed properties", "description": "Terms used to populate the observedProperty name field in the Geo-Seas data object Observations and Measurments documents.", "homepage": "http://vocab.nerc.ac.uk/collection/GS2/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.gs3": {"id": "seadatanet.gs3", "prefix": "gs3", "uri_format": "http://vocab.nerc.ac.uk/collection/GS3/current/$1", "name": "Geo-Seas adjusted Folk sediment lithology classes", "description": "Terms used to categorise sedimentary rocks and sediments in terms of the proportion of gravel, sand and mud. Initial terms proposed by Folk (1954) but subsequently revised by BGS and Flemming (2000).", "homepage": "http://vocab.nerc.ac.uk/collection/GS3/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.gs4": {"id": "seadatanet.gs4", "prefix": "gs4", "uri_format": "http://vocab.nerc.ac.uk/collection/GS4/current/$1", "name": "Geo-Seas geological sample colours", "description": "Terms used to describe rock and sediment colour in Geo-Seas based on the CGI GeologicUnitExposureColorTerms (https://www.seegrid.csiro.au/wiki/pub/CGIModel/GeologicUnitExposureColorTerms/Color.xls).", "homepage": "http://vocab.nerc.ac.uk/collection/GS4/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.gs5": {"id": "seadatanet.gs5", "prefix": "gs5", "uri_format": "http://vocab.nerc.ac.uk/collection/GS5/current/$1", "name": "Geo-Seas sediment grain-size skewness descriptors", "description": "Terms used to describe sediment grain-size skewness coefficients in the Geo-Seas project.", "homepage": "http://vocab.nerc.ac.uk/collection/GS5/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.gs6": {"id": "seadatanet.gs6", "prefix": "gs6", "uri_format": "http://vocab.nerc.ac.uk/collection/GS6/current/$1", "name": "Geo-Seas sediment grain-size kurtosis descriptors", "description": "Terms used to describe sediment grain-size kurtosis coefficients in the Geo-Seas project.", "homepage": "http://vocab.nerc.ac.uk/collection/GS6/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.gs8": {"id": "seadatanet.gs8", "prefix": "gs8", "uri_format": "http://vocab.nerc.ac.uk/collection/GS8/current/$1", "name": "Geo-Seas Seismic Methods", "description": "Concepts that describe techniques used in fieldwork in the geophysical discipline of seismics", "homepage": "http://vocab.nerc.ac.uk/collection/GS8/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.gs9": {"id": "seadatanet.gs9", "prefix": "gs9", "uri_format": "http://vocab.nerc.ac.uk/collection/GS9/current/$1", "name": "Geo-Seas Seismic Survey Dimensionality", "description": "Concepts that describe dimensionality of field surveys in the geophysical discipline of seismics", "homepage": "http://vocab.nerc.ac.uk/collection/GS9/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.gsa": {"id": "seadatanet.gsa", "prefix": "gsa", "uri_format": "http://vocab.nerc.ac.uk/collection/GSA/current/$1", "name": "Geo-Seas Seismic Data Product Types", "description": "Concepts that describe standard types of data product produced in the geophysical discipline of seismics", "homepage": "http://vocab.nerc.ac.uk/collection/GSA/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.gsb": {"id": "seadatanet.gsb", "prefix": "gsb", "uri_format": "http://vocab.nerc.ac.uk/collection/GSB/current/$1", "name": "Geo-Seas Seismic Receiver Types", "description": "Concepts that describe instrument types used to measure reflected and refracted acoustic signals in the geophysical discipline of seismics", "homepage": "http://vocab.nerc.ac.uk/collection/GSB/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.gsc": {"id": "seadatanet.gsc", "prefix": "gsc", "uri_format": "http://vocab.nerc.ac.uk/collection/GSC/current/$1", "name": "MGD77 Bathymetry Sound Velocity Correction Codes", "description": "Terms used to describe sound velocity correction applied to bathymetric data in the MGD77 format", "homepage": "http://vocab.nerc.ac.uk/collection/GSC/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.gxm": {"id": "seadatanet.gxm", "prefix": "gxm", "uri_format": "http://vocab.nerc.ac.uk/collection/GXM/current/$1", "name": "BODC I18n term usage", "description": "The purpose, such as an application, for which a given BODC I18n term in the GBX controlled vocabulary is used.", "homepage": "http://vocab.nerc.ac.uk/collection/GXM/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.h01": {"id": "seadatanet.h01", "prefix": "h01", "uri_format": "http://vocab.nerc.ac.uk/collection/H01/current/$1", "name": "EMODnet micro-litter types", "description": "Controlled vocabulary defining the terms that may be used for micro-litter particle types in the EMODnet Chemistry data reporting system. The categories only reflect types based on morphological criteria (e.g. pellets, fragments, etc.) and all reference to the material they were made of was removed from this vocabulary as agreed in https://nvs-vocabs/EMODnetChemVocabs#19.", "homepage": "http://vocab.nerc.ac.uk/collection/H01/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.h02": {"id": "seadatanet.h02", "prefix": "h02", "uri_format": "http://vocab.nerc.ac.uk/collection/H02/current/$1", "name": "EMODnet micro-litter shapes", "description": "Controlled vocabulary defining the terms that may be used for micro-litter particle shapes in the EMODnet Chemistry data reporting system.", "homepage": "http://vocab.nerc.ac.uk/collection/H02/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.h03": {"id": "seadatanet.h03", "prefix": "h03", "uri_format": "http://vocab.nerc.ac.uk/collection/H03/current/$1", "name": "EMODnet micro-litter size classes", "description": "Controlled vocabulary defining the terms that may be used for micro-litter particle size classes in the EMODnet Chemistry data reporting system.", "homepage": "http://vocab.nerc.ac.uk/collection/H03/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.h04": {"id": "seadatanet.h04", "prefix": "h04", "uri_format": "http://vocab.nerc.ac.uk/collection/H04/current/$1", "name": "EMODnet micro-litter colour classes", "description": "Controlled vocabulary defining the terms that may be used for micro-litter particle colour classes in the EMODnet Chemistry data reporting system.", "homepage": "http://vocab.nerc.ac.uk/collection/H04/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.h05": {"id": "seadatanet.h05", "prefix": "h05", "uri_format": "http://vocab.nerc.ac.uk/collection/H05/current/$1", "name": "EMODnet micro-litter material or polymer type", "description": "Controlled vocabulary defining the terms that may be used for micro-litter particle characterisation according to the type of non-plastic material or the type of plastic polymer in the EMODnet Chemistry data reporting system.", "homepage": "http://vocab.nerc.ac.uk/collection/H05/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.h06": {"id": "seadatanet.h06", "prefix": "h06", "uri_format": "http://vocab.nerc.ac.uk/collection/H06/current/$1", "name": "EMODnet micro-litter transparency classes", "description": "Controlled vocabulary defining the terms that may be used for micro-litter particle transparency categories in the EMODnet Chemistry data reporting format.", "homepage": "http://vocab.nerc.ac.uk/collection/H06/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.ha2": {"id": "seadatanet.ha2", "prefix": "ha2", "uri_format": "http://vocab.nerc.ac.uk/collection/HA2/current/$1", "name": "EMODnet human activity categories", "description": "Terms agreed within the EU EMODnet Human Activities community to describe categories of human activities, structures or organisational boundaries in or near the marine environment.", "homepage": "http://vocab.nerc.ac.uk/collection/HA2/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.i01": {"id": "seadatanet.i01", "prefix": "i01", "uri_format": "http://vocab.nerc.ac.uk/collection/I01/current/$1", "name": "Subset of GRIB Table 4.2 - Parameter number by product discipline and parameter category", "description": "Extract of definitions from World Meteorological Organisation GRIB2 Table 4.2: meteorological parameter number by product discipline and parameter category.", "homepage": "http://vocab.nerc.ac.uk/collection/I01/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.i02": {"id": "seadatanet.i02", "prefix": "i02", "uri_format": "http://vocab.nerc.ac.uk/collection/I02/current/$1", "name": "GRIB Table 4.201 (Precipitation type)", "description": "World Meteorological Organisation GRIB2 Table 4.201: precipitation type.", "homepage": "http://vocab.nerc.ac.uk/collection/I02/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.i03": {"id": "seadatanet.i03", "prefix": "i03", "uri_format": "http://vocab.nerc.ac.uk/collection/I03/current/$1", "name": "Wisconsin Coastal Atlas Vocabulary", "description": "Controlled vocabulary terms used within the Wisconsin Coastal Atlas.", "homepage": "http://vocab.nerc.ac.uk/collection/I03/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.i10": {"id": "seadatanet.i10", "prefix": "i10", "uri_format": "http://vocab.nerc.ac.uk/collection/I10/current/$1", "name": "INSPIRE service types", "description": "Terms used in the INSPIRE infrastructure to tell a client what type of service to expect at the other end of a URL.", "homepage": "http://vocab.nerc.ac.uk/collection/I10/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.i11": {"id": "seadatanet.i11", "prefix": "i11", "uri_format": "http://vocab.nerc.ac.uk/collection/I11/current/$1", "name": "INSPIRE Management and Reporting Control Type", "description": "Types of control used to manage activities within a Management Area, Restriction or Regulation Zone.", "homepage": "http://vocab.nerc.ac.uk/collection/I11/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.i12": {"id": "seadatanet.i12", "prefix": "i12", "uri_format": "http://vocab.nerc.ac.uk/collection/I12/current/$1", "name": "INSPIRE Management and Reporting Day Type", "description": "Terms used to describe temporal periods within which an activity is scheduled to be controlled.", "homepage": "http://vocab.nerc.ac.uk/collection/I12/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.i13": {"id": "seadatanet.i13", "prefix": "i13", "uri_format": "http://vocab.nerc.ac.uk/collection/I13/current/$1", "name": "INSPIRE Management and Reporting Environmental Domain Area", "description": "Environmental domain area within which a Management Area, Restriction or Regulation Zone was established.", "homepage": "http://vocab.nerc.ac.uk/collection/I13/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.i14": {"id": "seadatanet.i14", "prefix": "i14", "uri_format": "http://vocab.nerc.ac.uk/collection/I14/current/$1", "name": "INSPIRE Management and Reporting Controlled Activity Type", "description": "Classification of the types of activities controlled within a Management Area, Restriction or Regulation Zone.", "homepage": "http://vocab.nerc.ac.uk/collection/I14/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.i15": {"id": "seadatanet.i15", "prefix": "i15", "uri_format": "http://vocab.nerc.ac.uk/collection/I15/current/$1", "name": "INSPIRE Management and Reporting Zone Type", "description": "High-level classification defining the type of Management Area, Restriction or Regulation Zone.", "homepage": "http://vocab.nerc.ac.uk/collection/I15/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l02": {"id": "seadatanet.l02", "prefix": "l02", "uri_format": "http://vocab.nerc.ac.uk/collection/L02/current/$1", "name": "SeaDataNet Geospatial Feature Types", "description": "SeaDataNet profile of ISO MD_GeometricObjectTypeCodeTerms code list. Known in SEA-SEARCH as 'Library 2' or cdi_measurement_codes.", "homepage": "http://vocab.nerc.ac.uk/collection/L02/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l03": {"id": "seadatanet.l03", "prefix": "l03", "uri_format": "http://vocab.nerc.ac.uk/collection/L03/current/$1", "name": "SeaDataNet Measurement Periodicity Categories", "description": "Terms used to express a classification of measurement periodicity in the SeaDataNet project.", "homepage": "http://vocab.nerc.ac.uk/collection/L03/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l04": {"id": "seadatanet.l04", "prefix": "l04", "uri_format": "http://vocab.nerc.ac.uk/collection/L04/current/$1", "name": "Matrix Categories", "description": "Terms used to group features or objects (sometimes called features of interest) in which measurements or observations may be made or of which samples may be collected.", "homepage": "http://vocab.nerc.ac.uk/collection/L04/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l05": {"id": "seadatanet.l05", "prefix": "l05", "uri_format": "http://vocab.nerc.ac.uk/collection/L05/current/$1", "name": "SeaDataNet device categories", "description": "Terms used to classify groups of sensors, instruments, sources of algorithmically computed data (numerical models) or samplers (collectors of water, SPM, sediment, rock, air or biota samples).", "homepage": "http://vocab.nerc.ac.uk/collection/L05/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l06": {"id": "seadatanet.l06", "prefix": "l06", "uri_format": "http://vocab.nerc.ac.uk/collection/L06/current/$1", "name": "SeaVoX Platform Categories", "description": "2-level grouping term hierarchy used for vehicles, structures or organisms capable of bearing instruments or tools for the collection of physical, chemical, geological or biological samples or data.", "homepage": "http://vocab.nerc.ac.uk/collection/L06/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l07": {"id": "seadatanet.l07", "prefix": "l07", "uri_format": "http://vocab.nerc.ac.uk/collection/L07/current/$1", "name": "SeaDataNet data access mechanisms", "description": "Terms for mechanisms by which data objects described by SeaDataNet Central Data Index (CDI) records may be obtained before SeaDataNet is fully implemented.", "homepage": "http://vocab.nerc.ac.uk/collection/L07/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l08": {"id": "seadatanet.l08", "prefix": "l08", "uri_format": "http://vocab.nerc.ac.uk/collection/L08/current/$1", "name": "SeaDataNet Data Access Restriction Policies", "description": "Terms used to represent and classify data access policies in operation in the SeaDataNet project.", "homepage": "http://vocab.nerc.ac.uk/collection/L08/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l10": {"id": "seadatanet.l10", "prefix": "l10", "uri_format": "http://vocab.nerc.ac.uk/collection/L10/current/$1", "name": "SeaDataNet geographic co-ordinate reference frames", "description": "Co-ordinate reference systems used for positions (latitude/longitude or grid references) in SeaDataNet metadata. May include 3D co-ordinate systems, but not vertical elevation datums like OD Newlyn.", "homepage": "http://vocab.nerc.ac.uk/collection/L10/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l11": {"id": "seadatanet.l11", "prefix": "l11", "uri_format": "http://vocab.nerc.ac.uk/collection/L11/current/$1", "name": "SeaDataNet depth measurement reference planes", "description": "Terms used to describe the zero point for vertical co-ordinate reference systems (datums).", "homepage": "http://vocab.nerc.ac.uk/collection/L11/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l12": {"id": "seadatanet.l12", "prefix": "l12", "uri_format": "http://vocab.nerc.ac.uk/collection/L12/current/$1", "name": "SeaDataNet parameter quality control procedures", "description": "Terms that are used to describe quality control procedures applied to data parameters.", "homepage": "http://vocab.nerc.ac.uk/collection/L12/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l13": {"id": "seadatanet.l13", "prefix": "l13", "uri_format": "http://vocab.nerc.ac.uk/collection/L13/current/$1", "name": "SeaVoX Vertical Co-ordinate Coverages", "description": "Terms used to describe data coverage over the vertical (z) co-ordinate.", "homepage": "http://vocab.nerc.ac.uk/collection/L13/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l14": {"id": "seadatanet.l14", "prefix": "l14", "uri_format": "http://vocab.nerc.ac.uk/collection/L14/current/$1", "name": "SeaDataNet Activity Operational Stati", "description": "Terms used to describe the operational status of data collection activities within the SeaDataNet project.", "homepage": "http://vocab.nerc.ac.uk/collection/L14/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l15": {"id": "seadatanet.l15", "prefix": "l15", "uri_format": "http://vocab.nerc.ac.uk/collection/L15/current/$1", "name": "SeaDataNet quality management system accreditations", "description": "Terms used to by SeaDataNet to describe formally recognised standards for data acquisition and handling procedures.", "homepage": "http://vocab.nerc.ac.uk/collection/L15/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l18": {"id": "seadatanet.l18", "prefix": "l18", "uri_format": "http://vocab.nerc.ac.uk/collection/L18/current/$1", "name": "SeaDataNet Cruise Summary Report quantification units", "description": "Terms used as units in the quantification of what was collected or measured in a Cruise Summary Report (ROSCOP) record.", "homepage": "http://vocab.nerc.ac.uk/collection/L18/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l19": {"id": "seadatanet.l19", "prefix": "l19", "uri_format": "http://vocab.nerc.ac.uk/collection/L19/current/$1", "name": "SeaDataNet keyword types", "description": "Terms used in SeaDataNet metadata to describe the purpose of a keyword. An extension of the ISO19115 KeywordTypeCode codelist.", "homepage": "http://vocab.nerc.ac.uk/collection/L19/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l20": {"id": "seadatanet.l20", "prefix": "l20", "uri_format": "http://vocab.nerc.ac.uk/collection/L20/current/$1", "name": "SeaDataNet measurand qualifier flags", "description": "Flags used to provide additional information, usually referring to data quality, about data values in SeaDataNet data files.", "homepage": "http://vocab.nerc.ac.uk/collection/L20/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l21": {"id": "seadatanet.l21", "prefix": "l21", "uri_format": "http://vocab.nerc.ac.uk/collection/L21/current/$1", "name": "SeaDataNet device category types", "description": "High-level classification of devices based on function and mode of deployment.", "homepage": "http://vocab.nerc.ac.uk/collection/L21/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l22": {"id": "seadatanet.l22", "prefix": "l22", "uri_format": "http://vocab.nerc.ac.uk/collection/L22/current/$1", "name": "SeaVoX Device Catalogue", "description": "Terms for distinct sampling or measuring devices that may be identified in the real world in terms of manufacturer and model number.", "homepage": "http://vocab.nerc.ac.uk/collection/L22/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l23": {"id": "seadatanet.l23", "prefix": "l23", "uri_format": "http://vocab.nerc.ac.uk/collection/L23/current/$1", "name": "SeaDataNet metadata entities", "description": "Types of metadata record in the SeaDataNet metadata catalogue repositories", "homepage": "http://vocab.nerc.ac.uk/collection/L23/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l24": {"id": "seadatanet.l24", "prefix": "l24", "uri_format": "http://vocab.nerc.ac.uk/collection/L24/current/$1", "name": "SeaDataNet data transport formats", "description": "Formats used for data delivery by SeaDataNet.", "homepage": "http://vocab.nerc.ac.uk/collection/L24/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l26": {"id": "seadatanet.l26", "prefix": "l26", "uri_format": "http://vocab.nerc.ac.uk/collection/L26/current/$1", "name": "EDIOS permitted sampling interval units", "description": "Units of measure (P06 subset) that may be used for sampling intervals in the EDIOS metadata schema. Required to prevent times with units of kilograms!", "homepage": "http://vocab.nerc.ac.uk/collection/L26/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l27": {"id": "seadatanet.l27", "prefix": "l27", "uri_format": "http://vocab.nerc.ac.uk/collection/L27/current/$1", "name": "SeaVoX data quality control flagging conventions", "description": "A catalogue including standardised labels of encoding schemes used for data value qualifying information such as data quality ", "homepage": "http://vocab.nerc.ac.uk/collection/L27/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l30": {"id": "seadatanet.l30", "prefix": "l30", "uri_format": "http://vocab.nerc.ac.uk/collection/L30/current/$1", "name": "MEDATLAS Data Centres", "description": "Organisations supplying or holding data concerned with the EU MEDATLAS project.", "homepage": "http://vocab.nerc.ac.uk/collection/L30/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l31": {"id": "seadatanet.l31", "prefix": "l31", "uri_format": "http://vocab.nerc.ac.uk/collection/L31/current/$1", "name": "Geo-Seas data object quality flags", "description": "Flags representing concepts used to specify quality of Geo-Seas data objects. These are a subset of SeaDataNet measurand qualifier flags.", "homepage": "http://vocab.nerc.ac.uk/collection/L31/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l33": {"id": "seadatanet.l33", "prefix": "l33", "uri_format": "http://vocab.nerc.ac.uk/collection/L33/current/$1", "name": "WMO C3 vocabulary of XBT data types", "description": "Terms specified by WMO to label XBT data with the type of probe used and the algorithm used to compute depth.", "homepage": "http://vocab.nerc.ac.uk/collection/L33/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l34": {"id": "seadatanet.l34", "prefix": "l34", "uri_format": "http://vocab.nerc.ac.uk/collection/L34/current/$1", "name": "IODE Primary Level quality flags", "description": "Quality flags used for the primary level of the IODE Quality Flag Scheme for the Exchange of Oceanographic and Marine Meteorological Data, IODE Manuals and Guides 54, Vol. 3.", "homepage": "http://vocab.nerc.ac.uk/collection/L34/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.l35": {"id": "seadatanet.l35", "prefix": "l35", "uri_format": "http://vocab.nerc.ac.uk/collection/L35/current/$1", "name": "SenseOcean device developers and manufacturers", "description": "A collection of terms which denote the manufacturers or developers of devices (includes manufacturer and/or developer collaborations).", "homepage": "http://vocab.nerc.ac.uk/collection/L35/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m01": {"id": "seadatanet.m01", "prefix": "m01", "uri_format": "http://vocab.nerc.ac.uk/collection/M01/current/$1", "name": "MEDIN data format categories", "description": "Terms describing what types of data formats exist in a data set so a human can identify if the data is likely to be of use and select a tool to interrogate that data.", "homepage": "http://vocab.nerc.ac.uk/collection/M01/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m03": {"id": "seadatanet.m03", "prefix": "m03", "uri_format": "http://vocab.nerc.ac.uk/collection/M03/current/$1", "name": "The Crown Estate Renewable Energy Development Areas", "description": "Terms used to describe different areas within an offshore renewable energy development.", "homepage": "http://vocab.nerc.ac.uk/collection/M03/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m04": {"id": "seadatanet.m04", "prefix": "m04", "uri_format": "http://vocab.nerc.ac.uk/collection/M04/current/$1", "name": "The Crown Estate Renewable Energy Development Phases", "description": "Terms used to describe different development phases of an offshore renewable energy development.", "homepage": "http://vocab.nerc.ac.uk/collection/M04/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m05": {"id": "seadatanet.m05", "prefix": "m05", "uri_format": "http://vocab.nerc.ac.uk/collection/M05/current/$1", "name": "MEDIN socio-economic governance objective categories", "description": "Categories in a classification of the purpose and anticipated outcome of activities by governing bodies.", "homepage": "http://vocab.nerc.ac.uk/collection/M05/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m06": {"id": "seadatanet.m06", "prefix": "m06", "uri_format": "http://vocab.nerc.ac.uk/collection/M06/current/$1", "name": "MEDIN monitoring activity categories", "description": "Categories in a classification of the purpose of activities in which the state of something at different times is determined.", "homepage": "http://vocab.nerc.ac.uk/collection/M06/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m09": {"id": "seadatanet.m09", "prefix": "m09", "uri_format": "http://vocab.nerc.ac.uk/collection/M09/current/$1", "name": "MEDIN ecosystem valuation method types", "description": "Terms used to classify techniques used to assess the socio-economic value of an ecosystem.", "homepage": "http://vocab.nerc.ac.uk/collection/M09/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m10": {"id": "seadatanet.m10", "prefix": "m10", "uri_format": "http://vocab.nerc.ac.uk/collection/M10/current/$1", "name": "MEDIN ecosystem valuation methods", "description": "Terms used to describe techniques used to assess the socio-economic value of an ecosystem.", "homepage": "http://vocab.nerc.ac.uk/collection/M10/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m11": {"id": "seadatanet.m11", "prefix": "m11", "uri_format": "http://vocab.nerc.ac.uk/collection/M11/current/$1", "name": "MEDIN ecosystem service types", "description": "Terms used to classify the conditions and processes through which natural ecosystems sustain and fulfil human life.", "homepage": "http://vocab.nerc.ac.uk/collection/M11/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m12": {"id": "seadatanet.m12", "prefix": "m12", "uri_format": "http://vocab.nerc.ac.uk/collection/M12/current/$1", "name": "JNCC categories of human activity in the marine environment", "description": "Categories of activity carried out by humans which exert an impact on the marine environment, as defined by the Joint Nature Conservation Committee (JNCC) ", "homepage": "http://vocab.nerc.ac.uk/collection/M12/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m13": {"id": "seadatanet.m13", "prefix": "m13", "uri_format": "http://vocab.nerc.ac.uk/collection/M13/current/$1", "name": "JNCC standard list of human activities in the marine environment", "description": "The standard list activities carried out by humans to manage the coastal environment, as defined by the Joint Nature Conservation Committee (JNCC)", "homepage": "http://vocab.nerc.ac.uk/collection/M13/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m14": {"id": "seadatanet.m14", "prefix": "m14", "uri_format": "http://vocab.nerc.ac.uk/collection/M14/current/$1", "name": "OSPAR list of defined pressures on the marine environment", "description": "List of defined pressures (stated by the Joint Nature Conservation Committee (JNCC) to be the mechanisms through which activities impact the marine environment) as specified by the Convention for the Protection of the Marine Environment for the North-East Atlantic (OSPAR) International Correspondence Group on Cumulative Effects (ICG-C) and distributed by the Joint Nature Conservation Committee ", "homepage": "http://vocab.nerc.ac.uk/collection/M14/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m15": {"id": "seadatanet.m15", "prefix": "m15", "uri_format": "http://vocab.nerc.ac.uk/collection/M15/current/$1", "name": "OSPAR list of themes of defined pressures on the marine environment", "description": "Themes under which defined pressures in M14 are categorised by the Convention for the Protection of the Marine Environment for the North-East Atlantic (OSPAR) International Correspondence Group on Cumulative Effects (ICG-C) and distributed by the Joint Nature Conservation Committee (JNCC) ", "homepage": "http://vocab.nerc.ac.uk/collection/M15/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m16": {"id": "seadatanet.m16", "prefix": "m16", "uri_format": "http://vocab.nerc.ac.uk/collection/M16/current/$1", "name": "Type of geotechnical investigation carried out at a site", "description": "Terms used to describe techniques used by marine engineers to investigate marine earth materials. Used in the MEDIN Geotechnical Data Guideline to categorise what type of investigations are carried out at a particular location of interest.", "homepage": "http://vocab.nerc.ac.uk/collection/M16/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m17": {"id": "seadatanet.m17", "prefix": "m17", "uri_format": "http://vocab.nerc.ac.uk/collection/M17/current/$1", "name": "Type of sample collected during a geotechnical investigation", "description": "Terms used to classify types of samples collected by marine engineers during geotechnical site investigations in the marine environment.", "homepage": "http://vocab.nerc.ac.uk/collection/M17/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m18": {"id": "seadatanet.m18", "prefix": "m18", "uri_format": "http://vocab.nerc.ac.uk/collection/M18/current/$1", "name": "Type of container used to hold a physical sample collected during a geotechnical site investigation", "description": "Terms used to classify types of container used by marine engineers to store physical specimens collected during marine geotechnical site investigations.", "homepage": "http://vocab.nerc.ac.uk/collection/M18/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m20": {"id": "seadatanet.m20", "prefix": "m20", "uri_format": "http://vocab.nerc.ac.uk/collection/M20/current/$1", "name": "Marine Habitat Classification for Britain and Ireland Version 04.05", "description": "Version 04.05 of the Marine Habitat Classification for Britain and Ireland (Connor et al. 2004), a hierarchical standard list of seabed habitats occurring within the marine, coastal and estuarine waters of Britain and Ireland. Connor, D.W., J.H. Allen, N.Golding, K.L.Howell, L.M. Lieberknecht, K.O. Northen And J.B. Reker (2004) The Marine Habitat Classification for Britain and Ireland Version 04.05. ISBN 1 861 07561 8.", "homepage": "http://vocab.nerc.ac.uk/collection/M20/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m21": {"id": "seadatanet.m21", "prefix": "m21", "uri_format": "http://vocab.nerc.ac.uk/collection/M21/current/$1", "name": "Marine Habitat Classification for Britain and Ireland Version 15.03", "description": "Version 15.03 of the Marine Habitat Classification for Britain and Ireland (JNCC 2015), a hierarchical standard list of seabed habitats occurring within the marine, coastal and estuarine waters of Britain and Ireland. JNCC (2015) The Marine Habitat Classification for Britain and Ireland Version 15.03 [Online].", "homepage": "http://vocab.nerc.ac.uk/collection/M21/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m22": {"id": "seadatanet.m22", "prefix": "m22", "uri_format": "http://vocab.nerc.ac.uk/collection/M22/current/$1", "name": "OSPAR List of Threatened and/or Declining Species and Habitats", "description": "List of species and habitats that are considered to be priorities for protection by the OSPAR Commission (see https://www.ospar.org/work-areas/bdc/species-habitats/list-of-threatened-declining-species-habitats)", "homepage": "http://vocab.nerc.ac.uk/collection/M22/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m23": {"id": "seadatanet.m23", "prefix": "m23", "uri_format": "http://vocab.nerc.ac.uk/collection/M23/current/$1", "name": "HELCOM 'HUB' Underwater Biotope and Habitat Classification System", "description": "The HELCOM Underwater biotope and habitat classification system (HELCOM HUB) provides a framework for defining biotopes in the whole Baltic Sea. Defining biotopes by the same split-rules, enables comparison of the biotopes in different regions of the Baltic Sea (see http://www.helcom.fi/baltic-sea-trends/biodiversity/helcom-hub).", "homepage": "http://vocab.nerc.ac.uk/collection/M23/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m24": {"id": "seadatanet.m24", "prefix": "m24", "uri_format": "http://vocab.nerc.ac.uk/collection/M24/current/$1", "name": "Marine Habitat Classification for Britain and Ireland Version 97.06", "description": "Version 97.07 of the Marine Habitat Classification for Britain and Ireland (Connor et al, 1997), a hierarchical standard list of seabed habitats occurring within the marine, coastal and estuarine waters of Britain and Ireland. Volume 1 (JNCC Report No 229) and Volume 2 (JNCC Report No 230).", "homepage": "http://vocab.nerc.ac.uk/collection/M24/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m25": {"id": "seadatanet.m25", "prefix": "m25", "uri_format": "http://vocab.nerc.ac.uk/collection/M25/current/$1", "name": "Geospatial discovery metadata standards, specifications and profiles recognised by MEDIN", "description": "Terms that define standards recognised by MEDIN as being used to generate metadata records with the aim of enabling the discovery of geospatial data through online resources such as portals. Standard in this definition also covers specifications and profiles. Terms include both international and UK standards.", "homepage": "http://vocab.nerc.ac.uk/collection/M25/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m26": {"id": "seadatanet.m26", "prefix": "m26", "uri_format": "http://vocab.nerc.ac.uk/collection/M26/current/$1", "name": "The Crown Estate Seabed Development Phases", "description": "Terms used to describe different phases within an offshore development or seabed activity.", "homepage": "http://vocab.nerc.ac.uk/collection/M26/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m27": {"id": "seadatanet.m27", "prefix": "m27", "uri_format": "http://vocab.nerc.ac.uk/collection/M27/current/$1", "name": "The Crown Estate Seabed Development Areas", "description": "Terms used to describe different areas within an offshore development or seabed activity site.", "homepage": "http://vocab.nerc.ac.uk/collection/M27/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m28": {"id": "seadatanet.m28", "prefix": "m28", "uri_format": "http://vocab.nerc.ac.uk/collection/M28/current/$1", "name": "Ramsar Classification System for Wetland Type upper categories", "description": "A collection of terms used to group wetland habitats into three upper-category types, as specified by the Ramsar Convention's (Ramsar, Iran, 1971) Classification System for Wetland Type, approved by Recommendation 4.7 and amended by Resolutions VI.5 and VII.11 of the Conference of the Contracting Parties.", "homepage": "http://vocab.nerc.ac.uk/collection/M28/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.m29": {"id": "seadatanet.m29", "prefix": "m29", "uri_format": "http://vocab.nerc.ac.uk/collection/M29/current/$1", "name": "Ramsar Classification System for Wetland Type", "description": "A collection of terms used to classify wetland habitat types, as specified by the Ramsar Convention's (Ramsar, Iran, 1971) Classification System for Wetland Type, approved by Recommendation 4.7 and amended by Resolutions VI.5 and VII.11 of the Conference of the Contracting Parties.", "homepage": "http://vocab.nerc.ac.uk/collection/M29/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.mvb": {"id": "seadatanet.mvb", "prefix": "mvb", "uri_format": "http://vocab.nerc.ac.uk/collection/MVB/current/$1", "name": "Movebank Attribute Dictionary", "description": "Terms used to describe on-animal sensor data stored in the Movebank database (movebank.org), including individual measurements (events), reference data (animals, tags, deployments) and studies.", "homepage": "http://vocab.nerc.ac.uk/collection/MVB/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.n01": {"id": "seadatanet.n01", "prefix": "n01", "uri_format": "http://vocab.nerc.ac.uk/collection/N01/current/$1", "name": "MEDIN metadata record availability", "description": "Terms used to describe portals to which a MEDIN discovery metadata record carrying the keyword should be made available.", "homepage": "http://vocab.nerc.ac.uk/collection/N01/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.n02": {"id": "seadatanet.n02", "prefix": "n02", "uri_format": "http://vocab.nerc.ac.uk/collection/N02/current/$1", "name": "NERC DataGrid Recognised Formats", "description": "Formats recognised by NDG, where this may allow conditional treatment. See also http://proj.badc.rl.ac.uk/ndg/browser/TI07-MOLES/trunk/Documents/NDG_MOLES_Instructions_for_Creation.doc", "homepage": "http://vocab.nerc.ac.uk/collection/N02/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.n03": {"id": "seadatanet.n03", "prefix": "n03", "uri_format": "http://vocab.nerc.ac.uk/collection/N03/current/$1", "name": "Climate Science Modelling Language supported feature types", "description": "Terms used to specify the feature types available for coverages in the Climate Science Modelling Language (CSML).", "homepage": "http://vocab.nerc.ac.uk/collection/N03/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.n04": {"id": "seadatanet.n04", "prefix": "n04", "uri_format": "http://vocab.nerc.ac.uk/collection/N04/current/$1", "name": "NERC DataGrid on-line reference types", "description": "Terms describing types of on-line references in NERC DataGrid service bindings", "homepage": "http://vocab.nerc.ac.uk/collection/N04/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.n05": {"id": "seadatanet.n05", "prefix": "n05", "uri_format": "http://vocab.nerc.ac.uk/collection/N05/current/$1", "name": "NERC data discovery service input metadata document standards", "description": "Terms used to describe the standard, profile and version number of XML documents that may be uploaded to the NERC DDS.", "homepage": "http://vocab.nerc.ac.uk/collection/N05/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.n06": {"id": "seadatanet.n06", "prefix": "n06", "uri_format": "http://vocab.nerc.ac.uk/collection/N06/current/$1", "name": "NERC Environmental Data Centres DataCite General Resource Types", "description": "Controlled list of terms used by the NERC Environmnetal Data Centres for submission of DOI metadata records to DataCite. The list is used to populate \nhttp://purl.org/spar/datacite/hasGeneralResourceType from the EDC's GEMINI profiles.", "homepage": "http://vocab.nerc.ac.uk/collection/N06/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.od1": {"id": "seadatanet.od1", "prefix": "od1", "uri_format": "http://vocab.nerc.ac.uk/collection/OD1/current/$1", "name": "ODATIS aggregation parameters and Essential Variable names", "description": "Collection of terms used within the French Ocean Data and Services Cluster ODATIS for data discovery and product or dataset aggregation. Whenever applicable, Essential Variable terms are linked to the authoritative source of Essential Climate Ocean and Biodiversity Variable definitions maintained by the Global Observing System for Climate (GCOS), the Global Ocean Observing System (GOOS) and the Group on Earth Observations Biodiversity Observation Network (GEO BON).", "homepage": "http://vocab.nerc.ac.uk/collection/OD1/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.og1": {"id": "seadatanet.og1", "prefix": "og1", "uri_format": "http://vocab.nerc.ac.uk/collection/OG1/current/$1", "name": "OceanGliders Parameter Usage Vocabulary", "description": "Terms in this vocabulary are under the content governance of the OceanGliders Data Management Task Team (OGDMTT) on behalf of the OceanGliders community and Everyone's Gliding Observatories (EGO). Terms describe measured phenomena within the OG/EGO format.", "homepage": "http://vocab.nerc.ac.uk/collection/OG1/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p01": {"id": "seadatanet.p01", "prefix": "p01", "uri_format": "http://vocab.nerc.ac.uk/collection/P01/current/$1", "name": "BODC Parameter Usage Vocabulary", "description": "Terms built using the BODC parameter semantic model designed to describe individual measured phenomena. May be used to mark up sets of data such as a NetCDF array or spreadsheet column. Units must be specified when using a P01 code. The P06 unit that is linked to individual P01 in the NVS is the one used in BODC's systems but external users can use any appropriate units.", "homepage": "http://vocab.nerc.ac.uk/collection/P01/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p02": {"id": "seadatanet.p02", "prefix": "p02", "uri_format": "http://vocab.nerc.ac.uk/collection/P02/current/$1", "name": "SeaDataNet Parameter Discovery Vocabulary", "description": "Terms describing fine-grained related groups of measurement phenomena designed to be used in dataset discovery interfaces.", "homepage": "http://vocab.nerc.ac.uk/collection/P02/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p03": {"id": "seadatanet.p03", "prefix": "p03", "uri_format": "http://vocab.nerc.ac.uk/collection/P03/current/$1", "name": "SeaDataNet Agreed Parameter Groups", "description": "Terms agreed within the EU SeaDataNet community to describe coarse-grained groupings of related measurement phenomena.", "homepage": "http://vocab.nerc.ac.uk/collection/P03/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p04": {"id": "seadatanet.p04", "prefix": "p04", "uri_format": "http://vocab.nerc.ac.uk/collection/P04/current/$1", "name": "Global Change Master Directory Science Keywords V5", "description": "Concatenated category, topic, term and variable separated by '>'. From Olsen L.M. et. al (2006) NASA/GCMD Earth Science Keywords Version 5.3.3.", "homepage": "http://vocab.nerc.ac.uk/collection/P04/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p05": {"id": "seadatanet.p05", "prefix": "p05", "uri_format": "http://vocab.nerc.ac.uk/collection/P05/current/$1", "name": "International Standards Organisation ISO19115 Topic Categories", "description": "Terms defined by ISO describing data themes. Used to populate the mandatory ISO19115 topic category field.", "homepage": "http://vocab.nerc.ac.uk/collection/P05/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p06": {"id": "seadatanet.p06", "prefix": "p06", "uri_format": "http://vocab.nerc.ac.uk/collection/P06/current/$1", "name": "BODC-approved data storage units", "description": "Terms approved for use by BODC to describe the measurement units for data held in its repositories.", "homepage": "http://vocab.nerc.ac.uk/collection/P06/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p07": {"id": "seadatanet.p07", "prefix": "p07", "uri_format": "http://vocab.nerc.ac.uk/collection/P07/current/$1", "name": "Climate and Forecast Standard Names", "description": "Terms used for definitive but not necessarily comprehensive descriptions of measured phenomena in the CF conventions (a content standard for data stored in NetCDF).", "homepage": "http://vocab.nerc.ac.uk/collection/P07/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p08": {"id": "seadatanet.p08", "prefix": "p08", "uri_format": "http://vocab.nerc.ac.uk/collection/P08/current/$1", "name": "SeaDataNet Parameter Disciplines", "description": "Terms used to classify SeaDataNet Agreed Parameter Groups to provide topic/theme level terms in a hierarchical parameter discovery interface.", "homepage": "http://vocab.nerc.ac.uk/collection/P08/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p09": {"id": "seadatanet.p09", "prefix": "p09", "uri_format": "http://vocab.nerc.ac.uk/collection/P09/current/$1", "name": "MEDATLAS Parameter Usage Vocabulary", "description": "Terms under the content governance of SISMER used to describe measured phenomena within the MEDATLAS project.", "homepage": "http://vocab.nerc.ac.uk/collection/P09/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p10": {"id": "seadatanet.p10", "prefix": "p10", "uri_format": "http://vocab.nerc.ac.uk/collection/P10/current/$1", "name": "Global Change Master Directory Instrument Keywords", "description": "Terms used to describe sensors, instruments and other pieces of scientific equipment in the NASA Global Change Master Directory metadatabase.", "homepage": "http://vocab.nerc.ac.uk/collection/P10/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p11": {"id": "seadatanet.p11", "prefix": "p11", "uri_format": "http://vocab.nerc.ac.uk/collection/P11/current/$1", "name": "Global Change Master Directory Science Keyword categories", "description": "Category level terms from the Science Keywords from Olsen L.M. et. al (2006) NASA/GCMD Earth Science Keywords Version 5.3.3.", "homepage": "http://vocab.nerc.ac.uk/collection/P11/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p12": {"id": "seadatanet.p12", "prefix": "p12", "uri_format": "http://vocab.nerc.ac.uk/collection/P12/current/$1", "name": "Global Change Master Directory Science Keyword topics", "description": "Topic level terms from the Science Keywords from Olsen L.M. et. al (2006) NASA/GCMD Earth Science Keywords Version 5.3.3.", "homepage": "http://vocab.nerc.ac.uk/collection/P12/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p13": {"id": "seadatanet.p13", "prefix": "p13", "uri_format": "http://vocab.nerc.ac.uk/collection/P13/current/$1", "name": "Global Change Master Directory Science Keyword terms", "description": "Term level terms from the Science Keywords from Olsen L.M. et. al (2006) NASA/GCMD Earth Science Keywords Version 5.3.3.", "homepage": "http://vocab.nerc.ac.uk/collection/P13/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p14": {"id": "seadatanet.p14", "prefix": "p14", "uri_format": "http://vocab.nerc.ac.uk/collection/P14/current/$1", "name": "Global Change Master Directory Science Keyword variables", "description": "Variable level terms from the Science Keywords from Olsen L.M. et. al (2006) NASA/GCMD Earth Science Keywords Version 5.3.3.", "homepage": "http://vocab.nerc.ac.uk/collection/P14/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p15": {"id": "seadatanet.p15", "prefix": "p15", "uri_format": "http://vocab.nerc.ac.uk/collection/P15/current/$1", "name": "Climate and Forecast Cell Methods", "description": "Terms used to describe measured phenomena derivation algorithms in the CF conventions (a content standard for data stored in NetCDF), primarily targeted at statistical parameters.", "homepage": "http://vocab.nerc.ac.uk/collection/P15/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p17": {"id": "seadatanet.p17", "prefix": "p17", "uri_format": "http://vocab.nerc.ac.uk/collection/P17/current/$1", "name": "Partnership for Observation of the Global Ocean ships of interest", "description": "Research vessels deemed to be of interest to POGO. 'Of interest' is defined as active ocean-going research vessels greater than 60m in length", "homepage": "http://vocab.nerc.ac.uk/collection/P17/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p18": {"id": "seadatanet.p18", "prefix": "p18", "uri_format": "http://vocab.nerc.ac.uk/collection/P18/current/$1", "name": "Global Change Master Directory Chronostratigraphic Units", "description": "Chronostratigraphic unit terms from Olsen L.M. et. al (2006) NASA/GCMD Earth Science Keywords Version 5.3.3.", "homepage": "http://vocab.nerc.ac.uk/collection/P18/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p19": {"id": "seadatanet.p19", "prefix": "p19", "uri_format": "http://vocab.nerc.ac.uk/collection/P19/current/$1", "name": "Global Change Master Directory platforms", "description": "Terms used to describe sensor-bearing platforms from Olsen L.M. et. al (2006) NASA/GCMD Earth Science Keywords Version 5.3.3.", "homepage": "http://vocab.nerc.ac.uk/collection/P19/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p20": {"id": "seadatanet.p20", "prefix": "p20", "uri_format": "http://vocab.nerc.ac.uk/collection/P20/current/$1", "name": "Global Change Master Directory URL content types", "description": "Terms used in NASA's GCMD to describe the function of related URLs embedded in DIF metadata records. Also used for NERC DataGrid service bindings.", "homepage": "http://vocab.nerc.ac.uk/collection/P20/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p21": {"id": "seadatanet.p21", "prefix": "p21", "uri_format": "http://vocab.nerc.ac.uk/collection/P21/current/$1", "name": "Marisaurus Thesaurus", "description": "Base terms (all hierarchical levels) interlinked by a relationship network to build the Marisaurus thesaurus.", "homepage": "http://vocab.nerc.ac.uk/collection/P21/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p22": {"id": "seadatanet.p22", "prefix": "p22", "uri_format": "http://vocab.nerc.ac.uk/collection/P22/current/$1", "name": "GEMET - INSPIRE themes, version 1.0", "description": "Groupings of spatial data according to Annex I, II and III of the INSPIRE Directive [DS-D2.5]", "homepage": "http://vocab.nerc.ac.uk/collection/P22/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p23": {"id": "seadatanet.p23", "prefix": "p23", "uri_format": "http://vocab.nerc.ac.uk/collection/P23/current/$1", "name": "MEDIN Parameter Discipline Keywords", "description": "Coarse grained grouping terms designed by MEDIN to provide the top level for a parameter discovery thesaurus.", "homepage": "http://vocab.nerc.ac.uk/collection/P23/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p24": {"id": "seadatanet.p24", "prefix": "p24", "uri_format": "http://vocab.nerc.ac.uk/collection/P24/current/$1", "name": "Units of measure dimensions", "description": "Classification concepts for units of measure based upon the fundamental SI quantities upon which they are based.", "homepage": "http://vocab.nerc.ac.uk/collection/P24/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p25": {"id": "seadatanet.p25", "prefix": "p25", "uri_format": "http://vocab.nerc.ac.uk/collection/P25/current/$1", "name": "NETMAR aggregation parameters", "description": "Terms used to describe phenomena within the NETMAR project at a granularity level suitable for labelling data aggregations or assessing whether the parameter is appropriate as an input to a given WPS.", "homepage": "http://vocab.nerc.ac.uk/collection/P25/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p26": {"id": "seadatanet.p26", "prefix": "p26", "uri_format": "http://vocab.nerc.ac.uk/collection/P26/current/$1", "name": "ISO19119 geographic services taxonomy", "description": "A collection of categories and sub-categories developed by ISO to classify services that display or process spatial data", "homepage": "http://vocab.nerc.ac.uk/collection/P26/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p27": {"id": "seadatanet.p27", "prefix": "p27", "uri_format": "http://vocab.nerc.ac.uk/collection/P27/current/$1", "name": "Oil spill spillet location", "description": "Terms used to describe the environmental spatial location of an aliquot of a simulated oil spill by the METEO France MOTHY model.", "homepage": "http://vocab.nerc.ac.uk/collection/P27/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p28": {"id": "seadatanet.p28", "prefix": "p28", "uri_format": "http://vocab.nerc.ac.uk/collection/P28/current/$1", "name": "Cedre pollution site cleanup operational stati", "description": "Terms used to describe the operational stati of pollution cleanup sites in the Cedre cleanup site service.", "homepage": "http://vocab.nerc.ac.uk/collection/P28/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p29": {"id": "seadatanet.p29", "prefix": "p29", "uri_format": "http://vocab.nerc.ac.uk/collection/P29/current/$1", "name": "Climate and Forecast Area Types", "description": "Terms used to describe the characteristics of regions of the Earth's Surface or their representation in a numerical simulation in the CF metadata conventions for data stored in NetCDF.", "homepage": "http://vocab.nerc.ac.uk/collection/P29/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p30": {"id": "seadatanet.p30", "prefix": "p30", "uri_format": "http://vocab.nerc.ac.uk/collection/P30/current/$1", "name": "Climate and Forecast Standardized Region Names", "description": "Terms used to label regions of the Earth's Surface or their representation in a numerical simulation in the CF metadata conventions for data stored in NetCDF.", "homepage": "http://vocab.nerc.ac.uk/collection/P30/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p31": {"id": "seadatanet.p31", "prefix": "p31", "uri_format": "http://vocab.nerc.ac.uk/collection/P31/current/$1", "name": "Climate and Forecast Attribute Names", "description": "Terms used to define the recognised metadata attributes for the description of CF-compliant data stored in NetCDF files.", "homepage": "http://vocab.nerc.ac.uk/collection/P31/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p35": {"id": "seadatanet.p35", "prefix": "p35", "uri_format": "http://vocab.nerc.ac.uk/collection/P35/current/$1", "name": "EMODnet Chemistry aggregated parameter names", "description": "Labels used for aggregated parameters in the EMODNET chemistry lot", "homepage": "http://vocab.nerc.ac.uk/collection/P35/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p36": {"id": "seadatanet.p36", "prefix": "p36", "uri_format": "http://vocab.nerc.ac.uk/collection/P36/current/$1", "name": "EMODnet Chemistry chemical groups", "description": "Terms based on the EU MSFD used by the EMODNET chemistry lot to provide coarse granularity groupings of the chemical parameters it covers.", "homepage": "http://vocab.nerc.ac.uk/collection/P36/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p37": {"id": "seadatanet.p37", "prefix": "p37", "uri_format": "http://vocab.nerc.ac.uk/collection/P37/current/$1", "name": "Climate and Forecast Calendars", "description": "Terms used by the CF community to describe the calendar systems used for time co-ordinates in CF-compliant data files", "homepage": "http://vocab.nerc.ac.uk/collection/P37/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p38": {"id": "seadatanet.p38", "prefix": "p38", "uri_format": "http://vocab.nerc.ac.uk/collection/P38/current/$1", "name": "Climate and Forecast Vertical Co-ordinate Coverages", "description": "Terms used by the CF community to describe the data coverage over the vertical (z) co-ordinate. This is used to describe the Earth Realm in the CF Standard Name semantic model.", "homepage": "http://vocab.nerc.ac.uk/collection/P38/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.p64": {"id": "seadatanet.p64", "prefix": "p64", "uri_format": "http://vocab.nerc.ac.uk/collection/P64/current/$1", "name": "Global Change Master Directory Science Keywords V6", "description": "Concatenated category, topic, term and variable separated by '>'. From Olsen L.M. et. al (2007) NASA/GCMD Earth Science Keywords Version 6.0.0.0", "homepage": "http://vocab.nerc.ac.uk/collection/P64/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.q01": {"id": "seadatanet.q01", "prefix": "q01", "uri_format": "http://vocab.nerc.ac.uk/collection/Q01/current/$1", "name": "OBIS sampling instruments and methods attributes", "description": "Collection of terms used by the Ocean Biogeographic Information System to standardise attributes related to sampling instruments and methods.", "homepage": "http://vocab.nerc.ac.uk/collection/Q01/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r01": {"id": "seadatanet.r01", "prefix": "r01", "uri_format": "http://vocab.nerc.ac.uk/collection/R01/current/$1", "name": "Argo data type", "description": "Terms describing the type of data contained in an Argo netCDF file. Argo netCDF variable DATA_TYPE is populated by R01 prefLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R01/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r03": {"id": "seadatanet.r03", "prefix": "r03", "uri_format": "http://vocab.nerc.ac.uk/collection/R03/current/$1", "name": "Argo parameter codes", "description": "Terms describing individual measured phenomena, used to mark up sets of data in Argo netCDF arrays. Argo netCDF variables PARAMETER and TRAJECTORY_PARAMETERS are populated by R03 altLabel; R03 altLabel is also used to name netCDF profile files parameter variables .", "homepage": "http://vocab.nerc.ac.uk/collection/R03/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r04": {"id": "seadatanet.r04", "prefix": "r04", "uri_format": "http://vocab.nerc.ac.uk/collection/R04/current/$1", "name": "Argo data centres and institutions", "description": "Codes for data centres and institutions handling or managing Argo data. Argo netCDF variable DATA_CENTRE is populated by R04 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R04/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r05": {"id": "seadatanet.r05", "prefix": "r05", "uri_format": "http://vocab.nerc.ac.uk/collection/R05/current/$1", "name": "Argo position accuracy", "description": "Accuracy in latitude and longitude measurements received from the positioning system, grouped by location accuracy classes.", "homepage": "http://vocab.nerc.ac.uk/collection/R05/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r06": {"id": "seadatanet.r06", "prefix": "r06", "uri_format": "http://vocab.nerc.ac.uk/collection/R06/current/$1", "name": "Argo data state indicators", "description": "Processing stage of the data based on the concatenation of processing level and class indicators. Argo netCDF variable DATA_STATE_INDICATOR is populated by R06 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R06/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r07": {"id": "seadatanet.r07", "prefix": "r07", "uri_format": "http://vocab.nerc.ac.uk/collection/R07/current/$1", "name": "Argo history action codes", "description": "Coded history information for each action performed on each profile by a data centre. Argo netCDF variable HISTORY_ACTION is populated by R07 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R07/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r08": {"id": "seadatanet.r08", "prefix": "r08", "uri_format": "http://vocab.nerc.ac.uk/collection/R08/current/$1", "name": "Argo instrument types", "description": "Subset of instrument type codes from the World Meteorological Organization (WMO) Common Code Table C-3 (CCT C-3) 1770, named 'Instrument make and type for water temperature profile measurement with fall rate equation coefficients' and available here: https://library.wmo.int/doc_num.php?explnum_id=11283. Argo netCDF variable WMO_INST_TYPE is populated by R08 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R08/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r09": {"id": "seadatanet.r09", "prefix": "r09", "uri_format": "http://vocab.nerc.ac.uk/collection/R09/current/$1", "name": "Argo positioning system", "description": "List of float location measuring systems. Argo netCDF variable POSITIONING_SYSTEM is populated by R09 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R09/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r10": {"id": "seadatanet.r10", "prefix": "r10", "uri_format": "http://vocab.nerc.ac.uk/collection/R10/current/$1", "name": "Argo transmission systems", "description": "List of telecommunication systems. Argo netCDF variable TRANS_SYSTEM is populated by R10 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R10/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r11": {"id": "seadatanet.r11", "prefix": "r11", "uri_format": "http://vocab.nerc.ac.uk/collection/R11/current/$1", "name": "Argo real-time quality-control test identifiers", "description": "List of real-time quality-control tests and corresponding binary identifiers, used as reference to populate the Argo netCDF HISTORY_QCTEST variable.", "homepage": "http://vocab.nerc.ac.uk/collection/R11/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r12": {"id": "seadatanet.r12", "prefix": "r12", "uri_format": "http://vocab.nerc.ac.uk/collection/R12/current/$1", "name": "Argo history processing step codes", "description": "Data processing step codes for history record. Argo netCDF variable TRANS_SYSTEM is populated by R12 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R12/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r13": {"id": "seadatanet.r13", "prefix": "r13", "uri_format": "http://vocab.nerc.ac.uk/collection/R13/current/$1", "name": "Argo ocean area codes and boundary definitions", "description": "Ocean area codes assigned to each profile in the Metadata directory (index) file of the Argo Global Assembly Centre.", "homepage": "http://vocab.nerc.ac.uk/collection/R13/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r14": {"id": "seadatanet.r14", "prefix": "r14", "uri_format": "http://vocab.nerc.ac.uk/collection/R14/current/$1", "name": "Argo technical parameter names", "description": "List of technical parameters reported by a float at every cycle. Technical parameter names follow a naming convention to indicate what is being reported (category), where or when (descriptor), and in what units, delimited by an underscore. They are stored in the float 'tech.nc' file, under TECHNICAL_PARAMETER_NAME. Each technical parameter name has an associated value, stored in TECHNICAL_PARAMTER_VALUE. Argo netCDF variable TECHNICAL_PARAMETER_NAME is populated by R14 prefLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R14/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r15": {"id": "seadatanet.r15", "prefix": "r15", "uri_format": "http://vocab.nerc.ac.uk/collection/R15/current/$1", "name": "Argo trajectory measurement code identifiers", "description": "Measurement code IDs used in Argo Trajectory netCDF files. Argo netCDF variable MEASUREMENT_CODE is populated by R15 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R15/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r16": {"id": "seadatanet.r16", "prefix": "r16", "uri_format": "http://vocab.nerc.ac.uk/collection/R16/current/$1", "name": "Argo vertical sampling schemes", "description": "Profile sampling schemes and sampling methods. Argo netCDF variable VERTICAL_SAMPLING_SCHEME is populated by R16 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R16/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r18": {"id": "seadatanet.r18", "prefix": "r18", "uri_format": "http://vocab.nerc.ac.uk/collection/R18/current/$1", "name": "Argo configuration parameter names", "description": "List of float configuration settings selected by the float Principal Investigator (PI). Configuration parameters may or may not be reported by the float, and do not constitute float measurements. Configuration parameters selected for a float are stored in the float 'meta.nc' file, under CONFIG_PARAMETER_NAME. Each configuration parameter name has an associated value, stored in CONFIG_PARAMETER_VALUE. Argo netCDF variable CONFIG_PARAMETER_NAME is populated by R18 prefLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R18/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r19": {"id": "seadatanet.r19", "prefix": "r19", "uri_format": "http://vocab.nerc.ac.uk/collection/R19/current/$1", "name": "Argo STATUS flags", "description": "Flag scale for values in all Argo netCDF cycle timing variables. Argo netCDF cycle timing variables JULD__STATUS are populated by R19 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R19/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r20": {"id": "seadatanet.r20", "prefix": "r20", "uri_format": "http://vocab.nerc.ac.uk/collection/R20/current/$1", "name": "Argo GROUNDED flags", "description": "Codes to indicate the best estimate of whether the float touched the ground during a specific cycle. Argo netCDF variable GROUNDED in the Trajectory file is populated by R20 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R20/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r21": {"id": "seadatanet.r21", "prefix": "r21", "uri_format": "http://vocab.nerc.ac.uk/collection/R21/current/$1", "name": "Argo status flag on the Representative Park Pressure (RPP)", "description": "Argo status flag on the Representative Park Pressure (RPP). Argo netCDF variable REPRESENTATIVE_PARK_PRESSURE_STATUS in the Trajectory file is populated by R21 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R21/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r22": {"id": "seadatanet.r22", "prefix": "r22", "uri_format": "http://vocab.nerc.ac.uk/collection/R22/current/$1", "name": "Argo platform family", "description": "List of platform family/category of Argo floats. Argo netCDF variable PLATFORM_FAMILY is populated by R22 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R22/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r23": {"id": "seadatanet.r23", "prefix": "r23", "uri_format": "http://vocab.nerc.ac.uk/collection/R23/current/$1", "name": "Argo platform type", "description": "List of Argo float types. Argo netCDF variable PLATFORM_TYPE is populated by R23 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R23/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r24": {"id": "seadatanet.r24", "prefix": "r24", "uri_format": "http://vocab.nerc.ac.uk/collection/R24/current/$1", "name": "Argo platform maker", "description": "List of Argo float manufacturers. Argo netCDF variable PLATFORM_MAKER is populated by R24 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R24/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r25": {"id": "seadatanet.r25", "prefix": "r25", "uri_format": "http://vocab.nerc.ac.uk/collection/R25/current/$1", "name": "Argo sensor types", "description": "Terms describing sensor types mounted on Argo floats. Argo netCDF variable SENSOR is populated by R25 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R25/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r26": {"id": "seadatanet.r26", "prefix": "r26", "uri_format": "http://vocab.nerc.ac.uk/collection/R26/current/$1", "name": "Argo sensor manufacturers", "description": "Terms describing developers and manufacturers of sensors mounted on Argo floats. Argo netCDF variable SENSOR_MAKER is populated by R26 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R26/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r27": {"id": "seadatanet.r27", "prefix": "r27", "uri_format": "http://vocab.nerc.ac.uk/collection/R27/current/$1", "name": "Argo sensor models", "description": "Terms listing models of sensors mounted on Argo floats. Note: avoid using the manufacturer name and sensor firmware version in new entries when possible. Argo netCDF variable SENSOR_MODEL is populated by R27 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R27/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r28": {"id": "seadatanet.r28", "prefix": "r28", "uri_format": "http://vocab.nerc.ac.uk/collection/R28/current/$1", "name": "Argo controller board types and generations", "description": "List of Argo floats controller board types and generations. Argo netCDF variables CONTROLLER_BOARD_TYPE_PRIMARY and, when needed, CONTROLLER_BOARD_TYPE_SECONDARY, are populated by R28 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R28/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.r40": {"id": "seadatanet.r40", "prefix": "r40", "uri_format": "http://vocab.nerc.ac.uk/collection/R40/current/$1", "name": "Argo Principal Investigator (PI) names", "description": "List of Principal Investigator (PI) names in charge of Argo floats. Argo netCDF variable PI_NAME is populated by R40 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/R40/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.rd2": {"id": "seadatanet.rd2", "prefix": "rd2", "uri_format": "http://vocab.nerc.ac.uk/collection/RD2/current/$1", "name": "Argo delayed-mode quality control measurement flags", "description": "Quality flag scale for delayed-mode measurements. Argo netCDF variables _ADJUSTED_QC in 'D' mode are populated by RD2 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/RD2/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.rmc": {"id": "seadatanet.rmc", "prefix": "rmc", "uri_format": "http://vocab.nerc.ac.uk/collection/RMC/current/$1", "name": "Argo measurement code categories", "description": "Categories of trajectory measurement codes listed in NVS collection 'R15'", "homepage": "http://vocab.nerc.ac.uk/collection/RMC/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.rp2": {"id": "seadatanet.rp2", "prefix": "rp2", "uri_format": "http://vocab.nerc.ac.uk/collection/RP2/current/$1", "name": "Argo profile quality control flags", "description": "Quality control flag scale for whole profiles. Argo netCDF variables PROFILE__QC are populated by RP2 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/RP2/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.rr2": {"id": "seadatanet.rr2", "prefix": "rr2", "uri_format": "http://vocab.nerc.ac.uk/collection/RR2/current/$1", "name": "Argo real-time quality control measurement flags", "description": "Quality flag scale for real-time measurements. Argo netCDF variables _QC in 'R' mode and _ADJUSTED_QC in 'A' mode are populated by RR2 altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/RR2/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.rtv": {"id": "seadatanet.rtv", "prefix": "rtv", "uri_format": "http://vocab.nerc.ac.uk/collection/RTV/current/$1", "name": "Argo float cycle timing variables", "description": "Timing variables representing stages of an Argo float profiling cycle, most of which are associated with a trajectory measurement code ID listed in NVS collection 'R15'. Argo netCDF cycle timing variable names JULD__STATUS are constructed by RTV altLabel.", "homepage": "http://vocab.nerc.ac.uk/collection/RTV/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s01": {"id": "seadatanet.s01", "prefix": "s01", "uri_format": "http://vocab.nerc.ac.uk/collection/S01/current/$1", "name": "BODC parameter semantic model component names", "description": "Terms used to describe the information entities that are combined in the BODC semantic model to produce a phenomenon description.", "homepage": "http://vocab.nerc.ac.uk/collection/S01/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s02": {"id": "seadatanet.s02", "prefix": "s02", "uri_format": "http://vocab.nerc.ac.uk/collection/S02/current/$1", "name": "BODC parameter semantic model relationships between what theme and where theme", "description": "Terms used to describe the relationship between the 'where theme' and the 'what theme' in the BODC semantic model for measured phenomena descriptions.", "homepage": "http://vocab.nerc.ac.uk/collection/S02/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s03": {"id": "seadatanet.s03", "prefix": "s03", "uri_format": "http://vocab.nerc.ac.uk/collection/S03/current/$1", "name": "BODC parameter semantic model sample preparation entity descriptions", "description": "Controlled vocabulary defining the terms that may be used for a sample preparation entity (part of the how theme) in the BODC parameter semantic model.", "homepage": "http://vocab.nerc.ac.uk/collection/S03/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s04": {"id": "seadatanet.s04", "prefix": "s04", "uri_format": "http://vocab.nerc.ac.uk/collection/S04/current/$1", "name": "BODC parameter semantic model analytical method entity descriptions", "description": "Controlled vocabulary defining the terms that may be used for an analytical method entity (part of the how theme) in the BODC parameter semantic model.", "homepage": "http://vocab.nerc.ac.uk/collection/S04/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s05": {"id": "seadatanet.s05", "prefix": "s05", "uri_format": "http://vocab.nerc.ac.uk/collection/S05/current/$1", "name": "BODC parameter semantic model data processing entity descriptions", "description": "Controlled vocabulary defining the terms that may be used for data processing description (part of the how theme) in the BODC parameter semantic model.", "homepage": "http://vocab.nerc.ac.uk/collection/S05/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s06": {"id": "seadatanet.s06", "prefix": "s06", "uri_format": "http://vocab.nerc.ac.uk/collection/S06/current/$1", "name": "BODC parameter semantic model parameter entity names", "description": "Controlled vocabulary defining the terms that may be used to specify the property element of a parameter (part of the 'what' theme) in the BODC parameter semantic model.", "homepage": "http://vocab.nerc.ac.uk/collection/S06/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s07": {"id": "seadatanet.s07", "prefix": "s07", "uri_format": "http://vocab.nerc.ac.uk/collection/S07/current/$1", "name": "BODC parameter semantic model parameter statistic", "description": "Controlled vocabulary defining the terms that may be used for a parameter statistic (part of the what theme) in the BODC parameter semantic model.", "homepage": "http://vocab.nerc.ac.uk/collection/S07/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s09": {"id": "seadatanet.s09", "prefix": "s09", "uri_format": "http://vocab.nerc.ac.uk/collection/S09/current/$1", "name": "BODC parameter semantic model biological entity size terms", "description": "Controlled vocabulary defining the terms that may be used for biological entity size (part of the what theme) in the BODC parameter semantic model.", "homepage": "http://vocab.nerc.ac.uk/collection/S09/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s10": {"id": "seadatanet.s10", "prefix": "s10", "uri_format": "http://vocab.nerc.ac.uk/collection/S10/current/$1", "name": "BODC parameter semantic model biological entity sex category terms", "description": "Controlled vocabulary defining terms used to refer to a biological entity sex category (part of the what theme) in the BODC parameter semantic model.", "homepage": "http://vocab.nerc.ac.uk/collection/S10/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s11": {"id": "seadatanet.s11", "prefix": "s11", "uri_format": "http://vocab.nerc.ac.uk/collection/S11/current/$1", "name": "BODC parameter semantic model biological entity development stage terms", "description": "Controlled vocabulary defining the terms that may be used to specify the development or life cycle stage of a biological entity (part of the 'what' theme) in the BODC parameter semantic model.", "homepage": "http://vocab.nerc.ac.uk/collection/S11/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s12": {"id": "seadatanet.s12", "prefix": "s12", "uri_format": "http://vocab.nerc.ac.uk/collection/S12/current/$1", "name": "BODC parameter semantic model biological entity subcomponent terms", "description": "Controlled vocabulary defining the terms that may be used for biological entity (component of the what theme) plant or animal parts in the BODC parameter semantic model.", "homepage": "http://vocab.nerc.ac.uk/collection/S12/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s13": {"id": "seadatanet.s13", "prefix": "s13", "uri_format": "http://vocab.nerc.ac.uk/collection/S13/current/$1", "name": "BODC parameter semantic model biological entity subgroup terms", "description": "Controlled vocabulary defining the terms that may be used for ad-hoc qualification of a biological entity (component of the what theme) in the BODC parameter semantic model.", "homepage": "http://vocab.nerc.ac.uk/collection/S13/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s14": {"id": "seadatanet.s14", "prefix": "s14", "uri_format": "http://vocab.nerc.ac.uk/collection/S14/current/$1", "name": "BODC parameter semantic model biological entity morphology terms", "description": "Controlled vocabulary defining the terms that may be used for morphology of a biological entity (component of the what theme) in the BODC parameter semantic model.", "homepage": "http://vocab.nerc.ac.uk/collection/S14/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s15": {"id": "seadatanet.s15", "prefix": "s15", "uri_format": "http://vocab.nerc.ac.uk/collection/S15/current/$1", "name": "BODC parameter semantic model biological entity colour terms", "description": "Controlled vocabulary defining the terms that may be used for colour or optical appearance of a biological entity (component of the what theme) in the BODC parameter semantic model.", "homepage": "http://vocab.nerc.ac.uk/collection/S15/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s18": {"id": "seadatanet.s18", "prefix": "s18", "uri_format": "http://vocab.nerc.ac.uk/collection/S18/current/$1", "name": "BODC parameter semantic model physical entity names", "description": "Controlled vocabulary defining the terms that may be used for a physical entity (part of the what theme) in the BODC parameter semantic model.", "homepage": "http://vocab.nerc.ac.uk/collection/S18/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s19": {"id": "seadatanet.s19", "prefix": "s19", "uri_format": "http://vocab.nerc.ac.uk/collection/S19/current/$1", "name": "BODC parameter semantic model physical entity subgroup names", "description": "Controlled vocabulary defining the terms that may be used to qualify a generic physical entity (part of the what theme) in the BODC parameter semantic model.", "homepage": "http://vocab.nerc.ac.uk/collection/S19/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s20": {"id": "seadatanet.s20", "prefix": "s20", "uri_format": "http://vocab.nerc.ac.uk/collection/S20/current/$1", "name": "BODC parameter semantic model physical entity datum names", "description": "Controlled vocabulary defining the terms that may be used to describe the reference with respect to which a physical entity (part of the what theme) in the BODC parameter. semantic model is specified.", "homepage": "http://vocab.nerc.ac.uk/collection/S20/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s21": {"id": "seadatanet.s21", "prefix": "s21", "uri_format": "http://vocab.nerc.ac.uk/collection/S21/current/$1", "name": "BODC parameter semantic model sphere names", "description": "Controlled vocabulary defining the terms that may be used to describe the sphere (SWEET EarthRealm) in the BODC parameter semantic model. Part of the where theme.", "homepage": "http://vocab.nerc.ac.uk/collection/S21/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s22": {"id": "seadatanet.s22", "prefix": "s22", "uri_format": "http://vocab.nerc.ac.uk/collection/S22/current/$1", "name": "BODC parameter semantic model sphere subgroup names", "description": "Controlled vocabulary defining the terms that may be used to describe subgroupings of the sphere (SWEET EarthRealm) in the BODC parameter semantic model. Part of the where theme.", "homepage": "http://vocab.nerc.ac.uk/collection/S22/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s23": {"id": "seadatanet.s23", "prefix": "s23", "uri_format": "http://vocab.nerc.ac.uk/collection/S23/current/$1", "name": "BODC semantic model sphere phase names", "description": "Controlled vocabulary defining the terms for phase (dissolved, particulate etc.) within a sphere (SWEET EarthRealm) in the BODC parameter semantic model. Part of the where theme.", "homepage": "http://vocab.nerc.ac.uk/collection/S23/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s24": {"id": "seadatanet.s24", "prefix": "s24", "uri_format": "http://vocab.nerc.ac.uk/collection/S24/current/$1", "name": "BODC semantic model sphere phase subgroup names", "description": "Concepts describing physical or logical (i.e. categories) subdivisions of a phase (i.e. subcomponent) of a sphere (SWEET EarthRealm) in the BODC parameter semantic model. Part of the where theme.", "homepage": "http://vocab.nerc.ac.uk/collection/S24/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s25": {"id": "seadatanet.s25", "prefix": "s25", "uri_format": "http://vocab.nerc.ac.uk/collection/S25/current/$1", "name": "BODC parameter semantic model biological entity names", "description": "Terms used to describe biological entities (organisms or parts thereof) in the BODC Parameter Usage Vocabulary", "homepage": "http://vocab.nerc.ac.uk/collection/S25/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s26": {"id": "seadatanet.s26", "prefix": "s26", "uri_format": "http://vocab.nerc.ac.uk/collection/S26/current/$1", "name": "BODC parameter semantic model matrices", "description": "Terms used to describe the medium in which a measurement was made in the semantic model that underpins the BODC parameter discovery vocabulary", "homepage": "http://vocab.nerc.ac.uk/collection/S26/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s27": {"id": "seadatanet.s27", "prefix": "s27", "uri_format": "http://vocab.nerc.ac.uk/collection/S27/current/$1", "name": "BODC parameter semantic model chemical substances", "description": "Terms for chemicals whose quantity in a matrix is determined to generate measurements in the BODC parameter usage vocabulary semantic model. Includes elements, compounds, isotopes and mixtures.", "homepage": "http://vocab.nerc.ac.uk/collection/S27/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s28": {"id": "seadatanet.s28", "prefix": "s28", "uri_format": "http://vocab.nerc.ac.uk/collection/S28/current/$1", "name": "Seaglider Guidance and Control Phase Settings", "description": "The six encoded modes of operation for a deployed Seaglider.", "homepage": "http://vocab.nerc.ac.uk/collection/S28/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s29": {"id": "seadatanet.s29", "prefix": "s29", "uri_format": "http://vocab.nerc.ac.uk/collection/S29/current/$1", "name": "BODC parameter semantic model physical entity compound names", "description": "Terms used to describe physical entities in the BODC Parameter Usage Vocabulary", "homepage": "http://vocab.nerc.ac.uk/collection/S29/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.s30": {"id": "seadatanet.s30", "prefix": "s30", "uri_format": "http://vocab.nerc.ac.uk/collection/S30/current/$1", "name": "BODC parameter semantic model relationships between biological entities", "description": "Controlled vocabulary defining the relationship between two biological entities in the BODC parameter semantic model for biological parameters related to e.g. predator-prey interactions.", "homepage": "http://vocab.nerc.ac.uk/collection/S30/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.t01": {"id": "seadatanet.t01", "prefix": "t01", "uri_format": "http://vocab.nerc.ac.uk/collection/T01/current/$1", "name": "British Antarctic Survey research topics", "description": "Standardised list of major research areas within the British Antarctic Survey for classifying materials and activities.", "homepage": "http://vocab.nerc.ac.uk/collection/T01/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.v12": {"id": "seadatanet.v12", "prefix": "v12", "uri_format": "http://vocab.nerc.ac.uk/collection/V12/current/$1", "name": "SeaDataNet Vocabularies", "description": "Controlled vocabularies deemed to be of interest to the SeaDataNet project or users of its standards", "homepage": "http://vocab.nerc.ac.uk/collection/V12/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.v22": {"id": "seadatanet.v22", "prefix": "v22", "uri_format": "http://vocab.nerc.ac.uk/collection/V22/current/$1", "name": "SeaDataNet CDI/CSR ISO Code List collections", "description": "Concept collections used within ISO Code List representations for ISO19139 encoding of SeaDataNet CDIs and CSRs", "homepage": "http://vocab.nerc.ac.uk/collection/V22/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.v23": {"id": "seadatanet.v23", "prefix": "v23", "uri_format": "http://vocab.nerc.ac.uk/collection/V23/current/$1", "name": "SeaDataNet GMX and imported ISO Code List collections", "description": "Concept collections used within ISOTC211/19115 namespace of ISO Code List representations for ISO19139 encoding of SeaDataNet CDIs and CSRs", "homepage": "http://vocab.nerc.ac.uk/collection/V23/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.w01": {"id": "seadatanet.w01", "prefix": "w01", "uri_format": "http://vocab.nerc.ac.uk/collection/W01/current/$1", "name": "SeaDataNet Sensor Web Enablement and SensorML type vocabulary", "description": "Vocabulary in support of SeaDataNet's implementation of OGC Sensor Web Enablement. This is the top level vocabulary with many narrower concepts from other vocabularies.", "homepage": "http://vocab.nerc.ac.uk/collection/W01/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.w02": {"id": "seadatanet.w02", "prefix": "w02", "uri_format": "http://vocab.nerc.ac.uk/collection/W02/current/$1", "name": "SeaDataNet Sensor Web Enablement and SensorML sub-type vocabulary", "description": "Vocabulary in support of SeaDataNet's (SDN) implementation of OGC Sensor Web Enablement (SWE). This is the lower level SDN SEW specific vocabulary.", "homepage": "http://vocab.nerc.ac.uk/collection/W02/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.w03": {"id": "seadatanet.w03", "prefix": "w03", "uri_format": "http://vocab.nerc.ac.uk/collection/W03/current/$1", "name": "SensorML History Event Types", "description": "Terms used to describe events or operations that have taken place during the life of an observation system (e.g. a sensor, a platform, an instrument, a network).", "homepage": "http://vocab.nerc.ac.uk/collection/W03/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.w04": {"id": "seadatanet.w04", "prefix": "w04", "uri_format": "http://vocab.nerc.ac.uk/collection/W04/current/$1", "name": "SensorML Capability Section Terms", "description": "Terms used in SensorML to describe properties of an observation system that further qualify or quantify its output values.", "homepage": "http://vocab.nerc.ac.uk/collection/W04/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.w05": {"id": "seadatanet.w05", "prefix": "w05", "uri_format": "http://vocab.nerc.ac.uk/collection/W05/current/$1", "name": "SensorML Characteristic Section Terms", "description": "Terms used in SensorML to describe properties of an observation system that do not further qualify or quantify its output values.", "homepage": "http://vocab.nerc.ac.uk/collection/W05/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.w06": {"id": "seadatanet.w06", "prefix": "w06", "uri_format": "http://vocab.nerc.ac.uk/collection/W06/current/$1", "name": "SensorML Classification Section Terms", "description": "Terms used in SensorML to describe aspects of an observation system (e.g. the type of process, the type of sensor, or its intended applications).", "homepage": "http://vocab.nerc.ac.uk/collection/W06/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.w07": {"id": "seadatanet.w07", "prefix": "w07", "uri_format": "http://vocab.nerc.ac.uk/collection/W07/current/$1", "name": "SensorML Identification Section Terms", "description": "Terms used in SensorML to identify an observation system.", "homepage": "http://vocab.nerc.ac.uk/collection/W07/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.w08": {"id": "seadatanet.w08", "prefix": "w08", "uri_format": "http://vocab.nerc.ac.uk/collection/W08/current/$1", "name": "SensorML Contact Section Terms", "description": "Terms used in SensorML to describe the role and contact information for an observation system.", "homepage": "http://vocab.nerc.ac.uk/collection/W08/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.w09": {"id": "seadatanet.w09", "prefix": "w09", "uri_format": "http://vocab.nerc.ac.uk/collection/W09/current/$1", "name": "Sensor Web Enablement Observations and Measurements Section Terms", "description": "Terms used in SWE Observations and Measurements that describe the measurements made by an observing system and the features involved in this process.", "homepage": "http://vocab.nerc.ac.uk/collection/W09/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.w10": {"id": "seadatanet.w10", "prefix": "w10", "uri_format": "http://vocab.nerc.ac.uk/collection/W10/current/$1", "name": "SensorML Output Section Data Interface Terms", "description": "Terms used in SensorML to describe the software interactions with an observing system. The terms are typically used in the SensorML Outputs section.", "homepage": "http://vocab.nerc.ac.uk/collection/W10/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}, "seadatanet.w11": {"id": "seadatanet.w11", "prefix": "w11", "uri_format": "http://vocab.nerc.ac.uk/collection/W11/current/$1", "name": "SensorML Event Classification Terms", "description": "Terms used in SensorML to describe aspects of an Event.", "homepage": "http://vocab.nerc.ac.uk/collection/W11/current/", "subjects": ["earth and related environmental sciences", "oceanography"], "source": "http://vocab.nerc.ac.uk", "authority": "seadatanet"}} \ No newline at end of file +{ + "seadatanet.a01": { + "authority": "seadatanet", + "description": "Terms used at all hierarchical levels in the ICAN global thesaurus for coastal erosion. Terms used to populate drop-down lists in discovery portals.", + "homepage": "http://vocab.nerc.ac.uk/collection/A01/current/", + "id": "seadatanet.a01", + "name": "International Coastal Atlas Network Coastal Erosion Global Thesaurus", + "prefix": "a01", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/A01/current/$1" + }, + "seadatanet.a02": { + "authority": "seadatanet", + "description": "Terms used at all hierarchical levels in the Oregon Coastal Atlas for coastal erosion layers, datasets and discovery.", + "homepage": "http://vocab.nerc.ac.uk/collection/A02/current/", + "id": "seadatanet.a02", + "name": "Oregon Coastal Atlas Coastal Erosion Thesaurus markup terms", + "prefix": "a02", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/A02/current/$1" + }, + "seadatanet.a03": { + "authority": "seadatanet", + "description": "Terms used at all hierarchical levels in the Oregon Coastal Atlas for categorisation and discovery, but not for layer or dataset markup.", + "homepage": "http://vocab.nerc.ac.uk/collection/A03/current/", + "id": "seadatanet.a03", + "name": "Oregon Coastal Atlas Coastal Erosion Thesaurus discovery terms", + "prefix": "a03", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/A03/current/$1" + }, + "seadatanet.a04": { + "authority": "seadatanet", + "description": "A collection of terms used by the Irish Marine Data Atlas in association with the topic of coastal erosion", + "homepage": "http://vocab.nerc.ac.uk/collection/A04/current/", + "id": "seadatanet.a04", + "name": "MIDA Coastal Erosion Thesaurus", + "prefix": "a04", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/A04/current/$1" + }, + "seadatanet.a05": { + "authority": "seadatanet", + "description": "Collection of terms used to group key measurements into a set of Essential Variables (EV) and their associated units as part of the AtlantOS Atlantic Ocean dataset", + "homepage": "http://vocab.nerc.ac.uk/collection/A05/current/", + "id": "seadatanet.a05", + "name": "AtlantOS Essential Variables", + "prefix": "a05", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/A05/current/$1" + }, + "seadatanet.b02": { + "authority": "seadatanet", + "description": "Internationally registered materials used to assess the accuracy of analyses and for laboratory intercomparability studies with unique identifiers assigned by BODC.", + "homepage": "http://vocab.nerc.ac.uk/collection/B02/current/", + "id": "seadatanet.b02", + "name": "BODC-annotated certified reference materials", + "prefix": "b02", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/B02/current/$1" + }, + "seadatanet.b03": { + "authority": "seadatanet", + "description": "Terms used to classify the type of reference material used by laboratories in the verification of analytical techniques in terms of consistency, accuracy and precision", + "homepage": "http://vocab.nerc.ac.uk/collection/B03/current/", + "id": "seadatanet.b03", + "name": "BODC-annotated reference material classifiers", + "prefix": "b03", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/B03/current/$1" + }, + "seadatanet.b04": { + "authority": "seadatanet", + "description": "Terms used to populate the title field in the BODC address book.", + "homepage": "http://vocab.nerc.ac.uk/collection/B04/current/", + "id": "seadatanet.b04", + "name": "BODC people titles", + "prefix": "b04", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/B04/current/$1" + }, + "seadatanet.b05": { + "authority": "seadatanet", + "description": "Terms used by BODC to describe roles that may be given to people within a governance structure.", + "homepage": "http://vocab.nerc.ac.uk/collection/B05/current/", + "id": "seadatanet.b05", + "name": "BODC governance roles", + "prefix": "b05", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/B05/current/$1" + }, + "seadatanet.b06": { + "authority": "seadatanet", + "description": "Terms describing automated integrity checks applied to data and metadata during BODC quality control.", + "homepage": "http://vocab.nerc.ac.uk/collection/B06/current/", + "id": "seadatanet.b06", + "name": "BODC data and metadata integrity checks", + "prefix": "b06", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/B06/current/$1" + }, + "seadatanet.b07": { + "authority": "seadatanet", + "description": "A catalogue of deployment methods of sampling net gears for the collection of mainly plankton, micronekton, and neuston organisms based on Wiebe P.H. et al. (2014)", + "homepage": "http://vocab.nerc.ac.uk/collection/B07/current/", + "id": "seadatanet.b07", + "name": "Sampling net gear deployment vocabulary", + "prefix": "b07", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/B07/current/$1" + }, + "seadatanet.b09": { + "authority": "seadatanet", + "description": "Terms used to describe single and multiple nations who own datasets (and are part of the Celtic Seas Partnership) bounding the Celtic Seas Marine Region as designated by the Marine Strategy Framework Directive (MSFD)", + "homepage": "http://vocab.nerc.ac.uk/collection/B09/current/", + "id": "seadatanet.b09", + "name": "Celtic Seas Partnership data owner nations bordering MSFD Celtic Seas Marine Region", + "prefix": "b09", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/B09/current/$1" + }, + "seadatanet.b11": { + "authority": "seadatanet", + "description": "Procedures or protocols that have been adopted by communities to ensure consistent and comparable methods are used when making observations from the environment. This also includes derivation and quality assurance practices.", + "homepage": "http://vocab.nerc.ac.uk/collection/B11/current/", + "id": "seadatanet.b11", + "name": "BODC Standard Operating Procedures and Protocols for environmental observations", + "prefix": "b11", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/B11/current/$1" + }, + "seadatanet.b12": { + "authority": "seadatanet", + "description": "Terms used by BODC to define measurement attributes described by numbers associated with data held in its repositories.", + "homepage": "http://vocab.nerc.ac.uk/collection/B12/current/", + "id": "seadatanet.b12", + "name": "BODC measurement numeric attribute types", + "prefix": "b12", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/B12/current/$1" + }, + "seadatanet.b20": { + "authority": "seadatanet", + "description": "Terms used by the Celtic Seas Partnership to categorise stakeholders according to the marine areas within which they operate.", + "homepage": "http://vocab.nerc.ac.uk/collection/B20/current/", + "id": "seadatanet.b20", + "name": "Celtic Seas Partnership stakeholder sectors", + "prefix": "b20", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/B20/current/$1" + }, + "seadatanet.b21": { + "authority": "seadatanet", + "description": "Terms used by the Celtic Seas Partnership to broadly describe the spatial area of influence of a project, programme or initiative.", + "homepage": "http://vocab.nerc.ac.uk/collection/B21/current/", + "id": "seadatanet.b21", + "name": "Celtic Seas Partnership scale", + "prefix": "b21", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/B21/current/$1" + }, + "seadatanet.b22": { + "authority": "seadatanet", + "description": "Terms used by the Celtic Seas Partnership to describe the transboundary nature of a project, programme or initiative.", + "homepage": "http://vocab.nerc.ac.uk/collection/B22/current/", + "id": "seadatanet.b22", + "name": "Celtic Seas Partnership governance mechanisms", + "prefix": "b22", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/B22/current/$1" + }, + "seadatanet.b39": { + "authority": "seadatanet", + "description": "Names of variables recorded into NetCDF files by the underway monitoring system on National Marine Facilities Sea Systems (NMF-SS) research vessels such as the RRS James Cook and RRS Discovery. Variables are from meteorological, hydrographic and navigational instruments.", + "homepage": "http://vocab.nerc.ac.uk/collection/B39/current/", + "id": "seadatanet.b39", + "name": "NMF-SS Research Vessel underway variable NetCDF vocabulary", + "prefix": "b39", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/B39/current/$1" + }, + "seadatanet.b75": { + "authority": "seadatanet", + "description": "Up-to-date names and addresses for organisational entities referenced in BODC systems.", + "homepage": "http://vocab.nerc.ac.uk/collection/B75/current/", + "id": "seadatanet.b75", + "name": "BODC Organisations", + "prefix": "b75", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/B75/current/$1" + }, + "seadatanet.b76": { + "authority": "seadatanet", + "description": "Terms used to describe designs or versions of platforms.", + "homepage": "http://vocab.nerc.ac.uk/collection/B76/current/", + "id": "seadatanet.b76", + "name": "BODC Platform Models", + "prefix": "b76", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/B76/current/$1" + }, + "seadatanet.bq1": { + "authority": "seadatanet", + "description": "Terms used by the EMODnet Bathymetry Lot to define the estimated horizontal accuracy of bathymetric data (QI_Horizontal).", + "homepage": "http://vocab.nerc.ac.uk/collection/BQ1/current/", + "id": "seadatanet.bq1", + "name": "EMODnet Bathymetry Quality Indicators of horizontal accuracy (QI_Horizontal)", + "prefix": "bq1", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/BQ1/current/$1" + }, + "seadatanet.bq2": { + "authority": "seadatanet", + "description": "Terms used by the EMODnet Bathymetry Lot to define the estimated vertical accuracy of bathymetric data (QI_Vertical).", + "homepage": "http://vocab.nerc.ac.uk/collection/BQ2/current/", + "id": "seadatanet.bq2", + "name": "EMODnet Bathymetry Quality Indicators of vertical accuracy (QI_Vertical)", + "prefix": "bq2", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/BQ2/current/$1" + }, + "seadatanet.bq3": { + "authority": "seadatanet", + "description": "Terms used by the EMODnet Bathymetry Lot to define the purpose of the bathymetry survey (QI_Purpose).", + "homepage": "http://vocab.nerc.ac.uk/collection/BQ3/current/", + "id": "seadatanet.bq3", + "name": "EMODnet Bathymetry Quality Indicators of survey purpose (QI_Purpose)", + "prefix": "bq3", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/BQ3/current/$1" + }, + "seadatanet.c00": { + "authority": "seadatanet", + "description": "Terms used to describe the provenance of a water depth included in BODC metadata", + "homepage": "http://vocab.nerc.ac.uk/collection/C00/current/", + "id": "seadatanet.c00", + "name": "BODC Seafloor Depth Data Sources", + "prefix": "c00", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C00/current/$1" + }, + "seadatanet.c10": { + "authority": "seadatanet", + "description": "Terms that describe groups of BODC series with common independent variable characteristics.", + "homepage": "http://vocab.nerc.ac.uk/collection/C10/current/", + "id": "seadatanet.c10", + "name": "BODC series feature types", + "prefix": "c10", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C10/current/$1" + }, + "seadatanet.c16": { + "authority": "seadatanet", + "description": "Sea area terms from the IHB(1953) list plus additional terms added under SeaDataNet governance.", + "homepage": "http://vocab.nerc.ac.uk/collection/C16/current/", + "id": "seadatanet.c16", + "name": "SeaDataNet sea areas", + "prefix": "c16", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C16/current/$1" + }, + "seadatanet.c17": { + "authority": "seadatanet", + "description": "Identifiers and metadata for platform instances (combinations of names and physical entities such as hulls or airframes).", + "homepage": "http://vocab.nerc.ac.uk/collection/C17/current/", + "id": "seadatanet.c17", + "name": "ICES Platform Codes", + "prefix": "c17", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C17/current/$1" + }, + "seadatanet.c18": { + "authority": "seadatanet", + "description": "Country names published by ICES on behalf of IOC as part of their RNODC (formats) responsibility. Maintained until 2003.", + "homepage": "http://vocab.nerc.ac.uk/collection/C18/current/", + "id": "seadatanet.c18", + "name": "Intergovernmental Oceanographic Commission countries", + "prefix": "c18", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C18/current/$1" + }, + "seadatanet.c19": { + "authority": "seadatanet", + "description": "Terms specified by the SeaVoX vocabulary governance to describe coherent regions of the hydrosphere. Includes land masses enclosing freshwater bodies.", + "homepage": "http://vocab.nerc.ac.uk/collection/C19/current/", + "id": "seadatanet.c19", + "name": "SeaVoX salt and fresh water body gazetteer", + "prefix": "c19", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C19/current/$1" + }, + "seadatanet.c30": { + "authority": "seadatanet", + "description": "Bodies responsible for the intellectual control of vocabularies served by the NDG/SeaDataNet vocabulary server.", + "homepage": "http://vocab.nerc.ac.uk/collection/C30/current/", + "id": "seadatanet.c30", + "name": "Active vocabulary content governance authorities", + "prefix": "c30", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C30/current/$1" + }, + "seadatanet.c31": { + "authority": "seadatanet", + "description": "WMO ship type codes used to classify voluntary observing ships. Source: [WMO No.47 - International List of Selected, Supplementary and Auxiliary Ships](http://www.wmo.int/pages/prog/www/ois/pub47/pub47-home.htm).", + "homepage": "http://vocab.nerc.ac.uk/collection/C31/current/", + "id": "seadatanet.c31", + "name": "World Meteorological Organisation voluntary observing ship category", + "prefix": "c31", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C31/current/$1" + }, + "seadatanet.c32": { + "authority": "seadatanet", + "description": "ISO country codes from ISO3166-1 and ISO3166-3 lists taken from www.iso.org on 16/08/2011 plus OGC terms for missing values and the ISO 3166 Maintenance Agency (ISO3166/MA) Exceptionally Reserved code for the European Union.", + "homepage": "http://vocab.nerc.ac.uk/collection/C32/current/", + "id": "seadatanet.c32", + "name": "International Standards Organisation countries", + "prefix": "c32", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C32/current/$1" + }, + "seadatanet.c33": { + "authority": "seadatanet", + "description": "Abbreviated terms used to specify categories of data production tools in the NERC DataGrid MOLES metadata schema.", + "homepage": "http://vocab.nerc.ac.uk/collection/C33/current/", + "id": "seadatanet.c33", + "name": "NERC DataGrid data production tool category", + "prefix": "c33", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C33/current/$1" + }, + "seadatanet.c34": { + "authority": "seadatanet", + "description": "Terms used to specify why an activity was undertaken.", + "homepage": "http://vocab.nerc.ac.uk/collection/C34/current/", + "id": "seadatanet.c34", + "name": "Activity purpose categories", + "prefix": "c34", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C34/current/$1" + }, + "seadatanet.c35": { + "authority": "seadatanet", + "description": "Medium-granularity (hierarchical level 3 of 5) terms describing the environment associated with an activity from a biological perspective.", + "homepage": "http://vocab.nerc.ac.uk/collection/C35/current/", + "id": "seadatanet.c35", + "name": "European Nature Information System Level 3 Habitats", + "prefix": "c35", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C35/current/$1" + }, + "seadatanet.c36": { + "authority": "seadatanet", + "description": "Legislative acts, agreements and treaties that have provided the impetus for monitoring activities to be undertaken.", + "homepage": "http://vocab.nerc.ac.uk/collection/C36/current/", + "id": "seadatanet.c36", + "name": "Monitoring activity legislative drivers", + "prefix": "c36", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C36/current/$1" + }, + "seadatanet.c37": { + "authority": "seadatanet", + "description": "Labels applied to areas of ten degrees latitude by ten degrees longitude in the Marsden Square system.", + "homepage": "http://vocab.nerc.ac.uk/collection/C37/current/", + "id": "seadatanet.c37", + "name": "Ten-degree Marsden Squares", + "prefix": "c37", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C37/current/$1" + }, + "seadatanet.c38": { + "authority": "seadatanet", + "description": "Names of a geographic location at which a cruise may begin or end. Used by SeaDataNet to populate Cruise Summary Report metadata.", + "homepage": "http://vocab.nerc.ac.uk/collection/C38/current/", + "id": "seadatanet.c38", + "name": "SeaDataNet Ports Gazetteer", + "prefix": "c38", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C38/current/$1" + }, + "seadatanet.c39": { + "authority": "seadatanet", + "description": "Codes and terms developed from the Douglas wind sea states to describe the general condition of the surface of a large water body.", + "homepage": "http://vocab.nerc.ac.uk/collection/C39/current/", + "id": "seadatanet.c39", + "name": "World Meteorological Organisation sea states", + "prefix": "c39", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C39/current/$1" + }, + "seadatanet.c40": { + "authority": "seadatanet", + "description": "Terms used to classify the accuracy and reliablity of pollution reports filed under the Bonn Agreement.", + "homepage": "http://vocab.nerc.ac.uk/collection/C40/current/", + "id": "seadatanet.c40", + "name": "Bonn Agreement pollution report accuracy", + "prefix": "c40", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C40/current/$1" + }, + "seadatanet.c41": { + "authority": "seadatanet", + "description": "Terms developed by BODC to provide a standard classification of pollution sources to be used in UK pollution reports filed under the Bonn Agreement.", + "homepage": "http://vocab.nerc.ac.uk/collection/C41/current/", + "id": "seadatanet.c41", + "name": "BODC marine pollution sources", + "prefix": "c41", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C41/current/$1" + }, + "seadatanet.c43": { + "authority": "seadatanet", + "description": "Terms developed by BODC to classify the magnitude of a discharge of oil into the marine environment", + "homepage": "http://vocab.nerc.ac.uk/collection/C43/current/", + "id": "seadatanet.c43", + "name": "BODC oilspill quantity", + "prefix": "c43", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C43/current/$1" + }, + "seadatanet.c45": { + "authority": "seadatanet", + "description": "Concepts specified as descriptors of good environmental status as defined by the Marine Strategy Framework Directive as published in 2010/477/EU: Commission Decision of 1 September 2010 on criteria and methodological standards on good environmental status of marine waters (notified under document C(2010) 5956).", + "homepage": "http://vocab.nerc.ac.uk/collection/C45/current/", + "id": "seadatanet.c45", + "name": "Marine Strategy Framework Directive descriptors 2010/477/EU", + "prefix": "c45", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C45/current/$1" + }, + "seadatanet.c46": { + "authority": "seadatanet", + "description": "Concepts specified as criteria to be used to measure good environmental status as defined by the Marine Strategy Framework Directive as published in 2010/477/EU: Commission Decision of 1 September 2010 on criteria and methodological standards on good environmental status of marine waters (notified under document C(2010) 5956).", + "homepage": "http://vocab.nerc.ac.uk/collection/C46/current/", + "id": "seadatanet.c46", + "name": "Marine Strategy Framework Directive criteria 2010/477/EU", + "prefix": "c46", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C46/current/$1" + }, + "seadatanet.c47": { + "authority": "seadatanet", + "description": "Concepts specified as indicators to be used to measure good environmental status as defined by the Marine Strategy Framework Directive as published in 2010/477/EU: Commission Decision of 1 September 2010 on criteria and methodological standards on good environmental status of marine waters (notified under document C(2010) 5956).", + "homepage": "http://vocab.nerc.ac.uk/collection/C47/current/", + "id": "seadatanet.c47", + "name": "Marine Strategy Framework Directive indicators 2010/477/EU", + "prefix": "c47", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C47/current/$1" + }, + "seadatanet.c48": { + "authority": "seadatanet", + "description": "Documents produced by the Marine Environmental Data and Information Network specifying information content standards for the collection of specific types of marine data", + "homepage": "http://vocab.nerc.ac.uk/collection/C48/current/", + "id": "seadatanet.c48", + "name": "MEDIN Data Guidelines", + "prefix": "c48", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C48/current/$1" + }, + "seadatanet.c59": { + "authority": "seadatanet", + "description": "Generic terms used by BODC to describe the relationship between organisations and projects or data collection activities such as cruises", + "homepage": "http://vocab.nerc.ac.uk/collection/C59/current/", + "id": "seadatanet.c59", + "name": "BODC organisation roles within activities and projects", + "prefix": "c59", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C59/current/$1" + }, + "seadatanet.c60": { + "authority": "seadatanet", + "description": "Terms used in the NDG project to describe the relationship between subjects and objects in RDF triples, including vocabulary term mappings.", + "homepage": "http://vocab.nerc.ac.uk/collection/C60/current/", + "id": "seadatanet.c60", + "name": "NERC DataGrid vocabulary term relationships", + "prefix": "c60", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C60/current/$1" + }, + "seadatanet.c61": { + "authority": "seadatanet", + "description": "Labels used by BODC to populate 'city' or 'post town' metadata fields.", + "homepage": "http://vocab.nerc.ac.uk/collection/C61/current/", + "id": "seadatanet.c61", + "name": "BODC post town names", + "prefix": "c61", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C61/current/$1" + }, + "seadatanet.c62": { + "authority": "seadatanet", + "description": "Labels used by BODC to populate 'county' metadata fields.", + "homepage": "http://vocab.nerc.ac.uk/collection/C62/current/", + "id": "seadatanet.c62", + "name": "BODC administrative region names", + "prefix": "c62", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C62/current/$1" + }, + "seadatanet.c64": { + "authority": "seadatanet", + "description": "Terms used specify regions of the seas around the UK based on bio-geographical features rather than administrative boundaries", + "homepage": "http://vocab.nerc.ac.uk/collection/C64/current/", + "id": "seadatanet.c64", + "name": "United Kingdom Charting Progress 2 sea regions", + "prefix": "c64", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C64/current/$1" + }, + "seadatanet.c67": { + "authority": "seadatanet", + "description": "Terms used by BODC to describe groups of related parameters brought together to form a series from the sample schema. Each term maps to multiple BODC parameter sets.", + "homepage": "http://vocab.nerc.ac.uk/collection/C67/current/", + "id": "seadatanet.c67", + "name": "BODC series parameter collection names", + "prefix": "c67", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C67/current/$1" + }, + "seadatanet.c71": { + "authority": "seadatanet", + "description": "Terms used by BODC to classify the organisation entities with which it deals.", + "homepage": "http://vocab.nerc.ac.uk/collection/C71/current/", + "id": "seadatanet.c71", + "name": "BODC organisation categories", + "prefix": "c71", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C71/current/$1" + }, + "seadatanet.c72": { + "authority": "seadatanet", + "description": "Concepts that describe sediment corer deployment operational issues.", + "homepage": "http://vocab.nerc.ac.uk/collection/C72/current/", + "id": "seadatanet.c72", + "name": "BODC core failure codes", + "prefix": "c72", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C72/current/$1" + }, + "seadatanet.c75": { + "authority": "seadatanet", + "description": "Concepts used to populate 'organisation' fields in BODC metadata schemas. When used in conjunction with the C75PK group of functions (NMNOW, NMTHEN, NMALL)they provide access to past organisation names. For example, the C75 code 'ISB' translates to 'Proudman Oceanographic Laboratory' for a date in 1995, but to 'National Oceanography Centre, Liverpool' for a date in 2015.", + "homepage": "http://vocab.nerc.ac.uk/collection/C75/current/", + "id": "seadatanet.c75", + "name": "BODC Organisation Histories", + "prefix": "c75", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C75/current/$1" + }, + "seadatanet.c77": { + "authority": "seadatanet", + "description": "Terms used to describe shipboard activities (sometimes inaccurately described as parameters) by SeaDataNet in Cruise Summary Report (formerly known as ROSCOP) metadata.", + "homepage": "http://vocab.nerc.ac.uk/collection/C77/current/", + "id": "seadatanet.c77", + "name": "SeaDataNet Cruise Summary Report data categories", + "prefix": "c77", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C77/current/$1" + }, + "seadatanet.c86": { + "authority": "seadatanet", + "description": "SeaDataNet terms to describe roles associated with access rights to data, metadata and project information or the responsibilities for a contact within an activity, project or dataset.", + "homepage": "http://vocab.nerc.ac.uk/collection/C86/current/", + "id": "seadatanet.c86", + "name": "SeaDataNet contact and security access roles", + "prefix": "c86", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C86/current/$1" + }, + "seadatanet.c87": { + "authority": "seadatanet", + "description": "Terms used by BODC to describe roles associated with scientific projects.", + "homepage": "http://vocab.nerc.ac.uk/collection/C87/current/", + "id": "seadatanet.c87", + "name": "BODC project roles", + "prefix": "c87", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C87/current/$1" + }, + "seadatanet.c88": { + "authority": "seadatanet", + "description": "Terms used by BODC to describe roles specifying access rights to assets, which include data objects, web pages, services and vocabulary lists.", + "homepage": "http://vocab.nerc.ac.uk/collection/C88/current/", + "id": "seadatanet.c88", + "name": "BODC asset access right roles", + "prefix": "c88", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C88/current/$1" + }, + "seadatanet.c89": { + "authority": "seadatanet", + "description": "Terms used by BODC for roles that describe the relationship between a person or organisation with a specific dataset.", + "homepage": "http://vocab.nerc.ac.uk/collection/C89/current/", + "id": "seadatanet.c89", + "name": "BODC dataset roles", + "prefix": "c89", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C89/current/$1" + }, + "seadatanet.c96": { + "authority": "seadatanet", + "description": "Entities in the BODC data model that may be associated with a spatial coverage in the real world", + "homepage": "http://vocab.nerc.ac.uk/collection/C96/current/", + "id": "seadatanet.c96", + "name": "BODC data model spatial objects", + "prefix": "c96", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C96/current/$1" + }, + "seadatanet.c98": { + "authority": "seadatanet", + "description": "Terms used to classify the lists held in the Vocabulary Server (formerly known as code tables) by the subject of their contents.", + "homepage": "http://vocab.nerc.ac.uk/collection/C98/current/", + "id": "seadatanet.c98", + "name": "Vocabulary Server list subject categories", + "prefix": "c98", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/C98/current/$1" + }, + "seadatanet.d01": { + "authority": "seadatanet", + "description": "A vocabulary of SKOS top concepts for use as entry points to a SKOS scheme defining the DCAT theme keywords for use in linked data representations of the SeaDataNet EDMED catalogue.", + "homepage": "http://vocab.nerc.ac.uk/collection/D01/current/", + "id": "seadatanet.d01", + "name": "DCAT Themes for Linked Data Representation of the SeaDataNet EDMED Catalogue", + "prefix": "d01", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/D01/current/$1" + }, + "seadatanet.e01": { + "authority": "seadatanet", + "description": "Names of stations providing sea level data into the ESEAS network.", + "homepage": "http://vocab.nerc.ac.uk/collection/E01/current/", + "id": "seadatanet.e01", + "name": "ESEAS active tide gauge sites", + "prefix": "e01", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/E01/current/$1" + }, + "seadatanet.e02": { + "authority": "seadatanet", + "description": "The standard states of processed data defined by the Earth Observing System Data and Information Ssytem (EOSDIS) Data Panel, which are also consistent with the Committee on Data Management, Archiving,\nand Computing (CODMAC) definitions.", + "homepage": "http://vocab.nerc.ac.uk/collection/E02/current/", + "id": "seadatanet.e02", + "name": "Processing Levels for Earth Observing System Standard Data Products", + "prefix": "e02", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/E02/current/$1" + }, + "seadatanet.el1": { + "authority": "seadatanet", + "description": "Terms used to identify actions performed on sampling and observation platforms. This vocabulary is the result of an harmonisation exercise between the Eurofleets Automatic Reporting System (EARS) ontology and the Rolling Deck to Repository (R2R) project, for research vessel event logs. The terms it contains should be applicable to any sampling or observation platforms.", + "homepage": "http://vocab.nerc.ac.uk/collection/EL1/current/", + "id": "seadatanet.el1", + "name": "SeaVoX Sampling and Observation Platform Event Actions", + "prefix": "el1", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/EL1/current/$1" + }, + "seadatanet.el2": { + "authority": "seadatanet", + "description": "Terms used to identify processes performed on sampling and observation platforms. This vocabulary is the result of an harmonisation exercise between the Eurofleets Automatic Reporting System (EARS) ontology and the Rolling Deck to Repository (R2R) project, for research vessel event logs. The terms it contains should be applicable to any sampling or observation platforms.", + "homepage": "http://vocab.nerc.ac.uk/collection/EL2/current/", + "id": "seadatanet.el2", + "name": "SeaVoX Sampling and Observation Platform Event Processes", + "prefix": "el2", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/EL2/current/$1" + }, + "seadatanet.f02": { + "authority": "seadatanet", + "description": "Terms recommended by an international consortium of marine microbial flow cytometry experts to standardise the naming and definition of groups derived from flow cytometry analysis of marine samples.", + "homepage": "http://vocab.nerc.ac.uk/collection/F02/current/", + "id": "seadatanet.f02", + "name": "Marine Microbial Flow Cytometry Standardised Group Names", + "prefix": "f02", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/F02/current/$1" + }, + "seadatanet.g01": { + "authority": "seadatanet", + "description": "Identification of when a given event occurred", + "homepage": "http://vocab.nerc.ac.uk/collection/G01/current/", + "id": "seadatanet.g01", + "name": "CI_DateTypeCode", + "prefix": "g01", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G01/current/$1" + }, + "seadatanet.g02": { + "authority": "seadatanet", + "description": "Function performed by the resource", + "homepage": "http://vocab.nerc.ac.uk/collection/G02/current/", + "id": "seadatanet.g02", + "name": "CI_OnlineFunctionCode", + "prefix": "g02", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G02/current/$1" + }, + "seadatanet.g03": { + "authority": "seadatanet", + "description": "Mode in which the data are represented", + "homepage": "http://vocab.nerc.ac.uk/collection/G03/current/", + "id": "seadatanet.g03", + "name": "CI_PresentationFormCode", + "prefix": "g03", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G03/current/$1" + }, + "seadatanet.g04": { + "authority": "seadatanet", + "description": "Function performed by the responsible party", + "homepage": "http://vocab.nerc.ac.uk/collection/G04/current/", + "id": "seadatanet.g04", + "name": "CI_RoleCode", + "prefix": "g04", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G04/current/$1" + }, + "seadatanet.g05": { + "authority": "seadatanet", + "description": "Type or method for evaluating an identified data quality measure", + "homepage": "http://vocab.nerc.ac.uk/collection/G05/current/", + "id": "seadatanet.g05", + "name": "DQ_EvaluationMethodTypeCode", + "prefix": "g05", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G05/current/$1" + }, + "seadatanet.g06": { + "authority": "seadatanet", + "description": "Justification for the correlation of two datasets", + "homepage": "http://vocab.nerc.ac.uk/collection/G06/current/", + "id": "seadatanet.g06", + "name": "DS_AssociationTypeCode", + "prefix": "g06", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G06/current/$1" + }, + "seadatanet.g07": { + "authority": "seadatanet", + "description": "Type of aggregation activity in which datasets are related", + "homepage": "http://vocab.nerc.ac.uk/collection/G07/current/", + "id": "seadatanet.g07", + "name": "DS_InitiativeTypeCode", + "prefix": "g07", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G07/current/$1" + }, + "seadatanet.g08": { + "authority": "seadatanet", + "description": "Code indicating whether grid data are points or area", + "homepage": "http://vocab.nerc.ac.uk/collection/G08/current/", + "id": "seadatanet.g08", + "name": "MD_CellGeometryCode", + "prefix": "g08", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G08/current/$1" + }, + "seadatanet.g09": { + "authority": "seadatanet", + "description": "Name of the character coding standard used in the resource", + "homepage": "http://vocab.nerc.ac.uk/collection/G09/current/", + "id": "seadatanet.g09", + "name": "MD_CharacterSetCode", + "prefix": "g09", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G09/current/$1" + }, + "seadatanet.g10": { + "authority": "seadatanet", + "description": "Name of the handling restrictions on the dataset", + "homepage": "http://vocab.nerc.ac.uk/collection/G10/current/", + "id": "seadatanet.g10", + "name": "MD_ClassificationCode", + "prefix": "g10", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G10/current/$1" + }, + "seadatanet.g11": { + "authority": "seadatanet", + "description": "Specific type of information represented in the cell", + "homepage": "http://vocab.nerc.ac.uk/collection/G11/current/", + "id": "seadatanet.g11", + "name": "MD_CoverageContentTypeCode", + "prefix": "g11", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G11/current/$1" + }, + "seadatanet.g12": { + "authority": "seadatanet", + "description": "Datatype of element or entity", + "homepage": "http://vocab.nerc.ac.uk/collection/G12/current/", + "id": "seadatanet.g12", + "name": "MD_DatatypeCode", + "prefix": "g12", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G12/current/$1" + }, + "seadatanet.g13": { + "authority": "seadatanet", + "description": "Name of the dimension", + "homepage": "http://vocab.nerc.ac.uk/collection/G13/current/", + "id": "seadatanet.g13", + "name": "MD_DimensionNameTypeCode ", + "prefix": "g13", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G13/current/$1" + }, + "seadatanet.g14": { + "authority": "seadatanet", + "description": "Name of point or vector objects used to locate zero-, one-, two-, or three-dimensional spatial locations in the dataset", + "homepage": "http://vocab.nerc.ac.uk/collection/G14/current/", + "id": "seadatanet.g14", + "name": "MD_GeometricObjectTypeCode", + "prefix": "g14", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G14/current/$1" + }, + "seadatanet.g15": { + "authority": "seadatanet", + "description": "Code which indicates conditions which may affect the image", + "homepage": "http://vocab.nerc.ac.uk/collection/G15/current/", + "id": "seadatanet.g15", + "name": "MD_ImagingConditionCode ", + "prefix": "g15", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G15/current/$1" + }, + "seadatanet.g17": { + "authority": "seadatanet", + "description": "Frequency with which modifications and deletions are made to the data after they are first produced", + "homepage": "http://vocab.nerc.ac.uk/collection/G17/current/", + "id": "seadatanet.g17", + "name": "MD_MaintenanceFrequencyCode", + "prefix": "g17", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G17/current/$1" + }, + "seadatanet.g18": { + "authority": "seadatanet", + "description": "Method used to write to the medium", + "homepage": "http://vocab.nerc.ac.uk/collection/G18/current/", + "id": "seadatanet.g18", + "name": "MD_MediumFormatCode", + "prefix": "g18", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G18/current/$1" + }, + "seadatanet.g20": { + "authority": "seadatanet", + "description": "Obligation of the element or entity", + "homepage": "http://vocab.nerc.ac.uk/collection/G20/current/", + "id": "seadatanet.g20", + "name": "MD_ObligationCode", + "prefix": "g20", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G20/current/$1" + }, + "seadatanet.g21": { + "authority": "seadatanet", + "description": "Point in a pixel corresponding to the Earth location of the pixel", + "homepage": "http://vocab.nerc.ac.uk/collection/G21/current/", + "id": "seadatanet.g21", + "name": "MD_PixelOrientationCode", + "prefix": "g21", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G21/current/$1" + }, + "seadatanet.g22": { + "authority": "seadatanet", + "description": "Status of the dataset or progress of a review", + "homepage": "http://vocab.nerc.ac.uk/collection/G22/current/", + "id": "seadatanet.g22", + "name": "MD_ProgressCode", + "prefix": "g22", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G22/current/$1" + }, + "seadatanet.g23": { + "authority": "seadatanet", + "description": "Limitation(s) placed upon the access or use of the data", + "homepage": "http://vocab.nerc.ac.uk/collection/G23/current/", + "id": "seadatanet.g23", + "name": "MD_RestrictionCode", + "prefix": "g23", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G23/current/$1" + }, + "seadatanet.g25": { + "authority": "seadatanet", + "description": "Class of information to which the referencing entity applies", + "homepage": "http://vocab.nerc.ac.uk/collection/G25/current/", + "id": "seadatanet.g25", + "name": "MD_ScopeCode", + "prefix": "g25", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G25/current/$1" + }, + "seadatanet.g26": { + "authority": "seadatanet", + "description": "Terms used to represent geographic information in a dataset; \nISO codelist extracted from 'Codelists for description of metadata datasets compliant with ISO/TC 211 19115:2003 and 19139' at http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml; last checked on 24Sep2018.", + "homepage": "http://vocab.nerc.ac.uk/collection/G26/current/", + "id": "seadatanet.g26", + "name": "MD_SpatialRepresentationTypeCode", + "prefix": "g26", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G26/current/$1" + }, + "seadatanet.g28": { + "authority": "seadatanet", + "description": "Degree of complexity of the spatial relationships", + "homepage": "http://vocab.nerc.ac.uk/collection/G28/current/", + "id": "seadatanet.g28", + "name": "MD_TopologyLevelCode", + "prefix": "g28", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G28/current/$1" + }, + "seadatanet.g29": { + "authority": "seadatanet", + "description": "Extension of MD_ScopeCode for the needs of GMX application schemas and in the context of a transfer", + "homepage": "http://vocab.nerc.ac.uk/collection/G29/current/", + "id": "seadatanet.g29", + "name": "MX_ScopeCode", + "prefix": "g29", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G29/current/$1" + }, + "seadatanet.g30": { + "authority": "seadatanet", + "description": "Terms used to represent geographic information in a dataset; ISO codelist extracted from 'Codelists for description of metadata datasets compliant with ISO/TC 211 19115:2003 and 19139' at http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml. on 24Sep2018.", + "homepage": "http://vocab.nerc.ac.uk/collection/G30/current/", + "id": "seadatanet.g30", + "name": "MD_SpatialRepresentationTypeCode (DO NOT USE - use G26 instead)", + "prefix": "g30", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/G30/current/$1" + }, + "seadatanet.gbx": { + "authority": "seadatanet", + "description": "System used to control text displayed on BODC web pages on dynamic applications. The text stored in the description field is displayed in response to a CODVAL instance in the application code.", + "homepage": "http://vocab.nerc.ac.uk/collection/GBX/current/", + "id": "seadatanet.gbx", + "name": "I18n system English (UK) language terms", + "prefix": "gbx", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/GBX/current/$1" + }, + "seadatanet.ggb": { + "authority": "seadatanet", + "description": "Source data type information for the data sets used in the generation of the GEBCO_2019 Grid.", + "homepage": "http://vocab.nerc.ac.uk/collection/GGB/current/", + "id": "seadatanet.ggb", + "name": "GEBCO_2019 Grid source data types", + "prefix": "ggb", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/GGB/current/$1" + }, + "seadatanet.ggs": { + "authority": "seadatanet", + "description": "Provenance attributes of data source files used in the production of the GEBCO 30-second grid.", + "homepage": "http://vocab.nerc.ac.uk/collection/GGS/current/", + "id": "seadatanet.ggs", + "name": "GEBCO 30-second grid data sources", + "prefix": "ggs", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/GGS/current/$1" + }, + "seadatanet.ggt": { + "authority": "seadatanet", + "description": "Source data type information for the data sets used in the generation of the GEBCO Global Grid.", + "homepage": "http://vocab.nerc.ac.uk/collection/GGT/current/", + "id": "seadatanet.ggt", + "name": "GEBCO Grid Source Data Type Identifier", + "prefix": "ggt", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/GGT/current/$1" + }, + "seadatanet.gs1": { + "authority": "seadatanet", + "description": "Terms used to populate the featureOfInterest name field in the Geo-Seas data object Observations and Measurments documents.", + "homepage": "http://vocab.nerc.ac.uk/collection/GS1/current/", + "id": "seadatanet.gs1", + "name": "Geo-Seas features of interest", + "prefix": "gs1", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/GS1/current/$1" + }, + "seadatanet.gs2": { + "authority": "seadatanet", + "description": "Terms used to populate the observedProperty name field in the Geo-Seas data object Observations and Measurments documents.", + "homepage": "http://vocab.nerc.ac.uk/collection/GS2/current/", + "id": "seadatanet.gs2", + "name": "Geo-Seas observed properties", + "prefix": "gs2", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/GS2/current/$1" + }, + "seadatanet.gs3": { + "authority": "seadatanet", + "description": "Terms used to categorise sedimentary rocks and sediments in terms of the proportion of gravel, sand and mud. Initial terms proposed by Folk (1954) but subsequently revised by BGS and Flemming (2000).", + "homepage": "http://vocab.nerc.ac.uk/collection/GS3/current/", + "id": "seadatanet.gs3", + "name": "Geo-Seas adjusted Folk sediment lithology classes", + "prefix": "gs3", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/GS3/current/$1" + }, + "seadatanet.gs4": { + "authority": "seadatanet", + "description": "Terms used to describe rock and sediment colour in Geo-Seas based on the CGI GeologicUnitExposureColorTerms (https://www.seegrid.csiro.au/wiki/pub/CGIModel/GeologicUnitExposureColorTerms/Color.xls).", + "homepage": "http://vocab.nerc.ac.uk/collection/GS4/current/", + "id": "seadatanet.gs4", + "name": "Geo-Seas geological sample colours", + "prefix": "gs4", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/GS4/current/$1" + }, + "seadatanet.gs5": { + "authority": "seadatanet", + "description": "Terms used to describe sediment grain-size skewness coefficients in the Geo-Seas project.", + "homepage": "http://vocab.nerc.ac.uk/collection/GS5/current/", + "id": "seadatanet.gs5", + "name": "Geo-Seas sediment grain-size skewness descriptors", + "prefix": "gs5", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/GS5/current/$1" + }, + "seadatanet.gs6": { + "authority": "seadatanet", + "description": "Terms used to describe sediment grain-size kurtosis coefficients in the Geo-Seas project.", + "homepage": "http://vocab.nerc.ac.uk/collection/GS6/current/", + "id": "seadatanet.gs6", + "name": "Geo-Seas sediment grain-size kurtosis descriptors", + "prefix": "gs6", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/GS6/current/$1" + }, + "seadatanet.gs8": { + "authority": "seadatanet", + "description": "Concepts that describe techniques used in fieldwork in the geophysical discipline of seismics", + "homepage": "http://vocab.nerc.ac.uk/collection/GS8/current/", + "id": "seadatanet.gs8", + "name": "Geo-Seas Seismic Methods", + "prefix": "gs8", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/GS8/current/$1" + }, + "seadatanet.gs9": { + "authority": "seadatanet", + "description": "Concepts that describe dimensionality of field surveys in the geophysical discipline of seismics", + "homepage": "http://vocab.nerc.ac.uk/collection/GS9/current/", + "id": "seadatanet.gs9", + "name": "Geo-Seas Seismic Survey Dimensionality", + "prefix": "gs9", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/GS9/current/$1" + }, + "seadatanet.gsa": { + "authority": "seadatanet", + "description": "Concepts that describe standard types of data product produced in the geophysical discipline of seismics", + "homepage": "http://vocab.nerc.ac.uk/collection/GSA/current/", + "id": "seadatanet.gsa", + "name": "Geo-Seas Seismic Data Product Types", + "prefix": "gsa", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/GSA/current/$1" + }, + "seadatanet.gsb": { + "authority": "seadatanet", + "description": "Concepts that describe instrument types used to measure reflected and refracted acoustic signals in the geophysical discipline of seismics", + "homepage": "http://vocab.nerc.ac.uk/collection/GSB/current/", + "id": "seadatanet.gsb", + "name": "Geo-Seas Seismic Receiver Types", + "prefix": "gsb", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/GSB/current/$1" + }, + "seadatanet.gsc": { + "authority": "seadatanet", + "description": "Terms used to describe sound velocity correction applied to bathymetric data in the MGD77 format", + "homepage": "http://vocab.nerc.ac.uk/collection/GSC/current/", + "id": "seadatanet.gsc", + "name": "MGD77 Bathymetry Sound Velocity Correction Codes", + "prefix": "gsc", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/GSC/current/$1" + }, + "seadatanet.gxm": { + "authority": "seadatanet", + "description": "The purpose, such as an application, for which a given BODC I18n term in the GBX controlled vocabulary is used.", + "homepage": "http://vocab.nerc.ac.uk/collection/GXM/current/", + "id": "seadatanet.gxm", + "name": "BODC I18n term usage", + "prefix": "gxm", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/GXM/current/$1" + }, + "seadatanet.h01": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used for micro-litter particle types in the EMODnet Chemistry data reporting system. The categories only reflect types based on morphological criteria (e.g. pellets, fragments, etc.) and all reference to the material they were made of was removed from this vocabulary as agreed in https://nvs-vocabs/EMODnetChemVocabs#19.", + "homepage": "http://vocab.nerc.ac.uk/collection/H01/current/", + "id": "seadatanet.h01", + "name": "EMODnet micro-litter types", + "prefix": "h01", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/H01/current/$1" + }, + "seadatanet.h02": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used for micro-litter particle shapes in the EMODnet Chemistry data reporting system.", + "homepage": "http://vocab.nerc.ac.uk/collection/H02/current/", + "id": "seadatanet.h02", + "name": "EMODnet micro-litter shapes", + "prefix": "h02", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/H02/current/$1" + }, + "seadatanet.h03": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used for micro-litter particle size classes in the EMODnet Chemistry data reporting system.", + "homepage": "http://vocab.nerc.ac.uk/collection/H03/current/", + "id": "seadatanet.h03", + "name": "EMODnet micro-litter size classes", + "prefix": "h03", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/H03/current/$1" + }, + "seadatanet.h04": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used for micro-litter particle colour classes in the EMODnet Chemistry data reporting system.", + "homepage": "http://vocab.nerc.ac.uk/collection/H04/current/", + "id": "seadatanet.h04", + "name": "EMODnet micro-litter colour classes", + "prefix": "h04", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/H04/current/$1" + }, + "seadatanet.h05": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used for micro-litter particle characterisation according to the type of non-plastic material or the type of plastic polymer in the EMODnet Chemistry data reporting system.", + "homepage": "http://vocab.nerc.ac.uk/collection/H05/current/", + "id": "seadatanet.h05", + "name": "EMODnet micro-litter material or polymer type", + "prefix": "h05", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/H05/current/$1" + }, + "seadatanet.h06": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used for micro-litter particle transparency categories in the EMODnet Chemistry data reporting format.", + "homepage": "http://vocab.nerc.ac.uk/collection/H06/current/", + "id": "seadatanet.h06", + "name": "EMODnet micro-litter transparency classes", + "prefix": "h06", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/H06/current/$1" + }, + "seadatanet.ha2": { + "authority": "seadatanet", + "description": "Terms agreed within the EU EMODnet Human Activities community to describe categories of human activities, structures or organisational boundaries in or near the marine environment.", + "homepage": "http://vocab.nerc.ac.uk/collection/HA2/current/", + "id": "seadatanet.ha2", + "name": "EMODnet human activity categories", + "prefix": "ha2", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/HA2/current/$1" + }, + "seadatanet.i01": { + "authority": "seadatanet", + "description": "Extract of definitions from World Meteorological Organisation GRIB2 Table 4.2: meteorological parameter number by product discipline and parameter category.", + "homepage": "http://vocab.nerc.ac.uk/collection/I01/current/", + "id": "seadatanet.i01", + "name": "Subset of GRIB Table 4.2 - Parameter number by product discipline and parameter category", + "prefix": "i01", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/I01/current/$1" + }, + "seadatanet.i02": { + "authority": "seadatanet", + "description": "World Meteorological Organisation GRIB2 Table 4.201: precipitation type.", + "homepage": "http://vocab.nerc.ac.uk/collection/I02/current/", + "id": "seadatanet.i02", + "name": "GRIB Table 4.201 (Precipitation type)", + "prefix": "i02", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/I02/current/$1" + }, + "seadatanet.i03": { + "authority": "seadatanet", + "description": "Controlled vocabulary terms used within the Wisconsin Coastal Atlas.", + "homepage": "http://vocab.nerc.ac.uk/collection/I03/current/", + "id": "seadatanet.i03", + "name": "Wisconsin Coastal Atlas Vocabulary", + "prefix": "i03", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/I03/current/$1" + }, + "seadatanet.i10": { + "authority": "seadatanet", + "description": "Terms used in the INSPIRE infrastructure to tell a client what type of service to expect at the other end of a URL.", + "homepage": "http://vocab.nerc.ac.uk/collection/I10/current/", + "id": "seadatanet.i10", + "name": "INSPIRE service types", + "prefix": "i10", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/I10/current/$1" + }, + "seadatanet.i11": { + "authority": "seadatanet", + "description": "Types of control used to manage activities within a Management Area, Restriction or Regulation Zone.", + "homepage": "http://vocab.nerc.ac.uk/collection/I11/current/", + "id": "seadatanet.i11", + "name": "INSPIRE Management and Reporting Control Type", + "prefix": "i11", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/I11/current/$1" + }, + "seadatanet.i12": { + "authority": "seadatanet", + "description": "Terms used to describe temporal periods within which an activity is scheduled to be controlled.", + "homepage": "http://vocab.nerc.ac.uk/collection/I12/current/", + "id": "seadatanet.i12", + "name": "INSPIRE Management and Reporting Day Type", + "prefix": "i12", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/I12/current/$1" + }, + "seadatanet.i13": { + "authority": "seadatanet", + "description": "Environmental domain area within which a Management Area, Restriction or Regulation Zone was established.", + "homepage": "http://vocab.nerc.ac.uk/collection/I13/current/", + "id": "seadatanet.i13", + "name": "INSPIRE Management and Reporting Environmental Domain Area", + "prefix": "i13", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/I13/current/$1" + }, + "seadatanet.i14": { + "authority": "seadatanet", + "description": "Classification of the types of activities controlled within a Management Area, Restriction or Regulation Zone.", + "homepage": "http://vocab.nerc.ac.uk/collection/I14/current/", + "id": "seadatanet.i14", + "name": "INSPIRE Management and Reporting Controlled Activity Type", + "prefix": "i14", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/I14/current/$1" + }, + "seadatanet.i15": { + "authority": "seadatanet", + "description": "High-level classification defining the type of Management Area, Restriction or Regulation Zone.", + "homepage": "http://vocab.nerc.ac.uk/collection/I15/current/", + "id": "seadatanet.i15", + "name": "INSPIRE Management and Reporting Zone Type", + "prefix": "i15", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/I15/current/$1" + }, + "seadatanet.l02": { + "authority": "seadatanet", + "description": "SeaDataNet profile of ISO MD_GeometricObjectTypeCodeTerms code list. Known in SEA-SEARCH as 'Library 2' or cdi_measurement_codes.", + "homepage": "http://vocab.nerc.ac.uk/collection/L02/current/", + "id": "seadatanet.l02", + "name": "SeaDataNet Geospatial Feature Types", + "prefix": "l02", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L02/current/$1" + }, + "seadatanet.l03": { + "authority": "seadatanet", + "description": "Terms used to express a classification of measurement periodicity in the SeaDataNet project.", + "homepage": "http://vocab.nerc.ac.uk/collection/L03/current/", + "id": "seadatanet.l03", + "name": "SeaDataNet Measurement Periodicity Categories", + "prefix": "l03", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L03/current/$1" + }, + "seadatanet.l04": { + "authority": "seadatanet", + "description": "Terms used to group features or objects (sometimes called features of interest) in which measurements or observations may be made or of which samples may be collected.", + "homepage": "http://vocab.nerc.ac.uk/collection/L04/current/", + "id": "seadatanet.l04", + "name": "Matrix Categories", + "prefix": "l04", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L04/current/$1" + }, + "seadatanet.l05": { + "authority": "seadatanet", + "description": "Terms used to classify groups of sensors, instruments, sources of algorithmically computed data (numerical models) or samplers (collectors of water, SPM, sediment, rock, air or biota samples).", + "homepage": "http://vocab.nerc.ac.uk/collection/L05/current/", + "id": "seadatanet.l05", + "name": "SeaDataNet device categories", + "prefix": "l05", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L05/current/$1" + }, + "seadatanet.l06": { + "authority": "seadatanet", + "description": "2-level grouping term hierarchy used for vehicles, structures or organisms capable of bearing instruments or tools for the collection of physical, chemical, geological or biological samples or data.", + "homepage": "http://vocab.nerc.ac.uk/collection/L06/current/", + "id": "seadatanet.l06", + "name": "SeaVoX Platform Categories", + "prefix": "l06", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L06/current/$1" + }, + "seadatanet.l07": { + "authority": "seadatanet", + "description": "Terms for mechanisms by which data objects described by SeaDataNet Central Data Index (CDI) records may be obtained before SeaDataNet is fully implemented.", + "homepage": "http://vocab.nerc.ac.uk/collection/L07/current/", + "id": "seadatanet.l07", + "name": "SeaDataNet data access mechanisms", + "prefix": "l07", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L07/current/$1" + }, + "seadatanet.l08": { + "authority": "seadatanet", + "description": "Terms used to represent and classify data access policies in operation in the SeaDataNet project.", + "homepage": "http://vocab.nerc.ac.uk/collection/L08/current/", + "id": "seadatanet.l08", + "name": "SeaDataNet Data Access Restriction Policies", + "prefix": "l08", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L08/current/$1" + }, + "seadatanet.l10": { + "authority": "seadatanet", + "description": "Co-ordinate reference systems used for positions (latitude/longitude or grid references) in SeaDataNet metadata. May include 3D co-ordinate systems, but not vertical elevation datums like OD Newlyn.", + "homepage": "http://vocab.nerc.ac.uk/collection/L10/current/", + "id": "seadatanet.l10", + "name": "SeaDataNet geographic co-ordinate reference frames", + "prefix": "l10", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L10/current/$1" + }, + "seadatanet.l11": { + "authority": "seadatanet", + "description": "Terms used to describe the zero point for vertical co-ordinate reference systems (datums).", + "homepage": "http://vocab.nerc.ac.uk/collection/L11/current/", + "id": "seadatanet.l11", + "name": "SeaDataNet depth measurement reference planes", + "prefix": "l11", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L11/current/$1" + }, + "seadatanet.l12": { + "authority": "seadatanet", + "description": "Terms that are used to describe quality control procedures applied to data parameters.", + "homepage": "http://vocab.nerc.ac.uk/collection/L12/current/", + "id": "seadatanet.l12", + "name": "SeaDataNet parameter quality control procedures", + "prefix": "l12", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L12/current/$1" + }, + "seadatanet.l13": { + "authority": "seadatanet", + "description": "Terms used to describe data coverage over the vertical (z) co-ordinate.", + "homepage": "http://vocab.nerc.ac.uk/collection/L13/current/", + "id": "seadatanet.l13", + "name": "SeaVoX Vertical Co-ordinate Coverages", + "prefix": "l13", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L13/current/$1" + }, + "seadatanet.l14": { + "authority": "seadatanet", + "description": "Terms used to describe the operational status of data collection activities within the SeaDataNet project.", + "homepage": "http://vocab.nerc.ac.uk/collection/L14/current/", + "id": "seadatanet.l14", + "name": "SeaDataNet Activity Operational Stati", + "prefix": "l14", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L14/current/$1" + }, + "seadatanet.l15": { + "authority": "seadatanet", + "description": "Terms used to by SeaDataNet to describe formally recognised standards for data acquisition and handling procedures.", + "homepage": "http://vocab.nerc.ac.uk/collection/L15/current/", + "id": "seadatanet.l15", + "name": "SeaDataNet quality management system accreditations", + "prefix": "l15", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L15/current/$1" + }, + "seadatanet.l18": { + "authority": "seadatanet", + "description": "Terms used as units in the quantification of what was collected or measured in a Cruise Summary Report (ROSCOP) record.", + "homepage": "http://vocab.nerc.ac.uk/collection/L18/current/", + "id": "seadatanet.l18", + "name": "SeaDataNet Cruise Summary Report quantification units", + "prefix": "l18", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L18/current/$1" + }, + "seadatanet.l19": { + "authority": "seadatanet", + "description": "Terms used in SeaDataNet metadata to describe the purpose of a keyword. An extension of the ISO19115 KeywordTypeCode codelist.", + "homepage": "http://vocab.nerc.ac.uk/collection/L19/current/", + "id": "seadatanet.l19", + "name": "SeaDataNet keyword types", + "prefix": "l19", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L19/current/$1" + }, + "seadatanet.l20": { + "authority": "seadatanet", + "description": "Flags used to provide additional information, usually referring to data quality, about data values in SeaDataNet data files.", + "homepage": "http://vocab.nerc.ac.uk/collection/L20/current/", + "id": "seadatanet.l20", + "name": "SeaDataNet measurand qualifier flags", + "prefix": "l20", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L20/current/$1" + }, + "seadatanet.l21": { + "authority": "seadatanet", + "description": "High-level classification of devices based on function and mode of deployment.", + "homepage": "http://vocab.nerc.ac.uk/collection/L21/current/", + "id": "seadatanet.l21", + "name": "SeaDataNet device category types", + "prefix": "l21", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L21/current/$1" + }, + "seadatanet.l22": { + "authority": "seadatanet", + "description": "Terms for distinct sampling or measuring devices that may be identified in the real world in terms of manufacturer and model number.", + "homepage": "http://vocab.nerc.ac.uk/collection/L22/current/", + "id": "seadatanet.l22", + "name": "SeaVoX Device Catalogue", + "prefix": "l22", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L22/current/$1" + }, + "seadatanet.l23": { + "authority": "seadatanet", + "description": "Types of metadata record in the SeaDataNet metadata catalogue repositories", + "homepage": "http://vocab.nerc.ac.uk/collection/L23/current/", + "id": "seadatanet.l23", + "name": "SeaDataNet metadata entities", + "prefix": "l23", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L23/current/$1" + }, + "seadatanet.l24": { + "authority": "seadatanet", + "description": "Formats used for data delivery by SeaDataNet.", + "homepage": "http://vocab.nerc.ac.uk/collection/L24/current/", + "id": "seadatanet.l24", + "name": "SeaDataNet data transport formats", + "prefix": "l24", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L24/current/$1" + }, + "seadatanet.l26": { + "authority": "seadatanet", + "description": "Units of measure (P06 subset) that may be used for sampling intervals in the EDIOS metadata schema. Required to prevent times with units of kilograms!", + "homepage": "http://vocab.nerc.ac.uk/collection/L26/current/", + "id": "seadatanet.l26", + "name": "EDIOS permitted sampling interval units", + "prefix": "l26", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L26/current/$1" + }, + "seadatanet.l27": { + "authority": "seadatanet", + "description": "A catalogue including standardised labels of encoding schemes used for data value qualifying information such as data quality ", + "homepage": "http://vocab.nerc.ac.uk/collection/L27/current/", + "id": "seadatanet.l27", + "name": "SeaVoX data quality control flagging conventions", + "prefix": "l27", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L27/current/$1" + }, + "seadatanet.l30": { + "authority": "seadatanet", + "description": "Organisations supplying or holding data concerned with the EU MEDATLAS project.", + "homepage": "http://vocab.nerc.ac.uk/collection/L30/current/", + "id": "seadatanet.l30", + "name": "MEDATLAS Data Centres", + "prefix": "l30", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L30/current/$1" + }, + "seadatanet.l31": { + "authority": "seadatanet", + "description": "Flags representing concepts used to specify quality of Geo-Seas data objects. These are a subset of SeaDataNet measurand qualifier flags.", + "homepage": "http://vocab.nerc.ac.uk/collection/L31/current/", + "id": "seadatanet.l31", + "name": "Geo-Seas data object quality flags", + "prefix": "l31", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L31/current/$1" + }, + "seadatanet.l33": { + "authority": "seadatanet", + "description": "Terms specified by WMO to label XBT data with the type of probe used and the algorithm used to compute depth.", + "homepage": "http://vocab.nerc.ac.uk/collection/L33/current/", + "id": "seadatanet.l33", + "name": "WMO C3 vocabulary of XBT data types", + "prefix": "l33", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L33/current/$1" + }, + "seadatanet.l34": { + "authority": "seadatanet", + "description": "Quality flags used for the primary level of the IODE Quality Flag Scheme for the Exchange of Oceanographic and Marine Meteorological Data, IODE Manuals and Guides 54, Vol. 3.", + "homepage": "http://vocab.nerc.ac.uk/collection/L34/current/", + "id": "seadatanet.l34", + "name": "IODE Primary Level quality flags", + "prefix": "l34", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L34/current/$1" + }, + "seadatanet.l35": { + "authority": "seadatanet", + "description": "A collection of terms which denote the manufacturers or developers of devices (includes manufacturer and/or developer collaborations).", + "homepage": "http://vocab.nerc.ac.uk/collection/L35/current/", + "id": "seadatanet.l35", + "name": "SenseOcean device developers and manufacturers", + "prefix": "l35", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/L35/current/$1" + }, + "seadatanet.m01": { + "authority": "seadatanet", + "description": "Terms describing what types of data formats exist in a data set so a human can identify if the data is likely to be of use and select a tool to interrogate that data.", + "homepage": "http://vocab.nerc.ac.uk/collection/M01/current/", + "id": "seadatanet.m01", + "name": "MEDIN data format categories", + "prefix": "m01", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M01/current/$1" + }, + "seadatanet.m03": { + "authority": "seadatanet", + "description": "Terms used to describe different areas within an offshore renewable energy development.", + "homepage": "http://vocab.nerc.ac.uk/collection/M03/current/", + "id": "seadatanet.m03", + "name": "The Crown Estate Renewable Energy Development Areas", + "prefix": "m03", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M03/current/$1" + }, + "seadatanet.m04": { + "authority": "seadatanet", + "description": "Terms used to describe different development phases of an offshore renewable energy development.", + "homepage": "http://vocab.nerc.ac.uk/collection/M04/current/", + "id": "seadatanet.m04", + "name": "The Crown Estate Renewable Energy Development Phases", + "prefix": "m04", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M04/current/$1" + }, + "seadatanet.m05": { + "authority": "seadatanet", + "description": "Categories in a classification of the purpose and anticipated outcome of activities by governing bodies.", + "homepage": "http://vocab.nerc.ac.uk/collection/M05/current/", + "id": "seadatanet.m05", + "name": "MEDIN socio-economic governance objective categories", + "prefix": "m05", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M05/current/$1" + }, + "seadatanet.m06": { + "authority": "seadatanet", + "description": "Categories in a classification of the purpose of activities in which the state of something at different times is determined.", + "homepage": "http://vocab.nerc.ac.uk/collection/M06/current/", + "id": "seadatanet.m06", + "name": "MEDIN monitoring activity categories", + "prefix": "m06", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M06/current/$1" + }, + "seadatanet.m09": { + "authority": "seadatanet", + "description": "Terms used to classify techniques used to assess the socio-economic value of an ecosystem.", + "homepage": "http://vocab.nerc.ac.uk/collection/M09/current/", + "id": "seadatanet.m09", + "name": "MEDIN ecosystem valuation method types", + "prefix": "m09", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M09/current/$1" + }, + "seadatanet.m10": { + "authority": "seadatanet", + "description": "Terms used to describe techniques used to assess the socio-economic value of an ecosystem.", + "homepage": "http://vocab.nerc.ac.uk/collection/M10/current/", + "id": "seadatanet.m10", + "name": "MEDIN ecosystem valuation methods", + "prefix": "m10", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M10/current/$1" + }, + "seadatanet.m11": { + "authority": "seadatanet", + "description": "Terms used to classify the conditions and processes through which natural ecosystems sustain and fulfil human life.", + "homepage": "http://vocab.nerc.ac.uk/collection/M11/current/", + "id": "seadatanet.m11", + "name": "MEDIN ecosystem service types", + "prefix": "m11", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M11/current/$1" + }, + "seadatanet.m12": { + "authority": "seadatanet", + "description": "Categories of activity carried out by humans which exert an impact on the marine environment, as defined by the Joint Nature Conservation Committee (JNCC) ", + "homepage": "http://vocab.nerc.ac.uk/collection/M12/current/", + "id": "seadatanet.m12", + "name": "JNCC categories of human activity in the marine environment", + "prefix": "m12", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M12/current/$1" + }, + "seadatanet.m13": { + "authority": "seadatanet", + "description": "The standard list activities carried out by humans to manage the coastal environment, as defined by the Joint Nature Conservation Committee (JNCC)", + "homepage": "http://vocab.nerc.ac.uk/collection/M13/current/", + "id": "seadatanet.m13", + "name": "JNCC standard list of human activities in the marine environment", + "prefix": "m13", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M13/current/$1" + }, + "seadatanet.m14": { + "authority": "seadatanet", + "description": "List of defined pressures (stated by the Joint Nature Conservation Committee (JNCC) to be the mechanisms through which activities impact the marine environment) as specified by the Convention for the Protection of the Marine Environment for the North-East Atlantic (OSPAR) International Correspondence Group on Cumulative Effects (ICG-C) and distributed by the Joint Nature Conservation Committee ", + "homepage": "http://vocab.nerc.ac.uk/collection/M14/current/", + "id": "seadatanet.m14", + "name": "OSPAR list of defined pressures on the marine environment", + "prefix": "m14", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M14/current/$1" + }, + "seadatanet.m15": { + "authority": "seadatanet", + "description": "Themes under which defined pressures in M14 are categorised by the Convention for the Protection of the Marine Environment for the North-East Atlantic (OSPAR) International Correspondence Group on Cumulative Effects (ICG-C) and distributed by the Joint Nature Conservation Committee (JNCC) ", + "homepage": "http://vocab.nerc.ac.uk/collection/M15/current/", + "id": "seadatanet.m15", + "name": "OSPAR list of themes of defined pressures on the marine environment", + "prefix": "m15", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M15/current/$1" + }, + "seadatanet.m16": { + "authority": "seadatanet", + "description": "Terms used to describe techniques used by marine engineers to investigate marine earth materials. Used in the MEDIN Geotechnical Data Guideline to categorise what type of investigations are carried out at a particular location of interest.", + "homepage": "http://vocab.nerc.ac.uk/collection/M16/current/", + "id": "seadatanet.m16", + "name": "Type of geotechnical investigation carried out at a site", + "prefix": "m16", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M16/current/$1" + }, + "seadatanet.m17": { + "authority": "seadatanet", + "description": "Terms used to classify types of samples collected by marine engineers during geotechnical site investigations in the marine environment.", + "homepage": "http://vocab.nerc.ac.uk/collection/M17/current/", + "id": "seadatanet.m17", + "name": "Type of sample collected during a geotechnical investigation", + "prefix": "m17", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M17/current/$1" + }, + "seadatanet.m18": { + "authority": "seadatanet", + "description": "Terms used to classify types of container used by marine engineers to store physical specimens collected during marine geotechnical site investigations.", + "homepage": "http://vocab.nerc.ac.uk/collection/M18/current/", + "id": "seadatanet.m18", + "name": "Type of container used to hold a physical sample collected during a geotechnical site investigation", + "prefix": "m18", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M18/current/$1" + }, + "seadatanet.m20": { + "authority": "seadatanet", + "description": "Version 04.05 of the Marine Habitat Classification for Britain and Ireland (Connor et al. 2004), a hierarchical standard list of seabed habitats occurring within the marine, coastal and estuarine waters of Britain and Ireland. Connor, D.W., J.H. Allen, N.Golding, K.L.Howell, L.M. Lieberknecht, K.O. Northen And J.B. Reker (2004) The Marine Habitat Classification for Britain and Ireland Version 04.05. ISBN 1 861 07561 8.", + "homepage": "http://vocab.nerc.ac.uk/collection/M20/current/", + "id": "seadatanet.m20", + "name": "Marine Habitat Classification for Britain and Ireland Version 04.05", + "prefix": "m20", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M20/current/$1" + }, + "seadatanet.m21": { + "authority": "seadatanet", + "description": "Version 15.03 of the Marine Habitat Classification for Britain and Ireland (JNCC 2015), a hierarchical standard list of seabed habitats occurring within the marine, coastal and estuarine waters of Britain and Ireland. JNCC (2015) The Marine Habitat Classification for Britain and Ireland Version 15.03 [Online].", + "homepage": "http://vocab.nerc.ac.uk/collection/M21/current/", + "id": "seadatanet.m21", + "name": "Marine Habitat Classification for Britain and Ireland Version 15.03", + "prefix": "m21", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M21/current/$1" + }, + "seadatanet.m22": { + "authority": "seadatanet", + "description": "List of species and habitats that are considered to be priorities for protection by the OSPAR Commission (see https://www.ospar.org/work-areas/bdc/species-habitats/list-of-threatened-declining-species-habitats)", + "homepage": "http://vocab.nerc.ac.uk/collection/M22/current/", + "id": "seadatanet.m22", + "name": "OSPAR List of Threatened and/or Declining Species and Habitats", + "prefix": "m22", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M22/current/$1" + }, + "seadatanet.m23": { + "authority": "seadatanet", + "description": "The HELCOM Underwater biotope and habitat classification system (HELCOM HUB) provides a framework for defining biotopes in the whole Baltic Sea. Defining biotopes by the same split-rules, enables comparison of the biotopes in different regions of the Baltic Sea (see http://www.helcom.fi/baltic-sea-trends/biodiversity/helcom-hub).", + "homepage": "http://vocab.nerc.ac.uk/collection/M23/current/", + "id": "seadatanet.m23", + "name": "HELCOM 'HUB' Underwater Biotope and Habitat Classification System", + "prefix": "m23", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M23/current/$1" + }, + "seadatanet.m24": { + "authority": "seadatanet", + "description": "Version 97.07 of the Marine Habitat Classification for Britain and Ireland (Connor et al, 1997), a hierarchical standard list of seabed habitats occurring within the marine, coastal and estuarine waters of Britain and Ireland. Volume 1 (JNCC Report No 229) and Volume 2 (JNCC Report No 230).", + "homepage": "http://vocab.nerc.ac.uk/collection/M24/current/", + "id": "seadatanet.m24", + "name": "Marine Habitat Classification for Britain and Ireland Version 97.06", + "prefix": "m24", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M24/current/$1" + }, + "seadatanet.m25": { + "authority": "seadatanet", + "description": "Terms that define standards recognised by MEDIN as being used to generate metadata records with the aim of enabling the discovery of geospatial data through online resources such as portals. Standard in this definition also covers specifications and profiles. Terms include both international and UK standards.", + "homepage": "http://vocab.nerc.ac.uk/collection/M25/current/", + "id": "seadatanet.m25", + "name": "Geospatial discovery metadata standards, specifications and profiles recognised by MEDIN", + "prefix": "m25", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M25/current/$1" + }, + "seadatanet.m26": { + "authority": "seadatanet", + "description": "Terms used to describe different phases within an offshore development or seabed activity.", + "homepage": "http://vocab.nerc.ac.uk/collection/M26/current/", + "id": "seadatanet.m26", + "name": "The Crown Estate Seabed Development Phases", + "prefix": "m26", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M26/current/$1" + }, + "seadatanet.m27": { + "authority": "seadatanet", + "description": "Terms used to describe different areas within an offshore development or seabed activity site.", + "homepage": "http://vocab.nerc.ac.uk/collection/M27/current/", + "id": "seadatanet.m27", + "name": "The Crown Estate Seabed Development Areas", + "prefix": "m27", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M27/current/$1" + }, + "seadatanet.m28": { + "authority": "seadatanet", + "description": "A collection of terms used to group wetland habitats into three upper-category types, as specified by the Ramsar Convention's (Ramsar, Iran, 1971) Classification System for Wetland Type, approved by Recommendation 4.7 and amended by Resolutions VI.5 and VII.11 of the Conference of the Contracting Parties.", + "homepage": "http://vocab.nerc.ac.uk/collection/M28/current/", + "id": "seadatanet.m28", + "name": "Ramsar Classification System for Wetland Type upper categories", + "prefix": "m28", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M28/current/$1" + }, + "seadatanet.m29": { + "authority": "seadatanet", + "description": "A collection of terms used to classify wetland habitat types, as specified by the Ramsar Convention's (Ramsar, Iran, 1971) Classification System for Wetland Type, approved by Recommendation 4.7 and amended by Resolutions VI.5 and VII.11 of the Conference of the Contracting Parties.", + "homepage": "http://vocab.nerc.ac.uk/collection/M29/current/", + "id": "seadatanet.m29", + "name": "Ramsar Classification System for Wetland Type", + "prefix": "m29", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/M29/current/$1" + }, + "seadatanet.mvb": { + "authority": "seadatanet", + "description": "Terms used to describe on-animal sensor data stored in the Movebank database (movebank.org), including individual measurements (events), reference data (animals, tags, deployments) and studies.", + "homepage": "http://vocab.nerc.ac.uk/collection/MVB/current/", + "id": "seadatanet.mvb", + "name": "Movebank Attribute Dictionary", + "prefix": "mvb", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/MVB/current/$1" + }, + "seadatanet.n01": { + "authority": "seadatanet", + "description": "Terms used to describe portals to which a MEDIN discovery metadata record carrying the keyword should be made available.", + "homepage": "http://vocab.nerc.ac.uk/collection/N01/current/", + "id": "seadatanet.n01", + "name": "MEDIN metadata record availability", + "prefix": "n01", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/N01/current/$1" + }, + "seadatanet.n02": { + "authority": "seadatanet", + "description": "Formats recognised by NDG, where this may allow conditional treatment. See also http://proj.badc.rl.ac.uk/ndg/browser/TI07-MOLES/trunk/Documents/NDG_MOLES_Instructions_for_Creation.doc", + "homepage": "http://vocab.nerc.ac.uk/collection/N02/current/", + "id": "seadatanet.n02", + "name": "NERC DataGrid Recognised Formats", + "prefix": "n02", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/N02/current/$1" + }, + "seadatanet.n03": { + "authority": "seadatanet", + "description": "Terms used to specify the feature types available for coverages in the Climate Science Modelling Language (CSML).", + "homepage": "http://vocab.nerc.ac.uk/collection/N03/current/", + "id": "seadatanet.n03", + "name": "Climate Science Modelling Language supported feature types", + "prefix": "n03", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/N03/current/$1" + }, + "seadatanet.n04": { + "authority": "seadatanet", + "description": "Terms describing types of on-line references in NERC DataGrid service bindings", + "homepage": "http://vocab.nerc.ac.uk/collection/N04/current/", + "id": "seadatanet.n04", + "name": "NERC DataGrid on-line reference types", + "prefix": "n04", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/N04/current/$1" + }, + "seadatanet.n05": { + "authority": "seadatanet", + "description": "Terms used to describe the standard, profile and version number of XML documents that may be uploaded to the NERC DDS.", + "homepage": "http://vocab.nerc.ac.uk/collection/N05/current/", + "id": "seadatanet.n05", + "name": "NERC data discovery service input metadata document standards", + "prefix": "n05", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/N05/current/$1" + }, + "seadatanet.n06": { + "authority": "seadatanet", + "description": "Controlled list of terms used by the NERC Environmnetal Data Centres for submission of DOI metadata records to DataCite. The list is used to populate \nhttp://purl.org/spar/datacite/hasGeneralResourceType from the EDC's GEMINI profiles.", + "homepage": "http://vocab.nerc.ac.uk/collection/N06/current/", + "id": "seadatanet.n06", + "name": "NERC Environmental Data Centres DataCite General Resource Types", + "prefix": "n06", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/N06/current/$1" + }, + "seadatanet.od1": { + "authority": "seadatanet", + "description": "Collection of terms used within the French Ocean Data and Services Cluster ODATIS for data discovery and product or dataset aggregation. Whenever applicable, Essential Variable terms are linked to the authoritative source of Essential Climate Ocean and Biodiversity Variable definitions maintained by the Global Observing System for Climate (GCOS), the Global Ocean Observing System (GOOS) and the Group on Earth Observations Biodiversity Observation Network (GEO BON).", + "homepage": "http://vocab.nerc.ac.uk/collection/OD1/current/", + "id": "seadatanet.od1", + "name": "ODATIS aggregation parameters and Essential Variable names", + "prefix": "od1", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/OD1/current/$1" + }, + "seadatanet.og1": { + "authority": "seadatanet", + "description": "Terms in this vocabulary are under the content governance of the OceanGliders Data Management Task Team (OGDMTT) on behalf of the OceanGliders community and Everyone's Gliding Observatories (EGO). Terms describe measured phenomena within the OG/EGO format.", + "homepage": "http://vocab.nerc.ac.uk/collection/OG1/current/", + "id": "seadatanet.og1", + "name": "OceanGliders Parameter Usage Vocabulary", + "prefix": "og1", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/OG1/current/$1" + }, + "seadatanet.p01": { + "authority": "seadatanet", + "description": "Terms built using the BODC parameter semantic model designed to describe individual measured phenomena. May be used to mark up sets of data such as a NetCDF array or spreadsheet column. Units must be specified when using a P01 code. The P06 unit that is linked to individual P01 in the NVS is the one used in BODC's systems but external users can use any appropriate units.", + "homepage": "http://vocab.nerc.ac.uk/collection/P01/current/", + "id": "seadatanet.p01", + "name": "BODC Parameter Usage Vocabulary", + "prefix": "p01", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P01/current/$1" + }, + "seadatanet.p02": { + "authority": "seadatanet", + "description": "Terms describing fine-grained related groups of measurement phenomena designed to be used in dataset discovery interfaces.", + "homepage": "http://vocab.nerc.ac.uk/collection/P02/current/", + "id": "seadatanet.p02", + "name": "SeaDataNet Parameter Discovery Vocabulary", + "prefix": "p02", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P02/current/$1" + }, + "seadatanet.p03": { + "authority": "seadatanet", + "description": "Terms agreed within the EU SeaDataNet community to describe coarse-grained groupings of related measurement phenomena.", + "homepage": "http://vocab.nerc.ac.uk/collection/P03/current/", + "id": "seadatanet.p03", + "name": "SeaDataNet Agreed Parameter Groups", + "prefix": "p03", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P03/current/$1" + }, + "seadatanet.p04": { + "authority": "seadatanet", + "description": "Concatenated category, topic, term and variable separated by '>'. From Olsen L.M. et. al (2006) NASA/GCMD Earth Science Keywords Version 5.3.3.", + "homepage": "http://vocab.nerc.ac.uk/collection/P04/current/", + "id": "seadatanet.p04", + "name": "Global Change Master Directory Science Keywords V5", + "prefix": "p04", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P04/current/$1" + }, + "seadatanet.p05": { + "authority": "seadatanet", + "description": "Terms defined by ISO describing data themes. Used to populate the mandatory ISO19115 topic category field.", + "homepage": "http://vocab.nerc.ac.uk/collection/P05/current/", + "id": "seadatanet.p05", + "name": "International Standards Organisation ISO19115 Topic Categories", + "prefix": "p05", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P05/current/$1" + }, + "seadatanet.p06": { + "authority": "seadatanet", + "description": "Terms approved for use by BODC to describe the measurement units for data held in its repositories.", + "homepage": "http://vocab.nerc.ac.uk/collection/P06/current/", + "id": "seadatanet.p06", + "name": "BODC-approved data storage units", + "prefix": "p06", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P06/current/$1" + }, + "seadatanet.p07": { + "authority": "seadatanet", + "description": "Terms used for definitive but not necessarily comprehensive descriptions of measured phenomena in the CF conventions (a content standard for data stored in NetCDF).", + "homepage": "http://vocab.nerc.ac.uk/collection/P07/current/", + "id": "seadatanet.p07", + "name": "Climate and Forecast Standard Names", + "prefix": "p07", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P07/current/$1" + }, + "seadatanet.p08": { + "authority": "seadatanet", + "description": "Terms used to classify SeaDataNet Agreed Parameter Groups to provide topic/theme level terms in a hierarchical parameter discovery interface.", + "homepage": "http://vocab.nerc.ac.uk/collection/P08/current/", + "id": "seadatanet.p08", + "name": "SeaDataNet Parameter Disciplines", + "prefix": "p08", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P08/current/$1" + }, + "seadatanet.p09": { + "authority": "seadatanet", + "description": "Terms under the content governance of SISMER used to describe measured phenomena within the MEDATLAS project.", + "homepage": "http://vocab.nerc.ac.uk/collection/P09/current/", + "id": "seadatanet.p09", + "name": "MEDATLAS Parameter Usage Vocabulary", + "prefix": "p09", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P09/current/$1" + }, + "seadatanet.p10": { + "authority": "seadatanet", + "description": "Terms used to describe sensors, instruments and other pieces of scientific equipment in the NASA Global Change Master Directory metadatabase.", + "homepage": "http://vocab.nerc.ac.uk/collection/P10/current/", + "id": "seadatanet.p10", + "name": "Global Change Master Directory Instrument Keywords", + "prefix": "p10", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P10/current/$1" + }, + "seadatanet.p11": { + "authority": "seadatanet", + "description": "Category level terms from the Science Keywords from Olsen L.M. et. al (2006) NASA/GCMD Earth Science Keywords Version 5.3.3.", + "homepage": "http://vocab.nerc.ac.uk/collection/P11/current/", + "id": "seadatanet.p11", + "name": "Global Change Master Directory Science Keyword categories", + "prefix": "p11", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P11/current/$1" + }, + "seadatanet.p12": { + "authority": "seadatanet", + "description": "Topic level terms from the Science Keywords from Olsen L.M. et. al (2006) NASA/GCMD Earth Science Keywords Version 5.3.3.", + "homepage": "http://vocab.nerc.ac.uk/collection/P12/current/", + "id": "seadatanet.p12", + "name": "Global Change Master Directory Science Keyword topics", + "prefix": "p12", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P12/current/$1" + }, + "seadatanet.p13": { + "authority": "seadatanet", + "description": "Term level terms from the Science Keywords from Olsen L.M. et. al (2006) NASA/GCMD Earth Science Keywords Version 5.3.3.", + "homepage": "http://vocab.nerc.ac.uk/collection/P13/current/", + "id": "seadatanet.p13", + "name": "Global Change Master Directory Science Keyword terms", + "prefix": "p13", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P13/current/$1" + }, + "seadatanet.p14": { + "authority": "seadatanet", + "description": "Variable level terms from the Science Keywords from Olsen L.M. et. al (2006) NASA/GCMD Earth Science Keywords Version 5.3.3.", + "homepage": "http://vocab.nerc.ac.uk/collection/P14/current/", + "id": "seadatanet.p14", + "name": "Global Change Master Directory Science Keyword variables", + "prefix": "p14", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P14/current/$1" + }, + "seadatanet.p15": { + "authority": "seadatanet", + "description": "Terms used to describe measured phenomena derivation algorithms in the CF conventions (a content standard for data stored in NetCDF), primarily targeted at statistical parameters.", + "homepage": "http://vocab.nerc.ac.uk/collection/P15/current/", + "id": "seadatanet.p15", + "name": "Climate and Forecast Cell Methods", + "prefix": "p15", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P15/current/$1" + }, + "seadatanet.p17": { + "authority": "seadatanet", + "description": "Research vessels deemed to be of interest to POGO. 'Of interest' is defined as active ocean-going research vessels greater than 60m in length", + "homepage": "http://vocab.nerc.ac.uk/collection/P17/current/", + "id": "seadatanet.p17", + "name": "Partnership for Observation of the Global Ocean ships of interest", + "prefix": "p17", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P17/current/$1" + }, + "seadatanet.p18": { + "authority": "seadatanet", + "description": "Chronostratigraphic unit terms from Olsen L.M. et. al (2006) NASA/GCMD Earth Science Keywords Version 5.3.3.", + "homepage": "http://vocab.nerc.ac.uk/collection/P18/current/", + "id": "seadatanet.p18", + "name": "Global Change Master Directory Chronostratigraphic Units", + "prefix": "p18", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P18/current/$1" + }, + "seadatanet.p19": { + "authority": "seadatanet", + "description": "Terms used to describe sensor-bearing platforms from Olsen L.M. et. al (2006) NASA/GCMD Earth Science Keywords Version 5.3.3.", + "homepage": "http://vocab.nerc.ac.uk/collection/P19/current/", + "id": "seadatanet.p19", + "name": "Global Change Master Directory platforms", + "prefix": "p19", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P19/current/$1" + }, + "seadatanet.p20": { + "authority": "seadatanet", + "description": "Terms used in NASA's GCMD to describe the function of related URLs embedded in DIF metadata records. Also used for NERC DataGrid service bindings.", + "homepage": "http://vocab.nerc.ac.uk/collection/P20/current/", + "id": "seadatanet.p20", + "name": "Global Change Master Directory URL content types", + "prefix": "p20", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P20/current/$1" + }, + "seadatanet.p21": { + "authority": "seadatanet", + "description": "Base terms (all hierarchical levels) interlinked by a relationship network to build the Marisaurus thesaurus.", + "homepage": "http://vocab.nerc.ac.uk/collection/P21/current/", + "id": "seadatanet.p21", + "name": "Marisaurus Thesaurus", + "prefix": "p21", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P21/current/$1" + }, + "seadatanet.p22": { + "authority": "seadatanet", + "description": "Groupings of spatial data according to Annex I, II and III of the INSPIRE Directive [DS-D2.5]", + "homepage": "http://vocab.nerc.ac.uk/collection/P22/current/", + "id": "seadatanet.p22", + "name": "GEMET - INSPIRE themes, version 1.0", + "prefix": "p22", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P22/current/$1" + }, + "seadatanet.p23": { + "authority": "seadatanet", + "description": "Coarse grained grouping terms designed by MEDIN to provide the top level for a parameter discovery thesaurus.", + "homepage": "http://vocab.nerc.ac.uk/collection/P23/current/", + "id": "seadatanet.p23", + "name": "MEDIN Parameter Discipline Keywords", + "prefix": "p23", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P23/current/$1" + }, + "seadatanet.p24": { + "authority": "seadatanet", + "description": "Classification concepts for units of measure based upon the fundamental SI quantities upon which they are based.", + "homepage": "http://vocab.nerc.ac.uk/collection/P24/current/", + "id": "seadatanet.p24", + "name": "Units of measure dimensions", + "prefix": "p24", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P24/current/$1" + }, + "seadatanet.p25": { + "authority": "seadatanet", + "description": "Terms used to describe phenomena within the NETMAR project at a granularity level suitable for labelling data aggregations or assessing whether the parameter is appropriate as an input to a given WPS.", + "homepage": "http://vocab.nerc.ac.uk/collection/P25/current/", + "id": "seadatanet.p25", + "name": "NETMAR aggregation parameters", + "prefix": "p25", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P25/current/$1" + }, + "seadatanet.p26": { + "authority": "seadatanet", + "description": "A collection of categories and sub-categories developed by ISO to classify services that display or process spatial data", + "homepage": "http://vocab.nerc.ac.uk/collection/P26/current/", + "id": "seadatanet.p26", + "name": "ISO19119 geographic services taxonomy", + "prefix": "p26", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P26/current/$1" + }, + "seadatanet.p27": { + "authority": "seadatanet", + "description": "Terms used to describe the environmental spatial location of an aliquot of a simulated oil spill by the METEO France MOTHY model.", + "homepage": "http://vocab.nerc.ac.uk/collection/P27/current/", + "id": "seadatanet.p27", + "name": "Oil spill spillet location", + "prefix": "p27", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P27/current/$1" + }, + "seadatanet.p28": { + "authority": "seadatanet", + "description": "Terms used to describe the operational stati of pollution cleanup sites in the Cedre cleanup site service.", + "homepage": "http://vocab.nerc.ac.uk/collection/P28/current/", + "id": "seadatanet.p28", + "name": "Cedre pollution site cleanup operational stati", + "prefix": "p28", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P28/current/$1" + }, + "seadatanet.p29": { + "authority": "seadatanet", + "description": "Terms used to describe the characteristics of regions of the Earth's Surface or their representation in a numerical simulation in the CF metadata conventions for data stored in NetCDF.", + "homepage": "http://vocab.nerc.ac.uk/collection/P29/current/", + "id": "seadatanet.p29", + "name": "Climate and Forecast Area Types", + "prefix": "p29", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P29/current/$1" + }, + "seadatanet.p30": { + "authority": "seadatanet", + "description": "Terms used to label regions of the Earth's Surface or their representation in a numerical simulation in the CF metadata conventions for data stored in NetCDF.", + "homepage": "http://vocab.nerc.ac.uk/collection/P30/current/", + "id": "seadatanet.p30", + "name": "Climate and Forecast Standardized Region Names", + "prefix": "p30", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P30/current/$1" + }, + "seadatanet.p31": { + "authority": "seadatanet", + "description": "Terms used to define the recognised metadata attributes for the description of CF-compliant data stored in NetCDF files.", + "homepage": "http://vocab.nerc.ac.uk/collection/P31/current/", + "id": "seadatanet.p31", + "name": "Climate and Forecast Attribute Names", + "prefix": "p31", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P31/current/$1" + }, + "seadatanet.p35": { + "authority": "seadatanet", + "description": "Labels used for aggregated parameters in the EMODNET chemistry lot", + "homepage": "http://vocab.nerc.ac.uk/collection/P35/current/", + "id": "seadatanet.p35", + "name": "EMODnet Chemistry aggregated parameter names", + "prefix": "p35", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P35/current/$1" + }, + "seadatanet.p36": { + "authority": "seadatanet", + "description": "Terms based on the EU MSFD used by the EMODNET chemistry lot to provide coarse granularity groupings of the chemical parameters it covers.", + "homepage": "http://vocab.nerc.ac.uk/collection/P36/current/", + "id": "seadatanet.p36", + "name": "EMODnet Chemistry chemical groups", + "prefix": "p36", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P36/current/$1" + }, + "seadatanet.p37": { + "authority": "seadatanet", + "description": "Terms used by the CF community to describe the calendar systems used for time co-ordinates in CF-compliant data files", + "homepage": "http://vocab.nerc.ac.uk/collection/P37/current/", + "id": "seadatanet.p37", + "name": "Climate and Forecast Calendars", + "prefix": "p37", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P37/current/$1" + }, + "seadatanet.p38": { + "authority": "seadatanet", + "description": "Terms used by the CF community to describe the data coverage over the vertical (z) co-ordinate. This is used to describe the Earth Realm in the CF Standard Name semantic model.", + "homepage": "http://vocab.nerc.ac.uk/collection/P38/current/", + "id": "seadatanet.p38", + "name": "Climate and Forecast Vertical Co-ordinate Coverages", + "prefix": "p38", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P38/current/$1" + }, + "seadatanet.p64": { + "authority": "seadatanet", + "description": "Concatenated category, topic, term and variable separated by '>'. From Olsen L.M. et. al (2007) NASA/GCMD Earth Science Keywords Version 6.0.0.0", + "homepage": "http://vocab.nerc.ac.uk/collection/P64/current/", + "id": "seadatanet.p64", + "name": "Global Change Master Directory Science Keywords V6", + "prefix": "p64", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/P64/current/$1" + }, + "seadatanet.q01": { + "authority": "seadatanet", + "description": "Collection of terms used by the Ocean Biogeographic Information System to standardise attributes related to sampling instruments and methods.", + "homepage": "http://vocab.nerc.ac.uk/collection/Q01/current/", + "id": "seadatanet.q01", + "name": "OBIS sampling instruments and methods attributes", + "prefix": "q01", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/Q01/current/$1" + }, + "seadatanet.r01": { + "authority": "seadatanet", + "description": "Terms describing the type of data contained in an Argo netCDF file. Argo netCDF variable DATA_TYPE is populated by R01 prefLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R01/current/", + "id": "seadatanet.r01", + "name": "Argo data type", + "prefix": "r01", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R01/current/$1" + }, + "seadatanet.r03": { + "authority": "seadatanet", + "description": "Terms describing individual measured phenomena, used to mark up sets of data in Argo netCDF arrays. Argo netCDF variables PARAMETER and TRAJECTORY_PARAMETERS are populated by R03 altLabel; R03 altLabel is also used to name netCDF profile files parameter variables .", + "homepage": "http://vocab.nerc.ac.uk/collection/R03/current/", + "id": "seadatanet.r03", + "name": "Argo parameter codes", + "prefix": "r03", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R03/current/$1" + }, + "seadatanet.r04": { + "authority": "seadatanet", + "description": "Codes for data centres and institutions handling or managing Argo data. Argo netCDF variable DATA_CENTRE is populated by R04 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R04/current/", + "id": "seadatanet.r04", + "name": "Argo data centres and institutions", + "prefix": "r04", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R04/current/$1" + }, + "seadatanet.r05": { + "authority": "seadatanet", + "description": "Accuracy in latitude and longitude measurements received from the positioning system, grouped by location accuracy classes.", + "homepage": "http://vocab.nerc.ac.uk/collection/R05/current/", + "id": "seadatanet.r05", + "name": "Argo position accuracy", + "prefix": "r05", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R05/current/$1" + }, + "seadatanet.r06": { + "authority": "seadatanet", + "description": "Processing stage of the data based on the concatenation of processing level and class indicators. Argo netCDF variable DATA_STATE_INDICATOR is populated by R06 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R06/current/", + "id": "seadatanet.r06", + "name": "Argo data state indicators", + "prefix": "r06", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R06/current/$1" + }, + "seadatanet.r07": { + "authority": "seadatanet", + "description": "Coded history information for each action performed on each profile by a data centre. Argo netCDF variable HISTORY_ACTION is populated by R07 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R07/current/", + "id": "seadatanet.r07", + "name": "Argo history action codes", + "prefix": "r07", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R07/current/$1" + }, + "seadatanet.r08": { + "authority": "seadatanet", + "description": "Subset of instrument type codes from the World Meteorological Organization (WMO) Common Code Table C-3 (CCT C-3) 1770, named 'Instrument make and type for water temperature profile measurement with fall rate equation coefficients' and available here: https://library.wmo.int/doc_num.php?explnum_id=11283. Argo netCDF variable WMO_INST_TYPE is populated by R08 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R08/current/", + "id": "seadatanet.r08", + "name": "Argo instrument types", + "prefix": "r08", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R08/current/$1" + }, + "seadatanet.r09": { + "authority": "seadatanet", + "description": "List of float location measuring systems. Argo netCDF variable POSITIONING_SYSTEM is populated by R09 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R09/current/", + "id": "seadatanet.r09", + "name": "Argo positioning system", + "prefix": "r09", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R09/current/$1" + }, + "seadatanet.r10": { + "authority": "seadatanet", + "description": "List of telecommunication systems. Argo netCDF variable TRANS_SYSTEM is populated by R10 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R10/current/", + "id": "seadatanet.r10", + "name": "Argo transmission systems", + "prefix": "r10", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R10/current/$1" + }, + "seadatanet.r11": { + "authority": "seadatanet", + "description": "List of real-time quality-control tests and corresponding binary identifiers, used as reference to populate the Argo netCDF HISTORY_QCTEST variable.", + "homepage": "http://vocab.nerc.ac.uk/collection/R11/current/", + "id": "seadatanet.r11", + "name": "Argo real-time quality-control test identifiers", + "prefix": "r11", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R11/current/$1" + }, + "seadatanet.r12": { + "authority": "seadatanet", + "description": "Data processing step codes for history record. Argo netCDF variable TRANS_SYSTEM is populated by R12 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R12/current/", + "id": "seadatanet.r12", + "name": "Argo history processing step codes", + "prefix": "r12", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R12/current/$1" + }, + "seadatanet.r13": { + "authority": "seadatanet", + "description": "Ocean area codes assigned to each profile in the Metadata directory (index) file of the Argo Global Assembly Centre.", + "homepage": "http://vocab.nerc.ac.uk/collection/R13/current/", + "id": "seadatanet.r13", + "name": "Argo ocean area codes and boundary definitions", + "prefix": "r13", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R13/current/$1" + }, + "seadatanet.r14": { + "authority": "seadatanet", + "description": "List of technical parameters reported by a float at every cycle. Technical parameter names follow a naming convention to indicate what is being reported (category), where or when (descriptor), and in what units, delimited by an underscore. They are stored in the float 'tech.nc' file, under TECHNICAL_PARAMETER_NAME. Each technical parameter name has an associated value, stored in TECHNICAL_PARAMTER_VALUE. Argo netCDF variable TECHNICAL_PARAMETER_NAME is populated by R14 prefLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R14/current/", + "id": "seadatanet.r14", + "name": "Argo technical parameter names", + "prefix": "r14", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R14/current/$1" + }, + "seadatanet.r15": { + "authority": "seadatanet", + "description": "Measurement code IDs used in Argo Trajectory netCDF files. Argo netCDF variable MEASUREMENT_CODE is populated by R15 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R15/current/", + "id": "seadatanet.r15", + "name": "Argo trajectory measurement code identifiers", + "prefix": "r15", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R15/current/$1" + }, + "seadatanet.r16": { + "authority": "seadatanet", + "description": "Profile sampling schemes and sampling methods. Argo netCDF variable VERTICAL_SAMPLING_SCHEME is populated by R16 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R16/current/", + "id": "seadatanet.r16", + "name": "Argo vertical sampling schemes", + "prefix": "r16", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R16/current/$1" + }, + "seadatanet.r18": { + "authority": "seadatanet", + "description": "List of float configuration settings selected by the float Principal Investigator (PI). Configuration parameters may or may not be reported by the float, and do not constitute float measurements. Configuration parameters selected for a float are stored in the float 'meta.nc' file, under CONFIG_PARAMETER_NAME. Each configuration parameter name has an associated value, stored in CONFIG_PARAMETER_VALUE. Argo netCDF variable CONFIG_PARAMETER_NAME is populated by R18 prefLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R18/current/", + "id": "seadatanet.r18", + "name": "Argo configuration parameter names", + "prefix": "r18", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R18/current/$1" + }, + "seadatanet.r19": { + "authority": "seadatanet", + "description": "Flag scale for values in all Argo netCDF cycle timing variables. Argo netCDF cycle timing variables JULD__STATUS are populated by R19 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R19/current/", + "id": "seadatanet.r19", + "name": "Argo STATUS flags", + "prefix": "r19", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R19/current/$1" + }, + "seadatanet.r20": { + "authority": "seadatanet", + "description": "Codes to indicate the best estimate of whether the float touched the ground during a specific cycle. Argo netCDF variable GROUNDED in the Trajectory file is populated by R20 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R20/current/", + "id": "seadatanet.r20", + "name": "Argo GROUNDED flags", + "prefix": "r20", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R20/current/$1" + }, + "seadatanet.r21": { + "authority": "seadatanet", + "description": "Argo status flag on the Representative Park Pressure (RPP). Argo netCDF variable REPRESENTATIVE_PARK_PRESSURE_STATUS in the Trajectory file is populated by R21 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R21/current/", + "id": "seadatanet.r21", + "name": "Argo status flag on the Representative Park Pressure (RPP)", + "prefix": "r21", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R21/current/$1" + }, + "seadatanet.r22": { + "authority": "seadatanet", + "description": "List of platform family/category of Argo floats. Argo netCDF variable PLATFORM_FAMILY is populated by R22 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R22/current/", + "id": "seadatanet.r22", + "name": "Argo platform family", + "prefix": "r22", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R22/current/$1" + }, + "seadatanet.r23": { + "authority": "seadatanet", + "description": "List of Argo float types. Argo netCDF variable PLATFORM_TYPE is populated by R23 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R23/current/", + "id": "seadatanet.r23", + "name": "Argo platform type", + "prefix": "r23", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R23/current/$1" + }, + "seadatanet.r24": { + "authority": "seadatanet", + "description": "List of Argo float manufacturers. Argo netCDF variable PLATFORM_MAKER is populated by R24 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R24/current/", + "id": "seadatanet.r24", + "name": "Argo platform maker", + "prefix": "r24", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R24/current/$1" + }, + "seadatanet.r25": { + "authority": "seadatanet", + "description": "Terms describing sensor types mounted on Argo floats. Argo netCDF variable SENSOR is populated by R25 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R25/current/", + "id": "seadatanet.r25", + "name": "Argo sensor types", + "prefix": "r25", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R25/current/$1" + }, + "seadatanet.r26": { + "authority": "seadatanet", + "description": "Terms describing developers and manufacturers of sensors mounted on Argo floats. Argo netCDF variable SENSOR_MAKER is populated by R26 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R26/current/", + "id": "seadatanet.r26", + "name": "Argo sensor manufacturers", + "prefix": "r26", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R26/current/$1" + }, + "seadatanet.r27": { + "authority": "seadatanet", + "description": "Terms listing models of sensors mounted on Argo floats. Note: avoid using the manufacturer name and sensor firmware version in new entries when possible. Argo netCDF variable SENSOR_MODEL is populated by R27 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R27/current/", + "id": "seadatanet.r27", + "name": "Argo sensor models", + "prefix": "r27", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R27/current/$1" + }, + "seadatanet.r28": { + "authority": "seadatanet", + "description": "List of Argo floats controller board types and generations. Argo netCDF variables CONTROLLER_BOARD_TYPE_PRIMARY and, when needed, CONTROLLER_BOARD_TYPE_SECONDARY, are populated by R28 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R28/current/", + "id": "seadatanet.r28", + "name": "Argo controller board types and generations", + "prefix": "r28", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R28/current/$1" + }, + "seadatanet.r40": { + "authority": "seadatanet", + "description": "List of Principal Investigator (PI) names in charge of Argo floats. Argo netCDF variable PI_NAME is populated by R40 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/R40/current/", + "id": "seadatanet.r40", + "name": "Argo Principal Investigator (PI) names", + "prefix": "r40", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/R40/current/$1" + }, + "seadatanet.rd2": { + "authority": "seadatanet", + "description": "Quality flag scale for delayed-mode measurements. Argo netCDF variables _ADJUSTED_QC in 'D' mode are populated by RD2 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/RD2/current/", + "id": "seadatanet.rd2", + "name": "Argo delayed-mode quality control measurement flags", + "prefix": "rd2", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/RD2/current/$1" + }, + "seadatanet.rmc": { + "authority": "seadatanet", + "description": "Categories of trajectory measurement codes listed in NVS collection 'R15'", + "homepage": "http://vocab.nerc.ac.uk/collection/RMC/current/", + "id": "seadatanet.rmc", + "name": "Argo measurement code categories", + "prefix": "rmc", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/RMC/current/$1" + }, + "seadatanet.rp2": { + "authority": "seadatanet", + "description": "Quality control flag scale for whole profiles. Argo netCDF variables PROFILE__QC are populated by RP2 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/RP2/current/", + "id": "seadatanet.rp2", + "name": "Argo profile quality control flags", + "prefix": "rp2", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/RP2/current/$1" + }, + "seadatanet.rr2": { + "authority": "seadatanet", + "description": "Quality flag scale for real-time measurements. Argo netCDF variables _QC in 'R' mode and _ADJUSTED_QC in 'A' mode are populated by RR2 altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/RR2/current/", + "id": "seadatanet.rr2", + "name": "Argo real-time quality control measurement flags", + "prefix": "rr2", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/RR2/current/$1" + }, + "seadatanet.rtv": { + "authority": "seadatanet", + "description": "Timing variables representing stages of an Argo float profiling cycle, most of which are associated with a trajectory measurement code ID listed in NVS collection 'R15'. Argo netCDF cycle timing variable names JULD__STATUS are constructed by RTV altLabel.", + "homepage": "http://vocab.nerc.ac.uk/collection/RTV/current/", + "id": "seadatanet.rtv", + "name": "Argo float cycle timing variables", + "prefix": "rtv", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/RTV/current/$1" + }, + "seadatanet.s01": { + "authority": "seadatanet", + "description": "Terms used to describe the information entities that are combined in the BODC semantic model to produce a phenomenon description.", + "homepage": "http://vocab.nerc.ac.uk/collection/S01/current/", + "id": "seadatanet.s01", + "name": "BODC parameter semantic model component names", + "prefix": "s01", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S01/current/$1" + }, + "seadatanet.s02": { + "authority": "seadatanet", + "description": "Terms used to describe the relationship between the 'where theme' and the 'what theme' in the BODC semantic model for measured phenomena descriptions.", + "homepage": "http://vocab.nerc.ac.uk/collection/S02/current/", + "id": "seadatanet.s02", + "name": "BODC parameter semantic model relationships between what theme and where theme", + "prefix": "s02", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S02/current/$1" + }, + "seadatanet.s03": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used for a sample preparation entity (part of the how theme) in the BODC parameter semantic model.", + "homepage": "http://vocab.nerc.ac.uk/collection/S03/current/", + "id": "seadatanet.s03", + "name": "BODC parameter semantic model sample preparation entity descriptions", + "prefix": "s03", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S03/current/$1" + }, + "seadatanet.s04": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used for an analytical method entity (part of the how theme) in the BODC parameter semantic model.", + "homepage": "http://vocab.nerc.ac.uk/collection/S04/current/", + "id": "seadatanet.s04", + "name": "BODC parameter semantic model analytical method entity descriptions", + "prefix": "s04", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S04/current/$1" + }, + "seadatanet.s05": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used for data processing description (part of the how theme) in the BODC parameter semantic model.", + "homepage": "http://vocab.nerc.ac.uk/collection/S05/current/", + "id": "seadatanet.s05", + "name": "BODC parameter semantic model data processing entity descriptions", + "prefix": "s05", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S05/current/$1" + }, + "seadatanet.s06": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used to specify the property element of a parameter (part of the 'what' theme) in the BODC parameter semantic model.", + "homepage": "http://vocab.nerc.ac.uk/collection/S06/current/", + "id": "seadatanet.s06", + "name": "BODC parameter semantic model parameter entity names", + "prefix": "s06", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S06/current/$1" + }, + "seadatanet.s07": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used for a parameter statistic (part of the what theme) in the BODC parameter semantic model.", + "homepage": "http://vocab.nerc.ac.uk/collection/S07/current/", + "id": "seadatanet.s07", + "name": "BODC parameter semantic model parameter statistic", + "prefix": "s07", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S07/current/$1" + }, + "seadatanet.s09": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used for biological entity size (part of the what theme) in the BODC parameter semantic model.", + "homepage": "http://vocab.nerc.ac.uk/collection/S09/current/", + "id": "seadatanet.s09", + "name": "BODC parameter semantic model biological entity size terms", + "prefix": "s09", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S09/current/$1" + }, + "seadatanet.s10": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining terms used to refer to a biological entity sex category (part of the what theme) in the BODC parameter semantic model.", + "homepage": "http://vocab.nerc.ac.uk/collection/S10/current/", + "id": "seadatanet.s10", + "name": "BODC parameter semantic model biological entity sex category terms", + "prefix": "s10", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S10/current/$1" + }, + "seadatanet.s11": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used to specify the development or life cycle stage of a biological entity (part of the 'what' theme) in the BODC parameter semantic model.", + "homepage": "http://vocab.nerc.ac.uk/collection/S11/current/", + "id": "seadatanet.s11", + "name": "BODC parameter semantic model biological entity development stage terms", + "prefix": "s11", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S11/current/$1" + }, + "seadatanet.s12": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used for biological entity (component of the what theme) plant or animal parts in the BODC parameter semantic model.", + "homepage": "http://vocab.nerc.ac.uk/collection/S12/current/", + "id": "seadatanet.s12", + "name": "BODC parameter semantic model biological entity subcomponent terms", + "prefix": "s12", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S12/current/$1" + }, + "seadatanet.s13": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used for ad-hoc qualification of a biological entity (component of the what theme) in the BODC parameter semantic model.", + "homepage": "http://vocab.nerc.ac.uk/collection/S13/current/", + "id": "seadatanet.s13", + "name": "BODC parameter semantic model biological entity subgroup terms", + "prefix": "s13", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S13/current/$1" + }, + "seadatanet.s14": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used for morphology of a biological entity (component of the what theme) in the BODC parameter semantic model.", + "homepage": "http://vocab.nerc.ac.uk/collection/S14/current/", + "id": "seadatanet.s14", + "name": "BODC parameter semantic model biological entity morphology terms", + "prefix": "s14", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S14/current/$1" + }, + "seadatanet.s15": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used for colour or optical appearance of a biological entity (component of the what theme) in the BODC parameter semantic model.", + "homepage": "http://vocab.nerc.ac.uk/collection/S15/current/", + "id": "seadatanet.s15", + "name": "BODC parameter semantic model biological entity colour terms", + "prefix": "s15", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S15/current/$1" + }, + "seadatanet.s18": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used for a physical entity (part of the what theme) in the BODC parameter semantic model.", + "homepage": "http://vocab.nerc.ac.uk/collection/S18/current/", + "id": "seadatanet.s18", + "name": "BODC parameter semantic model physical entity names", + "prefix": "s18", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S18/current/$1" + }, + "seadatanet.s19": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used to qualify a generic physical entity (part of the what theme) in the BODC parameter semantic model.", + "homepage": "http://vocab.nerc.ac.uk/collection/S19/current/", + "id": "seadatanet.s19", + "name": "BODC parameter semantic model physical entity subgroup names", + "prefix": "s19", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S19/current/$1" + }, + "seadatanet.s20": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used to describe the reference with respect to which a physical entity (part of the what theme) in the BODC parameter. semantic model is specified.", + "homepage": "http://vocab.nerc.ac.uk/collection/S20/current/", + "id": "seadatanet.s20", + "name": "BODC parameter semantic model physical entity datum names", + "prefix": "s20", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S20/current/$1" + }, + "seadatanet.s21": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used to describe the sphere (SWEET EarthRealm) in the BODC parameter semantic model. Part of the where theme.", + "homepage": "http://vocab.nerc.ac.uk/collection/S21/current/", + "id": "seadatanet.s21", + "name": "BODC parameter semantic model sphere names", + "prefix": "s21", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S21/current/$1" + }, + "seadatanet.s22": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms that may be used to describe subgroupings of the sphere (SWEET EarthRealm) in the BODC parameter semantic model. Part of the where theme.", + "homepage": "http://vocab.nerc.ac.uk/collection/S22/current/", + "id": "seadatanet.s22", + "name": "BODC parameter semantic model sphere subgroup names", + "prefix": "s22", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S22/current/$1" + }, + "seadatanet.s23": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the terms for phase (dissolved, particulate etc.) within a sphere (SWEET EarthRealm) in the BODC parameter semantic model. Part of the where theme.", + "homepage": "http://vocab.nerc.ac.uk/collection/S23/current/", + "id": "seadatanet.s23", + "name": "BODC semantic model sphere phase names", + "prefix": "s23", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S23/current/$1" + }, + "seadatanet.s24": { + "authority": "seadatanet", + "description": "Concepts describing physical or logical (i.e. categories) subdivisions of a phase (i.e. subcomponent) of a sphere (SWEET EarthRealm) in the BODC parameter semantic model. Part of the where theme.", + "homepage": "http://vocab.nerc.ac.uk/collection/S24/current/", + "id": "seadatanet.s24", + "name": "BODC semantic model sphere phase subgroup names", + "prefix": "s24", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S24/current/$1" + }, + "seadatanet.s25": { + "authority": "seadatanet", + "description": "Terms used to describe biological entities (organisms or parts thereof) in the BODC Parameter Usage Vocabulary", + "homepage": "http://vocab.nerc.ac.uk/collection/S25/current/", + "id": "seadatanet.s25", + "name": "BODC parameter semantic model biological entity names", + "prefix": "s25", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S25/current/$1" + }, + "seadatanet.s26": { + "authority": "seadatanet", + "description": "Terms used to describe the medium in which a measurement was made in the semantic model that underpins the BODC parameter discovery vocabulary", + "homepage": "http://vocab.nerc.ac.uk/collection/S26/current/", + "id": "seadatanet.s26", + "name": "BODC parameter semantic model matrices", + "prefix": "s26", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S26/current/$1" + }, + "seadatanet.s27": { + "authority": "seadatanet", + "description": "Terms for chemicals whose quantity in a matrix is determined to generate measurements in the BODC parameter usage vocabulary semantic model. Includes elements, compounds, isotopes and mixtures.", + "homepage": "http://vocab.nerc.ac.uk/collection/S27/current/", + "id": "seadatanet.s27", + "name": "BODC parameter semantic model chemical substances", + "prefix": "s27", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S27/current/$1" + }, + "seadatanet.s28": { + "authority": "seadatanet", + "description": "The six encoded modes of operation for a deployed Seaglider.", + "homepage": "http://vocab.nerc.ac.uk/collection/S28/current/", + "id": "seadatanet.s28", + "name": "Seaglider Guidance and Control Phase Settings", + "prefix": "s28", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S28/current/$1" + }, + "seadatanet.s29": { + "authority": "seadatanet", + "description": "Terms used to describe physical entities in the BODC Parameter Usage Vocabulary", + "homepage": "http://vocab.nerc.ac.uk/collection/S29/current/", + "id": "seadatanet.s29", + "name": "BODC parameter semantic model physical entity compound names", + "prefix": "s29", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S29/current/$1" + }, + "seadatanet.s30": { + "authority": "seadatanet", + "description": "Controlled vocabulary defining the relationship between two biological entities in the BODC parameter semantic model for biological parameters related to e.g. predator-prey interactions.", + "homepage": "http://vocab.nerc.ac.uk/collection/S30/current/", + "id": "seadatanet.s30", + "name": "BODC parameter semantic model relationships between biological entities", + "prefix": "s30", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/S30/current/$1" + }, + "seadatanet.t01": { + "authority": "seadatanet", + "description": "Standardised list of major research areas within the British Antarctic Survey for classifying materials and activities.", + "homepage": "http://vocab.nerc.ac.uk/collection/T01/current/", + "id": "seadatanet.t01", + "name": "British Antarctic Survey research topics", + "prefix": "t01", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/T01/current/$1" + }, + "seadatanet.v12": { + "authority": "seadatanet", + "description": "Controlled vocabularies deemed to be of interest to the SeaDataNet project or users of its standards", + "homepage": "http://vocab.nerc.ac.uk/collection/V12/current/", + "id": "seadatanet.v12", + "name": "SeaDataNet Vocabularies", + "prefix": "v12", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/V12/current/$1" + }, + "seadatanet.v22": { + "authority": "seadatanet", + "description": "Concept collections used within ISO Code List representations for ISO19139 encoding of SeaDataNet CDIs and CSRs", + "homepage": "http://vocab.nerc.ac.uk/collection/V22/current/", + "id": "seadatanet.v22", + "name": "SeaDataNet CDI/CSR ISO Code List collections", + "prefix": "v22", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/V22/current/$1" + }, + "seadatanet.v23": { + "authority": "seadatanet", + "description": "Concept collections used within ISOTC211/19115 namespace of ISO Code List representations for ISO19139 encoding of SeaDataNet CDIs and CSRs", + "homepage": "http://vocab.nerc.ac.uk/collection/V23/current/", + "id": "seadatanet.v23", + "name": "SeaDataNet GMX and imported ISO Code List collections", + "prefix": "v23", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/V23/current/$1" + }, + "seadatanet.w01": { + "authority": "seadatanet", + "description": "Vocabulary in support of SeaDataNet's implementation of OGC Sensor Web Enablement. This is the top level vocabulary with many narrower concepts from other vocabularies.", + "homepage": "http://vocab.nerc.ac.uk/collection/W01/current/", + "id": "seadatanet.w01", + "name": "SeaDataNet Sensor Web Enablement and SensorML type vocabulary", + "prefix": "w01", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/W01/current/$1" + }, + "seadatanet.w02": { + "authority": "seadatanet", + "description": "Vocabulary in support of SeaDataNet's (SDN) implementation of OGC Sensor Web Enablement (SWE). This is the lower level SDN SEW specific vocabulary.", + "homepage": "http://vocab.nerc.ac.uk/collection/W02/current/", + "id": "seadatanet.w02", + "name": "SeaDataNet Sensor Web Enablement and SensorML sub-type vocabulary", + "prefix": "w02", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/W02/current/$1" + }, + "seadatanet.w03": { + "authority": "seadatanet", + "description": "Terms used to describe events or operations that have taken place during the life of an observation system (e.g. a sensor, a platform, an instrument, a network).", + "homepage": "http://vocab.nerc.ac.uk/collection/W03/current/", + "id": "seadatanet.w03", + "name": "SensorML History Event Types", + "prefix": "w03", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/W03/current/$1" + }, + "seadatanet.w04": { + "authority": "seadatanet", + "description": "Terms used in SensorML to describe properties of an observation system that further qualify or quantify its output values.", + "homepage": "http://vocab.nerc.ac.uk/collection/W04/current/", + "id": "seadatanet.w04", + "name": "SensorML Capability Section Terms", + "prefix": "w04", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/W04/current/$1" + }, + "seadatanet.w05": { + "authority": "seadatanet", + "description": "Terms used in SensorML to describe properties of an observation system that do not further qualify or quantify its output values.", + "homepage": "http://vocab.nerc.ac.uk/collection/W05/current/", + "id": "seadatanet.w05", + "name": "SensorML Characteristic Section Terms", + "prefix": "w05", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/W05/current/$1" + }, + "seadatanet.w06": { + "authority": "seadatanet", + "description": "Terms used in SensorML to describe aspects of an observation system (e.g. the type of process, the type of sensor, or its intended applications).", + "homepage": "http://vocab.nerc.ac.uk/collection/W06/current/", + "id": "seadatanet.w06", + "name": "SensorML Classification Section Terms", + "prefix": "w06", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/W06/current/$1" + }, + "seadatanet.w07": { + "authority": "seadatanet", + "description": "Terms used in SensorML to identify an observation system.", + "homepage": "http://vocab.nerc.ac.uk/collection/W07/current/", + "id": "seadatanet.w07", + "name": "SensorML Identification Section Terms", + "prefix": "w07", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/W07/current/$1" + }, + "seadatanet.w08": { + "authority": "seadatanet", + "description": "Terms used in SensorML to describe the role and contact information for an observation system.", + "homepage": "http://vocab.nerc.ac.uk/collection/W08/current/", + "id": "seadatanet.w08", + "name": "SensorML Contact Section Terms", + "prefix": "w08", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/W08/current/$1" + }, + "seadatanet.w09": { + "authority": "seadatanet", + "description": "Terms used in SWE Observations and Measurements that describe the measurements made by an observing system and the features involved in this process.", + "homepage": "http://vocab.nerc.ac.uk/collection/W09/current/", + "id": "seadatanet.w09", + "name": "Sensor Web Enablement Observations and Measurements Section Terms", + "prefix": "w09", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/W09/current/$1" + }, + "seadatanet.w10": { + "authority": "seadatanet", + "description": "Terms used in SensorML to describe the software interactions with an observing system. The terms are typically used in the SensorML Outputs section.", + "homepage": "http://vocab.nerc.ac.uk/collection/W10/current/", + "id": "seadatanet.w10", + "name": "SensorML Output Section Data Interface Terms", + "prefix": "w10", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/W10/current/$1" + }, + "seadatanet.w11": { + "authority": "seadatanet", + "description": "Terms used in SensorML to describe aspects of an Event.", + "homepage": "http://vocab.nerc.ac.uk/collection/W11/current/", + "id": "seadatanet.w11", + "name": "SensorML Event Classification Terms", + "prefix": "w11", + "source": "http://vocab.nerc.ac.uk", + "subjects": [ + "earth and related environmental sciences", + "oceanography" + ], + "uri_format": "http://vocab.nerc.ac.uk/collection/W11/current/$1" + } +} diff --git a/fuji_server/data/linked_vocabs/sweet_ontologies.json b/fuji_server/data/linked_vocabs/sweet_ontologies.json index a80cd209..3463135b 100644 --- a/fuji_server/data/linked_vocabs/sweet_ontologies.json +++ b/fuji_server/data/linked_vocabs/sweet_ontologies.json @@ -1 +1,2477 @@ -{"sweet.sohu": {"id": "sweet.sohu", "uri_format": "http://sweetontology.net/human/$1", "prefix": "sohu", "name": "SWEET Ontology Human", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sohua": {"id": "sweet.sohua", "uri_format": "http://sweetontology.net/humanAgriculture/$1", "prefix": "sohua", "name": "SWEET Ontology Human Agriculture", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sohuc": {"id": "sweet.sohuc", "uri_format": "http://sweetontology.net/humanCommerce/$1", "prefix": "sohuc", "name": "SWEET Ontology Human Commerce", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sohud": {"id": "sweet.sohud", "uri_format": "http://sweetontology.net/humanDecision/$1", "prefix": "sohud", "name": "SWEET Ontology Human Decision", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sohuea": {"id": "sweet.sohuea", "uri_format": "http://sweetontology.net/humanEnvirAssessment/$1", "prefix": "sohuea", "name": "SWEET Ontology Human Environmental Assessment", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sohuecons": {"id": "sweet.sohuecons", "uri_format": "http://sweetontology.net/humanEnvirConservation/$1", "prefix": "sohuecons", "name": "SWEET Ontology Human Environmental Conservation", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sohueccont": {"id": "sweet.sohueccont", "uri_format": "http://sweetontology.net/humanEnvirControl/$1", "prefix": "sohueccont", "name": "SWEET Ontology Human Environmental Control", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sohues": {"id": "sweet.sohues", "uri_format": "http://sweetontology.net/humanEnvirStandards/$1", "prefix": "sohues", "name": "SWEET Ontology Human Environmental Standards", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sohuj": {"id": "sweet.sohuj", "uri_format": "http://sweetontology.net/humanJurisdiction/$1", "prefix": "sohuj", "name": "SWEET Ontology Human Jurisdiction", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sohukd": {"id": "sweet.sohukd", "uri_format": "http://sweetontology.net/humanKnowledgeDomain/$1", "prefix": "sohukd", "name": "SWEET Ontology Human Knowledge Domain", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sohur": {"id": "sweet.sohur", "uri_format": "http://sweetontology.net/humanResearch/$1", "prefix": "sohur", "name": "SWEET Ontology Human Research", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sohutr": {"id": "sweet.sohutr", "uri_format": "http://sweetontology.net/humanTechReadiness/$1", "prefix": "sohutr", "name": "SWEET Ontology Human Technology Readiness", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sohut": {"id": "sweet.sohut", "uri_format": "http://sweetontology.net/humanTransportation/$1", "prefix": "sohut", "name": "SWEET Ontology Human Transportation", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soma": {"id": "sweet.soma", "uri_format": "http://sweetontology.net/matr/$1", "prefix": "soma", "name": "SWEET Ontology Materials", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somaae": {"id": "sweet.somaae", "uri_format": "http://sweetontology.net/matrAerosol/$1", "prefix": "somaae", "name": "SWEET Ontology Material Aerosol", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soman": {"id": "sweet.soman", "uri_format": "http://sweetontology.net/matrAnimal/$1", "prefix": "soman", "name": "SWEET Ontology Material Animal", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somab": {"id": "sweet.somab", "uri_format": "http://sweetontology.net/matrBiomass/$1", "prefix": "somab", "name": "SWEET Ontology Material Biomass", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somac": {"id": "sweet.somac", "uri_format": "http://sweetontology.net/matrCompound/$1", "prefix": "somac", "name": "SWEET Ontology Material Compound", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somael": {"id": "sweet.somael", "uri_format": "http://sweetontology.net/matrElement/$1", "prefix": "somael", "name": "SWEET Ontology Material Element", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somaem": {"id": "sweet.somaem", "uri_format": "http://sweetontology.net/matrElementalMolecule/$1", "prefix": "somaem", "name": "SWEET Ontology Material Elemental Molecule", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somaen": {"id": "sweet.somaen", "uri_format": "http://sweetontology.net/matrEnergy/$1", "prefix": "somaen", "name": "SWEET Ontology Material Energy", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somaeq": {"id": "sweet.somaeq", "uri_format": "http://sweetontology.net/matrEquipment/$1", "prefix": "somaeq", "name": "SWEET Ontology Material Equipment", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somaf": {"id": "sweet.somaf", "uri_format": "http://sweetontology.net/matrFacility/$1", "prefix": "somaf", "name": "SWEET Ontology Material Facility", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somaind": {"id": "sweet.somaind", "uri_format": "http://sweetontology.net/matrIndustrial/$1", "prefix": "somaind", "name": "SWEET Ontology Material Industrial", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somains": {"id": "sweet.somains", "uri_format": "http://sweetontology.net/matrInstrument/$1", "prefix": "somains", "name": "SWEET Ontology Material Instrument", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somaio": {"id": "sweet.somaio", "uri_format": "http://sweetontology.net/matrIon/$1", "prefix": "somaio", "name": "SWEET Ontology Material Ion", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somais": {"id": "sweet.somais", "uri_format": "http://sweetontology.net/matrIsotope/$1", "prefix": "somais", "name": "SWEET Ontology Material Isotope", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somamic": {"id": "sweet.somamic", "uri_format": "http://sweetontology.net/matrMicrobiota/$1", "prefix": "somamic", "name": "SWEET Ontology Material Microbiota", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somamin": {"id": "sweet.somamin", "uri_format": "http://sweetontology.net/matrMineral/$1", "prefix": "somamin", "name": "SWEET Ontology Material Mineral", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somanr": {"id": "sweet.somanr", "uri_format": "http://sweetontology.net/matrNaturalResource/$1", "prefix": "somanr", "name": "SWEET Ontology Material Natural Resource", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somaoc": {"id": "sweet.somaoc", "uri_format": "http://sweetontology.net/matrOrganicCompound/$1", "prefix": "somaoc", "name": "SWEET Ontology Material Organic Compound", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somapa": {"id": "sweet.somapa", "uri_format": "http://sweetontology.net/matrParticle/$1", "prefix": "somapa", "name": "SWEET Ontology Material Particle", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somapl": {"id": "sweet.somapl", "uri_format": "http://sweetontology.net/matrPlant/$1", "prefix": "somapl", "name": "SWEET Ontology Material Plant", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somarock": {"id": "sweet.somarock", "uri_format": "http://sweetontology.net/matrRock/$1", "prefix": "somarock", "name": "SWEET Ontology Material Rock", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somarocki": {"id": "sweet.somarocki", "uri_format": "http://sweetontology.net/matrRockIgneous/$1", "prefix": "somarocki", "name": "SWEET Ontology Material Rock Igneous", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somas": {"id": "sweet.somas", "uri_format": "http://sweetontology.net/matrSediment/$1", "prefix": "somas", "name": "SWEET Ontology Material Sediment", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.somaw": {"id": "sweet.somaw", "uri_format": "http://sweetontology.net/matrWater/$1", "prefix": "somaw", "name": "SWEET Ontology Material Water", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soph": {"id": "sweet.soph", "uri_format": "http://sweetontology.net/phen/$1", "prefix": "soph", "name": "SWEET Ontology Phenomena", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophatmo": {"id": "sweet.sophatmo", "uri_format": "http://sweetontology.net/phenAtmo/$1", "prefix": "sophatmo", "name": "SWEET Ontology Phenomena Atmosphere", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophatmoc": {"id": "sweet.sophatmoc", "uri_format": "http://sweetontology.net/phenAtmoCloud/$1", "prefix": "sophatmoc", "name": "SWEET Ontology Phenomena Atmosphere Cloud", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophatmofo": {"id": "sweet.sophatmofo", "uri_format": "http://sweetontology.net/phenAtmoFog/$1", "prefix": "sophatmofo", "name": "SWEET Ontology Phenomena Atmosphere Fog", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophatmofr": {"id": "sweet.sophatmofr", "uri_format": "http://sweetontology.net/phenAtmoFront/$1", "prefix": "sophatmofr", "name": "SWEET Ontology Phenomena Atmosphere Front", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophatmol": {"id": "sweet.sophatmol", "uri_format": "http://sweetontology.net/phenAtmoLightning/$1", "prefix": "sophatmol", "name": "SWEET Ontology Phenomena Atmosphere Lightning", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophatmopc": {"id": "sweet.sophatmopc", "uri_format": "http://sweetontology.net/phenAtmoPrecipitation/$1", "prefix": "sophatmopc", "name": "SWEET Ontology Phenomena Atmosphere Precipitation", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophatmops": {"id": "sweet.sophatmops", "uri_format": "http://sweetontology.net/phenAtmoPressure/$1", "prefix": "sophatmops", "name": "SWEET Ontology Phenomena Atmosphere Pressure", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophatmos": {"id": "sweet.sophatmos", "uri_format": "http://sweetontology.net/phenAtmoSky/$1", "prefix": "sophatmos", "name": "SWEET Ontology Phenomena Atmosphere Sky", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophatmot": {"id": "sweet.sophatmot", "uri_format": "http://sweetontology.net/phenAtmoTransport/$1", "prefix": "sophatmot", "name": "SWEET Ontology Phenomena Atmosphere Transport", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophatmow": {"id": "sweet.sophatmow", "uri_format": "http://sweetontology.net/phenAtmoWind/$1", "prefix": "sophatmow", "name": "SWEET Ontology Phenomena Atmosphere Wind", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophatmowm": {"id": "sweet.sophatmowm", "uri_format": "http://sweetontology.net/phenAtmoWindMesoscale/$1", "prefix": "sophatmowm", "name": "SWEET Ontology Phenomena Atmosphere Wind Mesoscale", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophb": {"id": "sweet.sophb", "uri_format": "http://sweetontology.net/phenBiol/$1", "prefix": "sophb", "name": "SWEET Ontology Phenomena Biology", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophcr": {"id": "sweet.sophcr", "uri_format": "http://sweetontology.net/phenCryo/$1", "prefix": "sophcr", "name": "SWEET Ontology Phenomena Cryosphere", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophcy": {"id": "sweet.sophcy", "uri_format": "http://sweetontology.net/phenCycle/$1", "prefix": "sophcy", "name": "SWEET Ontology Phenomena Cycle", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophcm": {"id": "sweet.sophcm", "uri_format": "http://sweetontology.net/phenCycleMaterial/$1", "prefix": "sophcm", "name": "SWEET Ontology Phenomena Cycle Material", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophec": {"id": "sweet.sophec", "uri_format": "http://sweetontology.net/phenEcology/$1", "prefix": "sophec", "name": "SWEET Ontology Phenomena Ecology", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophel": {"id": "sweet.sophel", "uri_format": "http://sweetontology.net/phenElecMag/$1", "prefix": "sophel", "name": "SWEET Ontology Phenomena ElectroMagnetic", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophen": {"id": "sweet.sophen", "uri_format": "http://sweetontology.net/phenEnergy/$1", "prefix": "sophen", "name": "SWEET Ontology Phenomena Energy", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophei": {"id": "sweet.sophei", "uri_format": "http://sweetontology.net/phenEnvirImpact/$1", "prefix": "sophei", "name": "SWEET Ontology Phenomena Environmental Impact", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophfd": {"id": "sweet.sophfd", "uri_format": "http://sweetontology.net/phenFluidDynamics/$1", "prefix": "sophfd", "name": "SWEET Ontology Phenomena Fluid Dynamics", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophfi": {"id": "sweet.sophfi", "uri_format": "http://sweetontology.net/phenFluidInstability/$1", "prefix": "sophfi", "name": "SWEET Ontology Phenomena Fluid Instability", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophft": {"id": "sweet.sophft", "uri_format": "http://sweetontology.net/phenFluidTransport/$1", "prefix": "sophft", "name": "SWEET Ontology Phenomena Fluid Transport", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophg": {"id": "sweet.sophg", "uri_format": "http://sweetontology.net/phenGeol/$1", "prefix": "sophg", "name": "SWEET Ontology Phenomena Geologic", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophgf": {"id": "sweet.sophgf", "uri_format": "http://sweetontology.net/phenGeolFault/$1", "prefix": "sophgf", "name": "SWEET Ontology Phenomena Geologic Fault", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophgg": {"id": "sweet.sophgg", "uri_format": "http://sweetontology.net/phenGeolGeomorphology/$1", "prefix": "sophgg", "name": "SWEET Ontology Phenomena Geologic Geomorphology", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophgs": {"id": "sweet.sophgs", "uri_format": "http://sweetontology.net/phenGeolSeismicity/$1", "prefix": "sophgs", "name": "SWEET Ontology Phenomena Geologic Seismicity", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophgt": {"id": "sweet.sophgt", "uri_format": "http://sweetontology.net/phenGeolTectonic/$1", "prefix": "sophgt", "name": "SWEET Ontology Phenomena Geologic Tectonic", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophgv": {"id": "sweet.sophgv", "uri_format": "http://sweetontology.net/phenGeolVolcano/$1", "prefix": "sophgv", "name": "SWEET Ontology Phenomena Geologic Volcano", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophhe": {"id": "sweet.sophhe", "uri_format": "http://sweetontology.net/phenHelio/$1", "prefix": "sophhe", "name": "SWEET Ontology Phenomena Heliosphere", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophhy": {"id": "sweet.sophhy", "uri_format": "http://sweetontology.net/phenHydro/$1", "prefix": "sophhy", "name": "SWEET Ontology Phenomena Hydrosphere", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophm": {"id": "sweet.sophm", "uri_format": "http://sweetontology.net/phenMixing/$1", "prefix": "sophm", "name": "SWEET Ontology Phenomena Mixing", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopho": {"id": "sweet.sopho", "uri_format": "http://sweetontology.net/phenOcean/$1", "prefix": "sopho", "name": "SWEET Ontology Phenomena Ocean", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophoc": {"id": "sweet.sophoc", "uri_format": "http://sweetontology.net/phenOceanCoastal/$1", "prefix": "sophoc", "name": "SWEET Ontology Phenomena Ocean Coastal", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophod": {"id": "sweet.sophod", "uri_format": "http://sweetontology.net/phenOceanDynamics/$1", "prefix": "sophod", "name": "SWEET Ontology Phenomena Ocean Dynamics", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophpc": {"id": "sweet.sophpc", "uri_format": "http://sweetontology.net/phenPlanetClimate/$1", "prefix": "sophpc", "name": "SWEET Ontology Phenomena Planetary Climate", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophr": {"id": "sweet.sophr", "uri_format": "http://sweetontology.net/phenReaction/$1", "prefix": "sophr", "name": "SWEET Ontology Phenomena Reaction", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophso": {"id": "sweet.sophso", "uri_format": "http://sweetontology.net/phenSolid/$1", "prefix": "sophso", "name": "SWEET Ontology Phenomena Solid", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophst": {"id": "sweet.sophst", "uri_format": "http://sweetontology.net/phenStar/$1", "prefix": "sophst", "name": "SWEET Ontology Phenomena Star", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophsy": {"id": "sweet.sophsy", "uri_format": "http://sweetontology.net/phenSystem/$1", "prefix": "sophsy", "name": "SWEET Ontology Phenomena System", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophsyc": {"id": "sweet.sophsyc", "uri_format": "http://sweetontology.net/phenSystemComplexity/$1", "prefix": "sophsyc", "name": "SWEET Ontology Phenomena System Complexity", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophw": {"id": "sweet.sophw", "uri_format": "http://sweetontology.net/phenWave/$1", "prefix": "sophw", "name": "SWEET Ontology Phenomena Wave", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sophwn": {"id": "sweet.sophwn", "uri_format": "http://sweetontology.net/phenWaveNoise/$1", "prefix": "sophwn", "name": "SWEET Ontology Phenomena Wave Noise", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soproc": {"id": "sweet.soproc", "uri_format": "http://sweetontology.net/proc/$1", "prefix": "soproc", "name": "SWEET Ontology Process", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soprocc": {"id": "sweet.soprocc", "uri_format": "http://sweetontology.net/procChemical/$1", "prefix": "soprocc", "name": "SWEET Ontology Process Chemical", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soprocp": {"id": "sweet.soprocp", "uri_format": "http://sweetontology.net/procPhysical/$1", "prefix": "soprocp", "name": "SWEET Ontology Process Physical", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soprocsc": {"id": "sweet.soprocsc", "uri_format": "http://sweetontology.net/procStateChange/$1", "prefix": "soprocsc", "name": "SWEET Ontology Process State Change", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soprocw": {"id": "sweet.soprocw", "uri_format": "http://sweetontology.net/procWave/$1", "prefix": "soprocw", "name": "SWEET Ontology Process Wave", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soprop": {"id": "sweet.soprop", "uri_format": "http://sweetontology.net/prop/$1", "prefix": "soprop", "name": "SWEET Ontology Property", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropb": {"id": "sweet.sopropb", "uri_format": "http://sweetontology.net/propBinary/$1", "prefix": "sopropb", "name": "SWEET Ontology Property Binary", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropcap": {"id": "sweet.sopropcap", "uri_format": "http://sweetontology.net/propCapacity/$1", "prefix": "sopropcap", "name": "SWEET Ontology Property Capacity", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropcat": {"id": "sweet.sopropcat", "uri_format": "http://sweetontology.net/propCategorical/$1", "prefix": "sopropcat", "name": "SWEET Ontology Property Categorical", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropcha": {"id": "sweet.sopropcha", "uri_format": "http://sweetontology.net/propCharge/$1", "prefix": "sopropcha", "name": "SWEET Ontology Property Charge", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropche": {"id": "sweet.sopropche", "uri_format": "http://sweetontology.net/propChemical/$1", "prefix": "sopropche", "name": "SWEET Ontology Property Chemical", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropcon": {"id": "sweet.sopropcon", "uri_format": "http://sweetontology.net/propConductivity/$1", "prefix": "sopropcon", "name": "SWEET Ontology Property Conductivity", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropcou": {"id": "sweet.sopropcou", "uri_format": "http://sweetontology.net/propCount/$1", "prefix": "sopropcou", "name": "SWEET Ontology Property Count", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropdife": {"id": "sweet.sopropdife", "uri_format": "http://sweetontology.net/propDifference/$1", "prefix": "sopropdife", "name": "SWEET Ontology Property Difference", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropdifu": {"id": "sweet.sopropdifu", "uri_format": "http://sweetontology.net/propDiffusivity/$1", "prefix": "sopropdifu", "name": "SWEET Ontology Property Diffusivity", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropdr": {"id": "sweet.sopropdr", "uri_format": "http://sweetontology.net/propDimensionlessRatio/$1", "prefix": "sopropdr", "name": "SWEET Ontology Property Dimensionless Ratio", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soprope": {"id": "sweet.soprope", "uri_format": "http://sweetontology.net/propEnergy/$1", "prefix": "soprope", "name": "SWEET Ontology Property Energy", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropef": {"id": "sweet.sopropef", "uri_format": "http://sweetontology.net/propEnergyFlux/$1", "prefix": "sopropef", "name": "SWEET Ontology Property Energy Flux", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropfr": {"id": "sweet.sopropfr", "uri_format": "http://sweetontology.net/propFraction/$1", "prefix": "sopropfr", "name": "SWEET Ontology Property Fraction", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropfu": {"id": "sweet.sopropfu", "uri_format": "http://sweetontology.net/propFunction/$1", "prefix": "sopropfu", "name": "SWEET Ontology Property Function", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropi": {"id": "sweet.sopropi", "uri_format": "http://sweetontology.net/propIndex/$1", "prefix": "sopropi", "name": "SWEET Ontology Property Index", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropm": {"id": "sweet.sopropm", "uri_format": "http://sweetontology.net/propMass/$1", "prefix": "sopropm", "name": "SWEET Ontology Property Mass", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropmf": {"id": "sweet.sopropmf", "uri_format": "http://sweetontology.net/propMassFlux/$1", "prefix": "sopropmf", "name": "SWEET Ontology Property Mass Flux", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropo": {"id": "sweet.sopropo", "uri_format": "http://sweetontology.net/propOrdinal/$1", "prefix": "sopropo", "name": "SWEET Ontology Property Ordinal", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropp": {"id": "sweet.sopropp", "uri_format": "http://sweetontology.net/propPressure/$1", "prefix": "sopropp", "name": "SWEET Ontology Property Pressure", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropq": {"id": "sweet.sopropq", "uri_format": "http://sweetontology.net/propQuantity/$1", "prefix": "sopropq", "name": "SWEET Ontology Property Quantity", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropr": {"id": "sweet.sopropr", "uri_format": "http://sweetontology.net/propRotation/$1", "prefix": "sopropr", "name": "SWEET Ontology Property Rotation", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soprops": {"id": "sweet.soprops", "uri_format": "http://sweetontology.net/propSpace/$1", "prefix": "soprops", "name": "SWEET Ontology Property Space", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropsdir": {"id": "sweet.sopropsdir", "uri_format": "http://sweetontology.net/propSpaceDirection/$1", "prefix": "sopropsdir", "name": "SWEET Ontology Property Space Direction", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropsdis": {"id": "sweet.sopropsdis", "uri_format": "http://sweetontology.net/propSpaceDistance/$1", "prefix": "sopropsdis", "name": "SWEET Ontology Property Space Distance", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropsh": {"id": "sweet.sopropsh", "uri_format": "http://sweetontology.net/propSpaceHeight/$1", "prefix": "sopropsh", "name": "SWEET Ontology Property Space Height", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropsl": {"id": "sweet.sopropsl", "uri_format": "http://sweetontology.net/propSpaceLocation/$1", "prefix": "sopropsl", "name": "SWEET Ontology Property Space Location", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropsm": {"id": "sweet.sopropsm", "uri_format": "http://sweetontology.net/propSpaceMultidimensional/$1", "prefix": "sopropsm", "name": "SWEET Ontology Property Space Multidimensional", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropst": {"id": "sweet.sopropst", "uri_format": "http://sweetontology.net/propSpaceThickness/$1", "prefix": "sopropst", "name": "SWEET Ontology Property Space Thickness", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropsp": {"id": "sweet.sopropsp", "uri_format": "http://sweetontology.net/propSpeed/$1", "prefix": "sopropsp", "name": "SWEET Ontology Property Speed", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropt": {"id": "sweet.sopropt", "uri_format": "http://sweetontology.net/propTemperature/$1", "prefix": "sopropt", "name": "SWEET Ontology Property Temperature", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soproptg": {"id": "sweet.soproptg", "uri_format": "http://sweetontology.net/propTemperatureGradient/$1", "prefix": "soproptg", "name": "SWEET Ontology Property Temperature Gradient", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sopropti": {"id": "sweet.sopropti", "uri_format": "http://sweetontology.net/propTime/$1", "prefix": "sopropti", "name": "SWEET Ontology Property Time", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soproptf": {"id": "sweet.soproptf", "uri_format": "http://sweetontology.net/propTimeFrequency/$1", "prefix": "soproptf", "name": "SWEET Ontology Property Time Frequency", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorea": {"id": "sweet.sorea", "uri_format": "http://sweetontology.net/realm/$1", "prefix": "sorea", "name": "SWEET Ontology Realm", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreaab": {"id": "sweet.soreaab", "uri_format": "http://sweetontology.net/realmAstroBody/$1", "prefix": "soreaab", "name": "SWEET Ontology Realm Astrophysical Body", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreaah": {"id": "sweet.soreaah", "uri_format": "http://sweetontology.net/realmAstroHelio/$1", "prefix": "soreaah", "name": "SWEET Ontology Realm Astrophysical Heliosphere", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreaas": {"id": "sweet.soreaas", "uri_format": "http://sweetontology.net/realmAstroStar/$1", "prefix": "soreaas", "name": "SWEET Ontology Realm Astrophysical", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreaa": {"id": "sweet.soreaa", "uri_format": "http://sweetontology.net/realmAtmo/$1", "prefix": "soreaa", "name": "SWEET Ontology Realm Atmospheric", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreaabl": {"id": "sweet.soreaabl", "uri_format": "http://sweetontology.net/realmAtmoBoundaryLayer/$1", "prefix": "soreaabl", "name": "SWEET Ontology Realm Atmospheric Boundary Layer", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreaaw": {"id": "sweet.soreaaw", "uri_format": "http://sweetontology.net/realmAtmoWeather/$1", "prefix": "soreaaw", "name": "SWEET Ontology Realm Atmospheric Weather", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreabb": {"id": "sweet.soreabb", "uri_format": "http://sweetontology.net/realmBiolBiome/$1", "prefix": "soreabb", "name": "SWEET Ontology Realm Biologic Biome", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreacz": {"id": "sweet.soreacz", "uri_format": "http://sweetontology.net/realmClimateZone/$1", "prefix": "soreacz", "name": "SWEET Ontology Realm Climate Zone", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreac": {"id": "sweet.soreac", "uri_format": "http://sweetontology.net/realmCryo/$1", "prefix": "soreac", "name": "SWEET Ontology Realm Cryosphere", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreaer": {"id": "sweet.soreaer", "uri_format": "http://sweetontology.net/realmEarthReference/$1", "prefix": "soreaer", "name": "SWEET Ontology Realm Earth Reference", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreag": {"id": "sweet.soreag", "uri_format": "http://sweetontology.net/realmGeol/$1", "prefix": "soreag", "name": "SWEET Ontology Realm Geologic", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreagb": {"id": "sweet.soreagb", "uri_format": "http://sweetontology.net/realmGeolBasin/$1", "prefix": "soreagb", "name": "SWEET Ontology Realm Geologic Basin", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreagcons": {"id": "sweet.soreagcons", "uri_format": "http://sweetontology.net/realmGeolConstituent/$1", "prefix": "soreagcons", "name": "SWEET Ontology Realm Geologic Constituent", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreagcont": {"id": "sweet.soreagcont", "uri_format": "http://sweetontology.net/realmGeolContinental/$1", "prefix": "soreagcont", "name": "SWEET Ontology Realm Geologic Continental", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreagoc": {"id": "sweet.soreagoc", "uri_format": "http://sweetontology.net/realmGeolOceanic/$1", "prefix": "soreagoc", "name": "SWEET Ontology Realm Geologic Oceanic", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreagor": {"id": "sweet.soreagor", "uri_format": "http://sweetontology.net/realmGeolOrogen/$1", "prefix": "soreagor", "name": "SWEET Ontology Realm Geologic Orogen", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreah": {"id": "sweet.soreah", "uri_format": "http://sweetontology.net/realmHydro/$1", "prefix": "soreah", "name": "SWEET Ontology Realm Hydrosphere", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreahb": {"id": "sweet.soreahb", "uri_format": "http://sweetontology.net/realmHydroBody/$1", "prefix": "soreahb", "name": "SWEET Ontology Realm Hydrosphere Body", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreala": {"id": "sweet.soreala", "uri_format": "http://sweetontology.net/realmLandAeolian/$1", "prefix": "soreala", "name": "SWEET Ontology Realm Land Aeolian", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorealc": {"id": "sweet.sorealc", "uri_format": "http://sweetontology.net/realmLandCoastal/$1", "prefix": "sorealc", "name": "SWEET Ontology Realm Land Coastal", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorealf": {"id": "sweet.sorealf", "uri_format": "http://sweetontology.net/realmLandFluvial/$1", "prefix": "sorealf", "name": "SWEET Ontology Realm Land Fluvial", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorealg": {"id": "sweet.sorealg", "uri_format": "http://sweetontology.net/realmLandGlacial/$1", "prefix": "sorealg", "name": "SWEET Ontology Realm Land Glacial", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorealo": {"id": "sweet.sorealo", "uri_format": "http://sweetontology.net/realmLandOrographic/$1", "prefix": "sorealo", "name": "SWEET Ontology Realm Land Orographic", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorealp": {"id": "sweet.sorealp", "uri_format": "http://sweetontology.net/realmLandProtected/$1", "prefix": "sorealp", "name": "SWEET Ontology Realm Land Protected", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorealt": {"id": "sweet.sorealt", "uri_format": "http://sweetontology.net/realmLandTectonic/$1", "prefix": "sorealt", "name": "SWEET Ontology Realm Land Tectonic", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorealv": {"id": "sweet.sorealv", "uri_format": "http://sweetontology.net/realmLandVolcanic/$1", "prefix": "sorealv", "name": "SWEET Ontology Realm Land Volcanic", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreal": {"id": "sweet.soreal", "uri_format": "http://sweetontology.net/realmLandform/$1", "prefix": "soreal", "name": "SWEET Ontology Realm Landform", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreao": {"id": "sweet.soreao", "uri_format": "http://sweetontology.net/realmOcean/$1", "prefix": "soreao", "name": "SWEET Ontology Realm Ocean", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreaofe": {"id": "sweet.soreaofe", "uri_format": "http://sweetontology.net/realmOceanFeature/$1", "prefix": "soreaofe", "name": "SWEET Ontology Realm Ocean Feature", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreaofl": {"id": "sweet.soreaofl", "uri_format": "http://sweetontology.net/realmOceanFloor/$1", "prefix": "soreaofl", "name": "SWEET Ontology Realm Ocean Floor", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorear": {"id": "sweet.sorear", "uri_format": "http://sweetontology.net/realmRegion/$1", "prefix": "sorear", "name": "SWEET Ontology Realm Region", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreas": {"id": "sweet.soreas", "uri_format": "http://sweetontology.net/realmSoil/$1", "prefix": "soreas", "name": "SWEET Ontology Realm Soil", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorel": {"id": "sweet.sorel", "uri_format": "http://sweetontology.net/rela/$1", "prefix": "sorel", "name": "SWEET Ontology Relationships", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorelch": {"id": "sweet.sorelch", "uri_format": "http://sweetontology.net/relaChemical/$1", "prefix": "sorelch", "name": "SWEET Ontology Relationships Chemical", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorelcl": {"id": "sweet.sorelcl", "uri_format": "http://sweetontology.net/relaClimate/$1", "prefix": "sorelcl", "name": "SWEET Ontology Relationships Climate", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorelh": {"id": "sweet.sorelh", "uri_format": "http://sweetontology.net/relaHuman/$1", "prefix": "sorelh", "name": "SWEET Ontology Relationships Human", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorelm": {"id": "sweet.sorelm", "uri_format": "http://sweetontology.net/relaMath/$1", "prefix": "sorelm", "name": "SWEET Ontology Relationships Mathematical", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorelph": {"id": "sweet.sorelph", "uri_format": "http://sweetontology.net/relaPhysical/$1", "prefix": "sorelph", "name": "SWEET Ontology Relationships Physical", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorelpr": {"id": "sweet.sorelpr", "uri_format": "http://sweetontology.net/relaProvenance/$1", "prefix": "sorelpr", "name": "SWEET Ontology Relationships Provenance", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorelsc": {"id": "sweet.sorelsc", "uri_format": "http://sweetontology.net/relaSci/$1", "prefix": "sorelsc", "name": "SWEET Ontology Relationships Scientific", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorelsp": {"id": "sweet.sorelsp", "uri_format": "http://sweetontology.net/relaSpace/$1", "prefix": "sorelsp", "name": "SWEET Ontology Relationships Space", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorelt": {"id": "sweet.sorelt", "uri_format": "http://sweetontology.net/relaTime/$1", "prefix": "sorelt", "name": "SWEET Ontology Relationships Time", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorep": {"id": "sweet.sorep", "uri_format": "http://sweetontology.net/repr/$1", "prefix": "sorep", "name": "SWEET Ontology Representation", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepdf": {"id": "sweet.sorepdf", "uri_format": "http://sweetontology.net/reprDataFormat/$1", "prefix": "sorepdf", "name": "SWEET Ontology Representation Data Format", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepdm": {"id": "sweet.sorepdm", "uri_format": "http://sweetontology.net/reprDataModel/$1", "prefix": "sorepdm", "name": "SWEET Ontology Representation Data Model", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepdp": {"id": "sweet.sorepdp", "uri_format": "http://sweetontology.net/reprDataProduct/$1", "prefix": "sorepdp", "name": "SWEET Ontology Representation Data Product", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepds": {"id": "sweet.sorepds", "uri_format": "http://sweetontology.net/reprDataService/$1", "prefix": "sorepds", "name": "SWEET Ontology Representation Data Service", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepdsa": {"id": "sweet.sorepdsa", "uri_format": "http://sweetontology.net/reprDataServiceAnalysis/$1", "prefix": "sorepdsa", "name": "SWEET Ontology Representation Data Servcie Analysis", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepdsg": {"id": "sweet.sorepdsg", "uri_format": "http://sweetontology.net/reprDataServiceGeospatial/$1", "prefix": "sorepdsg", "name": "SWEET Ontology Representation Data Service Geospatial", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepdsr": {"id": "sweet.sorepdsr", "uri_format": "http://sweetontology.net/reprDataServiceReduction/$1", "prefix": "sorepdsr", "name": "SWEET Ontology Representation Data Service Reduction", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepdsv": {"id": "sweet.sorepdsv", "uri_format": "http://sweetontology.net/reprDataServiceValidation/$1", "prefix": "sorepdsv", "name": "SWEET Ontology Representation Data Service Validation", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepm": {"id": "sweet.sorepm", "uri_format": "http://sweetontology.net/reprMath/$1", "prefix": "sorepm", "name": "SWEET Ontology Representation Mathematics", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepmf": {"id": "sweet.sorepmf", "uri_format": "http://sweetontology.net/reprMathFunction/$1", "prefix": "sorepmf", "name": "SWEET Ontology Representation Mathematics Function", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepmfo": {"id": "sweet.sorepmfo", "uri_format": "http://sweetontology.net/reprMathFunctionOrthogonal/$1", "prefix": "sorepmfo", "name": "SWEET Ontology Representation Mathematics Function Orthogonal", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepmg": {"id": "sweet.sorepmg", "uri_format": "http://sweetontology.net/reprMathGraph/$1", "prefix": "sorepmg", "name": "SWEET Ontology Representation Mathematics Graph", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepmo": {"id": "sweet.sorepmo", "uri_format": "http://sweetontology.net/reprMathOperation/$1", "prefix": "sorepmo", "name": "SWEET Ontology Representation Mathematics Operation", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepmso": {"id": "sweet.sorepmso", "uri_format": "http://sweetontology.net/reprMathSolution/$1", "prefix": "sorepmso", "name": "SWEET Ontology Representation Mathematics Solution", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepmst": {"id": "sweet.sorepmst", "uri_format": "http://sweetontology.net/reprMathStatistics/$1", "prefix": "sorepmst", "name": "SWEET Ontology Representation Mathematics Statistics", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepsc": {"id": "sweet.sorepsc", "uri_format": "http://sweetontology.net/reprSciComponent/$1", "prefix": "sorepsc", "name": "SWEET Ontology Representation Scientific Component", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepsf": {"id": "sweet.sorepsf", "uri_format": "http://sweetontology.net/reprSciFunction/$1", "prefix": "sorepsf", "name": "SWEET Ontology Representation Scientific Function", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepsl": {"id": "sweet.sorepsl", "uri_format": "http://sweetontology.net/reprSciLaw/$1", "prefix": "sorepsl", "name": "SWEET Ontology Representation Scientific Law", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepsme": {"id": "sweet.sorepsme", "uri_format": "http://sweetontology.net/reprSciMethodology/$1", "prefix": "sorepsme", "name": "SWEET Ontology Representation Representation Scientific Methodology", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepsmo": {"id": "sweet.sorepsmo", "uri_format": "http://sweetontology.net/reprSciModel/$1", "prefix": "sorepsmo", "name": "SWEET Ontology Representation Scientific Model", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepsp": {"id": "sweet.sorepsp", "uri_format": "http://sweetontology.net/reprSciProvenance/$1", "prefix": "sorepsp", "name": "SWEET Ontology Representation Science Provenance", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepsu": {"id": "sweet.sorepsu", "uri_format": "http://sweetontology.net/reprSciUnits/$1", "prefix": "sorepsu", "name": "SWEET Ontology Representation Scientific Units", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreps": {"id": "sweet.soreps", "uri_format": "http://sweetontology.net/reprSpace/$1", "prefix": "soreps", "name": "SWEET Ontology Representation Space", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepscd": {"id": "sweet.sorepscd", "uri_format": "http://sweetontology.net/reprSpaceCoordinate/$1", "prefix": "sorepscd", "name": "SWEET Ontology Representation Space Coordinate", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepsd": {"id": "sweet.sorepsd", "uri_format": "http://sweetontology.net/reprSpaceDirection/$1", "prefix": "sorepsd", "name": "SWEET Ontology Representation Space Direction", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepsg": {"id": "sweet.sorepsg", "uri_format": "http://sweetontology.net/reprSpaceGeometry/$1", "prefix": "sorepsg", "name": "SWEET Ontology Representation Space Geometry", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepsg3": {"id": "sweet.sorepsg3", "uri_format": "http://sweetontology.net/reprSpaceGeometry3D/$1", "prefix": "sorepsg3", "name": "SWEET Ontology Representation Space Geometry 3D", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepsrs": {"id": "sweet.sorepsrs", "uri_format": "http://sweetontology.net/reprSpaceReferenceSystem/$1", "prefix": "sorepsrs", "name": "SWEET Ontology Representation Space Reference System", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorept": {"id": "sweet.sorept", "uri_format": "http://sweetontology.net/reprTime/$1", "prefix": "sorept", "name": "SWEET Ontology Representation Time", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soreptd": {"id": "sweet.soreptd", "uri_format": "http://sweetontology.net/reprTimeDay/$1", "prefix": "soreptd", "name": "SWEET Ontology Representation Time Day", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sorepts": {"id": "sweet.sorepts", "uri_format": "http://sweetontology.net/reprTimeSeason/$1", "prefix": "sorepts", "name": "SWEET Ontology Representation Time Season", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sost": {"id": "sweet.sost", "uri_format": "http://sweetontology.net/state/$1", "prefix": "sost", "name": "SWEET Ontology State", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostb": {"id": "sweet.sostb", "uri_format": "http://sweetontology.net/stateBiological/$1", "prefix": "sostb", "name": "SWEET Ontology State Biological", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostc": {"id": "sweet.sostc", "uri_format": "http://sweetontology.net/stateChemical/$1", "prefix": "sostc", "name": "SWEET Ontology State Chemical", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostdp": {"id": "sweet.sostdp", "uri_format": "http://sweetontology.net/stateDataProcessing/$1", "prefix": "sostdp", "name": "SWEET Ontology State Data Processing", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostef": {"id": "sweet.sostef", "uri_format": "http://sweetontology.net/stateEnergyFlux/$1", "prefix": "sostef", "name": "SWEET Ontology State Energy Flux", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostf": {"id": "sweet.sostf", "uri_format": "http://sweetontology.net/stateFluid/$1", "prefix": "sostf", "name": "SWEET Ontology State Fluid", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sosto": {"id": "sweet.sosto", "uri_format": "http://sweetontology.net/stateOrdinal/$1", "prefix": "sosto", "name": "SWEET Ontology State Ordinal", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostp": {"id": "sweet.sostp", "uri_format": "http://sweetontology.net/statePhysical/$1", "prefix": "sostp", "name": "SWEET Ontology State Physical", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostre": {"id": "sweet.sostre", "uri_format": "http://sweetontology.net/stateRealm/$1", "prefix": "sostre", "name": "SWEET Ontology State Realm", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostro": {"id": "sweet.sostro", "uri_format": "http://sweetontology.net/stateRole/$1", "prefix": "sostro", "name": "SWEET Ontology State Role", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostrb": {"id": "sweet.sostrb", "uri_format": "http://sweetontology.net/stateRoleBiological/$1", "prefix": "sostrb", "name": "SWEET Ontology State Role Biological", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostrc": {"id": "sweet.sostrc", "uri_format": "http://sweetontology.net/stateRoleChemical/$1", "prefix": "sostrc", "name": "SWEET Ontology State Role Chemical", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostrg": {"id": "sweet.sostrg", "uri_format": "http://sweetontology.net/stateRoleGeographic/$1", "prefix": "sostrg", "name": "SWEET Ontology State Role Geographic", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostri": {"id": "sweet.sostri", "uri_format": "http://sweetontology.net/stateRoleImpact/$1", "prefix": "sostri", "name": "SWEET Ontology State Role Impact", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostrr": {"id": "sweet.sostrr", "uri_format": "http://sweetontology.net/stateRoleRepresentative/$1", "prefix": "sostrr", "name": "SWEET Ontology State Role Representative", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostrt": {"id": "sweet.sostrt", "uri_format": "http://sweetontology.net/stateRoleTrust/$1", "prefix": "sostrt", "name": "SWEET Ontology State Role Trust", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostso": {"id": "sweet.sostso", "uri_format": "http://sweetontology.net/stateSolid/$1", "prefix": "sostso", "name": "SWEET Ontology State Solid", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostsp": {"id": "sweet.sostsp", "uri_format": "http://sweetontology.net/stateSpace/$1", "prefix": "sostsp", "name": "SWEET Ontology State Space", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostsc": {"id": "sweet.sostsc", "uri_format": "http://sweetontology.net/stateSpaceConfiguration/$1", "prefix": "sostsc", "name": "SWEET Ontology State Space Configuration", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostss": {"id": "sweet.sostss", "uri_format": "http://sweetontology.net/stateSpaceScale/$1", "prefix": "sostss", "name": "SWEET Ontology State Space Scale", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostsb": {"id": "sweet.sostsb", "uri_format": "http://sweetontology.net/stateSpectralBand/$1", "prefix": "sostsb", "name": "SWEET Ontology State Spectral Band", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostsl": {"id": "sweet.sostsl", "uri_format": "http://sweetontology.net/stateSpectralLine/$1", "prefix": "sostsl", "name": "SWEET Ontology State Spectral Line", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostst": {"id": "sweet.sostst", "uri_format": "http://sweetontology.net/stateStorm/$1", "prefix": "sostst", "name": "SWEET Ontology State Storm", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostsy": {"id": "sweet.sostsy", "uri_format": "http://sweetontology.net/stateSystem/$1", "prefix": "sostsy", "name": "SWEET Ontology State System", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostth": {"id": "sweet.sostth", "uri_format": "http://sweetontology.net/stateThermodynamic/$1", "prefix": "sostth", "name": "SWEET Ontology State Thermodynamic", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostti": {"id": "sweet.sostti", "uri_format": "http://sweetontology.net/stateTime/$1", "prefix": "sostti", "name": "SWEET Ontology State Time", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sosttc": {"id": "sweet.sosttc", "uri_format": "http://sweetontology.net/stateTimeCycle/$1", "prefix": "sosttc", "name": "SWEET Ontology State Time Cycle", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sosttf": {"id": "sweet.sosttf", "uri_format": "http://sweetontology.net/stateTimeFrequency/$1", "prefix": "sosttf", "name": "SWEET Ontology State Time Frequency", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sosttg": {"id": "sweet.sosttg", "uri_format": "http://sweetontology.net/stateTimeGeologic/$1", "prefix": "sosttg", "name": "SWEET Ontology State Time Geologic", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.sostv": {"id": "sweet.sostv", "uri_format": "http://sweetontology.net/stateVisibility/$1", "prefix": "sostv", "name": "SWEET Ontology State Visibility", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}, "sweet.soall": {"id": "sweet.soall", "uri_format": "http://sweetontology.net/sweetAll/$1", "prefix": "soall", "name": "SWEET Ontology", "authority": "sweet", "source": "sweetontology.net", "subjects": ["earth and related environmental sciences"]}} \ No newline at end of file +{ + "sweet.soall": { + "authority": "sweet", + "id": "sweet.soall", + "name": "SWEET Ontology", + "prefix": "soall", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/sweetAll/$1" + }, + "sweet.sohu": { + "authority": "sweet", + "id": "sweet.sohu", + "name": "SWEET Ontology Human", + "prefix": "sohu", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/human/$1" + }, + "sweet.sohua": { + "authority": "sweet", + "id": "sweet.sohua", + "name": "SWEET Ontology Human Agriculture", + "prefix": "sohua", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/humanAgriculture/$1" + }, + "sweet.sohuc": { + "authority": "sweet", + "id": "sweet.sohuc", + "name": "SWEET Ontology Human Commerce", + "prefix": "sohuc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/humanCommerce/$1" + }, + "sweet.sohud": { + "authority": "sweet", + "id": "sweet.sohud", + "name": "SWEET Ontology Human Decision", + "prefix": "sohud", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/humanDecision/$1" + }, + "sweet.sohuea": { + "authority": "sweet", + "id": "sweet.sohuea", + "name": "SWEET Ontology Human Environmental Assessment", + "prefix": "sohuea", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/humanEnvirAssessment/$1" + }, + "sweet.sohueccont": { + "authority": "sweet", + "id": "sweet.sohueccont", + "name": "SWEET Ontology Human Environmental Control", + "prefix": "sohueccont", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/humanEnvirControl/$1" + }, + "sweet.sohuecons": { + "authority": "sweet", + "id": "sweet.sohuecons", + "name": "SWEET Ontology Human Environmental Conservation", + "prefix": "sohuecons", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/humanEnvirConservation/$1" + }, + "sweet.sohues": { + "authority": "sweet", + "id": "sweet.sohues", + "name": "SWEET Ontology Human Environmental Standards", + "prefix": "sohues", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/humanEnvirStandards/$1" + }, + "sweet.sohuj": { + "authority": "sweet", + "id": "sweet.sohuj", + "name": "SWEET Ontology Human Jurisdiction", + "prefix": "sohuj", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/humanJurisdiction/$1" + }, + "sweet.sohukd": { + "authority": "sweet", + "id": "sweet.sohukd", + "name": "SWEET Ontology Human Knowledge Domain", + "prefix": "sohukd", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/humanKnowledgeDomain/$1" + }, + "sweet.sohur": { + "authority": "sweet", + "id": "sweet.sohur", + "name": "SWEET Ontology Human Research", + "prefix": "sohur", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/humanResearch/$1" + }, + "sweet.sohut": { + "authority": "sweet", + "id": "sweet.sohut", + "name": "SWEET Ontology Human Transportation", + "prefix": "sohut", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/humanTransportation/$1" + }, + "sweet.sohutr": { + "authority": "sweet", + "id": "sweet.sohutr", + "name": "SWEET Ontology Human Technology Readiness", + "prefix": "sohutr", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/humanTechReadiness/$1" + }, + "sweet.soma": { + "authority": "sweet", + "id": "sweet.soma", + "name": "SWEET Ontology Materials", + "prefix": "soma", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matr/$1" + }, + "sweet.somaae": { + "authority": "sweet", + "id": "sweet.somaae", + "name": "SWEET Ontology Material Aerosol", + "prefix": "somaae", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrAerosol/$1" + }, + "sweet.somab": { + "authority": "sweet", + "id": "sweet.somab", + "name": "SWEET Ontology Material Biomass", + "prefix": "somab", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrBiomass/$1" + }, + "sweet.somac": { + "authority": "sweet", + "id": "sweet.somac", + "name": "SWEET Ontology Material Compound", + "prefix": "somac", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrCompound/$1" + }, + "sweet.somael": { + "authority": "sweet", + "id": "sweet.somael", + "name": "SWEET Ontology Material Element", + "prefix": "somael", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrElement/$1" + }, + "sweet.somaem": { + "authority": "sweet", + "id": "sweet.somaem", + "name": "SWEET Ontology Material Elemental Molecule", + "prefix": "somaem", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrElementalMolecule/$1" + }, + "sweet.somaen": { + "authority": "sweet", + "id": "sweet.somaen", + "name": "SWEET Ontology Material Energy", + "prefix": "somaen", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrEnergy/$1" + }, + "sweet.somaeq": { + "authority": "sweet", + "id": "sweet.somaeq", + "name": "SWEET Ontology Material Equipment", + "prefix": "somaeq", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrEquipment/$1" + }, + "sweet.somaf": { + "authority": "sweet", + "id": "sweet.somaf", + "name": "SWEET Ontology Material Facility", + "prefix": "somaf", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrFacility/$1" + }, + "sweet.somaind": { + "authority": "sweet", + "id": "sweet.somaind", + "name": "SWEET Ontology Material Industrial", + "prefix": "somaind", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrIndustrial/$1" + }, + "sweet.somains": { + "authority": "sweet", + "id": "sweet.somains", + "name": "SWEET Ontology Material Instrument", + "prefix": "somains", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrInstrument/$1" + }, + "sweet.somaio": { + "authority": "sweet", + "id": "sweet.somaio", + "name": "SWEET Ontology Material Ion", + "prefix": "somaio", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrIon/$1" + }, + "sweet.somais": { + "authority": "sweet", + "id": "sweet.somais", + "name": "SWEET Ontology Material Isotope", + "prefix": "somais", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrIsotope/$1" + }, + "sweet.somamic": { + "authority": "sweet", + "id": "sweet.somamic", + "name": "SWEET Ontology Material Microbiota", + "prefix": "somamic", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrMicrobiota/$1" + }, + "sweet.somamin": { + "authority": "sweet", + "id": "sweet.somamin", + "name": "SWEET Ontology Material Mineral", + "prefix": "somamin", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrMineral/$1" + }, + "sweet.soman": { + "authority": "sweet", + "id": "sweet.soman", + "name": "SWEET Ontology Material Animal", + "prefix": "soman", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrAnimal/$1" + }, + "sweet.somanr": { + "authority": "sweet", + "id": "sweet.somanr", + "name": "SWEET Ontology Material Natural Resource", + "prefix": "somanr", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrNaturalResource/$1" + }, + "sweet.somaoc": { + "authority": "sweet", + "id": "sweet.somaoc", + "name": "SWEET Ontology Material Organic Compound", + "prefix": "somaoc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrOrganicCompound/$1" + }, + "sweet.somapa": { + "authority": "sweet", + "id": "sweet.somapa", + "name": "SWEET Ontology Material Particle", + "prefix": "somapa", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrParticle/$1" + }, + "sweet.somapl": { + "authority": "sweet", + "id": "sweet.somapl", + "name": "SWEET Ontology Material Plant", + "prefix": "somapl", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrPlant/$1" + }, + "sweet.somarock": { + "authority": "sweet", + "id": "sweet.somarock", + "name": "SWEET Ontology Material Rock", + "prefix": "somarock", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrRock/$1" + }, + "sweet.somarocki": { + "authority": "sweet", + "id": "sweet.somarocki", + "name": "SWEET Ontology Material Rock Igneous", + "prefix": "somarocki", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrRockIgneous/$1" + }, + "sweet.somas": { + "authority": "sweet", + "id": "sweet.somas", + "name": "SWEET Ontology Material Sediment", + "prefix": "somas", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrSediment/$1" + }, + "sweet.somaw": { + "authority": "sweet", + "id": "sweet.somaw", + "name": "SWEET Ontology Material Water", + "prefix": "somaw", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/matrWater/$1" + }, + "sweet.soph": { + "authority": "sweet", + "id": "sweet.soph", + "name": "SWEET Ontology Phenomena", + "prefix": "soph", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phen/$1" + }, + "sweet.sophatmo": { + "authority": "sweet", + "id": "sweet.sophatmo", + "name": "SWEET Ontology Phenomena Atmosphere", + "prefix": "sophatmo", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenAtmo/$1" + }, + "sweet.sophatmoc": { + "authority": "sweet", + "id": "sweet.sophatmoc", + "name": "SWEET Ontology Phenomena Atmosphere Cloud", + "prefix": "sophatmoc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenAtmoCloud/$1" + }, + "sweet.sophatmofo": { + "authority": "sweet", + "id": "sweet.sophatmofo", + "name": "SWEET Ontology Phenomena Atmosphere Fog", + "prefix": "sophatmofo", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenAtmoFog/$1" + }, + "sweet.sophatmofr": { + "authority": "sweet", + "id": "sweet.sophatmofr", + "name": "SWEET Ontology Phenomena Atmosphere Front", + "prefix": "sophatmofr", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenAtmoFront/$1" + }, + "sweet.sophatmol": { + "authority": "sweet", + "id": "sweet.sophatmol", + "name": "SWEET Ontology Phenomena Atmosphere Lightning", + "prefix": "sophatmol", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenAtmoLightning/$1" + }, + "sweet.sophatmopc": { + "authority": "sweet", + "id": "sweet.sophatmopc", + "name": "SWEET Ontology Phenomena Atmosphere Precipitation", + "prefix": "sophatmopc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenAtmoPrecipitation/$1" + }, + "sweet.sophatmops": { + "authority": "sweet", + "id": "sweet.sophatmops", + "name": "SWEET Ontology Phenomena Atmosphere Pressure", + "prefix": "sophatmops", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenAtmoPressure/$1" + }, + "sweet.sophatmos": { + "authority": "sweet", + "id": "sweet.sophatmos", + "name": "SWEET Ontology Phenomena Atmosphere Sky", + "prefix": "sophatmos", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenAtmoSky/$1" + }, + "sweet.sophatmot": { + "authority": "sweet", + "id": "sweet.sophatmot", + "name": "SWEET Ontology Phenomena Atmosphere Transport", + "prefix": "sophatmot", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenAtmoTransport/$1" + }, + "sweet.sophatmow": { + "authority": "sweet", + "id": "sweet.sophatmow", + "name": "SWEET Ontology Phenomena Atmosphere Wind", + "prefix": "sophatmow", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenAtmoWind/$1" + }, + "sweet.sophatmowm": { + "authority": "sweet", + "id": "sweet.sophatmowm", + "name": "SWEET Ontology Phenomena Atmosphere Wind Mesoscale", + "prefix": "sophatmowm", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenAtmoWindMesoscale/$1" + }, + "sweet.sophb": { + "authority": "sweet", + "id": "sweet.sophb", + "name": "SWEET Ontology Phenomena Biology", + "prefix": "sophb", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenBiol/$1" + }, + "sweet.sophcm": { + "authority": "sweet", + "id": "sweet.sophcm", + "name": "SWEET Ontology Phenomena Cycle Material", + "prefix": "sophcm", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenCycleMaterial/$1" + }, + "sweet.sophcr": { + "authority": "sweet", + "id": "sweet.sophcr", + "name": "SWEET Ontology Phenomena Cryosphere", + "prefix": "sophcr", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenCryo/$1" + }, + "sweet.sophcy": { + "authority": "sweet", + "id": "sweet.sophcy", + "name": "SWEET Ontology Phenomena Cycle", + "prefix": "sophcy", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenCycle/$1" + }, + "sweet.sophec": { + "authority": "sweet", + "id": "sweet.sophec", + "name": "SWEET Ontology Phenomena Ecology", + "prefix": "sophec", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenEcology/$1" + }, + "sweet.sophei": { + "authority": "sweet", + "id": "sweet.sophei", + "name": "SWEET Ontology Phenomena Environmental Impact", + "prefix": "sophei", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenEnvirImpact/$1" + }, + "sweet.sophel": { + "authority": "sweet", + "id": "sweet.sophel", + "name": "SWEET Ontology Phenomena ElectroMagnetic", + "prefix": "sophel", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenElecMag/$1" + }, + "sweet.sophen": { + "authority": "sweet", + "id": "sweet.sophen", + "name": "SWEET Ontology Phenomena Energy", + "prefix": "sophen", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenEnergy/$1" + }, + "sweet.sophfd": { + "authority": "sweet", + "id": "sweet.sophfd", + "name": "SWEET Ontology Phenomena Fluid Dynamics", + "prefix": "sophfd", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenFluidDynamics/$1" + }, + "sweet.sophfi": { + "authority": "sweet", + "id": "sweet.sophfi", + "name": "SWEET Ontology Phenomena Fluid Instability", + "prefix": "sophfi", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenFluidInstability/$1" + }, + "sweet.sophft": { + "authority": "sweet", + "id": "sweet.sophft", + "name": "SWEET Ontology Phenomena Fluid Transport", + "prefix": "sophft", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenFluidTransport/$1" + }, + "sweet.sophg": { + "authority": "sweet", + "id": "sweet.sophg", + "name": "SWEET Ontology Phenomena Geologic", + "prefix": "sophg", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenGeol/$1" + }, + "sweet.sophgf": { + "authority": "sweet", + "id": "sweet.sophgf", + "name": "SWEET Ontology Phenomena Geologic Fault", + "prefix": "sophgf", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenGeolFault/$1" + }, + "sweet.sophgg": { + "authority": "sweet", + "id": "sweet.sophgg", + "name": "SWEET Ontology Phenomena Geologic Geomorphology", + "prefix": "sophgg", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenGeolGeomorphology/$1" + }, + "sweet.sophgs": { + "authority": "sweet", + "id": "sweet.sophgs", + "name": "SWEET Ontology Phenomena Geologic Seismicity", + "prefix": "sophgs", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenGeolSeismicity/$1" + }, + "sweet.sophgt": { + "authority": "sweet", + "id": "sweet.sophgt", + "name": "SWEET Ontology Phenomena Geologic Tectonic", + "prefix": "sophgt", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenGeolTectonic/$1" + }, + "sweet.sophgv": { + "authority": "sweet", + "id": "sweet.sophgv", + "name": "SWEET Ontology Phenomena Geologic Volcano", + "prefix": "sophgv", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenGeolVolcano/$1" + }, + "sweet.sophhe": { + "authority": "sweet", + "id": "sweet.sophhe", + "name": "SWEET Ontology Phenomena Heliosphere", + "prefix": "sophhe", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenHelio/$1" + }, + "sweet.sophhy": { + "authority": "sweet", + "id": "sweet.sophhy", + "name": "SWEET Ontology Phenomena Hydrosphere", + "prefix": "sophhy", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenHydro/$1" + }, + "sweet.sophm": { + "authority": "sweet", + "id": "sweet.sophm", + "name": "SWEET Ontology Phenomena Mixing", + "prefix": "sophm", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenMixing/$1" + }, + "sweet.sopho": { + "authority": "sweet", + "id": "sweet.sopho", + "name": "SWEET Ontology Phenomena Ocean", + "prefix": "sopho", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenOcean/$1" + }, + "sweet.sophoc": { + "authority": "sweet", + "id": "sweet.sophoc", + "name": "SWEET Ontology Phenomena Ocean Coastal", + "prefix": "sophoc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenOceanCoastal/$1" + }, + "sweet.sophod": { + "authority": "sweet", + "id": "sweet.sophod", + "name": "SWEET Ontology Phenomena Ocean Dynamics", + "prefix": "sophod", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenOceanDynamics/$1" + }, + "sweet.sophpc": { + "authority": "sweet", + "id": "sweet.sophpc", + "name": "SWEET Ontology Phenomena Planetary Climate", + "prefix": "sophpc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenPlanetClimate/$1" + }, + "sweet.sophr": { + "authority": "sweet", + "id": "sweet.sophr", + "name": "SWEET Ontology Phenomena Reaction", + "prefix": "sophr", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenReaction/$1" + }, + "sweet.sophso": { + "authority": "sweet", + "id": "sweet.sophso", + "name": "SWEET Ontology Phenomena Solid", + "prefix": "sophso", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenSolid/$1" + }, + "sweet.sophst": { + "authority": "sweet", + "id": "sweet.sophst", + "name": "SWEET Ontology Phenomena Star", + "prefix": "sophst", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenStar/$1" + }, + "sweet.sophsy": { + "authority": "sweet", + "id": "sweet.sophsy", + "name": "SWEET Ontology Phenomena System", + "prefix": "sophsy", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenSystem/$1" + }, + "sweet.sophsyc": { + "authority": "sweet", + "id": "sweet.sophsyc", + "name": "SWEET Ontology Phenomena System Complexity", + "prefix": "sophsyc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenSystemComplexity/$1" + }, + "sweet.sophw": { + "authority": "sweet", + "id": "sweet.sophw", + "name": "SWEET Ontology Phenomena Wave", + "prefix": "sophw", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenWave/$1" + }, + "sweet.sophwn": { + "authority": "sweet", + "id": "sweet.sophwn", + "name": "SWEET Ontology Phenomena Wave Noise", + "prefix": "sophwn", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/phenWaveNoise/$1" + }, + "sweet.soproc": { + "authority": "sweet", + "id": "sweet.soproc", + "name": "SWEET Ontology Process", + "prefix": "soproc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/proc/$1" + }, + "sweet.soprocc": { + "authority": "sweet", + "id": "sweet.soprocc", + "name": "SWEET Ontology Process Chemical", + "prefix": "soprocc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/procChemical/$1" + }, + "sweet.soprocp": { + "authority": "sweet", + "id": "sweet.soprocp", + "name": "SWEET Ontology Process Physical", + "prefix": "soprocp", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/procPhysical/$1" + }, + "sweet.soprocsc": { + "authority": "sweet", + "id": "sweet.soprocsc", + "name": "SWEET Ontology Process State Change", + "prefix": "soprocsc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/procStateChange/$1" + }, + "sweet.soprocw": { + "authority": "sweet", + "id": "sweet.soprocw", + "name": "SWEET Ontology Process Wave", + "prefix": "soprocw", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/procWave/$1" + }, + "sweet.soprop": { + "authority": "sweet", + "id": "sweet.soprop", + "name": "SWEET Ontology Property", + "prefix": "soprop", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/prop/$1" + }, + "sweet.sopropb": { + "authority": "sweet", + "id": "sweet.sopropb", + "name": "SWEET Ontology Property Binary", + "prefix": "sopropb", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propBinary/$1" + }, + "sweet.sopropcap": { + "authority": "sweet", + "id": "sweet.sopropcap", + "name": "SWEET Ontology Property Capacity", + "prefix": "sopropcap", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propCapacity/$1" + }, + "sweet.sopropcat": { + "authority": "sweet", + "id": "sweet.sopropcat", + "name": "SWEET Ontology Property Categorical", + "prefix": "sopropcat", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propCategorical/$1" + }, + "sweet.sopropcha": { + "authority": "sweet", + "id": "sweet.sopropcha", + "name": "SWEET Ontology Property Charge", + "prefix": "sopropcha", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propCharge/$1" + }, + "sweet.sopropche": { + "authority": "sweet", + "id": "sweet.sopropche", + "name": "SWEET Ontology Property Chemical", + "prefix": "sopropche", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propChemical/$1" + }, + "sweet.sopropcon": { + "authority": "sweet", + "id": "sweet.sopropcon", + "name": "SWEET Ontology Property Conductivity", + "prefix": "sopropcon", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propConductivity/$1" + }, + "sweet.sopropcou": { + "authority": "sweet", + "id": "sweet.sopropcou", + "name": "SWEET Ontology Property Count", + "prefix": "sopropcou", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propCount/$1" + }, + "sweet.sopropdife": { + "authority": "sweet", + "id": "sweet.sopropdife", + "name": "SWEET Ontology Property Difference", + "prefix": "sopropdife", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propDifference/$1" + }, + "sweet.sopropdifu": { + "authority": "sweet", + "id": "sweet.sopropdifu", + "name": "SWEET Ontology Property Diffusivity", + "prefix": "sopropdifu", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propDiffusivity/$1" + }, + "sweet.sopropdr": { + "authority": "sweet", + "id": "sweet.sopropdr", + "name": "SWEET Ontology Property Dimensionless Ratio", + "prefix": "sopropdr", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propDimensionlessRatio/$1" + }, + "sweet.soprope": { + "authority": "sweet", + "id": "sweet.soprope", + "name": "SWEET Ontology Property Energy", + "prefix": "soprope", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propEnergy/$1" + }, + "sweet.sopropef": { + "authority": "sweet", + "id": "sweet.sopropef", + "name": "SWEET Ontology Property Energy Flux", + "prefix": "sopropef", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propEnergyFlux/$1" + }, + "sweet.sopropfr": { + "authority": "sweet", + "id": "sweet.sopropfr", + "name": "SWEET Ontology Property Fraction", + "prefix": "sopropfr", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propFraction/$1" + }, + "sweet.sopropfu": { + "authority": "sweet", + "id": "sweet.sopropfu", + "name": "SWEET Ontology Property Function", + "prefix": "sopropfu", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propFunction/$1" + }, + "sweet.sopropi": { + "authority": "sweet", + "id": "sweet.sopropi", + "name": "SWEET Ontology Property Index", + "prefix": "sopropi", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propIndex/$1" + }, + "sweet.sopropm": { + "authority": "sweet", + "id": "sweet.sopropm", + "name": "SWEET Ontology Property Mass", + "prefix": "sopropm", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propMass/$1" + }, + "sweet.sopropmf": { + "authority": "sweet", + "id": "sweet.sopropmf", + "name": "SWEET Ontology Property Mass Flux", + "prefix": "sopropmf", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propMassFlux/$1" + }, + "sweet.sopropo": { + "authority": "sweet", + "id": "sweet.sopropo", + "name": "SWEET Ontology Property Ordinal", + "prefix": "sopropo", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propOrdinal/$1" + }, + "sweet.sopropp": { + "authority": "sweet", + "id": "sweet.sopropp", + "name": "SWEET Ontology Property Pressure", + "prefix": "sopropp", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propPressure/$1" + }, + "sweet.sopropq": { + "authority": "sweet", + "id": "sweet.sopropq", + "name": "SWEET Ontology Property Quantity", + "prefix": "sopropq", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propQuantity/$1" + }, + "sweet.sopropr": { + "authority": "sweet", + "id": "sweet.sopropr", + "name": "SWEET Ontology Property Rotation", + "prefix": "sopropr", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propRotation/$1" + }, + "sweet.soprops": { + "authority": "sweet", + "id": "sweet.soprops", + "name": "SWEET Ontology Property Space", + "prefix": "soprops", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propSpace/$1" + }, + "sweet.sopropsdir": { + "authority": "sweet", + "id": "sweet.sopropsdir", + "name": "SWEET Ontology Property Space Direction", + "prefix": "sopropsdir", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propSpaceDirection/$1" + }, + "sweet.sopropsdis": { + "authority": "sweet", + "id": "sweet.sopropsdis", + "name": "SWEET Ontology Property Space Distance", + "prefix": "sopropsdis", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propSpaceDistance/$1" + }, + "sweet.sopropsh": { + "authority": "sweet", + "id": "sweet.sopropsh", + "name": "SWEET Ontology Property Space Height", + "prefix": "sopropsh", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propSpaceHeight/$1" + }, + "sweet.sopropsl": { + "authority": "sweet", + "id": "sweet.sopropsl", + "name": "SWEET Ontology Property Space Location", + "prefix": "sopropsl", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propSpaceLocation/$1" + }, + "sweet.sopropsm": { + "authority": "sweet", + "id": "sweet.sopropsm", + "name": "SWEET Ontology Property Space Multidimensional", + "prefix": "sopropsm", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propSpaceMultidimensional/$1" + }, + "sweet.sopropsp": { + "authority": "sweet", + "id": "sweet.sopropsp", + "name": "SWEET Ontology Property Speed", + "prefix": "sopropsp", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propSpeed/$1" + }, + "sweet.sopropst": { + "authority": "sweet", + "id": "sweet.sopropst", + "name": "SWEET Ontology Property Space Thickness", + "prefix": "sopropst", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propSpaceThickness/$1" + }, + "sweet.sopropt": { + "authority": "sweet", + "id": "sweet.sopropt", + "name": "SWEET Ontology Property Temperature", + "prefix": "sopropt", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propTemperature/$1" + }, + "sweet.soproptf": { + "authority": "sweet", + "id": "sweet.soproptf", + "name": "SWEET Ontology Property Time Frequency", + "prefix": "soproptf", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propTimeFrequency/$1" + }, + "sweet.soproptg": { + "authority": "sweet", + "id": "sweet.soproptg", + "name": "SWEET Ontology Property Temperature Gradient", + "prefix": "soproptg", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propTemperatureGradient/$1" + }, + "sweet.sopropti": { + "authority": "sweet", + "id": "sweet.sopropti", + "name": "SWEET Ontology Property Time", + "prefix": "sopropti", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/propTime/$1" + }, + "sweet.sorea": { + "authority": "sweet", + "id": "sweet.sorea", + "name": "SWEET Ontology Realm", + "prefix": "sorea", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realm/$1" + }, + "sweet.soreaa": { + "authority": "sweet", + "id": "sweet.soreaa", + "name": "SWEET Ontology Realm Atmospheric", + "prefix": "soreaa", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmAtmo/$1" + }, + "sweet.soreaab": { + "authority": "sweet", + "id": "sweet.soreaab", + "name": "SWEET Ontology Realm Astrophysical Body", + "prefix": "soreaab", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmAstroBody/$1" + }, + "sweet.soreaabl": { + "authority": "sweet", + "id": "sweet.soreaabl", + "name": "SWEET Ontology Realm Atmospheric Boundary Layer", + "prefix": "soreaabl", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmAtmoBoundaryLayer/$1" + }, + "sweet.soreaah": { + "authority": "sweet", + "id": "sweet.soreaah", + "name": "SWEET Ontology Realm Astrophysical Heliosphere", + "prefix": "soreaah", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmAstroHelio/$1" + }, + "sweet.soreaas": { + "authority": "sweet", + "id": "sweet.soreaas", + "name": "SWEET Ontology Realm Astrophysical", + "prefix": "soreaas", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmAstroStar/$1" + }, + "sweet.soreaaw": { + "authority": "sweet", + "id": "sweet.soreaaw", + "name": "SWEET Ontology Realm Atmospheric Weather", + "prefix": "soreaaw", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmAtmoWeather/$1" + }, + "sweet.soreabb": { + "authority": "sweet", + "id": "sweet.soreabb", + "name": "SWEET Ontology Realm Biologic Biome", + "prefix": "soreabb", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmBiolBiome/$1" + }, + "sweet.soreac": { + "authority": "sweet", + "id": "sweet.soreac", + "name": "SWEET Ontology Realm Cryosphere", + "prefix": "soreac", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmCryo/$1" + }, + "sweet.soreacz": { + "authority": "sweet", + "id": "sweet.soreacz", + "name": "SWEET Ontology Realm Climate Zone", + "prefix": "soreacz", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmClimateZone/$1" + }, + "sweet.soreaer": { + "authority": "sweet", + "id": "sweet.soreaer", + "name": "SWEET Ontology Realm Earth Reference", + "prefix": "soreaer", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmEarthReference/$1" + }, + "sweet.soreag": { + "authority": "sweet", + "id": "sweet.soreag", + "name": "SWEET Ontology Realm Geologic", + "prefix": "soreag", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmGeol/$1" + }, + "sweet.soreagb": { + "authority": "sweet", + "id": "sweet.soreagb", + "name": "SWEET Ontology Realm Geologic Basin", + "prefix": "soreagb", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmGeolBasin/$1" + }, + "sweet.soreagcons": { + "authority": "sweet", + "id": "sweet.soreagcons", + "name": "SWEET Ontology Realm Geologic Constituent", + "prefix": "soreagcons", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmGeolConstituent/$1" + }, + "sweet.soreagcont": { + "authority": "sweet", + "id": "sweet.soreagcont", + "name": "SWEET Ontology Realm Geologic Continental", + "prefix": "soreagcont", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmGeolContinental/$1" + }, + "sweet.soreagoc": { + "authority": "sweet", + "id": "sweet.soreagoc", + "name": "SWEET Ontology Realm Geologic Oceanic", + "prefix": "soreagoc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmGeolOceanic/$1" + }, + "sweet.soreagor": { + "authority": "sweet", + "id": "sweet.soreagor", + "name": "SWEET Ontology Realm Geologic Orogen", + "prefix": "soreagor", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmGeolOrogen/$1" + }, + "sweet.soreah": { + "authority": "sweet", + "id": "sweet.soreah", + "name": "SWEET Ontology Realm Hydrosphere", + "prefix": "soreah", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmHydro/$1" + }, + "sweet.soreahb": { + "authority": "sweet", + "id": "sweet.soreahb", + "name": "SWEET Ontology Realm Hydrosphere Body", + "prefix": "soreahb", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmHydroBody/$1" + }, + "sweet.soreal": { + "authority": "sweet", + "id": "sweet.soreal", + "name": "SWEET Ontology Realm Landform", + "prefix": "soreal", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmLandform/$1" + }, + "sweet.soreala": { + "authority": "sweet", + "id": "sweet.soreala", + "name": "SWEET Ontology Realm Land Aeolian", + "prefix": "soreala", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmLandAeolian/$1" + }, + "sweet.sorealc": { + "authority": "sweet", + "id": "sweet.sorealc", + "name": "SWEET Ontology Realm Land Coastal", + "prefix": "sorealc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmLandCoastal/$1" + }, + "sweet.sorealf": { + "authority": "sweet", + "id": "sweet.sorealf", + "name": "SWEET Ontology Realm Land Fluvial", + "prefix": "sorealf", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmLandFluvial/$1" + }, + "sweet.sorealg": { + "authority": "sweet", + "id": "sweet.sorealg", + "name": "SWEET Ontology Realm Land Glacial", + "prefix": "sorealg", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmLandGlacial/$1" + }, + "sweet.sorealo": { + "authority": "sweet", + "id": "sweet.sorealo", + "name": "SWEET Ontology Realm Land Orographic", + "prefix": "sorealo", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmLandOrographic/$1" + }, + "sweet.sorealp": { + "authority": "sweet", + "id": "sweet.sorealp", + "name": "SWEET Ontology Realm Land Protected", + "prefix": "sorealp", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmLandProtected/$1" + }, + "sweet.sorealt": { + "authority": "sweet", + "id": "sweet.sorealt", + "name": "SWEET Ontology Realm Land Tectonic", + "prefix": "sorealt", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmLandTectonic/$1" + }, + "sweet.sorealv": { + "authority": "sweet", + "id": "sweet.sorealv", + "name": "SWEET Ontology Realm Land Volcanic", + "prefix": "sorealv", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmLandVolcanic/$1" + }, + "sweet.soreao": { + "authority": "sweet", + "id": "sweet.soreao", + "name": "SWEET Ontology Realm Ocean", + "prefix": "soreao", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmOcean/$1" + }, + "sweet.soreaofe": { + "authority": "sweet", + "id": "sweet.soreaofe", + "name": "SWEET Ontology Realm Ocean Feature", + "prefix": "soreaofe", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmOceanFeature/$1" + }, + "sweet.soreaofl": { + "authority": "sweet", + "id": "sweet.soreaofl", + "name": "SWEET Ontology Realm Ocean Floor", + "prefix": "soreaofl", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmOceanFloor/$1" + }, + "sweet.sorear": { + "authority": "sweet", + "id": "sweet.sorear", + "name": "SWEET Ontology Realm Region", + "prefix": "sorear", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmRegion/$1" + }, + "sweet.soreas": { + "authority": "sweet", + "id": "sweet.soreas", + "name": "SWEET Ontology Realm Soil", + "prefix": "soreas", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/realmSoil/$1" + }, + "sweet.sorel": { + "authority": "sweet", + "id": "sweet.sorel", + "name": "SWEET Ontology Relationships", + "prefix": "sorel", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/rela/$1" + }, + "sweet.sorelch": { + "authority": "sweet", + "id": "sweet.sorelch", + "name": "SWEET Ontology Relationships Chemical", + "prefix": "sorelch", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/relaChemical/$1" + }, + "sweet.sorelcl": { + "authority": "sweet", + "id": "sweet.sorelcl", + "name": "SWEET Ontology Relationships Climate", + "prefix": "sorelcl", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/relaClimate/$1" + }, + "sweet.sorelh": { + "authority": "sweet", + "id": "sweet.sorelh", + "name": "SWEET Ontology Relationships Human", + "prefix": "sorelh", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/relaHuman/$1" + }, + "sweet.sorelm": { + "authority": "sweet", + "id": "sweet.sorelm", + "name": "SWEET Ontology Relationships Mathematical", + "prefix": "sorelm", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/relaMath/$1" + }, + "sweet.sorelph": { + "authority": "sweet", + "id": "sweet.sorelph", + "name": "SWEET Ontology Relationships Physical", + "prefix": "sorelph", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/relaPhysical/$1" + }, + "sweet.sorelpr": { + "authority": "sweet", + "id": "sweet.sorelpr", + "name": "SWEET Ontology Relationships Provenance", + "prefix": "sorelpr", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/relaProvenance/$1" + }, + "sweet.sorelsc": { + "authority": "sweet", + "id": "sweet.sorelsc", + "name": "SWEET Ontology Relationships Scientific", + "prefix": "sorelsc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/relaSci/$1" + }, + "sweet.sorelsp": { + "authority": "sweet", + "id": "sweet.sorelsp", + "name": "SWEET Ontology Relationships Space", + "prefix": "sorelsp", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/relaSpace/$1" + }, + "sweet.sorelt": { + "authority": "sweet", + "id": "sweet.sorelt", + "name": "SWEET Ontology Relationships Time", + "prefix": "sorelt", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/relaTime/$1" + }, + "sweet.sorep": { + "authority": "sweet", + "id": "sweet.sorep", + "name": "SWEET Ontology Representation", + "prefix": "sorep", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/repr/$1" + }, + "sweet.sorepdf": { + "authority": "sweet", + "id": "sweet.sorepdf", + "name": "SWEET Ontology Representation Data Format", + "prefix": "sorepdf", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprDataFormat/$1" + }, + "sweet.sorepdm": { + "authority": "sweet", + "id": "sweet.sorepdm", + "name": "SWEET Ontology Representation Data Model", + "prefix": "sorepdm", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprDataModel/$1" + }, + "sweet.sorepdp": { + "authority": "sweet", + "id": "sweet.sorepdp", + "name": "SWEET Ontology Representation Data Product", + "prefix": "sorepdp", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprDataProduct/$1" + }, + "sweet.sorepds": { + "authority": "sweet", + "id": "sweet.sorepds", + "name": "SWEET Ontology Representation Data Service", + "prefix": "sorepds", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprDataService/$1" + }, + "sweet.sorepdsa": { + "authority": "sweet", + "id": "sweet.sorepdsa", + "name": "SWEET Ontology Representation Data Servcie Analysis", + "prefix": "sorepdsa", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprDataServiceAnalysis/$1" + }, + "sweet.sorepdsg": { + "authority": "sweet", + "id": "sweet.sorepdsg", + "name": "SWEET Ontology Representation Data Service Geospatial", + "prefix": "sorepdsg", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprDataServiceGeospatial/$1" + }, + "sweet.sorepdsr": { + "authority": "sweet", + "id": "sweet.sorepdsr", + "name": "SWEET Ontology Representation Data Service Reduction", + "prefix": "sorepdsr", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprDataServiceReduction/$1" + }, + "sweet.sorepdsv": { + "authority": "sweet", + "id": "sweet.sorepdsv", + "name": "SWEET Ontology Representation Data Service Validation", + "prefix": "sorepdsv", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprDataServiceValidation/$1" + }, + "sweet.sorepm": { + "authority": "sweet", + "id": "sweet.sorepm", + "name": "SWEET Ontology Representation Mathematics", + "prefix": "sorepm", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprMath/$1" + }, + "sweet.sorepmf": { + "authority": "sweet", + "id": "sweet.sorepmf", + "name": "SWEET Ontology Representation Mathematics Function", + "prefix": "sorepmf", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprMathFunction/$1" + }, + "sweet.sorepmfo": { + "authority": "sweet", + "id": "sweet.sorepmfo", + "name": "SWEET Ontology Representation Mathematics Function Orthogonal", + "prefix": "sorepmfo", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprMathFunctionOrthogonal/$1" + }, + "sweet.sorepmg": { + "authority": "sweet", + "id": "sweet.sorepmg", + "name": "SWEET Ontology Representation Mathematics Graph", + "prefix": "sorepmg", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprMathGraph/$1" + }, + "sweet.sorepmo": { + "authority": "sweet", + "id": "sweet.sorepmo", + "name": "SWEET Ontology Representation Mathematics Operation", + "prefix": "sorepmo", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprMathOperation/$1" + }, + "sweet.sorepmso": { + "authority": "sweet", + "id": "sweet.sorepmso", + "name": "SWEET Ontology Representation Mathematics Solution", + "prefix": "sorepmso", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprMathSolution/$1" + }, + "sweet.sorepmst": { + "authority": "sweet", + "id": "sweet.sorepmst", + "name": "SWEET Ontology Representation Mathematics Statistics", + "prefix": "sorepmst", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprMathStatistics/$1" + }, + "sweet.soreps": { + "authority": "sweet", + "id": "sweet.soreps", + "name": "SWEET Ontology Representation Space", + "prefix": "soreps", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprSpace/$1" + }, + "sweet.sorepsc": { + "authority": "sweet", + "id": "sweet.sorepsc", + "name": "SWEET Ontology Representation Scientific Component", + "prefix": "sorepsc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprSciComponent/$1" + }, + "sweet.sorepscd": { + "authority": "sweet", + "id": "sweet.sorepscd", + "name": "SWEET Ontology Representation Space Coordinate", + "prefix": "sorepscd", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprSpaceCoordinate/$1" + }, + "sweet.sorepsd": { + "authority": "sweet", + "id": "sweet.sorepsd", + "name": "SWEET Ontology Representation Space Direction", + "prefix": "sorepsd", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprSpaceDirection/$1" + }, + "sweet.sorepsf": { + "authority": "sweet", + "id": "sweet.sorepsf", + "name": "SWEET Ontology Representation Scientific Function", + "prefix": "sorepsf", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprSciFunction/$1" + }, + "sweet.sorepsg": { + "authority": "sweet", + "id": "sweet.sorepsg", + "name": "SWEET Ontology Representation Space Geometry", + "prefix": "sorepsg", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprSpaceGeometry/$1" + }, + "sweet.sorepsg3": { + "authority": "sweet", + "id": "sweet.sorepsg3", + "name": "SWEET Ontology Representation Space Geometry 3D", + "prefix": "sorepsg3", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprSpaceGeometry3D/$1" + }, + "sweet.sorepsl": { + "authority": "sweet", + "id": "sweet.sorepsl", + "name": "SWEET Ontology Representation Scientific Law", + "prefix": "sorepsl", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprSciLaw/$1" + }, + "sweet.sorepsme": { + "authority": "sweet", + "id": "sweet.sorepsme", + "name": "SWEET Ontology Representation Representation Scientific Methodology", + "prefix": "sorepsme", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprSciMethodology/$1" + }, + "sweet.sorepsmo": { + "authority": "sweet", + "id": "sweet.sorepsmo", + "name": "SWEET Ontology Representation Scientific Model", + "prefix": "sorepsmo", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprSciModel/$1" + }, + "sweet.sorepsp": { + "authority": "sweet", + "id": "sweet.sorepsp", + "name": "SWEET Ontology Representation Science Provenance", + "prefix": "sorepsp", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprSciProvenance/$1" + }, + "sweet.sorepsrs": { + "authority": "sweet", + "id": "sweet.sorepsrs", + "name": "SWEET Ontology Representation Space Reference System", + "prefix": "sorepsrs", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprSpaceReferenceSystem/$1" + }, + "sweet.sorepsu": { + "authority": "sweet", + "id": "sweet.sorepsu", + "name": "SWEET Ontology Representation Scientific Units", + "prefix": "sorepsu", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprSciUnits/$1" + }, + "sweet.sorept": { + "authority": "sweet", + "id": "sweet.sorept", + "name": "SWEET Ontology Representation Time", + "prefix": "sorept", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprTime/$1" + }, + "sweet.soreptd": { + "authority": "sweet", + "id": "sweet.soreptd", + "name": "SWEET Ontology Representation Time Day", + "prefix": "soreptd", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprTimeDay/$1" + }, + "sweet.sorepts": { + "authority": "sweet", + "id": "sweet.sorepts", + "name": "SWEET Ontology Representation Time Season", + "prefix": "sorepts", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/reprTimeSeason/$1" + }, + "sweet.sost": { + "authority": "sweet", + "id": "sweet.sost", + "name": "SWEET Ontology State", + "prefix": "sost", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/state/$1" + }, + "sweet.sostb": { + "authority": "sweet", + "id": "sweet.sostb", + "name": "SWEET Ontology State Biological", + "prefix": "sostb", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateBiological/$1" + }, + "sweet.sostc": { + "authority": "sweet", + "id": "sweet.sostc", + "name": "SWEET Ontology State Chemical", + "prefix": "sostc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateChemical/$1" + }, + "sweet.sostdp": { + "authority": "sweet", + "id": "sweet.sostdp", + "name": "SWEET Ontology State Data Processing", + "prefix": "sostdp", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateDataProcessing/$1" + }, + "sweet.sostef": { + "authority": "sweet", + "id": "sweet.sostef", + "name": "SWEET Ontology State Energy Flux", + "prefix": "sostef", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateEnergyFlux/$1" + }, + "sweet.sostf": { + "authority": "sweet", + "id": "sweet.sostf", + "name": "SWEET Ontology State Fluid", + "prefix": "sostf", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateFluid/$1" + }, + "sweet.sosto": { + "authority": "sweet", + "id": "sweet.sosto", + "name": "SWEET Ontology State Ordinal", + "prefix": "sosto", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateOrdinal/$1" + }, + "sweet.sostp": { + "authority": "sweet", + "id": "sweet.sostp", + "name": "SWEET Ontology State Physical", + "prefix": "sostp", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/statePhysical/$1" + }, + "sweet.sostrb": { + "authority": "sweet", + "id": "sweet.sostrb", + "name": "SWEET Ontology State Role Biological", + "prefix": "sostrb", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateRoleBiological/$1" + }, + "sweet.sostrc": { + "authority": "sweet", + "id": "sweet.sostrc", + "name": "SWEET Ontology State Role Chemical", + "prefix": "sostrc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateRoleChemical/$1" + }, + "sweet.sostre": { + "authority": "sweet", + "id": "sweet.sostre", + "name": "SWEET Ontology State Realm", + "prefix": "sostre", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateRealm/$1" + }, + "sweet.sostrg": { + "authority": "sweet", + "id": "sweet.sostrg", + "name": "SWEET Ontology State Role Geographic", + "prefix": "sostrg", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateRoleGeographic/$1" + }, + "sweet.sostri": { + "authority": "sweet", + "id": "sweet.sostri", + "name": "SWEET Ontology State Role Impact", + "prefix": "sostri", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateRoleImpact/$1" + }, + "sweet.sostro": { + "authority": "sweet", + "id": "sweet.sostro", + "name": "SWEET Ontology State Role", + "prefix": "sostro", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateRole/$1" + }, + "sweet.sostrr": { + "authority": "sweet", + "id": "sweet.sostrr", + "name": "SWEET Ontology State Role Representative", + "prefix": "sostrr", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateRoleRepresentative/$1" + }, + "sweet.sostrt": { + "authority": "sweet", + "id": "sweet.sostrt", + "name": "SWEET Ontology State Role Trust", + "prefix": "sostrt", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateRoleTrust/$1" + }, + "sweet.sostsb": { + "authority": "sweet", + "id": "sweet.sostsb", + "name": "SWEET Ontology State Spectral Band", + "prefix": "sostsb", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateSpectralBand/$1" + }, + "sweet.sostsc": { + "authority": "sweet", + "id": "sweet.sostsc", + "name": "SWEET Ontology State Space Configuration", + "prefix": "sostsc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateSpaceConfiguration/$1" + }, + "sweet.sostsl": { + "authority": "sweet", + "id": "sweet.sostsl", + "name": "SWEET Ontology State Spectral Line", + "prefix": "sostsl", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateSpectralLine/$1" + }, + "sweet.sostso": { + "authority": "sweet", + "id": "sweet.sostso", + "name": "SWEET Ontology State Solid", + "prefix": "sostso", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateSolid/$1" + }, + "sweet.sostsp": { + "authority": "sweet", + "id": "sweet.sostsp", + "name": "SWEET Ontology State Space", + "prefix": "sostsp", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateSpace/$1" + }, + "sweet.sostss": { + "authority": "sweet", + "id": "sweet.sostss", + "name": "SWEET Ontology State Space Scale", + "prefix": "sostss", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateSpaceScale/$1" + }, + "sweet.sostst": { + "authority": "sweet", + "id": "sweet.sostst", + "name": "SWEET Ontology State Storm", + "prefix": "sostst", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateStorm/$1" + }, + "sweet.sostsy": { + "authority": "sweet", + "id": "sweet.sostsy", + "name": "SWEET Ontology State System", + "prefix": "sostsy", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateSystem/$1" + }, + "sweet.sosttc": { + "authority": "sweet", + "id": "sweet.sosttc", + "name": "SWEET Ontology State Time Cycle", + "prefix": "sosttc", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateTimeCycle/$1" + }, + "sweet.sosttf": { + "authority": "sweet", + "id": "sweet.sosttf", + "name": "SWEET Ontology State Time Frequency", + "prefix": "sosttf", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateTimeFrequency/$1" + }, + "sweet.sosttg": { + "authority": "sweet", + "id": "sweet.sosttg", + "name": "SWEET Ontology State Time Geologic", + "prefix": "sosttg", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateTimeGeologic/$1" + }, + "sweet.sostth": { + "authority": "sweet", + "id": "sweet.sostth", + "name": "SWEET Ontology State Thermodynamic", + "prefix": "sostth", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateThermodynamic/$1" + }, + "sweet.sostti": { + "authority": "sweet", + "id": "sweet.sostti", + "name": "SWEET Ontology State Time", + "prefix": "sostti", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateTime/$1" + }, + "sweet.sostv": { + "authority": "sweet", + "id": "sweet.sostv", + "name": "SWEET Ontology State Visibility", + "prefix": "sostv", + "source": "sweetontology.net", + "subjects": [ + "earth and related environmental sciences" + ], + "uri_format": "http://sweetontology.net/stateVisibility/$1" + } +} diff --git a/fuji_server/data/metadata_standards.json b/fuji_server/data/metadata_standards.json index 8c468e80..8d807fe8 100644 --- a/fuji_server/data/metadata_standards.json +++ b/fuji_server/data/metadata_standards.json @@ -1 +1,6720 @@ -{"abcd-access-biological-collection-data": {"title": "ABCD (Access to Biological Collection Data)", "identifier": [{"value": "msc:m1", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.kr3215", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data", "type": "local"}, {"value": "http://wiki.tdwg.org/ABCD", "type": "homepage"}, {"value": "https://abcd.tdwg.org/xml/ABCD_3.0.xsd", "type": "schema"}, {"value": "http://www.tdwg.org/schemas/abcd/3.0", "type": "namespace"}, {"value": "https://abcd.tdwg.org/xml/ABCD_2.1.xsd", "type": "schema"}, {"value": "http://www.tdwg.org/schemas/abcd/2.1", "type": "namespace"}, {"value": "https://abcd.tdwg.org/xml/ABCD_2.06.xsd", "type": "schema"}, {"value": "http://www.tdwg.org/schemas/abcd/2.06", "type": "namespace"}], "urls": ["msc:m1", "https://doi.org/10.25504/FAIRsharing.kr3215", "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data", "http://www.tdwg.org/standards/115/", "http://wiki.tdwg.org/ABCD", "https://abcd.tdwg.org/xml/ABCD_3.0.xsd", "http://www.tdwg.org/schemas/abcd/3.0", "https://abcd.tdwg.org/xml/ABCD_2.1.xsd", "http://www.tdwg.org/schemas/abcd/2.1", "https://abcd.tdwg.org/xml/ABCD_2.06.xsd", "http://www.tdwg.org/schemas/abcd/2.06", "msc:g11", "msc:g44", "msc:g45"], "subject_areas": ["Biological diversity", "Botany", "Earth sciences", "Genetics", "Geology", "Palaeontology", "Zoology"], "field_of_science": ["genetics", "biological sciences", "earth and related environmental sciences", "zoology", "palaeontology", "botany", "geology", "natural sciences"], "acronym": "ABCD"}, "abcddna": {"title": "ABCDDNA", "identifier": [{"value": "msc:m42", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.7tx4ac", "type": "local"}, {"value": "http://www.tdwg.org/standards/640/", "type": "homepage"}, {"value": "http://www.dnabank-network.org/schemas/ABCDDNA/ABCDDNA.xsd", "type": "schema"}, {"value": "http://www.dnabank-network.org/schemas/ABCDDNA", "type": "namespace"}], "urls": ["msc:m42", "https://doi.org/10.25504/FAIRsharing.7tx4ac", "http://www.tdwg.org/standards/640/", "http://www.dnabank-network.org/schemas/ABCDDNA/ABCDDNA.xsd", "http://www.dnabank-network.org/schemas/ABCDDNA", "msc:m1"], "subject_areas": ["Genetics"], "field_of_science": ["genetics", "natural sciences"], "acronym": "ABCDDNA"}, "abcdefg-access-biological-collection-databases-extended-geosciences": {"title": "ABCDEFG (Access to Biological Collection Databases Extended for Geosciences)", "identifier": [{"value": "msc:m43", "type": "local"}, {"value": "https://fairsharing.org/1396", "type": "local"}, {"value": "http://www.geocase.eu/efg", "type": "homepage"}, {"value": "http://www.geocase.eu/sites/geocase.biodiv.naturkundemuseum-berlin.de/documentation/abcdefg.xsd", "type": "schema"}, {"value": "http://www.synthesys.info/ABCDEFG/1.0", "type": "namespace"}], "urls": ["msc:m43", "https://fairsharing.org/1396", "http://www.geocase.eu/efg", "http://www.geocase.eu/sites/geocase.biodiv.naturkundemuseum-berlin.de/documentation/abcdefg.xsd", "http://www.synthesys.info/ABCDEFG/1.0", "msc:m1"], "subject_areas": ["Earth sciences", "Mineralogy", "Palaeontology"], "field_of_science": ["mineralogy", "earth and related environmental sciences", "palaeontology", "natural sciences"], "acronym": "ABCDEFG"}, "agls-metadata-profile": {"title": "AGLS Metadata Profile", "identifier": [{"value": "msc:m44", "type": "local"}, {"value": "https://fairsharing.org/751", "type": "local"}, {"value": "http://www.agls.gov.au", "type": "homepage"}, {"value": "http://www.agls.gov.au/agls/terms/", "type": "namespace"}], "urls": ["msc:m44", "https://fairsharing.org/751", "http://www.agls.gov.au", "http://www.agls.gov.au/agls/terms/", "msc:m15"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "AGLS"}, "agmes-agricultural-metadata-element-set": {"title": "AgMES (Agricultural Metadata Element Set)", "identifier": [{"value": "msc:m2", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.vd694s", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/agmes-agricultural-metadata-element-set", "type": "local"}, {"value": "http://aims.fao.org/standards/agmes", "type": "homepage"}, {"value": "http://purl.org/agmes/1.1/", "type": "namespace"}], "urls": ["msc:m2", "https://doi.org/10.25504/FAIRsharing.vd694s", "http://www.dcc.ac.uk/resources/metadata-standards/agmes-agricultural-metadata-element-set", "http://aims.fao.org/es/standards/agmes/namespace-specification", "http://aims.fao.org/standards/agmes", "http://purl.org/agmes/1.1/", "msc:g2", "http://purl.org/agmes/1.1/"], "subject_areas": ["Agricultural economics", "Agriculture", "Aquaculture", "Livestock"], "field_of_science": ["animal and dairy science", "fisheries", "agricultural sciences", "agriculture"], "acronym": "AgMES"}, "agris-application-profile": {"title": "AGRIS Application Profile", "identifier": [{"value": "msc:m45", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.32e620", "type": "local"}, {"value": "http://www.fao.org/docrep/008/ae909e/ae909e00.htm", "type": "homepage"}, {"value": "http://www.fao.org/agris", "type": "namespace"}], "urls": ["msc:m45", "https://doi.org/10.25504/FAIRsharing.32e620", "http://www.fao.org/docrep/008/ae909e/ae909e00.htm", "http://www.fao.org/agris", "msc:m2", "msc:m15"], "subject_areas": ["Agricultural economics", "Agriculture", "Aquaculture", "Livestock"], "field_of_science": ["animal and dairy science", "fisheries", "agricultural sciences", "agriculture"], "acronym": "AGRIS"}, "amf-academic-metadata-format": {"title": "Academic Metadata Format", "identifier": [{"value": "fuji:m25", "type": "local"}, {"value": "https://fairsharing.org/4646", "type": "local"}, {"value": "http://amf.openlib.org", "type": "namespace"}, {"value": "http://amf.openlib.org", "type": "homepage"}, {"value": "http://amf.openlib.org/2001/amf.xsd", "type": "schema"}], "urls": ["fuji:m25", "https://fairsharing.org/4646", "http://openlib.org/home/krichel/ebisu.html", "http://amf.openlib.org", "http://amf.openlib.org", "http://amf.openlib.org/2001/amf.xsd"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "AMF"}, "anzlic-metadata-profile": {"title": "ANZLIC Metadata Profile", "identifier": [{"value": "msc:m46", "type": "local"}, {"value": "https://fairsharing.org/820", "type": "local"}, {"value": "https://www.anzlic.gov.au/resources/anzlic-metadata-profile", "type": "homepage"}], "urls": ["msc:m46", "https://fairsharing.org/820", "https://www.anzlic.gov.au/resources/anzlic-metadata-profile", "msc:m15", "msc:m22"], "subject_areas": ["Cartography", "Geography", "Topography"], "field_of_science": ["cartography", "physical geography", "natural sciences"], "acronym": "ANZLIC"}, "apple-core": {"title": "Apple Core", "identifier": [{"value": "msc:m47", "type": "local"}, {"value": "https://fairsharing.org/726", "type": "local"}, {"value": "http://code.google.com/p/applecore/wiki/Introduction", "type": "homepage"}], "urls": ["msc:m47", "https://fairsharing.org/726", "http://code.google.com/p/applecore/wiki/Introduction", "msc:m9"], "subject_areas": ["Botany"], "field_of_science": ["botany", "natural sciences"], "acronym": "aDwC"}, "ariadne-dataset-catalogue-model": {"title": "ARIADNE Dataset Catalogue Model (ACDM)", "identifier": [{"value": "fuji:m19", "type": "local"}, {"value": "https://fairsharing.org/4647", "type": "local"}, {"value": "http://ariadne-registry.dcu.gr/schema_definition/6.7/acdm.xsd", "type": "schema"}, {"value": "http://ariadne-registry.dcu.gr/schema_definition/6.8/acdm.xsd", "type": "schema"}, {"value": "http://ariadne-registry.dcu.gr/schema_definition/6.9/acdm.xsd", "type": "schema"}, {"value": "http://ariadne-registry.dcu.gr/schema_definition/sample_ariadne_xml.xsd", "type": "schema"}, {"value": "http://ariadne-registry.dcu.gr/schema-definition/sample_ariadne_xml.xsd", "type": "schema"}, {"value": "http://registry.ariadne-infrastructure.eu/", "type": "namespace"}, {"value": "https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/", "type": "namespace"}, {"value": "https://www.ariadne-infrastructure.eu/resource/ao/", "type": "namespace"}, {"value": "http://ariadne-registry.dcu.gr/schema-definition", "type": "namespace"}, {"value": "http://ariadne-registry.dcu.gr/", "type": "homepage"}], "urls": ["fuji:m19", "https://fairsharing.org/4647", "http://ariadne-registry.dcu.gr/schema_definition/6.7/acdm.xsd", "http://ariadne-registry.dcu.gr/schema_definition/6.8/acdm.xsd", "http://ariadne-registry.dcu.gr/schema_definition/6.9/acdm.xsd", "http://ariadne-registry.dcu.gr/schema_definition/sample_ariadne_xml.xsd", "http://ariadne-registry.dcu.gr/schema-definition/sample_ariadne_xml.xsd", "http://registry.ariadne-infrastructure.eu/", "https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/", "https://www.ariadne-infrastructure.eu/resource/ao/", "http://ariadne-registry.dcu.gr/schema-definition", "http://ariadne-registry.dcu.gr/"], "subject_areas": ["Archaeology"], "field_of_science": ["archaeology", "humanities"], "acronym": "ACDM"}, "asset-description-metadata-schema-adms": {"title": "Asset Description Metadata Schema (ADMS)", "identifier": [{"value": "msc:m48", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.es2t25", "type": "local"}, {"value": "http://www.w3.org/TR/vocab-adms/", "type": "homepage"}, {"value": "http://www.w3.org/ns/adms#", "type": "namespace"}], "urls": ["msc:m48", "https://doi.org/10.25504/FAIRsharing.es2t25", "http://www.w3.org/TR/vocab-adms/", "http://www.w3.org/ns/adms#", "msc:m12"], "subject_areas": ["Social policy"], "field_of_science": ["political sciences", "social sciences"], "acronym": "ADMS"}, "atom-syndication-format": {"title": "The Atom Syndication Format", "identifier": [{"value": "fuji:m13", "type": "local"}, {"value": "https://fairsharing.org/4648", "type": "local"}, {"value": "https://www.w3.org/2005/Atom", "type": "namespace"}, {"value": "http://www.w3.org/2005/Atom", "type": "namespace"}, {"value": "https://datatracker.ietf.org/wg/atompub/about/", "type": "homepage"}], "urls": ["fuji:m13", "https://fairsharing.org/4648", "https://www.w3.org/2005/Atom", "http://www.w3.org/2005/Atom", "https://datatracker.ietf.org/wg/atompub/about/", "https://datatracker.ietf.org/doc/html/rfc4287"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "ATOM"}, "avm-astronomy-visualization-metadata": {"title": "AVM (Astronomy Visualization Metadata)", "identifier": [{"value": "msc:m3", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.338ze0", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/avm-astronomy-visualization-metadata", "type": "local"}, {"value": "http://www.virtualastronomy.org/avm_metadata.php", "type": "homepage"}, {"value": "http://www.communicatingastronomy.org/avm/1.0/", "type": "namespace"}], "urls": ["msc:m3", "https://doi.org/10.25504/FAIRsharing.338ze0", "http://www.dcc.ac.uk/resources/metadata-standards/avm-astronomy-visualization-metadata", "http://www.virtualastronomy.org/avm_metadata.php#2", "http://www.virtualastronomy.org/avm_metadata.php", "http://www.communicatingastronomy.org/avm/1.0/", "msc:g88"], "subject_areas": ["Astronomy"], "field_of_science": ["astronomy", "natural sciences"], "acronym": "AVM"}, "bibtex-format": {"title": "BibTeX", "identifier": [{"value": "fuji:m34", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.bdf2fe", "type": "local"}, {"value": "http://www.bibtex.org/", "type": "homepage"}, {"value": "http://clarin-pl.eu/ns/experimental/bibtex", "type": "namespace"}, {"value": "http://lindat.mff.cuni.cz/ns/experimental/bibtex", "type": "namespace"}, {"value": "http://repository.clarin.dk/ns/experimental/bibtex", "type": "namespace"}], "urls": ["fuji:m34", "https://doi.org/10.25504/FAIRsharing.bdf2fe", "http://www.bibtex.org/", "http://clarin-pl.eu/ns/experimental/bibtex", "http://lindat.mff.cuni.cz/ns/experimental/bibtex", "http://repository.clarin.dk/ns/experimental/bibtex"], "subject_areas": null, "field_of_science": [], "acronym": "BibTeX"}, "carare-metadata-schema": {"title": "CARARE metadata schema", "identifier": [{"value": "msc:m49", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.ba7c93", "type": "local"}, {"value": "https://pro.carare.eu/doku.php?id=support:metadata-schema", "type": "homepage"}, {"value": "http://www.carare.eu/carareSchema", "type": "namespace"}, {"value": "https://pro.carare.eu/lib/exe/fetch.php?media=support:carare-v1_0_6_1.xsd", "type": "schema"}], "urls": ["msc:m49", "https://doi.org/10.25504/FAIRsharing.ba7c93", "https://pro.carare.eu/doku.php?id=support:metadata-schema", "http://www.carare.eu/carareSchema", "https://pro.carare.eu/lib/exe/fetch.php?media=support:carare-v1_0_6_1.xsd", "msc:m24"], "subject_areas": ["Archaeology", "Architecture", "Cultural heritage", "Cultural property preservation", "History"], "field_of_science": ["architectural design", "archaeology", "history", "humanities"], "acronym": "CARARE"}, "cdwa-lite-schema": {"title": "CDWA Lite", "identifier": [{"value": "fuji:m30", "type": "local"}, {"value": "https://fairsharing.org/4649", "type": "local"}, {"value": "https://www.getty.edu/research/publications/electronic_publications/cdwa/cdwalite.html", "type": "homepage"}, {"value": "https://www.getty.edu/CDWA/CDWALite", "type": "namespace"}, {"value": "http://www.getty.edu/CDWA/CDWALite/CDWALite-xsd-public-v1-1.xsd", "type": "schema"}, {"value": "http://www.getty.edu/CDWA/CDWALite/CDWALite-xsd-public-v1-0.xsd", "type": "schema"}], "urls": ["fuji:m30", "https://fairsharing.org/4649", "https://www.getty.edu/research/publications/electronic_publications/cdwa/cdwalite.pdf", "https://www.getty.edu/research/publications/electronic_publications/cdwa/cdwalite.html", "https://www.getty.edu/CDWA/CDWALite", "http://www.getty.edu/CDWA/CDWALite/CDWALite-xsd-public-v1-1.xsd", "http://www.getty.edu/CDWA/CDWALite/CDWALite-xsd-public-v1-0.xsd"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "cdwa-lite"}, "cedar-template-model": {"title": "CEDAR Template Model", "identifier": [{"value": "msc:m94", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.V527H4", "type": "local"}, {"value": "https://more.metadatacenter.org/tools-training/outreach/cedar-template-model", "type": "homepage"}], "urls": ["msc:m94", "https://doi.org/10.25504/FAIRsharing.V527H4", "https://more.metadatacenter.org/tools-training/outreach/cedar-template-model", "https://more.metadatacenter.org/sites/default/files/artifact/CEDAR%20Template%20Model%20v1.5.0_0.pdf"], "subject_areas": ["Administration", "Agricultural research", "Clinical medicine", "Earth sciences", "Medical information systems"], "field_of_science": ["medical engineering", "agriculture", "earth and related environmental sciences", "medical and health sciences", "natural sciences", "public administration", "engineering and technology", "agricultural sciences", "social sciences", "clinical medicine"], "acronym": "CEDAR"}, "cerif": {"title": "CERIF (Common European Research Information Format)", "identifier": [{"value": "msc:m4", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.6945dq", "type": "local"}, {"value": "http://www.eurocris.org/cerif/main-features-cerif", "type": "homepage"}, {"value": "https://www.eurocris.org/Uploads/Web%20pages/CERIF-1.6/CERIF_1.6_2.xsd", "type": "schema"}, {"value": "https://www.eurocris.org/Uploads/Web%20pages/CERIF-1.5/CERIF_1.5_1.xsd", "type": "schema"}, {"value": "https://www.openaire.eu/schema/cris/1.1/openaire-cerif-profile.xsd", "type": "schema"}, {"value": "urn:xmlns:org:eurocris:cerif-1.6-2", "type": "namespace"}, {"value": "urn:xmlns:org:eurocris:cerif-1.5-1", "type": "namespace"}, {"value": "urn:xmlns:org:eurocris:cerif-1.4-0", "type": "namespace"}, {"value": "http://www.eurocris.org/ontologies/cerif/1.3#", "type": "namespace"}, {"value": "https://www.openaire.eu/cerif-profile/1.1/", "type": "namespace"}], "urls": ["msc:m4", "https://doi.org/10.25504/FAIRsharing.6945dq", "http://www.eurocris.org/Uploads/Web%20pages/CERIF-1.6/documentation/MInfo.html", "http://www.eurocris.org/cerif/main-features-cerif", "https://www.eurocris.org/Uploads/Web%20pages/CERIF-1.6/CERIF_1.6_2.xsd", "https://www.eurocris.org/Uploads/Web%20pages/CERIF-1.5/CERIF_1.5_1.xsd", "https://www.openaire.eu/schema/cris/1.1/openaire-cerif-profile.xsd", "urn:xmlns:org:eurocris:cerif-1.6-2", "urn:xmlns:org:eurocris:cerif-1.5-1", "urn:xmlns:org:eurocris:cerif-1.4-0", "http://www.eurocris.org/ontologies/cerif/1.3#", "https://www.openaire.eu/cerif-profile/1.1/", "msc:g112", "msc:g99", "msc:g100"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "CERIF"}, "cessda-mli-council-european-social-science-data-archives-minimum-level-inf": {"title": "CESSDA MLI - Council of European Social Science Data Archives Minimum Level of Information", "identifier": [{"value": "msc:m50", "type": "local"}, {"value": "https://fairsharing.org/4272", "type": "local"}, {"value": "http://www.cessda.org/sharing/managing/3/", "type": "homepage"}], "urls": ["msc:m50", "https://fairsharing.org/4272", "http://www.cessda.org/sharing/managing/3/", "msc:m13"], "subject_areas": ["Demography", "Economics", "Land use", "Sociology"], "field_of_science": ["economics", "social geography", "sociology", "demography", "social sciences"], "acronym": null}, "cf-climate-and-forecast-metadata-conventions": {"title": "CF (Climate and Forecast) Metadata Conventions", "identifier": [{"value": "msc:m5", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.f8cd83", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions", "type": "local"}, {"value": "http://cfconventions.org/", "type": "homepage"}], "urls": ["msc:m5", "https://doi.org/10.25504/FAIRsharing.f8cd83", "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions", "http://cfconventions.org/documents.html", "http://cfconventions.org/", "msc:g7", "msc:g13", "msc:g68", "msc:g74", "msc:g80", "msc:g83", "msc:g92"], "subject_areas": ["Climatology", "Meteorology", "Oceanography"], "field_of_science": ["climatology", "meteorology", "oceanography", "natural sciences"], "acronym": "CF"}, "chardm-astronomical-dataset-characterisation": {"title": "CharDM, Data Model for Astronomical DataSet Characterisation", "identifier": [{"value": "fuji:m29", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.yYjZWb", "type": "local"}, {"value": "https://www.ivoa.net/documents/cover/CharacterisationDM-20070530.html", "type": "homepage"}, {"value": "http://www.ivoa.net/xml/Characterisation/Characterisation-v1.11.xsd", "type": "schema"}], "urls": ["fuji:m29", "https://doi.org/10.25504/FAIRsharing.yYjZWb", "https://www.ivoa.net/documents/cover/CharacterisationDM-20070530.html", "http://www.ivoa.net/xml/Characterisation/Characterisation-v1.11.xsd"], "subject_areas": null, "field_of_science": [], "acronym": "CharDM"}, "cif-crystallographic-information-framework": {"title": "CIF (Crystallographic Information Framework)", "identifier": [{"value": "msc:m6", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.zr52g5", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/cif-crystallographic-information-framework", "type": "local"}, {"value": "http://www.iucr.org/resources/cif", "type": "homepage"}], "urls": ["msc:m6", "https://doi.org/10.25504/FAIRsharing.zr52g5", "http://www.dcc.ac.uk/resources/metadata-standards/cif-crystallographic-information-framework", "http://www.iucr.org/resources/cif/spec", "http://www.iucr.org/resources/cif", "msc:g3", "msc:g14", "msc:g27"], "subject_areas": ["Chemistry", "Crystallography", "Materials engineering"], "field_of_science": ["materials engineering", "chemical sciences", "crystallography", "engineering and technology", "natural sciences"], "acronym": "CIF"}, "cim-common-information-model": {"title": "CIM (Common Information Model)", "identifier": [{"value": "msc:m7", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.k3z4q9", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/cim-common-information-model", "type": "local"}, {"value": "https://earthsystemcog.org/projects/es-doc-models/cim", "type": "homepage"}, {"value": "https://github.com/ES-DOC/esdoc-cim/blob/v1.10.0/cim.xsd", "type": "schema"}], "urls": ["msc:m7", "https://doi.org/10.25504/FAIRsharing.k3z4q9", "http://www.dcc.ac.uk/resources/metadata-standards/cim-common-information-model", "https://earthsystemcog.org/projects/es-doc-models/cim_versions", "https://earthsystemcog.org/projects/es-doc-models/cim", "https://github.com/ES-DOC/esdoc-cim/blob/v1.10.0/cim.xsd", "msc:g23", "msc:g24", "msc:g25", "msc:g34"], "subject_areas": ["Climatology"], "field_of_science": ["climatology", "natural sciences"], "acronym": "CIM"}, "clarivate-data-citation-index-schema": {"title": "Clarivate Data Citation Index Schema", "identifier": [{"value": "fuji:m39", "type": "local"}, {"value": "https://clarivate.com/products/web-of-science/web-science-form/data-citation-index/", "type": "namespace"}, {"value": "https://clarivate.com/products/scientific-and-academic-research/research-discovery-and-workflow-solutions/webofscience-platform/data-citation-index/", "type": "homepage"}], "urls": ["fuji:m39", "https://clarivate.com/products/web-of-science/web-science-form/data-citation-index/", "https://clarivate.com/products/scientific-and-academic-research/research-discovery-and-workflow-solutions/webofscience-platform/data-citation-index/"], "subject_areas": ["Bibliographic standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "dci"}, "cmd-component-metadata": {"title": "Component MetaData Specification (CMDI)", "identifier": [{"value": "fuji:m6", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.2e0599", "type": "local"}, {"value": "http://www.clarin.eu/cmd/", "type": "namespace"}, {"value": "https://www.clarin.eu/cmd/1", "type": "namespace"}, {"value": "https://www.clarin.eu/content/component-metadata", "type": "homepage"}, {"value": "http://www.clarin.eu/cmd/1", "type": "namespace"}, {"value": "http://infra.clarin.eu/CMDI/1.x/xsd/cmd-envelop.xsd", "type": "schema"}, {"value": "http://catalog.clarin.eu/ds/ComponentRegistry/rest/registry/profiles/clarin.eu:cr1:p_1290431694484/xsd", "type": "schema"}, {"value": "https://infra.clarin.eu/CMDI/1.x/xsd/cmd-envelop.xsd", "type": "schema"}, {"value": "http://www.clarin.eu/cmd/1/profiles/clarin.eu:cr1:p_1290431694484", "type": "schema"}, {"value": "https://catalog.clarin.eu/ds/ComponentRegistry/rest/registry/1.x/profiles/clarin.eu:cr1:p_1290431694484/xsd", "type": "schema"}], "urls": ["fuji:m6", "https://doi.org/10.25504/FAIRsharing.2e0599", "http://www.clarin.eu/cmd/", "https://www.clarin.eu/cmd/1", "https://www.clarin.eu/content/component-metadata", "https://pure.mpg.de/pubman/faces/ViewItemOverviewPage.jsp?itemId=item_1480943", "http://www.clarin.eu/cmd/1", "http://infra.clarin.eu/CMDI/1.x/xsd/cmd-envelop.xsd", "http://catalog.clarin.eu/ds/ComponentRegistry/rest/registry/profiles/clarin.eu:cr1:p_1290431694484/xsd", "https://infra.clarin.eu/CMDI/1.x/xsd/cmd-envelop.xsd", "http://www.clarin.eu/cmd/1/profiles/clarin.eu:cr1:p_1290431694484", "https://catalog.clarin.eu/ds/ComponentRegistry/rest/registry/1.x/profiles/clarin.eu:cr1:p_1290431694484/xsd"], "subject_areas": ["Linguistics", "Languages"], "field_of_science": ["languages and literature", "linguistics", "humanities"], "acronym": "CMDI"}, "coards-conventions": {"title": "COARDS Conventions", "identifier": [{"value": "msc:m51", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.9614ca", "type": "local"}, {"value": "http://ferret.wrc.noaa.gov/noaa_coop/coop_cdf_profile.html", "type": "homepage"}], "urls": ["msc:m51", "https://doi.org/10.25504/FAIRsharing.9614ca", "http://ferret.wrc.noaa.gov/noaa_coop/coop_cdf_profile.html", "msc:m5"], "subject_areas": ["Climatology", "Meteorology", "Oceanography"], "field_of_science": ["climatology", "meteorology", "oceanography", "natural sciences"], "acronym": null}, "crossref-schema": {"title": "Crossref Schema", "identifier": [{"value": "fuji:m40", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.bbQbSW", "type": "local"}, {"value": "http://www.crossref.org/schema", "type": "homepage"}, {"value": "http://www.crossref.org/schema/4.4.0", "type": "namespace"}, {"value": "https://data.crossref.org/schemas/crossref4.4.0.xsd", "type": "schema"}, {"value": "https://data.crossref.org/schemas/crossref4.3.7.xsd", "type": "schema"}, {"value": "http://www.crossref.org/schema/4.3.7", "type": "namespace"}, {"value": "http://www.crossref.org/schema/4.4.1", "type": "namespace"}, {"value": "https://data.crossref.org/schemas/crossref4.4.1.xsd", "type": "schema"}, {"value": "http://www.crossref.org/schema/4.4.2", "type": "namespace"}, {"value": "https://data.crossref.org/schemas/crossref4.4.2.xsd", "type": "schema"}, {"value": "http://www.crossref.org/schema/4.8.1", "type": "namespace"}, {"value": "https://data.crossref.org/schemas/crossref4.8.1.xsd", "type": "schema"}, {"value": "http://www.crossref.org/schema/5.3.1", "type": "namespace"}, {"value": "https://data.crossref.org/schemas/crossref5.3.1.xsd", "type": "schema"}], "urls": ["fuji:m40", "https://doi.org/10.25504/FAIRsharing.bbQbSW", "http://www.crossref.org/schema", "http://www.crossref.org/schema/4.4.0", "https://data.crossref.org/schemas/crossref4.4.0.xsd", "https://data.crossref.org/schemas/crossref4.3.7.xsd", "http://www.crossref.org/schema/4.3.7", "http://www.crossref.org/schema/4.4.1", "https://data.crossref.org/schemas/crossref4.4.1.xsd", "http://www.crossref.org/schema/4.4.2", "https://data.crossref.org/schemas/crossref4.4.2.xsd", "http://www.crossref.org/schema/4.8.1", "https://data.crossref.org/schemas/crossref4.8.1.xsd", "http://www.crossref.org/schema/5.3.1", "https://data.crossref.org/schemas/crossref5.3.1.xsd"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "crossref"}, "cruise-summary-reports": {"title": "Cruise Summary Reports", "identifier": [{"value": "msc:m52", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.e36460", "type": "local"}, {"value": "http://www.seadatanet.org/Metadata/CSR", "type": "homepage"}, {"value": "http://www.seadatanet.org", "type": "namespace"}, {"value": "http://schemas.seadatanet.org/Standards-Software/Metadata-formats/SDN_CSR_ISO19139_5.2.0.xsd", "type": "schema"}, {"value": "http://schemas.seadatanet.org/StandardsSoftware/Metadata-formats/SDN2_CSR_ISO19139_5.0.0.xsd", "type": "schema"}], "urls": ["msc:m52", "https://doi.org/10.25504/FAIRsharing.e36460", "http://www.seadatanet.org/Metadata/CSR", "http://www.seadatanet.org", "http://schemas.seadatanet.org/Standards-Software/Metadata-formats/SDN_CSR_ISO19139_5.2.0.xsd", " http://schemas.seadatanet.org/StandardsSoftware/Metadata-formats/SDN2_CSR_ISO19139_5.0.0.xsd", "msc:m22"], "subject_areas": ["Climatology", "Earth sciences", "Glaciology", "Hydrology", "Meteorology", "Oceanography"], "field_of_science": ["meteorology", "earth and related environmental sciences", "glaciology", "oceanography", "climatology", "hydrology", "natural sciences"], "acronym": "CSR"}, "csdgm-extensions-remote-sensing-metadata": {"title": "CSDGM Extensions for Remote Sensing Metadata", "identifier": [{"value": "msc:m53", "type": "local"}, {"value": "https://fairsharing.org/1445", "type": "local"}, {"value": "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/csdgm_rs_ex/MetadataRemoteSensingExtens.pdf", "type": "homepage"}], "urls": ["msc:m53", "https://fairsharing.org/1445", "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/csdgm_rs_ex/MetadataRemoteSensingExtens.pdf", "msc:m17"], "subject_areas": ["Climatology", "Hydrology", "Meteorology", "Oceanography"], "field_of_science": ["meteorology", "oceanography", "climatology", "hydrology", "natural sciences"], "acronym": "CSDGM"}, "csmd-cclrc-core-scientific-metadata-model": {"title": "CSMD (Core Scientific Metadata Model)", "identifier": [{"value": "msc:m8", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.30fk89", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/csmd-cclrc-core-scientific-metadata-model", "type": "local"}, {"value": "http://icatproject-contrib.github.io/CSMD/", "type": "homepage"}, {"value": "http://www.purl.org/net/CSMD/4.0#", "type": "namespace"}, {"value": "http://www.escience.clrc.ac.uk/schemas/scientific", "type": "namespace"}], "urls": ["msc:m8", "https://doi.org/10.25504/FAIRsharing.30fk89", "http://www.dcc.ac.uk/resources/metadata-standards/csmd-cclrc-core-scientific-metadata-model", "http://icatproject-contrib.github.io/CSMD/", "http://www.purl.org/net/CSMD/4.0#", "http://www.escience.clrc.ac.uk/schemas/scientific", "msc:g28", "msc:g52"], "subject_areas": ["Biochemistry", "Chemistry", "Crystallography", "Materials engineering"], "field_of_science": ["materials engineering", "chemical sciences", "crystallography", "biochemistry", "engineering and technology", "natural sciences"], "acronym": "CSMD"}, "csw-catalogue-schema": {"title": "Catalogue Service for the Web", "identifier": [{"value": "fuji:m32", "type": "local"}, {"value": "https://fairsharing.org/4650", "type": "local"}, {"value": "http://schemas.opengis.net/csw/2.0.2/CSW-publication.xsd", "type": "schema"}, {"value": "http://www.opengis.net/cat/csw/2.0.2", "type": "namespace"}, {"value": "http://www.opengis.net/cat/csw/3.0", "type": "namespace"}, {"value": "http://schemas.opengis.net/cat/csw/3.0/cswAll.xsd", "type": "schema"}, {"value": "https://www.ogc.org/standard/cat/", "type": "homepage"}], "urls": ["fuji:m32", "https://fairsharing.org/4650", "http://schemas.opengis.net/csw/2.0.2/CSW-publication.xsd", "http://www.opengis.net/cat/csw/2.0.2", "http://www.opengis.net/cat/csw/3.0", "http://schemas.opengis.net/cat/csw/3.0/cswAll.xsd", "https://www.ogc.org/standard/cat/"], "subject_areas": ["Cartography", "Earth sciences"], "field_of_science": ["earth and related environmental sciences", "cartography", "natural sciences"], "acronym": "CSW"}, "dara-metadata-schema": {"title": "da|ra Metadata Schema", "identifier": [{"value": "fuji:m10", "type": "local"}, {"value": "https://fairsharing.org/4651", "type": "local"}, {"value": "http://da-ra.de/schema/kernel-4", "type": "namespace"}, {"value": "http://da-ra.de/dara/schemadefinitions/dara.xsd", "type": "schema"}, {"value": "dara_v2.2.1_de_en_19112012.xsd", "type": "schema"}, {"value": "http://www.da-ra.de/fileadmin/media/da-ra.de/Technik/dara_v3.1_de_en_18112014.xsd", "type": "schema"}, {"value": "https://www.da-ra.de/downloads#metadata", "type": "homepage"}], "urls": ["fuji:m10", "https://fairsharing.org/4651", "http://da-ra.de/schema/kernel-4", "http://da-ra.de/dara/schemadefinitions/dara.xsd", "dara_v2.2.1_de_en_19112012.xsd", "http://www.da-ra.de/fileadmin/media/da-ra.de/Technik/dara_v3.1_de_en_18112014.xsd", "https://www.da-ra.de/downloads#version-3-0", "https://www.da-ra.de/downloads#metadata"], "subject_areas": ["Social policy", "Sociology"], "field_of_science": ["political sciences", "social sciences", "sociology"], "acronym": "da|ra"}, "darwin-core-geospatial-extension": {"title": "Darwin Core Geospatial Extension", "identifier": [{"value": "msc:m54", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.76c06d", "type": "local"}, {"value": "http://wiki.tdwg.org/twiki/bin/view/DarwinCore/GeospatialExtension", "type": "homepage"}], "urls": ["msc:m54", "https://doi.org/10.25504/FAIRsharing.76c06d", "http://wiki.tdwg.org/twiki/bin/view/DarwinCore/GeospatialExtension", "msc:m9"], "subject_areas": ["Biogeography", "Cartography", "Topography"], "field_of_science": ["physical geography", "cartography", "biological sciences", "natural sciences"], "acronym": "DwC-S"}, "darwin-core": {"title": "Darwin Core", "identifier": [{"value": "msc:m9", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.xvf5y3", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core", "type": "local"}, {"value": "http://rs.tdwg.org/dwc/index.htm", "type": "homepage"}, {"value": "http://rs.tdwg.org/dwc/terms/", "type": "namespace"}, {"value": "http://rs.tdwg.org/dwc/iri/", "type": "namespace"}, {"value": "http://rs.tdwg.org/dwc/xsd/tdwg_dwc_simple.xsd", "type": "schema"}], "urls": ["msc:m9", "https://doi.org/10.25504/FAIRsharing.xvf5y3", "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core", "http://www.tdwg.org/standards/450", "http://rs.tdwg.org/dwc/index.htm", "http://rs.tdwg.org/dwc/terms/", "http://rs.tdwg.org/dwc/iri/", "http://rs.tdwg.org/dwc/xsd/tdwg_dwc_simple.xsd", "msc:g4", "msc:g44", "msc:g78", "msc:g85", "msc:g94"], "subject_areas": ["Biogeography", "Biological diversity", "Botany", "Cartography", "Earth sciences", "Ecology", "Marine animals", "Oceanography", "Palaeontology", "Physical geography", "Topography", "Zoology"], "field_of_science": ["cartography", "biological sciences", "earth and related environmental sciences", "zoology", "physical geography", "marine biology", "botany", "oceanography", "palaeontology", "ecology", "natural sciences"], "acronym": "DwC"}, "data-package": {"title": "Data Package", "identifier": [{"value": "msc:m10", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.3b861d", "type": "local"}, {"value": "https://frictionlessdata.io/data-packages/", "type": "homepage"}], "urls": ["msc:m10", "https://doi.org/10.25504/FAIRsharing.3b861d", "https://frictionlessdata.io/specs/data-package/", "https://frictionlessdata.io/data-packages/", "msc:g101", "msc:g29"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "datacite-metadata-schema": {"title": "DataCite Metadata Schema", "identifier": [{"value": "msc:m11", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.me4qwe", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema", "type": "local"}, {"value": "http://schema.datacite.org", "type": "homepage"}, {"value": "http://datacite.org/schema/kernel", "type": "namespace"}], "urls": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema", "http://schema.datacite.org", "http://datacite.org/schema/kernel", "msc:g18", "msc:g37", "msc:g64", "msc:g112", "10.5438/0003", "10.5438/0004", "http://schema.datacite.org/meta/kernel-2.1/doc/DataCite-MetadataKernel_v2.2.pdf", "http://schema.datacite.org/meta/kernel-2.1/metadata.xsd", "http://datacite.org/schema/kernel-2.1", "10.5438/0005", "10.5438/0006", "http://schema.datacite.org/meta/kernel-2.2/doc/DataCite-MetadataKernel_v2.2.pdf", "http://schema.datacite.org/meta/kernel-2.2/metadata.xsd", "http://datacite.org/schema/kernel-2.2", "10.5438/0008", "10.5438/0009", "http://schema.datacite.org/meta/kernel-3.0/doc/DataCite-MetadataKernel_v3.0.pdf", "http://schema.datacite.org/meta/kernel-3.0/metadata.xsd", "http://datacite.org/schema/kernel-3", "10.5438/0010", "10.5438/0011", "http://schema.datacite.org/meta/kernel-3.1/doc/DataCite-MetadataKernel_v3.1.pdf", "http://schema.datacite.org/meta/kernel-3.1/metadata.xsd", "http://datacite.org/schema/kernel-3.1", "10.5438/0012", "10.5438/0013", "http://schema.datacite.org/meta/kernel-4.0/doc/DataCite-MetadataKernel_v4.0.pdf", "http://schema.datacite.org/meta/kernel-4.0/metadata.xsd", "http://datacite.org/schema/kernel-4"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "dcat-data-catalog-vocabulary": {"title": "DCAT (Data Catalog Vocabulary)", "identifier": [{"value": "msc:m12", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.h4j3qm", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary", "type": "local"}, {"value": "http://www.w3.org/TR/vocab-dcat/", "type": "homepage"}, {"value": "https://www.w3.org/2017/dxwg/wiki/Main_Page", "type": "homepage"}, {"value": "http://www.w3.org/ns/dcat#", "type": "namespace"}], "urls": ["https://www.w3.org/TR/vocab-dcat/#class-dataset", "https://www.w3.org/TR/vocab-dcat/#class-catalog", "msc:m12", "https://doi.org/10.25504/FAIRsharing.h4j3qm", "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary", "http://www.w3.org/TR/vocab-dcat/", "https://www.w3.org/ns/dcat.ttl", "https://www.w3.org/2017/dxwg/wiki/Main_Page", "http://www.w3.org/ns/dcat#", "msc:m15", "msc:g106"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DCAT"}, "ddi-data-documentation-initiative": {"title": "DDI (Data Documentation Initiative)", "identifier": [{"value": "msc:m13", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.1t5ws6", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.EZCpPd", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative", "type": "local"}, {"value": "http://www.ddialliance.org/", "type": "homepage"}, {"value": "http://www.icpsr.umich.edu/DDI", "type": "namespace"}, {"value": "http://www.ddialliance.org/DDI/schema/ddi3.1/dataset.xsd", "type": "schema"}, {"value": "ddi:codebook:2_5", "type": "namespace"}, {"value": "ddi:dataset:3_3", "type": "namespace"}, {"value": "ddi:dataset:3_2", "type": "namespace"}, {"value": "ddi:dataset:3_1", "type": "namespace"}, {"value": "ddi:instance:3_1", "type": "namespace"}, {"value": "ddi:instance:3_2", "type": "namespace"}, {"value": "ddi:instance:3_3", "type": "namespace"}, {"value": "ddi:dataset:3_0", "type": "namespace"}, {"value": "https://ddialliance.org/Specification/DDI-Codebook/2.5/XMLSchema/codebook.xsd", "type": "schema"}, {"value": "https://ddialliance.org/Specification/DDI-Codebook/2.1/XMLSchema/codebook.xsd", "type": "schema"}, {"value": "https://ddialliance.org/Specification/DDI-Lifecycle/3.3/XMLSchema/instance.xsd", "type": "schema"}, {"value": "https://ddialliance.org/Specification/DDI-Lifecycle/3.2/XMLSchema/instance.xsd", "type": "schema"}, {"value": "https://ddialliance.org/Specification/DDI-Lifecycle/3.1/XMLSchema/instance.xsd", "type": "schema"}, {"value": "https://ddialliance.org/Specification/DDI-Lifecycle/3.0/XMLSchema/instance.xsd", "type": "schema"}], "urls": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative", "http://www.ddialliance.org/Specification/", "http://www.ddialliance.org/", "http://www.icpsr.umich.edu/DDI", "http://www.ddialliance.org/DDI/schema/ddi3.1/dataset.xsd", "ddi:codebook:2_5", "ddi:dataset:3_3", "ddi:dataset:3_2", "ddi:dataset:3_1", "ddi:instance:3_1", "ddi:instance:3_2", "ddi:instance:3_3", "ddi:dataset:3_0", "https://ddialliance.org/Specification/DDI-Codebook/2.5/XMLSchema/codebook.xsd", "https://ddialliance.org/Specification/DDI-Codebook/2.1/XMLSchema/codebook.xsd", "https://ddialliance.org/Specification/DDI-Lifecycle/3.3/XMLSchema/instance.xsd", "https://ddialliance.org/Specification/DDI-Lifecycle/3.2/XMLSchema/instance.xsd", "https://ddialliance.org/Specification/DDI-Lifecycle/3.1/XMLSchema/instance.xsd", "https://ddialliance.org/Specification/DDI-Lifecycle/3.0/XMLSchema/instance.xsd", "msc:g20", "msc:g31", "msc:g32", "msc:g53", "msc:g55", "msc:g91", "msc:g113"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["history", "humanities", "law", "economics", "statistics and probability", "social geography", "medical and health sciences", "political sciences", "sociology", "natural sciences", "demography", "social sciences", "public health"], "acronym": "DDI"}, "didl-digital-item-declaration-language": {"title": "Digital Item Declaration Language (DIDL)", "identifier": [{"value": "fuji:m4", "type": "local"}, {"value": "https://fairsharing.org/4652", "type": "local"}, {"value": "urn:mpeg:mpeg21:2002:02-DIDL-NS", "type": "namespace"}, {"value": "https://www.iso.org/standard/35366.html", "type": "homepage"}], "urls": ["fuji:m4", "https://fairsharing.org/4652", "urn:mpeg:mpeg21:2002:02-DIDL-NS", "http://www.dlib.org/dlib/november03/bekaert/11bekaert.html", "https://www.iso.org/standard/35366.html"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DIDL"}, "dif-directory-interchange-format": {"title": "DIF (Directory Interchange Format)", "identifier": [{"value": "msc:m14", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.esxaaq", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format", "type": "local"}, {"value": "http://gcmd.nasa.gov/add/difguide/", "type": "homepage"}, {"value": "https://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/dif_v10.2.xsd", "type": "schema"}, {"value": "http://gcmd.nasa.gov/Aboutus/xml/dif/dif.xsd", "type": "schema"}, {"value": "https://git.earthdata.nasa.gov/projects/EMFD/repos/dif-schemas/browse/10.x/dif.xsd", "type": "schema"}, {"value": "http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/", "type": "namespace"}, {"value": "http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif", "type": "namespace"}, {"value": "http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/dif_v9.4.xsd", "type": "schema"}], "urls": ["msc:m14", "https://doi.org/10.25504/FAIRsharing.esxaaq", "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format", "http://gcmd.nasa.gov/add/difguide/WRITEADIF.pdf", "http://gcmd.nasa.gov/add/difguide/", "https://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/dif_v10.2.xsd", "http://gcmd.nasa.gov/Aboutus/xml/dif/dif.xsd", "https://git.earthdata.nasa.gov/projects/EMFD/repos/dif-schemas/browse/10.x/dif.xsd", "http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/", "http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif", "http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/dif_v9.4.xsd", "msc:g8", "msc:g13", "msc:g19", "msc:g46", "msc:g47", "msc:g71"], "subject_areas": ["Agriculture", "Biochemistry", "Climatology", "Ecology", "Glaciology", "Hydrology", "Marine biology", "Meteorology", "Oceanography"], "field_of_science": ["meteorology", "ecology", "agriculture", "biochemistry", "marine biology", "glaciology", "oceanography", "climatology", "hydrology", "agricultural sciences", "natural sciences"], "acronym": "DIF"}, "dim-dspace-intermediate-format": {"title": "DSpace Intermediate Metadata Format", "identifier": [{"value": "fuji:m36", "type": "local"}, {"value": "http://www.dspace.org/xmlns/dspace/dim", "type": "namespace"}, {"value": "https://wiki.lyrasis.org/display/DSPACE/", "type": "homepage"}], "urls": ["fuji:m36", "http://www.dspace.org/xmlns/dspace/dim", "https://wiki.lyrasis.org/display/DSPACE/"], "subject_areas": null, "field_of_science": [], "acronym": "dspace-dim"}, "dryad-metadata-application-profile": {"title": "Dryad Metadata Application Profile", "identifier": [{"value": "msc:m55", "type": "local"}, {"value": "http://wiki.datadryad.org/Metadata_Profile", "type": "homepage"}, {"value": "http://datadryad.org/metadata/", "type": "namespace"}, {"value": "http://datadryad.org/profile/v3.1/dryad.xsd", "type": "schema"}, {"value": "http://datadryad.org/profile/v3/dryad.xsd", "type": "schema"}, {"value": "http://ils.unc.edu/mrc/dryad/version1_0/dryad_1_0.xsd", "type": "schema"}], "urls": ["msc:m55", "http://wiki.datadryad.org/Metadata_Profile", "http://datadryad.org/metadata/", "http://datadryad.org/profile/v3.1/dryad.xsd", "http://datadryad.org/profile/v3/dryad.xsd", "http://ils.unc.edu/mrc/dryad/version1_0/dryad_1_0.xsd", "msc:m15"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "dublin-core-qualified": {"title": "Qualified Dublin Core", "identifier": [{"value": "fuji:m22", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.3nx7t", "type": "local"}, {"value": "https://www.dublincore.org/specifications/dublin-core/dcmes-qualifiers/", "type": "homepage"}, {"value": "urn:dc:qdc:container", "type": "namespace"}, {"value": "figshare:oai:qdc", "type": "namespace"}, {"value": "http://naca.central.cranfield.ac.uk/ethos-oai/2.0/", "type": "namespace"}, {"value": "http://ora.ox.ac.uk/oai-pmh/metadata-formats/solo_dc", "type": "namespace"}, {"value": "https://cocoon.huma-num.fr/schemas/dcq.xsd", "type": "schema"}, {"value": "http://crdo.risc.cnrs.fr/schemas/dcq/", "type": "namespace"}, {"value": "http://oai.base-search.net/base_dc/", "type": "namespace"}, {"value": "http://oai.base-search.net/base_dc", "type": "namespace"}, {"value": "http://oai.base-search.net/base_dc/base_dc.xsd", "type": "schema"}], "urls": ["fuji:m22", "https://doi.org/10.25504/FAIRsharing.3nx7t", "https://www.dublincore.org/specifications/dublin-core/dcmes-qualifiers/", "urn:dc:qdc:container", "figshare:oai:qdc", "http://naca.central.cranfield.ac.uk/ethos-oai/2.0/", "http://ora.ox.ac.uk/oai-pmh/metadata-formats/solo_dc", "https://cocoon.huma-num.fr/schemas/dcq.xsd", "http://crdo.risc.cnrs.fr/schemas/dcq/", "http://oai.base-search.net/base_dc/", "http://oai.base-search.net/base_dc", "http://oai.base-search.net/base_dc/base_dc.xsd", "msc:m15"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "QDC"}, "dublin-core": {"title": "Dublin Core", "identifier": [{"value": "msc:m15", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.3nx7t", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core", "type": "local"}, {"value": "http://dublincore.org", "type": "homepage"}, {"value": "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dcterms.xsd", "type": "schema"}, {"value": "http://dublincore.org/schemas/xmls/simpledc20021212.xsd", "type": "schema"}, {"value": "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dc.xsd", "type": "schema"}, {"value": "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dcmitype.xsd", "type": "schema"}, {"value": "http://dublincore.org/schemas/xmls/qdc/2008/02/11/simpledc.xsd", "type": "schema"}, {"value": "http://dublincore.org/schemas/xmls/qdc/2008/02/11/qualifieddc.xsd", "type": "schema"}, {"value": "http://dublincore.org/schemas/xmls/qdc/dc.xsd", "type": "schema"}, {"value": "http://dublincore.org/schemas/xmls/qdc/dcterms.xsd", "type": "schema"}, {"value": "http://dublincore.org/schemas/xmls/qdc/dcmitype.xsd", "type": "schema"}, {"value": "http://purl.org/dc/elements/1.1/", "type": "namespace"}, {"value": "http://purl.org/dc/terms/", "type": "namespace"}, {"value": "http://purl.org/dc/dcmitype/", "type": "namespace"}], "urls": ["msc:m15", "https://doi.org/10.25504/FAIRsharing.3nx7t", "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core", "http://dublincore.org/specifications/", "http://dublincore.org", "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dcterms.xsd", "http://dublincore.org/schemas/xmls/simpledc20021212.xsd", "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dc.xsd", "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dcmitype.xsd", "http://dublincore.org/schemas/xmls/qdc/2008/02/11/simpledc.xsd", "http://dublincore.org/schemas/xmls/qdc/2008/02/11/qualifieddc.xsd", "http://dublincore.org/schemas/xmls/qdc/dc.xsd", "http://dublincore.org/schemas/xmls/qdc/dcterms.xsd", "http://dublincore.org/schemas/xmls/qdc/dcmitype.xsd", "http://purl.org/dc/elements/1.1/", "http://purl.org/dc/terms/", "http://purl.org/dc/dcmitype/", "msc:g1", "msc:g13", "msc:g121", "msc:g35", "msc:g36", "msc:g37", "msc:g39", "msc:g73", "msc:g112", "msc:g55", "msc:g90"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DC"}, "dwc-germplasm": {"title": "DwC Germplasm", "identifier": [{"value": "msc:m56", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.hgsFLe", "type": "local"}, {"value": "http://code.google.com/p/darwincore-germplasm/", "type": "homepage"}, {"value": "http://purl.org/germplasm#", "type": "namespace"}, {"value": "http://purl.org/germplasm/germplasmTerm#", "type": "namespace"}], "urls": ["msc:m56", "https://doi.org/10.25504/FAIRsharing.hgsFLe", "http://code.google.com/p/darwincore-germplasm/", "http://purl.org/germplasm#", "http://purl.org/germplasm/germplasmTerm#", "msc:m9"], "subject_areas": ["Botany"], "field_of_science": ["botany", "natural sciences"], "acronym": null}, "ead-encoded-archival-description": {"title": "EAD (Encoded Archival Description)", "identifier": [{"value": "msc:m96", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.95f59a", "type": "local"}, {"value": "https://www.loc.gov/ead/", "type": "homepage"}, {"value": "urn:isbn:1-931666-22-9", "type": "namespace"}, {"value": "http://ead3.archivists.org/schema", "type": "namespace"}, {"value": "http://ead3.archivists.org/schema/", "type": "namespace"}], "urls": ["msc:m96", "https://doi.org/10.25504/FAIRsharing.95f59a", "https://www.loc.gov/ead/", "urn:isbn:1-931666-22-9", "http://ead3.archivists.org/schema", "http://ead3.archivists.org/schema/", "msc:g104", "msc:g114", "msc:g121", "https://www.loc.gov/ead/tglib1998/", "https://www.loc.gov/ead/ag/aghome.html", "https://www.loc.gov/ead/ead.xsd", "ftp://ftp.loc.gov/pub/ead/ead.dtd", "https://www.loc.gov/ead/tglib/", "https://www.loc.gov/ead/ead3.xsd", "https://www.loc.gov/ead/ead3.dtd", "https://www.loc.gov/ead/EAD3taglib/EAD3.html"], "subject_areas": ["History"], "field_of_science": ["history", "humanities"], "acronym": "ead"}, "ebank-uk-metadata-application-profile": {"title": "eBank UK Metadata Application Profile", "identifier": [{"value": "msc:m57", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.ad4856", "type": "local"}, {"value": "http://ecrystals.chem.soton.ac.uk", "type": "homepage"}, {"value": "http://naca.central.cranfield.ac.uk/ethos-oai/2.0/uketd_dc.xsd", "type": "schema"}, {"value": "http://naca.central.cranfield.ac.uk/ethos-oai/uketd_dc/", "type": "namespace"}], "urls": ["msc:m57", "https://doi.org/10.25504/FAIRsharing.ad4856", "http://ecrystals.chem.soton.ac.uk", "http://naca.central.cranfield.ac.uk/ethos-oai/2.0/uketd_dc.xsd", "http://naca.central.cranfield.ac.uk/ethos-oai/uketd_dc/", "msc:m15"], "subject_areas": ["Crystallography"], "field_of_science": ["crystallography", "natural sciences"], "acronym": null}, "edm-europeana-data-model": {"title": "Europeana Data Model (EDM)", "identifier": [{"value": "fuji:m33", "type": "local"}, {"value": "https://fairsharing.org/4653", "type": "local"}, {"value": "https://pro.europeana.eu/page/edm-documentation", "type": "homepage"}, {"value": "http://www.europeana.eu/schemas/edm/", "type": "namespace"}, {"value": "http://www.europeana.eu/schemas/edm", "type": "namespace"}, {"value": "http://www.europeana.eu/schemas/ese/", "type": "namespace"}], "urls": ["fuji:m33", "https://fairsharing.org/4653", "https://pro.europeana.eu/page/edm-documentation", "http://www.europeana.eu/schemas/edm/", "http://www.europeana.eu/schemas/edm", "http://www.europeana.eu/schemas/ese/"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "EDM"}, "edmed-metadata-profile": {"title": "EDMED Metadata Profile", "identifier": [{"value": "msc:m58", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.ed7f20", "type": "local"}, {"value": "https://www.bodc.ac.uk/data/information_and_inventories/edmed/", "type": "homepage"}, {"value": "EDMED_sdn_V1.2.xsd", "type": "schema"}], "urls": ["msc:m58", "https://doi.org/10.25504/FAIRsharing.ed7f20", "https://www.bodc.ac.uk/data/information_and_inventories/edmed/", "EDMED_sdn_V1.2.xsd", "msc:m22"], "subject_areas": ["Climatology", "Ecology", "Environmental sciences", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Soil sciences"], "field_of_science": ["meteorology", "environmental sciences", "glaciology", "soil sciences", "oceanography", "hydrogeology", "climatology", "hydrology", "ecology", "natural sciences"], "acronym": null}, "emblem-metadata-schema": {"title": "Emblem XML-Schema", "identifier": [{"value": "fuji:m16", "type": "local"}, {"value": "https://fairsharing.org/4654", "type": "local"}, {"value": "http://diglib.hab.de/rules/schema/emblem/", "type": "homepage"}, {"value": "http://diglib.hab.de/rules/schema/emblem", "type": "namespace"}, {"value": "http://diglib.hab.de/rules/schema/emblem/emblem-1-3.xsd", "type": "schema"}, {"value": "http://diglib.hab.de/rules/schema/emblem/emblem-1-2.xsd", "type": "schema"}], "urls": ["fuji:m16", "https://fairsharing.org/4654", "http://diglib.hab.de/rules/schema/emblem/", "http://diglib.hab.de/rules/schema/emblem", "http://diglib.hab.de/rules/schema/emblem/emblem-1-3.xsd", "http://diglib.hab.de/rules/schema/emblem/emblem-1-2.xsd"], "subject_areas": ["Humanities"], "field_of_science": ["humanities"], "acronym": "Emblem"}, "eml-ecological-metadata-language": {"title": "EML (Ecological Metadata Language)", "identifier": [{"value": "msc:m16", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.r3vtvx", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language", "type": "local"}, {"value": "https://eml.ecoinformatics.org/", "type": "homepage"}, {"value": "eml://eml.ecoinformatics.org/eml-2.0.0", "type": "namespace"}, {"value": "eml://ecoinformatics.org/eml-2.0.0", "type": "namespace"}, {"value": "eml://ecoinformatics.org/eml-2.0.1", "type": "namespace"}, {"value": "eml://ecoinformatics.org/eml-2.1.0", "type": "namespace"}, {"value": "eml://ecoinformatics.org/eml-2.1.1", "type": "namespace"}, {"value": "https://eml.ecoinformatics.org/eml-2.2.0", "type": "namespace"}, {"value": "https://eml.ecoinformatics.org/eml-2.2.1", "type": "namespace"}, {"value": "https://eml.ecoinformatics.org/schema/eml_xsd", "type": "schema"}], "urls": ["msc:m16", "https://doi.org/10.25504/FAIRsharing.r3vtvx", "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language", "https://eml.ecoinformatics.org/", "https://eml.ecoinformatics.org/schema", "eml://eml.ecoinformatics.org/eml-2.0.0", "eml://ecoinformatics.org/eml-2.0.0", "eml://ecoinformatics.org/eml-2.0.1", "eml://ecoinformatics.org/eml-2.1.0", "eml://ecoinformatics.org/eml-2.1.1", "https://eml.ecoinformatics.org/eml-2.2.0", "https://eml.ecoinformatics.org/eml-2.2.1", "https://eml.ecoinformatics.org/schema/eml_xsd", "msc:g119", "msc:g44", "msc:g63", "msc:g66", "msc:g72", "10.5063/F11834T2"], "subject_areas": ["Biological diversity", "Botany", "Ecology", "Zoology"], "field_of_science": ["biological sciences", "zoology", "botany", "ecology", "natural sciences"], "acronym": "EML"}, "epicur-metadata-schema": {"title": "xepicur", "identifier": [{"value": "fuji:m21", "type": "local"}, {"value": "https://fairsharing.org/4659", "type": "local"}, {"value": "urn:nbn:de:1111-2004033116", "type": "namespace"}, {"value": "https://files.dnb.de/Web/xepicur.xsd", "type": "schema"}, {"value": "https://wiki.dnb.de/display/URNSERVDOK/xepicur+-+XML-Datentransferformat+zur+Verwaltung+von+URN", "type": "homepage"}], "urls": ["fuji:m21", "https://fairsharing.org/4659", "urn:nbn:de:1111-2004033116", " https://files.dnb.de/Web/xepicur.xsd", "https://wiki.dnb.de/display/URNSERVDOK/xepicur+-+XML-Datentransferformat+zur+Verwaltung+von+URN"], "subject_areas": null, "field_of_science": [], "acronym": "epicur"}, "eprints-xml": {"title": "EPrints XML", "identifier": [{"value": "fuji:m23", "type": "local"}, {"value": "http://eprints.org/ep2/data/2.0", "type": "namespace"}, {"value": "https://wiki.eprints.org/w/XML_Export_Format", "type": "homepage"}], "urls": ["fuji:m23", "http://eprints.org/ep2/data/2.0", "https://wiki.eprints.org/w/XML_Export_Format"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "EPrints"}, "etdms-metadata-schema": {"title": "ETD-MS an Interoperability Metadata Standard for Electronic Theses and Dissertations", "identifier": [{"value": "fuji:m17", "type": "local"}, {"value": "https://fairsharing.org/4660", "type": "local"}, {"value": "https://ndltd.org/metadata/", "type": "homepage"}, {"value": "http://www.ndltd.org/standards/metadata/etdms/1.1/", "type": "namespace"}, {"value": "http://www.ndltd.org/standards/metadata/etdms/1.0/", "type": "namespace"}, {"value": "http://www.ndltd.org/standards/metadata/etdms/1.1/etdms11.xsd", "type": "schema"}, {"value": "http://www.ndltd.org/standards/metadata/etdms/1.1/etdmsdc.xsd", "type": "schema"}, {"value": "http://www.ndltd.org/standards/metadata/etdms/1.1/etdmsdcterms.xsd", "type": "schema"}, {"value": "http://www.ndltd.org/standards/metadata/etdms/1.0/etdms.xsd", "type": "schema"}, {"value": "http://www.ndltd.org/standards/metadata/etdms/1-0/", "type": "namespace"}], "urls": ["fuji:m17", "https://fairsharing.org/4660", "https://ndltd.org/metadata/", "http://www.ndltd.org/standards/metadata/etdms/1.1/", "http://www.ndltd.org/standards/metadata/etdms/1.0/", "http://www.ndltd.org/standards/metadata/etdms/1.1/etdms11.xsd", "http://www.ndltd.org/standards/metadata/etdms/1.1/etdmsdc.xsd", "http://www.ndltd.org/standards/metadata/etdms/1.1/etdmsdcterms.xsd", "http://www.ndltd.org/standards/metadata/etdms/1.0/etdms.xsd", "http://www.ndltd.org/standards/metadata/etdms/1-0/"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "ETD-MS"}, "eurisco-descriptors": {"title": "EURISCO Descriptors", "identifier": [{"value": "msc:m85", "type": "local"}, {"value": "https://www.ecpgr.cgiar.org/resources/germplasm-databases/eurisco-catalogue", "type": "homepage"}], "urls": ["msc:m85", "http://www.ecpgr.cgiar.org/fileadmin/templates/ecpgr.org/upload/MISC/EURISCO_Descriptors.pdf", "https://www.ecpgr.cgiar.org/resources/germplasm-databases/eurisco-catalogue"], "subject_areas": null, "field_of_science": [], "acronym": null}, "fdsn-seismograph": {"title": "International Federation of Digital Seismograph Networks StationXML (FDSN StationXML)", "identifier": [{"value": "fuji:m8", "type": "local"}, {"value": "https://fairsharing.org/1434", "type": "local"}, {"value": "http://www.fdsn.org/xml/station/1", "type": "namespace"}, {"value": "http://www.fdsn.org/xml/station/", "type": "homepage"}], "urls": ["fuji:m8", "https://fairsharing.org/1434", "http://www.fdsn.org/xml/station/1", "http://www.fdsn.org/xml/station/", "http://docs.fdsn.org/projects/stationxml/en/latest/"], "subject_areas": ["Earth sciences", "Geophysics"], "field_of_science": ["earth and related environmental sciences", "geophysics", "natural sciences"], "acronym": null}, "fgdccsdgm-biological-data-profile": {"title": "FGDC/CSDGM Biological Data Profile", "identifier": [{"value": "msc:m59", "type": "local"}, {"value": "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/biometadata/biodatap.pdf", "type": "homepage"}], "urls": ["msc:m59", "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/biometadata/biodatap.pdf", "msc:m17"], "subject_areas": ["Biogeography"], "field_of_science": ["biological sciences", "natural sciences"], "acronym": null}, "fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge": {"title": "FGDC/CSDGM (Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata)", "identifier": [{"value": "msc:m17", "type": "local"}, {"value": "https://fairsharing.org/1445", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge", "type": "local"}, {"value": "http://www.fgdc.gov/metadata/geospatial-metadata-standards/", "type": "homepage"}, {"value": "https://www.fgdc.gov/schemas/metadata/fgdc-std-001-1998.xsd", "type": "schema"}, {"value": "https://www.fgdc.gov/schemas/metadata/fgdc-std-001.2-2001.xsd", "type": "schema"}, {"value": "https://www.fgdc.gov/schemas/metadata/", "type": "namespace"}, {"value": "http://www.fgdc.gov/metadata/csdgm/index_html", "type": "namespace"}], "urls": ["msc:m17", "https://fairsharing.org/1445", "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge", "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/base-metadata/v2_0698.pdf", "http://www.fgdc.gov/metadata/geospatial-metadata-standards/", "https://www.fgdc.gov/schemas/metadata/fgdc-std-001-1998.xsd", "https://www.fgdc.gov/schemas/metadata/fgdc-std-001.2-2001.xsd", "https://www.fgdc.gov/schemas/metadata/", "http://www.fgdc.gov/metadata/csdgm/index_html", "msc:g13", "msc:g75"], "subject_areas": ["Biochemistry", "Cartography", "Climatology", "Geography", "Hydrology", "Land use", "Marine biology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["meteorology", "cartography", "social geography", "physical geography", "biochemistry", "marine biology", "oceanography", "climatology", "hydrology", "social sciences", "natural sciences"], "acronym": "fgdc"}, "fits-flexible-image-transport-system": {"title": "FITS (Flexible Image Transport System)", "identifier": [{"value": "msc:m18", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.xvash1", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system", "type": "local"}, {"value": "http://fits.gsfc.nasa.gov/fits_standard.html", "type": "homepage"}], "urls": ["msc:m18", "https://doi.org/10.25504/FAIRsharing.xvash1", "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system", "http://fits.gsfc.nasa.gov/fits_standard.html", "http://fits.gsfc.nasa.gov/fits_standard.html", "msc:g9", "msc:g40", "msc:g51", "msc:g60", "msc:g61", "msc:g89", "msc:g95"], "subject_areas": ["Astronomy", "Astrophysics", "Sun"], "field_of_science": ["astronomy", "astrophysics", "natural sciences"], "acronym": null}, "fits-world-coordinate-system-wcs": {"title": "FITS World Coordinate System (WCS)", "identifier": [{"value": "msc:m60", "type": "local"}, {"value": "http://fits.gsfc.nasa.gov/fits_wcs.html", "type": "homepage"}], "urls": ["msc:m60", "http://fits.gsfc.nasa.gov/fits_wcs.html", "msc:m18"], "subject_areas": ["Astronomy", "Astrophysics", "Sun"], "field_of_science": ["astronomy", "astrophysics", "natural sciences"], "acronym": null}, "gbif-metadata-profile": {"title": "GBIF Metadata Profile", "identifier": [{"value": "msc:m61", "type": "local"}, {"value": "http://rs.gbif.org/schema/eml-gbif-profile/", "type": "homepage"}], "urls": ["msc:m61", "http://rs.gbif.org/schema/eml-gbif-profile/", "msc:m16", "http://rs.gbif.org/schema/eml-gbif-profile/1.0.2/eml-gbif-profile.xsd", "http://rs.gbif.org/schema/eml-gbif-profile/1.1/eml-gbif-profile.xsd"], "subject_areas": ["Biogeography", "Biological diversity", "Botany", "Ecology", "Zoology"], "field_of_science": ["biological sciences", "zoology", "botany", "ecology", "natural sciences"], "acronym": null}, "genome-metadata": {"title": "Genome Metadata", "identifier": [{"value": "msc:m19", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/genome-metadata", "type": "local"}, {"value": "http://enews.patricbrc.org/faqs/genome-metadata-faqs/", "type": "homepage"}], "urls": ["msc:m19", "http://www.dcc.ac.uk/resources/metadata-standards/genome-metadata", "http://enews.patricbrc.org/faqs/genome-metadata-faqs/"], "subject_areas": ["Genetics"], "field_of_science": ["genetics", "natural sciences"], "acronym": null}, "georss-encoding-standard": {"title": "GeoRSS", "identifier": [{"value": "fuji:m1", "type": "local"}, {"value": "https://fairsharing.org/4663", "type": "local"}, {"value": "http://www.georss.org", "type": "homepage"}, {"value": "http://www.georss.org/georss/", "type": "namespace"}, {"value": "http://schemas.opengis.net/georss/1.0/", "type": "namespace"}], "urls": ["fuji:m1", "https://fairsharing.org/4663", "http://www.georss.org", "http://www.georss.org/georss/", "http://schemas.opengis.net/georss/1.0/"], "subject_areas": ["Earth sciences"], "field_of_science": ["earth and related environmental sciences", "natural sciences"], "acronym": null}, "gesmests-generic-statistical-message-time-series": {"title": "GESMES/TS (Generic Statistical Message for Time Series)", "identifier": [{"value": "msc:m62", "type": "local"}, {"value": "http://www.ecb.int/stats/services/sdmx/html/index.en.html", "type": "homepage"}], "urls": ["msc:m62", "http://www.ecb.int/stats/services/sdmx/html/index.en.html", "msc:m38"], "subject_areas": ["Economics", "Social policy", "Statistics"], "field_of_science": ["economics", "statistics and probability", "political sciences", "social sciences", "natural sciences"], "acronym": null}, "gsim-generic-statistical-information-model": {"title": "GSIM (Generic Statistical Information Model)", "identifier": [{"value": "msc:m63", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.22bb25", "type": "local"}, {"value": "http://www1.unece.org/stat/platform/display/metis/Generic+Statistical+Information+Model", "type": "homepage"}], "urls": ["msc:m63", "https://doi.org/10.25504/FAIRsharing.22bb25", "http://www1.unece.org/stat/platform/display/metis/Generic+Statistical+Information+Model", "msc:m13"], "subject_areas": ["Statistics"], "field_of_science": ["statistics and probability", "natural sciences"], "acronym": null}, "hispid-herbarium-information-standards-and-protocols-interchange-data": {"title": "HISPID (Herbarium Information Standards and Protocols for Interchange of Data)", "identifier": [{"value": "msc:m64", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.y49yj6", "type": "local"}, {"value": "http://www.rbg.vic.gov.au/wiki/hiscom/index.php/HISPID_5", "type": "homepage"}], "urls": ["msc:m64", "https://doi.org/10.25504/FAIRsharing.y49yj6", "http://www.rbg.vic.gov.au/wiki/hiscom/index.php/HISPID_5", "msc:m1"], "subject_areas": ["Botany"], "field_of_science": ["botany", "natural sciences"], "acronym": null}, "idf-international-doi-foundation-metadata-kernel": {"title": "IDF (International DOI Foundation) Metadata Kernel", "identifier": [{"value": "msc:m86", "type": "local"}, {"value": "https://www.doi.org/the-identifier/resources/handbook/doi_kernel_xml_schema/", "type": "homepage"}, {"value": "https://www.doi.org/doi_schemas/DOIMetadataKernel.xsd", "type": "schema"}, {"value": "http://www.doi.org/2010/DOISchema", "type": "namespace"}], "urls": ["msc:m86", "https://www.doi.org/the-identifier/resources/handbook/doi_kernel_xml_schema/", "https://www.doi.org/doi_schemas/DOIMetadataKernel.xsd", "http://www.doi.org/2010/DOISchema"], "subject_areas": null, "field_of_science": [], "acronym": null}, "imdi-metadata-schema": {"title": "IMDI Metadata Standard", "identifier": [{"value": "fuji:m15", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.2cfb88", "type": "local"}, {"value": "http://www.mpi.nl/IMDI/Schema/IMDI", "type": "namespace"}, {"value": "http://www.mpi.nl/IMDI/schemas/xsd/", "type": "namespace"}, {"value": "https://www.mpi.nl/IMDI/Schema/IMDI_3.0.xsd", "type": "schema"}, {"value": "https://archive.mpi.nl/forums/t/imdi-metadata-information/2933", "type": "homepage"}], "urls": ["fuji:m15", "https://doi.org/10.25504/FAIRsharing.2cfb88", "http://www.mpi.nl/IMDI/Schema/IMDI", "http://www.mpi.nl/IMDI/schemas/xsd/", "https://www.mpi.nl/IMDI/Schema/IMDI_3.0.xsd", "https://archive.mpi.nl/forums/t/imdi-metadata-information/2933"], "subject_areas": ["Humanities", "Linguistics"], "field_of_science": ["linguistics", "humanities"], "acronym": "IMDI"}, "impex-data-model": {"title": "IMPEx Data Model", "identifier": [{"value": "msc:m65", "type": "local"}, {"value": "http://meetingorganizer.copernicus.org/EPSC2012/EPSC2012-360.pdf", "type": "homepage"}], "urls": ["msc:m65", "http://meetingorganizer.copernicus.org/EPSC2012/EPSC2012-360.pdf", "msc:m39"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "inspire-metadata-regulation": {"title": "INSPIRE Metadata Regulation", "identifier": [{"value": "msc:m66", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.nrx5kk", "type": "local"}, {"value": "http://inspire.ec.europa.eu/", "type": "homepage"}, {"value": "http://inspire.ec.europa.eu/schemas/common/1.0/common.xsd", "type": "namespace"}, {"value": "http://inspire.ec.europa.eu/schemas/common/1.0/network.xsd", "type": "namespace"}], "urls": ["msc:m66", "https://doi.org/10.25504/FAIRsharing.nrx5kk", "http://inspire.ec.europa.eu/", "http://inspire.ec.europa.eu/schemas/common/1.0/common.xsd", "http://inspire.ec.europa.eu/schemas/common/1.0/network.xsd", "msc:m22"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["meteorology", "cartography", "earth and related environmental sciences", "physical geography", "glaciology", "oceanography", "hydrogeology", "climatology", "hydrology", "natural sciences"], "acronym": null}, "international-virtual-observatory-alliance-technical-specifications": {"title": "International Virtual Observatory Alliance Technical Specifications", "identifier": [{"value": "msc:m20", "type": "local"}, {"value": "http://ivoa.net/documents/", "type": "homepage"}], "urls": ["msc:m20", "http://www.ivoa.net/documents/#specs", "http://ivoa.net/documents/", "msc:g5", "msc:g41", "msc:g93"], "subject_areas": ["Astronomy"], "field_of_science": ["astronomy", "natural sciences"], "acronym": "IVOA"}, "isa-tab-nano": {"title": "ISA-TAB Nano", "identifier": [{"value": "msc:m67", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.njqq5b", "type": "local"}, {"value": "https://wiki.nci.nih.gov/display/ICR/ISA-TAB-Nano#ISA-TAB-Nano-title", "type": "homepage"}], "urls": ["msc:m67", "https://doi.org/10.25504/FAIRsharing.njqq5b", "https://wiki.nci.nih.gov/display/ICR/ISA-TAB-Nano#ISA-TAB-Nano-title", "msc:m21"], "subject_areas": ["Biochemicals", "Biotechnology"], "field_of_science": ["engineering and technology", "biological sciences", "biochemistry", "natural sciences"], "acronym": null}, "isa-tab": {"title": "ISA-Tab", "identifier": [{"value": "msc:m21", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab", "type": "local"}, {"value": "http://isatab.sourceforge.net/format.html", "type": "homepage"}], "urls": ["msc:m21", "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab", "http://isatab.sourceforge.net/docs/ISA-TAB_release-candidate-1_v1.0_24nov08.pdf", "http://isatab.sourceforge.net/format.html", "msc:g50", "msc:g59", "msc:g69", "msc:g76"], "subject_areas": ["Biochemicals", "Biochemistry", "Biophysics", "Biotechnology", "Cell biology", "Genetics", "Metabolism", "Molecular biology"], "field_of_science": ["biophysics", "genetics", "biological sciences", "cell biology", "biochemistry", "molecular biology", "cell metabolism", "engineering and technology", "natural sciences"], "acronym": null}, "isaconfig-dixa": {"title": "isaconfig-diXa", "identifier": [{"value": "msc:m68", "type": "local"}, {"value": "https://bitbucket.org/kanterae/isaconfig-dixa", "type": "homepage"}], "urls": ["msc:m68", "https://bitbucket.org/kanterae/isaconfig-dixa", "msc:m21"], "subject_areas": ["Genetics", "Toxicology"], "field_of_science": ["toxicology", "genetics", "medical and health sciences", "natural sciences"], "acronym": null}, "iso-19115-2-imagery-and-gridded-data": {"title": "ISO 19115-2 - Imagery and gridded data", "identifier": [{"value": "msc:m69", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.a6b18c", "type": "local"}, {"value": "http://www.iso.org/iso/catalogue_detail.htm?csnumber=39229", "type": "homepage"}], "urls": ["msc:m69", "https://doi.org/10.25504/FAIRsharing.a6b18c", "http://www.iso.org/iso/catalogue_detail.htm?csnumber=39229", "msc:m22"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Glaciology", "Hydrology", "Land use", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["meteorology", "cartography", "earth and related environmental sciences", "social geography", "physical geography", "glaciology", "oceanography", "climatology", "hydrology", "social sciences", "natural sciences"], "acronym": null}, "iso-19115-north-american-profile": {"title": "ISO 19115 North American Profile", "identifier": [{"value": "msc:m70", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.b4af3c", "type": "local"}, {"value": "http://www.fgdc.gov/standards/projects/incits-l1-standards-projects/NAP-Metadata", "type": "homepage"}], "urls": ["msc:m70", "https://doi.org/10.25504/FAIRsharing.b4af3c", "http://www.fgdc.gov/standards/projects/incits-l1-standards-projects/NAP-Metadata", "msc:m22"], "subject_areas": ["Cartography", "Geography", "Topography"], "field_of_science": ["cartography", "physical geography", "natural sciences"], "acronym": null}, "iso-19115": {"title": "ISO 19115", "identifier": [{"value": "msc:m22", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.t7mby9", "type": "local"}, {"value": "http://www.iso.org/iso/catalogue_detail.htm?csnumber=53798", "type": "homepage"}, {"value": "http://www.isotc211.org/2005/gmd/gmd.xsd", "type": "namespace"}, {"value": "http://www.isotc211.org/2005/gmd", "type": "namespace"}, {"value": "http://standards.iso.org/iso/19115/-3/mds/2.0", "type": "namespace"}, {"value": "http://standards.iso.org/iso/19115/-3/mds/1.0", "type": "namespace"}, {"value": "http://standards.iso.org/iso/19115/-3/mdb/2.0", "type": "namespace"}, {"value": "http://bluenet3.antcrc.utas.edu.au/mcp", "type": "namespace"}], "urls": ["msc:m22", "https://doi.org/10.25504/FAIRsharing.t7mby9", "http://standards.iso.org/iso/19115/-3/", "http://www.iso.org/iso/catalogue_detail.htm?csnumber=53798", "http://www.isotc211.org/2005/gmd/gmd.xsd", "http://www.isotc211.org/2005/gmd", "http://standards.iso.org/iso/19115/-3/mds/2.0", "http://standards.iso.org/iso/19115/-3/mds/1.0", "http://standards.iso.org/iso/19115/-3/mdb/2.0", "http://bluenet3.antcrc.utas.edu.au/mcp", "msc:g6", "msc:g8", "msc:g10", "msc:g26", "msc:g33", "msc:g37", "msc:g48", "msc:g49", "msc:g56"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Geology", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["meteorology", "cartography", "earth and related environmental sciences", "physical geography", "glaciology", "hydrology", "oceanography", "hydrogeology", "climatology", "geology", "natural sciences"], "acronym": "ISO19115"}, "iso-19136": {"title": "Geography Markup Language", "identifier": [{"value": "fuji:m3", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.d69ee0", "type": "local"}, {"value": "www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=32554", "type": "homepage"}, {"value": "http://www.opengis.net/gml/3.2", "type": "namespace"}, {"value": "http://schemas.opengis.net/gml/3.2.1/gml.xsd", "type": "namespace"}], "urls": ["fuji:m3", "https://doi.org/10.25504/FAIRsharing.d69ee0", "https://www.ogc.org/standards/gml", "www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=32554", "http://www.opengis.net/gml/3.2", "http://schemas.opengis.net/gml/3.2.1/gml.xsd"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Geology", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["meteorology", "cartography", "earth and related environmental sciences", "physical geography", "glaciology", "hydrology", "oceanography", "hydrogeology", "climatology", "geology", "natural sciences"], "acronym": null}, "ivoa-registry-metdata": {"title": "IVOA Registry Interfaces", "identifier": [{"value": "fuji:m35", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.RycpEU", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications", "type": "local"}, {"value": "http://www.ivoa.net/xml/VORegistry/v1.0", "type": "namespace"}, {"value": "http://www.ivoa.net/xml/RegistryInterface/v1.0", "type": "namespace"}, {"value": "https://www.ivoa.net/Documents/cover/RDFVORegistry-20070920.html", "type": "homepage"}], "urls": ["fuji:m35", "https://doi.org/10.25504/FAIRsharing.RycpEU", "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications", "https://www.ivoa.net/documents/RegistryInterface/20180723/REC-RegistryInterface-1.1.html", "http://www.ivoa.net/xml/VORegistry/v1.0", "http://www.ivoa.net/xml/RegistryInterface/v1.0", "https://www.ivoa.net/Documents/cover/RDFVORegistry-20070920.html"], "subject_areas": ["Astronomy"], "field_of_science": ["astronomy", "natural sciences"], "acronym": "ivoa-reg"}, "jats-schema": {"title": "Journal Publishing Tag Set (Jats)", "identifier": [{"value": "fuji:m41", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.smr0rh", "type": "local"}, {"value": "http://jats.nlm.nih.gov/publishing/", "type": "homepage"}, {"value": "https://jats.nlm.nih.gov/publishing/1.0/xsd/JATS-journalpublishing1.xsd", "type": "schema"}, {"value": "http://jats.nlm.nih.gov/publishing/1.0", "type": "namespace"}], "urls": ["fuji:m41", "https://doi.org/10.25504/FAIRsharing.smr0rh", "http://jats.nlm.nih.gov/publishing/", "https://jats.nlm.nih.gov/publishing/1.0/xsd/JATS-journalpublishing1.xsd", "http://jats.nlm.nih.gov/publishing/1.0"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "jats"}, "lido-lightweight-information-describing-objects": {"title": "LIDO, Lightweight Information Describing Objects", "identifier": [{"value": "fuji:m18", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.73558b", "type": "local"}, {"value": "www.lido-schema.org/schema/latest/lido.xsd", "type": "schema"}, {"value": "www.lido-schema.org/schema/v1.1/lido-v1.1.xsd", "type": "schema"}, {"value": "http://www.lido-schema.org/schema/v1.0/lido-v1.0.xsd", "type": "schema"}, {"value": "http://lido-schema.org/schema/v1.1/lido-v1.1.xsd", "type": "schema"}, {"value": "http://www.lido-schema.org", "type": "namespace"}, {"value": "http://www.lido-schema.org", "type": "homepage"}], "urls": ["fuji:m18", "https://doi.org/10.25504/FAIRsharing.73558b", "www.lido-schema.org/schema/latest/lido.xsd", "www.lido-schema.org/schema/v1.1/lido-v1.1.xsd", "http://www.lido-schema.org/schema/v1.0/lido-v1.0.xsd", "http://lido-schema.org/schema/v1.1/lido-v1.1.xsd", "http://www.lido-schema.org", "http://www.lido-schema.org", "https://cidoc.mini.icom.museum/working-groups/lido/lido-overview/about-lido/what-is-lido/"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "LIDO"}, "lom-higher-education-schema": {"title": "Learning Object Metadata (LOM)", "identifier": [{"value": "fuji:m24", "type": "local"}, {"value": "https://fairsharing.org/4664", "type": "local"}, {"value": "http://www.imsglobal.org/metadata/index.html", "type": "homepage"}, {"value": "http://ltsc.ieee.org/xsd/LOMv1p0", "type": "namespace"}, {"value": "http://ltsc.ieee.org/2002/09/lom-base#", "type": "namespace"}, {"value": "https://www.oerbw.de/hsoerlom", "type": "namespace"}, {"value": "http://www.rdn.ac.uk/oai/lom/lom.xsd", "type": "schema"}, {"value": "https://w3id.org/kim/hs-oer-lom-profil/latest/schemas/hs-oer-lom.xsd", "type": "schema"}], "urls": ["fuji:m24", "https://fairsharing.org/4664", "http://www.imsglobal.org/metadata/index.html", "https://dini-ag-kim.github.io/hs-oer-lom-profil/latest/", "https://ieeexplore.ieee.org/document/1032843", "http://ltsc.ieee.org/xsd/LOMv1p0", "http://ltsc.ieee.org/2002/09/lom-base#", "https://www.oerbw.de/hsoerlom", "http://www.rdn.ac.uk/oai/lom/lom.xsd", "https://w3id.org/kim/hs-oer-lom-profil/latest/schemas/hs-oer-lom.xsd"], "subject_areas": null, "field_of_science": [], "acronym": "LOM"}, "mage-tab": {"title": "MAGE-TAB", "identifier": [{"value": "msc:m87", "type": "local"}, {"value": "https://fairsharing.org/4680", "type": "local"}, {"value": "https://psidev.info/magetab", "type": "homepage"}], "urls": ["msc:m87", "https://fairsharing.org/4680", "https://psidev.info/magetab"], "subject_areas": null, "field_of_science": [], "acronym": null}, "marc-machine-readable-cataloging": {"title": "MARC (Machine-Readable Cataloging)", "identifier": [{"value": "msc:m88", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.217b1b", "type": "local"}, {"value": "http://www.loc.gov/marc/", "type": "homepage"}, {"value": "http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd", "type": "schema"}, {"value": "https://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd", "type": "schema"}, {"value": "http://www.loc.gov/MARC21/slim", "type": "namespace"}, {"value": "http://www.ddb.de/professionell/MARC21/plus", "type": "namespace"}], "urls": ["msc:m88", "https://doi.org/10.25504/FAIRsharing.217b1b", "http://www.loc.gov/marc/", "http://www.loc.gov/marc/bibliographic/", "http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd", "https://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd", "http://www.loc.gov/MARC21/slim", "http://www.ddb.de/professionell/MARC21/plus", "msc:g104", "msc:g121"], "subject_areas": ["Multidisciplinary", "Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "sciences", "humanities"], "acronym": "MARC"}, "marine-community-profile": {"title": "AODN Marine Community Profile", "identifier": [{"value": "msc:m71", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.18b8b4", "type": "local"}, {"value": "http://www.aodc.org.au/index.php?id=37", "type": "homepage"}, {"value": "http://schemas.aodn.org.au/mcp-2.0", "type": "namespace"}, {"value": "http://schemas.aodn.org.au", "type": "namespace"}, {"value": "http://schemas.aodn.org.au/mcp-2.0/schema.xsd", "type": "schema"}], "urls": ["msc:m71", "https://doi.org/10.25504/FAIRsharing.18b8b4", "https://mcp-profile-docs.readthedocs.io/en/stable/", "http://www.aodc.org.au/index.php?id=37", "http://schemas.aodn.org.au/mcp-2.0", "http://schemas.aodn.org.au", "http://schemas.aodn.org.au/mcp-2.0/schema.xsd", "msc:m22"], "subject_areas": ["Climatology", "Earth sciences", "Glaciology", "Hydrology", "Meteorology", "Oceanography"], "field_of_science": ["meteorology", "earth and related environmental sciences", "glaciology", "oceanography", "climatology", "hydrology", "natural sciences"], "acronym": "AODN"}, "metashare-metadata": {"title": "Metadata Schema for the Description of Language Resources", "identifier": [{"value": "fuji:m12", "type": "local"}, {"value": "https://fairsharing.org/4665", "type": "local"}, {"value": "http://www.meta-share.org/p/93/Documentation#model", "type": "homepage"}, {"value": "http://www.ilsp.gr/META-XMLSchema", "type": "namespace"}, {"value": "http://w3id.org/meta-share/meta-share/", "type": "namespace"}], "urls": ["fuji:m12", "https://fairsharing.org/4665", "http://www.meta-share.org/p/93/Documentation#model", "http://www.ilsp.gr/META-XMLSchema", "http://w3id.org/meta-share/meta-share/"], "subject_areas": ["Humanities", "Linguistics"], "field_of_science": ["linguistics", "humanities"], "acronym": "META-SHARE"}, "mets-metadata-encoding-and-transmission-standard": {"title": "METS - Metadata Encoding and Transmission Standard", "identifier": [{"value": "fuji:m11", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.921056", "type": "local"}, {"value": "http://www.loc.gov/METS/", "type": "namespace"}, {"value": "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v1-2.xsd", "type": "schema"}, {"value": "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v2-1.xsd", "type": "schema"}, {"value": "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v2-0.xsd", "type": "schema"}, {"value": "https://www.loc.gov/standards/mets/mets-profiles.html", "type": "homepage"}], "urls": ["fuji:m11", "https://doi.org/10.25504/FAIRsharing.921056", "http://www.loc.gov/METS/", "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v1-2.xsd", "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v2-1.xsd", "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v2-0.xsd", "https://www.loc.gov/standards/mets/mets-profiles.html"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "METS"}, "mibbi-minimum-information-biological-and-biomedical-investigations": {"title": "MIBBI (Minimum Information for Biological and Biomedical Investigations)", "identifier": [{"value": "msc:m23", "type": "local"}, {"value": "https://fairsharing.org/3518", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/mibbi-minimum-information-biological-and-biomedical-investigations", "type": "local"}, {"value": "http://mibbi.sourceforge.net/portal.shtml", "type": "homepage"}], "urls": ["msc:m23", "https://fairsharing.org/3518", "http://www.dcc.ac.uk/resources/metadata-standards/mibbi-minimum-information-biological-and-biomedical-investigations", "http://mibbi.sourceforge.net/foundry.shtml", "http://mibbi.sourceforge.net/portal.shtml", "msc:g12", "msc:g15", "msc:g43", "msc:g58", "msc:g76", "msc:g82"], "subject_areas": ["Biochemistry", "Biology", "Biotechnology", "Cell biology", "Computer applications", "Environmental sciences", "Genetics", "Metabolism", "Proteins"], "field_of_science": ["genetics", "biological sciences", "proteins", "cell biology", "biochemistry", "environmental sciences", "computer and information sciences", "cell metabolism", "engineering and technology", "natural sciences"], "acronym": null}, "midas-heritage": {"title": "MIDAS-Heritage", "identifier": [{"value": "msc:m24", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.q0hgq", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/midas-heritage", "type": "local"}, {"value": "http://www.english-heritage.org.uk/publications/midas-heritage/", "type": "homepage"}, {"value": "http://www.heritage-standards.org/midas/schema/1.0", "type": "namespace"}], "urls": ["msc:m24", "https://doi.org/10.25504/FAIRsharing.q0hgq", "http://www.dcc.ac.uk/resources/metadata-standards/midas-heritage", "http://www.english-heritage.org.uk/content/publications/publicationsNew/guidelines-standards/midas-heritage/midas-heritage-2012-v1_1.pdf", "https://historicengland.org.uk/images-books/publications/midas-heritage/", "http://www.english-heritage.org.uk/publications/midas-heritage/", "http://www.heritage-standards.org/midas/schema/1.0", "msc:g38"], "subject_areas": ["Archaeology", "Architecture", "Cultural heritage", "Cultural property preservation", "History"], "field_of_science": ["architectural design", "archaeology", "history", "humanities"], "acronym": "MIDAS"}, "mods-metadata-object-description-schema": {"title": "MODS (Metadata Object Description Schema)", "identifier": [{"value": "msc:m97", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.o67X7e", "type": "local"}, {"value": "http://www.loc.gov/standards/mods/", "type": "homepage"}, {"value": "http://www.loc.gov/mods/v3", "type": "namespace"}, {"value": "http://www.loc.gov/mods/", "type": "namespace"}], "urls": ["msc:m97", "https://doi.org/10.25504/FAIRsharing.o67X7e", "http://www.loc.gov/standards/mods/", "http://www.loc.gov/mods/v3", "http://www.loc.gov/mods/", "msc:m88", "msc:g104", "msc:g121", "http://www.loc.gov/standards/mods/v3/mods-3-3.xsd", "http://www.loc.gov/standards/mods/mods-outline-3-4.html", "http://www.loc.gov/standards/mods/v3/mods-3-4.xsd", "http://www.loc.gov/standards/mods/mods-outline-3-5.html", "http://www.loc.gov/standards/mods/v3/mods-3-5.xsd", "http://www.loc.gov/standards/mods/mods-outline-3-6.html", "http://www.loc.gov/standards/mods/v3/mods-3-6.xsd", "http://www.loc.gov/standards/mods/mods-outline-3-7.html", "http://www.loc.gov/standards/mods/v3/mods-3-7.xsd"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "MODS"}, "museumdat-schema": {"title": "museumdat", "identifier": [{"value": "fuji:m31", "type": "local"}, {"value": "https://fairsharing.org/4671", "type": "local"}, {"value": "http://museum.zib.de/museumdat/museumdat-v1.0.xsd", "type": "schema"}, {"value": "http://museum.zib.de/museumdat/", "type": "homepage"}], "urls": ["fuji:m31", "https://fairsharing.org/4671", "http://museum.zib.de/museumdat/museumdat-v1.0.xsd", "http://museum.zib.de/museumdat/"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "museumdat"}, "netcdf-attribute-convention-for-dataset-discovery": {"title": "NetCDF Attribute Convention for Dataset Discovery", "identifier": [{"value": "msc:m89", "type": "local"}, {"value": "https://wiki.esipfed.org/Category:Attribute_Conventions_Dataset_Discovery", "type": "homepage"}], "urls": ["msc:m89", "https://wiki.esipfed.org/Category:Attribute_Conventions_Dataset_Discovery"], "subject_areas": null, "field_of_science": [], "acronym": null}, "nexml": {"title": "NeXML", "identifier": [{"value": "fuji:m45", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.knrb06", "type": "local"}, {"value": "http://www.nexusformat.org/", "type": "homepage"}, {"value": "http://www.nexml.org/2009", "type": "namespace"}, {"value": "http://www.nexml.org/2009 ../xsd/nexml.xsd", "type": "schema"}], "urls": ["fuji:m45", "https://doi.org/10.25504/FAIRsharing.knrb06", "http://download.nexusformat.org/doc/html/ref_doc.html", "http://www.nexusformat.org/", "http://www.nexml.org/2009", "http://www.nexml.org/2009 ../xsd/nexml.xsd"], "subject_areas": ["Biology"], "field_of_science": ["biological sciences", "natural sciences"], "acronym": null}, "nexus": {"title": "NeXus", "identifier": [{"value": "msc:m25", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.eq2pdx", "type": "local"}, {"value": "http://www.nexusformat.org/", "type": "homepage"}], "urls": ["msc:m25", "https://doi.org/10.25504/FAIRsharing.eq2pdx", "http://download.nexusformat.org/doc/html/ref_doc.html", "http://www.nexusformat.org/", "msc:g110"], "subject_areas": ["Chemistry", "Crystallography", "Materials engineering"], "field_of_science": ["materials engineering", "chemical sciences", "crystallography", "engineering and technology", "natural sciences"], "acronym": null}, "oai-dublin-core-schema": {"title": "Open Archive Initiative Dublin Core (OAI DC)", "identifier": [{"value": "fuji:m44", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.0417cf", "type": "local"}, {"value": "https://resources.bepress.com/OAI/2.0/qualified-dublin-core/", "type": "namespace"}, {"value": "http://www.openarchives.org/OAI/2.0/oai_dc.xsd", "type": "schema"}, {"value": "http://www.openarchives.org/OAI/2.0/oai_dc/", "type": "namespace"}, {"value": "http://www.openarchives.org/OAI/2.0/oai_dc", "type": "namespace"}, {"value": "http://www.openarchives.org/OAI/openarchivesprotocol.html#dublincore", "type": "homepage"}], "urls": ["fuji:m44", "https://doi.org/10.25504/FAIRsharing.0417cf", "https://resources.bepress.com/OAI/2.0/qualified-dublin-core/", "http://www.openarchives.org/OAI/2.0/oai_dc.xsd", "http://www.openarchives.org/OAI/2.0/oai_dc/", "http://www.openarchives.org/OAI/2.0/oai_dc", "http://www.openarchives.org/OAI/openarchivesprotocol.html#dublincore"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "oai_dc"}, "oai-ore-open-archives-initiative-object-reuse-and-exchange": {"title": "OAI-ORE (Open Archives Initiative Object Reuse and Exchange)", "identifier": [{"value": "msc:m26", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.3mtaee", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange", "type": "local"}, {"value": "http://www.openarchives.org/ore/toc", "type": "homepage"}, {"value": "http://www.openarchives.org/ore/terms/", "type": "namespace"}], "urls": ["msc:m26", "https://doi.org/10.25504/FAIRsharing.3mtaee", "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange", "http://www.openarchives.org/ore/", "http://www.openarchives.org/ore/toc", "http://www.openarchives.org/ore/terms/", "msc:g81"], "subject_areas": ["Anthropology", "History", "Multidisciplinary"], "field_of_science": ["anthropology", "history", "social sciences", "sciences", "humanities"], "acronym": "OAI-ORE"}, "oai-rdf-schema": {"title": "OAI-RDF Schema", "identifier": [{"value": "fuji:m38", "type": "local"}, {"value": "http://www.openarchives.org/OAI/2.0/rdf.xsd", "type": "schema"}, {"value": "http://www.openarchives.org/OAI/2.0/rdf/", "type": "namespace"}, {"value": "https://api.aiscr.cz/schema/oai_rdf/", "type": "namespace"}, {"value": "http://www.openarchives.org/OAI/2.0/rdf/", "type": "homepage"}], "urls": ["fuji:m38", "http://www.openarchives.org/OAI/2.0/rdf.xsd", "http://www.openarchives.org/OAI/2.0/rdf/", "https://api.aiscr.cz/schema/oai_rdf/", "http://www.openarchives.org/OAI/2.0/rdf/"], "subject_areas": null, "field_of_science": [], "acronym": "oai-rdf"}, "observ-om": {"title": "Observ-OM", "identifier": [{"value": "msc:m27", "type": "local"}, {"value": "https://fairsharing.org/4682", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/observ-om", "type": "local"}, {"value": "http://www.molgenis.org/wiki/ObservStart", "type": "homepage"}], "urls": ["msc:m27", "https://fairsharing.org/4682", "http://www.dcc.ac.uk/resources/metadata-standards/observ-om", "http://www.molgenis.org/wiki/ObservStart", "msc:g21", "msc:g57", "msc:g70", "msc:g96", "msc:g97"], "subject_areas": ["Biology"], "field_of_science": ["biological sciences", "natural sciences"], "acronym": null}, "observations-and-measurements": {"title": "Observations and Measurements", "identifier": [{"value": "msc:m28", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.4ehmy9", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/observations-and-measurements", "type": "local"}, {"value": "http://www.opengeospatial.org/standards/om", "type": "homepage"}, {"value": "http://schemas.opengis.net/om/2.0/", "type": "namespace"}, {"value": "https://schemas.opengis.net/om/2.0/observation.xsd", "type": "schema"}, {"value": "https://schemas.opengis.net/om/1.0.0/observation.xsd", "type": "schema"}, {"value": "http://www.opengis.net/om/1.0", "type": "namespace"}], "urls": ["msc:m28", "https://doi.org/10.25504/FAIRsharing.4ehmy9", "http://www.dcc.ac.uk/resources/metadata-standards/observations-and-measurements", "http://portal.opengeospatial.org/files/?artifact_id=41579", "http://www.opengeospatial.org/standards/om", "http://schemas.opengis.net/om/2.0/", "https://schemas.opengis.net/om/2.0/observation.xsd", "https://schemas.opengis.net/om/1.0.0/observation.xsd", "http://www.opengis.net/om/1.0", "msc:g54", "msc:g79", "msc:g103"], "subject_areas": ["Chemistry", "Geology", "Meteorology", "Remote sensing"], "field_of_science": ["meteorology", "chemical sciences", "engineering and technology", "remote sensing", "geology", "natural sciences"], "acronym": null}, "odam-datapackage": {"title": "ODAM Structural Metadata", "identifier": [{"value": "10.25504/FAIRsharing.ld9wne", "type": "local"}, {"value": null, "type": "homepage"}], "urls": ["10.25504/FAIRsharing.ld9wne", "https://inrae.github.io/ODAM/data-preparation/url"], "subject_areas": ["biochemistry", "molecular-biology", "metabolic-biochemistry", "biomaterials", "bioengineering"], "field_of_science": [], "acronym": null}, "olac-metadata": {"title": "OLAC metadata", "identifier": [{"value": "fuji:m14", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.17fbae", "type": "local"}, {"value": "http://www.language-archives.org/OLAC/1.1/", "type": "namespace"}, {"value": "http://www.language-archives.org/OLAC/1.1/olac.xsd", "type": "schema"}, {"value": "http://www.language-archives.org/OLAC", "type": "homepage"}], "urls": ["fuji:m14", "https://doi.org/10.25504/FAIRsharing.17fbae", "http://www.language-archives.org/OLAC/1.1/", "http://www.language-archives.org/OLAC/1.1/olac.xsd", "http://www.language-archives.org/OLAC"], "subject_areas": ["Humanities", "Linguistics"], "field_of_science": ["linguistics", "humanities"], "acronym": "OLAC"}, "ome-tiff-open-microscopy-environment-tiff": {"title": "OME-TIFF (Open Microscopy Environment TIFF)", "identifier": [{"value": "msc:m73", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.cq8tg2", "type": "local"}, {"value": "http://www.openmicroscopy.org/site/support/file-formats/ome-tiff", "type": "homepage"}], "urls": ["msc:m73", "https://doi.org/10.25504/FAIRsharing.cq8tg2", "http://www.openmicroscopy.org/site/support/file-formats/ome-tiff", "msc:m29"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["plant protection", "cell biology", "veterinary sciences", "zoology", "medical and health sciences", "physiology", "botany", "agricultural sciences", "natural sciences"], "acronym": null}, "ome-xml-open-microscopy-environment-xml": {"title": "OME-XML (Open Microscopy Environment XML)", "identifier": [{"value": "msc:m29", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.zk8p4g", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml", "type": "local"}, {"value": "http://www.openmicroscopy.org/site/support/file-formats", "type": "homepage"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2016-06", "type": "namespace"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2015-01", "type": "namespace"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2013-06", "type": "namespace"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2012-06", "type": "namespace"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2011-06", "type": "namespace"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2010-04", "type": "namespace"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2010-06", "type": "namespace"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2009-09", "type": "namespace"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2008-09", "type": "namespace"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2008-02", "type": "namespace"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2007-06", "type": "namespace"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2016-06/ome.xsd", "type": "schema"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2015-01/ome.xsd", "type": "schema"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2013-06/index.html", "type": "schema"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2012-06/index.html", "type": "schema"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2011-06/index.html", "type": "schema"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2010-04/index.html", "type": "schema"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2010-06/index.html", "type": "schema"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2009-09/index.html", "type": "schema"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2008-09/index.html", "type": "schema"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2008-02/index.html", "type": "schema"}, {"value": "http://www.openmicroscopy.org/Schemas/OME/2007-06/index.html", "type": "schema"}], "urls": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml", "http://www.openmicroscopy.org/Schemas/", "http://www.openmicroscopy.org/site/support/file-formats", "http://www.openmicroscopy.org/Schemas/OME/2016-06", "http://www.openmicroscopy.org/Schemas/OME/2015-01", "http://www.openmicroscopy.org/Schemas/OME/2013-06", "http://www.openmicroscopy.org/Schemas/OME/2012-06", "http://www.openmicroscopy.org/Schemas/OME/2011-06", "http://www.openmicroscopy.org/Schemas/OME/2010-04", "http://www.openmicroscopy.org/Schemas/OME/2010-06", "http://www.openmicroscopy.org/Schemas/OME/2009-09", "http://www.openmicroscopy.org/Schemas/OME/2008-09", "http://www.openmicroscopy.org/Schemas/OME/2008-02", "http://www.openmicroscopy.org/Schemas/OME/2007-06", "http://www.openmicroscopy.org/Schemas/OME/2016-06/ome.xsd", "http://www.openmicroscopy.org/Schemas/OME/2015-01/ome.xsd", "http://www.openmicroscopy.org/Schemas/OME/2013-06/index.html", "http://www.openmicroscopy.org/Schemas/OME/2012-06/index.html", "http://www.openmicroscopy.org/Schemas/OME/2011-06/index.html", "http://www.openmicroscopy.org/Schemas/OME/2010-04/index.html", "http://www.openmicroscopy.org/Schemas/OME/2010-06/index.html", "http://www.openmicroscopy.org/Schemas/OME/2009-09/index.html", "http://www.openmicroscopy.org/Schemas/OME/2008-09/index.html", "http://www.openmicroscopy.org/Schemas/OME/2008-02/index.html", "http://www.openmicroscopy.org/Schemas/OME/2007-06/index.html", "msc:g17", "msc:g62"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["plant protection", "cell biology", "veterinary sciences", "zoology", "medical and health sciences", "physiology", "botany", "agricultural sciences", "natural sciences"], "acronym": null}, "onix-metadata-schema": {"title": "ONIX for Books Product Information Message", "identifier": [{"value": "fuji:m42", "type": "local"}, {"value": "https://fairsharing.org/4683", "type": "local"}, {"value": "https://www.editeur.org/8/ONIX/", "type": "homepage"}, {"value": "http://www.editeur.org/onix/2.1/short", "type": "namespace"}, {"value": "http://www.editeur.org/onix/2.1/short/ONIX_BookProduct_Release2.1_short", "type": "schema"}], "urls": ["fuji:m42", "https://fairsharing.org/4683", "https://www.editeur.org/8/ONIX/", "https://www.editeur.org/files/ONIX%203/APPNOTE%20Describing%20e-books%20in%20ONIX.pdf", "http://www.editeur.org/onix/2.1/short", "http://www.editeur.org/onix/2.1/short/ONIX_BookProduct_Release2.1_short"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "onix"}, "openaire-guidelines": {"title": "OpenAIRE Guidelines", "identifier": [{"value": "msc:m92", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.123197", "type": "local"}, {"value": "https://guidelines.openaire.eu/", "type": "homepage"}, {"value": "https://www.openaire.eu/schema/repo-lit/4.0/openaire.xsd", "type": "schema"}, {"value": "http://namespace.openaire.eu/schema/oaire/", "type": "namespace"}, {"value": "oai_openaire", "type": "namespace"}, {"value": "https://openaire.eu", "type": "namespace"}], "urls": ["msc:m92", "https://doi.org/10.25504/FAIRsharing.123197", "https://guidelines.openaire.eu/", "https://www.openaire.eu/schema/repo-lit/4.0/openaire.xsd", "http://namespace.openaire.eu/schema/oaire/", "oai_openaire", "https://openaire.eu", "msc:g112", "msc:m4", "msc:m11", "msc:m15"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "OpenAIRE_G"}, "openaire-research-graph": {"title": "OpenAIRE Research Graph", "identifier": [{"value": "fuji:m20", "type": "local"}, {"value": "https://fairsharing.org/4684", "type": "local"}, {"value": "http://namespace.openaire.eu/oaf", "type": "namespace"}, {"value": "https://www.openaire.eu/schema/1.0/oaf-1.0.xsd", "type": "schema"}, {"value": "https://graph.openaire.eu/", "type": "homepage"}], "urls": ["fuji:m20", "https://fairsharing.org/4684", "http://namespace.openaire.eu/oaf", "https://www.openaire.eu/schema/latest/doc/oaf.html", "https://www.openaire.eu/schema/1.0/oaf-1.0.xsd", "https://graph.openaire.eu/"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "OpenAIRE_RG"}, "opensearch": {"title": "OpenSearch", "identifier": [{"value": "fuji:m2", "type": "local"}, {"value": "https://fairsharing.org/4685", "type": "local"}, {"value": "http://a9.com/-/spec/opensearch/1.1/", "type": "namespace"}, {"value": "https://github.com/dewitt/opensearch", "type": "homepage"}], "urls": ["fuji:m2", "https://fairsharing.org/4685", "http://a9.com/-/spec/opensearch/1.1/", "https://github.com/dewitt/opensearch"], "subject_areas": null, "field_of_science": [], "acronym": null}, "openurl-contextobject": {"title": "The OpenURL ContextObject Format", "identifier": [{"value": "fuji:m7", "type": "local"}, {"value": "https://fairsharing.org/4686", "type": "local"}, {"value": "info:ofi/fmt:xml:xsd:ctx", "type": "namespace"}, {"value": "info:ofi/fmt:kev:mtx:ctx", "type": "namespace"}, {"value": "https://www.oclc.org/research/activities/registry.html", "type": "homepage"}], "urls": ["fuji:m7", "https://fairsharing.org/4686", "info:ofi/fmt:xml:xsd:ctx", "info:ofi/fmt:kev:mtx:ctx", "https://groups.niso.org/apps/group_public/download.php/14833/z39_88_2004_r2010.pdf", "https://www.oclc.org/research/activities/registry.html"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "CTX"}, "pdbx-mmcif": {"title": "PDBx/mmCIF (Protein Data Bank Exchange Dictionary and the Macromolecular Crystallographic Information Framework)", "identifier": [{"value": "msc:m30", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.fd28en", "type": "local"}, {"value": "http://mmcif.wwpdb.org/", "type": "homepage"}], "urls": ["msc:m30", "https://doi.org/10.25504/FAIRsharing.fd28en", "http://mmcif.wwpdb.org/dictionaries/mmcif_pdbx_v40.dic/Index/", "http://mmcif.wwpdb.org/", "msc:g22", "msc:g98", "msc:g98"], "subject_areas": ["Biology", "Chemistry", "Computer applications", "Crystallography", "Molecular biology", "Physics"], "field_of_science": ["chemical sciences", "biological sciences", "crystallography", "molecular biology", "computer and information sciences", "physical sciences", "natural sciences"], "acronym": null}, "pica-metadata-schema": {"title": "OCLC PICA XML", "identifier": [{"value": "fuji:m37", "type": "local"}, {"value": "https://fairsharing.org/4688", "type": "local"}, {"value": "info:srw/schema/5/picaXML-v1.0", "type": "namespace"}, {"value": "http://www.oclcpica.org/xmlns/ppxml-1.0", "type": "namespace"}, {"value": "http://www.oclcpica.org/xml/picaplus.xsd", "type": "schema"}, {"value": "http://www.oclcpica.org", "type": "homepage"}], "urls": ["fuji:m37", "https://fairsharing.org/4688", "info:srw/schema/5/picaXML-v1.0", "http://www.oclcpica.org/xmlns/ppxml-1.0", "http://www.oclcpica.org/xml/picaplus.xsd", "http://www.oclcpica.org"], "subject_areas": null, "field_of_science": [], "acronym": "pica"}, "premis": {"title": "PREMIS", "identifier": [{"value": "msc:m31", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.27a0f4", "type": "local"}, {"value": "http://www.loc.gov/standards/premis/", "type": "homepage"}, {"value": "http://www.loc.gov/standards/premis", "type": "namespace"}, {"value": "https://www.loc.gov/standards/premis/v3/premis-v3-0.xsd", "type": "schema"}, {"value": "http://www.loc.gov/premis/v3", "type": "namespace"}, {"value": "https://www.loc.gov/standards/premis/v2/premis-v2-2.xsd", "type": "schema"}, {"value": "info:lc/xmlns/premis-v2", "type": "namespace"}, {"value": "https://www.loc.gov/standards/premis/v2/premis-v2-3.xsd", "type": "schema"}, {"value": "https://www.loc.gov/standards/premis/v1/PREMIS-v1-1.xsd", "type": "schema"}, {"value": "http://www.loc.gov/standards/premis/v1", "type": "namespace"}], "urls": ["msc:m31", "https://doi.org/10.25504/FAIRsharing.27a0f4", "http://www.loc.gov/standards/premis/v3/premis-3-0-final.pdf", "http://www.loc.gov/standards/premis/", "http://www.loc.gov/standards/premis", "https://www.loc.gov/standards/premis/v3/premis-v3-0.xsd", "http://www.loc.gov/premis/v3", "https://www.loc.gov/standards/premis/v2/premis-v2-2.xsd", "info:lc/xmlns/premis-v2", "https://www.loc.gov/standards/premis/v2/premis-v2-3.xsd", "https://www.loc.gov/standards/premis/v1/PREMIS-v1-1.xsd", "http://www.loc.gov/standards/premis/v1", "msc:g104", "msc:g111"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "premis"}, "prism-publishing-industry-standard-metadata": {"title": "PRISM Publishing Requirements for Industry Standard Metadata", "identifier": [{"value": "fuji:m27", "type": "local"}, {"value": "https://fairsharing.org/4689", "type": "local"}, {"value": "https://www.w3.org/Submission/prism", "type": "homepage"}, {"value": "http://prismstandard.org/namespaces/pam/0.0/", "type": "namespace"}, {"value": "http://prismstandard.org/namespaces/pam/1.2/", "type": "namespace"}, {"value": "http://prismstandard.org/namespaces/pam/2.0/", "type": "namespace"}, {"value": "http://prismstandard.org/namespaces/pam/2.1/", "type": "namespace"}, {"value": "http://prismstandard.org/namespaces/pam/3.0/", "type": "namespace"}, {"value": "http://prismstandard.org/namespaces/basic/1.2/", "type": "namespace"}, {"value": "http://prismstandard.org/namespaces/basic/2.0/", "type": "namespace"}, {"value": "http://prismstandard.org/namespaces/basic/1.0/", "type": "namespace"}, {"value": "http://prismstandard.org/namespaces/basic/2.1/", "type": "namespace"}, {"value": "http://prismstandard.org/namespaces/basic/3.0/", "type": "namespace"}, {"value": "http://prismstandard.org/namespaces/pim/1.2/", "type": "namespace"}], "urls": ["fuji:m27", "https://fairsharing.org/4689", "https://www.w3.org/Submission/prism", "http://prismstandard.org/namespaces/pam/0.0/", "http://prismstandard.org/namespaces/pam/1.2/", "http://prismstandard.org/namespaces/pam/2.0/", "http://prismstandard.org/namespaces/pam/2.1/", "http://prismstandard.org/namespaces/pam/3.0/", "http://prismstandard.org/namespaces/basic/1.2/", "http://prismstandard.org/namespaces/basic/2.0/", "http://prismstandard.org/namespaces/basic/1.0/", "http://prismstandard.org/namespaces/basic/2.1/", "http://prismstandard.org/namespaces/basic/3.0/", "http://prismstandard.org/namespaces/pim/1.2/"], "subject_areas": null, "field_of_science": [], "acronym": "PRISM"}, "protocol-data-element-definitions": {"title": "Protocol Data Element Definitions", "identifier": [{"value": "msc:m32", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/protocol-data-element-definitions", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.7e962d", "type": "local"}, {"value": "http://clinicaltrials.gov/ct2/manage-recs/resources", "type": "homepage"}, {"value": "https://prsinfo.clinicaltrials.gov/ProtocolRecordSchema.xsd", "type": "schema"}, {"value": "http://clinicaltrials.gov/prs", "type": "namespace"}, {"value": "https://prsinfo.clinicaltrials.gov/RRSUploadSchema.xsd", "type": "schema"}, {"value": "http://clinicaltrials.gov/rrs", "type": "namespace"}], "urls": ["msc:m32", "http://www.dcc.ac.uk/resources/metadata-standards/protocol-data-element-definitions", "https://doi.org/10.25504/FAIRsharing.7e962d", "http://prsinfo.clinicaltrials.gov/definitions.html", "http://clinicaltrials.gov/ct2/manage-recs/resources", "https://prsinfo.clinicaltrials.gov/ProtocolRecordSchema.xsd", "http://clinicaltrials.gov/prs", "https://prsinfo.clinicaltrials.gov/RRSUploadSchema.xsd", "http://clinicaltrials.gov/rrs", "msc:g105"], "subject_areas": ["Clinical medicine"], "field_of_science": ["clinical medicine", "medical and health sciences"], "acronym": null}, "prov": {"title": "PROV", "identifier": [{"value": "msc:m33", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/prov", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.fe7cda", "type": "local"}, {"value": "http://www.w3.org/2001/sw/wiki/PROV", "type": "homepage"}, {"value": "http://www.w3.org/ns/prov.xsd", "type": "schema"}, {"value": "http://www.w3.org/ns/prov#", "type": "namespace"}], "urls": ["msc:m33", "http://www.dcc.ac.uk/resources/metadata-standards/prov", "https://doi.org/10.25504/FAIRsharing.fe7cda", "http://www.w3.org/TR/prov-overview/", "http://www.w3.org/2001/sw/wiki/PROV", "http://www.w3.org/ns/prov.xsd", "http://www.w3.org/ns/prov#", "msc:g84", "msc:g106"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "quakeml": {"title": "QuakeML", "identifier": [{"value": "fuji:m9", "type": "local"}, {"value": "https://fairsharing.org/1444", "type": "local"}, {"value": "http://quakeml.org/xmlns/quakeml/2.0", "type": "namespace"}, {"value": "http://quakeml.org/xmlns/quakeml/1.2", "type": "namespace"}, {"value": "http://quakeml.org/xmlns/quakeml/1.1", "type": "namespace"}, {"value": "http://quakeml.org/xmlns/quakeml/1.0.1", "type": "namespace"}, {"value": "http://quakeml.org/xmlns/quakeml/1.0", "type": "namespace"}, {"value": "https://quake.ethz.ch/quakeml", "type": "homepage"}], "urls": ["fuji:m9", "https://fairsharing.org/1444", "http://quakeml.org/xmlns/quakeml/2.0", "http://quakeml.org/xmlns/quakeml/1.2", "http://quakeml.org/xmlns/quakeml/1.1", "http://quakeml.org/xmlns/quakeml/1.0.1", "http://quakeml.org/xmlns/quakeml/1.0", "https://quake.ethz.ch/quakeml", "http://www.quakeml.org/"], "subject_areas": ["Earth sciences", "Geophysics"], "field_of_science": ["earth and related environmental sciences", "geophysics", "natural sciences"], "acronym": "QuakeML"}, "qudex-qualitative-data-exchange-format": {"title": "QuDEx (Qualitative Data Exchange Format)", "identifier": [{"value": "msc:m34", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/qudex-qualitative-data-exchange-format", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.d42cb9", "type": "local"}, {"value": "http://www.data-archive.ac.uk/create-manage/projects/qudex?index=1", "type": "homepage"}, {"value": "https://dam.data-archive.ac.uk/standards/qudex_v03_01.xsd", "type": "schema"}, {"value": "http://www.data-archive.ac.uk/dext/schema/draft", "type": "namespace"}], "urls": ["msc:m34", "http://www.dcc.ac.uk/resources/metadata-standards/qudex-qualitative-data-exchange-format", "https://doi.org/10.25504/FAIRsharing.d42cb9", "http://data-archive.ac.uk/create-manage/projects/qudex?index=1", "http://www.data-archive.ac.uk/create-manage/projects/qudex?index=1", "https://dam.data-archive.ac.uk/standards/qudex_v03_01.xsd", "http://www.data-archive.ac.uk/dext/schema/draft", "msc:g91"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "rdf-data-cube-vocabulary": {"title": "RDF Data Cube Vocabulary", "identifier": [{"value": "msc:m35", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.c3b573", "type": "local"}, {"value": "http://www.w3.org/TR/vocab-data-cube/", "type": "homepage"}, {"value": "http://purl.org/linked-data/cube#", "type": "namespace"}], "urls": ["msc:m35", "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary", "https://doi.org/10.25504/FAIRsharing.c3b573", "http://www.w3.org/TR/vocab-data-cube/", "http://purl.org/linked-data/cube#", "msc:g65", "msc:g106", "msc:g107"], "subject_areas": ["Statistics"], "field_of_science": ["statistics and probability", "natural sciences"], "acronym": null}, "resource-metadata-virtual-observatory": {"title": "Resource Metadata for the Virtual Observatory", "identifier": [{"value": "msc:m74", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.qSULus", "type": "local"}, {"value": "http://www.ivoa.net/documents/latest/RM.html", "type": "homepage"}], "urls": ["msc:m74", "https://doi.org/10.25504/FAIRsharing.qSULus", "http://www.ivoa.net/documents/latest/RM.html", "msc:m15", "msc:m20"], "subject_areas": ["Astronomy"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "rif-cs-registry-interchange-format-collections-and-services": {"title": "RIF-CS (Registry Interchange Format \u00e2\u20ac\u201c Collections and Services)", "identifier": [{"value": "msc:m98", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.reybx2", "type": "local"}, {"value": "https://www.ands.org.au/online-services/rif-cs-schema", "type": "homepage"}, {"value": "http://services.ands.org.au/documentation/rifcs/schema/registryObjects.xsd", "type": "schema"}, {"value": "http://ands.org.au/standards/rif-cs/registryObjects", "type": "namespace"}, {"value": "https://ands.org.au/standards/rif-cs/registryObjects", "type": "namespace"}], "urls": ["msc:m98", "https://doi.org/10.25504/FAIRsharing.reybx2", "https://www.ands.org.au/online-services/rif-cs-schema", "http://services.ands.org.au/documentation/rifcs/schemadocs/registryObjects.html", "http://services.ands.org.au/documentation/rifcs/schema/registryObjects.xsd", "http://ands.org.au/standards/rif-cs/registryObjects", "https://ands.org.au/standards/rif-cs/registryObjects", "msc:g118"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "RIF-CS"}, "rioxx-metadata-application-profile": {"title": "RIOXX Metadata Application Profile", "identifier": [{"value": "fuji:m5", "type": "local"}, {"value": "https://fairsharing.org/4690", "type": "local"}, {"value": "http://www.rioxx.net/schema/v2.0/rioxx/", "type": "namespace"}, {"value": "https://www.rioxx.net/", "type": "homepage"}, {"value": "https://www.rioxx.net/schema/v2.0/rioxxterms/", "type": "namespace"}, {"value": "http://docs.rioxx.net/schema/v1.0/", "type": "namespace"}], "urls": ["fuji:m5", "https://fairsharing.org/4690", "http://www.rioxx.net/schema/v2.0/rioxx/", "https://www.rioxx.net/", "https://www.rioxx.net/schema/v2.0/rioxxterms/", "http://docs.rioxx.net/schema/v1.0/"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "rioxx"}, "ro-crate": {"title": "RO-Crate", "identifier": [{"value": "https://doi.org/10.25504/FAIRsharing.wUoZKE", "type": "local"}, {"value": "msc:m102", "type": "local"}, {"value": "https://w3id.org/ro/crate", "type": "homepage"}, {"value": "https://w3id.org/ro/crate/1.1/context", "type": "namespace"}, {"value": "https://w3id.org/ro/crate/1.0/context", "type": "namespace"}, {"value": "https://w3id.org/ro/crate/0.2/context", "type": "namespace"}], "urls": ["https://doi.org/10.25504/FAIRsharing.wUoZKE", "msc:m102", "https://w3id.org/ro/crate/1.1", "https://w3id.org/ro/crate", "https://w3id.org/ro/crate/1.1/context", "https://w3id.org/ro/crate/1.0/context", "https://w3id.org/ro/crate/0.2/context"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "schemaorg": {"title": "Schema.org", "identifier": [{"value": "https://doi.org/10.25504/FAIRsharing.hzdzq8", "type": "local"}, {"value": "msc:m101", "type": "local"}, {"value": "https://schema.org", "type": "namespace"}, {"value": "http://schema.org", "type": "namespace"}, {"value": "https://schema.org/docs/schemas.html", "type": "homepage"}], "urls": ["https://doi.org/10.25504/FAIRsharing.hzdzq8", "msc:m101", "https://schema.org", "http://schema.org", "https://schema.org/docs/documents.html", "https://schema.org/docs/schemas.html"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "schemaorg"}, "scholix-metadata-schema": {"title": null, "identifier": [{"value": "fuji:m28", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.B0d5Kn", "type": "local"}, {"value": "http://www.scholix.org/schema", "type": "homepage"}, {"value": "http://www.scholix.org", "type": "namespace"}, {"value": "https://github.com/scholix/schema/blob/master/xsd/v3/schema.xsd", "type": "schema"}, {"value": "https://github.com/scholix/schema/blob/master/xsd/v1/scholix.xsd", "type": "schema"}], "urls": ["fuji:m28", "https://doi.org/10.25504/FAIRsharing.B0d5Kn", "http://www.scholix.org/schema", "http://www.scholix.org", "https://github.com/scholix/schema/blob/master/xsd/v3/schema.xsd", "https://github.com/scholix/schema/blob/master/xsd/v1/scholix.xsd"], "subject_areas": null, "field_of_science": [], "acronym": "scholix"}, "sdac": {"title": "SDAC (Standard for Documentation of Astronomical Catalogues)", "identifier": [{"value": "msc:m37", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.zcjkc7", "type": "local"}, {"value": "http://cds.u-strasbg.fr/doc/catstd.htx", "type": "homepage"}], "urls": ["msc:m37", "https://doi.org/10.25504/FAIRsharing.zcjkc7", "http://cds.u-strasbg.fr/doc/catstd.pdf", "http://cds.u-strasbg.fr/doc/catstd.htx", "msc:g16", "msc:g16"], "subject_areas": ["Astronomy", "Astrophysics"], "field_of_science": ["astronomy", "astrophysics", "natural sciences"], "acronym": null}, "sdmx-statistical-data-and-metadata-exchange": {"title": "SDMX (Statistical Data and Metadata Exchange)", "identifier": [{"value": "msc:m38", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.cea9zc", "type": "local"}, {"value": "http://sdmx.org", "type": "homepage"}, {"value": "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/common", "type": "namespace"}, {"value": "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/registry", "type": "namespace"}, {"value": "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/structure", "type": "namespace"}, {"value": "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/message", "type": "namespace"}, {"value": "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/data", "type": "namespace"}, {"value": "http://www.sdmx.org/resources/sdmxml/", "type": "namespace"}], "urls": ["msc:m38", "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", "https://doi.org/10.25504/FAIRsharing.cea9zc", "http://sdmx.org/?page_id=5008", "http://sdmx.org", "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/common", "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/registry", "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/structure", "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/message", "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/data", "http://www.sdmx.org/resources/sdmxml/", "msc:g42", "msc:g86"], "subject_areas": ["Demography", "Economics", "Human geography", "Social policy", "Statistics"], "field_of_science": ["economics", "statistics and probability", "social geography", "political sciences", "demography", "social sciences", "natural sciences"], "acronym": null}, "shoreline-metadata-profile": {"title": "Shoreline Metadata Profile", "identifier": [{"value": "msc:m75", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.22041b", "type": "local"}, {"value": "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/shoreline-metadata/", "type": "homepage"}], "urls": ["msc:m75", "https://doi.org/10.25504/FAIRsharing.22041b", "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/shoreline-metadata/", "msc:m17"], "subject_areas": ["Hydrology", "Oceanography"], "field_of_science": ["hydrology", "oceanography", "natural sciences"], "acronym": null}, "snrnasm-isa-tab": {"title": "SNRNASM ISA-Tab", "identifier": [{"value": "msc:m76", "type": "local"}, {"value": "http://snrnasm.bio.unc.edu", "type": "homepage"}], "urls": ["msc:m76", "http://snrnasm.bio.unc.edu", "msc:m21"], "subject_areas": ["Biochemistry", "Cell biology"], "field_of_science": ["cell biology", "biochemistry", "natural sciences"], "acronym": null}, "spase-data-model": {"title": "SPASE Data Model", "identifier": [{"value": "msc:m39", "type": "local"}, {"value": "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.f5d440", "type": "local"}, {"value": "http://www.spase-group.org/data/", "type": "homepage"}, {"value": "http://www.spase-group.org/data/schema", "type": "namespace"}, {"value": "https://spase-group.org/data/schema/spase-1.0.0.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-1.1.0.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-1.2.0.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-1.2.1.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-1.2.2.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-1.3.0.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.0.0.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.1.0.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.2.0.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.2.1.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.2.2.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.2.3.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.2.4.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.2.6.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.2.8.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.2.9.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.3.0.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.3.1.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.3.2.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.4.0.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.4.1.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.4.2.xsd", "type": "schema"}, {"value": "https://spase-group.org/data/schema/spase-2.5.0.xsd", "type": "schema"}], "urls": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440", "http://www.spase-group.org/docs/schema/", "http://www.spase-group.org/data/", "http://www.spase-group.org/data/schema", "https://spase-group.org/data/schema/spase-1.0.0.xsd", "https://spase-group.org/data/schema/spase-1.1.0.xsd", "https://spase-group.org/data/schema/spase-1.2.0.xsd", "https://spase-group.org/data/schema/spase-1.2.1.xsd", "https://spase-group.org/data/schema/spase-1.2.2.xsd", "https://spase-group.org/data/schema/spase-1.3.0.xsd", "https://spase-group.org/data/schema/spase-2.0.0.xsd", "https://spase-group.org/data/schema/spase-2.1.0.xsd", "https://spase-group.org/data/schema/spase-2.2.0.xsd", "https://spase-group.org/data/schema/spase-2.2.1.xsd", "https://spase-group.org/data/schema/spase-2.2.2.xsd", "https://spase-group.org/data/schema/spase-2.2.3.xsd", "https://spase-group.org/data/schema/spase-2.2.4.xsd", "https://spase-group.org/data/schema/spase-2.2.6.xsd", "https://spase-group.org/data/schema/spase-2.2.8.xsd", "https://spase-group.org/data/schema/spase-2.2.9.xsd", "https://spase-group.org/data/schema/spase-2.3.0.xsd", "https://spase-group.org/data/schema/spase-2.3.1.xsd", "https://spase-group.org/data/schema/spase-2.3.2.xsd", "https://spase-group.org/data/schema/spase-2.4.0.xsd", "https://spase-group.org/data/schema/spase-2.4.1.xsd", "https://spase-group.org/data/schema/spase-2.4.2.xsd", "https://spase-group.org/data/schema/spase-2.5.0.xsd", "msc:g77", "msc:g87", "http://www.spase-group.org/data/model/spase-2_2_2.pdf", "http://www.spase-group.org/data/model/spase-2_2_3.pdf", "http://www.spase-group.org/data/model/spase-2_2_4.pdf", "http://www.spase-group.org/data/model/spase-2_2_5.pdf", "http://www.spase-group.org/data/model/spase-2_2_6.pdf", "http://www.spase-group.org/data/model/spase-2_2_7.pdf", "http://www.spase-group.org/data/model/spase-2_2_9.pdf", "http://www.spase-group.org/data/model/spase-2_2_8.pdf"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "tabular-data-package": {"title": "Tabular Data Package", "identifier": [{"value": "msc:m77", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.082881", "type": "local"}, {"value": "http://frictionlessdata.io/guides/tabular-data-package/", "type": "homepage"}], "urls": ["msc:m77", "https://doi.org/10.25504/FAIRsharing.082881", "http://frictionlessdata.io/guides/tabular-data-package/", "msc:m10"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "tei-text-encoding-initiative-guidelines": {"title": "TEI (Text Encoding Initiative) Guidelines", "identifier": [{"value": "msc:m99", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.87b86e", "type": "local"}, {"value": "http://www.tei-c.org/Guidelines/P5/", "type": "homepage"}, {"value": "http://www.tei-c.org/ns/1.0", "type": "namespace"}], "urls": ["msc:m99", "https://doi.org/10.25504/FAIRsharing.87b86e", "http://www.tei-c.org/Guidelines/P5/", "https://www.tei-c.org/release/doc/tei-p5-doc/en/html/index.html", "http://www.tei-c.org/ns/1.0", "msc:g120", "10.5281/zenodo.3459202", "10.5281/zenodo.3459220", "10.5281/zenodo.3459231", "10.5281/zenodo.3549615", "10.5281/zenodo.3413524"], "subject_areas": ["History", "Languages"], "field_of_science": ["history", "languages and literature", "humanities"], "acronym": "TEI"}, "tidcc-towards-international-data-commons-crystallography": {"title": "TIDCC (Towards an International Data Commons for Crystallography)", "identifier": [{"value": "msc:m78", "type": "local"}, {"value": "https://fairsharing.org/208", "type": "local"}, {"value": "http://wiki.ecrystals.chem.soton.ac.uk/images/9/9d/ECrystals-WP4-PM-Final.pdf", "type": "homepage"}], "urls": ["msc:m78", "https://fairsharing.org/208", "http://wiki.ecrystals.chem.soton.ac.uk/images/9/9d/ECrystals-WP4-PM-Final.pdf", "msc:m8"], "subject_areas": ["Crystallography"], "field_of_science": ["crystallography", "natural sciences"], "acronym": null}, "uk-agmap-academic-geospatial-metadata-application-profile": {"title": "UK AGMAP (Academic Geospatial Metadata Application Profile)", "identifier": [{"value": "msc:m79", "type": "local"}, {"value": "http://www.gogeo.ac.uk/gogeo/metadata/agmap.htm", "type": "homepage"}], "urls": ["msc:m79", "http://www.gogeo.ac.uk/gogeo/metadata/agmap.htm", "msc:m22"], "subject_areas": ["Cartography", "Geography", "Topography"], "field_of_science": ["cartography", "physical geography", "natural sciences"], "acronym": null}, "uk-gemini": {"title": "UK Gemini", "identifier": [{"value": "msc:m80", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.b49fab", "type": "local"}, {"value": "http://www.agi.org.uk/uk-gemini/", "type": "homepage"}], "urls": ["msc:m80", "https://doi.org/10.25504/FAIRsharing.b49fab", "http://www.agi.org.uk/uk-gemini/", "msc:m22"], "subject_areas": ["Cartography", "Geography", "Topography"], "field_of_science": ["cartography", "physical geography", "natural sciences"], "acronym": null}, "ukeof": {"title": "UKEOF", "identifier": [{"value": "msc:m40", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.9xytp6", "type": "local"}, {"value": "http://www.ukeof.org.uk/", "type": "homepage"}, {"value": "https://cataloguestaging.ukeof.org.uk/schema/ukeof.1.0.0.xsd", "type": "schema"}, {"value": "https://www.ukeof.org.uk/schema/1/UKEOF_v1.0.xsd", "type": "schema"}, {"value": "http://www.ukeof.org.uk/schema/1", "type": "namespace"}], "urls": ["msc:m40", "https://doi.org/10.25504/FAIRsharing.9xytp6", "http://schema.ukeof.org.uk/", "http://www.ukeof.org.uk/", "https://cataloguestaging.ukeof.org.uk/schema/ukeof.1.0.0.xsd", "https://www.ukeof.org.uk/schema/1/UKEOF_v1.0.xsd", "http://www.ukeof.org.uk/schema/1", "msc:g37", "msc:g108", "msc:g109", "msc:g115"], "subject_areas": ["Biogeography", "Biological diversity", "Climatology", "Ecology", "Geology", "Hydrology", "Meteorology", "Remote sensing", "Soil sciences"], "field_of_science": ["meteorology", "engineering and technology", "biological sciences", "soil sciences", "remote sensing", "hydrology", "climatology", "geology", "ecology", "natural sciences"], "acronym": null}, "usgin-iso-profile": {"title": "USGIN (US Geoscience Information Network) Metadata Profile", "identifier": [{"value": "msc:m81", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.c82136", "type": "local"}, {"value": "http://repository.stategeothermaldata.org/repository/resource/98ddf901b9782a25982e01af3b0bda50/", "type": "homepage"}], "urls": ["msc:m81", "https://doi.org/10.25504/FAIRsharing.c82136", "http://repository.stategeothermaldata.org/repository/resource/98ddf901b9782a25982e01af3b0bda50/", "http://usgin.github.io/usginspecs/USGIN_ISO_Metadata.htm", "msc:m22", "msc:g116", "msc:g116"], "subject_areas": ["Earth sciences"], "field_of_science": ["earth and related environmental sciences", "natural sciences"], "acronym": null}, "varioml": {"title": "VarioML", "identifier": [{"value": "msc:m82", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.pxvkt0", "type": "local"}, {"value": "http://www.ncbi.nlm.nih.gov/pubmed/23031277", "type": "homepage"}, {"value": "http://varioml.org/xml/1.0", "type": "namespace"}], "urls": ["msc:m82", "https://doi.org/10.25504/FAIRsharing.pxvkt0", "http://www.ncbi.nlm.nih.gov/pubmed/23031277", "http://varioml.org/xml/1.0", "msc:m27"], "subject_areas": ["Genetics"], "field_of_science": ["genetics", "natural sciences"], "acronym": null}, "waterml": {"title": "WaterML", "identifier": [{"value": "msc:m83", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.e07e1b", "type": "local"}, {"value": "http://www.opengeospatial.org/standards/waterml", "type": "homepage"}, {"value": "https://schemas.opengis.net/waterml/2.0/waterml2.xsd", "type": "schema"}, {"value": "http://www.opengis.net/waterml/2.0", "type": "namespace"}], "urls": ["msc:m83", "https://doi.org/10.25504/FAIRsharing.e07e1b", "http://www.opengeospatial.org/standards/waterml", "https://schemas.opengis.net/waterml/2.0/waterml2.xsd", "http://www.opengis.net/waterml/2.0", "msc:m28"], "subject_areas": ["Hydrology"], "field_of_science": ["hydrology", "natural sciences"], "acronym": null}, "wmo-core-metadata-profile": {"title": "WMO Core Metadata Profile", "identifier": [{"value": "msc:m84", "type": "local"}, {"value": "https://doi.org/10.25504/FAIRsharing.5e7bdc", "type": "local"}, {"value": "https://wis.wmo.int/2012/metadata/", "type": "homepage"}], "urls": ["msc:m84", "https://doi.org/10.25504/FAIRsharing.5e7bdc", "https://wis.wmo.int/2012/metadata/", "msc:m22"], "subject_areas": ["Meteorology"], "field_of_science": ["meteorology", "natural sciences"], "acronym": null}, "xmetadiss-schema": {"title": "XmetaDiss", "identifier": [{"value": "fuji:m43", "type": "local"}, {"value": "https://d-nb.info/standards/schema/xmetadissplus.xsd", "type": "schema"}, {"value": "http://www.d-nb.de/standards/xmetadissplus/", "type": "namespace"}, {"value": "http://www.d-nb.de/standards/xMetaDiss/", "type": "namespace"}, {"value": "http://www.d-nb.de/standards/xMetaDiss/", "type": "homepage"}], "urls": ["fuji:m43", "https://d-nb.info/standards/schema/xmetadissplus.xsd", "http://www.d-nb.de/standards/xmetadissplus/", "http://www.d-nb.de/standards/xMetaDiss/", "http://www.d-nb.de/standards/xMetaDiss/", "https://d-nb.info/1260521133/34"], "subject_areas": ["Multidisciplinary", "Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "sciences", "humanities"], "acronym": "xmetadiss"}, "xoai-metadata-format": {"title": "XOAI, a DSPACE Metadata Format", "identifier": [{"value": "fuji:m6", "type": "local"}, {"value": "https://github.com/DSpace/xoai", "type": "homepage"}, {"value": "http://www.lyncode.com/xoai", "type": "namespace"}], "urls": ["fuji:m6", "https://github.com/DSpace/xoai", "http://www.lyncode.com/xoai"], "subject_areas": null, "field_of_science": [], "acronym": "XOAI"}} \ No newline at end of file +{ + "abcd-access-biological-collection-data": { + "acronym": "ABCD", + "field_of_science": [ + "genetics", + "biological sciences", + "earth and related environmental sciences", + "zoology", + "palaeontology", + "botany", + "geology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m1" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.kr3215" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data" + }, + { + "type": "homepage", + "value": "http://wiki.tdwg.org/ABCD" + }, + { + "type": "schema", + "value": "https://abcd.tdwg.org/xml/ABCD_3.0.xsd" + }, + { + "type": "namespace", + "value": "http://www.tdwg.org/schemas/abcd/3.0" + }, + { + "type": "schema", + "value": "https://abcd.tdwg.org/xml/ABCD_2.1.xsd" + }, + { + "type": "namespace", + "value": "http://www.tdwg.org/schemas/abcd/2.1" + }, + { + "type": "schema", + "value": "https://abcd.tdwg.org/xml/ABCD_2.06.xsd" + }, + { + "type": "namespace", + "value": "http://www.tdwg.org/schemas/abcd/2.06" + } + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Earth sciences", + "Genetics", + "Geology", + "Palaeontology", + "Zoology" + ], + "title": "ABCD (Access to Biological Collection Data)", + "urls": [ + "msc:m1", + "https://doi.org/10.25504/FAIRsharing.kr3215", + "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data", + "http://www.tdwg.org/standards/115/", + "http://wiki.tdwg.org/ABCD", + "https://abcd.tdwg.org/xml/ABCD_3.0.xsd", + "http://www.tdwg.org/schemas/abcd/3.0", + "https://abcd.tdwg.org/xml/ABCD_2.1.xsd", + "http://www.tdwg.org/schemas/abcd/2.1", + "https://abcd.tdwg.org/xml/ABCD_2.06.xsd", + "http://www.tdwg.org/schemas/abcd/2.06", + "msc:g11", + "msc:g44", + "msc:g45" + ] + }, + "abcddna": { + "acronym": "ABCDDNA", + "field_of_science": [ + "genetics", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m42" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.7tx4ac" + }, + { + "type": "homepage", + "value": "http://www.tdwg.org/standards/640/" + }, + { + "type": "schema", + "value": "http://www.dnabank-network.org/schemas/ABCDDNA/ABCDDNA.xsd" + }, + { + "type": "namespace", + "value": "http://www.dnabank-network.org/schemas/ABCDDNA" + } + ], + "subject_areas": [ + "Genetics" + ], + "title": "ABCDDNA", + "urls": [ + "msc:m42", + "https://doi.org/10.25504/FAIRsharing.7tx4ac", + "http://www.tdwg.org/standards/640/", + "http://www.dnabank-network.org/schemas/ABCDDNA/ABCDDNA.xsd", + "http://www.dnabank-network.org/schemas/ABCDDNA", + "msc:m1" + ] + }, + "abcdefg-access-biological-collection-databases-extended-geosciences": { + "acronym": "ABCDEFG", + "field_of_science": [ + "mineralogy", + "earth and related environmental sciences", + "palaeontology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m43" + }, + { + "type": "local", + "value": "https://fairsharing.org/1396" + }, + { + "type": "homepage", + "value": "http://www.geocase.eu/efg" + }, + { + "type": "schema", + "value": "http://www.geocase.eu/sites/geocase.biodiv.naturkundemuseum-berlin.de/documentation/abcdefg.xsd" + }, + { + "type": "namespace", + "value": "http://www.synthesys.info/ABCDEFG/1.0" + } + ], + "subject_areas": [ + "Earth sciences", + "Mineralogy", + "Palaeontology" + ], + "title": "ABCDEFG (Access to Biological Collection Databases Extended for Geosciences)", + "urls": [ + "msc:m43", + "https://fairsharing.org/1396", + "http://www.geocase.eu/efg", + "http://www.geocase.eu/sites/geocase.biodiv.naturkundemuseum-berlin.de/documentation/abcdefg.xsd", + "http://www.synthesys.info/ABCDEFG/1.0", + "msc:m1" + ] + }, + "agls-metadata-profile": { + "acronym": "AGLS", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m44" + }, + { + "type": "local", + "value": "https://fairsharing.org/751" + }, + { + "type": "homepage", + "value": "http://www.agls.gov.au" + }, + { + "type": "namespace", + "value": "http://www.agls.gov.au/agls/terms/" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "AGLS Metadata Profile", + "urls": [ + "msc:m44", + "https://fairsharing.org/751", + "http://www.agls.gov.au", + "http://www.agls.gov.au/agls/terms/", + "msc:m15" + ] + }, + "agmes-agricultural-metadata-element-set": { + "acronym": "AgMES", + "field_of_science": [ + "animal and dairy science", + "fisheries", + "agricultural sciences", + "agriculture" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m2" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.vd694s" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/agmes-agricultural-metadata-element-set" + }, + { + "type": "homepage", + "value": "http://aims.fao.org/standards/agmes" + }, + { + "type": "namespace", + "value": "http://purl.org/agmes/1.1/" + } + ], + "subject_areas": [ + "Agricultural economics", + "Agriculture", + "Aquaculture", + "Livestock" + ], + "title": "AgMES (Agricultural Metadata Element Set)", + "urls": [ + "msc:m2", + "https://doi.org/10.25504/FAIRsharing.vd694s", + "http://www.dcc.ac.uk/resources/metadata-standards/agmes-agricultural-metadata-element-set", + "http://aims.fao.org/es/standards/agmes/namespace-specification", + "http://aims.fao.org/standards/agmes", + "http://purl.org/agmes/1.1/", + "msc:g2", + "http://purl.org/agmes/1.1/" + ] + }, + "agris-application-profile": { + "acronym": "AGRIS", + "field_of_science": [ + "animal and dairy science", + "fisheries", + "agricultural sciences", + "agriculture" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m45" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.32e620" + }, + { + "type": "homepage", + "value": "http://www.fao.org/docrep/008/ae909e/ae909e00.htm" + }, + { + "type": "namespace", + "value": "http://www.fao.org/agris" + } + ], + "subject_areas": [ + "Agricultural economics", + "Agriculture", + "Aquaculture", + "Livestock" + ], + "title": "AGRIS Application Profile", + "urls": [ + "msc:m45", + "https://doi.org/10.25504/FAIRsharing.32e620", + "http://www.fao.org/docrep/008/ae909e/ae909e00.htm", + "http://www.fao.org/agris", + "msc:m2", + "msc:m15" + ] + }, + "amf-academic-metadata-format": { + "acronym": "AMF", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m25" + }, + { + "type": "local", + "value": "https://fairsharing.org/4646" + }, + { + "type": "namespace", + "value": "http://amf.openlib.org" + }, + { + "type": "homepage", + "value": "http://amf.openlib.org" + }, + { + "type": "schema", + "value": "http://amf.openlib.org/2001/amf.xsd" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Academic Metadata Format", + "urls": [ + "fuji:m25", + "https://fairsharing.org/4646", + "http://openlib.org/home/krichel/ebisu.html", + "http://amf.openlib.org", + "http://amf.openlib.org", + "http://amf.openlib.org/2001/amf.xsd" + ] + }, + "anzlic-metadata-profile": { + "acronym": "ANZLIC", + "field_of_science": [ + "cartography", + "physical geography", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m46" + }, + { + "type": "local", + "value": "https://fairsharing.org/820" + }, + { + "type": "homepage", + "value": "https://www.anzlic.gov.au/resources/anzlic-metadata-profile" + } + ], + "subject_areas": [ + "Cartography", + "Geography", + "Topography" + ], + "title": "ANZLIC Metadata Profile", + "urls": [ + "msc:m46", + "https://fairsharing.org/820", + "https://www.anzlic.gov.au/resources/anzlic-metadata-profile", + "msc:m15", + "msc:m22" + ] + }, + "apple-core": { + "acronym": "aDwC", + "field_of_science": [ + "botany", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m47" + }, + { + "type": "local", + "value": "https://fairsharing.org/726" + }, + { + "type": "homepage", + "value": "http://code.google.com/p/applecore/wiki/Introduction" + } + ], + "subject_areas": [ + "Botany" + ], + "title": "Apple Core", + "urls": [ + "msc:m47", + "https://fairsharing.org/726", + "http://code.google.com/p/applecore/wiki/Introduction", + "msc:m9" + ] + }, + "ariadne-dataset-catalogue-model": { + "acronym": "ACDM", + "field_of_science": [ + "archaeology", + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m19" + }, + { + "type": "local", + "value": "https://fairsharing.org/4647" + }, + { + "type": "schema", + "value": "http://ariadne-registry.dcu.gr/schema_definition/6.7/acdm.xsd" + }, + { + "type": "schema", + "value": "http://ariadne-registry.dcu.gr/schema_definition/6.8/acdm.xsd" + }, + { + "type": "schema", + "value": "http://ariadne-registry.dcu.gr/schema_definition/6.9/acdm.xsd" + }, + { + "type": "schema", + "value": "http://ariadne-registry.dcu.gr/schema_definition/sample_ariadne_xml.xsd" + }, + { + "type": "schema", + "value": "http://ariadne-registry.dcu.gr/schema-definition/sample_ariadne_xml.xsd" + }, + { + "type": "namespace", + "value": "http://registry.ariadne-infrastructure.eu/" + }, + { + "type": "namespace", + "value": "https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/" + }, + { + "type": "namespace", + "value": "https://www.ariadne-infrastructure.eu/resource/ao/" + }, + { + "type": "namespace", + "value": "http://ariadne-registry.dcu.gr/schema-definition" + }, + { + "type": "homepage", + "value": "http://ariadne-registry.dcu.gr/" + } + ], + "subject_areas": [ + "Archaeology" + ], + "title": "ARIADNE Dataset Catalogue Model (ACDM)", + "urls": [ + "fuji:m19", + "https://fairsharing.org/4647", + "http://ariadne-registry.dcu.gr/schema_definition/6.7/acdm.xsd", + "http://ariadne-registry.dcu.gr/schema_definition/6.8/acdm.xsd", + "http://ariadne-registry.dcu.gr/schema_definition/6.9/acdm.xsd", + "http://ariadne-registry.dcu.gr/schema_definition/sample_ariadne_xml.xsd", + "http://ariadne-registry.dcu.gr/schema-definition/sample_ariadne_xml.xsd", + "http://registry.ariadne-infrastructure.eu/", + "https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/", + "https://www.ariadne-infrastructure.eu/resource/ao/", + "http://ariadne-registry.dcu.gr/schema-definition", + "http://ariadne-registry.dcu.gr/" + ] + }, + "asset-description-metadata-schema-adms": { + "acronym": "ADMS", + "field_of_science": [ + "political sciences", + "social sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m48" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.es2t25" + }, + { + "type": "homepage", + "value": "http://www.w3.org/TR/vocab-adms/" + }, + { + "type": "namespace", + "value": "http://www.w3.org/ns/adms#" + } + ], + "subject_areas": [ + "Social policy" + ], + "title": "Asset Description Metadata Schema (ADMS)", + "urls": [ + "msc:m48", + "https://doi.org/10.25504/FAIRsharing.es2t25", + "http://www.w3.org/TR/vocab-adms/", + "http://www.w3.org/ns/adms#", + "msc:m12" + ] + }, + "atom-syndication-format": { + "acronym": "ATOM", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m13" + }, + { + "type": "local", + "value": "https://fairsharing.org/4648" + }, + { + "type": "namespace", + "value": "https://www.w3.org/2005/Atom" + }, + { + "type": "namespace", + "value": "http://www.w3.org/2005/Atom" + }, + { + "type": "homepage", + "value": "https://datatracker.ietf.org/wg/atompub/about/" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "The Atom Syndication Format", + "urls": [ + "fuji:m13", + "https://fairsharing.org/4648", + "https://www.w3.org/2005/Atom", + "http://www.w3.org/2005/Atom", + "https://datatracker.ietf.org/wg/atompub/about/", + "https://datatracker.ietf.org/doc/html/rfc4287" + ] + }, + "avm-astronomy-visualization-metadata": { + "acronym": "AVM", + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m3" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.338ze0" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/avm-astronomy-visualization-metadata" + }, + { + "type": "homepage", + "value": "http://www.virtualastronomy.org/avm_metadata.php" + }, + { + "type": "namespace", + "value": "http://www.communicatingastronomy.org/avm/1.0/" + } + ], + "subject_areas": [ + "Astronomy" + ], + "title": "AVM (Astronomy Visualization Metadata)", + "urls": [ + "msc:m3", + "https://doi.org/10.25504/FAIRsharing.338ze0", + "http://www.dcc.ac.uk/resources/metadata-standards/avm-astronomy-visualization-metadata", + "http://www.virtualastronomy.org/avm_metadata.php#2", + "http://www.virtualastronomy.org/avm_metadata.php", + "http://www.communicatingastronomy.org/avm/1.0/", + "msc:g88" + ] + }, + "bibtex-format": { + "acronym": "BibTeX", + "field_of_science": [], + "identifier": [ + { + "type": "local", + "value": "fuji:m34" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.bdf2fe" + }, + { + "type": "homepage", + "value": "http://www.bibtex.org/" + }, + { + "type": "namespace", + "value": "http://clarin-pl.eu/ns/experimental/bibtex" + }, + { + "type": "namespace", + "value": "http://lindat.mff.cuni.cz/ns/experimental/bibtex" + }, + { + "type": "namespace", + "value": "http://repository.clarin.dk/ns/experimental/bibtex" + } + ], + "subject_areas": null, + "title": "BibTeX", + "urls": [ + "fuji:m34", + "https://doi.org/10.25504/FAIRsharing.bdf2fe", + "http://www.bibtex.org/", + "http://clarin-pl.eu/ns/experimental/bibtex", + "http://lindat.mff.cuni.cz/ns/experimental/bibtex", + "http://repository.clarin.dk/ns/experimental/bibtex" + ] + }, + "carare-metadata-schema": { + "acronym": "CARARE", + "field_of_science": [ + "architectural design", + "archaeology", + "history", + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m49" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.ba7c93" + }, + { + "type": "homepage", + "value": "https://pro.carare.eu/doku.php?id=support:metadata-schema" + }, + { + "type": "namespace", + "value": "http://www.carare.eu/carareSchema" + }, + { + "type": "schema", + "value": "https://pro.carare.eu/lib/exe/fetch.php?media=support:carare-v1_0_6_1.xsd" + } + ], + "subject_areas": [ + "Archaeology", + "Architecture", + "Cultural heritage", + "Cultural property preservation", + "History" + ], + "title": "CARARE metadata schema", + "urls": [ + "msc:m49", + "https://doi.org/10.25504/FAIRsharing.ba7c93", + "https://pro.carare.eu/doku.php?id=support:metadata-schema", + "http://www.carare.eu/carareSchema", + "https://pro.carare.eu/lib/exe/fetch.php?media=support:carare-v1_0_6_1.xsd", + "msc:m24" + ] + }, + "cdwa-lite-schema": { + "acronym": "cdwa-lite", + "field_of_science": [ + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m30" + }, + { + "type": "local", + "value": "https://fairsharing.org/4649" + }, + { + "type": "homepage", + "value": "https://www.getty.edu/research/publications/electronic_publications/cdwa/cdwalite.html" + }, + { + "type": "namespace", + "value": "https://www.getty.edu/CDWA/CDWALite" + }, + { + "type": "schema", + "value": "http://www.getty.edu/CDWA/CDWALite/CDWALite-xsd-public-v1-1.xsd" + }, + { + "type": "schema", + "value": "http://www.getty.edu/CDWA/CDWALite/CDWALite-xsd-public-v1-0.xsd" + } + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "CDWA Lite", + "urls": [ + "fuji:m30", + "https://fairsharing.org/4649", + "https://www.getty.edu/research/publications/electronic_publications/cdwa/cdwalite.pdf", + "https://www.getty.edu/research/publications/electronic_publications/cdwa/cdwalite.html", + "https://www.getty.edu/CDWA/CDWALite", + "http://www.getty.edu/CDWA/CDWALite/CDWALite-xsd-public-v1-1.xsd", + "http://www.getty.edu/CDWA/CDWALite/CDWALite-xsd-public-v1-0.xsd" + ] + }, + "cedar-template-model": { + "acronym": "CEDAR", + "field_of_science": [ + "medical engineering", + "agriculture", + "earth and related environmental sciences", + "medical and health sciences", + "natural sciences", + "public administration", + "engineering and technology", + "agricultural sciences", + "social sciences", + "clinical medicine" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m94" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.V527H4" + }, + { + "type": "homepage", + "value": "https://more.metadatacenter.org/tools-training/outreach/cedar-template-model" + } + ], + "subject_areas": [ + "Administration", + "Agricultural research", + "Clinical medicine", + "Earth sciences", + "Medical information systems" + ], + "title": "CEDAR Template Model", + "urls": [ + "msc:m94", + "https://doi.org/10.25504/FAIRsharing.V527H4", + "https://more.metadatacenter.org/tools-training/outreach/cedar-template-model", + "https://more.metadatacenter.org/sites/default/files/artifact/CEDAR%20Template%20Model%20v1.5.0_0.pdf" + ] + }, + "cerif": { + "acronym": "CERIF", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m4" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.6945dq" + }, + { + "type": "homepage", + "value": "http://www.eurocris.org/cerif/main-features-cerif" + }, + { + "type": "schema", + "value": "https://www.eurocris.org/Uploads/Web%20pages/CERIF-1.6/CERIF_1.6_2.xsd" + }, + { + "type": "schema", + "value": "https://www.eurocris.org/Uploads/Web%20pages/CERIF-1.5/CERIF_1.5_1.xsd" + }, + { + "type": "schema", + "value": "https://www.openaire.eu/schema/cris/1.1/openaire-cerif-profile.xsd" + }, + { + "type": "namespace", + "value": "urn:xmlns:org:eurocris:cerif-1.6-2" + }, + { + "type": "namespace", + "value": "urn:xmlns:org:eurocris:cerif-1.5-1" + }, + { + "type": "namespace", + "value": "urn:xmlns:org:eurocris:cerif-1.4-0" + }, + { + "type": "namespace", + "value": "http://www.eurocris.org/ontologies/cerif/1.3#" + }, + { + "type": "namespace", + "value": "https://www.openaire.eu/cerif-profile/1.1/" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "CERIF (Common European Research Information Format)", + "urls": [ + "msc:m4", + "https://doi.org/10.25504/FAIRsharing.6945dq", + "http://www.eurocris.org/Uploads/Web%20pages/CERIF-1.6/documentation/MInfo.html", + "http://www.eurocris.org/cerif/main-features-cerif", + "https://www.eurocris.org/Uploads/Web%20pages/CERIF-1.6/CERIF_1.6_2.xsd", + "https://www.eurocris.org/Uploads/Web%20pages/CERIF-1.5/CERIF_1.5_1.xsd", + "https://www.openaire.eu/schema/cris/1.1/openaire-cerif-profile.xsd", + "urn:xmlns:org:eurocris:cerif-1.6-2", + "urn:xmlns:org:eurocris:cerif-1.5-1", + "urn:xmlns:org:eurocris:cerif-1.4-0", + "http://www.eurocris.org/ontologies/cerif/1.3#", + "https://www.openaire.eu/cerif-profile/1.1/", + "msc:g112", + "msc:g99", + "msc:g100" + ] + }, + "cessda-mli-council-european-social-science-data-archives-minimum-level-inf": { + "acronym": null, + "field_of_science": [ + "economics", + "social geography", + "sociology", + "demography", + "social sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m50" + }, + { + "type": "local", + "value": "https://fairsharing.org/4272" + }, + { + "type": "homepage", + "value": "http://www.cessda.org/sharing/managing/3/" + } + ], + "subject_areas": [ + "Demography", + "Economics", + "Land use", + "Sociology" + ], + "title": "CESSDA MLI - Council of European Social Science Data Archives Minimum Level of Information", + "urls": [ + "msc:m50", + "https://fairsharing.org/4272", + "http://www.cessda.org/sharing/managing/3/", + "msc:m13" + ] + }, + "cf-climate-and-forecast-metadata-conventions": { + "acronym": "CF", + "field_of_science": [ + "climatology", + "meteorology", + "oceanography", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m5" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.f8cd83" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions" + }, + { + "type": "homepage", + "value": "http://cfconventions.org/" + } + ], + "subject_areas": [ + "Climatology", + "Meteorology", + "Oceanography" + ], + "title": "CF (Climate and Forecast) Metadata Conventions", + "urls": [ + "msc:m5", + "https://doi.org/10.25504/FAIRsharing.f8cd83", + "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions", + "http://cfconventions.org/documents.html", + "http://cfconventions.org/", + "msc:g7", + "msc:g13", + "msc:g68", + "msc:g74", + "msc:g80", + "msc:g83", + "msc:g92" + ] + }, + "chardm-astronomical-dataset-characterisation": { + "acronym": "CharDM", + "field_of_science": [], + "identifier": [ + { + "type": "local", + "value": "fuji:m29" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.yYjZWb" + }, + { + "type": "homepage", + "value": "https://www.ivoa.net/documents/cover/CharacterisationDM-20070530.html" + }, + { + "type": "schema", + "value": "http://www.ivoa.net/xml/Characterisation/Characterisation-v1.11.xsd" + } + ], + "subject_areas": null, + "title": "CharDM, Data Model for Astronomical DataSet Characterisation", + "urls": [ + "fuji:m29", + "https://doi.org/10.25504/FAIRsharing.yYjZWb", + "https://www.ivoa.net/documents/cover/CharacterisationDM-20070530.html", + "http://www.ivoa.net/xml/Characterisation/Characterisation-v1.11.xsd" + ] + }, + "cif-crystallographic-information-framework": { + "acronym": "CIF", + "field_of_science": [ + "materials engineering", + "chemical sciences", + "crystallography", + "engineering and technology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m6" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.zr52g5" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/cif-crystallographic-information-framework" + }, + { + "type": "homepage", + "value": "http://www.iucr.org/resources/cif" + } + ], + "subject_areas": [ + "Chemistry", + "Crystallography", + "Materials engineering" + ], + "title": "CIF (Crystallographic Information Framework)", + "urls": [ + "msc:m6", + "https://doi.org/10.25504/FAIRsharing.zr52g5", + "http://www.dcc.ac.uk/resources/metadata-standards/cif-crystallographic-information-framework", + "http://www.iucr.org/resources/cif/spec", + "http://www.iucr.org/resources/cif", + "msc:g3", + "msc:g14", + "msc:g27" + ] + }, + "cim-common-information-model": { + "acronym": "CIM", + "field_of_science": [ + "climatology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m7" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.k3z4q9" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/cim-common-information-model" + }, + { + "type": "homepage", + "value": "https://earthsystemcog.org/projects/es-doc-models/cim" + }, + { + "type": "schema", + "value": "https://github.com/ES-DOC/esdoc-cim/blob/v1.10.0/cim.xsd" + } + ], + "subject_areas": [ + "Climatology" + ], + "title": "CIM (Common Information Model)", + "urls": [ + "msc:m7", + "https://doi.org/10.25504/FAIRsharing.k3z4q9", + "http://www.dcc.ac.uk/resources/metadata-standards/cim-common-information-model", + "https://earthsystemcog.org/projects/es-doc-models/cim_versions", + "https://earthsystemcog.org/projects/es-doc-models/cim", + "https://github.com/ES-DOC/esdoc-cim/blob/v1.10.0/cim.xsd", + "msc:g23", + "msc:g24", + "msc:g25", + "msc:g34" + ] + }, + "clarivate-data-citation-index-schema": { + "acronym": "dci", + "field_of_science": [ + "library sciences", + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m39" + }, + { + "type": "namespace", + "value": "https://clarivate.com/products/web-of-science/web-science-form/data-citation-index/" + }, + { + "type": "homepage", + "value": "https://clarivate.com/products/scientific-and-academic-research/research-discovery-and-workflow-solutions/webofscience-platform/data-citation-index/" + } + ], + "subject_areas": [ + "Bibliographic standards" + ], + "title": "Clarivate Data Citation Index Schema", + "urls": [ + "fuji:m39", + "https://clarivate.com/products/web-of-science/web-science-form/data-citation-index/", + "https://clarivate.com/products/scientific-and-academic-research/research-discovery-and-workflow-solutions/webofscience-platform/data-citation-index/" + ] + }, + "cmd-component-metadata": { + "acronym": "CMDI", + "field_of_science": [ + "languages and literature", + "linguistics", + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m6" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.2e0599" + }, + { + "type": "namespace", + "value": "http://www.clarin.eu/cmd/" + }, + { + "type": "namespace", + "value": "https://www.clarin.eu/cmd/1" + }, + { + "type": "homepage", + "value": "https://www.clarin.eu/content/component-metadata" + }, + { + "type": "namespace", + "value": "http://www.clarin.eu/cmd/1" + }, + { + "type": "schema", + "value": "http://infra.clarin.eu/CMDI/1.x/xsd/cmd-envelop.xsd" + }, + { + "type": "schema", + "value": "http://catalog.clarin.eu/ds/ComponentRegistry/rest/registry/profiles/clarin.eu:cr1:p_1290431694484/xsd" + }, + { + "type": "schema", + "value": "https://infra.clarin.eu/CMDI/1.x/xsd/cmd-envelop.xsd" + }, + { + "type": "schema", + "value": "http://www.clarin.eu/cmd/1/profiles/clarin.eu:cr1:p_1290431694484" + }, + { + "type": "schema", + "value": "https://catalog.clarin.eu/ds/ComponentRegistry/rest/registry/1.x/profiles/clarin.eu:cr1:p_1290431694484/xsd" + } + ], + "subject_areas": [ + "Linguistics", + "Languages" + ], + "title": "Component MetaData Specification (CMDI)", + "urls": [ + "fuji:m6", + "https://doi.org/10.25504/FAIRsharing.2e0599", + "http://www.clarin.eu/cmd/", + "https://www.clarin.eu/cmd/1", + "https://www.clarin.eu/content/component-metadata", + "https://pure.mpg.de/pubman/faces/ViewItemOverviewPage.jsp?itemId=item_1480943", + "http://www.clarin.eu/cmd/1", + "http://infra.clarin.eu/CMDI/1.x/xsd/cmd-envelop.xsd", + "http://catalog.clarin.eu/ds/ComponentRegistry/rest/registry/profiles/clarin.eu:cr1:p_1290431694484/xsd", + "https://infra.clarin.eu/CMDI/1.x/xsd/cmd-envelop.xsd", + "http://www.clarin.eu/cmd/1/profiles/clarin.eu:cr1:p_1290431694484", + "https://catalog.clarin.eu/ds/ComponentRegistry/rest/registry/1.x/profiles/clarin.eu:cr1:p_1290431694484/xsd" + ] + }, + "coards-conventions": { + "acronym": null, + "field_of_science": [ + "climatology", + "meteorology", + "oceanography", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m51" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.9614ca" + }, + { + "type": "homepage", + "value": "http://ferret.wrc.noaa.gov/noaa_coop/coop_cdf_profile.html" + } + ], + "subject_areas": [ + "Climatology", + "Meteorology", + "Oceanography" + ], + "title": "COARDS Conventions", + "urls": [ + "msc:m51", + "https://doi.org/10.25504/FAIRsharing.9614ca", + "http://ferret.wrc.noaa.gov/noaa_coop/coop_cdf_profile.html", + "msc:m5" + ] + }, + "crossref-schema": { + "acronym": "crossref", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m40" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.bbQbSW" + }, + { + "type": "homepage", + "value": "http://www.crossref.org/schema" + }, + { + "type": "namespace", + "value": "http://www.crossref.org/schema/4.4.0" + }, + { + "type": "schema", + "value": "https://data.crossref.org/schemas/crossref4.4.0.xsd" + }, + { + "type": "schema", + "value": "https://data.crossref.org/schemas/crossref4.3.7.xsd" + }, + { + "type": "namespace", + "value": "http://www.crossref.org/schema/4.3.7" + }, + { + "type": "namespace", + "value": "http://www.crossref.org/schema/4.4.1" + }, + { + "type": "schema", + "value": "https://data.crossref.org/schemas/crossref4.4.1.xsd" + }, + { + "type": "namespace", + "value": "http://www.crossref.org/schema/4.4.2" + }, + { + "type": "schema", + "value": "https://data.crossref.org/schemas/crossref4.4.2.xsd" + }, + { + "type": "namespace", + "value": "http://www.crossref.org/schema/4.8.1" + }, + { + "type": "schema", + "value": "https://data.crossref.org/schemas/crossref4.8.1.xsd" + }, + { + "type": "namespace", + "value": "http://www.crossref.org/schema/5.3.1" + }, + { + "type": "schema", + "value": "https://data.crossref.org/schemas/crossref5.3.1.xsd" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Crossref Schema", + "urls": [ + "fuji:m40", + "https://doi.org/10.25504/FAIRsharing.bbQbSW", + "http://www.crossref.org/schema", + "http://www.crossref.org/schema/4.4.0", + "https://data.crossref.org/schemas/crossref4.4.0.xsd", + "https://data.crossref.org/schemas/crossref4.3.7.xsd", + "http://www.crossref.org/schema/4.3.7", + "http://www.crossref.org/schema/4.4.1", + "https://data.crossref.org/schemas/crossref4.4.1.xsd", + "http://www.crossref.org/schema/4.4.2", + "https://data.crossref.org/schemas/crossref4.4.2.xsd", + "http://www.crossref.org/schema/4.8.1", + "https://data.crossref.org/schemas/crossref4.8.1.xsd", + "http://www.crossref.org/schema/5.3.1", + "https://data.crossref.org/schemas/crossref5.3.1.xsd" + ] + }, + "cruise-summary-reports": { + "acronym": "CSR", + "field_of_science": [ + "meteorology", + "earth and related environmental sciences", + "glaciology", + "oceanography", + "climatology", + "hydrology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m52" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.e36460" + }, + { + "type": "homepage", + "value": "http://www.seadatanet.org/Metadata/CSR" + }, + { + "type": "namespace", + "value": "http://www.seadatanet.org" + }, + { + "type": "schema", + "value": "http://schemas.seadatanet.org/Standards-Software/Metadata-formats/SDN_CSR_ISO19139_5.2.0.xsd" + }, + { + "type": "schema", + "value": "http://schemas.seadatanet.org/StandardsSoftware/Metadata-formats/SDN2_CSR_ISO19139_5.0.0.xsd" + } + ], + "subject_areas": [ + "Climatology", + "Earth sciences", + "Glaciology", + "Hydrology", + "Meteorology", + "Oceanography" + ], + "title": "Cruise Summary Reports", + "urls": [ + "msc:m52", + "https://doi.org/10.25504/FAIRsharing.e36460", + "http://www.seadatanet.org/Metadata/CSR", + "http://www.seadatanet.org", + "http://schemas.seadatanet.org/Standards-Software/Metadata-formats/SDN_CSR_ISO19139_5.2.0.xsd", + " http://schemas.seadatanet.org/StandardsSoftware/Metadata-formats/SDN2_CSR_ISO19139_5.0.0.xsd", + "msc:m22" + ] + }, + "csdgm-extensions-remote-sensing-metadata": { + "acronym": "CSDGM", + "field_of_science": [ + "meteorology", + "oceanography", + "climatology", + "hydrology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m53" + }, + { + "type": "local", + "value": "https://fairsharing.org/1445" + }, + { + "type": "homepage", + "value": "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/csdgm_rs_ex/MetadataRemoteSensingExtens.pdf" + } + ], + "subject_areas": [ + "Climatology", + "Hydrology", + "Meteorology", + "Oceanography" + ], + "title": "CSDGM Extensions for Remote Sensing Metadata", + "urls": [ + "msc:m53", + "https://fairsharing.org/1445", + "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/csdgm_rs_ex/MetadataRemoteSensingExtens.pdf", + "msc:m17" + ] + }, + "csmd-cclrc-core-scientific-metadata-model": { + "acronym": "CSMD", + "field_of_science": [ + "materials engineering", + "chemical sciences", + "crystallography", + "biochemistry", + "engineering and technology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m8" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.30fk89" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/csmd-cclrc-core-scientific-metadata-model" + }, + { + "type": "homepage", + "value": "http://icatproject-contrib.github.io/CSMD/" + }, + { + "type": "namespace", + "value": "http://www.purl.org/net/CSMD/4.0#" + }, + { + "type": "namespace", + "value": "http://www.escience.clrc.ac.uk/schemas/scientific" + } + ], + "subject_areas": [ + "Biochemistry", + "Chemistry", + "Crystallography", + "Materials engineering" + ], + "title": "CSMD (Core Scientific Metadata Model)", + "urls": [ + "msc:m8", + "https://doi.org/10.25504/FAIRsharing.30fk89", + "http://www.dcc.ac.uk/resources/metadata-standards/csmd-cclrc-core-scientific-metadata-model", + "http://icatproject-contrib.github.io/CSMD/", + "http://www.purl.org/net/CSMD/4.0#", + "http://www.escience.clrc.ac.uk/schemas/scientific", + "msc:g28", + "msc:g52" + ] + }, + "csw-catalogue-schema": { + "acronym": "CSW", + "field_of_science": [ + "earth and related environmental sciences", + "cartography", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m32" + }, + { + "type": "local", + "value": "https://fairsharing.org/4650" + }, + { + "type": "schema", + "value": "http://schemas.opengis.net/csw/2.0.2/CSW-publication.xsd" + }, + { + "type": "namespace", + "value": "http://www.opengis.net/cat/csw/2.0.2" + }, + { + "type": "namespace", + "value": "http://www.opengis.net/cat/csw/3.0" + }, + { + "type": "schema", + "value": "http://schemas.opengis.net/cat/csw/3.0/cswAll.xsd" + }, + { + "type": "homepage", + "value": "https://www.ogc.org/standard/cat/" + } + ], + "subject_areas": [ + "Cartography", + "Earth sciences" + ], + "title": "Catalogue Service for the Web", + "urls": [ + "fuji:m32", + "https://fairsharing.org/4650", + "http://schemas.opengis.net/csw/2.0.2/CSW-publication.xsd", + "http://www.opengis.net/cat/csw/2.0.2", + "http://www.opengis.net/cat/csw/3.0", + "http://schemas.opengis.net/cat/csw/3.0/cswAll.xsd", + "https://www.ogc.org/standard/cat/" + ] + }, + "dara-metadata-schema": { + "acronym": "da|ra", + "field_of_science": [ + "political sciences", + "social sciences", + "sociology" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m10" + }, + { + "type": "local", + "value": "https://fairsharing.org/4651" + }, + { + "type": "namespace", + "value": "http://da-ra.de/schema/kernel-4" + }, + { + "type": "schema", + "value": "http://da-ra.de/dara/schemadefinitions/dara.xsd" + }, + { + "type": "schema", + "value": "dara_v2.2.1_de_en_19112012.xsd" + }, + { + "type": "schema", + "value": "http://www.da-ra.de/fileadmin/media/da-ra.de/Technik/dara_v3.1_de_en_18112014.xsd" + }, + { + "type": "homepage", + "value": "https://www.da-ra.de/downloads#metadata" + } + ], + "subject_areas": [ + "Social policy", + "Sociology" + ], + "title": "da|ra Metadata Schema", + "urls": [ + "fuji:m10", + "https://fairsharing.org/4651", + "http://da-ra.de/schema/kernel-4", + "http://da-ra.de/dara/schemadefinitions/dara.xsd", + "dara_v2.2.1_de_en_19112012.xsd", + "http://www.da-ra.de/fileadmin/media/da-ra.de/Technik/dara_v3.1_de_en_18112014.xsd", + "https://www.da-ra.de/downloads#version-3-0", + "https://www.da-ra.de/downloads#metadata" + ] + }, + "darwin-core": { + "acronym": "DwC", + "field_of_science": [ + "cartography", + "biological sciences", + "earth and related environmental sciences", + "zoology", + "physical geography", + "marine biology", + "botany", + "oceanography", + "palaeontology", + "ecology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m9" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.xvf5y3" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core" + }, + { + "type": "homepage", + "value": "http://rs.tdwg.org/dwc/index.htm" + }, + { + "type": "namespace", + "value": "http://rs.tdwg.org/dwc/terms/" + }, + { + "type": "namespace", + "value": "http://rs.tdwg.org/dwc/iri/" + }, + { + "type": "schema", + "value": "http://rs.tdwg.org/dwc/xsd/tdwg_dwc_simple.xsd" + } + ], + "subject_areas": [ + "Biogeography", + "Biological diversity", + "Botany", + "Cartography", + "Earth sciences", + "Ecology", + "Marine animals", + "Oceanography", + "Palaeontology", + "Physical geography", + "Topography", + "Zoology" + ], + "title": "Darwin Core", + "urls": [ + "msc:m9", + "https://doi.org/10.25504/FAIRsharing.xvf5y3", + "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core", + "http://www.tdwg.org/standards/450", + "http://rs.tdwg.org/dwc/index.htm", + "http://rs.tdwg.org/dwc/terms/", + "http://rs.tdwg.org/dwc/iri/", + "http://rs.tdwg.org/dwc/xsd/tdwg_dwc_simple.xsd", + "msc:g4", + "msc:g44", + "msc:g78", + "msc:g85", + "msc:g94" + ] + }, + "darwin-core-geospatial-extension": { + "acronym": "DwC-S", + "field_of_science": [ + "physical geography", + "cartography", + "biological sciences", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m54" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.76c06d" + }, + { + "type": "homepage", + "value": "http://wiki.tdwg.org/twiki/bin/view/DarwinCore/GeospatialExtension" + } + ], + "subject_areas": [ + "Biogeography", + "Cartography", + "Topography" + ], + "title": "Darwin Core Geospatial Extension", + "urls": [ + "msc:m54", + "https://doi.org/10.25504/FAIRsharing.76c06d", + "http://wiki.tdwg.org/twiki/bin/view/DarwinCore/GeospatialExtension", + "msc:m9" + ] + }, + "data-package": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m10" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.3b861d" + }, + { + "type": "homepage", + "value": "https://frictionlessdata.io/data-packages/" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Data Package", + "urls": [ + "msc:m10", + "https://doi.org/10.25504/FAIRsharing.3b861d", + "https://frictionlessdata.io/specs/data-package/", + "https://frictionlessdata.io/data-packages/", + "msc:g101", + "msc:g29" + ] + }, + "datacite-metadata-schema": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m11" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.me4qwe" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + }, + { + "type": "homepage", + "value": "http://schema.datacite.org" + }, + { + "type": "namespace", + "value": "http://datacite.org/schema/kernel" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema", + "urls": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema", + "http://schema.datacite.org", + "http://datacite.org/schema/kernel", + "msc:g18", + "msc:g37", + "msc:g64", + "msc:g112", + "10.5438/0003", + "10.5438/0004", + "http://schema.datacite.org/meta/kernel-2.1/doc/DataCite-MetadataKernel_v2.2.pdf", + "http://schema.datacite.org/meta/kernel-2.1/metadata.xsd", + "http://datacite.org/schema/kernel-2.1", + "10.5438/0005", + "10.5438/0006", + "http://schema.datacite.org/meta/kernel-2.2/doc/DataCite-MetadataKernel_v2.2.pdf", + "http://schema.datacite.org/meta/kernel-2.2/metadata.xsd", + "http://datacite.org/schema/kernel-2.2", + "10.5438/0008", + "10.5438/0009", + "http://schema.datacite.org/meta/kernel-3.0/doc/DataCite-MetadataKernel_v3.0.pdf", + "http://schema.datacite.org/meta/kernel-3.0/metadata.xsd", + "http://datacite.org/schema/kernel-3", + "10.5438/0010", + "10.5438/0011", + "http://schema.datacite.org/meta/kernel-3.1/doc/DataCite-MetadataKernel_v3.1.pdf", + "http://schema.datacite.org/meta/kernel-3.1/metadata.xsd", + "http://datacite.org/schema/kernel-3.1", + "10.5438/0012", + "10.5438/0013", + "http://schema.datacite.org/meta/kernel-4.0/doc/DataCite-MetadataKernel_v4.0.pdf", + "http://schema.datacite.org/meta/kernel-4.0/metadata.xsd", + "http://datacite.org/schema/kernel-4" + ] + }, + "dcat-data-catalog-vocabulary": { + "acronym": "DCAT", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m12" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.h4j3qm" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary" + }, + { + "type": "homepage", + "value": "http://www.w3.org/TR/vocab-dcat/" + }, + { + "type": "homepage", + "value": "https://www.w3.org/2017/dxwg/wiki/Main_Page" + }, + { + "type": "namespace", + "value": "http://www.w3.org/ns/dcat#" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DCAT (Data Catalog Vocabulary)", + "urls": [ + "https://www.w3.org/TR/vocab-dcat/#class-dataset", + "https://www.w3.org/TR/vocab-dcat/#class-catalog", + "msc:m12", + "https://doi.org/10.25504/FAIRsharing.h4j3qm", + "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary", + "http://www.w3.org/TR/vocab-dcat/", + "https://www.w3.org/ns/dcat.ttl", + "https://www.w3.org/2017/dxwg/wiki/Main_Page", + "http://www.w3.org/ns/dcat#", + "msc:m15", + "msc:g106" + ] + }, + "ddi-data-documentation-initiative": { + "acronym": "DDI", + "field_of_science": [ + "history", + "humanities", + "law", + "economics", + "statistics and probability", + "social geography", + "medical and health sciences", + "political sciences", + "sociology", + "natural sciences", + "demography", + "social sciences", + "public health" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m13" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.1t5ws6" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.EZCpPd" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + }, + { + "type": "homepage", + "value": "http://www.ddialliance.org/" + }, + { + "type": "namespace", + "value": "http://www.icpsr.umich.edu/DDI" + }, + { + "type": "schema", + "value": "http://www.ddialliance.org/DDI/schema/ddi3.1/dataset.xsd" + }, + { + "type": "namespace", + "value": "ddi:codebook:2_5" + }, + { + "type": "namespace", + "value": "ddi:dataset:3_3" + }, + { + "type": "namespace", + "value": "ddi:dataset:3_2" + }, + { + "type": "namespace", + "value": "ddi:dataset:3_1" + }, + { + "type": "namespace", + "value": "ddi:instance:3_1" + }, + { + "type": "namespace", + "value": "ddi:instance:3_2" + }, + { + "type": "namespace", + "value": "ddi:instance:3_3" + }, + { + "type": "namespace", + "value": "ddi:dataset:3_0" + }, + { + "type": "schema", + "value": "https://ddialliance.org/Specification/DDI-Codebook/2.5/XMLSchema/codebook.xsd" + }, + { + "type": "schema", + "value": "https://ddialliance.org/Specification/DDI-Codebook/2.1/XMLSchema/codebook.xsd" + }, + { + "type": "schema", + "value": "https://ddialliance.org/Specification/DDI-Lifecycle/3.3/XMLSchema/instance.xsd" + }, + { + "type": "schema", + "value": "https://ddialliance.org/Specification/DDI-Lifecycle/3.2/XMLSchema/instance.xsd" + }, + { + "type": "schema", + "value": "https://ddialliance.org/Specification/DDI-Lifecycle/3.1/XMLSchema/instance.xsd" + }, + { + "type": "schema", + "value": "https://ddialliance.org/Specification/DDI-Lifecycle/3.0/XMLSchema/instance.xsd" + } + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)", + "urls": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative", + "http://www.ddialliance.org/Specification/", + "http://www.ddialliance.org/", + "http://www.icpsr.umich.edu/DDI", + "http://www.ddialliance.org/DDI/schema/ddi3.1/dataset.xsd", + "ddi:codebook:2_5", + "ddi:dataset:3_3", + "ddi:dataset:3_2", + "ddi:dataset:3_1", + "ddi:instance:3_1", + "ddi:instance:3_2", + "ddi:instance:3_3", + "ddi:dataset:3_0", + "https://ddialliance.org/Specification/DDI-Codebook/2.5/XMLSchema/codebook.xsd", + "https://ddialliance.org/Specification/DDI-Codebook/2.1/XMLSchema/codebook.xsd", + "https://ddialliance.org/Specification/DDI-Lifecycle/3.3/XMLSchema/instance.xsd", + "https://ddialliance.org/Specification/DDI-Lifecycle/3.2/XMLSchema/instance.xsd", + "https://ddialliance.org/Specification/DDI-Lifecycle/3.1/XMLSchema/instance.xsd", + "https://ddialliance.org/Specification/DDI-Lifecycle/3.0/XMLSchema/instance.xsd", + "msc:g20", + "msc:g31", + "msc:g32", + "msc:g53", + "msc:g55", + "msc:g91", + "msc:g113" + ] + }, + "didl-digital-item-declaration-language": { + "acronym": "DIDL", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m4" + }, + { + "type": "local", + "value": "https://fairsharing.org/4652" + }, + { + "type": "namespace", + "value": "urn:mpeg:mpeg21:2002:02-DIDL-NS" + }, + { + "type": "homepage", + "value": "https://www.iso.org/standard/35366.html" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Digital Item Declaration Language (DIDL)", + "urls": [ + "fuji:m4", + "https://fairsharing.org/4652", + "urn:mpeg:mpeg21:2002:02-DIDL-NS", + "http://www.dlib.org/dlib/november03/bekaert/11bekaert.html", + "https://www.iso.org/standard/35366.html" + ] + }, + "dif-directory-interchange-format": { + "acronym": "DIF", + "field_of_science": [ + "meteorology", + "ecology", + "agriculture", + "biochemistry", + "marine biology", + "glaciology", + "oceanography", + "climatology", + "hydrology", + "agricultural sciences", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m14" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.esxaaq" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format" + }, + { + "type": "homepage", + "value": "http://gcmd.nasa.gov/add/difguide/" + }, + { + "type": "schema", + "value": "https://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/dif_v10.2.xsd" + }, + { + "type": "schema", + "value": "http://gcmd.nasa.gov/Aboutus/xml/dif/dif.xsd" + }, + { + "type": "schema", + "value": "https://git.earthdata.nasa.gov/projects/EMFD/repos/dif-schemas/browse/10.x/dif.xsd" + }, + { + "type": "namespace", + "value": "http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/" + }, + { + "type": "namespace", + "value": "http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif" + }, + { + "type": "schema", + "value": "http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/dif_v9.4.xsd" + } + ], + "subject_areas": [ + "Agriculture", + "Biochemistry", + "Climatology", + "Ecology", + "Glaciology", + "Hydrology", + "Marine biology", + "Meteorology", + "Oceanography" + ], + "title": "DIF (Directory Interchange Format)", + "urls": [ + "msc:m14", + "https://doi.org/10.25504/FAIRsharing.esxaaq", + "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format", + "http://gcmd.nasa.gov/add/difguide/WRITEADIF.pdf", + "http://gcmd.nasa.gov/add/difguide/", + "https://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/dif_v10.2.xsd", + "http://gcmd.nasa.gov/Aboutus/xml/dif/dif.xsd", + "https://git.earthdata.nasa.gov/projects/EMFD/repos/dif-schemas/browse/10.x/dif.xsd", + "http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/", + "http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif", + "http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/dif_v9.4.xsd", + "msc:g8", + "msc:g13", + "msc:g19", + "msc:g46", + "msc:g47", + "msc:g71" + ] + }, + "dim-dspace-intermediate-format": { + "acronym": "dspace-dim", + "field_of_science": [], + "identifier": [ + { + "type": "local", + "value": "fuji:m36" + }, + { + "type": "namespace", + "value": "http://www.dspace.org/xmlns/dspace/dim" + }, + { + "type": "homepage", + "value": "https://wiki.lyrasis.org/display/DSPACE/" + } + ], + "subject_areas": null, + "title": "DSpace Intermediate Metadata Format", + "urls": [ + "fuji:m36", + "http://www.dspace.org/xmlns/dspace/dim", + "https://wiki.lyrasis.org/display/DSPACE/" + ] + }, + "dryad-metadata-application-profile": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m55" + }, + { + "type": "homepage", + "value": "http://wiki.datadryad.org/Metadata_Profile" + }, + { + "type": "namespace", + "value": "http://datadryad.org/metadata/" + }, + { + "type": "schema", + "value": "http://datadryad.org/profile/v3.1/dryad.xsd" + }, + { + "type": "schema", + "value": "http://datadryad.org/profile/v3/dryad.xsd" + }, + { + "type": "schema", + "value": "http://ils.unc.edu/mrc/dryad/version1_0/dryad_1_0.xsd" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dryad Metadata Application Profile", + "urls": [ + "msc:m55", + "http://wiki.datadryad.org/Metadata_Profile", + "http://datadryad.org/metadata/", + "http://datadryad.org/profile/v3.1/dryad.xsd", + "http://datadryad.org/profile/v3/dryad.xsd", + "http://ils.unc.edu/mrc/dryad/version1_0/dryad_1_0.xsd", + "msc:m15" + ] + }, + "dublin-core": { + "acronym": "DC", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m15" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.3nx7t" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core" + }, + { + "type": "homepage", + "value": "http://dublincore.org" + }, + { + "type": "schema", + "value": "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dcterms.xsd" + }, + { + "type": "schema", + "value": "http://dublincore.org/schemas/xmls/simpledc20021212.xsd" + }, + { + "type": "schema", + "value": "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dc.xsd" + }, + { + "type": "schema", + "value": "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dcmitype.xsd" + }, + { + "type": "schema", + "value": "http://dublincore.org/schemas/xmls/qdc/2008/02/11/simpledc.xsd" + }, + { + "type": "schema", + "value": "http://dublincore.org/schemas/xmls/qdc/2008/02/11/qualifieddc.xsd" + }, + { + "type": "schema", + "value": "http://dublincore.org/schemas/xmls/qdc/dc.xsd" + }, + { + "type": "schema", + "value": "http://dublincore.org/schemas/xmls/qdc/dcterms.xsd" + }, + { + "type": "schema", + "value": "http://dublincore.org/schemas/xmls/qdc/dcmitype.xsd" + }, + { + "type": "namespace", + "value": "http://purl.org/dc/elements/1.1/" + }, + { + "type": "namespace", + "value": "http://purl.org/dc/terms/" + }, + { + "type": "namespace", + "value": "http://purl.org/dc/dcmitype/" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dublin Core", + "urls": [ + "msc:m15", + "https://doi.org/10.25504/FAIRsharing.3nx7t", + "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core", + "http://dublincore.org/specifications/", + "http://dublincore.org", + "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dcterms.xsd", + "http://dublincore.org/schemas/xmls/simpledc20021212.xsd", + "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dc.xsd", + "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dcmitype.xsd", + "http://dublincore.org/schemas/xmls/qdc/2008/02/11/simpledc.xsd", + "http://dublincore.org/schemas/xmls/qdc/2008/02/11/qualifieddc.xsd", + "http://dublincore.org/schemas/xmls/qdc/dc.xsd", + "http://dublincore.org/schemas/xmls/qdc/dcterms.xsd", + "http://dublincore.org/schemas/xmls/qdc/dcmitype.xsd", + "http://purl.org/dc/elements/1.1/", + "http://purl.org/dc/terms/", + "http://purl.org/dc/dcmitype/", + "msc:g1", + "msc:g13", + "msc:g121", + "msc:g35", + "msc:g36", + "msc:g37", + "msc:g39", + "msc:g73", + "msc:g112", + "msc:g55", + "msc:g90" + ] + }, + "dublin-core-qualified": { + "acronym": "QDC", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m22" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.3nx7t" + }, + { + "type": "homepage", + "value": "https://www.dublincore.org/specifications/dublin-core/dcmes-qualifiers/" + }, + { + "type": "namespace", + "value": "urn:dc:qdc:container" + }, + { + "type": "namespace", + "value": "figshare:oai:qdc" + }, + { + "type": "namespace", + "value": "http://naca.central.cranfield.ac.uk/ethos-oai/2.0/" + }, + { + "type": "namespace", + "value": "http://ora.ox.ac.uk/oai-pmh/metadata-formats/solo_dc" + }, + { + "type": "schema", + "value": "https://cocoon.huma-num.fr/schemas/dcq.xsd" + }, + { + "type": "namespace", + "value": "http://crdo.risc.cnrs.fr/schemas/dcq/" + }, + { + "type": "namespace", + "value": "http://oai.base-search.net/base_dc/" + }, + { + "type": "namespace", + "value": "http://oai.base-search.net/base_dc" + }, + { + "type": "schema", + "value": "http://oai.base-search.net/base_dc/base_dc.xsd" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Qualified Dublin Core", + "urls": [ + "fuji:m22", + "https://doi.org/10.25504/FAIRsharing.3nx7t", + "https://www.dublincore.org/specifications/dublin-core/dcmes-qualifiers/", + "urn:dc:qdc:container", + "figshare:oai:qdc", + "http://naca.central.cranfield.ac.uk/ethos-oai/2.0/", + "http://ora.ox.ac.uk/oai-pmh/metadata-formats/solo_dc", + "https://cocoon.huma-num.fr/schemas/dcq.xsd", + "http://crdo.risc.cnrs.fr/schemas/dcq/", + "http://oai.base-search.net/base_dc/", + "http://oai.base-search.net/base_dc", + "http://oai.base-search.net/base_dc/base_dc.xsd", + "msc:m15" + ] + }, + "dwc-germplasm": { + "acronym": null, + "field_of_science": [ + "botany", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m56" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.hgsFLe" + }, + { + "type": "homepage", + "value": "http://code.google.com/p/darwincore-germplasm/" + }, + { + "type": "namespace", + "value": "http://purl.org/germplasm#" + }, + { + "type": "namespace", + "value": "http://purl.org/germplasm/germplasmTerm#" + } + ], + "subject_areas": [ + "Botany" + ], + "title": "DwC Germplasm", + "urls": [ + "msc:m56", + "https://doi.org/10.25504/FAIRsharing.hgsFLe", + "http://code.google.com/p/darwincore-germplasm/", + "http://purl.org/germplasm#", + "http://purl.org/germplasm/germplasmTerm#", + "msc:m9" + ] + }, + "ead-encoded-archival-description": { + "acronym": "ead", + "field_of_science": [ + "history", + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m96" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.95f59a" + }, + { + "type": "homepage", + "value": "https://www.loc.gov/ead/" + }, + { + "type": "namespace", + "value": "urn:isbn:1-931666-22-9" + }, + { + "type": "namespace", + "value": "http://ead3.archivists.org/schema" + }, + { + "type": "namespace", + "value": "http://ead3.archivists.org/schema/" + } + ], + "subject_areas": [ + "History" + ], + "title": "EAD (Encoded Archival Description)", + "urls": [ + "msc:m96", + "https://doi.org/10.25504/FAIRsharing.95f59a", + "https://www.loc.gov/ead/", + "urn:isbn:1-931666-22-9", + "http://ead3.archivists.org/schema", + "http://ead3.archivists.org/schema/", + "msc:g104", + "msc:g114", + "msc:g121", + "https://www.loc.gov/ead/tglib1998/", + "https://www.loc.gov/ead/ag/aghome.html", + "https://www.loc.gov/ead/ead.xsd", + "ftp://ftp.loc.gov/pub/ead/ead.dtd", + "https://www.loc.gov/ead/tglib/", + "https://www.loc.gov/ead/ead3.xsd", + "https://www.loc.gov/ead/ead3.dtd", + "https://www.loc.gov/ead/EAD3taglib/EAD3.html" + ] + }, + "ebank-uk-metadata-application-profile": { + "acronym": null, + "field_of_science": [ + "crystallography", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m57" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.ad4856" + }, + { + "type": "homepage", + "value": "http://ecrystals.chem.soton.ac.uk" + }, + { + "type": "schema", + "value": "http://naca.central.cranfield.ac.uk/ethos-oai/2.0/uketd_dc.xsd" + }, + { + "type": "namespace", + "value": "http://naca.central.cranfield.ac.uk/ethos-oai/uketd_dc/" + } + ], + "subject_areas": [ + "Crystallography" + ], + "title": "eBank UK Metadata Application Profile", + "urls": [ + "msc:m57", + "https://doi.org/10.25504/FAIRsharing.ad4856", + "http://ecrystals.chem.soton.ac.uk", + "http://naca.central.cranfield.ac.uk/ethos-oai/2.0/uketd_dc.xsd", + "http://naca.central.cranfield.ac.uk/ethos-oai/uketd_dc/", + "msc:m15" + ] + }, + "edm-europeana-data-model": { + "acronym": "EDM", + "field_of_science": [ + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m33" + }, + { + "type": "local", + "value": "https://fairsharing.org/4653" + }, + { + "type": "homepage", + "value": "https://pro.europeana.eu/page/edm-documentation" + }, + { + "type": "namespace", + "value": "http://www.europeana.eu/schemas/edm/" + }, + { + "type": "namespace", + "value": "http://www.europeana.eu/schemas/edm" + }, + { + "type": "namespace", + "value": "http://www.europeana.eu/schemas/ese/" + } + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "Europeana Data Model (EDM)", + "urls": [ + "fuji:m33", + "https://fairsharing.org/4653", + "https://pro.europeana.eu/page/edm-documentation", + "http://www.europeana.eu/schemas/edm/", + "http://www.europeana.eu/schemas/edm", + "http://www.europeana.eu/schemas/ese/" + ] + }, + "edmed-metadata-profile": { + "acronym": null, + "field_of_science": [ + "meteorology", + "environmental sciences", + "glaciology", + "soil sciences", + "oceanography", + "hydrogeology", + "climatology", + "hydrology", + "ecology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m58" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.ed7f20" + }, + { + "type": "homepage", + "value": "https://www.bodc.ac.uk/data/information_and_inventories/edmed/" + }, + { + "type": "schema", + "value": "EDMED_sdn_V1.2.xsd" + } + ], + "subject_areas": [ + "Climatology", + "Ecology", + "Environmental sciences", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Soil sciences" + ], + "title": "EDMED Metadata Profile", + "urls": [ + "msc:m58", + "https://doi.org/10.25504/FAIRsharing.ed7f20", + "https://www.bodc.ac.uk/data/information_and_inventories/edmed/", + "EDMED_sdn_V1.2.xsd", + "msc:m22" + ] + }, + "emblem-metadata-schema": { + "acronym": "Emblem", + "field_of_science": [ + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m16" + }, + { + "type": "local", + "value": "https://fairsharing.org/4654" + }, + { + "type": "homepage", + "value": "http://diglib.hab.de/rules/schema/emblem/" + }, + { + "type": "namespace", + "value": "http://diglib.hab.de/rules/schema/emblem" + }, + { + "type": "schema", + "value": "http://diglib.hab.de/rules/schema/emblem/emblem-1-3.xsd" + }, + { + "type": "schema", + "value": "http://diglib.hab.de/rules/schema/emblem/emblem-1-2.xsd" + } + ], + "subject_areas": [ + "Humanities" + ], + "title": "Emblem XML-Schema", + "urls": [ + "fuji:m16", + "https://fairsharing.org/4654", + "http://diglib.hab.de/rules/schema/emblem/", + "http://diglib.hab.de/rules/schema/emblem", + "http://diglib.hab.de/rules/schema/emblem/emblem-1-3.xsd", + "http://diglib.hab.de/rules/schema/emblem/emblem-1-2.xsd" + ] + }, + "eml-ecological-metadata-language": { + "acronym": "EML", + "field_of_science": [ + "biological sciences", + "zoology", + "botany", + "ecology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m16" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.r3vtvx" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language" + }, + { + "type": "homepage", + "value": "https://eml.ecoinformatics.org/" + }, + { + "type": "namespace", + "value": "eml://eml.ecoinformatics.org/eml-2.0.0" + }, + { + "type": "namespace", + "value": "eml://ecoinformatics.org/eml-2.0.0" + }, + { + "type": "namespace", + "value": "eml://ecoinformatics.org/eml-2.0.1" + }, + { + "type": "namespace", + "value": "eml://ecoinformatics.org/eml-2.1.0" + }, + { + "type": "namespace", + "value": "eml://ecoinformatics.org/eml-2.1.1" + }, + { + "type": "namespace", + "value": "https://eml.ecoinformatics.org/eml-2.2.0" + }, + { + "type": "namespace", + "value": "https://eml.ecoinformatics.org/eml-2.2.1" + }, + { + "type": "schema", + "value": "https://eml.ecoinformatics.org/schema/eml_xsd" + } + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Ecology", + "Zoology" + ], + "title": "EML (Ecological Metadata Language)", + "urls": [ + "msc:m16", + "https://doi.org/10.25504/FAIRsharing.r3vtvx", + "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language", + "https://eml.ecoinformatics.org/", + "https://eml.ecoinformatics.org/schema", + "eml://eml.ecoinformatics.org/eml-2.0.0", + "eml://ecoinformatics.org/eml-2.0.0", + "eml://ecoinformatics.org/eml-2.0.1", + "eml://ecoinformatics.org/eml-2.1.0", + "eml://ecoinformatics.org/eml-2.1.1", + "https://eml.ecoinformatics.org/eml-2.2.0", + "https://eml.ecoinformatics.org/eml-2.2.1", + "https://eml.ecoinformatics.org/schema/eml_xsd", + "msc:g119", + "msc:g44", + "msc:g63", + "msc:g66", + "msc:g72", + "10.5063/F11834T2" + ] + }, + "epicur-metadata-schema": { + "acronym": "epicur", + "field_of_science": [], + "identifier": [ + { + "type": "local", + "value": "fuji:m21" + }, + { + "type": "local", + "value": "https://fairsharing.org/4659" + }, + { + "type": "namespace", + "value": "urn:nbn:de:1111-2004033116" + }, + { + "type": "schema", + "value": "https://files.dnb.de/Web/xepicur.xsd" + }, + { + "type": "homepage", + "value": "https://wiki.dnb.de/display/URNSERVDOK/xepicur+-+XML-Datentransferformat+zur+Verwaltung+von+URN" + } + ], + "subject_areas": null, + "title": "xepicur", + "urls": [ + "fuji:m21", + "https://fairsharing.org/4659", + "urn:nbn:de:1111-2004033116", + " https://files.dnb.de/Web/xepicur.xsd", + "https://wiki.dnb.de/display/URNSERVDOK/xepicur+-+XML-Datentransferformat+zur+Verwaltung+von+URN" + ] + }, + "eprints-xml": { + "acronym": "EPrints", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m23" + }, + { + "type": "namespace", + "value": "http://eprints.org/ep2/data/2.0" + }, + { + "type": "homepage", + "value": "https://wiki.eprints.org/w/XML_Export_Format" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "EPrints XML", + "urls": [ + "fuji:m23", + "http://eprints.org/ep2/data/2.0", + "https://wiki.eprints.org/w/XML_Export_Format" + ] + }, + "etdms-metadata-schema": { + "acronym": "ETD-MS", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m17" + }, + { + "type": "local", + "value": "https://fairsharing.org/4660" + }, + { + "type": "homepage", + "value": "https://ndltd.org/metadata/" + }, + { + "type": "namespace", + "value": "http://www.ndltd.org/standards/metadata/etdms/1.1/" + }, + { + "type": "namespace", + "value": "http://www.ndltd.org/standards/metadata/etdms/1.0/" + }, + { + "type": "schema", + "value": "http://www.ndltd.org/standards/metadata/etdms/1.1/etdms11.xsd" + }, + { + "type": "schema", + "value": "http://www.ndltd.org/standards/metadata/etdms/1.1/etdmsdc.xsd" + }, + { + "type": "schema", + "value": "http://www.ndltd.org/standards/metadata/etdms/1.1/etdmsdcterms.xsd" + }, + { + "type": "schema", + "value": "http://www.ndltd.org/standards/metadata/etdms/1.0/etdms.xsd" + }, + { + "type": "namespace", + "value": "http://www.ndltd.org/standards/metadata/etdms/1-0/" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "ETD-MS an Interoperability Metadata Standard for Electronic Theses and Dissertations", + "urls": [ + "fuji:m17", + "https://fairsharing.org/4660", + "https://ndltd.org/metadata/", + "http://www.ndltd.org/standards/metadata/etdms/1.1/", + "http://www.ndltd.org/standards/metadata/etdms/1.0/", + "http://www.ndltd.org/standards/metadata/etdms/1.1/etdms11.xsd", + "http://www.ndltd.org/standards/metadata/etdms/1.1/etdmsdc.xsd", + "http://www.ndltd.org/standards/metadata/etdms/1.1/etdmsdcterms.xsd", + "http://www.ndltd.org/standards/metadata/etdms/1.0/etdms.xsd", + "http://www.ndltd.org/standards/metadata/etdms/1-0/" + ] + }, + "eurisco-descriptors": { + "acronym": null, + "field_of_science": [], + "identifier": [ + { + "type": "local", + "value": "msc:m85" + }, + { + "type": "homepage", + "value": "https://www.ecpgr.cgiar.org/resources/germplasm-databases/eurisco-catalogue" + } + ], + "subject_areas": null, + "title": "EURISCO Descriptors", + "urls": [ + "msc:m85", + "http://www.ecpgr.cgiar.org/fileadmin/templates/ecpgr.org/upload/MISC/EURISCO_Descriptors.pdf", + "https://www.ecpgr.cgiar.org/resources/germplasm-databases/eurisco-catalogue" + ] + }, + "fdsn-seismograph": { + "acronym": null, + "field_of_science": [ + "earth and related environmental sciences", + "geophysics", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m8" + }, + { + "type": "local", + "value": "https://fairsharing.org/1434" + }, + { + "type": "namespace", + "value": "http://www.fdsn.org/xml/station/1" + }, + { + "type": "homepage", + "value": "http://www.fdsn.org/xml/station/" + } + ], + "subject_areas": [ + "Earth sciences", + "Geophysics" + ], + "title": "International Federation of Digital Seismograph Networks StationXML (FDSN StationXML)", + "urls": [ + "fuji:m8", + "https://fairsharing.org/1434", + "http://www.fdsn.org/xml/station/1", + "http://www.fdsn.org/xml/station/", + "http://docs.fdsn.org/projects/stationxml/en/latest/" + ] + }, + "fgdccsdgm-biological-data-profile": { + "acronym": null, + "field_of_science": [ + "biological sciences", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m59" + }, + { + "type": "homepage", + "value": "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/biometadata/biodatap.pdf" + } + ], + "subject_areas": [ + "Biogeography" + ], + "title": "FGDC/CSDGM Biological Data Profile", + "urls": [ + "msc:m59", + "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/biometadata/biodatap.pdf", + "msc:m17" + ] + }, + "fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge": { + "acronym": "fgdc", + "field_of_science": [ + "meteorology", + "cartography", + "social geography", + "physical geography", + "biochemistry", + "marine biology", + "oceanography", + "climatology", + "hydrology", + "social sciences", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m17" + }, + { + "type": "local", + "value": "https://fairsharing.org/1445" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge" + }, + { + "type": "homepage", + "value": "http://www.fgdc.gov/metadata/geospatial-metadata-standards/" + }, + { + "type": "schema", + "value": "https://www.fgdc.gov/schemas/metadata/fgdc-std-001-1998.xsd" + }, + { + "type": "schema", + "value": "https://www.fgdc.gov/schemas/metadata/fgdc-std-001.2-2001.xsd" + }, + { + "type": "namespace", + "value": "https://www.fgdc.gov/schemas/metadata/" + }, + { + "type": "namespace", + "value": "http://www.fgdc.gov/metadata/csdgm/index_html" + } + ], + "subject_areas": [ + "Biochemistry", + "Cartography", + "Climatology", + "Geography", + "Hydrology", + "Land use", + "Marine biology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "FGDC/CSDGM (Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata)", + "urls": [ + "msc:m17", + "https://fairsharing.org/1445", + "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge", + "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/base-metadata/v2_0698.pdf", + "http://www.fgdc.gov/metadata/geospatial-metadata-standards/", + "https://www.fgdc.gov/schemas/metadata/fgdc-std-001-1998.xsd", + "https://www.fgdc.gov/schemas/metadata/fgdc-std-001.2-2001.xsd", + "https://www.fgdc.gov/schemas/metadata/", + "http://www.fgdc.gov/metadata/csdgm/index_html", + "msc:g13", + "msc:g75" + ] + }, + "fits-flexible-image-transport-system": { + "acronym": null, + "field_of_science": [ + "astronomy", + "astrophysics", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m18" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.xvash1" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system" + }, + { + "type": "homepage", + "value": "http://fits.gsfc.nasa.gov/fits_standard.html" + } + ], + "subject_areas": [ + "Astronomy", + "Astrophysics", + "Sun" + ], + "title": "FITS (Flexible Image Transport System)", + "urls": [ + "msc:m18", + "https://doi.org/10.25504/FAIRsharing.xvash1", + "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system", + "http://fits.gsfc.nasa.gov/fits_standard.html", + "http://fits.gsfc.nasa.gov/fits_standard.html", + "msc:g9", + "msc:g40", + "msc:g51", + "msc:g60", + "msc:g61", + "msc:g89", + "msc:g95" + ] + }, + "fits-world-coordinate-system-wcs": { + "acronym": null, + "field_of_science": [ + "astronomy", + "astrophysics", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m60" + }, + { + "type": "homepage", + "value": "http://fits.gsfc.nasa.gov/fits_wcs.html" + } + ], + "subject_areas": [ + "Astronomy", + "Astrophysics", + "Sun" + ], + "title": "FITS World Coordinate System (WCS)", + "urls": [ + "msc:m60", + "http://fits.gsfc.nasa.gov/fits_wcs.html", + "msc:m18" + ] + }, + "gbif-metadata-profile": { + "acronym": null, + "field_of_science": [ + "biological sciences", + "zoology", + "botany", + "ecology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m61" + }, + { + "type": "homepage", + "value": "http://rs.gbif.org/schema/eml-gbif-profile/" + } + ], + "subject_areas": [ + "Biogeography", + "Biological diversity", + "Botany", + "Ecology", + "Zoology" + ], + "title": "GBIF Metadata Profile", + "urls": [ + "msc:m61", + "http://rs.gbif.org/schema/eml-gbif-profile/", + "msc:m16", + "http://rs.gbif.org/schema/eml-gbif-profile/1.0.2/eml-gbif-profile.xsd", + "http://rs.gbif.org/schema/eml-gbif-profile/1.1/eml-gbif-profile.xsd" + ] + }, + "genome-metadata": { + "acronym": null, + "field_of_science": [ + "genetics", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m19" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/genome-metadata" + }, + { + "type": "homepage", + "value": "http://enews.patricbrc.org/faqs/genome-metadata-faqs/" + } + ], + "subject_areas": [ + "Genetics" + ], + "title": "Genome Metadata", + "urls": [ + "msc:m19", + "http://www.dcc.ac.uk/resources/metadata-standards/genome-metadata", + "http://enews.patricbrc.org/faqs/genome-metadata-faqs/" + ] + }, + "georss-encoding-standard": { + "acronym": null, + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m1" + }, + { + "type": "local", + "value": "https://fairsharing.org/4663" + }, + { + "type": "homepage", + "value": "http://www.georss.org" + }, + { + "type": "namespace", + "value": "http://www.georss.org/georss/" + }, + { + "type": "namespace", + "value": "http://schemas.opengis.net/georss/1.0/" + } + ], + "subject_areas": [ + "Earth sciences" + ], + "title": "GeoRSS", + "urls": [ + "fuji:m1", + "https://fairsharing.org/4663", + "http://www.georss.org", + "http://www.georss.org/georss/", + "http://schemas.opengis.net/georss/1.0/" + ] + }, + "gesmests-generic-statistical-message-time-series": { + "acronym": null, + "field_of_science": [ + "economics", + "statistics and probability", + "political sciences", + "social sciences", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m62" + }, + { + "type": "homepage", + "value": "http://www.ecb.int/stats/services/sdmx/html/index.en.html" + } + ], + "subject_areas": [ + "Economics", + "Social policy", + "Statistics" + ], + "title": "GESMES/TS (Generic Statistical Message for Time Series)", + "urls": [ + "msc:m62", + "http://www.ecb.int/stats/services/sdmx/html/index.en.html", + "msc:m38" + ] + }, + "gsim-generic-statistical-information-model": { + "acronym": null, + "field_of_science": [ + "statistics and probability", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m63" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.22bb25" + }, + { + "type": "homepage", + "value": "http://www1.unece.org/stat/platform/display/metis/Generic+Statistical+Information+Model" + } + ], + "subject_areas": [ + "Statistics" + ], + "title": "GSIM (Generic Statistical Information Model)", + "urls": [ + "msc:m63", + "https://doi.org/10.25504/FAIRsharing.22bb25", + "http://www1.unece.org/stat/platform/display/metis/Generic+Statistical+Information+Model", + "msc:m13" + ] + }, + "hispid-herbarium-information-standards-and-protocols-interchange-data": { + "acronym": null, + "field_of_science": [ + "botany", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m64" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.y49yj6" + }, + { + "type": "homepage", + "value": "http://www.rbg.vic.gov.au/wiki/hiscom/index.php/HISPID_5" + } + ], + "subject_areas": [ + "Botany" + ], + "title": "HISPID (Herbarium Information Standards and Protocols for Interchange of Data)", + "urls": [ + "msc:m64", + "https://doi.org/10.25504/FAIRsharing.y49yj6", + "http://www.rbg.vic.gov.au/wiki/hiscom/index.php/HISPID_5", + "msc:m1" + ] + }, + "idf-international-doi-foundation-metadata-kernel": { + "acronym": null, + "field_of_science": [], + "identifier": [ + { + "type": "local", + "value": "msc:m86" + }, + { + "type": "homepage", + "value": "https://www.doi.org/the-identifier/resources/handbook/doi_kernel_xml_schema/" + }, + { + "type": "schema", + "value": "https://www.doi.org/doi_schemas/DOIMetadataKernel.xsd" + }, + { + "type": "namespace", + "value": "http://www.doi.org/2010/DOISchema" + } + ], + "subject_areas": null, + "title": "IDF (International DOI Foundation) Metadata Kernel", + "urls": [ + "msc:m86", + "https://www.doi.org/the-identifier/resources/handbook/doi_kernel_xml_schema/", + "https://www.doi.org/doi_schemas/DOIMetadataKernel.xsd", + "http://www.doi.org/2010/DOISchema" + ] + }, + "imdi-metadata-schema": { + "acronym": "IMDI", + "field_of_science": [ + "linguistics", + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m15" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.2cfb88" + }, + { + "type": "namespace", + "value": "http://www.mpi.nl/IMDI/Schema/IMDI" + }, + { + "type": "namespace", + "value": "http://www.mpi.nl/IMDI/schemas/xsd/" + }, + { + "type": "schema", + "value": "https://www.mpi.nl/IMDI/Schema/IMDI_3.0.xsd" + }, + { + "type": "homepage", + "value": "https://archive.mpi.nl/forums/t/imdi-metadata-information/2933" + } + ], + "subject_areas": [ + "Humanities", + "Linguistics" + ], + "title": "IMDI Metadata Standard", + "urls": [ + "fuji:m15", + "https://doi.org/10.25504/FAIRsharing.2cfb88", + "http://www.mpi.nl/IMDI/Schema/IMDI", + "http://www.mpi.nl/IMDI/schemas/xsd/", + "https://www.mpi.nl/IMDI/Schema/IMDI_3.0.xsd", + "https://archive.mpi.nl/forums/t/imdi-metadata-information/2933" + ] + }, + "impex-data-model": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m65" + }, + { + "type": "homepage", + "value": "http://meetingorganizer.copernicus.org/EPSC2012/EPSC2012-360.pdf" + } + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "IMPEx Data Model", + "urls": [ + "msc:m65", + "http://meetingorganizer.copernicus.org/EPSC2012/EPSC2012-360.pdf", + "msc:m39" + ] + }, + "inspire-metadata-regulation": { + "acronym": null, + "field_of_science": [ + "meteorology", + "cartography", + "earth and related environmental sciences", + "physical geography", + "glaciology", + "oceanography", + "hydrogeology", + "climatology", + "hydrology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m66" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.nrx5kk" + }, + { + "type": "homepage", + "value": "http://inspire.ec.europa.eu/" + }, + { + "type": "namespace", + "value": "http://inspire.ec.europa.eu/schemas/common/1.0/common.xsd" + }, + { + "type": "namespace", + "value": "http://inspire.ec.europa.eu/schemas/common/1.0/network.xsd" + } + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "INSPIRE Metadata Regulation", + "urls": [ + "msc:m66", + "https://doi.org/10.25504/FAIRsharing.nrx5kk", + "http://inspire.ec.europa.eu/", + "http://inspire.ec.europa.eu/schemas/common/1.0/common.xsd", + "http://inspire.ec.europa.eu/schemas/common/1.0/network.xsd", + "msc:m22" + ] + }, + "international-virtual-observatory-alliance-technical-specifications": { + "acronym": "IVOA", + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m20" + }, + { + "type": "homepage", + "value": "http://ivoa.net/documents/" + } + ], + "subject_areas": [ + "Astronomy" + ], + "title": "International Virtual Observatory Alliance Technical Specifications", + "urls": [ + "msc:m20", + "http://www.ivoa.net/documents/#specs", + "http://ivoa.net/documents/", + "msc:g5", + "msc:g41", + "msc:g93" + ] + }, + "isa-tab": { + "acronym": null, + "field_of_science": [ + "biophysics", + "genetics", + "biological sciences", + "cell biology", + "biochemistry", + "molecular biology", + "cell metabolism", + "engineering and technology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m21" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab" + }, + { + "type": "homepage", + "value": "http://isatab.sourceforge.net/format.html" + } + ], + "subject_areas": [ + "Biochemicals", + "Biochemistry", + "Biophysics", + "Biotechnology", + "Cell biology", + "Genetics", + "Metabolism", + "Molecular biology" + ], + "title": "ISA-Tab", + "urls": [ + "msc:m21", + "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab", + "http://isatab.sourceforge.net/docs/ISA-TAB_release-candidate-1_v1.0_24nov08.pdf", + "http://isatab.sourceforge.net/format.html", + "msc:g50", + "msc:g59", + "msc:g69", + "msc:g76" + ] + }, + "isa-tab-nano": { + "acronym": null, + "field_of_science": [ + "engineering and technology", + "biological sciences", + "biochemistry", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m67" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.njqq5b" + }, + { + "type": "homepage", + "value": "https://wiki.nci.nih.gov/display/ICR/ISA-TAB-Nano#ISA-TAB-Nano-title" + } + ], + "subject_areas": [ + "Biochemicals", + "Biotechnology" + ], + "title": "ISA-TAB Nano", + "urls": [ + "msc:m67", + "https://doi.org/10.25504/FAIRsharing.njqq5b", + "https://wiki.nci.nih.gov/display/ICR/ISA-TAB-Nano#ISA-TAB-Nano-title", + "msc:m21" + ] + }, + "isaconfig-dixa": { + "acronym": null, + "field_of_science": [ + "toxicology", + "genetics", + "medical and health sciences", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m68" + }, + { + "type": "homepage", + "value": "https://bitbucket.org/kanterae/isaconfig-dixa" + } + ], + "subject_areas": [ + "Genetics", + "Toxicology" + ], + "title": "isaconfig-diXa", + "urls": [ + "msc:m68", + "https://bitbucket.org/kanterae/isaconfig-dixa", + "msc:m21" + ] + }, + "iso-19115": { + "acronym": "ISO19115", + "field_of_science": [ + "meteorology", + "cartography", + "earth and related environmental sciences", + "physical geography", + "glaciology", + "hydrology", + "oceanography", + "hydrogeology", + "climatology", + "geology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m22" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.t7mby9" + }, + { + "type": "homepage", + "value": "http://www.iso.org/iso/catalogue_detail.htm?csnumber=53798" + }, + { + "type": "namespace", + "value": "http://www.isotc211.org/2005/gmd/gmd.xsd" + }, + { + "type": "namespace", + "value": "http://www.isotc211.org/2005/gmd" + }, + { + "type": "namespace", + "value": "http://standards.iso.org/iso/19115/-3/mds/2.0" + }, + { + "type": "namespace", + "value": "http://standards.iso.org/iso/19115/-3/mds/1.0" + }, + { + "type": "namespace", + "value": "http://standards.iso.org/iso/19115/-3/mdb/2.0" + }, + { + "type": "namespace", + "value": "http://bluenet3.antcrc.utas.edu.au/mcp" + } + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Geology", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "ISO 19115", + "urls": [ + "msc:m22", + "https://doi.org/10.25504/FAIRsharing.t7mby9", + "http://standards.iso.org/iso/19115/-3/", + "http://www.iso.org/iso/catalogue_detail.htm?csnumber=53798", + "http://www.isotc211.org/2005/gmd/gmd.xsd", + "http://www.isotc211.org/2005/gmd", + "http://standards.iso.org/iso/19115/-3/mds/2.0", + "http://standards.iso.org/iso/19115/-3/mds/1.0", + "http://standards.iso.org/iso/19115/-3/mdb/2.0", + "http://bluenet3.antcrc.utas.edu.au/mcp", + "msc:g6", + "msc:g8", + "msc:g10", + "msc:g26", + "msc:g33", + "msc:g37", + "msc:g48", + "msc:g49", + "msc:g56" + ] + }, + "iso-19115-2-imagery-and-gridded-data": { + "acronym": null, + "field_of_science": [ + "meteorology", + "cartography", + "earth and related environmental sciences", + "social geography", + "physical geography", + "glaciology", + "oceanography", + "climatology", + "hydrology", + "social sciences", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m69" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.a6b18c" + }, + { + "type": "homepage", + "value": "http://www.iso.org/iso/catalogue_detail.htm?csnumber=39229" + } + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Glaciology", + "Hydrology", + "Land use", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "ISO 19115-2 - Imagery and gridded data", + "urls": [ + "msc:m69", + "https://doi.org/10.25504/FAIRsharing.a6b18c", + "http://www.iso.org/iso/catalogue_detail.htm?csnumber=39229", + "msc:m22" + ] + }, + "iso-19115-north-american-profile": { + "acronym": null, + "field_of_science": [ + "cartography", + "physical geography", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m70" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.b4af3c" + }, + { + "type": "homepage", + "value": "http://www.fgdc.gov/standards/projects/incits-l1-standards-projects/NAP-Metadata" + } + ], + "subject_areas": [ + "Cartography", + "Geography", + "Topography" + ], + "title": "ISO 19115 North American Profile", + "urls": [ + "msc:m70", + "https://doi.org/10.25504/FAIRsharing.b4af3c", + "http://www.fgdc.gov/standards/projects/incits-l1-standards-projects/NAP-Metadata", + "msc:m22" + ] + }, + "iso-19136": { + "acronym": null, + "field_of_science": [ + "meteorology", + "cartography", + "earth and related environmental sciences", + "physical geography", + "glaciology", + "hydrology", + "oceanography", + "hydrogeology", + "climatology", + "geology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m3" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.d69ee0" + }, + { + "type": "homepage", + "value": "www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=32554" + }, + { + "type": "namespace", + "value": "http://www.opengis.net/gml/3.2" + }, + { + "type": "namespace", + "value": "http://schemas.opengis.net/gml/3.2.1/gml.xsd" + } + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Geology", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "Geography Markup Language", + "urls": [ + "fuji:m3", + "https://doi.org/10.25504/FAIRsharing.d69ee0", + "https://www.ogc.org/standards/gml", + "www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=32554", + "http://www.opengis.net/gml/3.2", + "http://schemas.opengis.net/gml/3.2.1/gml.xsd" + ] + }, + "ivoa-registry-metdata": { + "acronym": "ivoa-reg", + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m35" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.RycpEU" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications" + }, + { + "type": "namespace", + "value": "http://www.ivoa.net/xml/VORegistry/v1.0" + }, + { + "type": "namespace", + "value": "http://www.ivoa.net/xml/RegistryInterface/v1.0" + }, + { + "type": "homepage", + "value": "https://www.ivoa.net/Documents/cover/RDFVORegistry-20070920.html" + } + ], + "subject_areas": [ + "Astronomy" + ], + "title": "IVOA Registry Interfaces", + "urls": [ + "fuji:m35", + "https://doi.org/10.25504/FAIRsharing.RycpEU", + "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications", + "https://www.ivoa.net/documents/RegistryInterface/20180723/REC-RegistryInterface-1.1.html", + "http://www.ivoa.net/xml/VORegistry/v1.0", + "http://www.ivoa.net/xml/RegistryInterface/v1.0", + "https://www.ivoa.net/Documents/cover/RDFVORegistry-20070920.html" + ] + }, + "jats-schema": { + "acronym": "jats", + "field_of_science": [ + "library sciences", + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m41" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.smr0rh" + }, + { + "type": "homepage", + "value": "http://jats.nlm.nih.gov/publishing/" + }, + { + "type": "schema", + "value": "https://jats.nlm.nih.gov/publishing/1.0/xsd/JATS-journalpublishing1.xsd" + }, + { + "type": "namespace", + "value": "http://jats.nlm.nih.gov/publishing/1.0" + } + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "Journal Publishing Tag Set (Jats)", + "urls": [ + "fuji:m41", + "https://doi.org/10.25504/FAIRsharing.smr0rh", + "http://jats.nlm.nih.gov/publishing/", + "https://jats.nlm.nih.gov/publishing/1.0/xsd/JATS-journalpublishing1.xsd", + "http://jats.nlm.nih.gov/publishing/1.0" + ] + }, + "lido-lightweight-information-describing-objects": { + "acronym": "LIDO", + "field_of_science": [ + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m18" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.73558b" + }, + { + "type": "schema", + "value": "www.lido-schema.org/schema/latest/lido.xsd" + }, + { + "type": "schema", + "value": "www.lido-schema.org/schema/v1.1/lido-v1.1.xsd" + }, + { + "type": "schema", + "value": "http://www.lido-schema.org/schema/v1.0/lido-v1.0.xsd" + }, + { + "type": "schema", + "value": "http://lido-schema.org/schema/v1.1/lido-v1.1.xsd" + }, + { + "type": "namespace", + "value": "http://www.lido-schema.org" + }, + { + "type": "homepage", + "value": "http://www.lido-schema.org" + } + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "LIDO, Lightweight Information Describing Objects", + "urls": [ + "fuji:m18", + "https://doi.org/10.25504/FAIRsharing.73558b", + "www.lido-schema.org/schema/latest/lido.xsd", + "www.lido-schema.org/schema/v1.1/lido-v1.1.xsd", + "http://www.lido-schema.org/schema/v1.0/lido-v1.0.xsd", + "http://lido-schema.org/schema/v1.1/lido-v1.1.xsd", + "http://www.lido-schema.org", + "http://www.lido-schema.org", + "https://cidoc.mini.icom.museum/working-groups/lido/lido-overview/about-lido/what-is-lido/" + ] + }, + "lom-higher-education-schema": { + "acronym": "LOM", + "field_of_science": [], + "identifier": [ + { + "type": "local", + "value": "fuji:m24" + }, + { + "type": "local", + "value": "https://fairsharing.org/4664" + }, + { + "type": "homepage", + "value": "http://www.imsglobal.org/metadata/index.html" + }, + { + "type": "namespace", + "value": "http://ltsc.ieee.org/xsd/LOMv1p0" + }, + { + "type": "namespace", + "value": "http://ltsc.ieee.org/2002/09/lom-base#" + }, + { + "type": "namespace", + "value": "https://www.oerbw.de/hsoerlom" + }, + { + "type": "schema", + "value": "http://www.rdn.ac.uk/oai/lom/lom.xsd" + }, + { + "type": "schema", + "value": "https://w3id.org/kim/hs-oer-lom-profil/latest/schemas/hs-oer-lom.xsd" + } + ], + "subject_areas": null, + "title": "Learning Object Metadata (LOM)", + "urls": [ + "fuji:m24", + "https://fairsharing.org/4664", + "http://www.imsglobal.org/metadata/index.html", + "https://dini-ag-kim.github.io/hs-oer-lom-profil/latest/", + "https://ieeexplore.ieee.org/document/1032843", + "http://ltsc.ieee.org/xsd/LOMv1p0", + "http://ltsc.ieee.org/2002/09/lom-base#", + "https://www.oerbw.de/hsoerlom", + "http://www.rdn.ac.uk/oai/lom/lom.xsd", + "https://w3id.org/kim/hs-oer-lom-profil/latest/schemas/hs-oer-lom.xsd" + ] + }, + "mage-tab": { + "acronym": null, + "field_of_science": [], + "identifier": [ + { + "type": "local", + "value": "msc:m87" + }, + { + "type": "local", + "value": "https://fairsharing.org/4680" + }, + { + "type": "homepage", + "value": "https://psidev.info/magetab" + } + ], + "subject_areas": null, + "title": "MAGE-TAB", + "urls": [ + "msc:m87", + "https://fairsharing.org/4680", + "https://psidev.info/magetab" + ] + }, + "marc-machine-readable-cataloging": { + "acronym": "MARC", + "field_of_science": [ + "library sciences", + "sciences", + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m88" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.217b1b" + }, + { + "type": "homepage", + "value": "http://www.loc.gov/marc/" + }, + { + "type": "schema", + "value": "http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd" + }, + { + "type": "schema", + "value": "https://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd" + }, + { + "type": "namespace", + "value": "http://www.loc.gov/MARC21/slim" + }, + { + "type": "namespace", + "value": "http://www.ddb.de/professionell/MARC21/plus" + } + ], + "subject_areas": [ + "Multidisciplinary", + "Bibliographic standards", + "Information/library standards" + ], + "title": "MARC (Machine-Readable Cataloging)", + "urls": [ + "msc:m88", + "https://doi.org/10.25504/FAIRsharing.217b1b", + "http://www.loc.gov/marc/", + "http://www.loc.gov/marc/bibliographic/", + "http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd", + "https://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd", + "http://www.loc.gov/MARC21/slim", + "http://www.ddb.de/professionell/MARC21/plus", + "msc:g104", + "msc:g121" + ] + }, + "marine-community-profile": { + "acronym": "AODN", + "field_of_science": [ + "meteorology", + "earth and related environmental sciences", + "glaciology", + "oceanography", + "climatology", + "hydrology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m71" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.18b8b4" + }, + { + "type": "homepage", + "value": "http://www.aodc.org.au/index.php?id=37" + }, + { + "type": "namespace", + "value": "http://schemas.aodn.org.au/mcp-2.0" + }, + { + "type": "namespace", + "value": "http://schemas.aodn.org.au" + }, + { + "type": "schema", + "value": "http://schemas.aodn.org.au/mcp-2.0/schema.xsd" + } + ], + "subject_areas": [ + "Climatology", + "Earth sciences", + "Glaciology", + "Hydrology", + "Meteorology", + "Oceanography" + ], + "title": "AODN Marine Community Profile", + "urls": [ + "msc:m71", + "https://doi.org/10.25504/FAIRsharing.18b8b4", + "https://mcp-profile-docs.readthedocs.io/en/stable/", + "http://www.aodc.org.au/index.php?id=37", + "http://schemas.aodn.org.au/mcp-2.0", + "http://schemas.aodn.org.au", + "http://schemas.aodn.org.au/mcp-2.0/schema.xsd", + "msc:m22" + ] + }, + "metashare-metadata": { + "acronym": "META-SHARE", + "field_of_science": [ + "linguistics", + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m12" + }, + { + "type": "local", + "value": "https://fairsharing.org/4665" + }, + { + "type": "homepage", + "value": "http://www.meta-share.org/p/93/Documentation#model" + }, + { + "type": "namespace", + "value": "http://www.ilsp.gr/META-XMLSchema" + }, + { + "type": "namespace", + "value": "http://w3id.org/meta-share/meta-share/" + } + ], + "subject_areas": [ + "Humanities", + "Linguistics" + ], + "title": "Metadata Schema for the Description of Language Resources", + "urls": [ + "fuji:m12", + "https://fairsharing.org/4665", + "http://www.meta-share.org/p/93/Documentation#model", + "http://www.ilsp.gr/META-XMLSchema", + "http://w3id.org/meta-share/meta-share/" + ] + }, + "mets-metadata-encoding-and-transmission-standard": { + "acronym": "METS", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m11" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.921056" + }, + { + "type": "namespace", + "value": "http://www.loc.gov/METS/" + }, + { + "type": "schema", + "value": "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v1-2.xsd" + }, + { + "type": "schema", + "value": "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v2-1.xsd" + }, + { + "type": "schema", + "value": "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v2-0.xsd" + }, + { + "type": "homepage", + "value": "https://www.loc.gov/standards/mets/mets-profiles.html" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "METS - Metadata Encoding and Transmission Standard", + "urls": [ + "fuji:m11", + "https://doi.org/10.25504/FAIRsharing.921056", + "http://www.loc.gov/METS/", + "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v1-2.xsd", + "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v2-1.xsd", + "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v2-0.xsd", + "https://www.loc.gov/standards/mets/mets-profiles.html" + ] + }, + "mibbi-minimum-information-biological-and-biomedical-investigations": { + "acronym": null, + "field_of_science": [ + "genetics", + "biological sciences", + "proteins", + "cell biology", + "biochemistry", + "environmental sciences", + "computer and information sciences", + "cell metabolism", + "engineering and technology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m23" + }, + { + "type": "local", + "value": "https://fairsharing.org/3518" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/mibbi-minimum-information-biological-and-biomedical-investigations" + }, + { + "type": "homepage", + "value": "http://mibbi.sourceforge.net/portal.shtml" + } + ], + "subject_areas": [ + "Biochemistry", + "Biology", + "Biotechnology", + "Cell biology", + "Computer applications", + "Environmental sciences", + "Genetics", + "Metabolism", + "Proteins" + ], + "title": "MIBBI (Minimum Information for Biological and Biomedical Investigations)", + "urls": [ + "msc:m23", + "https://fairsharing.org/3518", + "http://www.dcc.ac.uk/resources/metadata-standards/mibbi-minimum-information-biological-and-biomedical-investigations", + "http://mibbi.sourceforge.net/foundry.shtml", + "http://mibbi.sourceforge.net/portal.shtml", + "msc:g12", + "msc:g15", + "msc:g43", + "msc:g58", + "msc:g76", + "msc:g82" + ] + }, + "midas-heritage": { + "acronym": "MIDAS", + "field_of_science": [ + "architectural design", + "archaeology", + "history", + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m24" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.q0hgq" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/midas-heritage" + }, + { + "type": "homepage", + "value": "http://www.english-heritage.org.uk/publications/midas-heritage/" + }, + { + "type": "namespace", + "value": "http://www.heritage-standards.org/midas/schema/1.0" + } + ], + "subject_areas": [ + "Archaeology", + "Architecture", + "Cultural heritage", + "Cultural property preservation", + "History" + ], + "title": "MIDAS-Heritage", + "urls": [ + "msc:m24", + "https://doi.org/10.25504/FAIRsharing.q0hgq", + "http://www.dcc.ac.uk/resources/metadata-standards/midas-heritage", + "http://www.english-heritage.org.uk/content/publications/publicationsNew/guidelines-standards/midas-heritage/midas-heritage-2012-v1_1.pdf", + "https://historicengland.org.uk/images-books/publications/midas-heritage/", + "http://www.english-heritage.org.uk/publications/midas-heritage/", + "http://www.heritage-standards.org/midas/schema/1.0", + "msc:g38" + ] + }, + "mods-metadata-object-description-schema": { + "acronym": "MODS", + "field_of_science": [ + "library sciences", + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m97" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.o67X7e" + }, + { + "type": "homepage", + "value": "http://www.loc.gov/standards/mods/" + }, + { + "type": "namespace", + "value": "http://www.loc.gov/mods/v3" + }, + { + "type": "namespace", + "value": "http://www.loc.gov/mods/" + } + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "MODS (Metadata Object Description Schema)", + "urls": [ + "msc:m97", + "https://doi.org/10.25504/FAIRsharing.o67X7e", + "http://www.loc.gov/standards/mods/", + "http://www.loc.gov/mods/v3", + "http://www.loc.gov/mods/", + "msc:m88", + "msc:g104", + "msc:g121", + "http://www.loc.gov/standards/mods/v3/mods-3-3.xsd", + "http://www.loc.gov/standards/mods/mods-outline-3-4.html", + "http://www.loc.gov/standards/mods/v3/mods-3-4.xsd", + "http://www.loc.gov/standards/mods/mods-outline-3-5.html", + "http://www.loc.gov/standards/mods/v3/mods-3-5.xsd", + "http://www.loc.gov/standards/mods/mods-outline-3-6.html", + "http://www.loc.gov/standards/mods/v3/mods-3-6.xsd", + "http://www.loc.gov/standards/mods/mods-outline-3-7.html", + "http://www.loc.gov/standards/mods/v3/mods-3-7.xsd" + ] + }, + "museumdat-schema": { + "acronym": "museumdat", + "field_of_science": [ + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m31" + }, + { + "type": "local", + "value": "https://fairsharing.org/4671" + }, + { + "type": "schema", + "value": "http://museum.zib.de/museumdat/museumdat-v1.0.xsd" + }, + { + "type": "homepage", + "value": "http://museum.zib.de/museumdat/" + } + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "museumdat", + "urls": [ + "fuji:m31", + "https://fairsharing.org/4671", + "http://museum.zib.de/museumdat/museumdat-v1.0.xsd", + "http://museum.zib.de/museumdat/" + ] + }, + "netcdf-attribute-convention-for-dataset-discovery": { + "acronym": null, + "field_of_science": [], + "identifier": [ + { + "type": "local", + "value": "msc:m89" + }, + { + "type": "homepage", + "value": "https://wiki.esipfed.org/Category:Attribute_Conventions_Dataset_Discovery" + } + ], + "subject_areas": null, + "title": "NetCDF Attribute Convention for Dataset Discovery", + "urls": [ + "msc:m89", + "https://wiki.esipfed.org/Category:Attribute_Conventions_Dataset_Discovery" + ] + }, + "nexml": { + "acronym": null, + "field_of_science": [ + "biological sciences", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m45" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.knrb06" + }, + { + "type": "homepage", + "value": "http://www.nexusformat.org/" + }, + { + "type": "namespace", + "value": "http://www.nexml.org/2009" + }, + { + "type": "schema", + "value": "http://www.nexml.org/2009 ../xsd/nexml.xsd" + } + ], + "subject_areas": [ + "Biology" + ], + "title": "NeXML", + "urls": [ + "fuji:m45", + "https://doi.org/10.25504/FAIRsharing.knrb06", + "http://download.nexusformat.org/doc/html/ref_doc.html", + "http://www.nexusformat.org/", + "http://www.nexml.org/2009", + "http://www.nexml.org/2009 ../xsd/nexml.xsd" + ] + }, + "nexus": { + "acronym": null, + "field_of_science": [ + "materials engineering", + "chemical sciences", + "crystallography", + "engineering and technology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m25" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.eq2pdx" + }, + { + "type": "homepage", + "value": "http://www.nexusformat.org/" + } + ], + "subject_areas": [ + "Chemistry", + "Crystallography", + "Materials engineering" + ], + "title": "NeXus", + "urls": [ + "msc:m25", + "https://doi.org/10.25504/FAIRsharing.eq2pdx", + "http://download.nexusformat.org/doc/html/ref_doc.html", + "http://www.nexusformat.org/", + "msc:g110" + ] + }, + "oai-dublin-core-schema": { + "acronym": "oai_dc", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m44" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.0417cf" + }, + { + "type": "namespace", + "value": "https://resources.bepress.com/OAI/2.0/qualified-dublin-core/" + }, + { + "type": "schema", + "value": "http://www.openarchives.org/OAI/2.0/oai_dc.xsd" + }, + { + "type": "namespace", + "value": "http://www.openarchives.org/OAI/2.0/oai_dc/" + }, + { + "type": "namespace", + "value": "http://www.openarchives.org/OAI/2.0/oai_dc" + }, + { + "type": "homepage", + "value": "http://www.openarchives.org/OAI/openarchivesprotocol.html#dublincore" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Open Archive Initiative Dublin Core (OAI DC)", + "urls": [ + "fuji:m44", + "https://doi.org/10.25504/FAIRsharing.0417cf", + "https://resources.bepress.com/OAI/2.0/qualified-dublin-core/", + "http://www.openarchives.org/OAI/2.0/oai_dc.xsd", + "http://www.openarchives.org/OAI/2.0/oai_dc/", + "http://www.openarchives.org/OAI/2.0/oai_dc", + "http://www.openarchives.org/OAI/openarchivesprotocol.html#dublincore" + ] + }, + "oai-ore-open-archives-initiative-object-reuse-and-exchange": { + "acronym": "OAI-ORE", + "field_of_science": [ + "anthropology", + "history", + "social sciences", + "sciences", + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m26" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.3mtaee" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange" + }, + { + "type": "homepage", + "value": "http://www.openarchives.org/ore/toc" + }, + { + "type": "namespace", + "value": "http://www.openarchives.org/ore/terms/" + } + ], + "subject_areas": [ + "Anthropology", + "History", + "Multidisciplinary" + ], + "title": "OAI-ORE (Open Archives Initiative Object Reuse and Exchange)", + "urls": [ + "msc:m26", + "https://doi.org/10.25504/FAIRsharing.3mtaee", + "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange", + "http://www.openarchives.org/ore/", + "http://www.openarchives.org/ore/toc", + "http://www.openarchives.org/ore/terms/", + "msc:g81" + ] + }, + "oai-rdf-schema": { + "acronym": "oai-rdf", + "field_of_science": [], + "identifier": [ + { + "type": "local", + "value": "fuji:m38" + }, + { + "type": "schema", + "value": "http://www.openarchives.org/OAI/2.0/rdf.xsd" + }, + { + "type": "namespace", + "value": "http://www.openarchives.org/OAI/2.0/rdf/" + }, + { + "type": "namespace", + "value": "https://api.aiscr.cz/schema/oai_rdf/" + }, + { + "type": "homepage", + "value": "http://www.openarchives.org/OAI/2.0/rdf/" + } + ], + "subject_areas": null, + "title": "OAI-RDF Schema", + "urls": [ + "fuji:m38", + "http://www.openarchives.org/OAI/2.0/rdf.xsd", + "http://www.openarchives.org/OAI/2.0/rdf/", + "https://api.aiscr.cz/schema/oai_rdf/", + "http://www.openarchives.org/OAI/2.0/rdf/" + ] + }, + "observ-om": { + "acronym": null, + "field_of_science": [ + "biological sciences", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m27" + }, + { + "type": "local", + "value": "https://fairsharing.org/4682" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/observ-om" + }, + { + "type": "homepage", + "value": "http://www.molgenis.org/wiki/ObservStart" + } + ], + "subject_areas": [ + "Biology" + ], + "title": "Observ-OM", + "urls": [ + "msc:m27", + "https://fairsharing.org/4682", + "http://www.dcc.ac.uk/resources/metadata-standards/observ-om", + "http://www.molgenis.org/wiki/ObservStart", + "msc:g21", + "msc:g57", + "msc:g70", + "msc:g96", + "msc:g97" + ] + }, + "observations-and-measurements": { + "acronym": null, + "field_of_science": [ + "meteorology", + "chemical sciences", + "engineering and technology", + "remote sensing", + "geology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m28" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.4ehmy9" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/observations-and-measurements" + }, + { + "type": "homepage", + "value": "http://www.opengeospatial.org/standards/om" + }, + { + "type": "namespace", + "value": "http://schemas.opengis.net/om/2.0/" + }, + { + "type": "schema", + "value": "https://schemas.opengis.net/om/2.0/observation.xsd" + }, + { + "type": "schema", + "value": "https://schemas.opengis.net/om/1.0.0/observation.xsd" + }, + { + "type": "namespace", + "value": "http://www.opengis.net/om/1.0" + } + ], + "subject_areas": [ + "Chemistry", + "Geology", + "Meteorology", + "Remote sensing" + ], + "title": "Observations and Measurements", + "urls": [ + "msc:m28", + "https://doi.org/10.25504/FAIRsharing.4ehmy9", + "http://www.dcc.ac.uk/resources/metadata-standards/observations-and-measurements", + "http://portal.opengeospatial.org/files/?artifact_id=41579", + "http://www.opengeospatial.org/standards/om", + "http://schemas.opengis.net/om/2.0/", + "https://schemas.opengis.net/om/2.0/observation.xsd", + "https://schemas.opengis.net/om/1.0.0/observation.xsd", + "http://www.opengis.net/om/1.0", + "msc:g54", + "msc:g79", + "msc:g103" + ] + }, + "odam-datapackage": { + "acronym": null, + "field_of_science": [], + "identifier": [ + { + "type": "local", + "value": "10.25504/FAIRsharing.ld9wne" + }, + { + "type": "homepage", + "value": null + } + ], + "subject_areas": [ + "biochemistry", + "molecular-biology", + "metabolic-biochemistry", + "biomaterials", + "bioengineering" + ], + "title": "ODAM Structural Metadata", + "urls": [ + "10.25504/FAIRsharing.ld9wne", + "https://inrae.github.io/ODAM/data-preparation/url" + ] + }, + "olac-metadata": { + "acronym": "OLAC", + "field_of_science": [ + "linguistics", + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m14" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.17fbae" + }, + { + "type": "namespace", + "value": "http://www.language-archives.org/OLAC/1.1/" + }, + { + "type": "schema", + "value": "http://www.language-archives.org/OLAC/1.1/olac.xsd" + }, + { + "type": "homepage", + "value": "http://www.language-archives.org/OLAC" + } + ], + "subject_areas": [ + "Humanities", + "Linguistics" + ], + "title": "OLAC metadata", + "urls": [ + "fuji:m14", + "https://doi.org/10.25504/FAIRsharing.17fbae", + "http://www.language-archives.org/OLAC/1.1/", + "http://www.language-archives.org/OLAC/1.1/olac.xsd", + "http://www.language-archives.org/OLAC" + ] + }, + "ome-tiff-open-microscopy-environment-tiff": { + "acronym": null, + "field_of_science": [ + "plant protection", + "cell biology", + "veterinary sciences", + "zoology", + "medical and health sciences", + "physiology", + "botany", + "agricultural sciences", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m73" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.cq8tg2" + }, + { + "type": "homepage", + "value": "http://www.openmicroscopy.org/site/support/file-formats/ome-tiff" + } + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-TIFF (Open Microscopy Environment TIFF)", + "urls": [ + "msc:m73", + "https://doi.org/10.25504/FAIRsharing.cq8tg2", + "http://www.openmicroscopy.org/site/support/file-formats/ome-tiff", + "msc:m29" + ] + }, + "ome-xml-open-microscopy-environment-xml": { + "acronym": null, + "field_of_science": [ + "plant protection", + "cell biology", + "veterinary sciences", + "zoology", + "medical and health sciences", + "physiology", + "botany", + "agricultural sciences", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m29" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.zk8p4g" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + }, + { + "type": "homepage", + "value": "http://www.openmicroscopy.org/site/support/file-formats" + }, + { + "type": "namespace", + "value": "http://www.openmicroscopy.org/Schemas/OME/2016-06" + }, + { + "type": "namespace", + "value": "http://www.openmicroscopy.org/Schemas/OME/2015-01" + }, + { + "type": "namespace", + "value": "http://www.openmicroscopy.org/Schemas/OME/2013-06" + }, + { + "type": "namespace", + "value": "http://www.openmicroscopy.org/Schemas/OME/2012-06" + }, + { + "type": "namespace", + "value": "http://www.openmicroscopy.org/Schemas/OME/2011-06" + }, + { + "type": "namespace", + "value": "http://www.openmicroscopy.org/Schemas/OME/2010-04" + }, + { + "type": "namespace", + "value": "http://www.openmicroscopy.org/Schemas/OME/2010-06" + }, + { + "type": "namespace", + "value": "http://www.openmicroscopy.org/Schemas/OME/2009-09" + }, + { + "type": "namespace", + "value": "http://www.openmicroscopy.org/Schemas/OME/2008-09" + }, + { + "type": "namespace", + "value": "http://www.openmicroscopy.org/Schemas/OME/2008-02" + }, + { + "type": "namespace", + "value": "http://www.openmicroscopy.org/Schemas/OME/2007-06" + }, + { + "type": "schema", + "value": "http://www.openmicroscopy.org/Schemas/OME/2016-06/ome.xsd" + }, + { + "type": "schema", + "value": "http://www.openmicroscopy.org/Schemas/OME/2015-01/ome.xsd" + }, + { + "type": "schema", + "value": "http://www.openmicroscopy.org/Schemas/OME/2013-06/index.html" + }, + { + "type": "schema", + "value": "http://www.openmicroscopy.org/Schemas/OME/2012-06/index.html" + }, + { + "type": "schema", + "value": "http://www.openmicroscopy.org/Schemas/OME/2011-06/index.html" + }, + { + "type": "schema", + "value": "http://www.openmicroscopy.org/Schemas/OME/2010-04/index.html" + }, + { + "type": "schema", + "value": "http://www.openmicroscopy.org/Schemas/OME/2010-06/index.html" + }, + { + "type": "schema", + "value": "http://www.openmicroscopy.org/Schemas/OME/2009-09/index.html" + }, + { + "type": "schema", + "value": "http://www.openmicroscopy.org/Schemas/OME/2008-09/index.html" + }, + { + "type": "schema", + "value": "http://www.openmicroscopy.org/Schemas/OME/2008-02/index.html" + }, + { + "type": "schema", + "value": "http://www.openmicroscopy.org/Schemas/OME/2007-06/index.html" + } + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)", + "urls": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml", + "http://www.openmicroscopy.org/Schemas/", + "http://www.openmicroscopy.org/site/support/file-formats", + "http://www.openmicroscopy.org/Schemas/OME/2016-06", + "http://www.openmicroscopy.org/Schemas/OME/2015-01", + "http://www.openmicroscopy.org/Schemas/OME/2013-06", + "http://www.openmicroscopy.org/Schemas/OME/2012-06", + "http://www.openmicroscopy.org/Schemas/OME/2011-06", + "http://www.openmicroscopy.org/Schemas/OME/2010-04", + "http://www.openmicroscopy.org/Schemas/OME/2010-06", + "http://www.openmicroscopy.org/Schemas/OME/2009-09", + "http://www.openmicroscopy.org/Schemas/OME/2008-09", + "http://www.openmicroscopy.org/Schemas/OME/2008-02", + "http://www.openmicroscopy.org/Schemas/OME/2007-06", + "http://www.openmicroscopy.org/Schemas/OME/2016-06/ome.xsd", + "http://www.openmicroscopy.org/Schemas/OME/2015-01/ome.xsd", + "http://www.openmicroscopy.org/Schemas/OME/2013-06/index.html", + "http://www.openmicroscopy.org/Schemas/OME/2012-06/index.html", + "http://www.openmicroscopy.org/Schemas/OME/2011-06/index.html", + "http://www.openmicroscopy.org/Schemas/OME/2010-04/index.html", + "http://www.openmicroscopy.org/Schemas/OME/2010-06/index.html", + "http://www.openmicroscopy.org/Schemas/OME/2009-09/index.html", + "http://www.openmicroscopy.org/Schemas/OME/2008-09/index.html", + "http://www.openmicroscopy.org/Schemas/OME/2008-02/index.html", + "http://www.openmicroscopy.org/Schemas/OME/2007-06/index.html", + "msc:g17", + "msc:g62" + ] + }, + "onix-metadata-schema": { + "acronym": "onix", + "field_of_science": [ + "library sciences", + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m42" + }, + { + "type": "local", + "value": "https://fairsharing.org/4683" + }, + { + "type": "homepage", + "value": "https://www.editeur.org/8/ONIX/" + }, + { + "type": "namespace", + "value": "http://www.editeur.org/onix/2.1/short" + }, + { + "type": "schema", + "value": "http://www.editeur.org/onix/2.1/short/ONIX_BookProduct_Release2.1_short" + } + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "ONIX for Books Product Information Message", + "urls": [ + "fuji:m42", + "https://fairsharing.org/4683", + "https://www.editeur.org/8/ONIX/", + "https://www.editeur.org/files/ONIX%203/APPNOTE%20Describing%20e-books%20in%20ONIX.pdf", + "http://www.editeur.org/onix/2.1/short", + "http://www.editeur.org/onix/2.1/short/ONIX_BookProduct_Release2.1_short" + ] + }, + "openaire-guidelines": { + "acronym": "OpenAIRE_G", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m92" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.123197" + }, + { + "type": "homepage", + "value": "https://guidelines.openaire.eu/" + }, + { + "type": "schema", + "value": "https://www.openaire.eu/schema/repo-lit/4.0/openaire.xsd" + }, + { + "type": "namespace", + "value": "http://namespace.openaire.eu/schema/oaire/" + }, + { + "type": "namespace", + "value": "oai_openaire" + }, + { + "type": "namespace", + "value": "https://openaire.eu" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "OpenAIRE Guidelines", + "urls": [ + "msc:m92", + "https://doi.org/10.25504/FAIRsharing.123197", + "https://guidelines.openaire.eu/", + "https://www.openaire.eu/schema/repo-lit/4.0/openaire.xsd", + "http://namespace.openaire.eu/schema/oaire/", + "oai_openaire", + "https://openaire.eu", + "msc:g112", + "msc:m4", + "msc:m11", + "msc:m15" + ] + }, + "openaire-research-graph": { + "acronym": "OpenAIRE_RG", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m20" + }, + { + "type": "local", + "value": "https://fairsharing.org/4684" + }, + { + "type": "namespace", + "value": "http://namespace.openaire.eu/oaf" + }, + { + "type": "schema", + "value": "https://www.openaire.eu/schema/1.0/oaf-1.0.xsd" + }, + { + "type": "homepage", + "value": "https://graph.openaire.eu/" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "OpenAIRE Research Graph", + "urls": [ + "fuji:m20", + "https://fairsharing.org/4684", + "http://namespace.openaire.eu/oaf", + "https://www.openaire.eu/schema/latest/doc/oaf.html", + "https://www.openaire.eu/schema/1.0/oaf-1.0.xsd", + "https://graph.openaire.eu/" + ] + }, + "opensearch": { + "acronym": null, + "field_of_science": [], + "identifier": [ + { + "type": "local", + "value": "fuji:m2" + }, + { + "type": "local", + "value": "https://fairsharing.org/4685" + }, + { + "type": "namespace", + "value": "http://a9.com/-/spec/opensearch/1.1/" + }, + { + "type": "homepage", + "value": "https://github.com/dewitt/opensearch" + } + ], + "subject_areas": null, + "title": "OpenSearch", + "urls": [ + "fuji:m2", + "https://fairsharing.org/4685", + "http://a9.com/-/spec/opensearch/1.1/", + "https://github.com/dewitt/opensearch" + ] + }, + "openurl-contextobject": { + "acronym": "CTX", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m7" + }, + { + "type": "local", + "value": "https://fairsharing.org/4686" + }, + { + "type": "namespace", + "value": "info:ofi/fmt:xml:xsd:ctx" + }, + { + "type": "namespace", + "value": "info:ofi/fmt:kev:mtx:ctx" + }, + { + "type": "homepage", + "value": "https://www.oclc.org/research/activities/registry.html" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "The OpenURL ContextObject Format", + "urls": [ + "fuji:m7", + "https://fairsharing.org/4686", + "info:ofi/fmt:xml:xsd:ctx", + "info:ofi/fmt:kev:mtx:ctx", + "https://groups.niso.org/apps/group_public/download.php/14833/z39_88_2004_r2010.pdf", + "https://www.oclc.org/research/activities/registry.html" + ] + }, + "pdbx-mmcif": { + "acronym": null, + "field_of_science": [ + "chemical sciences", + "biological sciences", + "crystallography", + "molecular biology", + "computer and information sciences", + "physical sciences", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m30" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.fd28en" + }, + { + "type": "homepage", + "value": "http://mmcif.wwpdb.org/" + } + ], + "subject_areas": [ + "Biology", + "Chemistry", + "Computer applications", + "Crystallography", + "Molecular biology", + "Physics" + ], + "title": "PDBx/mmCIF (Protein Data Bank Exchange Dictionary and the Macromolecular Crystallographic Information Framework)", + "urls": [ + "msc:m30", + "https://doi.org/10.25504/FAIRsharing.fd28en", + "http://mmcif.wwpdb.org/dictionaries/mmcif_pdbx_v40.dic/Index/", + "http://mmcif.wwpdb.org/", + "msc:g22", + "msc:g98", + "msc:g98" + ] + }, + "pica-metadata-schema": { + "acronym": "pica", + "field_of_science": [], + "identifier": [ + { + "type": "local", + "value": "fuji:m37" + }, + { + "type": "local", + "value": "https://fairsharing.org/4688" + }, + { + "type": "namespace", + "value": "info:srw/schema/5/picaXML-v1.0" + }, + { + "type": "namespace", + "value": "http://www.oclcpica.org/xmlns/ppxml-1.0" + }, + { + "type": "schema", + "value": "http://www.oclcpica.org/xml/picaplus.xsd" + }, + { + "type": "homepage", + "value": "http://www.oclcpica.org" + } + ], + "subject_areas": null, + "title": "OCLC PICA XML", + "urls": [ + "fuji:m37", + "https://fairsharing.org/4688", + "info:srw/schema/5/picaXML-v1.0", + "http://www.oclcpica.org/xmlns/ppxml-1.0", + "http://www.oclcpica.org/xml/picaplus.xsd", + "http://www.oclcpica.org" + ] + }, + "premis": { + "acronym": "premis", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m31" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.27a0f4" + }, + { + "type": "homepage", + "value": "http://www.loc.gov/standards/premis/" + }, + { + "type": "namespace", + "value": "http://www.loc.gov/standards/premis" + }, + { + "type": "schema", + "value": "https://www.loc.gov/standards/premis/v3/premis-v3-0.xsd" + }, + { + "type": "namespace", + "value": "http://www.loc.gov/premis/v3" + }, + { + "type": "schema", + "value": "https://www.loc.gov/standards/premis/v2/premis-v2-2.xsd" + }, + { + "type": "namespace", + "value": "info:lc/xmlns/premis-v2" + }, + { + "type": "schema", + "value": "https://www.loc.gov/standards/premis/v2/premis-v2-3.xsd" + }, + { + "type": "schema", + "value": "https://www.loc.gov/standards/premis/v1/PREMIS-v1-1.xsd" + }, + { + "type": "namespace", + "value": "http://www.loc.gov/standards/premis/v1" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "PREMIS", + "urls": [ + "msc:m31", + "https://doi.org/10.25504/FAIRsharing.27a0f4", + "http://www.loc.gov/standards/premis/v3/premis-3-0-final.pdf", + "http://www.loc.gov/standards/premis/", + "http://www.loc.gov/standards/premis", + "https://www.loc.gov/standards/premis/v3/premis-v3-0.xsd", + "http://www.loc.gov/premis/v3", + "https://www.loc.gov/standards/premis/v2/premis-v2-2.xsd", + "info:lc/xmlns/premis-v2", + "https://www.loc.gov/standards/premis/v2/premis-v2-3.xsd", + "https://www.loc.gov/standards/premis/v1/PREMIS-v1-1.xsd", + "http://www.loc.gov/standards/premis/v1", + "msc:g104", + "msc:g111" + ] + }, + "prism-publishing-industry-standard-metadata": { + "acronym": "PRISM", + "field_of_science": [], + "identifier": [ + { + "type": "local", + "value": "fuji:m27" + }, + { + "type": "local", + "value": "https://fairsharing.org/4689" + }, + { + "type": "homepage", + "value": "https://www.w3.org/Submission/prism" + }, + { + "type": "namespace", + "value": "http://prismstandard.org/namespaces/pam/0.0/" + }, + { + "type": "namespace", + "value": "http://prismstandard.org/namespaces/pam/1.2/" + }, + { + "type": "namespace", + "value": "http://prismstandard.org/namespaces/pam/2.0/" + }, + { + "type": "namespace", + "value": "http://prismstandard.org/namespaces/pam/2.1/" + }, + { + "type": "namespace", + "value": "http://prismstandard.org/namespaces/pam/3.0/" + }, + { + "type": "namespace", + "value": "http://prismstandard.org/namespaces/basic/1.2/" + }, + { + "type": "namespace", + "value": "http://prismstandard.org/namespaces/basic/2.0/" + }, + { + "type": "namespace", + "value": "http://prismstandard.org/namespaces/basic/1.0/" + }, + { + "type": "namespace", + "value": "http://prismstandard.org/namespaces/basic/2.1/" + }, + { + "type": "namespace", + "value": "http://prismstandard.org/namespaces/basic/3.0/" + }, + { + "type": "namespace", + "value": "http://prismstandard.org/namespaces/pim/1.2/" + } + ], + "subject_areas": null, + "title": "PRISM Publishing Requirements for Industry Standard Metadata", + "urls": [ + "fuji:m27", + "https://fairsharing.org/4689", + "https://www.w3.org/Submission/prism", + "http://prismstandard.org/namespaces/pam/0.0/", + "http://prismstandard.org/namespaces/pam/1.2/", + "http://prismstandard.org/namespaces/pam/2.0/", + "http://prismstandard.org/namespaces/pam/2.1/", + "http://prismstandard.org/namespaces/pam/3.0/", + "http://prismstandard.org/namespaces/basic/1.2/", + "http://prismstandard.org/namespaces/basic/2.0/", + "http://prismstandard.org/namespaces/basic/1.0/", + "http://prismstandard.org/namespaces/basic/2.1/", + "http://prismstandard.org/namespaces/basic/3.0/", + "http://prismstandard.org/namespaces/pim/1.2/" + ] + }, + "protocol-data-element-definitions": { + "acronym": null, + "field_of_science": [ + "clinical medicine", + "medical and health sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m32" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/protocol-data-element-definitions" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.7e962d" + }, + { + "type": "homepage", + "value": "http://clinicaltrials.gov/ct2/manage-recs/resources" + }, + { + "type": "schema", + "value": "https://prsinfo.clinicaltrials.gov/ProtocolRecordSchema.xsd" + }, + { + "type": "namespace", + "value": "http://clinicaltrials.gov/prs" + }, + { + "type": "schema", + "value": "https://prsinfo.clinicaltrials.gov/RRSUploadSchema.xsd" + }, + { + "type": "namespace", + "value": "http://clinicaltrials.gov/rrs" + } + ], + "subject_areas": [ + "Clinical medicine" + ], + "title": "Protocol Data Element Definitions", + "urls": [ + "msc:m32", + "http://www.dcc.ac.uk/resources/metadata-standards/protocol-data-element-definitions", + "https://doi.org/10.25504/FAIRsharing.7e962d", + "http://prsinfo.clinicaltrials.gov/definitions.html", + "http://clinicaltrials.gov/ct2/manage-recs/resources", + "https://prsinfo.clinicaltrials.gov/ProtocolRecordSchema.xsd", + "http://clinicaltrials.gov/prs", + "https://prsinfo.clinicaltrials.gov/RRSUploadSchema.xsd", + "http://clinicaltrials.gov/rrs", + "msc:g105" + ] + }, + "prov": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m33" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/prov" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.fe7cda" + }, + { + "type": "homepage", + "value": "http://www.w3.org/2001/sw/wiki/PROV" + }, + { + "type": "schema", + "value": "http://www.w3.org/ns/prov.xsd" + }, + { + "type": "namespace", + "value": "http://www.w3.org/ns/prov#" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "PROV", + "urls": [ + "msc:m33", + "http://www.dcc.ac.uk/resources/metadata-standards/prov", + "https://doi.org/10.25504/FAIRsharing.fe7cda", + "http://www.w3.org/TR/prov-overview/", + "http://www.w3.org/2001/sw/wiki/PROV", + "http://www.w3.org/ns/prov.xsd", + "http://www.w3.org/ns/prov#", + "msc:g84", + "msc:g106" + ] + }, + "quakeml": { + "acronym": "QuakeML", + "field_of_science": [ + "earth and related environmental sciences", + "geophysics", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m9" + }, + { + "type": "local", + "value": "https://fairsharing.org/1444" + }, + { + "type": "namespace", + "value": "http://quakeml.org/xmlns/quakeml/2.0" + }, + { + "type": "namespace", + "value": "http://quakeml.org/xmlns/quakeml/1.2" + }, + { + "type": "namespace", + "value": "http://quakeml.org/xmlns/quakeml/1.1" + }, + { + "type": "namespace", + "value": "http://quakeml.org/xmlns/quakeml/1.0.1" + }, + { + "type": "namespace", + "value": "http://quakeml.org/xmlns/quakeml/1.0" + }, + { + "type": "homepage", + "value": "https://quake.ethz.ch/quakeml" + } + ], + "subject_areas": [ + "Earth sciences", + "Geophysics" + ], + "title": "QuakeML", + "urls": [ + "fuji:m9", + "https://fairsharing.org/1444", + "http://quakeml.org/xmlns/quakeml/2.0", + "http://quakeml.org/xmlns/quakeml/1.2", + "http://quakeml.org/xmlns/quakeml/1.1", + "http://quakeml.org/xmlns/quakeml/1.0.1", + "http://quakeml.org/xmlns/quakeml/1.0", + "https://quake.ethz.ch/quakeml", + "http://www.quakeml.org/" + ] + }, + "qudex-qualitative-data-exchange-format": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m34" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/qudex-qualitative-data-exchange-format" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.d42cb9" + }, + { + "type": "homepage", + "value": "http://www.data-archive.ac.uk/create-manage/projects/qudex?index=1" + }, + { + "type": "schema", + "value": "https://dam.data-archive.ac.uk/standards/qudex_v03_01.xsd" + }, + { + "type": "namespace", + "value": "http://www.data-archive.ac.uk/dext/schema/draft" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "QuDEx (Qualitative Data Exchange Format)", + "urls": [ + "msc:m34", + "http://www.dcc.ac.uk/resources/metadata-standards/qudex-qualitative-data-exchange-format", + "https://doi.org/10.25504/FAIRsharing.d42cb9", + "http://data-archive.ac.uk/create-manage/projects/qudex?index=1", + "http://www.data-archive.ac.uk/create-manage/projects/qudex?index=1", + "https://dam.data-archive.ac.uk/standards/qudex_v03_01.xsd", + "http://www.data-archive.ac.uk/dext/schema/draft", + "msc:g91" + ] + }, + "rdf-data-cube-vocabulary": { + "acronym": null, + "field_of_science": [ + "statistics and probability", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m35" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.c3b573" + }, + { + "type": "homepage", + "value": "http://www.w3.org/TR/vocab-data-cube/" + }, + { + "type": "namespace", + "value": "http://purl.org/linked-data/cube#" + } + ], + "subject_areas": [ + "Statistics" + ], + "title": "RDF Data Cube Vocabulary", + "urls": [ + "msc:m35", + "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary", + "https://doi.org/10.25504/FAIRsharing.c3b573", + "http://www.w3.org/TR/vocab-data-cube/", + "http://purl.org/linked-data/cube#", + "msc:g65", + "msc:g106", + "msc:g107" + ] + }, + "resource-metadata-virtual-observatory": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m74" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.qSULus" + }, + { + "type": "homepage", + "value": "http://www.ivoa.net/documents/latest/RM.html" + } + ], + "subject_areas": [ + "Astronomy" + ], + "title": "Resource Metadata for the Virtual Observatory", + "urls": [ + "msc:m74", + "https://doi.org/10.25504/FAIRsharing.qSULus", + "http://www.ivoa.net/documents/latest/RM.html", + "msc:m15", + "msc:m20" + ] + }, + "rif-cs-registry-interchange-format-collections-and-services": { + "acronym": "RIF-CS", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m98" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.reybx2" + }, + { + "type": "homepage", + "value": "https://www.ands.org.au/online-services/rif-cs-schema" + }, + { + "type": "schema", + "value": "http://services.ands.org.au/documentation/rifcs/schema/registryObjects.xsd" + }, + { + "type": "namespace", + "value": "http://ands.org.au/standards/rif-cs/registryObjects" + }, + { + "type": "namespace", + "value": "https://ands.org.au/standards/rif-cs/registryObjects" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RIF-CS (Registry Interchange Format \u00e2\u20ac\u201c Collections and Services)", + "urls": [ + "msc:m98", + "https://doi.org/10.25504/FAIRsharing.reybx2", + "https://www.ands.org.au/online-services/rif-cs-schema", + "http://services.ands.org.au/documentation/rifcs/schemadocs/registryObjects.html", + "http://services.ands.org.au/documentation/rifcs/schema/registryObjects.xsd", + "http://ands.org.au/standards/rif-cs/registryObjects", + "https://ands.org.au/standards/rif-cs/registryObjects", + "msc:g118" + ] + }, + "rioxx-metadata-application-profile": { + "acronym": "rioxx", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m5" + }, + { + "type": "local", + "value": "https://fairsharing.org/4690" + }, + { + "type": "namespace", + "value": "http://www.rioxx.net/schema/v2.0/rioxx/" + }, + { + "type": "homepage", + "value": "https://www.rioxx.net/" + }, + { + "type": "namespace", + "value": "https://www.rioxx.net/schema/v2.0/rioxxterms/" + }, + { + "type": "namespace", + "value": "http://docs.rioxx.net/schema/v1.0/" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RIOXX Metadata Application Profile", + "urls": [ + "fuji:m5", + "https://fairsharing.org/4690", + "http://www.rioxx.net/schema/v2.0/rioxx/", + "https://www.rioxx.net/", + "https://www.rioxx.net/schema/v2.0/rioxxterms/", + "http://docs.rioxx.net/schema/v1.0/" + ] + }, + "ro-crate": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.wUoZKE" + }, + { + "type": "local", + "value": "msc:m102" + }, + { + "type": "homepage", + "value": "https://w3id.org/ro/crate" + }, + { + "type": "namespace", + "value": "https://w3id.org/ro/crate/1.1/context" + }, + { + "type": "namespace", + "value": "https://w3id.org/ro/crate/1.0/context" + }, + { + "type": "namespace", + "value": "https://w3id.org/ro/crate/0.2/context" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RO-Crate", + "urls": [ + "https://doi.org/10.25504/FAIRsharing.wUoZKE", + "msc:m102", + "https://w3id.org/ro/crate/1.1", + "https://w3id.org/ro/crate", + "https://w3id.org/ro/crate/1.1/context", + "https://w3id.org/ro/crate/1.0/context", + "https://w3id.org/ro/crate/0.2/context" + ] + }, + "schemaorg": { + "acronym": "schemaorg", + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.hzdzq8" + }, + { + "type": "local", + "value": "msc:m101" + }, + { + "type": "namespace", + "value": "https://schema.org" + }, + { + "type": "namespace", + "value": "http://schema.org" + }, + { + "type": "homepage", + "value": "https://schema.org/docs/schemas.html" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Schema.org", + "urls": [ + "https://doi.org/10.25504/FAIRsharing.hzdzq8", + "msc:m101", + "https://schema.org", + "http://schema.org", + "https://schema.org/docs/documents.html", + "https://schema.org/docs/schemas.html" + ] + }, + "scholix-metadata-schema": { + "acronym": "scholix", + "field_of_science": [], + "identifier": [ + { + "type": "local", + "value": "fuji:m28" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.B0d5Kn" + }, + { + "type": "homepage", + "value": "http://www.scholix.org/schema" + }, + { + "type": "namespace", + "value": "http://www.scholix.org" + }, + { + "type": "schema", + "value": "https://github.com/scholix/schema/blob/master/xsd/v3/schema.xsd" + }, + { + "type": "schema", + "value": "https://github.com/scholix/schema/blob/master/xsd/v1/scholix.xsd" + } + ], + "subject_areas": null, + "title": null, + "urls": [ + "fuji:m28", + "https://doi.org/10.25504/FAIRsharing.B0d5Kn", + "http://www.scholix.org/schema", + "http://www.scholix.org", + "https://github.com/scholix/schema/blob/master/xsd/v3/schema.xsd", + "https://github.com/scholix/schema/blob/master/xsd/v1/scholix.xsd" + ] + }, + "sdac": { + "acronym": null, + "field_of_science": [ + "astronomy", + "astrophysics", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m37" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.zcjkc7" + }, + { + "type": "homepage", + "value": "http://cds.u-strasbg.fr/doc/catstd.htx" + } + ], + "subject_areas": [ + "Astronomy", + "Astrophysics" + ], + "title": "SDAC (Standard for Documentation of Astronomical Catalogues)", + "urls": [ + "msc:m37", + "https://doi.org/10.25504/FAIRsharing.zcjkc7", + "http://cds.u-strasbg.fr/doc/catstd.pdf", + "http://cds.u-strasbg.fr/doc/catstd.htx", + "msc:g16", + "msc:g16" + ] + }, + "sdmx-statistical-data-and-metadata-exchange": { + "acronym": null, + "field_of_science": [ + "economics", + "statistics and probability", + "social geography", + "political sciences", + "demography", + "social sciences", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m38" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.cea9zc" + }, + { + "type": "homepage", + "value": "http://sdmx.org" + }, + { + "type": "namespace", + "value": "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/common" + }, + { + "type": "namespace", + "value": "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/registry" + }, + { + "type": "namespace", + "value": "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/structure" + }, + { + "type": "namespace", + "value": "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/message" + }, + { + "type": "namespace", + "value": "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/data" + }, + { + "type": "namespace", + "value": "http://www.sdmx.org/resources/sdmxml/" + } + ], + "subject_areas": [ + "Demography", + "Economics", + "Human geography", + "Social policy", + "Statistics" + ], + "title": "SDMX (Statistical Data and Metadata Exchange)", + "urls": [ + "msc:m38", + "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", + "https://doi.org/10.25504/FAIRsharing.cea9zc", + "http://sdmx.org/?page_id=5008", + "http://sdmx.org", + "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/common", + "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/registry", + "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/structure", + "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/message", + "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/data", + "http://www.sdmx.org/resources/sdmxml/", + "msc:g42", + "msc:g86" + ] + }, + "shoreline-metadata-profile": { + "acronym": null, + "field_of_science": [ + "hydrology", + "oceanography", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m75" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.22041b" + }, + { + "type": "homepage", + "value": "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/shoreline-metadata/" + } + ], + "subject_areas": [ + "Hydrology", + "Oceanography" + ], + "title": "Shoreline Metadata Profile", + "urls": [ + "msc:m75", + "https://doi.org/10.25504/FAIRsharing.22041b", + "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/shoreline-metadata/", + "msc:m17" + ] + }, + "snrnasm-isa-tab": { + "acronym": null, + "field_of_science": [ + "cell biology", + "biochemistry", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m76" + }, + { + "type": "homepage", + "value": "http://snrnasm.bio.unc.edu" + } + ], + "subject_areas": [ + "Biochemistry", + "Cell biology" + ], + "title": "SNRNASM ISA-Tab", + "urls": [ + "msc:m76", + "http://snrnasm.bio.unc.edu", + "msc:m21" + ] + }, + "spase-data-model": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m39" + }, + { + "type": "local", + "value": "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.f5d440" + }, + { + "type": "homepage", + "value": "http://www.spase-group.org/data/" + }, + { + "type": "namespace", + "value": "http://www.spase-group.org/data/schema" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-1.0.0.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-1.1.0.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-1.2.0.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-1.2.1.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-1.2.2.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-1.3.0.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.0.0.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.1.0.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.2.0.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.2.1.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.2.2.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.2.3.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.2.4.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.2.6.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.2.8.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.2.9.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.3.0.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.3.1.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.3.2.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.4.0.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.4.1.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.4.2.xsd" + }, + { + "type": "schema", + "value": "https://spase-group.org/data/schema/spase-2.5.0.xsd" + } + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model", + "urls": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440", + "http://www.spase-group.org/docs/schema/", + "http://www.spase-group.org/data/", + "http://www.spase-group.org/data/schema", + "https://spase-group.org/data/schema/spase-1.0.0.xsd", + "https://spase-group.org/data/schema/spase-1.1.0.xsd", + "https://spase-group.org/data/schema/spase-1.2.0.xsd", + "https://spase-group.org/data/schema/spase-1.2.1.xsd", + "https://spase-group.org/data/schema/spase-1.2.2.xsd", + "https://spase-group.org/data/schema/spase-1.3.0.xsd", + "https://spase-group.org/data/schema/spase-2.0.0.xsd", + "https://spase-group.org/data/schema/spase-2.1.0.xsd", + "https://spase-group.org/data/schema/spase-2.2.0.xsd", + "https://spase-group.org/data/schema/spase-2.2.1.xsd", + "https://spase-group.org/data/schema/spase-2.2.2.xsd", + "https://spase-group.org/data/schema/spase-2.2.3.xsd", + "https://spase-group.org/data/schema/spase-2.2.4.xsd", + "https://spase-group.org/data/schema/spase-2.2.6.xsd", + "https://spase-group.org/data/schema/spase-2.2.8.xsd", + "https://spase-group.org/data/schema/spase-2.2.9.xsd", + "https://spase-group.org/data/schema/spase-2.3.0.xsd", + "https://spase-group.org/data/schema/spase-2.3.1.xsd", + "https://spase-group.org/data/schema/spase-2.3.2.xsd", + "https://spase-group.org/data/schema/spase-2.4.0.xsd", + "https://spase-group.org/data/schema/spase-2.4.1.xsd", + "https://spase-group.org/data/schema/spase-2.4.2.xsd", + "https://spase-group.org/data/schema/spase-2.5.0.xsd", + "msc:g77", + "msc:g87", + "http://www.spase-group.org/data/model/spase-2_2_2.pdf", + "http://www.spase-group.org/data/model/spase-2_2_3.pdf", + "http://www.spase-group.org/data/model/spase-2_2_4.pdf", + "http://www.spase-group.org/data/model/spase-2_2_5.pdf", + "http://www.spase-group.org/data/model/spase-2_2_6.pdf", + "http://www.spase-group.org/data/model/spase-2_2_7.pdf", + "http://www.spase-group.org/data/model/spase-2_2_9.pdf", + "http://www.spase-group.org/data/model/spase-2_2_8.pdf" + ] + }, + "tabular-data-package": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m77" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.082881" + }, + { + "type": "homepage", + "value": "http://frictionlessdata.io/guides/tabular-data-package/" + } + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Tabular Data Package", + "urls": [ + "msc:m77", + "https://doi.org/10.25504/FAIRsharing.082881", + "http://frictionlessdata.io/guides/tabular-data-package/", + "msc:m10" + ] + }, + "tei-text-encoding-initiative-guidelines": { + "acronym": "TEI", + "field_of_science": [ + "history", + "languages and literature", + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m99" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.87b86e" + }, + { + "type": "homepage", + "value": "http://www.tei-c.org/Guidelines/P5/" + }, + { + "type": "namespace", + "value": "http://www.tei-c.org/ns/1.0" + } + ], + "subject_areas": [ + "History", + "Languages" + ], + "title": "TEI (Text Encoding Initiative) Guidelines", + "urls": [ + "msc:m99", + "https://doi.org/10.25504/FAIRsharing.87b86e", + "http://www.tei-c.org/Guidelines/P5/", + "https://www.tei-c.org/release/doc/tei-p5-doc/en/html/index.html", + "http://www.tei-c.org/ns/1.0", + "msc:g120", + "10.5281/zenodo.3459202", + "10.5281/zenodo.3459220", + "10.5281/zenodo.3459231", + "10.5281/zenodo.3549615", + "10.5281/zenodo.3413524" + ] + }, + "tidcc-towards-international-data-commons-crystallography": { + "acronym": null, + "field_of_science": [ + "crystallography", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m78" + }, + { + "type": "local", + "value": "https://fairsharing.org/208" + }, + { + "type": "homepage", + "value": "http://wiki.ecrystals.chem.soton.ac.uk/images/9/9d/ECrystals-WP4-PM-Final.pdf" + } + ], + "subject_areas": [ + "Crystallography" + ], + "title": "TIDCC (Towards an International Data Commons for Crystallography)", + "urls": [ + "msc:m78", + "https://fairsharing.org/208", + "http://wiki.ecrystals.chem.soton.ac.uk/images/9/9d/ECrystals-WP4-PM-Final.pdf", + "msc:m8" + ] + }, + "uk-agmap-academic-geospatial-metadata-application-profile": { + "acronym": null, + "field_of_science": [ + "cartography", + "physical geography", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m79" + }, + { + "type": "homepage", + "value": "http://www.gogeo.ac.uk/gogeo/metadata/agmap.htm" + } + ], + "subject_areas": [ + "Cartography", + "Geography", + "Topography" + ], + "title": "UK AGMAP (Academic Geospatial Metadata Application Profile)", + "urls": [ + "msc:m79", + "http://www.gogeo.ac.uk/gogeo/metadata/agmap.htm", + "msc:m22" + ] + }, + "uk-gemini": { + "acronym": null, + "field_of_science": [ + "cartography", + "physical geography", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m80" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.b49fab" + }, + { + "type": "homepage", + "value": "http://www.agi.org.uk/uk-gemini/" + } + ], + "subject_areas": [ + "Cartography", + "Geography", + "Topography" + ], + "title": "UK Gemini", + "urls": [ + "msc:m80", + "https://doi.org/10.25504/FAIRsharing.b49fab", + "http://www.agi.org.uk/uk-gemini/", + "msc:m22" + ] + }, + "ukeof": { + "acronym": null, + "field_of_science": [ + "meteorology", + "engineering and technology", + "biological sciences", + "soil sciences", + "remote sensing", + "hydrology", + "climatology", + "geology", + "ecology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m40" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.9xytp6" + }, + { + "type": "homepage", + "value": "http://www.ukeof.org.uk/" + }, + { + "type": "schema", + "value": "https://cataloguestaging.ukeof.org.uk/schema/ukeof.1.0.0.xsd" + }, + { + "type": "schema", + "value": "https://www.ukeof.org.uk/schema/1/UKEOF_v1.0.xsd" + }, + { + "type": "namespace", + "value": "http://www.ukeof.org.uk/schema/1" + } + ], + "subject_areas": [ + "Biogeography", + "Biological diversity", + "Climatology", + "Ecology", + "Geology", + "Hydrology", + "Meteorology", + "Remote sensing", + "Soil sciences" + ], + "title": "UKEOF", + "urls": [ + "msc:m40", + "https://doi.org/10.25504/FAIRsharing.9xytp6", + "http://schema.ukeof.org.uk/", + "http://www.ukeof.org.uk/", + "https://cataloguestaging.ukeof.org.uk/schema/ukeof.1.0.0.xsd", + "https://www.ukeof.org.uk/schema/1/UKEOF_v1.0.xsd", + "http://www.ukeof.org.uk/schema/1", + "msc:g37", + "msc:g108", + "msc:g109", + "msc:g115" + ] + }, + "usgin-iso-profile": { + "acronym": null, + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m81" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.c82136" + }, + { + "type": "homepage", + "value": "http://repository.stategeothermaldata.org/repository/resource/98ddf901b9782a25982e01af3b0bda50/" + } + ], + "subject_areas": [ + "Earth sciences" + ], + "title": "USGIN (US Geoscience Information Network) Metadata Profile", + "urls": [ + "msc:m81", + "https://doi.org/10.25504/FAIRsharing.c82136", + "http://repository.stategeothermaldata.org/repository/resource/98ddf901b9782a25982e01af3b0bda50/", + "http://usgin.github.io/usginspecs/USGIN_ISO_Metadata.htm", + "msc:m22", + "msc:g116", + "msc:g116" + ] + }, + "varioml": { + "acronym": null, + "field_of_science": [ + "genetics", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m82" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.pxvkt0" + }, + { + "type": "homepage", + "value": "http://www.ncbi.nlm.nih.gov/pubmed/23031277" + }, + { + "type": "namespace", + "value": "http://varioml.org/xml/1.0" + } + ], + "subject_areas": [ + "Genetics" + ], + "title": "VarioML", + "urls": [ + "msc:m82", + "https://doi.org/10.25504/FAIRsharing.pxvkt0", + "http://www.ncbi.nlm.nih.gov/pubmed/23031277", + "http://varioml.org/xml/1.0", + "msc:m27" + ] + }, + "waterml": { + "acronym": null, + "field_of_science": [ + "hydrology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m83" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.e07e1b" + }, + { + "type": "homepage", + "value": "http://www.opengeospatial.org/standards/waterml" + }, + { + "type": "schema", + "value": "https://schemas.opengis.net/waterml/2.0/waterml2.xsd" + }, + { + "type": "namespace", + "value": "http://www.opengis.net/waterml/2.0" + } + ], + "subject_areas": [ + "Hydrology" + ], + "title": "WaterML", + "urls": [ + "msc:m83", + "https://doi.org/10.25504/FAIRsharing.e07e1b", + "http://www.opengeospatial.org/standards/waterml", + "https://schemas.opengis.net/waterml/2.0/waterml2.xsd", + "http://www.opengis.net/waterml/2.0", + "msc:m28" + ] + }, + "wmo-core-metadata-profile": { + "acronym": null, + "field_of_science": [ + "meteorology", + "natural sciences" + ], + "identifier": [ + { + "type": "local", + "value": "msc:m84" + }, + { + "type": "local", + "value": "https://doi.org/10.25504/FAIRsharing.5e7bdc" + }, + { + "type": "homepage", + "value": "https://wis.wmo.int/2012/metadata/" + } + ], + "subject_areas": [ + "Meteorology" + ], + "title": "WMO Core Metadata Profile", + "urls": [ + "msc:m84", + "https://doi.org/10.25504/FAIRsharing.5e7bdc", + "https://wis.wmo.int/2012/metadata/", + "msc:m22" + ] + }, + "xmetadiss-schema": { + "acronym": "xmetadiss", + "field_of_science": [ + "library sciences", + "sciences", + "humanities" + ], + "identifier": [ + { + "type": "local", + "value": "fuji:m43" + }, + { + "type": "schema", + "value": "https://d-nb.info/standards/schema/xmetadissplus.xsd" + }, + { + "type": "namespace", + "value": "http://www.d-nb.de/standards/xmetadissplus/" + }, + { + "type": "namespace", + "value": "http://www.d-nb.de/standards/xMetaDiss/" + }, + { + "type": "homepage", + "value": "http://www.d-nb.de/standards/xMetaDiss/" + } + ], + "subject_areas": [ + "Multidisciplinary", + "Bibliographic standards", + "Information/library standards" + ], + "title": "XmetaDiss", + "urls": [ + "fuji:m43", + "https://d-nb.info/standards/schema/xmetadissplus.xsd", + "http://www.d-nb.de/standards/xmetadissplus/", + "http://www.d-nb.de/standards/xMetaDiss/", + "http://www.d-nb.de/standards/xMetaDiss/", + "https://d-nb.info/1260521133/34" + ] + }, + "xoai-metadata-format": { + "acronym": "XOAI", + "field_of_science": [], + "identifier": [ + { + "type": "local", + "value": "fuji:m6" + }, + { + "type": "homepage", + "value": "https://github.com/DSpace/xoai" + }, + { + "type": "namespace", + "value": "http://www.lyncode.com/xoai" + } + ], + "subject_areas": null, + "title": "XOAI, a DSPACE Metadata Format", + "urls": [ + "fuji:m6", + "https://github.com/DSpace/xoai", + "http://www.lyncode.com/xoai" + ] + } +} diff --git a/fuji_server/data/metadata_standards_uris.json b/fuji_server/data/metadata_standards_uris.json index 87a1cd62..24a3fba4 100644 --- a/fuji_server/data/metadata_standards_uris.json +++ b/fuji_server/data/metadata_standards_uris.json @@ -1 +1,11139 @@ -{"http://www.tdwg.org/standards/115/": {"title": "ABCD (Access to Biological Collection Data)", "id": "abcd-access-biological-collection-data.yml", "identifier": ["msc:m1", "https://doi.org/10.25504/FAIRsharing.kr3215", "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"], "subject_areas": ["Biological diversity", "Botany", "Earth sciences", "Genetics", "Geology", "Palaeontology", "Zoology"], "field_of_science": ["zoology", "earth and related environmental sciences", "biological sciences", "palaeontology", "botany", "genetics", "natural sciences", "geology"], "acronym": "ABCD"}, "http://wiki.tdwg.org/ABCD": {"title": "ABCD (Access to Biological Collection Data)", "id": "abcd-access-biological-collection-data.yml", "identifier": ["msc:m1", "https://doi.org/10.25504/FAIRsharing.kr3215", "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"], "subject_areas": ["Biological diversity", "Botany", "Earth sciences", "Genetics", "Geology", "Palaeontology", "Zoology"], "field_of_science": ["zoology", "earth and related environmental sciences", "biological sciences", "palaeontology", "botany", "genetics", "natural sciences", "geology"], "acronym": "ABCD"}, "https://abcd.tdwg.org/xml/ABCD_3.0.xsd": {"title": "ABCD (Access to Biological Collection Data)", "id": "abcd-access-biological-collection-data.yml", "identifier": ["msc:m1", "https://doi.org/10.25504/FAIRsharing.kr3215", "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"], "subject_areas": ["Biological diversity", "Botany", "Earth sciences", "Genetics", "Geology", "Palaeontology", "Zoology"], "field_of_science": ["zoology", "earth and related environmental sciences", "biological sciences", "palaeontology", "botany", "genetics", "natural sciences", "geology"], "acronym": "ABCD"}, "http://www.tdwg.org/schemas/abcd/3.0": {"title": "ABCD (Access to Biological Collection Data)", "id": "abcd-access-biological-collection-data.yml", "identifier": ["msc:m1", "https://doi.org/10.25504/FAIRsharing.kr3215", "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"], "subject_areas": ["Biological diversity", "Botany", "Earth sciences", "Genetics", "Geology", "Palaeontology", "Zoology"], "field_of_science": ["zoology", "earth and related environmental sciences", "biological sciences", "palaeontology", "botany", "genetics", "natural sciences", "geology"], "acronym": "ABCD"}, "https://abcd.tdwg.org/xml/ABCD_2.1.xsd": {"title": "ABCD (Access to Biological Collection Data)", "id": "abcd-access-biological-collection-data.yml", "identifier": ["msc:m1", "https://doi.org/10.25504/FAIRsharing.kr3215", "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"], "subject_areas": ["Biological diversity", "Botany", "Earth sciences", "Genetics", "Geology", "Palaeontology", "Zoology"], "field_of_science": ["zoology", "earth and related environmental sciences", "biological sciences", "palaeontology", "botany", "genetics", "natural sciences", "geology"], "acronym": "ABCD"}, "http://www.tdwg.org/schemas/abcd/2.1": {"title": "ABCD (Access to Biological Collection Data)", "id": "abcd-access-biological-collection-data.yml", "identifier": ["msc:m1", "https://doi.org/10.25504/FAIRsharing.kr3215", "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"], "subject_areas": ["Biological diversity", "Botany", "Earth sciences", "Genetics", "Geology", "Palaeontology", "Zoology"], "field_of_science": ["zoology", "earth and related environmental sciences", "biological sciences", "palaeontology", "botany", "genetics", "natural sciences", "geology"], "acronym": "ABCD"}, "https://abcd.tdwg.org/xml/ABCD_2.06.xsd": {"title": "ABCD (Access to Biological Collection Data)", "id": "abcd-access-biological-collection-data.yml", "identifier": ["msc:m1", "https://doi.org/10.25504/FAIRsharing.kr3215", "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"], "subject_areas": ["Biological diversity", "Botany", "Earth sciences", "Genetics", "Geology", "Palaeontology", "Zoology"], "field_of_science": ["zoology", "earth and related environmental sciences", "biological sciences", "palaeontology", "botany", "genetics", "natural sciences", "geology"], "acronym": "ABCD"}, "http://www.tdwg.org/schemas/abcd/2.06": {"title": "ABCD (Access to Biological Collection Data)", "id": "abcd-access-biological-collection-data.yml", "identifier": ["msc:m1", "https://doi.org/10.25504/FAIRsharing.kr3215", "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"], "subject_areas": ["Biological diversity", "Botany", "Earth sciences", "Genetics", "Geology", "Palaeontology", "Zoology"], "field_of_science": ["zoology", "earth and related environmental sciences", "biological sciences", "palaeontology", "botany", "genetics", "natural sciences", "geology"], "acronym": "ABCD"}, "http://www.tdwg.org/standards/640/": {"title": "ABCDDNA", "id": "abcddna.yml", "identifier": ["msc:m42", "https://doi.org/10.25504/FAIRsharing.7tx4ac"], "subject_areas": ["Genetics"], "field_of_science": ["genetics", "natural sciences"], "acronym": "ABCDDNA"}, "http://www.dnabank-network.org/schemas/ABCDDNA/ABCDDNA.xsd": {"title": "ABCDDNA", "id": "abcddna.yml", "identifier": ["msc:m42", "https://doi.org/10.25504/FAIRsharing.7tx4ac"], "subject_areas": ["Genetics"], "field_of_science": ["genetics", "natural sciences"], "acronym": "ABCDDNA"}, "http://www.dnabank-network.org/schemas/ABCDDNA": {"title": "ABCDDNA", "id": "abcddna.yml", "identifier": ["msc:m42", "https://doi.org/10.25504/FAIRsharing.7tx4ac"], "subject_areas": ["Genetics"], "field_of_science": ["genetics", "natural sciences"], "acronym": "ABCDDNA"}, "http://www.geocase.eu/efg": {"title": "ABCDEFG (Access to Biological Collection Databases Extended for Geosciences)", "id": "abcdefg-access-biological-collection-databases-extended-geosciences.yml", "identifier": ["msc:m43", "https://fairsharing.org/1396"], "subject_areas": ["Earth sciences", "Mineralogy", "Palaeontology"], "field_of_science": ["palaeontology", "mineralogy", "earth and related environmental sciences", "natural sciences"], "acronym": "ABCDEFG"}, "http://www.geocase.eu/sites/geocase.biodiv.naturkundemuseum-berlin.de/documentation/abcdefg.xsd": {"title": "ABCDEFG (Access to Biological Collection Databases Extended for Geosciences)", "id": "abcdefg-access-biological-collection-databases-extended-geosciences.yml", "identifier": ["msc:m43", "https://fairsharing.org/1396"], "subject_areas": ["Earth sciences", "Mineralogy", "Palaeontology"], "field_of_science": ["palaeontology", "mineralogy", "earth and related environmental sciences", "natural sciences"], "acronym": "ABCDEFG"}, "http://www.synthesys.info/ABCDEFG/1.0": {"title": "ABCDEFG (Access to Biological Collection Databases Extended for Geosciences)", "id": "abcdefg-access-biological-collection-databases-extended-geosciences.yml", "identifier": ["msc:m43", "https://fairsharing.org/1396"], "subject_areas": ["Earth sciences", "Mineralogy", "Palaeontology"], "field_of_science": ["palaeontology", "mineralogy", "earth and related environmental sciences", "natural sciences"], "acronym": "ABCDEFG"}, "http://www.agls.gov.au": {"title": "AGLS Metadata Profile", "id": "agls-metadata-profile.yml", "identifier": ["msc:m44", "https://fairsharing.org/751"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "AGLS"}, "http://www.agls.gov.au/agls/terms/": {"title": "AGLS Metadata Profile", "id": "agls-metadata-profile.yml", "identifier": ["msc:m44", "https://fairsharing.org/751"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "AGLS"}, "http://aims.fao.org/es/standards/agmes/namespace-specification": {"title": "AgMES (Agricultural Metadata Element Set)", "id": "agmes-agricultural-metadata-element-set.yml", "identifier": ["msc:m2", "https://doi.org/10.25504/FAIRsharing.vd694s", "http://www.dcc.ac.uk/resources/metadata-standards/agmes-agricultural-metadata-element-set"], "subject_areas": ["Agricultural economics", "Agriculture", "Aquaculture", "Livestock"], "field_of_science": ["animal and dairy science", "agriculture", "agricultural sciences", "fisheries"], "acronym": "AgMES"}, "http://aims.fao.org/standards/agmes": {"title": "AgMES (Agricultural Metadata Element Set)", "id": "agmes-agricultural-metadata-element-set.yml", "identifier": ["msc:m2", "https://doi.org/10.25504/FAIRsharing.vd694s", "http://www.dcc.ac.uk/resources/metadata-standards/agmes-agricultural-metadata-element-set"], "subject_areas": ["Agricultural economics", "Agriculture", "Aquaculture", "Livestock"], "field_of_science": ["animal and dairy science", "agriculture", "agricultural sciences", "fisheries"], "acronym": "AgMES"}, "http://purl.org/agmes/1.1/": {"title": "AgMES (Agricultural Metadata Element Set)", "id": "agmes-agricultural-metadata-element-set.yml", "identifier": ["msc:m2", "https://doi.org/10.25504/FAIRsharing.vd694s", "http://www.dcc.ac.uk/resources/metadata-standards/agmes-agricultural-metadata-element-set"], "subject_areas": ["Agricultural economics", "Agriculture", "Aquaculture", "Livestock"], "field_of_science": ["animal and dairy science", "agriculture", "agricultural sciences", "fisheries"], "acronym": "AgMES"}, "http://www.fao.org/docrep/008/ae909e/ae909e00.htm": {"title": "AGRIS Application Profile", "id": "agris-application-profile.yml", "identifier": ["msc:m45", "https://doi.org/10.25504/FAIRsharing.32e620"], "subject_areas": ["Agricultural economics", "Agriculture", "Aquaculture", "Livestock"], "field_of_science": ["animal and dairy science", "agriculture", "agricultural sciences", "fisheries"], "acronym": "AGRIS"}, "http://www.fao.org/agris": {"title": "AGRIS Application Profile", "id": "agris-application-profile.yml", "identifier": ["msc:m45", "https://doi.org/10.25504/FAIRsharing.32e620"], "subject_areas": ["Agricultural economics", "Agriculture", "Aquaculture", "Livestock"], "field_of_science": ["animal and dairy science", "agriculture", "agricultural sciences", "fisheries"], "acronym": "AGRIS"}, "http://openlib.org/home/krichel/ebisu.html": {"title": "Academic Metadata Format", "id": "amf-academic-metadata-format.yml", "identifier": ["fuji:m25", "https://fairsharing.org/4646"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "AMF"}, "http://amf.openlib.org": {"title": "Academic Metadata Format", "id": "amf-academic-metadata-format.yml", "identifier": ["fuji:m25", "https://fairsharing.org/4646"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "AMF"}, "http://amf.openlib.org/2001/amf.xsd": {"title": "Academic Metadata Format", "id": "amf-academic-metadata-format.yml", "identifier": ["fuji:m25", "https://fairsharing.org/4646"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "AMF"}, "https://www.anzlic.gov.au/resources/anzlic-metadata-profile": {"title": "ANZLIC Metadata Profile", "id": "anzlic-metadata-profile.yml", "identifier": ["msc:m46", "https://fairsharing.org/820"], "subject_areas": ["Cartography", "Geography", "Topography"], "field_of_science": ["cartography", "natural sciences", "physical geography"], "acronym": "ANZLIC"}, "http://code.google.com/p/applecore/wiki/Introduction": {"title": "Apple Core", "id": "apple-core.yml", "identifier": ["msc:m47", "https://fairsharing.org/726"], "subject_areas": ["Botany"], "field_of_science": ["botany", "natural sciences"], "acronym": "aDwC"}, "http://ariadne-registry.dcu.gr/schema_definition/6.7/acdm.xsd": {"title": "ARIADNE Dataset Catalogue Model (ACDM)", "id": "ariadne-dataset-catalogue-model.yml", "identifier": ["fuji:m19", "https://fairsharing.org/4647"], "subject_areas": ["Archaeology"], "field_of_science": ["humanities", "archaeology"], "acronym": "ACDM"}, "http://ariadne-registry.dcu.gr/schema_definition/6.8/acdm.xsd": {"title": "ARIADNE Dataset Catalogue Model (ACDM)", "id": "ariadne-dataset-catalogue-model.yml", "identifier": ["fuji:m19", "https://fairsharing.org/4647"], "subject_areas": ["Archaeology"], "field_of_science": ["humanities", "archaeology"], "acronym": "ACDM"}, "http://ariadne-registry.dcu.gr/schema_definition/6.9/acdm.xsd": {"title": "ARIADNE Dataset Catalogue Model (ACDM)", "id": "ariadne-dataset-catalogue-model.yml", "identifier": ["fuji:m19", "https://fairsharing.org/4647"], "subject_areas": ["Archaeology"], "field_of_science": ["humanities", "archaeology"], "acronym": "ACDM"}, "http://ariadne-registry.dcu.gr/schema_definition/sample_ariadne_xml.xsd": {"title": "ARIADNE Dataset Catalogue Model (ACDM)", "id": "ariadne-dataset-catalogue-model.yml", "identifier": ["fuji:m19", "https://fairsharing.org/4647"], "subject_areas": ["Archaeology"], "field_of_science": ["humanities", "archaeology"], "acronym": "ACDM"}, "http://ariadne-registry.dcu.gr/schema-definition/sample_ariadne_xml.xsd": {"title": "ARIADNE Dataset Catalogue Model (ACDM)", "id": "ariadne-dataset-catalogue-model.yml", "identifier": ["fuji:m19", "https://fairsharing.org/4647"], "subject_areas": ["Archaeology"], "field_of_science": ["humanities", "archaeology"], "acronym": "ACDM"}, "http://registry.ariadne-infrastructure.eu/": {"title": "ARIADNE Dataset Catalogue Model (ACDM)", "id": "ariadne-dataset-catalogue-model.yml", "identifier": ["fuji:m19", "https://fairsharing.org/4647"], "subject_areas": ["Archaeology"], "field_of_science": ["humanities", "archaeology"], "acronym": "ACDM"}, "https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/": {"title": "ARIADNE Dataset Catalogue Model (ACDM)", "id": "ariadne-dataset-catalogue-model.yml", "identifier": ["fuji:m19", "https://fairsharing.org/4647"], "subject_areas": ["Archaeology"], "field_of_science": ["humanities", "archaeology"], "acronym": "ACDM"}, "https://www.ariadne-infrastructure.eu/resource/ao/": {"title": "ARIADNE Dataset Catalogue Model (ACDM)", "id": "ariadne-dataset-catalogue-model.yml", "identifier": ["fuji:m19", "https://fairsharing.org/4647"], "subject_areas": ["Archaeology"], "field_of_science": ["humanities", "archaeology"], "acronym": "ACDM"}, "http://ariadne-registry.dcu.gr/schema-definition": {"title": "ARIADNE Dataset Catalogue Model (ACDM)", "id": "ariadne-dataset-catalogue-model.yml", "identifier": ["fuji:m19", "https://fairsharing.org/4647"], "subject_areas": ["Archaeology"], "field_of_science": ["humanities", "archaeology"], "acronym": "ACDM"}, "http://www.w3.org/TR/vocab-adms/": {"title": "Asset Description Metadata Schema (ADMS)", "id": "asset-description-metadata-schema-adms.yml", "identifier": ["msc:m48", "https://doi.org/10.25504/FAIRsharing.es2t25"], "subject_areas": ["Social policy"], "field_of_science": ["social sciences", "political sciences"], "acronym": "ADMS"}, "http://www.w3.org/ns/adms#": {"title": "Asset Description Metadata Schema (ADMS)", "id": "asset-description-metadata-schema-adms.yml", "identifier": ["msc:m48", "https://doi.org/10.25504/FAIRsharing.es2t25"], "subject_areas": ["Social policy"], "field_of_science": ["social sciences", "political sciences"], "acronym": "ADMS"}, "https://www.w3.org/2005/Atom": {"title": "The Atom Syndication Format", "id": "atom-syndication-format.yml", "identifier": ["fuji:m13", "https://fairsharing.org/4648"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "ATOM"}, "http://www.w3.org/2005/Atom": {"title": "The Atom Syndication Format", "id": "atom-syndication-format.yml", "identifier": ["fuji:m13", "https://fairsharing.org/4648"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "ATOM"}, "http://www.virtualastronomy.org/avm_metadata.php#2": {"title": "AVM (Astronomy Visualization Metadata)", "id": "avm-astronomy-visualization-metadata.yml", "identifier": ["msc:m3", "https://doi.org/10.25504/FAIRsharing.338ze0", "http://www.dcc.ac.uk/resources/metadata-standards/avm-astronomy-visualization-metadata"], "subject_areas": ["Astronomy"], "field_of_science": ["astronomy", "natural sciences"], "acronym": "AVM"}, "http://www.virtualastronomy.org/avm_metadata.php": {"title": "AVM (Astronomy Visualization Metadata)", "id": "avm-astronomy-visualization-metadata.yml", "identifier": ["msc:m3", "https://doi.org/10.25504/FAIRsharing.338ze0", "http://www.dcc.ac.uk/resources/metadata-standards/avm-astronomy-visualization-metadata"], "subject_areas": ["Astronomy"], "field_of_science": ["astronomy", "natural sciences"], "acronym": "AVM"}, "http://www.communicatingastronomy.org/avm/1.0/": {"title": "AVM (Astronomy Visualization Metadata)", "id": "avm-astronomy-visualization-metadata.yml", "identifier": ["msc:m3", "https://doi.org/10.25504/FAIRsharing.338ze0", "http://www.dcc.ac.uk/resources/metadata-standards/avm-astronomy-visualization-metadata"], "subject_areas": ["Astronomy"], "field_of_science": ["astronomy", "natural sciences"], "acronym": "AVM"}, "http://www.bibtex.org/": {"title": "BibTeX", "id": "bibtex-format.yml", "identifier": ["fuji:m34", "https://doi.org/10.25504/FAIRsharing.bdf2fe"], "subject_areas": null, "field_of_science": [], "acronym": "BibTeX"}, "http://clarin-pl.eu/ns/experimental/bibtex": {"title": "BibTeX", "id": "bibtex-format.yml", "identifier": ["fuji:m34", "https://doi.org/10.25504/FAIRsharing.bdf2fe"], "subject_areas": null, "field_of_science": [], "acronym": "BibTeX"}, "http://lindat.mff.cuni.cz/ns/experimental/bibtex": {"title": "BibTeX", "id": "bibtex-format.yml", "identifier": ["fuji:m34", "https://doi.org/10.25504/FAIRsharing.bdf2fe"], "subject_areas": null, "field_of_science": [], "acronym": "BibTeX"}, "http://repository.clarin.dk/ns/experimental/bibtex": {"title": "BibTeX", "id": "bibtex-format.yml", "identifier": ["fuji:m34", "https://doi.org/10.25504/FAIRsharing.bdf2fe"], "subject_areas": null, "field_of_science": [], "acronym": "BibTeX"}, "https://pro.carare.eu/doku.php?id=support:metadata-schema": {"title": "CARARE metadata schema", "id": "carare-metadata-schema.yml", "identifier": ["msc:m49", "https://doi.org/10.25504/FAIRsharing.ba7c93"], "subject_areas": ["Archaeology", "Architecture", "Cultural heritage", "Cultural property preservation", "History"], "field_of_science": ["humanities", "archaeology", "history", "architectural design"], "acronym": "CARARE"}, "http://www.carare.eu/carareSchema": {"title": "CARARE metadata schema", "id": "carare-metadata-schema.yml", "identifier": ["msc:m49", "https://doi.org/10.25504/FAIRsharing.ba7c93"], "subject_areas": ["Archaeology", "Architecture", "Cultural heritage", "Cultural property preservation", "History"], "field_of_science": ["humanities", "archaeology", "history", "architectural design"], "acronym": "CARARE"}, "https://pro.carare.eu/lib/exe/fetch.php?media=support:carare-v1_0_6_1.xsd": {"title": "CARARE metadata schema", "id": "carare-metadata-schema.yml", "identifier": ["msc:m49", "https://doi.org/10.25504/FAIRsharing.ba7c93"], "subject_areas": ["Archaeology", "Architecture", "Cultural heritage", "Cultural property preservation", "History"], "field_of_science": ["humanities", "archaeology", "history", "architectural design"], "acronym": "CARARE"}, "https://www.getty.edu/research/publications/electronic_publications/cdwa/cdwalite.pdf": {"title": "CDWA Lite", "id": "cdwa-lite-schema.yml", "identifier": ["fuji:m30", "https://fairsharing.org/4649"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "cdwa-lite"}, "https://www.getty.edu/CDWA/CDWALite": {"title": "CDWA Lite", "id": "cdwa-lite-schema.yml", "identifier": ["fuji:m30", "https://fairsharing.org/4649"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "cdwa-lite"}, "http://www.getty.edu/CDWA/CDWALite/CDWALite-xsd-public-v1-1.xsd": {"title": "CDWA Lite", "id": "cdwa-lite-schema.yml", "identifier": ["fuji:m30", "https://fairsharing.org/4649"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "cdwa-lite"}, "http://www.getty.edu/CDWA/CDWALite/CDWALite-xsd-public-v1-0.xsd": {"title": "CDWA Lite", "id": "cdwa-lite-schema.yml", "identifier": ["fuji:m30", "https://fairsharing.org/4649"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "cdwa-lite"}, "https://more.metadatacenter.org/tools-training/outreach/cedar-template-model": {"title": "CEDAR Template Model", "id": "cedar-template-model.yml", "identifier": ["msc:m94", "https://doi.org/10.25504/FAIRsharing.V527H4"], "subject_areas": ["Administration", "Agricultural research", "Clinical medicine", "Earth sciences", "Medical information systems"], "field_of_science": ["public administration", "medical engineering", "medical and health sciences", "earth and related environmental sciences", "agricultural sciences", "clinical medicine", "engineering and technology", "agriculture", "social sciences", "natural sciences"], "acronym": "CEDAR"}, "https://more.metadatacenter.org/sites/default/files/artifact/CEDAR%20Template%20Model%20v1.5.0_0.pdf": {"title": "CEDAR Template Model", "id": "cedar-template-model.yml", "identifier": ["msc:m94", "https://doi.org/10.25504/FAIRsharing.V527H4"], "subject_areas": ["Administration", "Agricultural research", "Clinical medicine", "Earth sciences", "Medical information systems"], "field_of_science": ["public administration", "medical engineering", "medical and health sciences", "earth and related environmental sciences", "agricultural sciences", "clinical medicine", "engineering and technology", "agriculture", "social sciences", "natural sciences"], "acronym": "CEDAR"}, "http://www.eurocris.org/Uploads/Web%20pages/CERIF-1.6/documentation/MInfo.html": {"title": "CERIF (Common European Research Information Format)", "id": "cerif.yml", "identifier": ["msc:m4", "https://doi.org/10.25504/FAIRsharing.6945dq"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "CERIF"}, "http://www.eurocris.org/cerif/main-features-cerif": {"title": "CERIF (Common European Research Information Format)", "id": "cerif.yml", "identifier": ["msc:m4", "https://doi.org/10.25504/FAIRsharing.6945dq"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "CERIF"}, "https://www.eurocris.org/Uploads/Web%20pages/CERIF-1.6/CERIF_1.6_2.xsd": {"title": "CERIF (Common European Research Information Format)", "id": "cerif.yml", "identifier": ["msc:m4", "https://doi.org/10.25504/FAIRsharing.6945dq"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "CERIF"}, "https://www.eurocris.org/Uploads/Web%20pages/CERIF-1.5/CERIF_1.5_1.xsd": {"title": "CERIF (Common European Research Information Format)", "id": "cerif.yml", "identifier": ["msc:m4", "https://doi.org/10.25504/FAIRsharing.6945dq"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "CERIF"}, "https://www.openaire.eu/schema/cris/1.1/openaire-cerif-profile.xsd": {"title": "CERIF (Common European Research Information Format)", "id": "cerif.yml", "identifier": ["msc:m4", "https://doi.org/10.25504/FAIRsharing.6945dq"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "CERIF"}, "urn:xmlns:org:eurocris:cerif-1.6-2": {"title": "CERIF (Common European Research Information Format)", "id": "cerif.yml", "identifier": ["msc:m4", "https://doi.org/10.25504/FAIRsharing.6945dq"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "CERIF"}, "urn:xmlns:org:eurocris:cerif-1.5-1": {"title": "CERIF (Common European Research Information Format)", "id": "cerif.yml", "identifier": ["msc:m4", "https://doi.org/10.25504/FAIRsharing.6945dq"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "CERIF"}, "urn:xmlns:org:eurocris:cerif-1.4-0": {"title": "CERIF (Common European Research Information Format)", "id": "cerif.yml", "identifier": ["msc:m4", "https://doi.org/10.25504/FAIRsharing.6945dq"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "CERIF"}, "http://www.eurocris.org/ontologies/cerif/1.3#": {"title": "CERIF (Common European Research Information Format)", "id": "cerif.yml", "identifier": ["msc:m4", "https://doi.org/10.25504/FAIRsharing.6945dq"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "CERIF"}, "https://www.openaire.eu/cerif-profile/1.1/": {"title": "CERIF (Common European Research Information Format)", "id": "cerif.yml", "identifier": ["msc:m4", "https://doi.org/10.25504/FAIRsharing.6945dq"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "CERIF"}, "http://www.cessda.org/sharing/managing/3/": {"title": "CESSDA MLI - Council of European Social Science Data Archives Minimum Level of Information", "id": "cessda-mli-council-european-social-science-data-archives-minimum-level-inf.yml", "identifier": ["msc:m50", "https://fairsharing.org/4272"], "subject_areas": ["Demography", "Economics", "Land use", "Sociology"], "field_of_science": ["social geography", "demography", "social sciences", "economics", "sociology"], "acronym": null}, "http://cfconventions.org/documents.html": {"title": "CF (Climate and Forecast) Metadata Conventions", "id": "cf-climate-and-forecast-metadata-conventions.yml", "identifier": ["msc:m5", "https://doi.org/10.25504/FAIRsharing.f8cd83", "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"], "subject_areas": ["Climatology", "Meteorology", "Oceanography"], "field_of_science": ["oceanography", "climatology", "meteorology", "natural sciences"], "acronym": "CF"}, "http://cfconventions.org/": {"title": "CF (Climate and Forecast) Metadata Conventions", "id": "cf-climate-and-forecast-metadata-conventions.yml", "identifier": ["msc:m5", "https://doi.org/10.25504/FAIRsharing.f8cd83", "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"], "subject_areas": ["Climatology", "Meteorology", "Oceanography"], "field_of_science": ["oceanography", "climatology", "meteorology", "natural sciences"], "acronym": "CF"}, "https://www.ivoa.net/documents/cover/CharacterisationDM-20070530.html": {"title": "CharDM, Data Model for Astronomical DataSet Characterisation", "id": "chardm-astronomical-dataset-characterisation.yml", "identifier": ["fuji:m29", "https://doi.org/10.25504/FAIRsharing.yYjZWb"], "subject_areas": null, "field_of_science": [], "acronym": "CharDM"}, "http://www.ivoa.net/xml/Characterisation/Characterisation-v1.11.xsd": {"title": "CharDM, Data Model for Astronomical DataSet Characterisation", "id": "chardm-astronomical-dataset-characterisation.yml", "identifier": ["fuji:m29", "https://doi.org/10.25504/FAIRsharing.yYjZWb"], "subject_areas": null, "field_of_science": [], "acronym": "CharDM"}, "http://www.iucr.org/resources/cif/spec": {"title": "CIF (Crystallographic Information Framework)", "id": "cif-crystallographic-information-framework.yml", "identifier": ["msc:m6", "https://doi.org/10.25504/FAIRsharing.zr52g5", "http://www.dcc.ac.uk/resources/metadata-standards/cif-crystallographic-information-framework"], "subject_areas": ["Chemistry", "Crystallography", "Materials engineering"], "field_of_science": ["crystallography", "engineering and technology", "materials engineering", "chemical sciences", "natural sciences"], "acronym": "CIF"}, "http://www.iucr.org/resources/cif": {"title": "CIF (Crystallographic Information Framework)", "id": "cif-crystallographic-information-framework.yml", "identifier": ["msc:m6", "https://doi.org/10.25504/FAIRsharing.zr52g5", "http://www.dcc.ac.uk/resources/metadata-standards/cif-crystallographic-information-framework"], "subject_areas": ["Chemistry", "Crystallography", "Materials engineering"], "field_of_science": ["crystallography", "engineering and technology", "materials engineering", "chemical sciences", "natural sciences"], "acronym": "CIF"}, "https://earthsystemcog.org/projects/es-doc-models/cim_versions": {"title": "CIM (Common Information Model)", "id": "cim-common-information-model.yml", "identifier": ["msc:m7", "https://doi.org/10.25504/FAIRsharing.k3z4q9", "http://www.dcc.ac.uk/resources/metadata-standards/cim-common-information-model"], "subject_areas": ["Climatology"], "field_of_science": ["climatology", "natural sciences"], "acronym": "CIM"}, "https://earthsystemcog.org/projects/es-doc-models/cim": {"title": "CIM (Common Information Model)", "id": "cim-common-information-model.yml", "identifier": ["msc:m7", "https://doi.org/10.25504/FAIRsharing.k3z4q9", "http://www.dcc.ac.uk/resources/metadata-standards/cim-common-information-model"], "subject_areas": ["Climatology"], "field_of_science": ["climatology", "natural sciences"], "acronym": "CIM"}, "https://github.com/ES-DOC/esdoc-cim/blob/v1.10.0/cim.xsd": {"title": "CIM (Common Information Model)", "id": "cim-common-information-model.yml", "identifier": ["msc:m7", "https://doi.org/10.25504/FAIRsharing.k3z4q9", "http://www.dcc.ac.uk/resources/metadata-standards/cim-common-information-model"], "subject_areas": ["Climatology"], "field_of_science": ["climatology", "natural sciences"], "acronym": "CIM"}, "https://clarivate.com/products/web-of-science/web-science-form/data-citation-index/": {"title": "Clarivate Data Citation Index Schema", "id": "clarivate-data-citation-index-schema.yml", "identifier": ["fuji:m39"], "subject_areas": ["Bibliographic standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "dci"}, "http://www.clarin.eu/cmd/": {"title": "Component MetaData Specification (CMDI)", "id": "cmd-component-metadata.yml", "identifier": ["fuji:m6", "https://doi.org/10.25504/FAIRsharing.2e0599"], "subject_areas": ["Linguistics", "Languages"], "field_of_science": ["linguistics", "humanities", "languages and literature"], "acronym": "CMDI"}, "https://www.clarin.eu/cmd/1": {"title": "Component MetaData Specification (CMDI)", "id": "cmd-component-metadata.yml", "identifier": ["fuji:m6", "https://doi.org/10.25504/FAIRsharing.2e0599"], "subject_areas": ["Linguistics", "Languages"], "field_of_science": ["linguistics", "humanities", "languages and literature"], "acronym": "CMDI"}, "https://www.clarin.eu/content/component-metadata": {"title": "Component MetaData Specification (CMDI)", "id": "cmd-component-metadata.yml", "identifier": ["fuji:m6", "https://doi.org/10.25504/FAIRsharing.2e0599"], "subject_areas": ["Linguistics", "Languages"], "field_of_science": ["linguistics", "humanities", "languages and literature"], "acronym": "CMDI"}, "https://pure.mpg.de/pubman/faces/ViewItemOverviewPage.jsp?itemId=item_1480943": {"title": "Component MetaData Specification (CMDI)", "id": "cmd-component-metadata.yml", "identifier": ["fuji:m6", "https://doi.org/10.25504/FAIRsharing.2e0599"], "subject_areas": ["Linguistics", "Languages"], "field_of_science": ["linguistics", "humanities", "languages and literature"], "acronym": "CMDI"}, "http://www.clarin.eu/cmd/1": {"title": "Component MetaData Specification (CMDI)", "id": "cmd-component-metadata.yml", "identifier": ["fuji:m6", "https://doi.org/10.25504/FAIRsharing.2e0599"], "subject_areas": ["Linguistics", "Languages"], "field_of_science": ["linguistics", "humanities", "languages and literature"], "acronym": "CMDI"}, "http://infra.clarin.eu/CMDI/1.x/xsd/cmd-envelop.xsd": {"title": "Component MetaData Specification (CMDI)", "id": "cmd-component-metadata.yml", "identifier": ["fuji:m6", "https://doi.org/10.25504/FAIRsharing.2e0599"], "subject_areas": ["Linguistics", "Languages"], "field_of_science": ["linguistics", "humanities", "languages and literature"], "acronym": "CMDI"}, "http://catalog.clarin.eu/ds/ComponentRegistry/rest/registry/profiles/clarin.eu:cr1:p_1290431694484/xsd": {"title": "Component MetaData Specification (CMDI)", "id": "cmd-component-metadata.yml", "identifier": ["fuji:m6", "https://doi.org/10.25504/FAIRsharing.2e0599"], "subject_areas": ["Linguistics", "Languages"], "field_of_science": ["linguistics", "humanities", "languages and literature"], "acronym": "CMDI"}, "https://infra.clarin.eu/CMDI/1.x/xsd/cmd-envelop.xsd": {"title": "Component MetaData Specification (CMDI)", "id": "cmd-component-metadata.yml", "identifier": ["fuji:m6", "https://doi.org/10.25504/FAIRsharing.2e0599"], "subject_areas": ["Linguistics", "Languages"], "field_of_science": ["linguistics", "humanities", "languages and literature"], "acronym": "CMDI"}, "http://www.clarin.eu/cmd/1/profiles/clarin.eu:cr1:p_1290431694484": {"title": "Component MetaData Specification (CMDI)", "id": "cmd-component-metadata.yml", "identifier": ["fuji:m6", "https://doi.org/10.25504/FAIRsharing.2e0599"], "subject_areas": ["Linguistics", "Languages"], "field_of_science": ["linguistics", "humanities", "languages and literature"], "acronym": "CMDI"}, "https://catalog.clarin.eu/ds/ComponentRegistry/rest/registry/1.x/profiles/clarin.eu:cr1:p_1290431694484/xsd": {"title": "Component MetaData Specification (CMDI)", "id": "cmd-component-metadata.yml", "identifier": ["fuji:m6", "https://doi.org/10.25504/FAIRsharing.2e0599"], "subject_areas": ["Linguistics", "Languages"], "field_of_science": ["linguistics", "humanities", "languages and literature"], "acronym": "CMDI"}, "http://ferret.wrc.noaa.gov/noaa_coop/coop_cdf_profile.html": {"title": "COARDS Conventions", "id": "coards-conventions.yml", "identifier": ["msc:m51", "https://doi.org/10.25504/FAIRsharing.9614ca"], "subject_areas": ["Climatology", "Meteorology", "Oceanography"], "field_of_science": ["oceanography", "climatology", "meteorology", "natural sciences"], "acronym": null}, "http://www.crossref.org/schema/4.4.0": {"title": "Crossref Schema", "id": "crossref-schema.yml", "identifier": ["fuji:m40", "https://doi.org/10.25504/FAIRsharing.bbQbSW"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "crossref"}, "https://data.crossref.org/schemas/crossref4.4.0.xsd": {"title": "Crossref Schema", "id": "crossref-schema.yml", "identifier": ["fuji:m40", "https://doi.org/10.25504/FAIRsharing.bbQbSW"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "crossref"}, "https://data.crossref.org/schemas/crossref4.3.7.xsd": {"title": "Crossref Schema", "id": "crossref-schema.yml", "identifier": ["fuji:m40", "https://doi.org/10.25504/FAIRsharing.bbQbSW"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "crossref"}, "http://www.crossref.org/schema/4.3.7": {"title": "Crossref Schema", "id": "crossref-schema.yml", "identifier": ["fuji:m40", "https://doi.org/10.25504/FAIRsharing.bbQbSW"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "crossref"}, "http://www.crossref.org/schema/4.4.1": {"title": "Crossref Schema", "id": "crossref-schema.yml", "identifier": ["fuji:m40", "https://doi.org/10.25504/FAIRsharing.bbQbSW"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "crossref"}, "https://data.crossref.org/schemas/crossref4.4.1.xsd": {"title": "Crossref Schema", "id": "crossref-schema.yml", "identifier": ["fuji:m40", "https://doi.org/10.25504/FAIRsharing.bbQbSW"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "crossref"}, "http://www.crossref.org/schema/4.4.2": {"title": "Crossref Schema", "id": "crossref-schema.yml", "identifier": ["fuji:m40", "https://doi.org/10.25504/FAIRsharing.bbQbSW"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "crossref"}, "https://data.crossref.org/schemas/crossref4.4.2.xsd": {"title": "Crossref Schema", "id": "crossref-schema.yml", "identifier": ["fuji:m40", "https://doi.org/10.25504/FAIRsharing.bbQbSW"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "crossref"}, "http://www.crossref.org/schema/4.8.1": {"title": "Crossref Schema", "id": "crossref-schema.yml", "identifier": ["fuji:m40", "https://doi.org/10.25504/FAIRsharing.bbQbSW"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "crossref"}, "https://data.crossref.org/schemas/crossref4.8.1.xsd": {"title": "Crossref Schema", "id": "crossref-schema.yml", "identifier": ["fuji:m40", "https://doi.org/10.25504/FAIRsharing.bbQbSW"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "crossref"}, "http://www.crossref.org/schema/5.3.1": {"title": "Crossref Schema", "id": "crossref-schema.yml", "identifier": ["fuji:m40", "https://doi.org/10.25504/FAIRsharing.bbQbSW"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "crossref"}, "https://data.crossref.org/schemas/crossref5.3.1.xsd": {"title": "Crossref Schema", "id": "crossref-schema.yml", "identifier": ["fuji:m40", "https://doi.org/10.25504/FAIRsharing.bbQbSW"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "crossref"}, "http://www.seadatanet.org/Metadata/CSR": {"title": "Cruise Summary Reports", "id": "cruise-summary-reports.yml", "identifier": ["msc:m52", "https://doi.org/10.25504/FAIRsharing.e36460"], "subject_areas": ["Climatology", "Earth sciences", "Glaciology", "Hydrology", "Meteorology", "Oceanography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences"], "acronym": "CSR"}, "http://www.seadatanet.org": {"title": "Cruise Summary Reports", "id": "cruise-summary-reports.yml", "identifier": ["msc:m52", "https://doi.org/10.25504/FAIRsharing.e36460"], "subject_areas": ["Climatology", "Earth sciences", "Glaciology", "Hydrology", "Meteorology", "Oceanography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences"], "acronym": "CSR"}, "http://schemas.seadatanet.org/Standards-Software/Metadata-formats/SDN_CSR_ISO19139_5.2.0.xsd": {"title": "Cruise Summary Reports", "id": "cruise-summary-reports.yml", "identifier": ["msc:m52", "https://doi.org/10.25504/FAIRsharing.e36460"], "subject_areas": ["Climatology", "Earth sciences", "Glaciology", "Hydrology", "Meteorology", "Oceanography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences"], "acronym": "CSR"}, " http://schemas.seadatanet.org/StandardsSoftware/Metadata-formats/SDN2_CSR_ISO19139_5.0.0.xsd": {"title": "Cruise Summary Reports", "id": "cruise-summary-reports.yml", "identifier": ["msc:m52", "https://doi.org/10.25504/FAIRsharing.e36460"], "subject_areas": ["Climatology", "Earth sciences", "Glaciology", "Hydrology", "Meteorology", "Oceanography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences"], "acronym": "CSR"}, "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/csdgm_rs_ex/MetadataRemoteSensingExtens.pdf": {"title": "CSDGM Extensions for Remote Sensing Metadata", "id": "csdgm-extensions-remote-sensing-metadata.yml", "identifier": ["msc:m53", "https://fairsharing.org/1445"], "subject_areas": ["Climatology", "Hydrology", "Meteorology", "Oceanography"], "field_of_science": ["oceanography", "hydrology", "climatology", "meteorology", "natural sciences"], "acronym": "CSDGM"}, "http://icatproject-contrib.github.io/CSMD/": {"title": "CSMD (Core Scientific Metadata Model)", "id": "csmd-cclrc-core-scientific-metadata-model.yml", "identifier": ["msc:m8", "https://doi.org/10.25504/FAIRsharing.30fk89", "http://www.dcc.ac.uk/resources/metadata-standards/csmd-cclrc-core-scientific-metadata-model"], "subject_areas": ["Biochemistry", "Chemistry", "Crystallography", "Materials engineering"], "field_of_science": ["crystallography", "engineering and technology", "biochemistry", "chemical sciences", "materials engineering", "natural sciences"], "acronym": "CSMD"}, "http://www.purl.org/net/CSMD/4.0#": {"title": "CSMD (Core Scientific Metadata Model)", "id": "csmd-cclrc-core-scientific-metadata-model.yml", "identifier": ["msc:m8", "https://doi.org/10.25504/FAIRsharing.30fk89", "http://www.dcc.ac.uk/resources/metadata-standards/csmd-cclrc-core-scientific-metadata-model"], "subject_areas": ["Biochemistry", "Chemistry", "Crystallography", "Materials engineering"], "field_of_science": ["crystallography", "engineering and technology", "biochemistry", "chemical sciences", "materials engineering", "natural sciences"], "acronym": "CSMD"}, "http://www.escience.clrc.ac.uk/schemas/scientific": {"title": "CSMD (Core Scientific Metadata Model)", "id": "csmd-cclrc-core-scientific-metadata-model.yml", "identifier": ["msc:m8", "https://doi.org/10.25504/FAIRsharing.30fk89", "http://www.dcc.ac.uk/resources/metadata-standards/csmd-cclrc-core-scientific-metadata-model"], "subject_areas": ["Biochemistry", "Chemistry", "Crystallography", "Materials engineering"], "field_of_science": ["crystallography", "engineering and technology", "biochemistry", "chemical sciences", "materials engineering", "natural sciences"], "acronym": "CSMD"}, "http://schemas.opengis.net/csw/2.0.2/CSW-publication.xsd": {"title": "Catalogue Service for the Web", "id": "csw-catalogue-schema.yml", "identifier": ["fuji:m32", "https://fairsharing.org/4650", null, null], "subject_areas": ["Cartography", "Earth sciences"], "field_of_science": ["cartography", "earth and related environmental sciences", "natural sciences"], "acronym": "CSW"}, "http://www.opengis.net/cat/csw/2.0.2": {"title": "Catalogue Service for the Web", "id": "csw-catalogue-schema.yml", "identifier": ["fuji:m32", "https://fairsharing.org/4650", null, null], "subject_areas": ["Cartography", "Earth sciences"], "field_of_science": ["cartography", "earth and related environmental sciences", "natural sciences"], "acronym": "CSW"}, "http://da-ra.de/schema/kernel-4": {"title": "da|ra Metadata Schema", "id": "dara-metadata-schema.yml", "identifier": ["fuji:m10", "https://fairsharing.org/4651"], "subject_areas": ["Social policy", "Sociology"], "field_of_science": ["social sciences", "political sciences", "sociology"], "acronym": "da|ra"}, "http://da-ra.de/dara/schemadefinitions/dara.xsd": {"title": "da|ra Metadata Schema", "id": "dara-metadata-schema.yml", "identifier": ["fuji:m10", "https://fairsharing.org/4651"], "subject_areas": ["Social policy", "Sociology"], "field_of_science": ["social sciences", "political sciences", "sociology"], "acronym": "da|ra"}, "dara_v2.2.1_de_en_19112012.xsd": {"title": "da|ra Metadata Schema", "id": "dara-metadata-schema.yml", "identifier": ["fuji:m10", "https://fairsharing.org/4651"], "subject_areas": ["Social policy", "Sociology"], "field_of_science": ["social sciences", "political sciences", "sociology"], "acronym": "da|ra"}, "http://www.da-ra.de/fileadmin/media/da-ra.de/Technik/dara_v3.1_de_en_18112014.xsd": {"title": "da|ra Metadata Schema", "id": "dara-metadata-schema.yml", "identifier": ["fuji:m10", "https://fairsharing.org/4651"], "subject_areas": ["Social policy", "Sociology"], "field_of_science": ["social sciences", "political sciences", "sociology"], "acronym": "da|ra"}, "https://www.da-ra.de/downloads#version-3-0": {"title": "da|ra Metadata Schema", "id": "dara-metadata-schema.yml", "identifier": ["fuji:m10", "https://fairsharing.org/4651"], "subject_areas": ["Social policy", "Sociology"], "field_of_science": ["social sciences", "political sciences", "sociology"], "acronym": "da|ra"}, "http://wiki.tdwg.org/twiki/bin/view/DarwinCore/GeospatialExtension": {"title": "Darwin Core Geospatial Extension", "id": "darwin-core-geospatial-extension.yml", "identifier": ["msc:m54", "https://doi.org/10.25504/FAIRsharing.76c06d"], "subject_areas": ["Biogeography", "Cartography", "Topography"], "field_of_science": ["biological sciences", "cartography", "natural sciences", "physical geography"], "acronym": "DwC-S"}, "http://www.tdwg.org/standards/450": {"title": "Darwin Core", "id": "darwin-core.yml", "identifier": ["msc:m9", "https://doi.org/10.25504/FAIRsharing.xvf5y3", "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"], "subject_areas": ["Biogeography", "Biological diversity", "Botany", "Cartography", "Earth sciences", "Ecology", "Marine animals", "Oceanography", "Palaeontology", "Physical geography", "Topography", "Zoology"], "field_of_science": ["oceanography", "cartography", "ecology", "physical geography", "zoology", "earth and related environmental sciences", "biological sciences", "palaeontology", "marine biology", "botany", "natural sciences"], "acronym": "DwC"}, "http://rs.tdwg.org/dwc/index.htm": {"title": "Darwin Core", "id": "darwin-core.yml", "identifier": ["msc:m9", "https://doi.org/10.25504/FAIRsharing.xvf5y3", "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"], "subject_areas": ["Biogeography", "Biological diversity", "Botany", "Cartography", "Earth sciences", "Ecology", "Marine animals", "Oceanography", "Palaeontology", "Physical geography", "Topography", "Zoology"], "field_of_science": ["oceanography", "cartography", "ecology", "physical geography", "zoology", "earth and related environmental sciences", "biological sciences", "palaeontology", "marine biology", "botany", "natural sciences"], "acronym": "DwC"}, "http://rs.tdwg.org/dwc/terms/": {"title": "Darwin Core", "id": "darwin-core.yml", "identifier": ["msc:m9", "https://doi.org/10.25504/FAIRsharing.xvf5y3", "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"], "subject_areas": ["Biogeography", "Biological diversity", "Botany", "Cartography", "Earth sciences", "Ecology", "Marine animals", "Oceanography", "Palaeontology", "Physical geography", "Topography", "Zoology"], "field_of_science": ["oceanography", "cartography", "ecology", "physical geography", "zoology", "earth and related environmental sciences", "biological sciences", "palaeontology", "marine biology", "botany", "natural sciences"], "acronym": "DwC"}, "http://rs.tdwg.org/dwc/iri/": {"title": "Darwin Core", "id": "darwin-core.yml", "identifier": ["msc:m9", "https://doi.org/10.25504/FAIRsharing.xvf5y3", "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"], "subject_areas": ["Biogeography", "Biological diversity", "Botany", "Cartography", "Earth sciences", "Ecology", "Marine animals", "Oceanography", "Palaeontology", "Physical geography", "Topography", "Zoology"], "field_of_science": ["oceanography", "cartography", "ecology", "physical geography", "zoology", "earth and related environmental sciences", "biological sciences", "palaeontology", "marine biology", "botany", "natural sciences"], "acronym": "DwC"}, "http://rs.tdwg.org/dwc/xsd/tdwg_dwc_simple.xsd": {"title": "Darwin Core", "id": "darwin-core.yml", "identifier": ["msc:m9", "https://doi.org/10.25504/FAIRsharing.xvf5y3", "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"], "subject_areas": ["Biogeography", "Biological diversity", "Botany", "Cartography", "Earth sciences", "Ecology", "Marine animals", "Oceanography", "Palaeontology", "Physical geography", "Topography", "Zoology"], "field_of_science": ["oceanography", "cartography", "ecology", "physical geography", "zoology", "earth and related environmental sciences", "biological sciences", "palaeontology", "marine biology", "botany", "natural sciences"], "acronym": "DwC"}, "https://frictionlessdata.io/specs/data-package/": {"title": "Data Package", "id": "data-package.yml", "identifier": ["msc:m10", "https://doi.org/10.25504/FAIRsharing.3b861d"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "https://frictionlessdata.io/data-packages/": {"title": "Data Package", "id": "data-package.yml", "identifier": ["msc:m10", "https://doi.org/10.25504/FAIRsharing.3b861d"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "http://schema.datacite.org": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "http://datacite.org/schema/kernel": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "http://schema.datacite.org/meta/kernel-2.1/doc/DataCite-MetadataKernel_v2.2.pdf": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "http://schema.datacite.org/meta/kernel-2.1/metadata.xsd": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "http://datacite.org/schema/kernel-2.1": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "http://schema.datacite.org/meta/kernel-2.2/doc/DataCite-MetadataKernel_v2.2.pdf": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "http://schema.datacite.org/meta/kernel-2.2/metadata.xsd": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "http://datacite.org/schema/kernel-2.2": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "http://schema.datacite.org/meta/kernel-3.0/doc/DataCite-MetadataKernel_v3.0.pdf": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "http://schema.datacite.org/meta/kernel-3.0/metadata.xsd": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "http://datacite.org/schema/kernel-3": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "http://schema.datacite.org/meta/kernel-3.1/doc/DataCite-MetadataKernel_v3.1.pdf": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "http://schema.datacite.org/meta/kernel-3.1/metadata.xsd": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "http://datacite.org/schema/kernel-3.1": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "http://schema.datacite.org/meta/kernel-4.0/doc/DataCite-MetadataKernel_v4.0.pdf": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "http://schema.datacite.org/meta/kernel-4.0/metadata.xsd": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "http://datacite.org/schema/kernel-4": {"title": "DataCite Metadata Schema", "id": "datacite-metadata-schema.yml", "identifier": ["msc:m11", "https://doi.org/10.25504/FAIRsharing.me4qwe", "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "datacite"}, "https://www.w3.org/TR/vocab-dcat/#class-dataset": {"title": "DCAT (Data Catalog Vocabulary)", "id": "dcat-data-catalog-vocabulary.yml", "identifier": ["msc:m12", "https://doi.org/10.25504/FAIRsharing.h4j3qm", "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DCAT"}, "https://www.w3.org/TR/vocab-dcat/#class-catalog": {"title": "DCAT (Data Catalog Vocabulary)", "id": "dcat-data-catalog-vocabulary.yml", "identifier": ["msc:m12", "https://doi.org/10.25504/FAIRsharing.h4j3qm", "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DCAT"}, "http://www.w3.org/TR/vocab-dcat/": {"title": "DCAT (Data Catalog Vocabulary)", "id": "dcat-data-catalog-vocabulary.yml", "identifier": ["msc:m12", "https://doi.org/10.25504/FAIRsharing.h4j3qm", "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DCAT"}, "https://www.w3.org/ns/dcat.ttl": {"title": "DCAT (Data Catalog Vocabulary)", "id": "dcat-data-catalog-vocabulary.yml", "identifier": ["msc:m12", "https://doi.org/10.25504/FAIRsharing.h4j3qm", "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DCAT"}, "https://www.w3.org/2017/dxwg/wiki/Main_Page": {"title": "DCAT (Data Catalog Vocabulary)", "id": "dcat-data-catalog-vocabulary.yml", "identifier": ["msc:m12", "https://doi.org/10.25504/FAIRsharing.h4j3qm", "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DCAT"}, "http://www.w3.org/ns/dcat#": {"title": "DCAT (Data Catalog Vocabulary)", "id": "dcat-data-catalog-vocabulary.yml", "identifier": ["msc:m12", "https://doi.org/10.25504/FAIRsharing.h4j3qm", "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DCAT"}, "http://www.ddialliance.org/Specification/": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "http://www.ddialliance.org/": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "http://www.icpsr.umich.edu/DDI": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "http://www.ddialliance.org/DDI/schema/ddi3.1/dataset.xsd": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "ddi:codebook:2_5": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "ddi:dataset:3_3": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "ddi:dataset:3_2": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "ddi:dataset:3_1": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "ddi:instance:3_1": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "ddi:instance:3_2": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "ddi:instance:3_3": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "ddi:dataset:3_0": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "https://ddialliance.org/Specification/DDI-Codebook/2.5/XMLSchema/codebook.xsd": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "https://ddialliance.org/Specification/DDI-Codebook/2.1/XMLSchema/codebook.xsd": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "https://ddialliance.org/Specification/DDI-Lifecycle/3.3/XMLSchema/instance.xsd": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "https://ddialliance.org/Specification/DDI-Lifecycle/3.2/XMLSchema/instance.xsd": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "https://ddialliance.org/Specification/DDI-Lifecycle/3.1/XMLSchema/instance.xsd": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "https://ddialliance.org/Specification/DDI-Lifecycle/3.0/XMLSchema/instance.xsd": {"title": "DDI (Data Documentation Initiative)", "id": "ddi-data-documentation-initiative.yml", "identifier": ["msc:m13", "https://doi.org/10.25504/FAIRsharing.1t5ws6", "https://doi.org/10.25504/FAIRsharing.EZCpPd", "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"], "subject_areas": ["Demography", "Economics", "Health policy", "History", "Human geography", "Land use", "Law", "Politics", "Social policy", "Sociology", "Statistics"], "field_of_science": ["political sciences", "history", "law", "medical and health sciences", "sociology", "social geography", "humanities", "statistics and probability", "demography", "social sciences", "economics", "public health", "natural sciences"], "acronym": "DDI"}, "urn:mpeg:mpeg21:2002:02-DIDL-NS": {"title": "Digital Item Declaration Language (DIDL)", "id": "didl-digital-item-declaration-language.yml", "identifier": ["fuji:m4", "https://fairsharing.org/4652"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DIDL"}, "http://www.dlib.org/dlib/november03/bekaert/11bekaert.html": {"title": "Digital Item Declaration Language (DIDL)", "id": "didl-digital-item-declaration-language.yml", "identifier": ["fuji:m4", "https://fairsharing.org/4652"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DIDL"}, "http://gcmd.nasa.gov/add/difguide/WRITEADIF.pdf": {"title": "DIF (Directory Interchange Format)", "id": "dif-directory-interchange-format.yml", "identifier": ["msc:m14", "https://doi.org/10.25504/FAIRsharing.esxaaq", "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"], "subject_areas": ["Agriculture", "Biochemistry", "Climatology", "Ecology", "Glaciology", "Hydrology", "Marine biology", "Meteorology", "Oceanography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "ecology", "climatology", "agricultural sciences", "marine biology", "agriculture", "biochemistry", "meteorology", "natural sciences"], "acronym": "DIF"}, "http://gcmd.nasa.gov/add/difguide/": {"title": "DIF (Directory Interchange Format)", "id": "dif-directory-interchange-format.yml", "identifier": ["msc:m14", "https://doi.org/10.25504/FAIRsharing.esxaaq", "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"], "subject_areas": ["Agriculture", "Biochemistry", "Climatology", "Ecology", "Glaciology", "Hydrology", "Marine biology", "Meteorology", "Oceanography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "ecology", "climatology", "agricultural sciences", "marine biology", "agriculture", "biochemistry", "meteorology", "natural sciences"], "acronym": "DIF"}, "https://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/dif_v10.2.xsd": {"title": "DIF (Directory Interchange Format)", "id": "dif-directory-interchange-format.yml", "identifier": ["msc:m14", "https://doi.org/10.25504/FAIRsharing.esxaaq", "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"], "subject_areas": ["Agriculture", "Biochemistry", "Climatology", "Ecology", "Glaciology", "Hydrology", "Marine biology", "Meteorology", "Oceanography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "ecology", "climatology", "agricultural sciences", "marine biology", "agriculture", "biochemistry", "meteorology", "natural sciences"], "acronym": "DIF"}, "http://gcmd.nasa.gov/Aboutus/xml/dif/dif.xsd": {"title": "DIF (Directory Interchange Format)", "id": "dif-directory-interchange-format.yml", "identifier": ["msc:m14", "https://doi.org/10.25504/FAIRsharing.esxaaq", "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"], "subject_areas": ["Agriculture", "Biochemistry", "Climatology", "Ecology", "Glaciology", "Hydrology", "Marine biology", "Meteorology", "Oceanography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "ecology", "climatology", "agricultural sciences", "marine biology", "agriculture", "biochemistry", "meteorology", "natural sciences"], "acronym": "DIF"}, "https://git.earthdata.nasa.gov/projects/EMFD/repos/dif-schemas/browse/10.x/dif.xsd": {"title": "DIF (Directory Interchange Format)", "id": "dif-directory-interchange-format.yml", "identifier": ["msc:m14", "https://doi.org/10.25504/FAIRsharing.esxaaq", "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"], "subject_areas": ["Agriculture", "Biochemistry", "Climatology", "Ecology", "Glaciology", "Hydrology", "Marine biology", "Meteorology", "Oceanography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "ecology", "climatology", "agricultural sciences", "marine biology", "agriculture", "biochemistry", "meteorology", "natural sciences"], "acronym": "DIF"}, "http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/": {"title": "DIF (Directory Interchange Format)", "id": "dif-directory-interchange-format.yml", "identifier": ["msc:m14", "https://doi.org/10.25504/FAIRsharing.esxaaq", "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"], "subject_areas": ["Agriculture", "Biochemistry", "Climatology", "Ecology", "Glaciology", "Hydrology", "Marine biology", "Meteorology", "Oceanography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "ecology", "climatology", "agricultural sciences", "marine biology", "agriculture", "biochemistry", "meteorology", "natural sciences"], "acronym": "DIF"}, "http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif": {"title": "DIF (Directory Interchange Format)", "id": "dif-directory-interchange-format.yml", "identifier": ["msc:m14", "https://doi.org/10.25504/FAIRsharing.esxaaq", "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"], "subject_areas": ["Agriculture", "Biochemistry", "Climatology", "Ecology", "Glaciology", "Hydrology", "Marine biology", "Meteorology", "Oceanography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "ecology", "climatology", "agricultural sciences", "marine biology", "agriculture", "biochemistry", "meteorology", "natural sciences"], "acronym": "DIF"}, "http://www.dspace.org/xmlns/dspace/dim": {"title": "DSpace Intermediate Metadata Format", "id": "dim-dspace-intermediate-format.yml", "identifier": ["fuji:m36"], "subject_areas": null, "field_of_science": [], "acronym": "dspace-dim"}, "http://wiki.datadryad.org/Metadata_Profile": {"title": "Dryad Metadata Application Profile", "id": "dryad-metadata-application-profile.yml", "identifier": ["msc:m55"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "http://datadryad.org/metadata/": {"title": "Dryad Metadata Application Profile", "id": "dryad-metadata-application-profile.yml", "identifier": ["msc:m55"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "http://datadryad.org/profile/v3.1/dryad.xsd": {"title": "Dryad Metadata Application Profile", "id": "dryad-metadata-application-profile.yml", "identifier": ["msc:m55"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "http://datadryad.org/profile/v3/dryad.xsd": {"title": "Dryad Metadata Application Profile", "id": "dryad-metadata-application-profile.yml", "identifier": ["msc:m55"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "http://ils.unc.edu/mrc/dryad/version1_0/dryad_1_0.xsd": {"title": "Dryad Metadata Application Profile", "id": "dryad-metadata-application-profile.yml", "identifier": ["msc:m55"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "urn:dc:qdc:container": {"title": "Qualified Dublin Core", "id": "dublin-core-qualified.yml", "identifier": ["fuji:m22", "https://doi.org/10.25504/FAIRsharing.3nx7t"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "QDC"}, "figshare:oai:qdc": {"title": "Qualified Dublin Core", "id": "dublin-core-qualified.yml", "identifier": ["fuji:m22", "https://doi.org/10.25504/FAIRsharing.3nx7t"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "QDC"}, "http://naca.central.cranfield.ac.uk/ethos-oai/2.0/": {"title": "Qualified Dublin Core", "id": "dublin-core-qualified.yml", "identifier": ["fuji:m22", "https://doi.org/10.25504/FAIRsharing.3nx7t"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "QDC"}, "http://ora.ox.ac.uk/oai-pmh/metadata-formats/solo_dc": {"title": "Qualified Dublin Core", "id": "dublin-core-qualified.yml", "identifier": ["fuji:m22", "https://doi.org/10.25504/FAIRsharing.3nx7t"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "QDC"}, "https://cocoon.huma-num.fr/schemas/dcq.xsd": {"title": "Qualified Dublin Core", "id": "dublin-core-qualified.yml", "identifier": ["fuji:m22", "https://doi.org/10.25504/FAIRsharing.3nx7t"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "QDC"}, "http://crdo.risc.cnrs.fr/schemas/dcq/": {"title": "Qualified Dublin Core", "id": "dublin-core-qualified.yml", "identifier": ["fuji:m22", "https://doi.org/10.25504/FAIRsharing.3nx7t"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "QDC"}, "http://oai.base-search.net/base_dc/": {"title": "Qualified Dublin Core", "id": "dublin-core-qualified.yml", "identifier": ["fuji:m22", "https://doi.org/10.25504/FAIRsharing.3nx7t"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "QDC"}, "http://oai.base-search.net/base_dc": {"title": "Qualified Dublin Core", "id": "dublin-core-qualified.yml", "identifier": ["fuji:m22", "https://doi.org/10.25504/FAIRsharing.3nx7t"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "QDC"}, "http://oai.base-search.net/base_dc/base_dc.xsd": {"title": "Qualified Dublin Core", "id": "dublin-core-qualified.yml", "identifier": ["fuji:m22", "https://doi.org/10.25504/FAIRsharing.3nx7t"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "QDC"}, "http://dublincore.org/specifications/": {"title": "Dublin Core", "id": "dublin-core.yml", "identifier": ["msc:m15", "https://doi.org/10.25504/FAIRsharing.3nx7t", "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DC"}, "http://dublincore.org": {"title": "Dublin Core", "id": "dublin-core.yml", "identifier": ["msc:m15", "https://doi.org/10.25504/FAIRsharing.3nx7t", "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DC"}, "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dcterms.xsd": {"title": "Dublin Core", "id": "dublin-core.yml", "identifier": ["msc:m15", "https://doi.org/10.25504/FAIRsharing.3nx7t", "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DC"}, "http://dublincore.org/schemas/xmls/simpledc20021212.xsd": {"title": "Dublin Core", "id": "dublin-core.yml", "identifier": ["msc:m15", "https://doi.org/10.25504/FAIRsharing.3nx7t", "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DC"}, "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dc.xsd": {"title": "Dublin Core", "id": "dublin-core.yml", "identifier": ["msc:m15", "https://doi.org/10.25504/FAIRsharing.3nx7t", "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DC"}, "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dcmitype.xsd": {"title": "Dublin Core", "id": "dublin-core.yml", "identifier": ["msc:m15", "https://doi.org/10.25504/FAIRsharing.3nx7t", "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DC"}, "http://dublincore.org/schemas/xmls/qdc/2008/02/11/simpledc.xsd": {"title": "Dublin Core", "id": "dublin-core.yml", "identifier": ["msc:m15", "https://doi.org/10.25504/FAIRsharing.3nx7t", "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DC"}, "http://dublincore.org/schemas/xmls/qdc/2008/02/11/qualifieddc.xsd": {"title": "Dublin Core", "id": "dublin-core.yml", "identifier": ["msc:m15", "https://doi.org/10.25504/FAIRsharing.3nx7t", "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DC"}, "http://dublincore.org/schemas/xmls/qdc/dc.xsd": {"title": "Dublin Core", "id": "dublin-core.yml", "identifier": ["msc:m15", "https://doi.org/10.25504/FAIRsharing.3nx7t", "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DC"}, "http://dublincore.org/schemas/xmls/qdc/dcterms.xsd": {"title": "Dublin Core", "id": "dublin-core.yml", "identifier": ["msc:m15", "https://doi.org/10.25504/FAIRsharing.3nx7t", "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DC"}, "http://dublincore.org/schemas/xmls/qdc/dcmitype.xsd": {"title": "Dublin Core", "id": "dublin-core.yml", "identifier": ["msc:m15", "https://doi.org/10.25504/FAIRsharing.3nx7t", "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DC"}, "http://purl.org/dc/elements/1.1/": {"title": "Dublin Core", "id": "dublin-core.yml", "identifier": ["msc:m15", "https://doi.org/10.25504/FAIRsharing.3nx7t", "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DC"}, "http://purl.org/dc/terms/": {"title": "Dublin Core", "id": "dublin-core.yml", "identifier": ["msc:m15", "https://doi.org/10.25504/FAIRsharing.3nx7t", "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DC"}, "http://purl.org/dc/dcmitype/": {"title": "Dublin Core", "id": "dublin-core.yml", "identifier": ["msc:m15", "https://doi.org/10.25504/FAIRsharing.3nx7t", "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "DC"}, "http://code.google.com/p/darwincore-germplasm/": {"title": "DwC Germplasm", "id": "dwc-germplasm.yml", "identifier": ["msc:m56", "https://doi.org/10.25504/FAIRsharing.hgsFLe"], "subject_areas": ["Botany"], "field_of_science": ["botany", "natural sciences"], "acronym": null}, "http://purl.org/germplasm#": {"title": "DwC Germplasm", "id": "dwc-germplasm.yml", "identifier": ["msc:m56", "https://doi.org/10.25504/FAIRsharing.hgsFLe"], "subject_areas": ["Botany"], "field_of_science": ["botany", "natural sciences"], "acronym": null}, "http://purl.org/germplasm/germplasmTerm#": {"title": "DwC Germplasm", "id": "dwc-germplasm.yml", "identifier": ["msc:m56", "https://doi.org/10.25504/FAIRsharing.hgsFLe"], "subject_areas": ["Botany"], "field_of_science": ["botany", "natural sciences"], "acronym": null}, "https://www.loc.gov/ead/": {"title": "EAD (Encoded Archival Description)", "id": "ead-encoded-archival-description.yml", "identifier": ["msc:m96", "https://doi.org/10.25504/FAIRsharing.95f59a"], "subject_areas": ["History"], "field_of_science": ["humanities", "history"], "acronym": "ead"}, "urn:isbn:1-931666-22-9": {"title": "EAD (Encoded Archival Description)", "id": "ead-encoded-archival-description.yml", "identifier": ["msc:m96", "https://doi.org/10.25504/FAIRsharing.95f59a"], "subject_areas": ["History"], "field_of_science": ["humanities", "history"], "acronym": "ead"}, "http://ead3.archivists.org/schema": {"title": "EAD (Encoded Archival Description)", "id": "ead-encoded-archival-description.yml", "identifier": ["msc:m96", "https://doi.org/10.25504/FAIRsharing.95f59a"], "subject_areas": ["History"], "field_of_science": ["humanities", "history"], "acronym": "ead"}, "http://ead3.archivists.org/schema/": {"title": "EAD (Encoded Archival Description)", "id": "ead-encoded-archival-description.yml", "identifier": ["msc:m96", "https://doi.org/10.25504/FAIRsharing.95f59a"], "subject_areas": ["History"], "field_of_science": ["humanities", "history"], "acronym": "ead"}, "https://www.loc.gov/ead/tglib1998/": {"title": "EAD (Encoded Archival Description)", "id": "ead-encoded-archival-description.yml", "identifier": ["msc:m96", "https://doi.org/10.25504/FAIRsharing.95f59a"], "subject_areas": ["History"], "field_of_science": ["humanities", "history"], "acronym": "ead"}, "https://www.loc.gov/ead/ag/aghome.html": {"title": "EAD (Encoded Archival Description)", "id": "ead-encoded-archival-description.yml", "identifier": ["msc:m96", "https://doi.org/10.25504/FAIRsharing.95f59a"], "subject_areas": ["History"], "field_of_science": ["humanities", "history"], "acronym": "ead"}, "https://www.loc.gov/ead/ead.xsd": {"title": "EAD (Encoded Archival Description)", "id": "ead-encoded-archival-description.yml", "identifier": ["msc:m96", "https://doi.org/10.25504/FAIRsharing.95f59a"], "subject_areas": ["History"], "field_of_science": ["humanities", "history"], "acronym": "ead"}, "ftp://ftp.loc.gov/pub/ead/ead.dtd": {"title": "EAD (Encoded Archival Description)", "id": "ead-encoded-archival-description.yml", "identifier": ["msc:m96", "https://doi.org/10.25504/FAIRsharing.95f59a"], "subject_areas": ["History"], "field_of_science": ["humanities", "history"], "acronym": "ead"}, "https://www.loc.gov/ead/tglib/": {"title": "EAD (Encoded Archival Description)", "id": "ead-encoded-archival-description.yml", "identifier": ["msc:m96", "https://doi.org/10.25504/FAIRsharing.95f59a"], "subject_areas": ["History"], "field_of_science": ["humanities", "history"], "acronym": "ead"}, "https://www.loc.gov/ead/ead3.xsd": {"title": "EAD (Encoded Archival Description)", "id": "ead-encoded-archival-description.yml", "identifier": ["msc:m96", "https://doi.org/10.25504/FAIRsharing.95f59a"], "subject_areas": ["History"], "field_of_science": ["humanities", "history"], "acronym": "ead"}, "https://www.loc.gov/ead/ead3.dtd": {"title": "EAD (Encoded Archival Description)", "id": "ead-encoded-archival-description.yml", "identifier": ["msc:m96", "https://doi.org/10.25504/FAIRsharing.95f59a"], "subject_areas": ["History"], "field_of_science": ["humanities", "history"], "acronym": "ead"}, "https://www.loc.gov/ead/EAD3taglib/EAD3.html": {"title": "EAD (Encoded Archival Description)", "id": "ead-encoded-archival-description.yml", "identifier": ["msc:m96", "https://doi.org/10.25504/FAIRsharing.95f59a"], "subject_areas": ["History"], "field_of_science": ["humanities", "history"], "acronym": "ead"}, "http://ecrystals.chem.soton.ac.uk": {"title": "eBank UK Metadata Application Profile", "id": "ebank-uk-metadata-application-profile.yml", "identifier": ["msc:m57", "https://doi.org/10.25504/FAIRsharing.ad4856"], "subject_areas": ["Crystallography"], "field_of_science": ["crystallography", "natural sciences"], "acronym": null}, "http://naca.central.cranfield.ac.uk/ethos-oai/2.0/uketd_dc.xsd": {"title": "eBank UK Metadata Application Profile", "id": "ebank-uk-metadata-application-profile.yml", "identifier": ["msc:m57", "https://doi.org/10.25504/FAIRsharing.ad4856"], "subject_areas": ["Crystallography"], "field_of_science": ["crystallography", "natural sciences"], "acronym": null}, "http://naca.central.cranfield.ac.uk/ethos-oai/uketd_dc/": {"title": "eBank UK Metadata Application Profile", "id": "ebank-uk-metadata-application-profile.yml", "identifier": ["msc:m57", "https://doi.org/10.25504/FAIRsharing.ad4856"], "subject_areas": ["Crystallography"], "field_of_science": ["crystallography", "natural sciences"], "acronym": null}, "https://pro.europeana.eu/page/edm-documentation": {"title": "Europeana Data Model (EDM)", "id": "edm-europeana-data-model.yml", "identifier": ["fuji:m33", "https://fairsharing.org/4653"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "EDM"}, "http://www.europeana.eu/schemas/edm/": {"title": "Europeana Data Model (EDM)", "id": "edm-europeana-data-model.yml", "identifier": ["fuji:m33", "https://fairsharing.org/4653"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "EDM"}, "http://www.europeana.eu/schemas/edm": {"title": "Europeana Data Model (EDM)", "id": "edm-europeana-data-model.yml", "identifier": ["fuji:m33", "https://fairsharing.org/4653"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "EDM"}, "http://www.europeana.eu/schemas/ese/": {"title": "Europeana Data Model (EDM)", "id": "edm-europeana-data-model.yml", "identifier": ["fuji:m33", "https://fairsharing.org/4653"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "EDM"}, "https://www.bodc.ac.uk/data/information_and_inventories/edmed/": {"title": "EDMED Metadata Profile", "id": "edmed-metadata-profile.yml", "identifier": ["msc:m58", "https://doi.org/10.25504/FAIRsharing.ed7f20"], "subject_areas": ["Climatology", "Ecology", "Environmental sciences", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Soil sciences"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "environmental sciences", "ecology", "climatology", "soil sciences", "meteorology", "natural sciences"], "acronym": null}, "EDMED_sdn_V1.2.xsd": {"title": "EDMED Metadata Profile", "id": "edmed-metadata-profile.yml", "identifier": ["msc:m58", "https://doi.org/10.25504/FAIRsharing.ed7f20"], "subject_areas": ["Climatology", "Ecology", "Environmental sciences", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Soil sciences"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "environmental sciences", "ecology", "climatology", "soil sciences", "meteorology", "natural sciences"], "acronym": null}, "http://diglib.hab.de/rules/schema/emblem": {"title": "Emblem XML-Schema", "id": "emblem-metadata-schema.yml", "identifier": ["fuji:m16", "https://fairsharing.org/4654"], "subject_areas": ["Humanities"], "field_of_science": ["humanities"], "acronym": "Emblem"}, "http://diglib.hab.de/rules/schema/emblem/emblem-1-3.xsd": {"title": "Emblem XML-Schema", "id": "emblem-metadata-schema.yml", "identifier": ["fuji:m16", "https://fairsharing.org/4654"], "subject_areas": ["Humanities"], "field_of_science": ["humanities"], "acronym": "Emblem"}, "http://diglib.hab.de/rules/schema/emblem/emblem-1-2.xsd": {"title": "Emblem XML-Schema", "id": "emblem-metadata-schema.yml", "identifier": ["fuji:m16", "https://fairsharing.org/4654"], "subject_areas": ["Humanities"], "field_of_science": ["humanities"], "acronym": "Emblem"}, "https://eml.ecoinformatics.org/": {"title": "EML (Ecological Metadata Language)", "id": "eml-ecological-metadata-language.yml", "identifier": ["msc:m16", "https://doi.org/10.25504/FAIRsharing.r3vtvx", "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"], "subject_areas": ["Biological diversity", "Botany", "Ecology", "Zoology"], "field_of_science": ["zoology", "ecology", "biological sciences", "botany", "natural sciences"], "acronym": "EML"}, "https://eml.ecoinformatics.org/schema": {"title": "EML (Ecological Metadata Language)", "id": "eml-ecological-metadata-language.yml", "identifier": ["msc:m16", "https://doi.org/10.25504/FAIRsharing.r3vtvx", "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"], "subject_areas": ["Biological diversity", "Botany", "Ecology", "Zoology"], "field_of_science": ["zoology", "ecology", "biological sciences", "botany", "natural sciences"], "acronym": "EML"}, "eml://eml.ecoinformatics.org/eml-2.0.0": {"title": "EML (Ecological Metadata Language)", "id": "eml-ecological-metadata-language.yml", "identifier": ["msc:m16", "https://doi.org/10.25504/FAIRsharing.r3vtvx", "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"], "subject_areas": ["Biological diversity", "Botany", "Ecology", "Zoology"], "field_of_science": ["zoology", "ecology", "biological sciences", "botany", "natural sciences"], "acronym": "EML"}, "eml://ecoinformatics.org/eml-2.0.0": {"title": "EML (Ecological Metadata Language)", "id": "eml-ecological-metadata-language.yml", "identifier": ["msc:m16", "https://doi.org/10.25504/FAIRsharing.r3vtvx", "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"], "subject_areas": ["Biological diversity", "Botany", "Ecology", "Zoology"], "field_of_science": ["zoology", "ecology", "biological sciences", "botany", "natural sciences"], "acronym": "EML"}, "eml://ecoinformatics.org/eml-2.0.1": {"title": "EML (Ecological Metadata Language)", "id": "eml-ecological-metadata-language.yml", "identifier": ["msc:m16", "https://doi.org/10.25504/FAIRsharing.r3vtvx", "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"], "subject_areas": ["Biological diversity", "Botany", "Ecology", "Zoology"], "field_of_science": ["zoology", "ecology", "biological sciences", "botany", "natural sciences"], "acronym": "EML"}, "eml://ecoinformatics.org/eml-2.1.0": {"title": "EML (Ecological Metadata Language)", "id": "eml-ecological-metadata-language.yml", "identifier": ["msc:m16", "https://doi.org/10.25504/FAIRsharing.r3vtvx", "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"], "subject_areas": ["Biological diversity", "Botany", "Ecology", "Zoology"], "field_of_science": ["zoology", "ecology", "biological sciences", "botany", "natural sciences"], "acronym": "EML"}, "eml://ecoinformatics.org/eml-2.1.1": {"title": "EML (Ecological Metadata Language)", "id": "eml-ecological-metadata-language.yml", "identifier": ["msc:m16", "https://doi.org/10.25504/FAIRsharing.r3vtvx", "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"], "subject_areas": ["Biological diversity", "Botany", "Ecology", "Zoology"], "field_of_science": ["zoology", "ecology", "biological sciences", "botany", "natural sciences"], "acronym": "EML"}, "https://eml.ecoinformatics.org/eml-2.2.0": {"title": "EML (Ecological Metadata Language)", "id": "eml-ecological-metadata-language.yml", "identifier": ["msc:m16", "https://doi.org/10.25504/FAIRsharing.r3vtvx", "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"], "subject_areas": ["Biological diversity", "Botany", "Ecology", "Zoology"], "field_of_science": ["zoology", "ecology", "biological sciences", "botany", "natural sciences"], "acronym": "EML"}, "https://eml.ecoinformatics.org/eml-2.2.1": {"title": "EML (Ecological Metadata Language)", "id": "eml-ecological-metadata-language.yml", "identifier": ["msc:m16", "https://doi.org/10.25504/FAIRsharing.r3vtvx", "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"], "subject_areas": ["Biological diversity", "Botany", "Ecology", "Zoology"], "field_of_science": ["zoology", "ecology", "biological sciences", "botany", "natural sciences"], "acronym": "EML"}, "https://eml.ecoinformatics.org/schema/eml_xsd": {"title": "EML (Ecological Metadata Language)", "id": "eml-ecological-metadata-language.yml", "identifier": ["msc:m16", "https://doi.org/10.25504/FAIRsharing.r3vtvx", "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"], "subject_areas": ["Biological diversity", "Botany", "Ecology", "Zoology"], "field_of_science": ["zoology", "ecology", "biological sciences", "botany", "natural sciences"], "acronym": "EML"}, "urn:nbn:de:1111-2004033116": {"title": "xepicur", "id": "epicur-metadata-schema.yml", "identifier": ["fuji:m21", "https://fairsharing.org/4659"], "subject_areas": null, "field_of_science": [], "acronym": "epicur"}, " https://files.dnb.de/Web/xepicur.xsd": {"title": "xepicur", "id": "epicur-metadata-schema.yml", "identifier": ["fuji:m21", "https://fairsharing.org/4659"], "subject_areas": null, "field_of_science": [], "acronym": "epicur"}, "https://wiki.dnb.de/display/URNSERVDOK/xepicur+-+XML-Datentransferformat+zur+Verwaltung+von+URN": {"title": "xepicur", "id": "epicur-metadata-schema.yml", "identifier": ["fuji:m21", "https://fairsharing.org/4659"], "subject_areas": null, "field_of_science": [], "acronym": "epicur"}, "http://eprints.org/ep2/data/2.0": {"title": "EPrints XML", "id": "eprints-xml.yml", "identifier": ["fuji:m23"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "EPrints"}, "http://www.ndltd.org/standards/metadata/etdms/1.1/": {"title": "ETD-MS an Interoperability Metadata Standard for Electronic Theses and Dissertations", "id": "etdms-metadata-schema.yml", "identifier": ["fuji:m17", "https://fairsharing.org/4660"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "ETD-MS"}, "http://www.ndltd.org/standards/metadata/etdms/1.0/": {"title": "ETD-MS an Interoperability Metadata Standard for Electronic Theses and Dissertations", "id": "etdms-metadata-schema.yml", "identifier": ["fuji:m17", "https://fairsharing.org/4660"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "ETD-MS"}, "http://www.ndltd.org/standards/metadata/etdms/1.1/etdms11.xsd": {"title": "ETD-MS an Interoperability Metadata Standard for Electronic Theses and Dissertations", "id": "etdms-metadata-schema.yml", "identifier": ["fuji:m17", "https://fairsharing.org/4660"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "ETD-MS"}, "http://www.ndltd.org/standards/metadata/etdms/1.1/etdmsdc.xsd": {"title": "ETD-MS an Interoperability Metadata Standard for Electronic Theses and Dissertations", "id": "etdms-metadata-schema.yml", "identifier": ["fuji:m17", "https://fairsharing.org/4660"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "ETD-MS"}, "http://www.ndltd.org/standards/metadata/etdms/1.1/etdmsdcterms.xsd": {"title": "ETD-MS an Interoperability Metadata Standard for Electronic Theses and Dissertations", "id": "etdms-metadata-schema.yml", "identifier": ["fuji:m17", "https://fairsharing.org/4660"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "ETD-MS"}, "http://www.ndltd.org/standards/metadata/etdms/1.0/etdms.xsd": {"title": "ETD-MS an Interoperability Metadata Standard for Electronic Theses and Dissertations", "id": "etdms-metadata-schema.yml", "identifier": ["fuji:m17", "https://fairsharing.org/4660"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "ETD-MS"}, "http://www.ndltd.org/standards/metadata/etdms/1-0/": {"title": "ETD-MS an Interoperability Metadata Standard for Electronic Theses and Dissertations", "id": "etdms-metadata-schema.yml", "identifier": ["fuji:m17", "https://fairsharing.org/4660"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "ETD-MS"}, "http://www.ecpgr.cgiar.org/fileadmin/templates/ecpgr.org/upload/MISC/EURISCO_Descriptors.pdf": {"title": "EURISCO Descriptors", "id": "eurisco-descriptors.yml", "identifier": ["msc:m85"], "subject_areas": null, "field_of_science": [], "acronym": null}, "http://www.fdsn.org/xml/station/1": {"title": "International Federation of Digital Seismograph Networks StationXML (FDSN StationXML)", "id": "fdsn-seismograph.yml", "identifier": ["fuji:m8", "https://fairsharing.org/1434"], "subject_areas": ["Earth sciences", "Geophysics"], "field_of_science": ["earth and related environmental sciences", "natural sciences", "geophysics"], "acronym": null}, "http://www.fdsn.org/xml/station/": {"title": "International Federation of Digital Seismograph Networks StationXML (FDSN StationXML)", "id": "fdsn-seismograph.yml", "identifier": ["fuji:m8", "https://fairsharing.org/1434"], "subject_areas": ["Earth sciences", "Geophysics"], "field_of_science": ["earth and related environmental sciences", "natural sciences", "geophysics"], "acronym": null}, "http://docs.fdsn.org/projects/stationxml/en/latest/": {"title": "International Federation of Digital Seismograph Networks StationXML (FDSN StationXML)", "id": "fdsn-seismograph.yml", "identifier": ["fuji:m8", "https://fairsharing.org/1434"], "subject_areas": ["Earth sciences", "Geophysics"], "field_of_science": ["earth and related environmental sciences", "natural sciences", "geophysics"], "acronym": null}, "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/biometadata/biodatap.pdf": {"title": "FGDC/CSDGM Biological Data Profile", "id": "fgdccsdgm-biological-data-profile.yml", "identifier": ["msc:m59"], "subject_areas": ["Biogeography"], "field_of_science": ["biological sciences", "natural sciences"], "acronym": null}, "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/base-metadata/v2_0698.pdf": {"title": "FGDC/CSDGM (Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata)", "id": "fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge.yml", "identifier": ["msc:m17", "https://fairsharing.org/1445", "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"], "subject_areas": ["Biochemistry", "Cartography", "Climatology", "Geography", "Hydrology", "Land use", "Marine biology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["oceanography", "hydrology", "social sciences", "cartography", "physical geography", "climatology", "social geography", "marine biology", "biochemistry", "meteorology", "natural sciences"], "acronym": "fgdc"}, "http://www.fgdc.gov/metadata/geospatial-metadata-standards/": {"title": "FGDC/CSDGM (Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata)", "id": "fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge.yml", "identifier": ["msc:m17", "https://fairsharing.org/1445", "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"], "subject_areas": ["Biochemistry", "Cartography", "Climatology", "Geography", "Hydrology", "Land use", "Marine biology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["oceanography", "hydrology", "social sciences", "cartography", "physical geography", "climatology", "social geography", "marine biology", "biochemistry", "meteorology", "natural sciences"], "acronym": "fgdc"}, "https://www.fgdc.gov/schemas/metadata/fgdc-std-001-1998.xsd": {"title": "FGDC/CSDGM (Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata)", "id": "fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge.yml", "identifier": ["msc:m17", "https://fairsharing.org/1445", "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"], "subject_areas": ["Biochemistry", "Cartography", "Climatology", "Geography", "Hydrology", "Land use", "Marine biology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["oceanography", "hydrology", "social sciences", "cartography", "physical geography", "climatology", "social geography", "marine biology", "biochemistry", "meteorology", "natural sciences"], "acronym": "fgdc"}, "https://www.fgdc.gov/schemas/metadata/fgdc-std-001.2-2001.xsd": {"title": "FGDC/CSDGM (Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata)", "id": "fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge.yml", "identifier": ["msc:m17", "https://fairsharing.org/1445", "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"], "subject_areas": ["Biochemistry", "Cartography", "Climatology", "Geography", "Hydrology", "Land use", "Marine biology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["oceanography", "hydrology", "social sciences", "cartography", "physical geography", "climatology", "social geography", "marine biology", "biochemistry", "meteorology", "natural sciences"], "acronym": "fgdc"}, "https://www.fgdc.gov/schemas/metadata/": {"title": "FGDC/CSDGM (Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata)", "id": "fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge.yml", "identifier": ["msc:m17", "https://fairsharing.org/1445", "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"], "subject_areas": ["Biochemistry", "Cartography", "Climatology", "Geography", "Hydrology", "Land use", "Marine biology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["oceanography", "hydrology", "social sciences", "cartography", "physical geography", "climatology", "social geography", "marine biology", "biochemistry", "meteorology", "natural sciences"], "acronym": "fgdc"}, "http://www.fgdc.gov/metadata/csdgm/index_html": {"title": "FGDC/CSDGM (Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata)", "id": "fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge.yml", "identifier": ["msc:m17", "https://fairsharing.org/1445", "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"], "subject_areas": ["Biochemistry", "Cartography", "Climatology", "Geography", "Hydrology", "Land use", "Marine biology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["oceanography", "hydrology", "social sciences", "cartography", "physical geography", "climatology", "social geography", "marine biology", "biochemistry", "meteorology", "natural sciences"], "acronym": "fgdc"}, "http://fits.gsfc.nasa.gov/fits_standard.html": {"title": "FITS (Flexible Image Transport System)", "id": "fits-flexible-image-transport-system.yml", "identifier": ["msc:m18", "https://doi.org/10.25504/FAIRsharing.xvash1", "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system"], "subject_areas": ["Astronomy", "Astrophysics", "Sun"], "field_of_science": ["astronomy", "astrophysics", "natural sciences"], "acronym": null}, "http://fits.gsfc.nasa.gov/fits_wcs.html": {"title": "FITS World Coordinate System (WCS)", "id": "fits-world-coordinate-system-wcs.yml", "identifier": ["msc:m60"], "subject_areas": ["Astronomy", "Astrophysics", "Sun"], "field_of_science": ["astronomy", "astrophysics", "natural sciences"], "acronym": null}, "http://rs.gbif.org/schema/eml-gbif-profile/": {"title": "GBIF Metadata Profile", "id": "gbif-metadata-profile.yml", "identifier": ["msc:m61"], "subject_areas": ["Biogeography", "Biological diversity", "Botany", "Ecology", "Zoology"], "field_of_science": ["zoology", "ecology", "biological sciences", "botany", "natural sciences"], "acronym": null}, "http://rs.gbif.org/schema/eml-gbif-profile/1.0.2/eml-gbif-profile.xsd": {"title": "GBIF Metadata Profile", "id": "gbif-metadata-profile.yml", "identifier": ["msc:m61"], "subject_areas": ["Biogeography", "Biological diversity", "Botany", "Ecology", "Zoology"], "field_of_science": ["zoology", "ecology", "biological sciences", "botany", "natural sciences"], "acronym": null}, "http://rs.gbif.org/schema/eml-gbif-profile/1.1/eml-gbif-profile.xsd": {"title": "GBIF Metadata Profile", "id": "gbif-metadata-profile.yml", "identifier": ["msc:m61"], "subject_areas": ["Biogeography", "Biological diversity", "Botany", "Ecology", "Zoology"], "field_of_science": ["zoology", "ecology", "biological sciences", "botany", "natural sciences"], "acronym": null}, "http://enews.patricbrc.org/faqs/genome-metadata-faqs/": {"title": "Genome Metadata", "id": "genome-metadata.yml", "identifier": ["msc:m19", "http://www.dcc.ac.uk/resources/metadata-standards/genome-metadata"], "subject_areas": ["Genetics"], "field_of_science": ["genetics", "natural sciences"], "acronym": null}, "http://www.georss.org": {"title": "GeoRSS", "id": "georss-encoding-standard.yml", "identifier": ["fuji:m1", "https://fairsharing.org/4663"], "subject_areas": ["Earth sciences"], "field_of_science": ["earth and related environmental sciences", "natural sciences"], "acronym": null}, "http://www.georss.org/georss/": {"title": "GeoRSS", "id": "georss-encoding-standard.yml", "identifier": ["fuji:m1", "https://fairsharing.org/4663"], "subject_areas": ["Earth sciences"], "field_of_science": ["earth and related environmental sciences", "natural sciences"], "acronym": null}, "http://schemas.opengis.net/georss/1.0/": {"title": "GeoRSS", "id": "georss-encoding-standard.yml", "identifier": ["fuji:m1", "https://fairsharing.org/4663"], "subject_areas": ["Earth sciences"], "field_of_science": ["earth and related environmental sciences", "natural sciences"], "acronym": null}, "http://www.ecb.int/stats/services/sdmx/html/index.en.html": {"title": "GESMES/TS (Generic Statistical Message for Time Series)", "id": "gesmests-generic-statistical-message-time-series.yml", "identifier": ["msc:m62"], "subject_areas": ["Economics", "Social policy", "Statistics"], "field_of_science": ["political sciences", "statistics and probability", "social sciences", "economics", "natural sciences"], "acronym": null}, "http://www1.unece.org/stat/platform/display/metis/Generic+Statistical+Information+Model": {"title": "GSIM (Generic Statistical Information Model)", "id": "gsim-generic-statistical-information-model.yml", "identifier": ["msc:m63", "https://doi.org/10.25504/FAIRsharing.22bb25"], "subject_areas": ["Statistics"], "field_of_science": ["statistics and probability", "natural sciences"], "acronym": null}, "http://www.rbg.vic.gov.au/wiki/hiscom/index.php/HISPID_5": {"title": "HISPID (Herbarium Information Standards and Protocols for Interchange of Data)", "id": "hispid-herbarium-information-standards-and-protocols-interchange-data.yml", "identifier": ["msc:m64", "https://doi.org/10.25504/FAIRsharing.y49yj6"], "subject_areas": ["Botany"], "field_of_science": ["botany", "natural sciences"], "acronym": null}, "http://www.mpi.nl/IMDI/Schema/IMDI": {"title": "IMDI Metadata Standard", "id": "imdi-metadata-schema.yml", "identifier": ["fuji:m15", "https://doi.org/10.25504/FAIRsharing.2cfb88"], "subject_areas": ["Humanities", "Linguistics"], "field_of_science": ["linguistics", "humanities"], "acronym": "IMDI"}, "http://www.mpi.nl/IMDI/schemas/xsd/": {"title": "IMDI Metadata Standard", "id": "imdi-metadata-schema.yml", "identifier": ["fuji:m15", "https://doi.org/10.25504/FAIRsharing.2cfb88"], "subject_areas": ["Humanities", "Linguistics"], "field_of_science": ["linguistics", "humanities"], "acronym": "IMDI"}, "https://www.mpi.nl/IMDI/Schema/IMDI_3.0.xsd": {"title": "IMDI Metadata Standard", "id": "imdi-metadata-schema.yml", "identifier": ["fuji:m15", "https://doi.org/10.25504/FAIRsharing.2cfb88"], "subject_areas": ["Humanities", "Linguistics"], "field_of_science": ["linguistics", "humanities"], "acronym": "IMDI"}, "http://meetingorganizer.copernicus.org/EPSC2012/EPSC2012-360.pdf": {"title": "IMPEx Data Model", "id": "impex-data-model.yml", "identifier": ["msc:m65"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "http://inspire.ec.europa.eu/": {"title": "INSPIRE Metadata Regulation", "id": "inspire-metadata-regulation.yml", "identifier": ["msc:m66", "https://doi.org/10.25504/FAIRsharing.nrx5kk"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "cartography", "physical geography", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences"], "acronym": null}, "http://inspire.ec.europa.eu/schemas/common/1.0/common.xsd": {"title": "INSPIRE Metadata Regulation", "id": "inspire-metadata-regulation.yml", "identifier": ["msc:m66", "https://doi.org/10.25504/FAIRsharing.nrx5kk"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "cartography", "physical geography", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences"], "acronym": null}, "http://inspire.ec.europa.eu/schemas/common/1.0/network.xsd": {"title": "INSPIRE Metadata Regulation", "id": "inspire-metadata-regulation.yml", "identifier": ["msc:m66", "https://doi.org/10.25504/FAIRsharing.nrx5kk"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "cartography", "physical geography", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences"], "acronym": null}, "http://www.ivoa.net/documents/#specs": {"title": "International Virtual Observatory Alliance Technical Specifications", "id": "international-virtual-observatory-alliance-technical-specifications.yml", "identifier": ["msc:m20"], "subject_areas": ["Astronomy"], "field_of_science": ["astronomy", "natural sciences"], "acronym": "IVOA"}, "http://ivoa.net/documents/": {"title": "International Virtual Observatory Alliance Technical Specifications", "id": "international-virtual-observatory-alliance-technical-specifications.yml", "identifier": ["msc:m20"], "subject_areas": ["Astronomy"], "field_of_science": ["astronomy", "natural sciences"], "acronym": "IVOA"}, "https://wiki.nci.nih.gov/display/ICR/ISA-TAB-Nano#ISA-TAB-Nano-title": {"title": "ISA-TAB Nano", "id": "isa-tab-nano.yml", "identifier": ["msc:m67", "https://doi.org/10.25504/FAIRsharing.njqq5b"], "subject_areas": ["Biochemicals", "Biotechnology"], "field_of_science": ["biochemistry", "biological sciences", "engineering and technology", "natural sciences"], "acronym": null}, "http://isatab.sourceforge.net/docs/ISA-TAB_release-candidate-1_v1.0_24nov08.pdf": {"title": "ISA-Tab", "id": "isa-tab.yml", "identifier": ["msc:m21", "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"], "subject_areas": ["Biochemicals", "Biochemistry", "Biophysics", "Biotechnology", "Cell biology", "Genetics", "Metabolism", "Molecular biology"], "field_of_science": ["genetics", "biophysics", "biological sciences", "cell metabolism", "molecular biology", "engineering and technology", "cell biology", "biochemistry", "natural sciences"], "acronym": null}, "http://isatab.sourceforge.net/format.html": {"title": "ISA-Tab", "id": "isa-tab.yml", "identifier": ["msc:m21", "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"], "subject_areas": ["Biochemicals", "Biochemistry", "Biophysics", "Biotechnology", "Cell biology", "Genetics", "Metabolism", "Molecular biology"], "field_of_science": ["genetics", "biophysics", "biological sciences", "cell metabolism", "molecular biology", "engineering and technology", "cell biology", "biochemistry", "natural sciences"], "acronym": null}, "https://bitbucket.org/kanterae/isaconfig-dixa": {"title": "isaconfig-diXa", "id": "isaconfig-dixa.yml", "identifier": ["msc:m68"], "subject_areas": ["Genetics", "Toxicology"], "field_of_science": ["genetics", "medical and health sciences", "toxicology", "natural sciences"], "acronym": null}, "http://www.iso.org/iso/catalogue_detail.htm?csnumber=39229": {"title": "ISO 19115-2 - Imagery and gridded data", "id": "iso-19115-2-imagery-and-gridded-data.yml", "identifier": ["msc:m69", "https://doi.org/10.25504/FAIRsharing.a6b18c"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Glaciology", "Hydrology", "Land use", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "cartography", "physical geography", "climatology", "earth and related environmental sciences", "social geography", "social sciences", "meteorology", "natural sciences"], "acronym": null}, "http://www.fgdc.gov/standards/projects/incits-l1-standards-projects/NAP-Metadata": {"title": "ISO 19115 North American Profile", "id": "iso-19115-north-american-profile.yml", "identifier": ["msc:m70", "https://doi.org/10.25504/FAIRsharing.b4af3c"], "subject_areas": ["Cartography", "Geography", "Topography"], "field_of_science": ["cartography", "natural sciences", "physical geography"], "acronym": null}, "http://standards.iso.org/iso/19115/-3/": {"title": "ISO 19115", "id": "iso-19115.yml", "identifier": ["msc:m22", "https://doi.org/10.25504/FAIRsharing.t7mby9"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Geology", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "cartography", "physical geography", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences", "geology"], "acronym": "ISO19115"}, "http://www.iso.org/iso/catalogue_detail.htm?csnumber=53798": {"title": "ISO 19115", "id": "iso-19115.yml", "identifier": ["msc:m22", "https://doi.org/10.25504/FAIRsharing.t7mby9"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Geology", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "cartography", "physical geography", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences", "geology"], "acronym": "ISO19115"}, "http://www.isotc211.org/2005/gmd/gmd.xsd": {"title": "ISO 19115", "id": "iso-19115.yml", "identifier": ["msc:m22", "https://doi.org/10.25504/FAIRsharing.t7mby9"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Geology", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "cartography", "physical geography", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences", "geology"], "acronym": "ISO19115"}, "http://www.isotc211.org/2005/gmd": {"title": "ISO 19115", "id": "iso-19115.yml", "identifier": ["msc:m22", "https://doi.org/10.25504/FAIRsharing.t7mby9"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Geology", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "cartography", "physical geography", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences", "geology"], "acronym": "ISO19115"}, "http://standards.iso.org/iso/19115/-3/mds/2.0": {"title": "ISO 19115", "id": "iso-19115.yml", "identifier": ["msc:m22", "https://doi.org/10.25504/FAIRsharing.t7mby9"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Geology", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "cartography", "physical geography", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences", "geology"], "acronym": "ISO19115"}, "http://standards.iso.org/iso/19115/-3/mds/1.0": {"title": "ISO 19115", "id": "iso-19115.yml", "identifier": ["msc:m22", "https://doi.org/10.25504/FAIRsharing.t7mby9"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Geology", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "cartography", "physical geography", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences", "geology"], "acronym": "ISO19115"}, "http://standards.iso.org/iso/19115/-3/mdb/2.0": {"title": "ISO 19115", "id": "iso-19115.yml", "identifier": ["msc:m22", "https://doi.org/10.25504/FAIRsharing.t7mby9"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Geology", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "cartography", "physical geography", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences", "geology"], "acronym": "ISO19115"}, "http://bluenet3.antcrc.utas.edu.au/mcp": {"title": "ISO 19115", "id": "iso-19115.yml", "identifier": ["msc:m22", "https://doi.org/10.25504/FAIRsharing.t7mby9"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Geology", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "cartography", "physical geography", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences", "geology"], "acronym": "ISO19115"}, "https://www.ogc.org/standards/gml": {"title": "Geography Markup Language", "id": "iso-19136.yml", "identifier": ["fuji:m3", "https://doi.org/10.25504/FAIRsharing.d69ee0"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Geology", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "cartography", "physical geography", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences", "geology"], "acronym": null}, "www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=32554": {"title": "Geography Markup Language", "id": "iso-19136.yml", "identifier": ["fuji:m3", "https://doi.org/10.25504/FAIRsharing.d69ee0"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Geology", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "cartography", "physical geography", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences", "geology"], "acronym": null}, "http://www.opengis.net/gml/3.2": {"title": "Geography Markup Language", "id": "iso-19136.yml", "identifier": ["fuji:m3", "https://doi.org/10.25504/FAIRsharing.d69ee0"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Geology", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "cartography", "physical geography", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences", "geology"], "acronym": null}, "http://schemas.opengis.net/gml/3.2.1/gml.xsd": {"title": "Geography Markup Language", "id": "iso-19136.yml", "identifier": ["fuji:m3", "https://doi.org/10.25504/FAIRsharing.d69ee0"], "subject_areas": ["Cartography", "Climatology", "Earth sciences", "Geography", "Geology", "Glaciology", "Hydrogeology", "Hydrology", "Meteorology", "Oceanography", "Topography"], "field_of_science": ["glaciology", "oceanography", "hydrogeology", "hydrology", "cartography", "physical geography", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences", "geology"], "acronym": null}, "https://www.ivoa.net/documents/RegistryInterface/20180723/REC-RegistryInterface-1.1.html": {"title": "IVOA Registry Interfaces", "id": "ivoa-registry-metdata.yml", "identifier": ["fuji:m35", "https://doi.org/10.25504/FAIRsharing.RycpEU", "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications"], "subject_areas": ["Astronomy"], "field_of_science": ["astronomy", "natural sciences"], "acronym": "ivoa-reg"}, "http://www.ivoa.net/xml/VORegistry/v1.0": {"title": "IVOA Registry Interfaces", "id": "ivoa-registry-metdata.yml", "identifier": ["fuji:m35", "https://doi.org/10.25504/FAIRsharing.RycpEU", "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications"], "subject_areas": ["Astronomy"], "field_of_science": ["astronomy", "natural sciences"], "acronym": "ivoa-reg"}, "http://www.ivoa.net/xml/RegistryInterface/v1.0": {"title": "IVOA Registry Interfaces", "id": "ivoa-registry-metdata.yml", "identifier": ["fuji:m35", "https://doi.org/10.25504/FAIRsharing.RycpEU", "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications"], "subject_areas": ["Astronomy"], "field_of_science": ["astronomy", "natural sciences"], "acronym": "ivoa-reg"}, "http://jats.nlm.nih.gov/publishing/": {"title": "Journal Publishing Tag Set (Jats)", "id": "jats-schema.yml", "identifier": ["fuji:m41", "https://doi.org/10.25504/FAIRsharing.smr0rh"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "jats"}, "https://jats.nlm.nih.gov/publishing/1.0/xsd/JATS-journalpublishing1.xsd": {"title": "Journal Publishing Tag Set (Jats)", "id": "jats-schema.yml", "identifier": ["fuji:m41", "https://doi.org/10.25504/FAIRsharing.smr0rh"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "jats"}, "http://jats.nlm.nih.gov/publishing/1.0": {"title": "Journal Publishing Tag Set (Jats)", "id": "jats-schema.yml", "identifier": ["fuji:m41", "https://doi.org/10.25504/FAIRsharing.smr0rh"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "jats"}, "www.lido-schema.org/schema/latest/lido.xsd": {"title": "LIDO, Lightweight Information Describing Objects", "id": "lido-lightweight-information-describing-objects.yml", "identifier": ["fuji:m18", "https://doi.org/10.25504/FAIRsharing.73558b"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "LIDO"}, "www.lido-schema.org/schema/v1.1/lido-v1.1.xsd": {"title": "LIDO, Lightweight Information Describing Objects", "id": "lido-lightweight-information-describing-objects.yml", "identifier": ["fuji:m18", "https://doi.org/10.25504/FAIRsharing.73558b"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "LIDO"}, "http://www.lido-schema.org/schema/v1.0/lido-v1.0.xsd": {"title": "LIDO, Lightweight Information Describing Objects", "id": "lido-lightweight-information-describing-objects.yml", "identifier": ["fuji:m18", "https://doi.org/10.25504/FAIRsharing.73558b"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "LIDO"}, "http://lido-schema.org/schema/v1.1/lido-v1.1.xsd": {"title": "LIDO, Lightweight Information Describing Objects", "id": "lido-lightweight-information-describing-objects.yml", "identifier": ["fuji:m18", "https://doi.org/10.25504/FAIRsharing.73558b"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "LIDO"}, "http://www.lido-schema.org": {"title": "LIDO, Lightweight Information Describing Objects", "id": "lido-lightweight-information-describing-objects.yml", "identifier": ["fuji:m18", "https://doi.org/10.25504/FAIRsharing.73558b"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "LIDO"}, "https://cidoc.mini.icom.museum/working-groups/lido/lido-overview/about-lido/what-is-lido/": {"title": "LIDO, Lightweight Information Describing Objects", "id": "lido-lightweight-information-describing-objects.yml", "identifier": ["fuji:m18", "https://doi.org/10.25504/FAIRsharing.73558b"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "LIDO"}, "https://dini-ag-kim.github.io/hs-oer-lom-profil/latest/": {"title": "Learning Object Metadata (LOM)", "id": "lom-higher-education-schema.yml", "identifier": ["fuji:m24", "https://fairsharing.org/4664"], "subject_areas": null, "field_of_science": [], "acronym": "LOM"}, "https://ieeexplore.ieee.org/document/1032843": {"title": "Learning Object Metadata (LOM)", "id": "lom-higher-education-schema.yml", "identifier": ["fuji:m24", "https://fairsharing.org/4664"], "subject_areas": null, "field_of_science": [], "acronym": "LOM"}, "http://ltsc.ieee.org/xsd/LOMv1p0": {"title": "Learning Object Metadata (LOM)", "id": "lom-higher-education-schema.yml", "identifier": ["fuji:m24", "https://fairsharing.org/4664"], "subject_areas": null, "field_of_science": [], "acronym": "LOM"}, "http://ltsc.ieee.org/2002/09/lom-base#": {"title": "Learning Object Metadata (LOM)", "id": "lom-higher-education-schema.yml", "identifier": ["fuji:m24", "https://fairsharing.org/4664"], "subject_areas": null, "field_of_science": [], "acronym": "LOM"}, "https://www.oerbw.de/hsoerlom": {"title": "Learning Object Metadata (LOM)", "id": "lom-higher-education-schema.yml", "identifier": ["fuji:m24", "https://fairsharing.org/4664"], "subject_areas": null, "field_of_science": [], "acronym": "LOM"}, "http://www.rdn.ac.uk/oai/lom/lom.xsd": {"title": "Learning Object Metadata (LOM)", "id": "lom-higher-education-schema.yml", "identifier": ["fuji:m24", "https://fairsharing.org/4664"], "subject_areas": null, "field_of_science": [], "acronym": "LOM"}, "https://w3id.org/kim/hs-oer-lom-profil/latest/schemas/hs-oer-lom.xsd": {"title": "Learning Object Metadata (LOM)", "id": "lom-higher-education-schema.yml", "identifier": ["fuji:m24", "https://fairsharing.org/4664"], "subject_areas": null, "field_of_science": [], "acronym": "LOM"}, "https://psidev.info/magetab": {"title": "MAGE-TAB", "id": "mage-tab.yml", "identifier": ["msc:m87", "https://fairsharing.org/4680"], "subject_areas": null, "field_of_science": [], "acronym": null}, "http://www.loc.gov/marc/": {"title": "MARC (Machine-Readable Cataloging)", "id": "marc-machine-readable-cataloging.yml", "identifier": ["msc:m88", "https://doi.org/10.25504/FAIRsharing.217b1b"], "subject_areas": ["Multidisciplinary", "Bibliographic standards", "Information/library standards"], "field_of_science": ["humanities", "sciences", "library sciences"], "acronym": "MARC"}, "http://www.loc.gov/marc/bibliographic/": {"title": "MARC (Machine-Readable Cataloging)", "id": "marc-machine-readable-cataloging.yml", "identifier": ["msc:m88", "https://doi.org/10.25504/FAIRsharing.217b1b"], "subject_areas": ["Multidisciplinary", "Bibliographic standards", "Information/library standards"], "field_of_science": ["humanities", "sciences", "library sciences"], "acronym": "MARC"}, "http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd": {"title": "MARC (Machine-Readable Cataloging)", "id": "marc-machine-readable-cataloging.yml", "identifier": ["msc:m88", "https://doi.org/10.25504/FAIRsharing.217b1b"], "subject_areas": ["Multidisciplinary", "Bibliographic standards", "Information/library standards"], "field_of_science": ["humanities", "sciences", "library sciences"], "acronym": "MARC"}, "https://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd": {"title": "MARC (Machine-Readable Cataloging)", "id": "marc-machine-readable-cataloging.yml", "identifier": ["msc:m88", "https://doi.org/10.25504/FAIRsharing.217b1b"], "subject_areas": ["Multidisciplinary", "Bibliographic standards", "Information/library standards"], "field_of_science": ["humanities", "sciences", "library sciences"], "acronym": "MARC"}, "http://www.loc.gov/MARC21/slim": {"title": "MARC (Machine-Readable Cataloging)", "id": "marc-machine-readable-cataloging.yml", "identifier": ["msc:m88", "https://doi.org/10.25504/FAIRsharing.217b1b"], "subject_areas": ["Multidisciplinary", "Bibliographic standards", "Information/library standards"], "field_of_science": ["humanities", "sciences", "library sciences"], "acronym": "MARC"}, "http://www.ddb.de/professionell/MARC21/plus": {"title": "MARC (Machine-Readable Cataloging)", "id": "marc-machine-readable-cataloging.yml", "identifier": ["msc:m88", "https://doi.org/10.25504/FAIRsharing.217b1b"], "subject_areas": ["Multidisciplinary", "Bibliographic standards", "Information/library standards"], "field_of_science": ["humanities", "sciences", "library sciences"], "acronym": "MARC"}, "https://mcp-profile-docs.readthedocs.io/en/stable/": {"title": "AODN Marine Community Profile", "id": "marine-community-profile.yml", "identifier": ["msc:m71", "https://doi.org/10.25504/FAIRsharing.18b8b4"], "subject_areas": ["Climatology", "Earth sciences", "Glaciology", "Hydrology", "Meteorology", "Oceanography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences"], "acronym": "AODN"}, "http://www.aodc.org.au/index.php?id=37": {"title": "AODN Marine Community Profile", "id": "marine-community-profile.yml", "identifier": ["msc:m71", "https://doi.org/10.25504/FAIRsharing.18b8b4"], "subject_areas": ["Climatology", "Earth sciences", "Glaciology", "Hydrology", "Meteorology", "Oceanography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences"], "acronym": "AODN"}, "http://schemas.aodn.org.au/mcp-2.0": {"title": "AODN Marine Community Profile", "id": "marine-community-profile.yml", "identifier": ["msc:m71", "https://doi.org/10.25504/FAIRsharing.18b8b4"], "subject_areas": ["Climatology", "Earth sciences", "Glaciology", "Hydrology", "Meteorology", "Oceanography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences"], "acronym": "AODN"}, "http://schemas.aodn.org.au": {"title": "AODN Marine Community Profile", "id": "marine-community-profile.yml", "identifier": ["msc:m71", "https://doi.org/10.25504/FAIRsharing.18b8b4"], "subject_areas": ["Climatology", "Earth sciences", "Glaciology", "Hydrology", "Meteorology", "Oceanography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences"], "acronym": "AODN"}, "http://schemas.aodn.org.au/mcp-2.0/schema.xsd": {"title": "AODN Marine Community Profile", "id": "marine-community-profile.yml", "identifier": ["msc:m71", "https://doi.org/10.25504/FAIRsharing.18b8b4"], "subject_areas": ["Climatology", "Earth sciences", "Glaciology", "Hydrology", "Meteorology", "Oceanography"], "field_of_science": ["glaciology", "oceanography", "hydrology", "climatology", "earth and related environmental sciences", "meteorology", "natural sciences"], "acronym": "AODN"}, "http://www.meta-share.org/p/93/Documentation#model": {"title": "Metadata Schema for the Description of Language Resources", "id": "metashare-metadata.yml", "identifier": ["fuji:m12", "https://fairsharing.org/4665"], "subject_areas": ["Humanities", "Linguistics"], "field_of_science": ["linguistics", "humanities"], "acronym": "META-SHARE"}, "http://www.ilsp.gr/META-XMLSchema": {"title": "Metadata Schema for the Description of Language Resources", "id": "metashare-metadata.yml", "identifier": ["fuji:m12", "https://fairsharing.org/4665"], "subject_areas": ["Humanities", "Linguistics"], "field_of_science": ["linguistics", "humanities"], "acronym": "META-SHARE"}, "http://w3id.org/meta-share/meta-share/": {"title": "Metadata Schema for the Description of Language Resources", "id": "metashare-metadata.yml", "identifier": ["fuji:m12", "https://fairsharing.org/4665"], "subject_areas": ["Humanities", "Linguistics"], "field_of_science": ["linguistics", "humanities"], "acronym": "META-SHARE"}, "http://www.loc.gov/METS/": {"title": "METS - Metadata Encoding and Transmission Standard", "id": "mets-metadata-encoding-and-transmission-standard.yml", "identifier": ["fuji:m11", "https://doi.org/10.25504/FAIRsharing.921056"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "METS"}, "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v1-2.xsd": {"title": "METS - Metadata Encoding and Transmission Standard", "id": "mets-metadata-encoding-and-transmission-standard.yml", "identifier": ["fuji:m11", "https://doi.org/10.25504/FAIRsharing.921056"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "METS"}, "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v2-1.xsd": {"title": "METS - Metadata Encoding and Transmission Standard", "id": "mets-metadata-encoding-and-transmission-standard.yml", "identifier": ["fuji:m11", "https://doi.org/10.25504/FAIRsharing.921056"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "METS"}, "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v2-0.xsd": {"title": "METS - Metadata Encoding and Transmission Standard", "id": "mets-metadata-encoding-and-transmission-standard.yml", "identifier": ["fuji:m11", "https://doi.org/10.25504/FAIRsharing.921056"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "METS"}, "https://www.loc.gov/standards/mets/mets-profiles.html": {"title": "METS - Metadata Encoding and Transmission Standard", "id": "mets-metadata-encoding-and-transmission-standard.yml", "identifier": ["fuji:m11", "https://doi.org/10.25504/FAIRsharing.921056"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "METS"}, "http://mibbi.sourceforge.net/foundry.shtml": {"title": "MIBBI (Minimum Information for Biological and Biomedical Investigations)", "id": "mibbi-minimum-information-biological-and-biomedical-investigations.yml", "identifier": ["msc:m23", "https://fairsharing.org/3518", "http://www.dcc.ac.uk/resources/metadata-standards/mibbi-minimum-information-biological-and-biomedical-investigations"], "subject_areas": ["Biochemistry", "Biology", "Biotechnology", "Cell biology", "Computer applications", "Environmental sciences", "Genetics", "Metabolism", "Proteins"], "field_of_science": ["genetics", "environmental sciences", "proteins", "biological sciences", "cell metabolism", "engineering and technology", "computer and information sciences", "cell biology", "biochemistry", "natural sciences"], "acronym": null}, "http://mibbi.sourceforge.net/portal.shtml": {"title": "MIBBI (Minimum Information for Biological and Biomedical Investigations)", "id": "mibbi-minimum-information-biological-and-biomedical-investigations.yml", "identifier": ["msc:m23", "https://fairsharing.org/3518", "http://www.dcc.ac.uk/resources/metadata-standards/mibbi-minimum-information-biological-and-biomedical-investigations"], "subject_areas": ["Biochemistry", "Biology", "Biotechnology", "Cell biology", "Computer applications", "Environmental sciences", "Genetics", "Metabolism", "Proteins"], "field_of_science": ["genetics", "environmental sciences", "proteins", "biological sciences", "cell metabolism", "engineering and technology", "computer and information sciences", "cell biology", "biochemistry", "natural sciences"], "acronym": null}, "http://www.english-heritage.org.uk/content/publications/publicationsNew/guidelines-standards/midas-heritage/midas-heritage-2012-v1_1.pdf": {"title": "MIDAS-Heritage", "id": "midas-heritage.yml", "identifier": ["msc:m24", "https://doi.org/10.25504/FAIRsharing.q0hgq", "http://www.dcc.ac.uk/resources/metadata-standards/midas-heritage"], "subject_areas": ["Archaeology", "Architecture", "Cultural heritage", "Cultural property preservation", "History"], "field_of_science": ["humanities", "archaeology", "history", "architectural design"], "acronym": "MIDAS"}, "https://historicengland.org.uk/images-books/publications/midas-heritage/": {"title": "MIDAS-Heritage", "id": "midas-heritage.yml", "identifier": ["msc:m24", "https://doi.org/10.25504/FAIRsharing.q0hgq", "http://www.dcc.ac.uk/resources/metadata-standards/midas-heritage"], "subject_areas": ["Archaeology", "Architecture", "Cultural heritage", "Cultural property preservation", "History"], "field_of_science": ["humanities", "archaeology", "history", "architectural design"], "acronym": "MIDAS"}, "http://www.english-heritage.org.uk/publications/midas-heritage/": {"title": "MIDAS-Heritage", "id": "midas-heritage.yml", "identifier": ["msc:m24", "https://doi.org/10.25504/FAIRsharing.q0hgq", "http://www.dcc.ac.uk/resources/metadata-standards/midas-heritage"], "subject_areas": ["Archaeology", "Architecture", "Cultural heritage", "Cultural property preservation", "History"], "field_of_science": ["humanities", "archaeology", "history", "architectural design"], "acronym": "MIDAS"}, "http://www.heritage-standards.org/midas/schema/1.0": {"title": "MIDAS-Heritage", "id": "midas-heritage.yml", "identifier": ["msc:m24", "https://doi.org/10.25504/FAIRsharing.q0hgq", "http://www.dcc.ac.uk/resources/metadata-standards/midas-heritage"], "subject_areas": ["Archaeology", "Architecture", "Cultural heritage", "Cultural property preservation", "History"], "field_of_science": ["humanities", "archaeology", "history", "architectural design"], "acronym": "MIDAS"}, "http://www.loc.gov/standards/mods/": {"title": "MODS (Metadata Object Description Schema)", "id": "mods-metadata-object-description-schema.yml", "identifier": ["msc:m97", "https://doi.org/10.25504/FAIRsharing.o67X7e"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "MODS"}, "http://www.loc.gov/mods/v3": {"title": "MODS (Metadata Object Description Schema)", "id": "mods-metadata-object-description-schema.yml", "identifier": ["msc:m97", "https://doi.org/10.25504/FAIRsharing.o67X7e"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "MODS"}, "http://www.loc.gov/mods/": {"title": "MODS (Metadata Object Description Schema)", "id": "mods-metadata-object-description-schema.yml", "identifier": ["msc:m97", "https://doi.org/10.25504/FAIRsharing.o67X7e"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "MODS"}, "http://www.loc.gov/standards/mods/v3/mods-3-3.xsd": {"title": "MODS (Metadata Object Description Schema)", "id": "mods-metadata-object-description-schema.yml", "identifier": ["msc:m97", "https://doi.org/10.25504/FAIRsharing.o67X7e"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "MODS"}, "http://www.loc.gov/standards/mods/mods-outline-3-4.html": {"title": "MODS (Metadata Object Description Schema)", "id": "mods-metadata-object-description-schema.yml", "identifier": ["msc:m97", "https://doi.org/10.25504/FAIRsharing.o67X7e"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "MODS"}, "http://www.loc.gov/standards/mods/v3/mods-3-4.xsd": {"title": "MODS (Metadata Object Description Schema)", "id": "mods-metadata-object-description-schema.yml", "identifier": ["msc:m97", "https://doi.org/10.25504/FAIRsharing.o67X7e"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "MODS"}, "http://www.loc.gov/standards/mods/mods-outline-3-5.html": {"title": "MODS (Metadata Object Description Schema)", "id": "mods-metadata-object-description-schema.yml", "identifier": ["msc:m97", "https://doi.org/10.25504/FAIRsharing.o67X7e"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "MODS"}, "http://www.loc.gov/standards/mods/v3/mods-3-5.xsd": {"title": "MODS (Metadata Object Description Schema)", "id": "mods-metadata-object-description-schema.yml", "identifier": ["msc:m97", "https://doi.org/10.25504/FAIRsharing.o67X7e"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "MODS"}, "http://www.loc.gov/standards/mods/mods-outline-3-6.html": {"title": "MODS (Metadata Object Description Schema)", "id": "mods-metadata-object-description-schema.yml", "identifier": ["msc:m97", "https://doi.org/10.25504/FAIRsharing.o67X7e"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "MODS"}, "http://www.loc.gov/standards/mods/v3/mods-3-6.xsd": {"title": "MODS (Metadata Object Description Schema)", "id": "mods-metadata-object-description-schema.yml", "identifier": ["msc:m97", "https://doi.org/10.25504/FAIRsharing.o67X7e"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "MODS"}, "http://www.loc.gov/standards/mods/mods-outline-3-7.html": {"title": "MODS (Metadata Object Description Schema)", "id": "mods-metadata-object-description-schema.yml", "identifier": ["msc:m97", "https://doi.org/10.25504/FAIRsharing.o67X7e"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "MODS"}, "http://www.loc.gov/standards/mods/v3/mods-3-7.xsd": {"title": "MODS (Metadata Object Description Schema)", "id": "mods-metadata-object-description-schema.yml", "identifier": ["msc:m97", "https://doi.org/10.25504/FAIRsharing.o67X7e"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "MODS"}, "http://museum.zib.de/museumdat/museumdat-v1.0.xsd": {"title": "museumdat", "id": "museumdat-schema.yml", "identifier": ["fuji:m31", "https://fairsharing.org/4671"], "subject_areas": ["Humanities", "Cultural heritage"], "field_of_science": ["humanities"], "acronym": "museumdat"}, "http://download.nexusformat.org/doc/html/ref_doc.html": {"title": "NeXus", "id": "nexus.yml", "identifier": ["msc:m25", "https://doi.org/10.25504/FAIRsharing.eq2pdx"], "subject_areas": ["Chemistry", "Crystallography", "Materials engineering"], "field_of_science": ["crystallography", "engineering and technology", "materials engineering", "chemical sciences", "natural sciences"], "acronym": null}, "http://www.nexusformat.org/": {"title": "NeXus", "id": "nexus.yml", "identifier": ["msc:m25", "https://doi.org/10.25504/FAIRsharing.eq2pdx"], "subject_areas": ["Chemistry", "Crystallography", "Materials engineering"], "field_of_science": ["crystallography", "engineering and technology", "materials engineering", "chemical sciences", "natural sciences"], "acronym": null}, "http://www.nexml.org/2009": {"title": "NeXML", "id": "nexml.yml", "identifier": ["fuji:m45", "https://doi.org/10.25504/FAIRsharing.knrb06"], "subject_areas": ["Biology"], "field_of_science": ["biological sciences", "natural sciences"], "acronym": null}, "http://www.nexml.org/2009 ../xsd/nexml.xsd": {"title": "NeXML", "id": "nexml.yml", "identifier": ["fuji:m45", "https://doi.org/10.25504/FAIRsharing.knrb06"], "subject_areas": ["Biology"], "field_of_science": ["biological sciences", "natural sciences"], "acronym": null}, "https://resources.bepress.com/OAI/2.0/qualified-dublin-core/": {"title": "Open Archive Initiative Dublin Core (OAI DC)", "id": "oai-dublin-core-schema.yml", "identifier": ["fuji:m44", "https://doi.org/10.25504/FAIRsharing.0417cf"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "oai_dc"}, "http://www.openarchives.org/OAI/2.0/oai_dc.xsd": {"title": "Open Archive Initiative Dublin Core (OAI DC)", "id": "oai-dublin-core-schema.yml", "identifier": ["fuji:m44", "https://doi.org/10.25504/FAIRsharing.0417cf"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "oai_dc"}, "http://www.openarchives.org/OAI/2.0/oai_dc/": {"title": "Open Archive Initiative Dublin Core (OAI DC)", "id": "oai-dublin-core-schema.yml", "identifier": ["fuji:m44", "https://doi.org/10.25504/FAIRsharing.0417cf"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "oai_dc"}, "http://www.openarchives.org/OAI/2.0/oai_dc": {"title": "Open Archive Initiative Dublin Core (OAI DC)", "id": "oai-dublin-core-schema.yml", "identifier": ["fuji:m44", "https://doi.org/10.25504/FAIRsharing.0417cf"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "oai_dc"}, "http://www.openarchives.org/ore/": {"title": "OAI-ORE (Open Archives Initiative Object Reuse and Exchange)", "id": "oai-ore-open-archives-initiative-object-reuse-and-exchange.yml", "identifier": ["msc:m26", "https://doi.org/10.25504/FAIRsharing.3mtaee", "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"], "subject_areas": ["Anthropology", "History", "Multidisciplinary"], "field_of_science": ["history", "anthropology", "humanities", "sciences", "social sciences"], "acronym": "OAI-ORE"}, "http://www.openarchives.org/ore/toc": {"title": "OAI-ORE (Open Archives Initiative Object Reuse and Exchange)", "id": "oai-ore-open-archives-initiative-object-reuse-and-exchange.yml", "identifier": ["msc:m26", "https://doi.org/10.25504/FAIRsharing.3mtaee", "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"], "subject_areas": ["Anthropology", "History", "Multidisciplinary"], "field_of_science": ["history", "anthropology", "humanities", "sciences", "social sciences"], "acronym": "OAI-ORE"}, "http://www.openarchives.org/ore/terms/": {"title": "OAI-ORE (Open Archives Initiative Object Reuse and Exchange)", "id": "oai-ore-open-archives-initiative-object-reuse-and-exchange.yml", "identifier": ["msc:m26", "https://doi.org/10.25504/FAIRsharing.3mtaee", "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"], "subject_areas": ["Anthropology", "History", "Multidisciplinary"], "field_of_science": ["history", "anthropology", "humanities", "sciences", "social sciences"], "acronym": "OAI-ORE"}, "http://www.openarchives.org/OAI/2.0/rdf.xsd": {"title": "OAI-RDF Schema", "id": "oai-rdf-schema.yml", "identifier": ["fuji:m38"], "subject_areas": null, "field_of_science": [], "acronym": "oai-rdf"}, "http://www.openarchives.org/OAI/2.0/rdf/": {"title": "OAI-RDF Schema", "id": "oai-rdf-schema.yml", "identifier": ["fuji:m38"], "subject_areas": null, "field_of_science": [], "acronym": "oai-rdf"}, "https://api.aiscr.cz/schema/oai_rdf/": {"title": "OAI-RDF Schema", "id": "oai-rdf-schema.yml", "identifier": ["fuji:m38"], "subject_areas": null, "field_of_science": [], "acronym": "oai-rdf"}, "http://www.molgenis.org/wiki/ObservStart": {"title": "Observ-OM", "id": "observ-om.yml", "identifier": ["msc:m27", "https://fairsharing.org/4682", "http://www.dcc.ac.uk/resources/metadata-standards/observ-om"], "subject_areas": ["Biology"], "field_of_science": ["biological sciences", "natural sciences"], "acronym": null}, "http://portal.opengeospatial.org/files/?artifact_id=41579": {"title": "Observations and Measurements", "id": "observations-and-measurements.yml", "identifier": ["msc:m28", "https://doi.org/10.25504/FAIRsharing.4ehmy9", "http://www.dcc.ac.uk/resources/metadata-standards/observations-and-measurements"], "subject_areas": ["Chemistry", "Geology", "Meteorology", "Remote sensing"], "field_of_science": ["engineering and technology", "chemical sciences", "remote sensing", "meteorology", "natural sciences", "geology"], "acronym": null}, "http://www.opengeospatial.org/standards/om": {"title": "Observations and Measurements", "id": "observations-and-measurements.yml", "identifier": ["msc:m28", "https://doi.org/10.25504/FAIRsharing.4ehmy9", "http://www.dcc.ac.uk/resources/metadata-standards/observations-and-measurements"], "subject_areas": ["Chemistry", "Geology", "Meteorology", "Remote sensing"], "field_of_science": ["engineering and technology", "chemical sciences", "remote sensing", "meteorology", "natural sciences", "geology"], "acronym": null}, "http://schemas.opengis.net/om/2.0/": {"title": "Observations and Measurements", "id": "observations-and-measurements.yml", "identifier": ["msc:m28", "https://doi.org/10.25504/FAIRsharing.4ehmy9", "http://www.dcc.ac.uk/resources/metadata-standards/observations-and-measurements"], "subject_areas": ["Chemistry", "Geology", "Meteorology", "Remote sensing"], "field_of_science": ["engineering and technology", "chemical sciences", "remote sensing", "meteorology", "natural sciences", "geology"], "acronym": null}, "https://schemas.opengis.net/om/2.0/observation.xsd": {"title": "Observations and Measurements", "id": "observations-and-measurements.yml", "identifier": ["msc:m28", "https://doi.org/10.25504/FAIRsharing.4ehmy9", "http://www.dcc.ac.uk/resources/metadata-standards/observations-and-measurements"], "subject_areas": ["Chemistry", "Geology", "Meteorology", "Remote sensing"], "field_of_science": ["engineering and technology", "chemical sciences", "remote sensing", "meteorology", "natural sciences", "geology"], "acronym": null}, "https://schemas.opengis.net/om/1.0.0/observation.xsd": {"title": "Observations and Measurements", "id": "observations-and-measurements.yml", "identifier": ["msc:m28", "https://doi.org/10.25504/FAIRsharing.4ehmy9", "http://www.dcc.ac.uk/resources/metadata-standards/observations-and-measurements"], "subject_areas": ["Chemistry", "Geology", "Meteorology", "Remote sensing"], "field_of_science": ["engineering and technology", "chemical sciences", "remote sensing", "meteorology", "natural sciences", "geology"], "acronym": null}, "http://www.opengis.net/om/1.0": {"title": "Observations and Measurements", "id": "observations-and-measurements.yml", "identifier": ["msc:m28", "https://doi.org/10.25504/FAIRsharing.4ehmy9", "http://www.dcc.ac.uk/resources/metadata-standards/observations-and-measurements"], "subject_areas": ["Chemistry", "Geology", "Meteorology", "Remote sensing"], "field_of_science": ["engineering and technology", "chemical sciences", "remote sensing", "meteorology", "natural sciences", "geology"], "acronym": null}, "https://inrae.github.io/ODAM/data-preparation/url": {"title": "ODAM Structural Metadata", "id": "odam-datapackage.yml", "identifier": ["10.25504/FAIRsharing.ld9wne"], "subject_areas": ["biochemistry", "molecular-biology", "metabolic-biochemistry", "biomaterials", "bioengineering"], "field_of_science": [], "acronym": null}, "http://www.language-archives.org/OLAC/1.1/": {"title": "OLAC metadata", "id": "olac-metadata.yml", "identifier": ["fuji:m14", "https://doi.org/10.25504/FAIRsharing.17fbae"], "subject_areas": ["Humanities", "Linguistics"], "field_of_science": ["linguistics", "humanities"], "acronym": "OLAC"}, "http://www.language-archives.org/OLAC/1.1/olac.xsd": {"title": "OLAC metadata", "id": "olac-metadata.yml", "identifier": ["fuji:m14", "https://doi.org/10.25504/FAIRsharing.17fbae"], "subject_areas": ["Humanities", "Linguistics"], "field_of_science": ["linguistics", "humanities"], "acronym": "OLAC"}, "http://www.openmicroscopy.org/site/support/file-formats/ome-tiff": {"title": "OME-TIFF (Open Microscopy Environment TIFF)", "id": "ome-tiff-open-microscopy-environment-tiff.yml", "identifier": ["msc:m73", "https://doi.org/10.25504/FAIRsharing.cq8tg2"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/site/support/file-formats": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2016-06": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2015-01": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2013-06": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2012-06": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2011-06": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2010-04": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2010-06": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2009-09": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2008-09": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2008-02": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2007-06": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2016-06/ome.xsd": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2015-01/ome.xsd": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2013-06/index.html": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2012-06/index.html": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2011-06/index.html": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2010-04/index.html": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2010-06/index.html": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2009-09/index.html": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2008-09/index.html": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2008-02/index.html": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "http://www.openmicroscopy.org/Schemas/OME/2007-06/index.html": {"title": "OME-XML (Open Microscopy Environment XML)", "id": "ome-xml-open-microscopy-environment-xml.yml", "identifier": ["msc:m29", "https://doi.org/10.25504/FAIRsharing.zk8p4g", "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml"], "subject_areas": ["Animal diseases", "Cell biology", "Physiology", "Plant diseases", "Plant physiology", "Zoology"], "field_of_science": ["zoology", "medical and health sciences", "plant protection", "agricultural sciences", "botany", "cell biology", "physiology", "veterinary sciences", "natural sciences"], "acronym": null}, "https://www.editeur.org/files/ONIX%203/APPNOTE%20Describing%20e-books%20in%20ONIX.pdf": {"title": "ONIX for Books Product Information Message", "id": "onix-metadata-schema.yml", "identifier": ["fuji:m42", "https://fairsharing.org/4683"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "onix"}, "http://www.editeur.org/onix/2.1/short": {"title": "ONIX for Books Product Information Message", "id": "onix-metadata-schema.yml", "identifier": ["fuji:m42", "https://fairsharing.org/4683"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "onix"}, "http://www.editeur.org/onix/2.1/short/ONIX_BookProduct_Release2.1_short": {"title": "ONIX for Books Product Information Message", "id": "onix-metadata-schema.yml", "identifier": ["fuji:m42", "https://fairsharing.org/4683"], "subject_areas": ["Bibliographic standards", "Information/library standards"], "field_of_science": ["library sciences", "humanities"], "acronym": "onix"}, "https://guidelines.openaire.eu/": {"title": "OpenAIRE Guidelines", "id": "openaire-guidelines.yml", "identifier": ["msc:m92", "https://doi.org/10.25504/FAIRsharing.123197"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "OpenAIRE_G"}, "https://www.openaire.eu/schema/repo-lit/4.0/openaire.xsd": {"title": "OpenAIRE Guidelines", "id": "openaire-guidelines.yml", "identifier": ["msc:m92", "https://doi.org/10.25504/FAIRsharing.123197"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "OpenAIRE_G"}, "http://namespace.openaire.eu/schema/oaire/": {"title": "OpenAIRE Guidelines", "id": "openaire-guidelines.yml", "identifier": ["msc:m92", "https://doi.org/10.25504/FAIRsharing.123197"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "OpenAIRE_G"}, "oai_openaire": {"title": "OpenAIRE Guidelines", "id": "openaire-guidelines.yml", "identifier": ["msc:m92", "https://doi.org/10.25504/FAIRsharing.123197"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "OpenAIRE_G"}, "https://openaire.eu": {"title": "OpenAIRE Guidelines", "id": "openaire-guidelines.yml", "identifier": ["msc:m92", "https://doi.org/10.25504/FAIRsharing.123197"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "OpenAIRE_G"}, "http://namespace.openaire.eu/oaf": {"title": "OpenAIRE Research Graph", "id": "openaire-research-graph.yml", "identifier": ["fuji:m20", "https://fairsharing.org/4684"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "OpenAIRE_RG"}, "https://www.openaire.eu/schema/latest/doc/oaf.html": {"title": "OpenAIRE Research Graph", "id": "openaire-research-graph.yml", "identifier": ["fuji:m20", "https://fairsharing.org/4684"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "OpenAIRE_RG"}, "https://www.openaire.eu/schema/1.0/oaf-1.0.xsd": {"title": "OpenAIRE Research Graph", "id": "openaire-research-graph.yml", "identifier": ["fuji:m20", "https://fairsharing.org/4684"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "OpenAIRE_RG"}, "http://a9.com/-/spec/opensearch/1.1/": {"title": "OpenSearch", "id": "opensearch.yml", "identifier": ["fuji:m2", "https://fairsharing.org/4685"], "subject_areas": null, "field_of_science": [], "acronym": null}, "info:ofi/fmt:xml:xsd:ctx": {"title": "The OpenURL ContextObject Format", "id": "openurl-contextobject.yml", "identifier": ["fuji:m7", "https://fairsharing.org/4686"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "CTX"}, "info:ofi/fmt:kev:mtx:ctx": {"title": "The OpenURL ContextObject Format", "id": "openurl-contextobject.yml", "identifier": ["fuji:m7", "https://fairsharing.org/4686"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "CTX"}, "https://groups.niso.org/apps/group_public/download.php/14833/z39_88_2004_r2010.pdf": {"title": "The OpenURL ContextObject Format", "id": "openurl-contextobject.yml", "identifier": ["fuji:m7", "https://fairsharing.org/4686"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "CTX"}, "http://mmcif.wwpdb.org/dictionaries/mmcif_pdbx_v40.dic/Index/": {"title": "PDBx/mmCIF (Protein Data Bank Exchange Dictionary and the Macromolecular Crystallographic Information Framework)", "id": "pdbx-mmcif.yml", "identifier": ["msc:m30", "https://doi.org/10.25504/FAIRsharing.fd28en"], "subject_areas": ["Biology", "Chemistry", "Computer applications", "Crystallography", "Molecular biology", "Physics"], "field_of_science": ["natural sciences", "physical sciences", "crystallography", "biological sciences", "molecular biology", "chemical sciences", "computer and information sciences"], "acronym": null}, "http://mmcif.wwpdb.org/": {"title": "PDBx/mmCIF (Protein Data Bank Exchange Dictionary and the Macromolecular Crystallographic Information Framework)", "id": "pdbx-mmcif.yml", "identifier": ["msc:m30", "https://doi.org/10.25504/FAIRsharing.fd28en"], "subject_areas": ["Biology", "Chemistry", "Computer applications", "Crystallography", "Molecular biology", "Physics"], "field_of_science": ["natural sciences", "physical sciences", "crystallography", "biological sciences", "molecular biology", "chemical sciences", "computer and information sciences"], "acronym": null}, "info:srw/schema/5/picaXML-v1.0": {"title": "OCLC PICA XML", "id": "pica-metadata-schema.yml", "identifier": ["fuji:m37", "https://fairsharing.org/4688"], "subject_areas": null, "field_of_science": [], "acronym": "pica"}, "http://www.oclcpica.org/xmlns/ppxml-1.0": {"title": "OCLC PICA XML", "id": "pica-metadata-schema.yml", "identifier": ["fuji:m37", "https://fairsharing.org/4688"], "subject_areas": null, "field_of_science": [], "acronym": "pica"}, "http://www.oclcpica.org/xml/picaplus.xsd": {"title": "OCLC PICA XML", "id": "pica-metadata-schema.yml", "identifier": ["fuji:m37", "https://fairsharing.org/4688"], "subject_areas": null, "field_of_science": [], "acronym": "pica"}, "http://www.loc.gov/standards/premis/v3/premis-3-0-final.pdf": {"title": "PREMIS", "id": "premis.yml", "identifier": ["msc:m31", "https://doi.org/10.25504/FAIRsharing.27a0f4"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "premis"}, "http://www.loc.gov/standards/premis/": {"title": "PREMIS", "id": "premis.yml", "identifier": ["msc:m31", "https://doi.org/10.25504/FAIRsharing.27a0f4"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "premis"}, "http://www.loc.gov/standards/premis": {"title": "PREMIS", "id": "premis.yml", "identifier": ["msc:m31", "https://doi.org/10.25504/FAIRsharing.27a0f4"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "premis"}, "https://www.loc.gov/standards/premis/v3/premis-v3-0.xsd": {"title": "PREMIS", "id": "premis.yml", "identifier": ["msc:m31", "https://doi.org/10.25504/FAIRsharing.27a0f4"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "premis"}, "http://www.loc.gov/premis/v3": {"title": "PREMIS", "id": "premis.yml", "identifier": ["msc:m31", "https://doi.org/10.25504/FAIRsharing.27a0f4"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "premis"}, "https://www.loc.gov/standards/premis/v2/premis-v2-2.xsd": {"title": "PREMIS", "id": "premis.yml", "identifier": ["msc:m31", "https://doi.org/10.25504/FAIRsharing.27a0f4"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "premis"}, "info:lc/xmlns/premis-v2": {"title": "PREMIS", "id": "premis.yml", "identifier": ["msc:m31", "https://doi.org/10.25504/FAIRsharing.27a0f4"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "premis"}, "https://www.loc.gov/standards/premis/v2/premis-v2-3.xsd": {"title": "PREMIS", "id": "premis.yml", "identifier": ["msc:m31", "https://doi.org/10.25504/FAIRsharing.27a0f4"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "premis"}, "https://www.loc.gov/standards/premis/v1/PREMIS-v1-1.xsd": {"title": "PREMIS", "id": "premis.yml", "identifier": ["msc:m31", "https://doi.org/10.25504/FAIRsharing.27a0f4"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "premis"}, "http://www.loc.gov/standards/premis/v1": {"title": "PREMIS", "id": "premis.yml", "identifier": ["msc:m31", "https://doi.org/10.25504/FAIRsharing.27a0f4"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "premis"}, "https://www.w3.org/Submission/prism": {"title": "PRISM Publishing Requirements for Industry Standard Metadata", "id": "prism-publishing-industry-standard-metadata.yml", "identifier": ["fuji:m27", "https://fairsharing.org/4689"], "subject_areas": null, "field_of_science": [], "acronym": "PRISM"}, "http://prismstandard.org/namespaces/pam/0.0/": {"title": "PRISM Publishing Requirements for Industry Standard Metadata", "id": "prism-publishing-industry-standard-metadata.yml", "identifier": ["fuji:m27", "https://fairsharing.org/4689"], "subject_areas": null, "field_of_science": [], "acronym": "PRISM"}, "http://prismstandard.org/namespaces/pam/1.2/": {"title": "PRISM Publishing Requirements for Industry Standard Metadata", "id": "prism-publishing-industry-standard-metadata.yml", "identifier": ["fuji:m27", "https://fairsharing.org/4689"], "subject_areas": null, "field_of_science": [], "acronym": "PRISM"}, "http://prismstandard.org/namespaces/pam/2.0/": {"title": "PRISM Publishing Requirements for Industry Standard Metadata", "id": "prism-publishing-industry-standard-metadata.yml", "identifier": ["fuji:m27", "https://fairsharing.org/4689"], "subject_areas": null, "field_of_science": [], "acronym": "PRISM"}, "http://prismstandard.org/namespaces/pam/2.1/": {"title": "PRISM Publishing Requirements for Industry Standard Metadata", "id": "prism-publishing-industry-standard-metadata.yml", "identifier": ["fuji:m27", "https://fairsharing.org/4689"], "subject_areas": null, "field_of_science": [], "acronym": "PRISM"}, "http://prismstandard.org/namespaces/pam/3.0/": {"title": "PRISM Publishing Requirements for Industry Standard Metadata", "id": "prism-publishing-industry-standard-metadata.yml", "identifier": ["fuji:m27", "https://fairsharing.org/4689"], "subject_areas": null, "field_of_science": [], "acronym": "PRISM"}, "http://prismstandard.org/namespaces/basic/1.2/": {"title": "PRISM Publishing Requirements for Industry Standard Metadata", "id": "prism-publishing-industry-standard-metadata.yml", "identifier": ["fuji:m27", "https://fairsharing.org/4689"], "subject_areas": null, "field_of_science": [], "acronym": "PRISM"}, "http://prismstandard.org/namespaces/basic/2.0/": {"title": "PRISM Publishing Requirements for Industry Standard Metadata", "id": "prism-publishing-industry-standard-metadata.yml", "identifier": ["fuji:m27", "https://fairsharing.org/4689"], "subject_areas": null, "field_of_science": [], "acronym": "PRISM"}, "http://prismstandard.org/namespaces/basic/1.0/": {"title": "PRISM Publishing Requirements for Industry Standard Metadata", "id": "prism-publishing-industry-standard-metadata.yml", "identifier": ["fuji:m27", "https://fairsharing.org/4689"], "subject_areas": null, "field_of_science": [], "acronym": "PRISM"}, "http://prismstandard.org/namespaces/basic/2.1/": {"title": "PRISM Publishing Requirements for Industry Standard Metadata", "id": "prism-publishing-industry-standard-metadata.yml", "identifier": ["fuji:m27", "https://fairsharing.org/4689"], "subject_areas": null, "field_of_science": [], "acronym": "PRISM"}, "http://prismstandard.org/namespaces/basic/3.0/": {"title": "PRISM Publishing Requirements for Industry Standard Metadata", "id": "prism-publishing-industry-standard-metadata.yml", "identifier": ["fuji:m27", "https://fairsharing.org/4689"], "subject_areas": null, "field_of_science": [], "acronym": "PRISM"}, "http://prismstandard.org/namespaces/pim/1.2/": {"title": "PRISM Publishing Requirements for Industry Standard Metadata", "id": "prism-publishing-industry-standard-metadata.yml", "identifier": ["fuji:m27", "https://fairsharing.org/4689"], "subject_areas": null, "field_of_science": [], "acronym": "PRISM"}, "http://prsinfo.clinicaltrials.gov/definitions.html": {"title": "Protocol Data Element Definitions", "id": "protocol-data-element-definitions.yml", "identifier": ["msc:m32", "http://www.dcc.ac.uk/resources/metadata-standards/protocol-data-element-definitions", "https://doi.org/10.25504/FAIRsharing.7e962d"], "subject_areas": ["Clinical medicine"], "field_of_science": ["medical and health sciences", "clinical medicine"], "acronym": null}, "http://clinicaltrials.gov/ct2/manage-recs/resources": {"title": "Protocol Data Element Definitions", "id": "protocol-data-element-definitions.yml", "identifier": ["msc:m32", "http://www.dcc.ac.uk/resources/metadata-standards/protocol-data-element-definitions", "https://doi.org/10.25504/FAIRsharing.7e962d"], "subject_areas": ["Clinical medicine"], "field_of_science": ["medical and health sciences", "clinical medicine"], "acronym": null}, "https://prsinfo.clinicaltrials.gov/ProtocolRecordSchema.xsd": {"title": "Protocol Data Element Definitions", "id": "protocol-data-element-definitions.yml", "identifier": ["msc:m32", "http://www.dcc.ac.uk/resources/metadata-standards/protocol-data-element-definitions", "https://doi.org/10.25504/FAIRsharing.7e962d"], "subject_areas": ["Clinical medicine"], "field_of_science": ["medical and health sciences", "clinical medicine"], "acronym": null}, "http://clinicaltrials.gov/prs": {"title": "Protocol Data Element Definitions", "id": "protocol-data-element-definitions.yml", "identifier": ["msc:m32", "http://www.dcc.ac.uk/resources/metadata-standards/protocol-data-element-definitions", "https://doi.org/10.25504/FAIRsharing.7e962d"], "subject_areas": ["Clinical medicine"], "field_of_science": ["medical and health sciences", "clinical medicine"], "acronym": null}, "https://prsinfo.clinicaltrials.gov/RRSUploadSchema.xsd": {"title": "Protocol Data Element Definitions", "id": "protocol-data-element-definitions.yml", "identifier": ["msc:m32", "http://www.dcc.ac.uk/resources/metadata-standards/protocol-data-element-definitions", "https://doi.org/10.25504/FAIRsharing.7e962d"], "subject_areas": ["Clinical medicine"], "field_of_science": ["medical and health sciences", "clinical medicine"], "acronym": null}, "http://clinicaltrials.gov/rrs": {"title": "Protocol Data Element Definitions", "id": "protocol-data-element-definitions.yml", "identifier": ["msc:m32", "http://www.dcc.ac.uk/resources/metadata-standards/protocol-data-element-definitions", "https://doi.org/10.25504/FAIRsharing.7e962d"], "subject_areas": ["Clinical medicine"], "field_of_science": ["medical and health sciences", "clinical medicine"], "acronym": null}, "http://www.w3.org/TR/prov-overview/": {"title": "PROV", "id": "prov.yml", "identifier": ["msc:m33", "http://www.dcc.ac.uk/resources/metadata-standards/prov", "https://doi.org/10.25504/FAIRsharing.fe7cda"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "http://www.w3.org/2001/sw/wiki/PROV": {"title": "PROV", "id": "prov.yml", "identifier": ["msc:m33", "http://www.dcc.ac.uk/resources/metadata-standards/prov", "https://doi.org/10.25504/FAIRsharing.fe7cda"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "http://www.w3.org/ns/prov.xsd": {"title": "PROV", "id": "prov.yml", "identifier": ["msc:m33", "http://www.dcc.ac.uk/resources/metadata-standards/prov", "https://doi.org/10.25504/FAIRsharing.fe7cda"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "http://www.w3.org/ns/prov#": {"title": "PROV", "id": "prov.yml", "identifier": ["msc:m33", "http://www.dcc.ac.uk/resources/metadata-standards/prov", "https://doi.org/10.25504/FAIRsharing.fe7cda"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "http://quakeml.org/xmlns/quakeml/2.0": {"title": "QuakeML", "id": "quakeml.yml", "identifier": ["fuji:m9", "https://fairsharing.org/1444"], "subject_areas": ["Earth sciences", "Geophysics"], "field_of_science": ["earth and related environmental sciences", "natural sciences", "geophysics"], "acronym": "QuakeML"}, "http://quakeml.org/xmlns/quakeml/1.2": {"title": "QuakeML", "id": "quakeml.yml", "identifier": ["fuji:m9", "https://fairsharing.org/1444"], "subject_areas": ["Earth sciences", "Geophysics"], "field_of_science": ["earth and related environmental sciences", "natural sciences", "geophysics"], "acronym": "QuakeML"}, "http://quakeml.org/xmlns/quakeml/1.1": {"title": "QuakeML", "id": "quakeml.yml", "identifier": ["fuji:m9", "https://fairsharing.org/1444"], "subject_areas": ["Earth sciences", "Geophysics"], "field_of_science": ["earth and related environmental sciences", "natural sciences", "geophysics"], "acronym": "QuakeML"}, "http://quakeml.org/xmlns/quakeml/1.0.1": {"title": "QuakeML", "id": "quakeml.yml", "identifier": ["fuji:m9", "https://fairsharing.org/1444"], "subject_areas": ["Earth sciences", "Geophysics"], "field_of_science": ["earth and related environmental sciences", "natural sciences", "geophysics"], "acronym": "QuakeML"}, "http://quakeml.org/xmlns/quakeml/1.0": {"title": "QuakeML", "id": "quakeml.yml", "identifier": ["fuji:m9", "https://fairsharing.org/1444"], "subject_areas": ["Earth sciences", "Geophysics"], "field_of_science": ["earth and related environmental sciences", "natural sciences", "geophysics"], "acronym": "QuakeML"}, "https://quake.ethz.ch/quakeml": {"title": "QuakeML", "id": "quakeml.yml", "identifier": ["fuji:m9", "https://fairsharing.org/1444"], "subject_areas": ["Earth sciences", "Geophysics"], "field_of_science": ["earth and related environmental sciences", "natural sciences", "geophysics"], "acronym": "QuakeML"}, "http://www.quakeml.org/": {"title": "QuakeML", "id": "quakeml.yml", "identifier": ["fuji:m9", "https://fairsharing.org/1444"], "subject_areas": ["Earth sciences", "Geophysics"], "field_of_science": ["earth and related environmental sciences", "natural sciences", "geophysics"], "acronym": "QuakeML"}, "http://data-archive.ac.uk/create-manage/projects/qudex?index=1": {"title": "QuDEx (Qualitative Data Exchange Format)", "id": "qudex-qualitative-data-exchange-format.yml", "identifier": ["msc:m34", "http://www.dcc.ac.uk/resources/metadata-standards/qudex-qualitative-data-exchange-format", "https://doi.org/10.25504/FAIRsharing.d42cb9"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "http://www.data-archive.ac.uk/create-manage/projects/qudex?index=1": {"title": "QuDEx (Qualitative Data Exchange Format)", "id": "qudex-qualitative-data-exchange-format.yml", "identifier": ["msc:m34", "http://www.dcc.ac.uk/resources/metadata-standards/qudex-qualitative-data-exchange-format", "https://doi.org/10.25504/FAIRsharing.d42cb9"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "https://dam.data-archive.ac.uk/standards/qudex_v03_01.xsd": {"title": "QuDEx (Qualitative Data Exchange Format)", "id": "qudex-qualitative-data-exchange-format.yml", "identifier": ["msc:m34", "http://www.dcc.ac.uk/resources/metadata-standards/qudex-qualitative-data-exchange-format", "https://doi.org/10.25504/FAIRsharing.d42cb9"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "http://www.data-archive.ac.uk/dext/schema/draft": {"title": "QuDEx (Qualitative Data Exchange Format)", "id": "qudex-qualitative-data-exchange-format.yml", "identifier": ["msc:m34", "http://www.dcc.ac.uk/resources/metadata-standards/qudex-qualitative-data-exchange-format", "https://doi.org/10.25504/FAIRsharing.d42cb9"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "http://www.w3.org/TR/vocab-data-cube/": {"title": "RDF Data Cube Vocabulary", "id": "rdf-data-cube-vocabulary.yml", "identifier": ["msc:m35", "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary", "https://doi.org/10.25504/FAIRsharing.c3b573"], "subject_areas": ["Statistics"], "field_of_science": ["statistics and probability", "natural sciences"], "acronym": null}, "http://purl.org/linked-data/cube#": {"title": "RDF Data Cube Vocabulary", "id": "rdf-data-cube-vocabulary.yml", "identifier": ["msc:m35", "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary", "https://doi.org/10.25504/FAIRsharing.c3b573"], "subject_areas": ["Statistics"], "field_of_science": ["statistics and probability", "natural sciences"], "acronym": null}, "http://www.ivoa.net/documents/latest/RM.html": {"title": "Resource Metadata for the Virtual Observatory", "id": "resource-metadata-virtual-observatory.yml", "identifier": ["msc:m74", "https://doi.org/10.25504/FAIRsharing.qSULus"], "subject_areas": ["Astronomy"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://www.ands.org.au/online-services/rif-cs-schema": {"title": "RIF-CS (Registry Interchange Format \u00e2\u20ac\u201c Collections and Services)", "id": "rif-cs-registry-interchange-format-collections-and-services.yml", "identifier": ["msc:m98", "https://doi.org/10.25504/FAIRsharing.reybx2"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "RIF-CS"}, "http://services.ands.org.au/documentation/rifcs/schemadocs/registryObjects.html": {"title": "RIF-CS (Registry Interchange Format \u00e2\u20ac\u201c Collections and Services)", "id": "rif-cs-registry-interchange-format-collections-and-services.yml", "identifier": ["msc:m98", "https://doi.org/10.25504/FAIRsharing.reybx2"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "RIF-CS"}, "http://services.ands.org.au/documentation/rifcs/schema/registryObjects.xsd": {"title": "RIF-CS (Registry Interchange Format \u00e2\u20ac\u201c Collections and Services)", "id": "rif-cs-registry-interchange-format-collections-and-services.yml", "identifier": ["msc:m98", "https://doi.org/10.25504/FAIRsharing.reybx2"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "RIF-CS"}, "http://ands.org.au/standards/rif-cs/registryObjects": {"title": "RIF-CS (Registry Interchange Format \u00e2\u20ac\u201c Collections and Services)", "id": "rif-cs-registry-interchange-format-collections-and-services.yml", "identifier": ["msc:m98", "https://doi.org/10.25504/FAIRsharing.reybx2"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "RIF-CS"}, "https://ands.org.au/standards/rif-cs/registryObjects": {"title": "RIF-CS (Registry Interchange Format \u00e2\u20ac\u201c Collections and Services)", "id": "rif-cs-registry-interchange-format-collections-and-services.yml", "identifier": ["msc:m98", "https://doi.org/10.25504/FAIRsharing.reybx2"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "RIF-CS"}, "http://www.rioxx.net/schema/v2.0/rioxx/": {"title": "RIOXX Metadata Application Profile", "id": "rioxx-metadata-application-profile.yml", "identifier": ["fuji:m5", "https://fairsharing.org/4690"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "rioxx"}, "https://www.rioxx.net/": {"title": "RIOXX Metadata Application Profile", "id": "rioxx-metadata-application-profile.yml", "identifier": ["fuji:m5", "https://fairsharing.org/4690"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "rioxx"}, "https://www.rioxx.net/schema/v2.0/rioxxterms/": {"title": "RIOXX Metadata Application Profile", "id": "rioxx-metadata-application-profile.yml", "identifier": ["fuji:m5", "https://fairsharing.org/4690"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "rioxx"}, "http://docs.rioxx.net/schema/v1.0/": {"title": "RIOXX Metadata Application Profile", "id": "rioxx-metadata-application-profile.yml", "identifier": ["fuji:m5", "https://fairsharing.org/4690"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "rioxx"}, "https://w3id.org/ro/crate/1.1": {"title": "RO-Crate", "id": "ro-crate.yml", "identifier": ["https://doi.org/10.25504/FAIRsharing.wUoZKE", "msc:m102"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "https://w3id.org/ro/crate": {"title": "RO-Crate", "id": "ro-crate.yml", "identifier": ["https://doi.org/10.25504/FAIRsharing.wUoZKE", "msc:m102"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "https://w3id.org/ro/crate/1.1/context": {"title": "RO-Crate", "id": "ro-crate.yml", "identifier": ["https://doi.org/10.25504/FAIRsharing.wUoZKE", "msc:m102"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "https://w3id.org/ro/crate/1.0/context": {"title": "RO-Crate", "id": "ro-crate.yml", "identifier": ["https://doi.org/10.25504/FAIRsharing.wUoZKE", "msc:m102"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "https://w3id.org/ro/crate/0.2/context": {"title": "RO-Crate", "id": "ro-crate.yml", "identifier": ["https://doi.org/10.25504/FAIRsharing.wUoZKE", "msc:m102"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "https://schema.org": {"title": "Schema.org", "id": "schemaorg.yml", "identifier": ["https://doi.org/10.25504/FAIRsharing.hzdzq8", "msc:m101"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "schemaorg"}, "http://schema.org": {"title": "Schema.org", "id": "schemaorg.yml", "identifier": ["https://doi.org/10.25504/FAIRsharing.hzdzq8", "msc:m101"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "schemaorg"}, "https://schema.org/docs/documents.html": {"title": "Schema.org", "id": "schemaorg.yml", "identifier": ["https://doi.org/10.25504/FAIRsharing.hzdzq8", "msc:m101"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": "schemaorg"}, "http://www.scholix.org/schema": {"title": null, "id": "scholix-metadata-schema.yml", "identifier": ["fuji:m28", "https://doi.org/10.25504/FAIRsharing.B0d5Kn"], "subject_areas": null, "field_of_science": [], "acronym": "scholix"}, "http://www.scholix.org": {"title": null, "id": "scholix-metadata-schema.yml", "identifier": ["fuji:m28", "https://doi.org/10.25504/FAIRsharing.B0d5Kn"], "subject_areas": null, "field_of_science": [], "acronym": "scholix"}, "https://github.com/scholix/schema/blob/master/xsd/v3/schema.xsd": {"title": null, "id": "scholix-metadata-schema.yml", "identifier": ["fuji:m28", "https://doi.org/10.25504/FAIRsharing.B0d5Kn"], "subject_areas": null, "field_of_science": [], "acronym": "scholix"}, "https://github.com/scholix/schema/blob/master/xsd/v1/scholix.xsd": {"title": null, "id": "scholix-metadata-schema.yml", "identifier": ["fuji:m28", "https://doi.org/10.25504/FAIRsharing.B0d5Kn"], "subject_areas": null, "field_of_science": [], "acronym": "scholix"}, "http://cds.u-strasbg.fr/doc/catstd.pdf": {"title": "SDAC (Standard for Documentation of Astronomical Catalogues)", "id": "sdac.yml", "identifier": ["msc:m37", "https://doi.org/10.25504/FAIRsharing.zcjkc7"], "subject_areas": ["Astronomy", "Astrophysics"], "field_of_science": ["astronomy", "astrophysics", "natural sciences"], "acronym": null}, "http://cds.u-strasbg.fr/doc/catstd.htx": {"title": "SDAC (Standard for Documentation of Astronomical Catalogues)", "id": "sdac.yml", "identifier": ["msc:m37", "https://doi.org/10.25504/FAIRsharing.zcjkc7"], "subject_areas": ["Astronomy", "Astrophysics"], "field_of_science": ["astronomy", "astrophysics", "natural sciences"], "acronym": null}, "http://sdmx.org/?page_id=5008": {"title": "SDMX (Statistical Data and Metadata Exchange)", "id": "sdmx-statistical-data-and-metadata-exchange.yml", "identifier": ["msc:m38", "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", "https://doi.org/10.25504/FAIRsharing.cea9zc"], "subject_areas": ["Demography", "Economics", "Human geography", "Social policy", "Statistics"], "field_of_science": ["political sciences", "social geography", "statistics and probability", "demography", "social sciences", "economics", "natural sciences"], "acronym": null}, "http://sdmx.org": {"title": "SDMX (Statistical Data and Metadata Exchange)", "id": "sdmx-statistical-data-and-metadata-exchange.yml", "identifier": ["msc:m38", "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", "https://doi.org/10.25504/FAIRsharing.cea9zc"], "subject_areas": ["Demography", "Economics", "Human geography", "Social policy", "Statistics"], "field_of_science": ["political sciences", "social geography", "statistics and probability", "demography", "social sciences", "economics", "natural sciences"], "acronym": null}, "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/common": {"title": "SDMX (Statistical Data and Metadata Exchange)", "id": "sdmx-statistical-data-and-metadata-exchange.yml", "identifier": ["msc:m38", "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", "https://doi.org/10.25504/FAIRsharing.cea9zc"], "subject_areas": ["Demography", "Economics", "Human geography", "Social policy", "Statistics"], "field_of_science": ["political sciences", "social geography", "statistics and probability", "demography", "social sciences", "economics", "natural sciences"], "acronym": null}, "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/registry": {"title": "SDMX (Statistical Data and Metadata Exchange)", "id": "sdmx-statistical-data-and-metadata-exchange.yml", "identifier": ["msc:m38", "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", "https://doi.org/10.25504/FAIRsharing.cea9zc"], "subject_areas": ["Demography", "Economics", "Human geography", "Social policy", "Statistics"], "field_of_science": ["political sciences", "social geography", "statistics and probability", "demography", "social sciences", "economics", "natural sciences"], "acronym": null}, "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/structure": {"title": "SDMX (Statistical Data and Metadata Exchange)", "id": "sdmx-statistical-data-and-metadata-exchange.yml", "identifier": ["msc:m38", "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", "https://doi.org/10.25504/FAIRsharing.cea9zc"], "subject_areas": ["Demography", "Economics", "Human geography", "Social policy", "Statistics"], "field_of_science": ["political sciences", "social geography", "statistics and probability", "demography", "social sciences", "economics", "natural sciences"], "acronym": null}, "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/message": {"title": "SDMX (Statistical Data and Metadata Exchange)", "id": "sdmx-statistical-data-and-metadata-exchange.yml", "identifier": ["msc:m38", "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", "https://doi.org/10.25504/FAIRsharing.cea9zc"], "subject_areas": ["Demography", "Economics", "Human geography", "Social policy", "Statistics"], "field_of_science": ["political sciences", "social geography", "statistics and probability", "demography", "social sciences", "economics", "natural sciences"], "acronym": null}, "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/data": {"title": "SDMX (Statistical Data and Metadata Exchange)", "id": "sdmx-statistical-data-and-metadata-exchange.yml", "identifier": ["msc:m38", "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", "https://doi.org/10.25504/FAIRsharing.cea9zc"], "subject_areas": ["Demography", "Economics", "Human geography", "Social policy", "Statistics"], "field_of_science": ["political sciences", "social geography", "statistics and probability", "demography", "social sciences", "economics", "natural sciences"], "acronym": null}, "http://www.sdmx.org/resources/sdmxml/": {"title": "SDMX (Statistical Data and Metadata Exchange)", "id": "sdmx-statistical-data-and-metadata-exchange.yml", "identifier": ["msc:m38", "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", "https://doi.org/10.25504/FAIRsharing.cea9zc"], "subject_areas": ["Demography", "Economics", "Human geography", "Social policy", "Statistics"], "field_of_science": ["political sciences", "social geography", "statistics and probability", "demography", "social sciences", "economics", "natural sciences"], "acronym": null}, "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/shoreline-metadata/": {"title": "Shoreline Metadata Profile", "id": "shoreline-metadata-profile.yml", "identifier": ["msc:m75", "https://doi.org/10.25504/FAIRsharing.22041b"], "subject_areas": ["Hydrology", "Oceanography"], "field_of_science": ["oceanography", "hydrology", "natural sciences"], "acronym": null}, "http://snrnasm.bio.unc.edu": {"title": "SNRNASM ISA-Tab", "id": "snrnasm-isa-tab.yml", "identifier": ["msc:m76"], "subject_areas": ["Biochemistry", "Cell biology"], "field_of_science": ["biochemistry", "cell biology", "natural sciences"], "acronym": null}, "http://www.spase-group.org/docs/schema/": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "http://www.spase-group.org/data/": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "http://www.spase-group.org/data/schema": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-1.0.0.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-1.1.0.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-1.2.0.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-1.2.1.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-1.2.2.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-1.3.0.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.0.0.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.1.0.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.2.0.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.2.1.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.2.2.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.2.3.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.2.4.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.2.6.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.2.8.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.2.9.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.3.0.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.3.1.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.3.2.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.4.0.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.4.1.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.4.2.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "https://spase-group.org/data/schema/spase-2.5.0.xsd": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "http://www.spase-group.org/data/model/spase-2_2_2.pdf": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "http://www.spase-group.org/data/model/spase-2_2_3.pdf": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "http://www.spase-group.org/data/model/spase-2_2_4.pdf": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "http://www.spase-group.org/data/model/spase-2_2_5.pdf": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "http://www.spase-group.org/data/model/spase-2_2_6.pdf": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "http://www.spase-group.org/data/model/spase-2_2_7.pdf": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "http://www.spase-group.org/data/model/spase-2_2_9.pdf": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "http://www.spase-group.org/data/model/spase-2_2_8.pdf": {"title": "SPASE Data Model", "id": "spase-data-model.yml", "identifier": ["msc:m39", "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", "https://doi.org/10.25504/FAIRsharing.f5d440"], "subject_areas": ["Astronomical systems", "Astronomy", "Sun"], "field_of_science": ["astronomy", "natural sciences"], "acronym": null}, "http://frictionlessdata.io/guides/tabular-data-package/": {"title": "Tabular Data Package", "id": "tabular-data-package.yml", "identifier": ["msc:m77", "https://doi.org/10.25504/FAIRsharing.082881"], "subject_areas": ["Multidisciplinary"], "field_of_science": ["sciences"], "acronym": null}, "http://www.tei-c.org/Guidelines/P5/": {"title": "TEI (Text Encoding Initiative) Guidelines", "id": "tei-text-encoding-initiative-guidelines.yml", "identifier": ["msc:m99", "https://doi.org/10.25504/FAIRsharing.87b86e"], "subject_areas": ["History", "Languages"], "field_of_science": ["languages and literature", "humanities", "history"], "acronym": "TEI"}, "https://www.tei-c.org/release/doc/tei-p5-doc/en/html/index.html": {"title": "TEI (Text Encoding Initiative) Guidelines", "id": "tei-text-encoding-initiative-guidelines.yml", "identifier": ["msc:m99", "https://doi.org/10.25504/FAIRsharing.87b86e"], "subject_areas": ["History", "Languages"], "field_of_science": ["languages and literature", "humanities", "history"], "acronym": "TEI"}, "http://www.tei-c.org/ns/1.0": {"title": "TEI (Text Encoding Initiative) Guidelines", "id": "tei-text-encoding-initiative-guidelines.yml", "identifier": ["msc:m99", "https://doi.org/10.25504/FAIRsharing.87b86e"], "subject_areas": ["History", "Languages"], "field_of_science": ["languages and literature", "humanities", "history"], "acronym": "TEI"}, "http://wiki.ecrystals.chem.soton.ac.uk/images/9/9d/ECrystals-WP4-PM-Final.pdf": {"title": "TIDCC (Towards an International Data Commons for Crystallography)", "id": "tidcc-towards-international-data-commons-crystallography.yml", "identifier": ["msc:m78", "https://fairsharing.org/208"], "subject_areas": ["Crystallography"], "field_of_science": ["crystallography", "natural sciences"], "acronym": null}, "http://www.gogeo.ac.uk/gogeo/metadata/agmap.htm": {"title": "UK AGMAP (Academic Geospatial Metadata Application Profile)", "id": "uk-agmap-academic-geospatial-metadata-application-profile.yml", "identifier": ["msc:m79"], "subject_areas": ["Cartography", "Geography", "Topography"], "field_of_science": ["cartography", "natural sciences", "physical geography"], "acronym": null}, "http://www.agi.org.uk/uk-gemini/": {"title": "UK Gemini", "id": "uk-gemini.yml", "identifier": ["msc:m80", "https://doi.org/10.25504/FAIRsharing.b49fab"], "subject_areas": ["Cartography", "Geography", "Topography"], "field_of_science": ["cartography", "natural sciences", "physical geography"], "acronym": null}, "http://schema.ukeof.org.uk/": {"title": "UKEOF", "id": "ukeof.yml", "identifier": ["msc:m40", "https://doi.org/10.25504/FAIRsharing.9xytp6"], "subject_areas": ["Biogeography", "Biological diversity", "Climatology", "Ecology", "Geology", "Hydrology", "Meteorology", "Remote sensing", "Soil sciences"], "field_of_science": ["hydrology", "ecology", "climatology", "biological sciences", "engineering and technology", "soil sciences", "remote sensing", "meteorology", "natural sciences", "geology"], "acronym": null}, "http://www.ukeof.org.uk/": {"title": "UKEOF", "id": "ukeof.yml", "identifier": ["msc:m40", "https://doi.org/10.25504/FAIRsharing.9xytp6"], "subject_areas": ["Biogeography", "Biological diversity", "Climatology", "Ecology", "Geology", "Hydrology", "Meteorology", "Remote sensing", "Soil sciences"], "field_of_science": ["hydrology", "ecology", "climatology", "biological sciences", "engineering and technology", "soil sciences", "remote sensing", "meteorology", "natural sciences", "geology"], "acronym": null}, "https://cataloguestaging.ukeof.org.uk/schema/ukeof.1.0.0.xsd": {"title": "UKEOF", "id": "ukeof.yml", "identifier": ["msc:m40", "https://doi.org/10.25504/FAIRsharing.9xytp6"], "subject_areas": ["Biogeography", "Biological diversity", "Climatology", "Ecology", "Geology", "Hydrology", "Meteorology", "Remote sensing", "Soil sciences"], "field_of_science": ["hydrology", "ecology", "climatology", "biological sciences", "engineering and technology", "soil sciences", "remote sensing", "meteorology", "natural sciences", "geology"], "acronym": null}, "https://www.ukeof.org.uk/schema/1/UKEOF_v1.0.xsd": {"title": "UKEOF", "id": "ukeof.yml", "identifier": ["msc:m40", "https://doi.org/10.25504/FAIRsharing.9xytp6"], "subject_areas": ["Biogeography", "Biological diversity", "Climatology", "Ecology", "Geology", "Hydrology", "Meteorology", "Remote sensing", "Soil sciences"], "field_of_science": ["hydrology", "ecology", "climatology", "biological sciences", "engineering and technology", "soil sciences", "remote sensing", "meteorology", "natural sciences", "geology"], "acronym": null}, "http://www.ukeof.org.uk/schema/1": {"title": "UKEOF", "id": "ukeof.yml", "identifier": ["msc:m40", "https://doi.org/10.25504/FAIRsharing.9xytp6"], "subject_areas": ["Biogeography", "Biological diversity", "Climatology", "Ecology", "Geology", "Hydrology", "Meteorology", "Remote sensing", "Soil sciences"], "field_of_science": ["hydrology", "ecology", "climatology", "biological sciences", "engineering and technology", "soil sciences", "remote sensing", "meteorology", "natural sciences", "geology"], "acronym": null}, "http://repository.stategeothermaldata.org/repository/resource/98ddf901b9782a25982e01af3b0bda50/": {"title": "USGIN (US Geoscience Information Network) Metadata Profile", "id": "usgin-iso-profile.yml", "identifier": ["msc:m81", "https://doi.org/10.25504/FAIRsharing.c82136"], "subject_areas": ["Earth sciences"], "field_of_science": ["earth and related environmental sciences", "natural sciences"], "acronym": null}, "http://usgin.github.io/usginspecs/USGIN_ISO_Metadata.htm": {"title": "USGIN (US Geoscience Information Network) Metadata Profile", "id": "usgin-iso-profile.yml", "identifier": ["msc:m81", "https://doi.org/10.25504/FAIRsharing.c82136"], "subject_areas": ["Earth sciences"], "field_of_science": ["earth and related environmental sciences", "natural sciences"], "acronym": null}, "http://www.ncbi.nlm.nih.gov/pubmed/23031277": {"title": "VarioML", "id": "varioml.yml", "identifier": ["msc:m82", "https://doi.org/10.25504/FAIRsharing.pxvkt0"], "subject_areas": ["Genetics"], "field_of_science": ["genetics", "natural sciences"], "acronym": null}, "http://varioml.org/xml/1.0": {"title": "VarioML", "id": "varioml.yml", "identifier": ["msc:m82", "https://doi.org/10.25504/FAIRsharing.pxvkt0"], "subject_areas": ["Genetics"], "field_of_science": ["genetics", "natural sciences"], "acronym": null}, "http://www.opengeospatial.org/standards/waterml": {"title": "WaterML", "id": "waterml.yml", "identifier": ["msc:m83", "https://doi.org/10.25504/FAIRsharing.e07e1b"], "subject_areas": ["Hydrology"], "field_of_science": ["hydrology", "natural sciences"], "acronym": null}, "https://schemas.opengis.net/waterml/2.0/waterml2.xsd": {"title": "WaterML", "id": "waterml.yml", "identifier": ["msc:m83", "https://doi.org/10.25504/FAIRsharing.e07e1b"], "subject_areas": ["Hydrology"], "field_of_science": ["hydrology", "natural sciences"], "acronym": null}, "http://www.opengis.net/waterml/2.0": {"title": "WaterML", "id": "waterml.yml", "identifier": ["msc:m83", "https://doi.org/10.25504/FAIRsharing.e07e1b"], "subject_areas": ["Hydrology"], "field_of_science": ["hydrology", "natural sciences"], "acronym": null}, "https://wis.wmo.int/2012/metadata/": {"title": "WMO Core Metadata Profile", "id": "wmo-core-metadata-profile.yml", "identifier": ["msc:m84", "https://doi.org/10.25504/FAIRsharing.5e7bdc"], "subject_areas": ["Meteorology"], "field_of_science": ["meteorology", "natural sciences"], "acronym": null}, "https://d-nb.info/standards/schema/xmetadissplus.xsd": {"title": "XmetaDiss", "id": "xmetadiss-schema.yml", "identifier": ["fuji:m43"], "subject_areas": ["Multidisciplinary", "Bibliographic standards", "Information/library standards"], "field_of_science": ["humanities", "sciences", "library sciences"], "acronym": "xmetadiss"}, "http://www.d-nb.de/standards/xmetadissplus/": {"title": "XmetaDiss", "id": "xmetadiss-schema.yml", "identifier": ["fuji:m43"], "subject_areas": ["Multidisciplinary", "Bibliographic standards", "Information/library standards"], "field_of_science": ["humanities", "sciences", "library sciences"], "acronym": "xmetadiss"}, "http://www.d-nb.de/standards/xMetaDiss/": {"title": "XmetaDiss", "id": "xmetadiss-schema.yml", "identifier": ["fuji:m43"], "subject_areas": ["Multidisciplinary", "Bibliographic standards", "Information/library standards"], "field_of_science": ["humanities", "sciences", "library sciences"], "acronym": "xmetadiss"}, "https://github.com/DSpace/xoai": {"title": "XOAI, a DSPACE Metadata Format", "id": "xoai-metadata-format.yml", "identifier": ["fuji:m6"], "subject_areas": null, "field_of_science": [], "acronym": "XOAI"}, "http://www.lyncode.com/xoai": {"title": "XOAI, a DSPACE Metadata Format", "id": "xoai-metadata-format.yml", "identifier": ["fuji:m6"], "subject_areas": null, "field_of_science": [], "acronym": "XOAI"}} +{ + " http://schemas.seadatanet.org/StandardsSoftware/Metadata-formats/SDN2_CSR_ISO19139_5.0.0.xsd": { + "acronym": "CSR", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences" + ], + "id": "cruise-summary-reports.yml", + "identifier": [ + "msc:m52", + "https://doi.org/10.25504/FAIRsharing.e36460" + ], + "subject_areas": [ + "Climatology", + "Earth sciences", + "Glaciology", + "Hydrology", + "Meteorology", + "Oceanography" + ], + "title": "Cruise Summary Reports" + }, + " https://files.dnb.de/Web/xepicur.xsd": { + "acronym": "epicur", + "field_of_science": [], + "id": "epicur-metadata-schema.yml", + "identifier": [ + "fuji:m21", + "https://fairsharing.org/4659" + ], + "subject_areas": null, + "title": "xepicur" + }, + "EDMED_sdn_V1.2.xsd": { + "acronym": null, + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "environmental sciences", + "ecology", + "climatology", + "soil sciences", + "meteorology", + "natural sciences" + ], + "id": "edmed-metadata-profile.yml", + "identifier": [ + "msc:m58", + "https://doi.org/10.25504/FAIRsharing.ed7f20" + ], + "subject_areas": [ + "Climatology", + "Ecology", + "Environmental sciences", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Soil sciences" + ], + "title": "EDMED Metadata Profile" + }, + "dara_v2.2.1_de_en_19112012.xsd": { + "acronym": "da|ra", + "field_of_science": [ + "social sciences", + "political sciences", + "sociology" + ], + "id": "dara-metadata-schema.yml", + "identifier": [ + "fuji:m10", + "https://fairsharing.org/4651" + ], + "subject_areas": [ + "Social policy", + "Sociology" + ], + "title": "da|ra Metadata Schema" + }, + "ddi:codebook:2_5": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "ddi:dataset:3_0": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "ddi:dataset:3_1": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "ddi:dataset:3_2": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "ddi:dataset:3_3": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "ddi:instance:3_1": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "ddi:instance:3_2": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "ddi:instance:3_3": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "eml://ecoinformatics.org/eml-2.0.0": { + "acronym": "EML", + "field_of_science": [ + "zoology", + "ecology", + "biological sciences", + "botany", + "natural sciences" + ], + "id": "eml-ecological-metadata-language.yml", + "identifier": [ + "msc:m16", + "https://doi.org/10.25504/FAIRsharing.r3vtvx", + "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Ecology", + "Zoology" + ], + "title": "EML (Ecological Metadata Language)" + }, + "eml://ecoinformatics.org/eml-2.0.1": { + "acronym": "EML", + "field_of_science": [ + "zoology", + "ecology", + "biological sciences", + "botany", + "natural sciences" + ], + "id": "eml-ecological-metadata-language.yml", + "identifier": [ + "msc:m16", + "https://doi.org/10.25504/FAIRsharing.r3vtvx", + "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Ecology", + "Zoology" + ], + "title": "EML (Ecological Metadata Language)" + }, + "eml://ecoinformatics.org/eml-2.1.0": { + "acronym": "EML", + "field_of_science": [ + "zoology", + "ecology", + "biological sciences", + "botany", + "natural sciences" + ], + "id": "eml-ecological-metadata-language.yml", + "identifier": [ + "msc:m16", + "https://doi.org/10.25504/FAIRsharing.r3vtvx", + "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Ecology", + "Zoology" + ], + "title": "EML (Ecological Metadata Language)" + }, + "eml://ecoinformatics.org/eml-2.1.1": { + "acronym": "EML", + "field_of_science": [ + "zoology", + "ecology", + "biological sciences", + "botany", + "natural sciences" + ], + "id": "eml-ecological-metadata-language.yml", + "identifier": [ + "msc:m16", + "https://doi.org/10.25504/FAIRsharing.r3vtvx", + "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Ecology", + "Zoology" + ], + "title": "EML (Ecological Metadata Language)" + }, + "eml://eml.ecoinformatics.org/eml-2.0.0": { + "acronym": "EML", + "field_of_science": [ + "zoology", + "ecology", + "biological sciences", + "botany", + "natural sciences" + ], + "id": "eml-ecological-metadata-language.yml", + "identifier": [ + "msc:m16", + "https://doi.org/10.25504/FAIRsharing.r3vtvx", + "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Ecology", + "Zoology" + ], + "title": "EML (Ecological Metadata Language)" + }, + "figshare:oai:qdc": { + "acronym": "QDC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core-qualified.yml", + "identifier": [ + "fuji:m22", + "https://doi.org/10.25504/FAIRsharing.3nx7t" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Qualified Dublin Core" + }, + "ftp://ftp.loc.gov/pub/ead/ead.dtd": { + "acronym": "ead", + "field_of_science": [ + "humanities", + "history" + ], + "id": "ead-encoded-archival-description.yml", + "identifier": [ + "msc:m96", + "https://doi.org/10.25504/FAIRsharing.95f59a" + ], + "subject_areas": [ + "History" + ], + "title": "EAD (Encoded Archival Description)" + }, + "http://a9.com/-/spec/opensearch/1.1/": { + "acronym": null, + "field_of_science": [], + "id": "opensearch.yml", + "identifier": [ + "fuji:m2", + "https://fairsharing.org/4685" + ], + "subject_areas": null, + "title": "OpenSearch" + }, + "http://aims.fao.org/es/standards/agmes/namespace-specification": { + "acronym": "AgMES", + "field_of_science": [ + "animal and dairy science", + "agriculture", + "agricultural sciences", + "fisheries" + ], + "id": "agmes-agricultural-metadata-element-set.yml", + "identifier": [ + "msc:m2", + "https://doi.org/10.25504/FAIRsharing.vd694s", + "http://www.dcc.ac.uk/resources/metadata-standards/agmes-agricultural-metadata-element-set" + ], + "subject_areas": [ + "Agricultural economics", + "Agriculture", + "Aquaculture", + "Livestock" + ], + "title": "AgMES (Agricultural Metadata Element Set)" + }, + "http://aims.fao.org/standards/agmes": { + "acronym": "AgMES", + "field_of_science": [ + "animal and dairy science", + "agriculture", + "agricultural sciences", + "fisheries" + ], + "id": "agmes-agricultural-metadata-element-set.yml", + "identifier": [ + "msc:m2", + "https://doi.org/10.25504/FAIRsharing.vd694s", + "http://www.dcc.ac.uk/resources/metadata-standards/agmes-agricultural-metadata-element-set" + ], + "subject_areas": [ + "Agricultural economics", + "Agriculture", + "Aquaculture", + "Livestock" + ], + "title": "AgMES (Agricultural Metadata Element Set)" + }, + "http://amf.openlib.org": { + "acronym": "AMF", + "field_of_science": [ + "sciences" + ], + "id": "amf-academic-metadata-format.yml", + "identifier": [ + "fuji:m25", + "https://fairsharing.org/4646" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Academic Metadata Format" + }, + "http://amf.openlib.org/2001/amf.xsd": { + "acronym": "AMF", + "field_of_science": [ + "sciences" + ], + "id": "amf-academic-metadata-format.yml", + "identifier": [ + "fuji:m25", + "https://fairsharing.org/4646" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Academic Metadata Format" + }, + "http://ands.org.au/standards/rif-cs/registryObjects": { + "acronym": "RIF-CS", + "field_of_science": [ + "sciences" + ], + "id": "rif-cs-registry-interchange-format-collections-and-services.yml", + "identifier": [ + "msc:m98", + "https://doi.org/10.25504/FAIRsharing.reybx2" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RIF-CS (Registry Interchange Format \u00e2\u20ac\u201c Collections and Services)" + }, + "http://ariadne-registry.dcu.gr/schema-definition": { + "acronym": "ACDM", + "field_of_science": [ + "humanities", + "archaeology" + ], + "id": "ariadne-dataset-catalogue-model.yml", + "identifier": [ + "fuji:m19", + "https://fairsharing.org/4647" + ], + "subject_areas": [ + "Archaeology" + ], + "title": "ARIADNE Dataset Catalogue Model (ACDM)" + }, + "http://ariadne-registry.dcu.gr/schema-definition/sample_ariadne_xml.xsd": { + "acronym": "ACDM", + "field_of_science": [ + "humanities", + "archaeology" + ], + "id": "ariadne-dataset-catalogue-model.yml", + "identifier": [ + "fuji:m19", + "https://fairsharing.org/4647" + ], + "subject_areas": [ + "Archaeology" + ], + "title": "ARIADNE Dataset Catalogue Model (ACDM)" + }, + "http://ariadne-registry.dcu.gr/schema_definition/6.7/acdm.xsd": { + "acronym": "ACDM", + "field_of_science": [ + "humanities", + "archaeology" + ], + "id": "ariadne-dataset-catalogue-model.yml", + "identifier": [ + "fuji:m19", + "https://fairsharing.org/4647" + ], + "subject_areas": [ + "Archaeology" + ], + "title": "ARIADNE Dataset Catalogue Model (ACDM)" + }, + "http://ariadne-registry.dcu.gr/schema_definition/6.8/acdm.xsd": { + "acronym": "ACDM", + "field_of_science": [ + "humanities", + "archaeology" + ], + "id": "ariadne-dataset-catalogue-model.yml", + "identifier": [ + "fuji:m19", + "https://fairsharing.org/4647" + ], + "subject_areas": [ + "Archaeology" + ], + "title": "ARIADNE Dataset Catalogue Model (ACDM)" + }, + "http://ariadne-registry.dcu.gr/schema_definition/6.9/acdm.xsd": { + "acronym": "ACDM", + "field_of_science": [ + "humanities", + "archaeology" + ], + "id": "ariadne-dataset-catalogue-model.yml", + "identifier": [ + "fuji:m19", + "https://fairsharing.org/4647" + ], + "subject_areas": [ + "Archaeology" + ], + "title": "ARIADNE Dataset Catalogue Model (ACDM)" + }, + "http://ariadne-registry.dcu.gr/schema_definition/sample_ariadne_xml.xsd": { + "acronym": "ACDM", + "field_of_science": [ + "humanities", + "archaeology" + ], + "id": "ariadne-dataset-catalogue-model.yml", + "identifier": [ + "fuji:m19", + "https://fairsharing.org/4647" + ], + "subject_areas": [ + "Archaeology" + ], + "title": "ARIADNE Dataset Catalogue Model (ACDM)" + }, + "http://bluenet3.antcrc.utas.edu.au/mcp": { + "acronym": "ISO19115", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "cartography", + "physical geography", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences", + "geology" + ], + "id": "iso-19115.yml", + "identifier": [ + "msc:m22", + "https://doi.org/10.25504/FAIRsharing.t7mby9" + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Geology", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "ISO 19115" + }, + "http://catalog.clarin.eu/ds/ComponentRegistry/rest/registry/profiles/clarin.eu:cr1:p_1290431694484/xsd": { + "acronym": "CMDI", + "field_of_science": [ + "linguistics", + "humanities", + "languages and literature" + ], + "id": "cmd-component-metadata.yml", + "identifier": [ + "fuji:m6", + "https://doi.org/10.25504/FAIRsharing.2e0599" + ], + "subject_areas": [ + "Linguistics", + "Languages" + ], + "title": "Component MetaData Specification (CMDI)" + }, + "http://cds.u-strasbg.fr/doc/catstd.htx": { + "acronym": null, + "field_of_science": [ + "astronomy", + "astrophysics", + "natural sciences" + ], + "id": "sdac.yml", + "identifier": [ + "msc:m37", + "https://doi.org/10.25504/FAIRsharing.zcjkc7" + ], + "subject_areas": [ + "Astronomy", + "Astrophysics" + ], + "title": "SDAC (Standard for Documentation of Astronomical Catalogues)" + }, + "http://cds.u-strasbg.fr/doc/catstd.pdf": { + "acronym": null, + "field_of_science": [ + "astronomy", + "astrophysics", + "natural sciences" + ], + "id": "sdac.yml", + "identifier": [ + "msc:m37", + "https://doi.org/10.25504/FAIRsharing.zcjkc7" + ], + "subject_areas": [ + "Astronomy", + "Astrophysics" + ], + "title": "SDAC (Standard for Documentation of Astronomical Catalogues)" + }, + "http://cfconventions.org/": { + "acronym": "CF", + "field_of_science": [ + "oceanography", + "climatology", + "meteorology", + "natural sciences" + ], + "id": "cf-climate-and-forecast-metadata-conventions.yml", + "identifier": [ + "msc:m5", + "https://doi.org/10.25504/FAIRsharing.f8cd83", + "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions" + ], + "subject_areas": [ + "Climatology", + "Meteorology", + "Oceanography" + ], + "title": "CF (Climate and Forecast) Metadata Conventions" + }, + "http://cfconventions.org/documents.html": { + "acronym": "CF", + "field_of_science": [ + "oceanography", + "climatology", + "meteorology", + "natural sciences" + ], + "id": "cf-climate-and-forecast-metadata-conventions.yml", + "identifier": [ + "msc:m5", + "https://doi.org/10.25504/FAIRsharing.f8cd83", + "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions" + ], + "subject_areas": [ + "Climatology", + "Meteorology", + "Oceanography" + ], + "title": "CF (Climate and Forecast) Metadata Conventions" + }, + "http://clarin-pl.eu/ns/experimental/bibtex": { + "acronym": "BibTeX", + "field_of_science": [], + "id": "bibtex-format.yml", + "identifier": [ + "fuji:m34", + "https://doi.org/10.25504/FAIRsharing.bdf2fe" + ], + "subject_areas": null, + "title": "BibTeX" + }, + "http://clinicaltrials.gov/ct2/manage-recs/resources": { + "acronym": null, + "field_of_science": [ + "medical and health sciences", + "clinical medicine" + ], + "id": "protocol-data-element-definitions.yml", + "identifier": [ + "msc:m32", + "http://www.dcc.ac.uk/resources/metadata-standards/protocol-data-element-definitions", + "https://doi.org/10.25504/FAIRsharing.7e962d" + ], + "subject_areas": [ + "Clinical medicine" + ], + "title": "Protocol Data Element Definitions" + }, + "http://clinicaltrials.gov/prs": { + "acronym": null, + "field_of_science": [ + "medical and health sciences", + "clinical medicine" + ], + "id": "protocol-data-element-definitions.yml", + "identifier": [ + "msc:m32", + "http://www.dcc.ac.uk/resources/metadata-standards/protocol-data-element-definitions", + "https://doi.org/10.25504/FAIRsharing.7e962d" + ], + "subject_areas": [ + "Clinical medicine" + ], + "title": "Protocol Data Element Definitions" + }, + "http://clinicaltrials.gov/rrs": { + "acronym": null, + "field_of_science": [ + "medical and health sciences", + "clinical medicine" + ], + "id": "protocol-data-element-definitions.yml", + "identifier": [ + "msc:m32", + "http://www.dcc.ac.uk/resources/metadata-standards/protocol-data-element-definitions", + "https://doi.org/10.25504/FAIRsharing.7e962d" + ], + "subject_areas": [ + "Clinical medicine" + ], + "title": "Protocol Data Element Definitions" + }, + "http://code.google.com/p/applecore/wiki/Introduction": { + "acronym": "aDwC", + "field_of_science": [ + "botany", + "natural sciences" + ], + "id": "apple-core.yml", + "identifier": [ + "msc:m47", + "https://fairsharing.org/726" + ], + "subject_areas": [ + "Botany" + ], + "title": "Apple Core" + }, + "http://code.google.com/p/darwincore-germplasm/": { + "acronym": null, + "field_of_science": [ + "botany", + "natural sciences" + ], + "id": "dwc-germplasm.yml", + "identifier": [ + "msc:m56", + "https://doi.org/10.25504/FAIRsharing.hgsFLe" + ], + "subject_areas": [ + "Botany" + ], + "title": "DwC Germplasm" + }, + "http://crdo.risc.cnrs.fr/schemas/dcq/": { + "acronym": "QDC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core-qualified.yml", + "identifier": [ + "fuji:m22", + "https://doi.org/10.25504/FAIRsharing.3nx7t" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Qualified Dublin Core" + }, + "http://da-ra.de/dara/schemadefinitions/dara.xsd": { + "acronym": "da|ra", + "field_of_science": [ + "social sciences", + "political sciences", + "sociology" + ], + "id": "dara-metadata-schema.yml", + "identifier": [ + "fuji:m10", + "https://fairsharing.org/4651" + ], + "subject_areas": [ + "Social policy", + "Sociology" + ], + "title": "da|ra Metadata Schema" + }, + "http://da-ra.de/schema/kernel-4": { + "acronym": "da|ra", + "field_of_science": [ + "social sciences", + "political sciences", + "sociology" + ], + "id": "dara-metadata-schema.yml", + "identifier": [ + "fuji:m10", + "https://fairsharing.org/4651" + ], + "subject_areas": [ + "Social policy", + "Sociology" + ], + "title": "da|ra Metadata Schema" + }, + "http://data-archive.ac.uk/create-manage/projects/qudex?index=1": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "qudex-qualitative-data-exchange-format.yml", + "identifier": [ + "msc:m34", + "http://www.dcc.ac.uk/resources/metadata-standards/qudex-qualitative-data-exchange-format", + "https://doi.org/10.25504/FAIRsharing.d42cb9" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "QuDEx (Qualitative Data Exchange Format)" + }, + "http://datacite.org/schema/kernel": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://datacite.org/schema/kernel-2.1": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://datacite.org/schema/kernel-2.2": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://datacite.org/schema/kernel-3": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://datacite.org/schema/kernel-3.1": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://datacite.org/schema/kernel-4": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://datadryad.org/metadata/": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "dryad-metadata-application-profile.yml", + "identifier": [ + "msc:m55" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dryad Metadata Application Profile" + }, + "http://datadryad.org/profile/v3.1/dryad.xsd": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "dryad-metadata-application-profile.yml", + "identifier": [ + "msc:m55" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dryad Metadata Application Profile" + }, + "http://datadryad.org/profile/v3/dryad.xsd": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "dryad-metadata-application-profile.yml", + "identifier": [ + "msc:m55" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dryad Metadata Application Profile" + }, + "http://diglib.hab.de/rules/schema/emblem": { + "acronym": "Emblem", + "field_of_science": [ + "humanities" + ], + "id": "emblem-metadata-schema.yml", + "identifier": [ + "fuji:m16", + "https://fairsharing.org/4654" + ], + "subject_areas": [ + "Humanities" + ], + "title": "Emblem XML-Schema" + }, + "http://diglib.hab.de/rules/schema/emblem/emblem-1-2.xsd": { + "acronym": "Emblem", + "field_of_science": [ + "humanities" + ], + "id": "emblem-metadata-schema.yml", + "identifier": [ + "fuji:m16", + "https://fairsharing.org/4654" + ], + "subject_areas": [ + "Humanities" + ], + "title": "Emblem XML-Schema" + }, + "http://diglib.hab.de/rules/schema/emblem/emblem-1-3.xsd": { + "acronym": "Emblem", + "field_of_science": [ + "humanities" + ], + "id": "emblem-metadata-schema.yml", + "identifier": [ + "fuji:m16", + "https://fairsharing.org/4654" + ], + "subject_areas": [ + "Humanities" + ], + "title": "Emblem XML-Schema" + }, + "http://docs.fdsn.org/projects/stationxml/en/latest/": { + "acronym": null, + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences", + "geophysics" + ], + "id": "fdsn-seismograph.yml", + "identifier": [ + "fuji:m8", + "https://fairsharing.org/1434" + ], + "subject_areas": [ + "Earth sciences", + "Geophysics" + ], + "title": "International Federation of Digital Seismograph Networks StationXML (FDSN StationXML)" + }, + "http://docs.rioxx.net/schema/v1.0/": { + "acronym": "rioxx", + "field_of_science": [ + "sciences" + ], + "id": "rioxx-metadata-application-profile.yml", + "identifier": [ + "fuji:m5", + "https://fairsharing.org/4690" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RIOXX Metadata Application Profile" + }, + "http://download.nexusformat.org/doc/html/ref_doc.html": { + "acronym": null, + "field_of_science": [ + "crystallography", + "engineering and technology", + "materials engineering", + "chemical sciences", + "natural sciences" + ], + "id": "nexus.yml", + "identifier": [ + "msc:m25", + "https://doi.org/10.25504/FAIRsharing.eq2pdx" + ], + "subject_areas": [ + "Chemistry", + "Crystallography", + "Materials engineering" + ], + "title": "NeXus" + }, + "http://dublincore.org": { + "acronym": "DC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core.yml", + "identifier": [ + "msc:m15", + "https://doi.org/10.25504/FAIRsharing.3nx7t", + "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dublin Core" + }, + "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dc.xsd": { + "acronym": "DC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core.yml", + "identifier": [ + "msc:m15", + "https://doi.org/10.25504/FAIRsharing.3nx7t", + "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dublin Core" + }, + "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dcmitype.xsd": { + "acronym": "DC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core.yml", + "identifier": [ + "msc:m15", + "https://doi.org/10.25504/FAIRsharing.3nx7t", + "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dublin Core" + }, + "http://dublincore.org/schemas/xmls/qdc/2008/02/11/dcterms.xsd": { + "acronym": "DC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core.yml", + "identifier": [ + "msc:m15", + "https://doi.org/10.25504/FAIRsharing.3nx7t", + "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dublin Core" + }, + "http://dublincore.org/schemas/xmls/qdc/2008/02/11/qualifieddc.xsd": { + "acronym": "DC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core.yml", + "identifier": [ + "msc:m15", + "https://doi.org/10.25504/FAIRsharing.3nx7t", + "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dublin Core" + }, + "http://dublincore.org/schemas/xmls/qdc/2008/02/11/simpledc.xsd": { + "acronym": "DC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core.yml", + "identifier": [ + "msc:m15", + "https://doi.org/10.25504/FAIRsharing.3nx7t", + "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dublin Core" + }, + "http://dublincore.org/schemas/xmls/qdc/dc.xsd": { + "acronym": "DC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core.yml", + "identifier": [ + "msc:m15", + "https://doi.org/10.25504/FAIRsharing.3nx7t", + "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dublin Core" + }, + "http://dublincore.org/schemas/xmls/qdc/dcmitype.xsd": { + "acronym": "DC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core.yml", + "identifier": [ + "msc:m15", + "https://doi.org/10.25504/FAIRsharing.3nx7t", + "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dublin Core" + }, + "http://dublincore.org/schemas/xmls/qdc/dcterms.xsd": { + "acronym": "DC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core.yml", + "identifier": [ + "msc:m15", + "https://doi.org/10.25504/FAIRsharing.3nx7t", + "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dublin Core" + }, + "http://dublincore.org/schemas/xmls/simpledc20021212.xsd": { + "acronym": "DC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core.yml", + "identifier": [ + "msc:m15", + "https://doi.org/10.25504/FAIRsharing.3nx7t", + "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dublin Core" + }, + "http://dublincore.org/specifications/": { + "acronym": "DC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core.yml", + "identifier": [ + "msc:m15", + "https://doi.org/10.25504/FAIRsharing.3nx7t", + "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dublin Core" + }, + "http://ead3.archivists.org/schema": { + "acronym": "ead", + "field_of_science": [ + "humanities", + "history" + ], + "id": "ead-encoded-archival-description.yml", + "identifier": [ + "msc:m96", + "https://doi.org/10.25504/FAIRsharing.95f59a" + ], + "subject_areas": [ + "History" + ], + "title": "EAD (Encoded Archival Description)" + }, + "http://ead3.archivists.org/schema/": { + "acronym": "ead", + "field_of_science": [ + "humanities", + "history" + ], + "id": "ead-encoded-archival-description.yml", + "identifier": [ + "msc:m96", + "https://doi.org/10.25504/FAIRsharing.95f59a" + ], + "subject_areas": [ + "History" + ], + "title": "EAD (Encoded Archival Description)" + }, + "http://ecrystals.chem.soton.ac.uk": { + "acronym": null, + "field_of_science": [ + "crystallography", + "natural sciences" + ], + "id": "ebank-uk-metadata-application-profile.yml", + "identifier": [ + "msc:m57", + "https://doi.org/10.25504/FAIRsharing.ad4856" + ], + "subject_areas": [ + "Crystallography" + ], + "title": "eBank UK Metadata Application Profile" + }, + "http://enews.patricbrc.org/faqs/genome-metadata-faqs/": { + "acronym": null, + "field_of_science": [ + "genetics", + "natural sciences" + ], + "id": "genome-metadata.yml", + "identifier": [ + "msc:m19", + "http://www.dcc.ac.uk/resources/metadata-standards/genome-metadata" + ], + "subject_areas": [ + "Genetics" + ], + "title": "Genome Metadata" + }, + "http://eprints.org/ep2/data/2.0": { + "acronym": "EPrints", + "field_of_science": [ + "sciences" + ], + "id": "eprints-xml.yml", + "identifier": [ + "fuji:m23" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "EPrints XML" + }, + "http://ferret.wrc.noaa.gov/noaa_coop/coop_cdf_profile.html": { + "acronym": null, + "field_of_science": [ + "oceanography", + "climatology", + "meteorology", + "natural sciences" + ], + "id": "coards-conventions.yml", + "identifier": [ + "msc:m51", + "https://doi.org/10.25504/FAIRsharing.9614ca" + ], + "subject_areas": [ + "Climatology", + "Meteorology", + "Oceanography" + ], + "title": "COARDS Conventions" + }, + "http://fits.gsfc.nasa.gov/fits_standard.html": { + "acronym": null, + "field_of_science": [ + "astronomy", + "astrophysics", + "natural sciences" + ], + "id": "fits-flexible-image-transport-system.yml", + "identifier": [ + "msc:m18", + "https://doi.org/10.25504/FAIRsharing.xvash1", + "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system" + ], + "subject_areas": [ + "Astronomy", + "Astrophysics", + "Sun" + ], + "title": "FITS (Flexible Image Transport System)" + }, + "http://fits.gsfc.nasa.gov/fits_wcs.html": { + "acronym": null, + "field_of_science": [ + "astronomy", + "astrophysics", + "natural sciences" + ], + "id": "fits-world-coordinate-system-wcs.yml", + "identifier": [ + "msc:m60" + ], + "subject_areas": [ + "Astronomy", + "Astrophysics", + "Sun" + ], + "title": "FITS World Coordinate System (WCS)" + }, + "http://frictionlessdata.io/guides/tabular-data-package/": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "tabular-data-package.yml", + "identifier": [ + "msc:m77", + "https://doi.org/10.25504/FAIRsharing.082881" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Tabular Data Package" + }, + "http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif": { + "acronym": "DIF", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "ecology", + "climatology", + "agricultural sciences", + "marine biology", + "agriculture", + "biochemistry", + "meteorology", + "natural sciences" + ], + "id": "dif-directory-interchange-format.yml", + "identifier": [ + "msc:m14", + "https://doi.org/10.25504/FAIRsharing.esxaaq", + "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format" + ], + "subject_areas": [ + "Agriculture", + "Biochemistry", + "Climatology", + "Ecology", + "Glaciology", + "Hydrology", + "Marine biology", + "Meteorology", + "Oceanography" + ], + "title": "DIF (Directory Interchange Format)" + }, + "http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/": { + "acronym": "DIF", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "ecology", + "climatology", + "agricultural sciences", + "marine biology", + "agriculture", + "biochemistry", + "meteorology", + "natural sciences" + ], + "id": "dif-directory-interchange-format.yml", + "identifier": [ + "msc:m14", + "https://doi.org/10.25504/FAIRsharing.esxaaq", + "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format" + ], + "subject_areas": [ + "Agriculture", + "Biochemistry", + "Climatology", + "Ecology", + "Glaciology", + "Hydrology", + "Marine biology", + "Meteorology", + "Oceanography" + ], + "title": "DIF (Directory Interchange Format)" + }, + "http://gcmd.nasa.gov/Aboutus/xml/dif/dif.xsd": { + "acronym": "DIF", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "ecology", + "climatology", + "agricultural sciences", + "marine biology", + "agriculture", + "biochemistry", + "meteorology", + "natural sciences" + ], + "id": "dif-directory-interchange-format.yml", + "identifier": [ + "msc:m14", + "https://doi.org/10.25504/FAIRsharing.esxaaq", + "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format" + ], + "subject_areas": [ + "Agriculture", + "Biochemistry", + "Climatology", + "Ecology", + "Glaciology", + "Hydrology", + "Marine biology", + "Meteorology", + "Oceanography" + ], + "title": "DIF (Directory Interchange Format)" + }, + "http://gcmd.nasa.gov/add/difguide/": { + "acronym": "DIF", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "ecology", + "climatology", + "agricultural sciences", + "marine biology", + "agriculture", + "biochemistry", + "meteorology", + "natural sciences" + ], + "id": "dif-directory-interchange-format.yml", + "identifier": [ + "msc:m14", + "https://doi.org/10.25504/FAIRsharing.esxaaq", + "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format" + ], + "subject_areas": [ + "Agriculture", + "Biochemistry", + "Climatology", + "Ecology", + "Glaciology", + "Hydrology", + "Marine biology", + "Meteorology", + "Oceanography" + ], + "title": "DIF (Directory Interchange Format)" + }, + "http://gcmd.nasa.gov/add/difguide/WRITEADIF.pdf": { + "acronym": "DIF", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "ecology", + "climatology", + "agricultural sciences", + "marine biology", + "agriculture", + "biochemistry", + "meteorology", + "natural sciences" + ], + "id": "dif-directory-interchange-format.yml", + "identifier": [ + "msc:m14", + "https://doi.org/10.25504/FAIRsharing.esxaaq", + "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format" + ], + "subject_areas": [ + "Agriculture", + "Biochemistry", + "Climatology", + "Ecology", + "Glaciology", + "Hydrology", + "Marine biology", + "Meteorology", + "Oceanography" + ], + "title": "DIF (Directory Interchange Format)" + }, + "http://icatproject-contrib.github.io/CSMD/": { + "acronym": "CSMD", + "field_of_science": [ + "crystallography", + "engineering and technology", + "biochemistry", + "chemical sciences", + "materials engineering", + "natural sciences" + ], + "id": "csmd-cclrc-core-scientific-metadata-model.yml", + "identifier": [ + "msc:m8", + "https://doi.org/10.25504/FAIRsharing.30fk89", + "http://www.dcc.ac.uk/resources/metadata-standards/csmd-cclrc-core-scientific-metadata-model" + ], + "subject_areas": [ + "Biochemistry", + "Chemistry", + "Crystallography", + "Materials engineering" + ], + "title": "CSMD (Core Scientific Metadata Model)" + }, + "http://ils.unc.edu/mrc/dryad/version1_0/dryad_1_0.xsd": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "dryad-metadata-application-profile.yml", + "identifier": [ + "msc:m55" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dryad Metadata Application Profile" + }, + "http://infra.clarin.eu/CMDI/1.x/xsd/cmd-envelop.xsd": { + "acronym": "CMDI", + "field_of_science": [ + "linguistics", + "humanities", + "languages and literature" + ], + "id": "cmd-component-metadata.yml", + "identifier": [ + "fuji:m6", + "https://doi.org/10.25504/FAIRsharing.2e0599" + ], + "subject_areas": [ + "Linguistics", + "Languages" + ], + "title": "Component MetaData Specification (CMDI)" + }, + "http://inspire.ec.europa.eu/": { + "acronym": null, + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "cartography", + "physical geography", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences" + ], + "id": "inspire-metadata-regulation.yml", + "identifier": [ + "msc:m66", + "https://doi.org/10.25504/FAIRsharing.nrx5kk" + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "INSPIRE Metadata Regulation" + }, + "http://inspire.ec.europa.eu/schemas/common/1.0/common.xsd": { + "acronym": null, + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "cartography", + "physical geography", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences" + ], + "id": "inspire-metadata-regulation.yml", + "identifier": [ + "msc:m66", + "https://doi.org/10.25504/FAIRsharing.nrx5kk" + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "INSPIRE Metadata Regulation" + }, + "http://inspire.ec.europa.eu/schemas/common/1.0/network.xsd": { + "acronym": null, + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "cartography", + "physical geography", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences" + ], + "id": "inspire-metadata-regulation.yml", + "identifier": [ + "msc:m66", + "https://doi.org/10.25504/FAIRsharing.nrx5kk" + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "INSPIRE Metadata Regulation" + }, + "http://isatab.sourceforge.net/docs/ISA-TAB_release-candidate-1_v1.0_24nov08.pdf": { + "acronym": null, + "field_of_science": [ + "genetics", + "biophysics", + "biological sciences", + "cell metabolism", + "molecular biology", + "engineering and technology", + "cell biology", + "biochemistry", + "natural sciences" + ], + "id": "isa-tab.yml", + "identifier": [ + "msc:m21", + "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab" + ], + "subject_areas": [ + "Biochemicals", + "Biochemistry", + "Biophysics", + "Biotechnology", + "Cell biology", + "Genetics", + "Metabolism", + "Molecular biology" + ], + "title": "ISA-Tab" + }, + "http://isatab.sourceforge.net/format.html": { + "acronym": null, + "field_of_science": [ + "genetics", + "biophysics", + "biological sciences", + "cell metabolism", + "molecular biology", + "engineering and technology", + "cell biology", + "biochemistry", + "natural sciences" + ], + "id": "isa-tab.yml", + "identifier": [ + "msc:m21", + "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab" + ], + "subject_areas": [ + "Biochemicals", + "Biochemistry", + "Biophysics", + "Biotechnology", + "Cell biology", + "Genetics", + "Metabolism", + "Molecular biology" + ], + "title": "ISA-Tab" + }, + "http://ivoa.net/documents/": { + "acronym": "IVOA", + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "international-virtual-observatory-alliance-technical-specifications.yml", + "identifier": [ + "msc:m20" + ], + "subject_areas": [ + "Astronomy" + ], + "title": "International Virtual Observatory Alliance Technical Specifications" + }, + "http://jats.nlm.nih.gov/publishing/": { + "acronym": "jats", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "jats-schema.yml", + "identifier": [ + "fuji:m41", + "https://doi.org/10.25504/FAIRsharing.smr0rh" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "Journal Publishing Tag Set (Jats)" + }, + "http://jats.nlm.nih.gov/publishing/1.0": { + "acronym": "jats", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "jats-schema.yml", + "identifier": [ + "fuji:m41", + "https://doi.org/10.25504/FAIRsharing.smr0rh" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "Journal Publishing Tag Set (Jats)" + }, + "http://lido-schema.org/schema/v1.1/lido-v1.1.xsd": { + "acronym": "LIDO", + "field_of_science": [ + "humanities" + ], + "id": "lido-lightweight-information-describing-objects.yml", + "identifier": [ + "fuji:m18", + "https://doi.org/10.25504/FAIRsharing.73558b" + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "LIDO, Lightweight Information Describing Objects" + }, + "http://lindat.mff.cuni.cz/ns/experimental/bibtex": { + "acronym": "BibTeX", + "field_of_science": [], + "id": "bibtex-format.yml", + "identifier": [ + "fuji:m34", + "https://doi.org/10.25504/FAIRsharing.bdf2fe" + ], + "subject_areas": null, + "title": "BibTeX" + }, + "http://ltsc.ieee.org/2002/09/lom-base#": { + "acronym": "LOM", + "field_of_science": [], + "id": "lom-higher-education-schema.yml", + "identifier": [ + "fuji:m24", + "https://fairsharing.org/4664" + ], + "subject_areas": null, + "title": "Learning Object Metadata (LOM)" + }, + "http://ltsc.ieee.org/xsd/LOMv1p0": { + "acronym": "LOM", + "field_of_science": [], + "id": "lom-higher-education-schema.yml", + "identifier": [ + "fuji:m24", + "https://fairsharing.org/4664" + ], + "subject_areas": null, + "title": "Learning Object Metadata (LOM)" + }, + "http://meetingorganizer.copernicus.org/EPSC2012/EPSC2012-360.pdf": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "impex-data-model.yml", + "identifier": [ + "msc:m65" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "IMPEx Data Model" + }, + "http://mibbi.sourceforge.net/foundry.shtml": { + "acronym": null, + "field_of_science": [ + "genetics", + "environmental sciences", + "proteins", + "biological sciences", + "cell metabolism", + "engineering and technology", + "computer and information sciences", + "cell biology", + "biochemistry", + "natural sciences" + ], + "id": "mibbi-minimum-information-biological-and-biomedical-investigations.yml", + "identifier": [ + "msc:m23", + "https://fairsharing.org/3518", + "http://www.dcc.ac.uk/resources/metadata-standards/mibbi-minimum-information-biological-and-biomedical-investigations" + ], + "subject_areas": [ + "Biochemistry", + "Biology", + "Biotechnology", + "Cell biology", + "Computer applications", + "Environmental sciences", + "Genetics", + "Metabolism", + "Proteins" + ], + "title": "MIBBI (Minimum Information for Biological and Biomedical Investigations)" + }, + "http://mibbi.sourceforge.net/portal.shtml": { + "acronym": null, + "field_of_science": [ + "genetics", + "environmental sciences", + "proteins", + "biological sciences", + "cell metabolism", + "engineering and technology", + "computer and information sciences", + "cell biology", + "biochemistry", + "natural sciences" + ], + "id": "mibbi-minimum-information-biological-and-biomedical-investigations.yml", + "identifier": [ + "msc:m23", + "https://fairsharing.org/3518", + "http://www.dcc.ac.uk/resources/metadata-standards/mibbi-minimum-information-biological-and-biomedical-investigations" + ], + "subject_areas": [ + "Biochemistry", + "Biology", + "Biotechnology", + "Cell biology", + "Computer applications", + "Environmental sciences", + "Genetics", + "Metabolism", + "Proteins" + ], + "title": "MIBBI (Minimum Information for Biological and Biomedical Investigations)" + }, + "http://mmcif.wwpdb.org/": { + "acronym": null, + "field_of_science": [ + "natural sciences", + "physical sciences", + "crystallography", + "biological sciences", + "molecular biology", + "chemical sciences", + "computer and information sciences" + ], + "id": "pdbx-mmcif.yml", + "identifier": [ + "msc:m30", + "https://doi.org/10.25504/FAIRsharing.fd28en" + ], + "subject_areas": [ + "Biology", + "Chemistry", + "Computer applications", + "Crystallography", + "Molecular biology", + "Physics" + ], + "title": "PDBx/mmCIF (Protein Data Bank Exchange Dictionary and the Macromolecular Crystallographic Information Framework)" + }, + "http://mmcif.wwpdb.org/dictionaries/mmcif_pdbx_v40.dic/Index/": { + "acronym": null, + "field_of_science": [ + "natural sciences", + "physical sciences", + "crystallography", + "biological sciences", + "molecular biology", + "chemical sciences", + "computer and information sciences" + ], + "id": "pdbx-mmcif.yml", + "identifier": [ + "msc:m30", + "https://doi.org/10.25504/FAIRsharing.fd28en" + ], + "subject_areas": [ + "Biology", + "Chemistry", + "Computer applications", + "Crystallography", + "Molecular biology", + "Physics" + ], + "title": "PDBx/mmCIF (Protein Data Bank Exchange Dictionary and the Macromolecular Crystallographic Information Framework)" + }, + "http://museum.zib.de/museumdat/museumdat-v1.0.xsd": { + "acronym": "museumdat", + "field_of_science": [ + "humanities" + ], + "id": "museumdat-schema.yml", + "identifier": [ + "fuji:m31", + "https://fairsharing.org/4671" + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "museumdat" + }, + "http://naca.central.cranfield.ac.uk/ethos-oai/2.0/": { + "acronym": "QDC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core-qualified.yml", + "identifier": [ + "fuji:m22", + "https://doi.org/10.25504/FAIRsharing.3nx7t" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Qualified Dublin Core" + }, + "http://naca.central.cranfield.ac.uk/ethos-oai/2.0/uketd_dc.xsd": { + "acronym": null, + "field_of_science": [ + "crystallography", + "natural sciences" + ], + "id": "ebank-uk-metadata-application-profile.yml", + "identifier": [ + "msc:m57", + "https://doi.org/10.25504/FAIRsharing.ad4856" + ], + "subject_areas": [ + "Crystallography" + ], + "title": "eBank UK Metadata Application Profile" + }, + "http://naca.central.cranfield.ac.uk/ethos-oai/uketd_dc/": { + "acronym": null, + "field_of_science": [ + "crystallography", + "natural sciences" + ], + "id": "ebank-uk-metadata-application-profile.yml", + "identifier": [ + "msc:m57", + "https://doi.org/10.25504/FAIRsharing.ad4856" + ], + "subject_areas": [ + "Crystallography" + ], + "title": "eBank UK Metadata Application Profile" + }, + "http://namespace.openaire.eu/oaf": { + "acronym": "OpenAIRE_RG", + "field_of_science": [ + "sciences" + ], + "id": "openaire-research-graph.yml", + "identifier": [ + "fuji:m20", + "https://fairsharing.org/4684" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "OpenAIRE Research Graph" + }, + "http://namespace.openaire.eu/schema/oaire/": { + "acronym": "OpenAIRE_G", + "field_of_science": [ + "sciences" + ], + "id": "openaire-guidelines.yml", + "identifier": [ + "msc:m92", + "https://doi.org/10.25504/FAIRsharing.123197" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "OpenAIRE Guidelines" + }, + "http://oai.base-search.net/base_dc": { + "acronym": "QDC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core-qualified.yml", + "identifier": [ + "fuji:m22", + "https://doi.org/10.25504/FAIRsharing.3nx7t" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Qualified Dublin Core" + }, + "http://oai.base-search.net/base_dc/": { + "acronym": "QDC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core-qualified.yml", + "identifier": [ + "fuji:m22", + "https://doi.org/10.25504/FAIRsharing.3nx7t" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Qualified Dublin Core" + }, + "http://oai.base-search.net/base_dc/base_dc.xsd": { + "acronym": "QDC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core-qualified.yml", + "identifier": [ + "fuji:m22", + "https://doi.org/10.25504/FAIRsharing.3nx7t" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Qualified Dublin Core" + }, + "http://openlib.org/home/krichel/ebisu.html": { + "acronym": "AMF", + "field_of_science": [ + "sciences" + ], + "id": "amf-academic-metadata-format.yml", + "identifier": [ + "fuji:m25", + "https://fairsharing.org/4646" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Academic Metadata Format" + }, + "http://ora.ox.ac.uk/oai-pmh/metadata-formats/solo_dc": { + "acronym": "QDC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core-qualified.yml", + "identifier": [ + "fuji:m22", + "https://doi.org/10.25504/FAIRsharing.3nx7t" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Qualified Dublin Core" + }, + "http://portal.opengeospatial.org/files/?artifact_id=41579": { + "acronym": null, + "field_of_science": [ + "engineering and technology", + "chemical sciences", + "remote sensing", + "meteorology", + "natural sciences", + "geology" + ], + "id": "observations-and-measurements.yml", + "identifier": [ + "msc:m28", + "https://doi.org/10.25504/FAIRsharing.4ehmy9", + "http://www.dcc.ac.uk/resources/metadata-standards/observations-and-measurements" + ], + "subject_areas": [ + "Chemistry", + "Geology", + "Meteorology", + "Remote sensing" + ], + "title": "Observations and Measurements" + }, + "http://prismstandard.org/namespaces/basic/1.0/": { + "acronym": "PRISM", + "field_of_science": [], + "id": "prism-publishing-industry-standard-metadata.yml", + "identifier": [ + "fuji:m27", + "https://fairsharing.org/4689" + ], + "subject_areas": null, + "title": "PRISM Publishing Requirements for Industry Standard Metadata" + }, + "http://prismstandard.org/namespaces/basic/1.2/": { + "acronym": "PRISM", + "field_of_science": [], + "id": "prism-publishing-industry-standard-metadata.yml", + "identifier": [ + "fuji:m27", + "https://fairsharing.org/4689" + ], + "subject_areas": null, + "title": "PRISM Publishing Requirements for Industry Standard Metadata" + }, + "http://prismstandard.org/namespaces/basic/2.0/": { + "acronym": "PRISM", + "field_of_science": [], + "id": "prism-publishing-industry-standard-metadata.yml", + "identifier": [ + "fuji:m27", + "https://fairsharing.org/4689" + ], + "subject_areas": null, + "title": "PRISM Publishing Requirements for Industry Standard Metadata" + }, + "http://prismstandard.org/namespaces/basic/2.1/": { + "acronym": "PRISM", + "field_of_science": [], + "id": "prism-publishing-industry-standard-metadata.yml", + "identifier": [ + "fuji:m27", + "https://fairsharing.org/4689" + ], + "subject_areas": null, + "title": "PRISM Publishing Requirements for Industry Standard Metadata" + }, + "http://prismstandard.org/namespaces/basic/3.0/": { + "acronym": "PRISM", + "field_of_science": [], + "id": "prism-publishing-industry-standard-metadata.yml", + "identifier": [ + "fuji:m27", + "https://fairsharing.org/4689" + ], + "subject_areas": null, + "title": "PRISM Publishing Requirements for Industry Standard Metadata" + }, + "http://prismstandard.org/namespaces/pam/0.0/": { + "acronym": "PRISM", + "field_of_science": [], + "id": "prism-publishing-industry-standard-metadata.yml", + "identifier": [ + "fuji:m27", + "https://fairsharing.org/4689" + ], + "subject_areas": null, + "title": "PRISM Publishing Requirements for Industry Standard Metadata" + }, + "http://prismstandard.org/namespaces/pam/1.2/": { + "acronym": "PRISM", + "field_of_science": [], + "id": "prism-publishing-industry-standard-metadata.yml", + "identifier": [ + "fuji:m27", + "https://fairsharing.org/4689" + ], + "subject_areas": null, + "title": "PRISM Publishing Requirements for Industry Standard Metadata" + }, + "http://prismstandard.org/namespaces/pam/2.0/": { + "acronym": "PRISM", + "field_of_science": [], + "id": "prism-publishing-industry-standard-metadata.yml", + "identifier": [ + "fuji:m27", + "https://fairsharing.org/4689" + ], + "subject_areas": null, + "title": "PRISM Publishing Requirements for Industry Standard Metadata" + }, + "http://prismstandard.org/namespaces/pam/2.1/": { + "acronym": "PRISM", + "field_of_science": [], + "id": "prism-publishing-industry-standard-metadata.yml", + "identifier": [ + "fuji:m27", + "https://fairsharing.org/4689" + ], + "subject_areas": null, + "title": "PRISM Publishing Requirements for Industry Standard Metadata" + }, + "http://prismstandard.org/namespaces/pam/3.0/": { + "acronym": "PRISM", + "field_of_science": [], + "id": "prism-publishing-industry-standard-metadata.yml", + "identifier": [ + "fuji:m27", + "https://fairsharing.org/4689" + ], + "subject_areas": null, + "title": "PRISM Publishing Requirements for Industry Standard Metadata" + }, + "http://prismstandard.org/namespaces/pim/1.2/": { + "acronym": "PRISM", + "field_of_science": [], + "id": "prism-publishing-industry-standard-metadata.yml", + "identifier": [ + "fuji:m27", + "https://fairsharing.org/4689" + ], + "subject_areas": null, + "title": "PRISM Publishing Requirements for Industry Standard Metadata" + }, + "http://prsinfo.clinicaltrials.gov/definitions.html": { + "acronym": null, + "field_of_science": [ + "medical and health sciences", + "clinical medicine" + ], + "id": "protocol-data-element-definitions.yml", + "identifier": [ + "msc:m32", + "http://www.dcc.ac.uk/resources/metadata-standards/protocol-data-element-definitions", + "https://doi.org/10.25504/FAIRsharing.7e962d" + ], + "subject_areas": [ + "Clinical medicine" + ], + "title": "Protocol Data Element Definitions" + }, + "http://purl.org/agmes/1.1/": { + "acronym": "AgMES", + "field_of_science": [ + "animal and dairy science", + "agriculture", + "agricultural sciences", + "fisheries" + ], + "id": "agmes-agricultural-metadata-element-set.yml", + "identifier": [ + "msc:m2", + "https://doi.org/10.25504/FAIRsharing.vd694s", + "http://www.dcc.ac.uk/resources/metadata-standards/agmes-agricultural-metadata-element-set" + ], + "subject_areas": [ + "Agricultural economics", + "Agriculture", + "Aquaculture", + "Livestock" + ], + "title": "AgMES (Agricultural Metadata Element Set)" + }, + "http://purl.org/dc/dcmitype/": { + "acronym": "DC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core.yml", + "identifier": [ + "msc:m15", + "https://doi.org/10.25504/FAIRsharing.3nx7t", + "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dublin Core" + }, + "http://purl.org/dc/elements/1.1/": { + "acronym": "DC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core.yml", + "identifier": [ + "msc:m15", + "https://doi.org/10.25504/FAIRsharing.3nx7t", + "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dublin Core" + }, + "http://purl.org/dc/terms/": { + "acronym": "DC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core.yml", + "identifier": [ + "msc:m15", + "https://doi.org/10.25504/FAIRsharing.3nx7t", + "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dublin Core" + }, + "http://purl.org/germplasm#": { + "acronym": null, + "field_of_science": [ + "botany", + "natural sciences" + ], + "id": "dwc-germplasm.yml", + "identifier": [ + "msc:m56", + "https://doi.org/10.25504/FAIRsharing.hgsFLe" + ], + "subject_areas": [ + "Botany" + ], + "title": "DwC Germplasm" + }, + "http://purl.org/germplasm/germplasmTerm#": { + "acronym": null, + "field_of_science": [ + "botany", + "natural sciences" + ], + "id": "dwc-germplasm.yml", + "identifier": [ + "msc:m56", + "https://doi.org/10.25504/FAIRsharing.hgsFLe" + ], + "subject_areas": [ + "Botany" + ], + "title": "DwC Germplasm" + }, + "http://purl.org/linked-data/cube#": { + "acronym": null, + "field_of_science": [ + "statistics and probability", + "natural sciences" + ], + "id": "rdf-data-cube-vocabulary.yml", + "identifier": [ + "msc:m35", + "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary", + "https://doi.org/10.25504/FAIRsharing.c3b573" + ], + "subject_areas": [ + "Statistics" + ], + "title": "RDF Data Cube Vocabulary" + }, + "http://quakeml.org/xmlns/quakeml/1.0": { + "acronym": "QuakeML", + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences", + "geophysics" + ], + "id": "quakeml.yml", + "identifier": [ + "fuji:m9", + "https://fairsharing.org/1444" + ], + "subject_areas": [ + "Earth sciences", + "Geophysics" + ], + "title": "QuakeML" + }, + "http://quakeml.org/xmlns/quakeml/1.0.1": { + "acronym": "QuakeML", + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences", + "geophysics" + ], + "id": "quakeml.yml", + "identifier": [ + "fuji:m9", + "https://fairsharing.org/1444" + ], + "subject_areas": [ + "Earth sciences", + "Geophysics" + ], + "title": "QuakeML" + }, + "http://quakeml.org/xmlns/quakeml/1.1": { + "acronym": "QuakeML", + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences", + "geophysics" + ], + "id": "quakeml.yml", + "identifier": [ + "fuji:m9", + "https://fairsharing.org/1444" + ], + "subject_areas": [ + "Earth sciences", + "Geophysics" + ], + "title": "QuakeML" + }, + "http://quakeml.org/xmlns/quakeml/1.2": { + "acronym": "QuakeML", + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences", + "geophysics" + ], + "id": "quakeml.yml", + "identifier": [ + "fuji:m9", + "https://fairsharing.org/1444" + ], + "subject_areas": [ + "Earth sciences", + "Geophysics" + ], + "title": "QuakeML" + }, + "http://quakeml.org/xmlns/quakeml/2.0": { + "acronym": "QuakeML", + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences", + "geophysics" + ], + "id": "quakeml.yml", + "identifier": [ + "fuji:m9", + "https://fairsharing.org/1444" + ], + "subject_areas": [ + "Earth sciences", + "Geophysics" + ], + "title": "QuakeML" + }, + "http://registry.ariadne-infrastructure.eu/": { + "acronym": "ACDM", + "field_of_science": [ + "humanities", + "archaeology" + ], + "id": "ariadne-dataset-catalogue-model.yml", + "identifier": [ + "fuji:m19", + "https://fairsharing.org/4647" + ], + "subject_areas": [ + "Archaeology" + ], + "title": "ARIADNE Dataset Catalogue Model (ACDM)" + }, + "http://repository.clarin.dk/ns/experimental/bibtex": { + "acronym": "BibTeX", + "field_of_science": [], + "id": "bibtex-format.yml", + "identifier": [ + "fuji:m34", + "https://doi.org/10.25504/FAIRsharing.bdf2fe" + ], + "subject_areas": null, + "title": "BibTeX" + }, + "http://repository.stategeothermaldata.org/repository/resource/98ddf901b9782a25982e01af3b0bda50/": { + "acronym": null, + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences" + ], + "id": "usgin-iso-profile.yml", + "identifier": [ + "msc:m81", + "https://doi.org/10.25504/FAIRsharing.c82136" + ], + "subject_areas": [ + "Earth sciences" + ], + "title": "USGIN (US Geoscience Information Network) Metadata Profile" + }, + "http://rs.gbif.org/schema/eml-gbif-profile/": { + "acronym": null, + "field_of_science": [ + "zoology", + "ecology", + "biological sciences", + "botany", + "natural sciences" + ], + "id": "gbif-metadata-profile.yml", + "identifier": [ + "msc:m61" + ], + "subject_areas": [ + "Biogeography", + "Biological diversity", + "Botany", + "Ecology", + "Zoology" + ], + "title": "GBIF Metadata Profile" + }, + "http://rs.gbif.org/schema/eml-gbif-profile/1.0.2/eml-gbif-profile.xsd": { + "acronym": null, + "field_of_science": [ + "zoology", + "ecology", + "biological sciences", + "botany", + "natural sciences" + ], + "id": "gbif-metadata-profile.yml", + "identifier": [ + "msc:m61" + ], + "subject_areas": [ + "Biogeography", + "Biological diversity", + "Botany", + "Ecology", + "Zoology" + ], + "title": "GBIF Metadata Profile" + }, + "http://rs.gbif.org/schema/eml-gbif-profile/1.1/eml-gbif-profile.xsd": { + "acronym": null, + "field_of_science": [ + "zoology", + "ecology", + "biological sciences", + "botany", + "natural sciences" + ], + "id": "gbif-metadata-profile.yml", + "identifier": [ + "msc:m61" + ], + "subject_areas": [ + "Biogeography", + "Biological diversity", + "Botany", + "Ecology", + "Zoology" + ], + "title": "GBIF Metadata Profile" + }, + "http://rs.tdwg.org/dwc/index.htm": { + "acronym": "DwC", + "field_of_science": [ + "oceanography", + "cartography", + "ecology", + "physical geography", + "zoology", + "earth and related environmental sciences", + "biological sciences", + "palaeontology", + "marine biology", + "botany", + "natural sciences" + ], + "id": "darwin-core.yml", + "identifier": [ + "msc:m9", + "https://doi.org/10.25504/FAIRsharing.xvf5y3", + "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core" + ], + "subject_areas": [ + "Biogeography", + "Biological diversity", + "Botany", + "Cartography", + "Earth sciences", + "Ecology", + "Marine animals", + "Oceanography", + "Palaeontology", + "Physical geography", + "Topography", + "Zoology" + ], + "title": "Darwin Core" + }, + "http://rs.tdwg.org/dwc/iri/": { + "acronym": "DwC", + "field_of_science": [ + "oceanography", + "cartography", + "ecology", + "physical geography", + "zoology", + "earth and related environmental sciences", + "biological sciences", + "palaeontology", + "marine biology", + "botany", + "natural sciences" + ], + "id": "darwin-core.yml", + "identifier": [ + "msc:m9", + "https://doi.org/10.25504/FAIRsharing.xvf5y3", + "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core" + ], + "subject_areas": [ + "Biogeography", + "Biological diversity", + "Botany", + "Cartography", + "Earth sciences", + "Ecology", + "Marine animals", + "Oceanography", + "Palaeontology", + "Physical geography", + "Topography", + "Zoology" + ], + "title": "Darwin Core" + }, + "http://rs.tdwg.org/dwc/terms/": { + "acronym": "DwC", + "field_of_science": [ + "oceanography", + "cartography", + "ecology", + "physical geography", + "zoology", + "earth and related environmental sciences", + "biological sciences", + "palaeontology", + "marine biology", + "botany", + "natural sciences" + ], + "id": "darwin-core.yml", + "identifier": [ + "msc:m9", + "https://doi.org/10.25504/FAIRsharing.xvf5y3", + "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core" + ], + "subject_areas": [ + "Biogeography", + "Biological diversity", + "Botany", + "Cartography", + "Earth sciences", + "Ecology", + "Marine animals", + "Oceanography", + "Palaeontology", + "Physical geography", + "Topography", + "Zoology" + ], + "title": "Darwin Core" + }, + "http://rs.tdwg.org/dwc/xsd/tdwg_dwc_simple.xsd": { + "acronym": "DwC", + "field_of_science": [ + "oceanography", + "cartography", + "ecology", + "physical geography", + "zoology", + "earth and related environmental sciences", + "biological sciences", + "palaeontology", + "marine biology", + "botany", + "natural sciences" + ], + "id": "darwin-core.yml", + "identifier": [ + "msc:m9", + "https://doi.org/10.25504/FAIRsharing.xvf5y3", + "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core" + ], + "subject_areas": [ + "Biogeography", + "Biological diversity", + "Botany", + "Cartography", + "Earth sciences", + "Ecology", + "Marine animals", + "Oceanography", + "Palaeontology", + "Physical geography", + "Topography", + "Zoology" + ], + "title": "Darwin Core" + }, + "http://schema.datacite.org": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://schema.datacite.org/meta/kernel-2.1/doc/DataCite-MetadataKernel_v2.2.pdf": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://schema.datacite.org/meta/kernel-2.1/metadata.xsd": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://schema.datacite.org/meta/kernel-2.2/doc/DataCite-MetadataKernel_v2.2.pdf": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://schema.datacite.org/meta/kernel-2.2/metadata.xsd": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://schema.datacite.org/meta/kernel-3.0/doc/DataCite-MetadataKernel_v3.0.pdf": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://schema.datacite.org/meta/kernel-3.0/metadata.xsd": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://schema.datacite.org/meta/kernel-3.1/doc/DataCite-MetadataKernel_v3.1.pdf": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://schema.datacite.org/meta/kernel-3.1/metadata.xsd": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://schema.datacite.org/meta/kernel-4.0/doc/DataCite-MetadataKernel_v4.0.pdf": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://schema.datacite.org/meta/kernel-4.0/metadata.xsd": { + "acronym": "datacite", + "field_of_science": [ + "sciences" + ], + "id": "datacite-metadata-schema.yml", + "identifier": [ + "msc:m11", + "https://doi.org/10.25504/FAIRsharing.me4qwe", + "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DataCite Metadata Schema" + }, + "http://schema.org": { + "acronym": "schemaorg", + "field_of_science": [ + "sciences" + ], + "id": "schemaorg.yml", + "identifier": [ + "https://doi.org/10.25504/FAIRsharing.hzdzq8", + "msc:m101" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Schema.org" + }, + "http://schema.ukeof.org.uk/": { + "acronym": null, + "field_of_science": [ + "hydrology", + "ecology", + "climatology", + "biological sciences", + "engineering and technology", + "soil sciences", + "remote sensing", + "meteorology", + "natural sciences", + "geology" + ], + "id": "ukeof.yml", + "identifier": [ + "msc:m40", + "https://doi.org/10.25504/FAIRsharing.9xytp6" + ], + "subject_areas": [ + "Biogeography", + "Biological diversity", + "Climatology", + "Ecology", + "Geology", + "Hydrology", + "Meteorology", + "Remote sensing", + "Soil sciences" + ], + "title": "UKEOF" + }, + "http://schemas.aodn.org.au": { + "acronym": "AODN", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences" + ], + "id": "marine-community-profile.yml", + "identifier": [ + "msc:m71", + "https://doi.org/10.25504/FAIRsharing.18b8b4" + ], + "subject_areas": [ + "Climatology", + "Earth sciences", + "Glaciology", + "Hydrology", + "Meteorology", + "Oceanography" + ], + "title": "AODN Marine Community Profile" + }, + "http://schemas.aodn.org.au/mcp-2.0": { + "acronym": "AODN", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences" + ], + "id": "marine-community-profile.yml", + "identifier": [ + "msc:m71", + "https://doi.org/10.25504/FAIRsharing.18b8b4" + ], + "subject_areas": [ + "Climatology", + "Earth sciences", + "Glaciology", + "Hydrology", + "Meteorology", + "Oceanography" + ], + "title": "AODN Marine Community Profile" + }, + "http://schemas.aodn.org.au/mcp-2.0/schema.xsd": { + "acronym": "AODN", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences" + ], + "id": "marine-community-profile.yml", + "identifier": [ + "msc:m71", + "https://doi.org/10.25504/FAIRsharing.18b8b4" + ], + "subject_areas": [ + "Climatology", + "Earth sciences", + "Glaciology", + "Hydrology", + "Meteorology", + "Oceanography" + ], + "title": "AODN Marine Community Profile" + }, + "http://schemas.opengis.net/csw/2.0.2/CSW-publication.xsd": { + "acronym": "CSW", + "field_of_science": [ + "cartography", + "earth and related environmental sciences", + "natural sciences" + ], + "id": "csw-catalogue-schema.yml", + "identifier": [ + "fuji:m32", + "https://fairsharing.org/4650", + null, + null + ], + "subject_areas": [ + "Cartography", + "Earth sciences" + ], + "title": "Catalogue Service for the Web" + }, + "http://schemas.opengis.net/georss/1.0/": { + "acronym": null, + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences" + ], + "id": "georss-encoding-standard.yml", + "identifier": [ + "fuji:m1", + "https://fairsharing.org/4663" + ], + "subject_areas": [ + "Earth sciences" + ], + "title": "GeoRSS" + }, + "http://schemas.opengis.net/gml/3.2.1/gml.xsd": { + "acronym": null, + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "cartography", + "physical geography", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences", + "geology" + ], + "id": "iso-19136.yml", + "identifier": [ + "fuji:m3", + "https://doi.org/10.25504/FAIRsharing.d69ee0" + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Geology", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "Geography Markup Language" + }, + "http://schemas.opengis.net/om/2.0/": { + "acronym": null, + "field_of_science": [ + "engineering and technology", + "chemical sciences", + "remote sensing", + "meteorology", + "natural sciences", + "geology" + ], + "id": "observations-and-measurements.yml", + "identifier": [ + "msc:m28", + "https://doi.org/10.25504/FAIRsharing.4ehmy9", + "http://www.dcc.ac.uk/resources/metadata-standards/observations-and-measurements" + ], + "subject_areas": [ + "Chemistry", + "Geology", + "Meteorology", + "Remote sensing" + ], + "title": "Observations and Measurements" + }, + "http://schemas.seadatanet.org/Standards-Software/Metadata-formats/SDN_CSR_ISO19139_5.2.0.xsd": { + "acronym": "CSR", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences" + ], + "id": "cruise-summary-reports.yml", + "identifier": [ + "msc:m52", + "https://doi.org/10.25504/FAIRsharing.e36460" + ], + "subject_areas": [ + "Climatology", + "Earth sciences", + "Glaciology", + "Hydrology", + "Meteorology", + "Oceanography" + ], + "title": "Cruise Summary Reports" + }, + "http://sdmx.org": { + "acronym": null, + "field_of_science": [ + "political sciences", + "social geography", + "statistics and probability", + "demography", + "social sciences", + "economics", + "natural sciences" + ], + "id": "sdmx-statistical-data-and-metadata-exchange.yml", + "identifier": [ + "msc:m38", + "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", + "https://doi.org/10.25504/FAIRsharing.cea9zc" + ], + "subject_areas": [ + "Demography", + "Economics", + "Human geography", + "Social policy", + "Statistics" + ], + "title": "SDMX (Statistical Data and Metadata Exchange)" + }, + "http://sdmx.org/?page_id=5008": { + "acronym": null, + "field_of_science": [ + "political sciences", + "social geography", + "statistics and probability", + "demography", + "social sciences", + "economics", + "natural sciences" + ], + "id": "sdmx-statistical-data-and-metadata-exchange.yml", + "identifier": [ + "msc:m38", + "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", + "https://doi.org/10.25504/FAIRsharing.cea9zc" + ], + "subject_areas": [ + "Demography", + "Economics", + "Human geography", + "Social policy", + "Statistics" + ], + "title": "SDMX (Statistical Data and Metadata Exchange)" + }, + "http://services.ands.org.au/documentation/rifcs/schema/registryObjects.xsd": { + "acronym": "RIF-CS", + "field_of_science": [ + "sciences" + ], + "id": "rif-cs-registry-interchange-format-collections-and-services.yml", + "identifier": [ + "msc:m98", + "https://doi.org/10.25504/FAIRsharing.reybx2" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RIF-CS (Registry Interchange Format \u00e2\u20ac\u201c Collections and Services)" + }, + "http://services.ands.org.au/documentation/rifcs/schemadocs/registryObjects.html": { + "acronym": "RIF-CS", + "field_of_science": [ + "sciences" + ], + "id": "rif-cs-registry-interchange-format-collections-and-services.yml", + "identifier": [ + "msc:m98", + "https://doi.org/10.25504/FAIRsharing.reybx2" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RIF-CS (Registry Interchange Format \u00e2\u20ac\u201c Collections and Services)" + }, + "http://snrnasm.bio.unc.edu": { + "acronym": null, + "field_of_science": [ + "biochemistry", + "cell biology", + "natural sciences" + ], + "id": "snrnasm-isa-tab.yml", + "identifier": [ + "msc:m76" + ], + "subject_areas": [ + "Biochemistry", + "Cell biology" + ], + "title": "SNRNASM ISA-Tab" + }, + "http://standards.iso.org/iso/19115/-3/": { + "acronym": "ISO19115", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "cartography", + "physical geography", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences", + "geology" + ], + "id": "iso-19115.yml", + "identifier": [ + "msc:m22", + "https://doi.org/10.25504/FAIRsharing.t7mby9" + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Geology", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "ISO 19115" + }, + "http://standards.iso.org/iso/19115/-3/mdb/2.0": { + "acronym": "ISO19115", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "cartography", + "physical geography", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences", + "geology" + ], + "id": "iso-19115.yml", + "identifier": [ + "msc:m22", + "https://doi.org/10.25504/FAIRsharing.t7mby9" + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Geology", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "ISO 19115" + }, + "http://standards.iso.org/iso/19115/-3/mds/1.0": { + "acronym": "ISO19115", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "cartography", + "physical geography", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences", + "geology" + ], + "id": "iso-19115.yml", + "identifier": [ + "msc:m22", + "https://doi.org/10.25504/FAIRsharing.t7mby9" + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Geology", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "ISO 19115" + }, + "http://standards.iso.org/iso/19115/-3/mds/2.0": { + "acronym": "ISO19115", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "cartography", + "physical geography", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences", + "geology" + ], + "id": "iso-19115.yml", + "identifier": [ + "msc:m22", + "https://doi.org/10.25504/FAIRsharing.t7mby9" + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Geology", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "ISO 19115" + }, + "http://usgin.github.io/usginspecs/USGIN_ISO_Metadata.htm": { + "acronym": null, + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences" + ], + "id": "usgin-iso-profile.yml", + "identifier": [ + "msc:m81", + "https://doi.org/10.25504/FAIRsharing.c82136" + ], + "subject_areas": [ + "Earth sciences" + ], + "title": "USGIN (US Geoscience Information Network) Metadata Profile" + }, + "http://varioml.org/xml/1.0": { + "acronym": null, + "field_of_science": [ + "genetics", + "natural sciences" + ], + "id": "varioml.yml", + "identifier": [ + "msc:m82", + "https://doi.org/10.25504/FAIRsharing.pxvkt0" + ], + "subject_areas": [ + "Genetics" + ], + "title": "VarioML" + }, + "http://w3id.org/meta-share/meta-share/": { + "acronym": "META-SHARE", + "field_of_science": [ + "linguistics", + "humanities" + ], + "id": "metashare-metadata.yml", + "identifier": [ + "fuji:m12", + "https://fairsharing.org/4665" + ], + "subject_areas": [ + "Humanities", + "Linguistics" + ], + "title": "Metadata Schema for the Description of Language Resources" + }, + "http://wiki.datadryad.org/Metadata_Profile": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "dryad-metadata-application-profile.yml", + "identifier": [ + "msc:m55" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Dryad Metadata Application Profile" + }, + "http://wiki.ecrystals.chem.soton.ac.uk/images/9/9d/ECrystals-WP4-PM-Final.pdf": { + "acronym": null, + "field_of_science": [ + "crystallography", + "natural sciences" + ], + "id": "tidcc-towards-international-data-commons-crystallography.yml", + "identifier": [ + "msc:m78", + "https://fairsharing.org/208" + ], + "subject_areas": [ + "Crystallography" + ], + "title": "TIDCC (Towards an International Data Commons for Crystallography)" + }, + "http://wiki.tdwg.org/ABCD": { + "acronym": "ABCD", + "field_of_science": [ + "zoology", + "earth and related environmental sciences", + "biological sciences", + "palaeontology", + "botany", + "genetics", + "natural sciences", + "geology" + ], + "id": "abcd-access-biological-collection-data.yml", + "identifier": [ + "msc:m1", + "https://doi.org/10.25504/FAIRsharing.kr3215", + "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Earth sciences", + "Genetics", + "Geology", + "Palaeontology", + "Zoology" + ], + "title": "ABCD (Access to Biological Collection Data)" + }, + "http://wiki.tdwg.org/twiki/bin/view/DarwinCore/GeospatialExtension": { + "acronym": "DwC-S", + "field_of_science": [ + "biological sciences", + "cartography", + "natural sciences", + "physical geography" + ], + "id": "darwin-core-geospatial-extension.yml", + "identifier": [ + "msc:m54", + "https://doi.org/10.25504/FAIRsharing.76c06d" + ], + "subject_areas": [ + "Biogeography", + "Cartography", + "Topography" + ], + "title": "Darwin Core Geospatial Extension" + }, + "http://www.agi.org.uk/uk-gemini/": { + "acronym": null, + "field_of_science": [ + "cartography", + "natural sciences", + "physical geography" + ], + "id": "uk-gemini.yml", + "identifier": [ + "msc:m80", + "https://doi.org/10.25504/FAIRsharing.b49fab" + ], + "subject_areas": [ + "Cartography", + "Geography", + "Topography" + ], + "title": "UK Gemini" + }, + "http://www.agls.gov.au": { + "acronym": "AGLS", + "field_of_science": [ + "sciences" + ], + "id": "agls-metadata-profile.yml", + "identifier": [ + "msc:m44", + "https://fairsharing.org/751" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "AGLS Metadata Profile" + }, + "http://www.agls.gov.au/agls/terms/": { + "acronym": "AGLS", + "field_of_science": [ + "sciences" + ], + "id": "agls-metadata-profile.yml", + "identifier": [ + "msc:m44", + "https://fairsharing.org/751" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "AGLS Metadata Profile" + }, + "http://www.aodc.org.au/index.php?id=37": { + "acronym": "AODN", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences" + ], + "id": "marine-community-profile.yml", + "identifier": [ + "msc:m71", + "https://doi.org/10.25504/FAIRsharing.18b8b4" + ], + "subject_areas": [ + "Climatology", + "Earth sciences", + "Glaciology", + "Hydrology", + "Meteorology", + "Oceanography" + ], + "title": "AODN Marine Community Profile" + }, + "http://www.bibtex.org/": { + "acronym": "BibTeX", + "field_of_science": [], + "id": "bibtex-format.yml", + "identifier": [ + "fuji:m34", + "https://doi.org/10.25504/FAIRsharing.bdf2fe" + ], + "subject_areas": null, + "title": "BibTeX" + }, + "http://www.carare.eu/carareSchema": { + "acronym": "CARARE", + "field_of_science": [ + "humanities", + "archaeology", + "history", + "architectural design" + ], + "id": "carare-metadata-schema.yml", + "identifier": [ + "msc:m49", + "https://doi.org/10.25504/FAIRsharing.ba7c93" + ], + "subject_areas": [ + "Archaeology", + "Architecture", + "Cultural heritage", + "Cultural property preservation", + "History" + ], + "title": "CARARE metadata schema" + }, + "http://www.cessda.org/sharing/managing/3/": { + "acronym": null, + "field_of_science": [ + "social geography", + "demography", + "social sciences", + "economics", + "sociology" + ], + "id": "cessda-mli-council-european-social-science-data-archives-minimum-level-inf.yml", + "identifier": [ + "msc:m50", + "https://fairsharing.org/4272" + ], + "subject_areas": [ + "Demography", + "Economics", + "Land use", + "Sociology" + ], + "title": "CESSDA MLI - Council of European Social Science Data Archives Minimum Level of Information" + }, + "http://www.clarin.eu/cmd/": { + "acronym": "CMDI", + "field_of_science": [ + "linguistics", + "humanities", + "languages and literature" + ], + "id": "cmd-component-metadata.yml", + "identifier": [ + "fuji:m6", + "https://doi.org/10.25504/FAIRsharing.2e0599" + ], + "subject_areas": [ + "Linguistics", + "Languages" + ], + "title": "Component MetaData Specification (CMDI)" + }, + "http://www.clarin.eu/cmd/1": { + "acronym": "CMDI", + "field_of_science": [ + "linguistics", + "humanities", + "languages and literature" + ], + "id": "cmd-component-metadata.yml", + "identifier": [ + "fuji:m6", + "https://doi.org/10.25504/FAIRsharing.2e0599" + ], + "subject_areas": [ + "Linguistics", + "Languages" + ], + "title": "Component MetaData Specification (CMDI)" + }, + "http://www.clarin.eu/cmd/1/profiles/clarin.eu:cr1:p_1290431694484": { + "acronym": "CMDI", + "field_of_science": [ + "linguistics", + "humanities", + "languages and literature" + ], + "id": "cmd-component-metadata.yml", + "identifier": [ + "fuji:m6", + "https://doi.org/10.25504/FAIRsharing.2e0599" + ], + "subject_areas": [ + "Linguistics", + "Languages" + ], + "title": "Component MetaData Specification (CMDI)" + }, + "http://www.communicatingastronomy.org/avm/1.0/": { + "acronym": "AVM", + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "avm-astronomy-visualization-metadata.yml", + "identifier": [ + "msc:m3", + "https://doi.org/10.25504/FAIRsharing.338ze0", + "http://www.dcc.ac.uk/resources/metadata-standards/avm-astronomy-visualization-metadata" + ], + "subject_areas": [ + "Astronomy" + ], + "title": "AVM (Astronomy Visualization Metadata)" + }, + "http://www.crossref.org/schema/4.3.7": { + "acronym": "crossref", + "field_of_science": [ + "sciences" + ], + "id": "crossref-schema.yml", + "identifier": [ + "fuji:m40", + "https://doi.org/10.25504/FAIRsharing.bbQbSW" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Crossref Schema" + }, + "http://www.crossref.org/schema/4.4.0": { + "acronym": "crossref", + "field_of_science": [ + "sciences" + ], + "id": "crossref-schema.yml", + "identifier": [ + "fuji:m40", + "https://doi.org/10.25504/FAIRsharing.bbQbSW" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Crossref Schema" + }, + "http://www.crossref.org/schema/4.4.1": { + "acronym": "crossref", + "field_of_science": [ + "sciences" + ], + "id": "crossref-schema.yml", + "identifier": [ + "fuji:m40", + "https://doi.org/10.25504/FAIRsharing.bbQbSW" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Crossref Schema" + }, + "http://www.crossref.org/schema/4.4.2": { + "acronym": "crossref", + "field_of_science": [ + "sciences" + ], + "id": "crossref-schema.yml", + "identifier": [ + "fuji:m40", + "https://doi.org/10.25504/FAIRsharing.bbQbSW" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Crossref Schema" + }, + "http://www.crossref.org/schema/4.8.1": { + "acronym": "crossref", + "field_of_science": [ + "sciences" + ], + "id": "crossref-schema.yml", + "identifier": [ + "fuji:m40", + "https://doi.org/10.25504/FAIRsharing.bbQbSW" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Crossref Schema" + }, + "http://www.crossref.org/schema/5.3.1": { + "acronym": "crossref", + "field_of_science": [ + "sciences" + ], + "id": "crossref-schema.yml", + "identifier": [ + "fuji:m40", + "https://doi.org/10.25504/FAIRsharing.bbQbSW" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Crossref Schema" + }, + "http://www.d-nb.de/standards/xMetaDiss/": { + "acronym": "xmetadiss", + "field_of_science": [ + "humanities", + "sciences", + "library sciences" + ], + "id": "xmetadiss-schema.yml", + "identifier": [ + "fuji:m43" + ], + "subject_areas": [ + "Multidisciplinary", + "Bibliographic standards", + "Information/library standards" + ], + "title": "XmetaDiss" + }, + "http://www.d-nb.de/standards/xmetadissplus/": { + "acronym": "xmetadiss", + "field_of_science": [ + "humanities", + "sciences", + "library sciences" + ], + "id": "xmetadiss-schema.yml", + "identifier": [ + "fuji:m43" + ], + "subject_areas": [ + "Multidisciplinary", + "Bibliographic standards", + "Information/library standards" + ], + "title": "XmetaDiss" + }, + "http://www.da-ra.de/fileadmin/media/da-ra.de/Technik/dara_v3.1_de_en_18112014.xsd": { + "acronym": "da|ra", + "field_of_science": [ + "social sciences", + "political sciences", + "sociology" + ], + "id": "dara-metadata-schema.yml", + "identifier": [ + "fuji:m10", + "https://fairsharing.org/4651" + ], + "subject_areas": [ + "Social policy", + "Sociology" + ], + "title": "da|ra Metadata Schema" + }, + "http://www.data-archive.ac.uk/create-manage/projects/qudex?index=1": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "qudex-qualitative-data-exchange-format.yml", + "identifier": [ + "msc:m34", + "http://www.dcc.ac.uk/resources/metadata-standards/qudex-qualitative-data-exchange-format", + "https://doi.org/10.25504/FAIRsharing.d42cb9" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "QuDEx (Qualitative Data Exchange Format)" + }, + "http://www.data-archive.ac.uk/dext/schema/draft": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "qudex-qualitative-data-exchange-format.yml", + "identifier": [ + "msc:m34", + "http://www.dcc.ac.uk/resources/metadata-standards/qudex-qualitative-data-exchange-format", + "https://doi.org/10.25504/FAIRsharing.d42cb9" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "QuDEx (Qualitative Data Exchange Format)" + }, + "http://www.ddb.de/professionell/MARC21/plus": { + "acronym": "MARC", + "field_of_science": [ + "humanities", + "sciences", + "library sciences" + ], + "id": "marc-machine-readable-cataloging.yml", + "identifier": [ + "msc:m88", + "https://doi.org/10.25504/FAIRsharing.217b1b" + ], + "subject_areas": [ + "Multidisciplinary", + "Bibliographic standards", + "Information/library standards" + ], + "title": "MARC (Machine-Readable Cataloging)" + }, + "http://www.ddialliance.org/": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "http://www.ddialliance.org/DDI/schema/ddi3.1/dataset.xsd": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "http://www.ddialliance.org/Specification/": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "http://www.dlib.org/dlib/november03/bekaert/11bekaert.html": { + "acronym": "DIDL", + "field_of_science": [ + "sciences" + ], + "id": "didl-digital-item-declaration-language.yml", + "identifier": [ + "fuji:m4", + "https://fairsharing.org/4652" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Digital Item Declaration Language (DIDL)" + }, + "http://www.dnabank-network.org/schemas/ABCDDNA": { + "acronym": "ABCDDNA", + "field_of_science": [ + "genetics", + "natural sciences" + ], + "id": "abcddna.yml", + "identifier": [ + "msc:m42", + "https://doi.org/10.25504/FAIRsharing.7tx4ac" + ], + "subject_areas": [ + "Genetics" + ], + "title": "ABCDDNA" + }, + "http://www.dnabank-network.org/schemas/ABCDDNA/ABCDDNA.xsd": { + "acronym": "ABCDDNA", + "field_of_science": [ + "genetics", + "natural sciences" + ], + "id": "abcddna.yml", + "identifier": [ + "msc:m42", + "https://doi.org/10.25504/FAIRsharing.7tx4ac" + ], + "subject_areas": [ + "Genetics" + ], + "title": "ABCDDNA" + }, + "http://www.dspace.org/xmlns/dspace/dim": { + "acronym": "dspace-dim", + "field_of_science": [], + "id": "dim-dspace-intermediate-format.yml", + "identifier": [ + "fuji:m36" + ], + "subject_areas": null, + "title": "DSpace Intermediate Metadata Format" + }, + "http://www.ecb.int/stats/services/sdmx/html/index.en.html": { + "acronym": null, + "field_of_science": [ + "political sciences", + "statistics and probability", + "social sciences", + "economics", + "natural sciences" + ], + "id": "gesmests-generic-statistical-message-time-series.yml", + "identifier": [ + "msc:m62" + ], + "subject_areas": [ + "Economics", + "Social policy", + "Statistics" + ], + "title": "GESMES/TS (Generic Statistical Message for Time Series)" + }, + "http://www.ecpgr.cgiar.org/fileadmin/templates/ecpgr.org/upload/MISC/EURISCO_Descriptors.pdf": { + "acronym": null, + "field_of_science": [], + "id": "eurisco-descriptors.yml", + "identifier": [ + "msc:m85" + ], + "subject_areas": null, + "title": "EURISCO Descriptors" + }, + "http://www.editeur.org/onix/2.1/short": { + "acronym": "onix", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "onix-metadata-schema.yml", + "identifier": [ + "fuji:m42", + "https://fairsharing.org/4683" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "ONIX for Books Product Information Message" + }, + "http://www.editeur.org/onix/2.1/short/ONIX_BookProduct_Release2.1_short": { + "acronym": "onix", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "onix-metadata-schema.yml", + "identifier": [ + "fuji:m42", + "https://fairsharing.org/4683" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "ONIX for Books Product Information Message" + }, + "http://www.english-heritage.org.uk/content/publications/publicationsNew/guidelines-standards/midas-heritage/midas-heritage-2012-v1_1.pdf": { + "acronym": "MIDAS", + "field_of_science": [ + "humanities", + "archaeology", + "history", + "architectural design" + ], + "id": "midas-heritage.yml", + "identifier": [ + "msc:m24", + "https://doi.org/10.25504/FAIRsharing.q0hgq", + "http://www.dcc.ac.uk/resources/metadata-standards/midas-heritage" + ], + "subject_areas": [ + "Archaeology", + "Architecture", + "Cultural heritage", + "Cultural property preservation", + "History" + ], + "title": "MIDAS-Heritage" + }, + "http://www.english-heritage.org.uk/publications/midas-heritage/": { + "acronym": "MIDAS", + "field_of_science": [ + "humanities", + "archaeology", + "history", + "architectural design" + ], + "id": "midas-heritage.yml", + "identifier": [ + "msc:m24", + "https://doi.org/10.25504/FAIRsharing.q0hgq", + "http://www.dcc.ac.uk/resources/metadata-standards/midas-heritage" + ], + "subject_areas": [ + "Archaeology", + "Architecture", + "Cultural heritage", + "Cultural property preservation", + "History" + ], + "title": "MIDAS-Heritage" + }, + "http://www.escience.clrc.ac.uk/schemas/scientific": { + "acronym": "CSMD", + "field_of_science": [ + "crystallography", + "engineering and technology", + "biochemistry", + "chemical sciences", + "materials engineering", + "natural sciences" + ], + "id": "csmd-cclrc-core-scientific-metadata-model.yml", + "identifier": [ + "msc:m8", + "https://doi.org/10.25504/FAIRsharing.30fk89", + "http://www.dcc.ac.uk/resources/metadata-standards/csmd-cclrc-core-scientific-metadata-model" + ], + "subject_areas": [ + "Biochemistry", + "Chemistry", + "Crystallography", + "Materials engineering" + ], + "title": "CSMD (Core Scientific Metadata Model)" + }, + "http://www.eurocris.org/Uploads/Web%20pages/CERIF-1.6/documentation/MInfo.html": { + "acronym": "CERIF", + "field_of_science": [ + "sciences" + ], + "id": "cerif.yml", + "identifier": [ + "msc:m4", + "https://doi.org/10.25504/FAIRsharing.6945dq" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "CERIF (Common European Research Information Format)" + }, + "http://www.eurocris.org/cerif/main-features-cerif": { + "acronym": "CERIF", + "field_of_science": [ + "sciences" + ], + "id": "cerif.yml", + "identifier": [ + "msc:m4", + "https://doi.org/10.25504/FAIRsharing.6945dq" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "CERIF (Common European Research Information Format)" + }, + "http://www.eurocris.org/ontologies/cerif/1.3#": { + "acronym": "CERIF", + "field_of_science": [ + "sciences" + ], + "id": "cerif.yml", + "identifier": [ + "msc:m4", + "https://doi.org/10.25504/FAIRsharing.6945dq" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "CERIF (Common European Research Information Format)" + }, + "http://www.europeana.eu/schemas/edm": { + "acronym": "EDM", + "field_of_science": [ + "humanities" + ], + "id": "edm-europeana-data-model.yml", + "identifier": [ + "fuji:m33", + "https://fairsharing.org/4653" + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "Europeana Data Model (EDM)" + }, + "http://www.europeana.eu/schemas/edm/": { + "acronym": "EDM", + "field_of_science": [ + "humanities" + ], + "id": "edm-europeana-data-model.yml", + "identifier": [ + "fuji:m33", + "https://fairsharing.org/4653" + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "Europeana Data Model (EDM)" + }, + "http://www.europeana.eu/schemas/ese/": { + "acronym": "EDM", + "field_of_science": [ + "humanities" + ], + "id": "edm-europeana-data-model.yml", + "identifier": [ + "fuji:m33", + "https://fairsharing.org/4653" + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "Europeana Data Model (EDM)" + }, + "http://www.fao.org/agris": { + "acronym": "AGRIS", + "field_of_science": [ + "animal and dairy science", + "agriculture", + "agricultural sciences", + "fisheries" + ], + "id": "agris-application-profile.yml", + "identifier": [ + "msc:m45", + "https://doi.org/10.25504/FAIRsharing.32e620" + ], + "subject_areas": [ + "Agricultural economics", + "Agriculture", + "Aquaculture", + "Livestock" + ], + "title": "AGRIS Application Profile" + }, + "http://www.fao.org/docrep/008/ae909e/ae909e00.htm": { + "acronym": "AGRIS", + "field_of_science": [ + "animal and dairy science", + "agriculture", + "agricultural sciences", + "fisheries" + ], + "id": "agris-application-profile.yml", + "identifier": [ + "msc:m45", + "https://doi.org/10.25504/FAIRsharing.32e620" + ], + "subject_areas": [ + "Agricultural economics", + "Agriculture", + "Aquaculture", + "Livestock" + ], + "title": "AGRIS Application Profile" + }, + "http://www.fdsn.org/xml/station/": { + "acronym": null, + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences", + "geophysics" + ], + "id": "fdsn-seismograph.yml", + "identifier": [ + "fuji:m8", + "https://fairsharing.org/1434" + ], + "subject_areas": [ + "Earth sciences", + "Geophysics" + ], + "title": "International Federation of Digital Seismograph Networks StationXML (FDSN StationXML)" + }, + "http://www.fdsn.org/xml/station/1": { + "acronym": null, + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences", + "geophysics" + ], + "id": "fdsn-seismograph.yml", + "identifier": [ + "fuji:m8", + "https://fairsharing.org/1434" + ], + "subject_areas": [ + "Earth sciences", + "Geophysics" + ], + "title": "International Federation of Digital Seismograph Networks StationXML (FDSN StationXML)" + }, + "http://www.fgdc.gov/metadata/csdgm/index_html": { + "acronym": "fgdc", + "field_of_science": [ + "oceanography", + "hydrology", + "social sciences", + "cartography", + "physical geography", + "climatology", + "social geography", + "marine biology", + "biochemistry", + "meteorology", + "natural sciences" + ], + "id": "fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge.yml", + "identifier": [ + "msc:m17", + "https://fairsharing.org/1445", + "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge" + ], + "subject_areas": [ + "Biochemistry", + "Cartography", + "Climatology", + "Geography", + "Hydrology", + "Land use", + "Marine biology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "FGDC/CSDGM (Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata)" + }, + "http://www.fgdc.gov/metadata/geospatial-metadata-standards/": { + "acronym": "fgdc", + "field_of_science": [ + "oceanography", + "hydrology", + "social sciences", + "cartography", + "physical geography", + "climatology", + "social geography", + "marine biology", + "biochemistry", + "meteorology", + "natural sciences" + ], + "id": "fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge.yml", + "identifier": [ + "msc:m17", + "https://fairsharing.org/1445", + "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge" + ], + "subject_areas": [ + "Biochemistry", + "Cartography", + "Climatology", + "Geography", + "Hydrology", + "Land use", + "Marine biology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "FGDC/CSDGM (Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata)" + }, + "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/csdgm_rs_ex/MetadataRemoteSensingExtens.pdf": { + "acronym": "CSDGM", + "field_of_science": [ + "oceanography", + "hydrology", + "climatology", + "meteorology", + "natural sciences" + ], + "id": "csdgm-extensions-remote-sensing-metadata.yml", + "identifier": [ + "msc:m53", + "https://fairsharing.org/1445" + ], + "subject_areas": [ + "Climatology", + "Hydrology", + "Meteorology", + "Oceanography" + ], + "title": "CSDGM Extensions for Remote Sensing Metadata" + }, + "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/base-metadata/v2_0698.pdf": { + "acronym": "fgdc", + "field_of_science": [ + "oceanography", + "hydrology", + "social sciences", + "cartography", + "physical geography", + "climatology", + "social geography", + "marine biology", + "biochemistry", + "meteorology", + "natural sciences" + ], + "id": "fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge.yml", + "identifier": [ + "msc:m17", + "https://fairsharing.org/1445", + "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge" + ], + "subject_areas": [ + "Biochemistry", + "Cartography", + "Climatology", + "Geography", + "Hydrology", + "Land use", + "Marine biology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "FGDC/CSDGM (Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata)" + }, + "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/biometadata/biodatap.pdf": { + "acronym": null, + "field_of_science": [ + "biological sciences", + "natural sciences" + ], + "id": "fgdccsdgm-biological-data-profile.yml", + "identifier": [ + "msc:m59" + ], + "subject_areas": [ + "Biogeography" + ], + "title": "FGDC/CSDGM Biological Data Profile" + }, + "http://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/shoreline-metadata/": { + "acronym": null, + "field_of_science": [ + "oceanography", + "hydrology", + "natural sciences" + ], + "id": "shoreline-metadata-profile.yml", + "identifier": [ + "msc:m75", + "https://doi.org/10.25504/FAIRsharing.22041b" + ], + "subject_areas": [ + "Hydrology", + "Oceanography" + ], + "title": "Shoreline Metadata Profile" + }, + "http://www.fgdc.gov/standards/projects/incits-l1-standards-projects/NAP-Metadata": { + "acronym": null, + "field_of_science": [ + "cartography", + "natural sciences", + "physical geography" + ], + "id": "iso-19115-north-american-profile.yml", + "identifier": [ + "msc:m70", + "https://doi.org/10.25504/FAIRsharing.b4af3c" + ], + "subject_areas": [ + "Cartography", + "Geography", + "Topography" + ], + "title": "ISO 19115 North American Profile" + }, + "http://www.geocase.eu/efg": { + "acronym": "ABCDEFG", + "field_of_science": [ + "palaeontology", + "mineralogy", + "earth and related environmental sciences", + "natural sciences" + ], + "id": "abcdefg-access-biological-collection-databases-extended-geosciences.yml", + "identifier": [ + "msc:m43", + "https://fairsharing.org/1396" + ], + "subject_areas": [ + "Earth sciences", + "Mineralogy", + "Palaeontology" + ], + "title": "ABCDEFG (Access to Biological Collection Databases Extended for Geosciences)" + }, + "http://www.geocase.eu/sites/geocase.biodiv.naturkundemuseum-berlin.de/documentation/abcdefg.xsd": { + "acronym": "ABCDEFG", + "field_of_science": [ + "palaeontology", + "mineralogy", + "earth and related environmental sciences", + "natural sciences" + ], + "id": "abcdefg-access-biological-collection-databases-extended-geosciences.yml", + "identifier": [ + "msc:m43", + "https://fairsharing.org/1396" + ], + "subject_areas": [ + "Earth sciences", + "Mineralogy", + "Palaeontology" + ], + "title": "ABCDEFG (Access to Biological Collection Databases Extended for Geosciences)" + }, + "http://www.georss.org": { + "acronym": null, + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences" + ], + "id": "georss-encoding-standard.yml", + "identifier": [ + "fuji:m1", + "https://fairsharing.org/4663" + ], + "subject_areas": [ + "Earth sciences" + ], + "title": "GeoRSS" + }, + "http://www.georss.org/georss/": { + "acronym": null, + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences" + ], + "id": "georss-encoding-standard.yml", + "identifier": [ + "fuji:m1", + "https://fairsharing.org/4663" + ], + "subject_areas": [ + "Earth sciences" + ], + "title": "GeoRSS" + }, + "http://www.getty.edu/CDWA/CDWALite/CDWALite-xsd-public-v1-0.xsd": { + "acronym": "cdwa-lite", + "field_of_science": [ + "humanities" + ], + "id": "cdwa-lite-schema.yml", + "identifier": [ + "fuji:m30", + "https://fairsharing.org/4649" + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "CDWA Lite" + }, + "http://www.getty.edu/CDWA/CDWALite/CDWALite-xsd-public-v1-1.xsd": { + "acronym": "cdwa-lite", + "field_of_science": [ + "humanities" + ], + "id": "cdwa-lite-schema.yml", + "identifier": [ + "fuji:m30", + "https://fairsharing.org/4649" + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "CDWA Lite" + }, + "http://www.gogeo.ac.uk/gogeo/metadata/agmap.htm": { + "acronym": null, + "field_of_science": [ + "cartography", + "natural sciences", + "physical geography" + ], + "id": "uk-agmap-academic-geospatial-metadata-application-profile.yml", + "identifier": [ + "msc:m79" + ], + "subject_areas": [ + "Cartography", + "Geography", + "Topography" + ], + "title": "UK AGMAP (Academic Geospatial Metadata Application Profile)" + }, + "http://www.heritage-standards.org/midas/schema/1.0": { + "acronym": "MIDAS", + "field_of_science": [ + "humanities", + "archaeology", + "history", + "architectural design" + ], + "id": "midas-heritage.yml", + "identifier": [ + "msc:m24", + "https://doi.org/10.25504/FAIRsharing.q0hgq", + "http://www.dcc.ac.uk/resources/metadata-standards/midas-heritage" + ], + "subject_areas": [ + "Archaeology", + "Architecture", + "Cultural heritage", + "Cultural property preservation", + "History" + ], + "title": "MIDAS-Heritage" + }, + "http://www.icpsr.umich.edu/DDI": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "http://www.ilsp.gr/META-XMLSchema": { + "acronym": "META-SHARE", + "field_of_science": [ + "linguistics", + "humanities" + ], + "id": "metashare-metadata.yml", + "identifier": [ + "fuji:m12", + "https://fairsharing.org/4665" + ], + "subject_areas": [ + "Humanities", + "Linguistics" + ], + "title": "Metadata Schema for the Description of Language Resources" + }, + "http://www.iso.org/iso/catalogue_detail.htm?csnumber=39229": { + "acronym": null, + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "cartography", + "physical geography", + "climatology", + "earth and related environmental sciences", + "social geography", + "social sciences", + "meteorology", + "natural sciences" + ], + "id": "iso-19115-2-imagery-and-gridded-data.yml", + "identifier": [ + "msc:m69", + "https://doi.org/10.25504/FAIRsharing.a6b18c" + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Glaciology", + "Hydrology", + "Land use", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "ISO 19115-2 - Imagery and gridded data" + }, + "http://www.iso.org/iso/catalogue_detail.htm?csnumber=53798": { + "acronym": "ISO19115", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "cartography", + "physical geography", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences", + "geology" + ], + "id": "iso-19115.yml", + "identifier": [ + "msc:m22", + "https://doi.org/10.25504/FAIRsharing.t7mby9" + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Geology", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "ISO 19115" + }, + "http://www.isotc211.org/2005/gmd": { + "acronym": "ISO19115", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "cartography", + "physical geography", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences", + "geology" + ], + "id": "iso-19115.yml", + "identifier": [ + "msc:m22", + "https://doi.org/10.25504/FAIRsharing.t7mby9" + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Geology", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "ISO 19115" + }, + "http://www.isotc211.org/2005/gmd/gmd.xsd": { + "acronym": "ISO19115", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "cartography", + "physical geography", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences", + "geology" + ], + "id": "iso-19115.yml", + "identifier": [ + "msc:m22", + "https://doi.org/10.25504/FAIRsharing.t7mby9" + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Geology", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "ISO 19115" + }, + "http://www.iucr.org/resources/cif": { + "acronym": "CIF", + "field_of_science": [ + "crystallography", + "engineering and technology", + "materials engineering", + "chemical sciences", + "natural sciences" + ], + "id": "cif-crystallographic-information-framework.yml", + "identifier": [ + "msc:m6", + "https://doi.org/10.25504/FAIRsharing.zr52g5", + "http://www.dcc.ac.uk/resources/metadata-standards/cif-crystallographic-information-framework" + ], + "subject_areas": [ + "Chemistry", + "Crystallography", + "Materials engineering" + ], + "title": "CIF (Crystallographic Information Framework)" + }, + "http://www.iucr.org/resources/cif/spec": { + "acronym": "CIF", + "field_of_science": [ + "crystallography", + "engineering and technology", + "materials engineering", + "chemical sciences", + "natural sciences" + ], + "id": "cif-crystallographic-information-framework.yml", + "identifier": [ + "msc:m6", + "https://doi.org/10.25504/FAIRsharing.zr52g5", + "http://www.dcc.ac.uk/resources/metadata-standards/cif-crystallographic-information-framework" + ], + "subject_areas": [ + "Chemistry", + "Crystallography", + "Materials engineering" + ], + "title": "CIF (Crystallographic Information Framework)" + }, + "http://www.ivoa.net/documents/#specs": { + "acronym": "IVOA", + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "international-virtual-observatory-alliance-technical-specifications.yml", + "identifier": [ + "msc:m20" + ], + "subject_areas": [ + "Astronomy" + ], + "title": "International Virtual Observatory Alliance Technical Specifications" + }, + "http://www.ivoa.net/documents/latest/RM.html": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "resource-metadata-virtual-observatory.yml", + "identifier": [ + "msc:m74", + "https://doi.org/10.25504/FAIRsharing.qSULus" + ], + "subject_areas": [ + "Astronomy" + ], + "title": "Resource Metadata for the Virtual Observatory" + }, + "http://www.ivoa.net/xml/Characterisation/Characterisation-v1.11.xsd": { + "acronym": "CharDM", + "field_of_science": [], + "id": "chardm-astronomical-dataset-characterisation.yml", + "identifier": [ + "fuji:m29", + "https://doi.org/10.25504/FAIRsharing.yYjZWb" + ], + "subject_areas": null, + "title": "CharDM, Data Model for Astronomical DataSet Characterisation" + }, + "http://www.ivoa.net/xml/RegistryInterface/v1.0": { + "acronym": "ivoa-reg", + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "ivoa-registry-metdata.yml", + "identifier": [ + "fuji:m35", + "https://doi.org/10.25504/FAIRsharing.RycpEU", + "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications" + ], + "subject_areas": [ + "Astronomy" + ], + "title": "IVOA Registry Interfaces" + }, + "http://www.ivoa.net/xml/VORegistry/v1.0": { + "acronym": "ivoa-reg", + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "ivoa-registry-metdata.yml", + "identifier": [ + "fuji:m35", + "https://doi.org/10.25504/FAIRsharing.RycpEU", + "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications" + ], + "subject_areas": [ + "Astronomy" + ], + "title": "IVOA Registry Interfaces" + }, + "http://www.language-archives.org/OLAC/1.1/": { + "acronym": "OLAC", + "field_of_science": [ + "linguistics", + "humanities" + ], + "id": "olac-metadata.yml", + "identifier": [ + "fuji:m14", + "https://doi.org/10.25504/FAIRsharing.17fbae" + ], + "subject_areas": [ + "Humanities", + "Linguistics" + ], + "title": "OLAC metadata" + }, + "http://www.language-archives.org/OLAC/1.1/olac.xsd": { + "acronym": "OLAC", + "field_of_science": [ + "linguistics", + "humanities" + ], + "id": "olac-metadata.yml", + "identifier": [ + "fuji:m14", + "https://doi.org/10.25504/FAIRsharing.17fbae" + ], + "subject_areas": [ + "Humanities", + "Linguistics" + ], + "title": "OLAC metadata" + }, + "http://www.lido-schema.org": { + "acronym": "LIDO", + "field_of_science": [ + "humanities" + ], + "id": "lido-lightweight-information-describing-objects.yml", + "identifier": [ + "fuji:m18", + "https://doi.org/10.25504/FAIRsharing.73558b" + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "LIDO, Lightweight Information Describing Objects" + }, + "http://www.lido-schema.org/schema/v1.0/lido-v1.0.xsd": { + "acronym": "LIDO", + "field_of_science": [ + "humanities" + ], + "id": "lido-lightweight-information-describing-objects.yml", + "identifier": [ + "fuji:m18", + "https://doi.org/10.25504/FAIRsharing.73558b" + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "LIDO, Lightweight Information Describing Objects" + }, + "http://www.loc.gov/MARC21/slim": { + "acronym": "MARC", + "field_of_science": [ + "humanities", + "sciences", + "library sciences" + ], + "id": "marc-machine-readable-cataloging.yml", + "identifier": [ + "msc:m88", + "https://doi.org/10.25504/FAIRsharing.217b1b" + ], + "subject_areas": [ + "Multidisciplinary", + "Bibliographic standards", + "Information/library standards" + ], + "title": "MARC (Machine-Readable Cataloging)" + }, + "http://www.loc.gov/METS/": { + "acronym": "METS", + "field_of_science": [ + "sciences" + ], + "id": "mets-metadata-encoding-and-transmission-standard.yml", + "identifier": [ + "fuji:m11", + "https://doi.org/10.25504/FAIRsharing.921056" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "METS - Metadata Encoding and Transmission Standard" + }, + "http://www.loc.gov/marc/": { + "acronym": "MARC", + "field_of_science": [ + "humanities", + "sciences", + "library sciences" + ], + "id": "marc-machine-readable-cataloging.yml", + "identifier": [ + "msc:m88", + "https://doi.org/10.25504/FAIRsharing.217b1b" + ], + "subject_areas": [ + "Multidisciplinary", + "Bibliographic standards", + "Information/library standards" + ], + "title": "MARC (Machine-Readable Cataloging)" + }, + "http://www.loc.gov/marc/bibliographic/": { + "acronym": "MARC", + "field_of_science": [ + "humanities", + "sciences", + "library sciences" + ], + "id": "marc-machine-readable-cataloging.yml", + "identifier": [ + "msc:m88", + "https://doi.org/10.25504/FAIRsharing.217b1b" + ], + "subject_areas": [ + "Multidisciplinary", + "Bibliographic standards", + "Information/library standards" + ], + "title": "MARC (Machine-Readable Cataloging)" + }, + "http://www.loc.gov/mods/": { + "acronym": "MODS", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "mods-metadata-object-description-schema.yml", + "identifier": [ + "msc:m97", + "https://doi.org/10.25504/FAIRsharing.o67X7e" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "MODS (Metadata Object Description Schema)" + }, + "http://www.loc.gov/mods/v3": { + "acronym": "MODS", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "mods-metadata-object-description-schema.yml", + "identifier": [ + "msc:m97", + "https://doi.org/10.25504/FAIRsharing.o67X7e" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "MODS (Metadata Object Description Schema)" + }, + "http://www.loc.gov/premis/v3": { + "acronym": "premis", + "field_of_science": [ + "sciences" + ], + "id": "premis.yml", + "identifier": [ + "msc:m31", + "https://doi.org/10.25504/FAIRsharing.27a0f4" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "PREMIS" + }, + "http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd": { + "acronym": "MARC", + "field_of_science": [ + "humanities", + "sciences", + "library sciences" + ], + "id": "marc-machine-readable-cataloging.yml", + "identifier": [ + "msc:m88", + "https://doi.org/10.25504/FAIRsharing.217b1b" + ], + "subject_areas": [ + "Multidisciplinary", + "Bibliographic standards", + "Information/library standards" + ], + "title": "MARC (Machine-Readable Cataloging)" + }, + "http://www.loc.gov/standards/mods/": { + "acronym": "MODS", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "mods-metadata-object-description-schema.yml", + "identifier": [ + "msc:m97", + "https://doi.org/10.25504/FAIRsharing.o67X7e" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "MODS (Metadata Object Description Schema)" + }, + "http://www.loc.gov/standards/mods/mods-outline-3-4.html": { + "acronym": "MODS", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "mods-metadata-object-description-schema.yml", + "identifier": [ + "msc:m97", + "https://doi.org/10.25504/FAIRsharing.o67X7e" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "MODS (Metadata Object Description Schema)" + }, + "http://www.loc.gov/standards/mods/mods-outline-3-5.html": { + "acronym": "MODS", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "mods-metadata-object-description-schema.yml", + "identifier": [ + "msc:m97", + "https://doi.org/10.25504/FAIRsharing.o67X7e" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "MODS (Metadata Object Description Schema)" + }, + "http://www.loc.gov/standards/mods/mods-outline-3-6.html": { + "acronym": "MODS", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "mods-metadata-object-description-schema.yml", + "identifier": [ + "msc:m97", + "https://doi.org/10.25504/FAIRsharing.o67X7e" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "MODS (Metadata Object Description Schema)" + }, + "http://www.loc.gov/standards/mods/mods-outline-3-7.html": { + "acronym": "MODS", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "mods-metadata-object-description-schema.yml", + "identifier": [ + "msc:m97", + "https://doi.org/10.25504/FAIRsharing.o67X7e" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "MODS (Metadata Object Description Schema)" + }, + "http://www.loc.gov/standards/mods/v3/mods-3-3.xsd": { + "acronym": "MODS", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "mods-metadata-object-description-schema.yml", + "identifier": [ + "msc:m97", + "https://doi.org/10.25504/FAIRsharing.o67X7e" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "MODS (Metadata Object Description Schema)" + }, + "http://www.loc.gov/standards/mods/v3/mods-3-4.xsd": { + "acronym": "MODS", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "mods-metadata-object-description-schema.yml", + "identifier": [ + "msc:m97", + "https://doi.org/10.25504/FAIRsharing.o67X7e" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "MODS (Metadata Object Description Schema)" + }, + "http://www.loc.gov/standards/mods/v3/mods-3-5.xsd": { + "acronym": "MODS", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "mods-metadata-object-description-schema.yml", + "identifier": [ + "msc:m97", + "https://doi.org/10.25504/FAIRsharing.o67X7e" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "MODS (Metadata Object Description Schema)" + }, + "http://www.loc.gov/standards/mods/v3/mods-3-6.xsd": { + "acronym": "MODS", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "mods-metadata-object-description-schema.yml", + "identifier": [ + "msc:m97", + "https://doi.org/10.25504/FAIRsharing.o67X7e" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "MODS (Metadata Object Description Schema)" + }, + "http://www.loc.gov/standards/mods/v3/mods-3-7.xsd": { + "acronym": "MODS", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "mods-metadata-object-description-schema.yml", + "identifier": [ + "msc:m97", + "https://doi.org/10.25504/FAIRsharing.o67X7e" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "MODS (Metadata Object Description Schema)" + }, + "http://www.loc.gov/standards/premis": { + "acronym": "premis", + "field_of_science": [ + "sciences" + ], + "id": "premis.yml", + "identifier": [ + "msc:m31", + "https://doi.org/10.25504/FAIRsharing.27a0f4" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "PREMIS" + }, + "http://www.loc.gov/standards/premis/": { + "acronym": "premis", + "field_of_science": [ + "sciences" + ], + "id": "premis.yml", + "identifier": [ + "msc:m31", + "https://doi.org/10.25504/FAIRsharing.27a0f4" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "PREMIS" + }, + "http://www.loc.gov/standards/premis/v1": { + "acronym": "premis", + "field_of_science": [ + "sciences" + ], + "id": "premis.yml", + "identifier": [ + "msc:m31", + "https://doi.org/10.25504/FAIRsharing.27a0f4" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "PREMIS" + }, + "http://www.loc.gov/standards/premis/v3/premis-3-0-final.pdf": { + "acronym": "premis", + "field_of_science": [ + "sciences" + ], + "id": "premis.yml", + "identifier": [ + "msc:m31", + "https://doi.org/10.25504/FAIRsharing.27a0f4" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "PREMIS" + }, + "http://www.lyncode.com/xoai": { + "acronym": "XOAI", + "field_of_science": [], + "id": "xoai-metadata-format.yml", + "identifier": [ + "fuji:m6" + ], + "subject_areas": null, + "title": "XOAI, a DSPACE Metadata Format" + }, + "http://www.meta-share.org/p/93/Documentation#model": { + "acronym": "META-SHARE", + "field_of_science": [ + "linguistics", + "humanities" + ], + "id": "metashare-metadata.yml", + "identifier": [ + "fuji:m12", + "https://fairsharing.org/4665" + ], + "subject_areas": [ + "Humanities", + "Linguistics" + ], + "title": "Metadata Schema for the Description of Language Resources" + }, + "http://www.molgenis.org/wiki/ObservStart": { + "acronym": null, + "field_of_science": [ + "biological sciences", + "natural sciences" + ], + "id": "observ-om.yml", + "identifier": [ + "msc:m27", + "https://fairsharing.org/4682", + "http://www.dcc.ac.uk/resources/metadata-standards/observ-om" + ], + "subject_areas": [ + "Biology" + ], + "title": "Observ-OM" + }, + "http://www.mpi.nl/IMDI/Schema/IMDI": { + "acronym": "IMDI", + "field_of_science": [ + "linguistics", + "humanities" + ], + "id": "imdi-metadata-schema.yml", + "identifier": [ + "fuji:m15", + "https://doi.org/10.25504/FAIRsharing.2cfb88" + ], + "subject_areas": [ + "Humanities", + "Linguistics" + ], + "title": "IMDI Metadata Standard" + }, + "http://www.mpi.nl/IMDI/schemas/xsd/": { + "acronym": "IMDI", + "field_of_science": [ + "linguistics", + "humanities" + ], + "id": "imdi-metadata-schema.yml", + "identifier": [ + "fuji:m15", + "https://doi.org/10.25504/FAIRsharing.2cfb88" + ], + "subject_areas": [ + "Humanities", + "Linguistics" + ], + "title": "IMDI Metadata Standard" + }, + "http://www.ncbi.nlm.nih.gov/pubmed/23031277": { + "acronym": null, + "field_of_science": [ + "genetics", + "natural sciences" + ], + "id": "varioml.yml", + "identifier": [ + "msc:m82", + "https://doi.org/10.25504/FAIRsharing.pxvkt0" + ], + "subject_areas": [ + "Genetics" + ], + "title": "VarioML" + }, + "http://www.ndltd.org/standards/metadata/etdms/1-0/": { + "acronym": "ETD-MS", + "field_of_science": [ + "sciences" + ], + "id": "etdms-metadata-schema.yml", + "identifier": [ + "fuji:m17", + "https://fairsharing.org/4660" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "ETD-MS an Interoperability Metadata Standard for Electronic Theses and Dissertations" + }, + "http://www.ndltd.org/standards/metadata/etdms/1.0/": { + "acronym": "ETD-MS", + "field_of_science": [ + "sciences" + ], + "id": "etdms-metadata-schema.yml", + "identifier": [ + "fuji:m17", + "https://fairsharing.org/4660" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "ETD-MS an Interoperability Metadata Standard for Electronic Theses and Dissertations" + }, + "http://www.ndltd.org/standards/metadata/etdms/1.0/etdms.xsd": { + "acronym": "ETD-MS", + "field_of_science": [ + "sciences" + ], + "id": "etdms-metadata-schema.yml", + "identifier": [ + "fuji:m17", + "https://fairsharing.org/4660" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "ETD-MS an Interoperability Metadata Standard for Electronic Theses and Dissertations" + }, + "http://www.ndltd.org/standards/metadata/etdms/1.1/": { + "acronym": "ETD-MS", + "field_of_science": [ + "sciences" + ], + "id": "etdms-metadata-schema.yml", + "identifier": [ + "fuji:m17", + "https://fairsharing.org/4660" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "ETD-MS an Interoperability Metadata Standard for Electronic Theses and Dissertations" + }, + "http://www.ndltd.org/standards/metadata/etdms/1.1/etdms11.xsd": { + "acronym": "ETD-MS", + "field_of_science": [ + "sciences" + ], + "id": "etdms-metadata-schema.yml", + "identifier": [ + "fuji:m17", + "https://fairsharing.org/4660" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "ETD-MS an Interoperability Metadata Standard for Electronic Theses and Dissertations" + }, + "http://www.ndltd.org/standards/metadata/etdms/1.1/etdmsdc.xsd": { + "acronym": "ETD-MS", + "field_of_science": [ + "sciences" + ], + "id": "etdms-metadata-schema.yml", + "identifier": [ + "fuji:m17", + "https://fairsharing.org/4660" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "ETD-MS an Interoperability Metadata Standard for Electronic Theses and Dissertations" + }, + "http://www.ndltd.org/standards/metadata/etdms/1.1/etdmsdcterms.xsd": { + "acronym": "ETD-MS", + "field_of_science": [ + "sciences" + ], + "id": "etdms-metadata-schema.yml", + "identifier": [ + "fuji:m17", + "https://fairsharing.org/4660" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "ETD-MS an Interoperability Metadata Standard for Electronic Theses and Dissertations" + }, + "http://www.nexml.org/2009": { + "acronym": null, + "field_of_science": [ + "biological sciences", + "natural sciences" + ], + "id": "nexml.yml", + "identifier": [ + "fuji:m45", + "https://doi.org/10.25504/FAIRsharing.knrb06" + ], + "subject_areas": [ + "Biology" + ], + "title": "NeXML" + }, + "http://www.nexml.org/2009 ../xsd/nexml.xsd": { + "acronym": null, + "field_of_science": [ + "biological sciences", + "natural sciences" + ], + "id": "nexml.yml", + "identifier": [ + "fuji:m45", + "https://doi.org/10.25504/FAIRsharing.knrb06" + ], + "subject_areas": [ + "Biology" + ], + "title": "NeXML" + }, + "http://www.nexusformat.org/": { + "acronym": null, + "field_of_science": [ + "crystallography", + "engineering and technology", + "materials engineering", + "chemical sciences", + "natural sciences" + ], + "id": "nexus.yml", + "identifier": [ + "msc:m25", + "https://doi.org/10.25504/FAIRsharing.eq2pdx" + ], + "subject_areas": [ + "Chemistry", + "Crystallography", + "Materials engineering" + ], + "title": "NeXus" + }, + "http://www.oclcpica.org/xml/picaplus.xsd": { + "acronym": "pica", + "field_of_science": [], + "id": "pica-metadata-schema.yml", + "identifier": [ + "fuji:m37", + "https://fairsharing.org/4688" + ], + "subject_areas": null, + "title": "OCLC PICA XML" + }, + "http://www.oclcpica.org/xmlns/ppxml-1.0": { + "acronym": "pica", + "field_of_science": [], + "id": "pica-metadata-schema.yml", + "identifier": [ + "fuji:m37", + "https://fairsharing.org/4688" + ], + "subject_areas": null, + "title": "OCLC PICA XML" + }, + "http://www.openarchives.org/OAI/2.0/oai_dc": { + "acronym": "oai_dc", + "field_of_science": [ + "sciences" + ], + "id": "oai-dublin-core-schema.yml", + "identifier": [ + "fuji:m44", + "https://doi.org/10.25504/FAIRsharing.0417cf" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Open Archive Initiative Dublin Core (OAI DC)" + }, + "http://www.openarchives.org/OAI/2.0/oai_dc.xsd": { + "acronym": "oai_dc", + "field_of_science": [ + "sciences" + ], + "id": "oai-dublin-core-schema.yml", + "identifier": [ + "fuji:m44", + "https://doi.org/10.25504/FAIRsharing.0417cf" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Open Archive Initiative Dublin Core (OAI DC)" + }, + "http://www.openarchives.org/OAI/2.0/oai_dc/": { + "acronym": "oai_dc", + "field_of_science": [ + "sciences" + ], + "id": "oai-dublin-core-schema.yml", + "identifier": [ + "fuji:m44", + "https://doi.org/10.25504/FAIRsharing.0417cf" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Open Archive Initiative Dublin Core (OAI DC)" + }, + "http://www.openarchives.org/OAI/2.0/rdf.xsd": { + "acronym": "oai-rdf", + "field_of_science": [], + "id": "oai-rdf-schema.yml", + "identifier": [ + "fuji:m38" + ], + "subject_areas": null, + "title": "OAI-RDF Schema" + }, + "http://www.openarchives.org/OAI/2.0/rdf/": { + "acronym": "oai-rdf", + "field_of_science": [], + "id": "oai-rdf-schema.yml", + "identifier": [ + "fuji:m38" + ], + "subject_areas": null, + "title": "OAI-RDF Schema" + }, + "http://www.openarchives.org/ore/": { + "acronym": "OAI-ORE", + "field_of_science": [ + "history", + "anthropology", + "humanities", + "sciences", + "social sciences" + ], + "id": "oai-ore-open-archives-initiative-object-reuse-and-exchange.yml", + "identifier": [ + "msc:m26", + "https://doi.org/10.25504/FAIRsharing.3mtaee", + "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange" + ], + "subject_areas": [ + "Anthropology", + "History", + "Multidisciplinary" + ], + "title": "OAI-ORE (Open Archives Initiative Object Reuse and Exchange)" + }, + "http://www.openarchives.org/ore/terms/": { + "acronym": "OAI-ORE", + "field_of_science": [ + "history", + "anthropology", + "humanities", + "sciences", + "social sciences" + ], + "id": "oai-ore-open-archives-initiative-object-reuse-and-exchange.yml", + "identifier": [ + "msc:m26", + "https://doi.org/10.25504/FAIRsharing.3mtaee", + "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange" + ], + "subject_areas": [ + "Anthropology", + "History", + "Multidisciplinary" + ], + "title": "OAI-ORE (Open Archives Initiative Object Reuse and Exchange)" + }, + "http://www.openarchives.org/ore/toc": { + "acronym": "OAI-ORE", + "field_of_science": [ + "history", + "anthropology", + "humanities", + "sciences", + "social sciences" + ], + "id": "oai-ore-open-archives-initiative-object-reuse-and-exchange.yml", + "identifier": [ + "msc:m26", + "https://doi.org/10.25504/FAIRsharing.3mtaee", + "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange" + ], + "subject_areas": [ + "Anthropology", + "History", + "Multidisciplinary" + ], + "title": "OAI-ORE (Open Archives Initiative Object Reuse and Exchange)" + }, + "http://www.opengeospatial.org/standards/om": { + "acronym": null, + "field_of_science": [ + "engineering and technology", + "chemical sciences", + "remote sensing", + "meteorology", + "natural sciences", + "geology" + ], + "id": "observations-and-measurements.yml", + "identifier": [ + "msc:m28", + "https://doi.org/10.25504/FAIRsharing.4ehmy9", + "http://www.dcc.ac.uk/resources/metadata-standards/observations-and-measurements" + ], + "subject_areas": [ + "Chemistry", + "Geology", + "Meteorology", + "Remote sensing" + ], + "title": "Observations and Measurements" + }, + "http://www.opengeospatial.org/standards/waterml": { + "acronym": null, + "field_of_science": [ + "hydrology", + "natural sciences" + ], + "id": "waterml.yml", + "identifier": [ + "msc:m83", + "https://doi.org/10.25504/FAIRsharing.e07e1b" + ], + "subject_areas": [ + "Hydrology" + ], + "title": "WaterML" + }, + "http://www.opengis.net/cat/csw/2.0.2": { + "acronym": "CSW", + "field_of_science": [ + "cartography", + "earth and related environmental sciences", + "natural sciences" + ], + "id": "csw-catalogue-schema.yml", + "identifier": [ + "fuji:m32", + "https://fairsharing.org/4650", + null, + null + ], + "subject_areas": [ + "Cartography", + "Earth sciences" + ], + "title": "Catalogue Service for the Web" + }, + "http://www.opengis.net/gml/3.2": { + "acronym": null, + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "cartography", + "physical geography", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences", + "geology" + ], + "id": "iso-19136.yml", + "identifier": [ + "fuji:m3", + "https://doi.org/10.25504/FAIRsharing.d69ee0" + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Geology", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "Geography Markup Language" + }, + "http://www.opengis.net/om/1.0": { + "acronym": null, + "field_of_science": [ + "engineering and technology", + "chemical sciences", + "remote sensing", + "meteorology", + "natural sciences", + "geology" + ], + "id": "observations-and-measurements.yml", + "identifier": [ + "msc:m28", + "https://doi.org/10.25504/FAIRsharing.4ehmy9", + "http://www.dcc.ac.uk/resources/metadata-standards/observations-and-measurements" + ], + "subject_areas": [ + "Chemistry", + "Geology", + "Meteorology", + "Remote sensing" + ], + "title": "Observations and Measurements" + }, + "http://www.opengis.net/waterml/2.0": { + "acronym": null, + "field_of_science": [ + "hydrology", + "natural sciences" + ], + "id": "waterml.yml", + "identifier": [ + "msc:m83", + "https://doi.org/10.25504/FAIRsharing.e07e1b" + ], + "subject_areas": [ + "Hydrology" + ], + "title": "WaterML" + }, + "http://www.openmicroscopy.org/Schemas/": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2007-06": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2007-06/index.html": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2008-02": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2008-02/index.html": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2008-09": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2008-09/index.html": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2009-09": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2009-09/index.html": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2010-04": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2010-04/index.html": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2010-06": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2010-06/index.html": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2011-06": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2011-06/index.html": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2012-06": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2012-06/index.html": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2013-06": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2013-06/index.html": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2015-01": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2015-01/ome.xsd": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2016-06": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/Schemas/OME/2016-06/ome.xsd": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/site/support/file-formats": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-xml-open-microscopy-environment-xml.yml", + "identifier": [ + "msc:m29", + "https://doi.org/10.25504/FAIRsharing.zk8p4g", + "http://www.dcc.ac.uk/resources/metadata-standards/ome-xml-open-microscopy-environment-xml" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-XML (Open Microscopy Environment XML)" + }, + "http://www.openmicroscopy.org/site/support/file-formats/ome-tiff": { + "acronym": null, + "field_of_science": [ + "zoology", + "medical and health sciences", + "plant protection", + "agricultural sciences", + "botany", + "cell biology", + "physiology", + "veterinary sciences", + "natural sciences" + ], + "id": "ome-tiff-open-microscopy-environment-tiff.yml", + "identifier": [ + "msc:m73", + "https://doi.org/10.25504/FAIRsharing.cq8tg2" + ], + "subject_areas": [ + "Animal diseases", + "Cell biology", + "Physiology", + "Plant diseases", + "Plant physiology", + "Zoology" + ], + "title": "OME-TIFF (Open Microscopy Environment TIFF)" + }, + "http://www.purl.org/net/CSMD/4.0#": { + "acronym": "CSMD", + "field_of_science": [ + "crystallography", + "engineering and technology", + "biochemistry", + "chemical sciences", + "materials engineering", + "natural sciences" + ], + "id": "csmd-cclrc-core-scientific-metadata-model.yml", + "identifier": [ + "msc:m8", + "https://doi.org/10.25504/FAIRsharing.30fk89", + "http://www.dcc.ac.uk/resources/metadata-standards/csmd-cclrc-core-scientific-metadata-model" + ], + "subject_areas": [ + "Biochemistry", + "Chemistry", + "Crystallography", + "Materials engineering" + ], + "title": "CSMD (Core Scientific Metadata Model)" + }, + "http://www.quakeml.org/": { + "acronym": "QuakeML", + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences", + "geophysics" + ], + "id": "quakeml.yml", + "identifier": [ + "fuji:m9", + "https://fairsharing.org/1444" + ], + "subject_areas": [ + "Earth sciences", + "Geophysics" + ], + "title": "QuakeML" + }, + "http://www.rbg.vic.gov.au/wiki/hiscom/index.php/HISPID_5": { + "acronym": null, + "field_of_science": [ + "botany", + "natural sciences" + ], + "id": "hispid-herbarium-information-standards-and-protocols-interchange-data.yml", + "identifier": [ + "msc:m64", + "https://doi.org/10.25504/FAIRsharing.y49yj6" + ], + "subject_areas": [ + "Botany" + ], + "title": "HISPID (Herbarium Information Standards and Protocols for Interchange of Data)" + }, + "http://www.rdn.ac.uk/oai/lom/lom.xsd": { + "acronym": "LOM", + "field_of_science": [], + "id": "lom-higher-education-schema.yml", + "identifier": [ + "fuji:m24", + "https://fairsharing.org/4664" + ], + "subject_areas": null, + "title": "Learning Object Metadata (LOM)" + }, + "http://www.rioxx.net/schema/v2.0/rioxx/": { + "acronym": "rioxx", + "field_of_science": [ + "sciences" + ], + "id": "rioxx-metadata-application-profile.yml", + "identifier": [ + "fuji:m5", + "https://fairsharing.org/4690" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RIOXX Metadata Application Profile" + }, + "http://www.scholix.org": { + "acronym": "scholix", + "field_of_science": [], + "id": "scholix-metadata-schema.yml", + "identifier": [ + "fuji:m28", + "https://doi.org/10.25504/FAIRsharing.B0d5Kn" + ], + "subject_areas": null, + "title": null + }, + "http://www.scholix.org/schema": { + "acronym": "scholix", + "field_of_science": [], + "id": "scholix-metadata-schema.yml", + "identifier": [ + "fuji:m28", + "https://doi.org/10.25504/FAIRsharing.B0d5Kn" + ], + "subject_areas": null, + "title": null + }, + "http://www.sdmx.org/resources/sdmxml/": { + "acronym": null, + "field_of_science": [ + "political sciences", + "social geography", + "statistics and probability", + "demography", + "social sciences", + "economics", + "natural sciences" + ], + "id": "sdmx-statistical-data-and-metadata-exchange.yml", + "identifier": [ + "msc:m38", + "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", + "https://doi.org/10.25504/FAIRsharing.cea9zc" + ], + "subject_areas": [ + "Demography", + "Economics", + "Human geography", + "Social policy", + "Statistics" + ], + "title": "SDMX (Statistical Data and Metadata Exchange)" + }, + "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/common": { + "acronym": null, + "field_of_science": [ + "political sciences", + "social geography", + "statistics and probability", + "demography", + "social sciences", + "economics", + "natural sciences" + ], + "id": "sdmx-statistical-data-and-metadata-exchange.yml", + "identifier": [ + "msc:m38", + "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", + "https://doi.org/10.25504/FAIRsharing.cea9zc" + ], + "subject_areas": [ + "Demography", + "Economics", + "Human geography", + "Social policy", + "Statistics" + ], + "title": "SDMX (Statistical Data and Metadata Exchange)" + }, + "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/data": { + "acronym": null, + "field_of_science": [ + "political sciences", + "social geography", + "statistics and probability", + "demography", + "social sciences", + "economics", + "natural sciences" + ], + "id": "sdmx-statistical-data-and-metadata-exchange.yml", + "identifier": [ + "msc:m38", + "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", + "https://doi.org/10.25504/FAIRsharing.cea9zc" + ], + "subject_areas": [ + "Demography", + "Economics", + "Human geography", + "Social policy", + "Statistics" + ], + "title": "SDMX (Statistical Data and Metadata Exchange)" + }, + "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/message": { + "acronym": null, + "field_of_science": [ + "political sciences", + "social geography", + "statistics and probability", + "demography", + "social sciences", + "economics", + "natural sciences" + ], + "id": "sdmx-statistical-data-and-metadata-exchange.yml", + "identifier": [ + "msc:m38", + "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", + "https://doi.org/10.25504/FAIRsharing.cea9zc" + ], + "subject_areas": [ + "Demography", + "Economics", + "Human geography", + "Social policy", + "Statistics" + ], + "title": "SDMX (Statistical Data and Metadata Exchange)" + }, + "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/registry": { + "acronym": null, + "field_of_science": [ + "political sciences", + "social geography", + "statistics and probability", + "demography", + "social sciences", + "economics", + "natural sciences" + ], + "id": "sdmx-statistical-data-and-metadata-exchange.yml", + "identifier": [ + "msc:m38", + "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", + "https://doi.org/10.25504/FAIRsharing.cea9zc" + ], + "subject_areas": [ + "Demography", + "Economics", + "Human geography", + "Social policy", + "Statistics" + ], + "title": "SDMX (Statistical Data and Metadata Exchange)" + }, + "http://www.sdmx.org/resources/sdmxml/schemas/v3_0/structure": { + "acronym": null, + "field_of_science": [ + "political sciences", + "social geography", + "statistics and probability", + "demography", + "social sciences", + "economics", + "natural sciences" + ], + "id": "sdmx-statistical-data-and-metadata-exchange.yml", + "identifier": [ + "msc:m38", + "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange", + "https://doi.org/10.25504/FAIRsharing.cea9zc" + ], + "subject_areas": [ + "Demography", + "Economics", + "Human geography", + "Social policy", + "Statistics" + ], + "title": "SDMX (Statistical Data and Metadata Exchange)" + }, + "http://www.seadatanet.org": { + "acronym": "CSR", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences" + ], + "id": "cruise-summary-reports.yml", + "identifier": [ + "msc:m52", + "https://doi.org/10.25504/FAIRsharing.e36460" + ], + "subject_areas": [ + "Climatology", + "Earth sciences", + "Glaciology", + "Hydrology", + "Meteorology", + "Oceanography" + ], + "title": "Cruise Summary Reports" + }, + "http://www.seadatanet.org/Metadata/CSR": { + "acronym": "CSR", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences" + ], + "id": "cruise-summary-reports.yml", + "identifier": [ + "msc:m52", + "https://doi.org/10.25504/FAIRsharing.e36460" + ], + "subject_areas": [ + "Climatology", + "Earth sciences", + "Glaciology", + "Hydrology", + "Meteorology", + "Oceanography" + ], + "title": "Cruise Summary Reports" + }, + "http://www.spase-group.org/data/": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "http://www.spase-group.org/data/model/spase-2_2_2.pdf": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "http://www.spase-group.org/data/model/spase-2_2_3.pdf": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "http://www.spase-group.org/data/model/spase-2_2_4.pdf": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "http://www.spase-group.org/data/model/spase-2_2_5.pdf": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "http://www.spase-group.org/data/model/spase-2_2_6.pdf": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "http://www.spase-group.org/data/model/spase-2_2_7.pdf": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "http://www.spase-group.org/data/model/spase-2_2_8.pdf": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "http://www.spase-group.org/data/model/spase-2_2_9.pdf": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "http://www.spase-group.org/data/schema": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "http://www.spase-group.org/docs/schema/": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "http://www.synthesys.info/ABCDEFG/1.0": { + "acronym": "ABCDEFG", + "field_of_science": [ + "palaeontology", + "mineralogy", + "earth and related environmental sciences", + "natural sciences" + ], + "id": "abcdefg-access-biological-collection-databases-extended-geosciences.yml", + "identifier": [ + "msc:m43", + "https://fairsharing.org/1396" + ], + "subject_areas": [ + "Earth sciences", + "Mineralogy", + "Palaeontology" + ], + "title": "ABCDEFG (Access to Biological Collection Databases Extended for Geosciences)" + }, + "http://www.tdwg.org/schemas/abcd/2.06": { + "acronym": "ABCD", + "field_of_science": [ + "zoology", + "earth and related environmental sciences", + "biological sciences", + "palaeontology", + "botany", + "genetics", + "natural sciences", + "geology" + ], + "id": "abcd-access-biological-collection-data.yml", + "identifier": [ + "msc:m1", + "https://doi.org/10.25504/FAIRsharing.kr3215", + "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Earth sciences", + "Genetics", + "Geology", + "Palaeontology", + "Zoology" + ], + "title": "ABCD (Access to Biological Collection Data)" + }, + "http://www.tdwg.org/schemas/abcd/2.1": { + "acronym": "ABCD", + "field_of_science": [ + "zoology", + "earth and related environmental sciences", + "biological sciences", + "palaeontology", + "botany", + "genetics", + "natural sciences", + "geology" + ], + "id": "abcd-access-biological-collection-data.yml", + "identifier": [ + "msc:m1", + "https://doi.org/10.25504/FAIRsharing.kr3215", + "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Earth sciences", + "Genetics", + "Geology", + "Palaeontology", + "Zoology" + ], + "title": "ABCD (Access to Biological Collection Data)" + }, + "http://www.tdwg.org/schemas/abcd/3.0": { + "acronym": "ABCD", + "field_of_science": [ + "zoology", + "earth and related environmental sciences", + "biological sciences", + "palaeontology", + "botany", + "genetics", + "natural sciences", + "geology" + ], + "id": "abcd-access-biological-collection-data.yml", + "identifier": [ + "msc:m1", + "https://doi.org/10.25504/FAIRsharing.kr3215", + "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Earth sciences", + "Genetics", + "Geology", + "Palaeontology", + "Zoology" + ], + "title": "ABCD (Access to Biological Collection Data)" + }, + "http://www.tdwg.org/standards/115/": { + "acronym": "ABCD", + "field_of_science": [ + "zoology", + "earth and related environmental sciences", + "biological sciences", + "palaeontology", + "botany", + "genetics", + "natural sciences", + "geology" + ], + "id": "abcd-access-biological-collection-data.yml", + "identifier": [ + "msc:m1", + "https://doi.org/10.25504/FAIRsharing.kr3215", + "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Earth sciences", + "Genetics", + "Geology", + "Palaeontology", + "Zoology" + ], + "title": "ABCD (Access to Biological Collection Data)" + }, + "http://www.tdwg.org/standards/450": { + "acronym": "DwC", + "field_of_science": [ + "oceanography", + "cartography", + "ecology", + "physical geography", + "zoology", + "earth and related environmental sciences", + "biological sciences", + "palaeontology", + "marine biology", + "botany", + "natural sciences" + ], + "id": "darwin-core.yml", + "identifier": [ + "msc:m9", + "https://doi.org/10.25504/FAIRsharing.xvf5y3", + "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core" + ], + "subject_areas": [ + "Biogeography", + "Biological diversity", + "Botany", + "Cartography", + "Earth sciences", + "Ecology", + "Marine animals", + "Oceanography", + "Palaeontology", + "Physical geography", + "Topography", + "Zoology" + ], + "title": "Darwin Core" + }, + "http://www.tdwg.org/standards/640/": { + "acronym": "ABCDDNA", + "field_of_science": [ + "genetics", + "natural sciences" + ], + "id": "abcddna.yml", + "identifier": [ + "msc:m42", + "https://doi.org/10.25504/FAIRsharing.7tx4ac" + ], + "subject_areas": [ + "Genetics" + ], + "title": "ABCDDNA" + }, + "http://www.tei-c.org/Guidelines/P5/": { + "acronym": "TEI", + "field_of_science": [ + "languages and literature", + "humanities", + "history" + ], + "id": "tei-text-encoding-initiative-guidelines.yml", + "identifier": [ + "msc:m99", + "https://doi.org/10.25504/FAIRsharing.87b86e" + ], + "subject_areas": [ + "History", + "Languages" + ], + "title": "TEI (Text Encoding Initiative) Guidelines" + }, + "http://www.tei-c.org/ns/1.0": { + "acronym": "TEI", + "field_of_science": [ + "languages and literature", + "humanities", + "history" + ], + "id": "tei-text-encoding-initiative-guidelines.yml", + "identifier": [ + "msc:m99", + "https://doi.org/10.25504/FAIRsharing.87b86e" + ], + "subject_areas": [ + "History", + "Languages" + ], + "title": "TEI (Text Encoding Initiative) Guidelines" + }, + "http://www.ukeof.org.uk/": { + "acronym": null, + "field_of_science": [ + "hydrology", + "ecology", + "climatology", + "biological sciences", + "engineering and technology", + "soil sciences", + "remote sensing", + "meteorology", + "natural sciences", + "geology" + ], + "id": "ukeof.yml", + "identifier": [ + "msc:m40", + "https://doi.org/10.25504/FAIRsharing.9xytp6" + ], + "subject_areas": [ + "Biogeography", + "Biological diversity", + "Climatology", + "Ecology", + "Geology", + "Hydrology", + "Meteorology", + "Remote sensing", + "Soil sciences" + ], + "title": "UKEOF" + }, + "http://www.ukeof.org.uk/schema/1": { + "acronym": null, + "field_of_science": [ + "hydrology", + "ecology", + "climatology", + "biological sciences", + "engineering and technology", + "soil sciences", + "remote sensing", + "meteorology", + "natural sciences", + "geology" + ], + "id": "ukeof.yml", + "identifier": [ + "msc:m40", + "https://doi.org/10.25504/FAIRsharing.9xytp6" + ], + "subject_areas": [ + "Biogeography", + "Biological diversity", + "Climatology", + "Ecology", + "Geology", + "Hydrology", + "Meteorology", + "Remote sensing", + "Soil sciences" + ], + "title": "UKEOF" + }, + "http://www.virtualastronomy.org/avm_metadata.php": { + "acronym": "AVM", + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "avm-astronomy-visualization-metadata.yml", + "identifier": [ + "msc:m3", + "https://doi.org/10.25504/FAIRsharing.338ze0", + "http://www.dcc.ac.uk/resources/metadata-standards/avm-astronomy-visualization-metadata" + ], + "subject_areas": [ + "Astronomy" + ], + "title": "AVM (Astronomy Visualization Metadata)" + }, + "http://www.virtualastronomy.org/avm_metadata.php#2": { + "acronym": "AVM", + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "avm-astronomy-visualization-metadata.yml", + "identifier": [ + "msc:m3", + "https://doi.org/10.25504/FAIRsharing.338ze0", + "http://www.dcc.ac.uk/resources/metadata-standards/avm-astronomy-visualization-metadata" + ], + "subject_areas": [ + "Astronomy" + ], + "title": "AVM (Astronomy Visualization Metadata)" + }, + "http://www.w3.org/2001/sw/wiki/PROV": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "prov.yml", + "identifier": [ + "msc:m33", + "http://www.dcc.ac.uk/resources/metadata-standards/prov", + "https://doi.org/10.25504/FAIRsharing.fe7cda" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "PROV" + }, + "http://www.w3.org/2005/Atom": { + "acronym": "ATOM", + "field_of_science": [ + "sciences" + ], + "id": "atom-syndication-format.yml", + "identifier": [ + "fuji:m13", + "https://fairsharing.org/4648" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "The Atom Syndication Format" + }, + "http://www.w3.org/TR/prov-overview/": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "prov.yml", + "identifier": [ + "msc:m33", + "http://www.dcc.ac.uk/resources/metadata-standards/prov", + "https://doi.org/10.25504/FAIRsharing.fe7cda" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "PROV" + }, + "http://www.w3.org/TR/vocab-adms/": { + "acronym": "ADMS", + "field_of_science": [ + "social sciences", + "political sciences" + ], + "id": "asset-description-metadata-schema-adms.yml", + "identifier": [ + "msc:m48", + "https://doi.org/10.25504/FAIRsharing.es2t25" + ], + "subject_areas": [ + "Social policy" + ], + "title": "Asset Description Metadata Schema (ADMS)" + }, + "http://www.w3.org/TR/vocab-data-cube/": { + "acronym": null, + "field_of_science": [ + "statistics and probability", + "natural sciences" + ], + "id": "rdf-data-cube-vocabulary.yml", + "identifier": [ + "msc:m35", + "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary", + "https://doi.org/10.25504/FAIRsharing.c3b573" + ], + "subject_areas": [ + "Statistics" + ], + "title": "RDF Data Cube Vocabulary" + }, + "http://www.w3.org/TR/vocab-dcat/": { + "acronym": "DCAT", + "field_of_science": [ + "sciences" + ], + "id": "dcat-data-catalog-vocabulary.yml", + "identifier": [ + "msc:m12", + "https://doi.org/10.25504/FAIRsharing.h4j3qm", + "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DCAT (Data Catalog Vocabulary)" + }, + "http://www.w3.org/ns/adms#": { + "acronym": "ADMS", + "field_of_science": [ + "social sciences", + "political sciences" + ], + "id": "asset-description-metadata-schema-adms.yml", + "identifier": [ + "msc:m48", + "https://doi.org/10.25504/FAIRsharing.es2t25" + ], + "subject_areas": [ + "Social policy" + ], + "title": "Asset Description Metadata Schema (ADMS)" + }, + "http://www.w3.org/ns/dcat#": { + "acronym": "DCAT", + "field_of_science": [ + "sciences" + ], + "id": "dcat-data-catalog-vocabulary.yml", + "identifier": [ + "msc:m12", + "https://doi.org/10.25504/FAIRsharing.h4j3qm", + "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DCAT (Data Catalog Vocabulary)" + }, + "http://www.w3.org/ns/prov#": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "prov.yml", + "identifier": [ + "msc:m33", + "http://www.dcc.ac.uk/resources/metadata-standards/prov", + "https://doi.org/10.25504/FAIRsharing.fe7cda" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "PROV" + }, + "http://www.w3.org/ns/prov.xsd": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "prov.yml", + "identifier": [ + "msc:m33", + "http://www.dcc.ac.uk/resources/metadata-standards/prov", + "https://doi.org/10.25504/FAIRsharing.fe7cda" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "PROV" + }, + "http://www1.unece.org/stat/platform/display/metis/Generic+Statistical+Information+Model": { + "acronym": null, + "field_of_science": [ + "statistics and probability", + "natural sciences" + ], + "id": "gsim-generic-statistical-information-model.yml", + "identifier": [ + "msc:m63", + "https://doi.org/10.25504/FAIRsharing.22bb25" + ], + "subject_areas": [ + "Statistics" + ], + "title": "GSIM (Generic Statistical Information Model)" + }, + "https://abcd.tdwg.org/xml/ABCD_2.06.xsd": { + "acronym": "ABCD", + "field_of_science": [ + "zoology", + "earth and related environmental sciences", + "biological sciences", + "palaeontology", + "botany", + "genetics", + "natural sciences", + "geology" + ], + "id": "abcd-access-biological-collection-data.yml", + "identifier": [ + "msc:m1", + "https://doi.org/10.25504/FAIRsharing.kr3215", + "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Earth sciences", + "Genetics", + "Geology", + "Palaeontology", + "Zoology" + ], + "title": "ABCD (Access to Biological Collection Data)" + }, + "https://abcd.tdwg.org/xml/ABCD_2.1.xsd": { + "acronym": "ABCD", + "field_of_science": [ + "zoology", + "earth and related environmental sciences", + "biological sciences", + "palaeontology", + "botany", + "genetics", + "natural sciences", + "geology" + ], + "id": "abcd-access-biological-collection-data.yml", + "identifier": [ + "msc:m1", + "https://doi.org/10.25504/FAIRsharing.kr3215", + "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Earth sciences", + "Genetics", + "Geology", + "Palaeontology", + "Zoology" + ], + "title": "ABCD (Access to Biological Collection Data)" + }, + "https://abcd.tdwg.org/xml/ABCD_3.0.xsd": { + "acronym": "ABCD", + "field_of_science": [ + "zoology", + "earth and related environmental sciences", + "biological sciences", + "palaeontology", + "botany", + "genetics", + "natural sciences", + "geology" + ], + "id": "abcd-access-biological-collection-data.yml", + "identifier": [ + "msc:m1", + "https://doi.org/10.25504/FAIRsharing.kr3215", + "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Earth sciences", + "Genetics", + "Geology", + "Palaeontology", + "Zoology" + ], + "title": "ABCD (Access to Biological Collection Data)" + }, + "https://ands.org.au/standards/rif-cs/registryObjects": { + "acronym": "RIF-CS", + "field_of_science": [ + "sciences" + ], + "id": "rif-cs-registry-interchange-format-collections-and-services.yml", + "identifier": [ + "msc:m98", + "https://doi.org/10.25504/FAIRsharing.reybx2" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RIF-CS (Registry Interchange Format \u00e2\u20ac\u201c Collections and Services)" + }, + "https://api.aiscr.cz/schema/oai_rdf/": { + "acronym": "oai-rdf", + "field_of_science": [], + "id": "oai-rdf-schema.yml", + "identifier": [ + "fuji:m38" + ], + "subject_areas": null, + "title": "OAI-RDF Schema" + }, + "https://bitbucket.org/kanterae/isaconfig-dixa": { + "acronym": null, + "field_of_science": [ + "genetics", + "medical and health sciences", + "toxicology", + "natural sciences" + ], + "id": "isaconfig-dixa.yml", + "identifier": [ + "msc:m68" + ], + "subject_areas": [ + "Genetics", + "Toxicology" + ], + "title": "isaconfig-diXa" + }, + "https://catalog.clarin.eu/ds/ComponentRegistry/rest/registry/1.x/profiles/clarin.eu:cr1:p_1290431694484/xsd": { + "acronym": "CMDI", + "field_of_science": [ + "linguistics", + "humanities", + "languages and literature" + ], + "id": "cmd-component-metadata.yml", + "identifier": [ + "fuji:m6", + "https://doi.org/10.25504/FAIRsharing.2e0599" + ], + "subject_areas": [ + "Linguistics", + "Languages" + ], + "title": "Component MetaData Specification (CMDI)" + }, + "https://cataloguestaging.ukeof.org.uk/schema/ukeof.1.0.0.xsd": { + "acronym": null, + "field_of_science": [ + "hydrology", + "ecology", + "climatology", + "biological sciences", + "engineering and technology", + "soil sciences", + "remote sensing", + "meteorology", + "natural sciences", + "geology" + ], + "id": "ukeof.yml", + "identifier": [ + "msc:m40", + "https://doi.org/10.25504/FAIRsharing.9xytp6" + ], + "subject_areas": [ + "Biogeography", + "Biological diversity", + "Climatology", + "Ecology", + "Geology", + "Hydrology", + "Meteorology", + "Remote sensing", + "Soil sciences" + ], + "title": "UKEOF" + }, + "https://cidoc.mini.icom.museum/working-groups/lido/lido-overview/about-lido/what-is-lido/": { + "acronym": "LIDO", + "field_of_science": [ + "humanities" + ], + "id": "lido-lightweight-information-describing-objects.yml", + "identifier": [ + "fuji:m18", + "https://doi.org/10.25504/FAIRsharing.73558b" + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "LIDO, Lightweight Information Describing Objects" + }, + "https://clarivate.com/products/web-of-science/web-science-form/data-citation-index/": { + "acronym": "dci", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "clarivate-data-citation-index-schema.yml", + "identifier": [ + "fuji:m39" + ], + "subject_areas": [ + "Bibliographic standards" + ], + "title": "Clarivate Data Citation Index Schema" + }, + "https://cocoon.huma-num.fr/schemas/dcq.xsd": { + "acronym": "QDC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core-qualified.yml", + "identifier": [ + "fuji:m22", + "https://doi.org/10.25504/FAIRsharing.3nx7t" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Qualified Dublin Core" + }, + "https://d-nb.info/standards/schema/xmetadissplus.xsd": { + "acronym": "xmetadiss", + "field_of_science": [ + "humanities", + "sciences", + "library sciences" + ], + "id": "xmetadiss-schema.yml", + "identifier": [ + "fuji:m43" + ], + "subject_areas": [ + "Multidisciplinary", + "Bibliographic standards", + "Information/library standards" + ], + "title": "XmetaDiss" + }, + "https://dam.data-archive.ac.uk/standards/qudex_v03_01.xsd": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "qudex-qualitative-data-exchange-format.yml", + "identifier": [ + "msc:m34", + "http://www.dcc.ac.uk/resources/metadata-standards/qudex-qualitative-data-exchange-format", + "https://doi.org/10.25504/FAIRsharing.d42cb9" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "QuDEx (Qualitative Data Exchange Format)" + }, + "https://data.crossref.org/schemas/crossref4.3.7.xsd": { + "acronym": "crossref", + "field_of_science": [ + "sciences" + ], + "id": "crossref-schema.yml", + "identifier": [ + "fuji:m40", + "https://doi.org/10.25504/FAIRsharing.bbQbSW" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Crossref Schema" + }, + "https://data.crossref.org/schemas/crossref4.4.0.xsd": { + "acronym": "crossref", + "field_of_science": [ + "sciences" + ], + "id": "crossref-schema.yml", + "identifier": [ + "fuji:m40", + "https://doi.org/10.25504/FAIRsharing.bbQbSW" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Crossref Schema" + }, + "https://data.crossref.org/schemas/crossref4.4.1.xsd": { + "acronym": "crossref", + "field_of_science": [ + "sciences" + ], + "id": "crossref-schema.yml", + "identifier": [ + "fuji:m40", + "https://doi.org/10.25504/FAIRsharing.bbQbSW" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Crossref Schema" + }, + "https://data.crossref.org/schemas/crossref4.4.2.xsd": { + "acronym": "crossref", + "field_of_science": [ + "sciences" + ], + "id": "crossref-schema.yml", + "identifier": [ + "fuji:m40", + "https://doi.org/10.25504/FAIRsharing.bbQbSW" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Crossref Schema" + }, + "https://data.crossref.org/schemas/crossref4.8.1.xsd": { + "acronym": "crossref", + "field_of_science": [ + "sciences" + ], + "id": "crossref-schema.yml", + "identifier": [ + "fuji:m40", + "https://doi.org/10.25504/FAIRsharing.bbQbSW" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Crossref Schema" + }, + "https://data.crossref.org/schemas/crossref5.3.1.xsd": { + "acronym": "crossref", + "field_of_science": [ + "sciences" + ], + "id": "crossref-schema.yml", + "identifier": [ + "fuji:m40", + "https://doi.org/10.25504/FAIRsharing.bbQbSW" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Crossref Schema" + }, + "https://ddialliance.org/Specification/DDI-Codebook/2.1/XMLSchema/codebook.xsd": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "https://ddialliance.org/Specification/DDI-Codebook/2.5/XMLSchema/codebook.xsd": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "https://ddialliance.org/Specification/DDI-Lifecycle/3.0/XMLSchema/instance.xsd": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "https://ddialliance.org/Specification/DDI-Lifecycle/3.1/XMLSchema/instance.xsd": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "https://ddialliance.org/Specification/DDI-Lifecycle/3.2/XMLSchema/instance.xsd": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "https://ddialliance.org/Specification/DDI-Lifecycle/3.3/XMLSchema/instance.xsd": { + "acronym": "DDI", + "field_of_science": [ + "political sciences", + "history", + "law", + "medical and health sciences", + "sociology", + "social geography", + "humanities", + "statistics and probability", + "demography", + "social sciences", + "economics", + "public health", + "natural sciences" + ], + "id": "ddi-data-documentation-initiative.yml", + "identifier": [ + "msc:m13", + "https://doi.org/10.25504/FAIRsharing.1t5ws6", + "https://doi.org/10.25504/FAIRsharing.EZCpPd", + "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative" + ], + "subject_areas": [ + "Demography", + "Economics", + "Health policy", + "History", + "Human geography", + "Land use", + "Law", + "Politics", + "Social policy", + "Sociology", + "Statistics" + ], + "title": "DDI (Data Documentation Initiative)" + }, + "https://dini-ag-kim.github.io/hs-oer-lom-profil/latest/": { + "acronym": "LOM", + "field_of_science": [], + "id": "lom-higher-education-schema.yml", + "identifier": [ + "fuji:m24", + "https://fairsharing.org/4664" + ], + "subject_areas": null, + "title": "Learning Object Metadata (LOM)" + }, + "https://earthsystemcog.org/projects/es-doc-models/cim": { + "acronym": "CIM", + "field_of_science": [ + "climatology", + "natural sciences" + ], + "id": "cim-common-information-model.yml", + "identifier": [ + "msc:m7", + "https://doi.org/10.25504/FAIRsharing.k3z4q9", + "http://www.dcc.ac.uk/resources/metadata-standards/cim-common-information-model" + ], + "subject_areas": [ + "Climatology" + ], + "title": "CIM (Common Information Model)" + }, + "https://earthsystemcog.org/projects/es-doc-models/cim_versions": { + "acronym": "CIM", + "field_of_science": [ + "climatology", + "natural sciences" + ], + "id": "cim-common-information-model.yml", + "identifier": [ + "msc:m7", + "https://doi.org/10.25504/FAIRsharing.k3z4q9", + "http://www.dcc.ac.uk/resources/metadata-standards/cim-common-information-model" + ], + "subject_areas": [ + "Climatology" + ], + "title": "CIM (Common Information Model)" + }, + "https://eml.ecoinformatics.org/": { + "acronym": "EML", + "field_of_science": [ + "zoology", + "ecology", + "biological sciences", + "botany", + "natural sciences" + ], + "id": "eml-ecological-metadata-language.yml", + "identifier": [ + "msc:m16", + "https://doi.org/10.25504/FAIRsharing.r3vtvx", + "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Ecology", + "Zoology" + ], + "title": "EML (Ecological Metadata Language)" + }, + "https://eml.ecoinformatics.org/eml-2.2.0": { + "acronym": "EML", + "field_of_science": [ + "zoology", + "ecology", + "biological sciences", + "botany", + "natural sciences" + ], + "id": "eml-ecological-metadata-language.yml", + "identifier": [ + "msc:m16", + "https://doi.org/10.25504/FAIRsharing.r3vtvx", + "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Ecology", + "Zoology" + ], + "title": "EML (Ecological Metadata Language)" + }, + "https://eml.ecoinformatics.org/eml-2.2.1": { + "acronym": "EML", + "field_of_science": [ + "zoology", + "ecology", + "biological sciences", + "botany", + "natural sciences" + ], + "id": "eml-ecological-metadata-language.yml", + "identifier": [ + "msc:m16", + "https://doi.org/10.25504/FAIRsharing.r3vtvx", + "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Ecology", + "Zoology" + ], + "title": "EML (Ecological Metadata Language)" + }, + "https://eml.ecoinformatics.org/schema": { + "acronym": "EML", + "field_of_science": [ + "zoology", + "ecology", + "biological sciences", + "botany", + "natural sciences" + ], + "id": "eml-ecological-metadata-language.yml", + "identifier": [ + "msc:m16", + "https://doi.org/10.25504/FAIRsharing.r3vtvx", + "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Ecology", + "Zoology" + ], + "title": "EML (Ecological Metadata Language)" + }, + "https://eml.ecoinformatics.org/schema/eml_xsd": { + "acronym": "EML", + "field_of_science": [ + "zoology", + "ecology", + "biological sciences", + "botany", + "natural sciences" + ], + "id": "eml-ecological-metadata-language.yml", + "identifier": [ + "msc:m16", + "https://doi.org/10.25504/FAIRsharing.r3vtvx", + "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language" + ], + "subject_areas": [ + "Biological diversity", + "Botany", + "Ecology", + "Zoology" + ], + "title": "EML (Ecological Metadata Language)" + }, + "https://frictionlessdata.io/data-packages/": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "data-package.yml", + "identifier": [ + "msc:m10", + "https://doi.org/10.25504/FAIRsharing.3b861d" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Data Package" + }, + "https://frictionlessdata.io/specs/data-package/": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "data-package.yml", + "identifier": [ + "msc:m10", + "https://doi.org/10.25504/FAIRsharing.3b861d" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Data Package" + }, + "https://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/dif_v10.2.xsd": { + "acronym": "DIF", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "ecology", + "climatology", + "agricultural sciences", + "marine biology", + "agriculture", + "biochemistry", + "meteorology", + "natural sciences" + ], + "id": "dif-directory-interchange-format.yml", + "identifier": [ + "msc:m14", + "https://doi.org/10.25504/FAIRsharing.esxaaq", + "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format" + ], + "subject_areas": [ + "Agriculture", + "Biochemistry", + "Climatology", + "Ecology", + "Glaciology", + "Hydrology", + "Marine biology", + "Meteorology", + "Oceanography" + ], + "title": "DIF (Directory Interchange Format)" + }, + "https://git.earthdata.nasa.gov/projects/EMFD/repos/dif-schemas/browse/10.x/dif.xsd": { + "acronym": "DIF", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "ecology", + "climatology", + "agricultural sciences", + "marine biology", + "agriculture", + "biochemistry", + "meteorology", + "natural sciences" + ], + "id": "dif-directory-interchange-format.yml", + "identifier": [ + "msc:m14", + "https://doi.org/10.25504/FAIRsharing.esxaaq", + "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format" + ], + "subject_areas": [ + "Agriculture", + "Biochemistry", + "Climatology", + "Ecology", + "Glaciology", + "Hydrology", + "Marine biology", + "Meteorology", + "Oceanography" + ], + "title": "DIF (Directory Interchange Format)" + }, + "https://github.com/DSpace/xoai": { + "acronym": "XOAI", + "field_of_science": [], + "id": "xoai-metadata-format.yml", + "identifier": [ + "fuji:m6" + ], + "subject_areas": null, + "title": "XOAI, a DSPACE Metadata Format" + }, + "https://github.com/ES-DOC/esdoc-cim/blob/v1.10.0/cim.xsd": { + "acronym": "CIM", + "field_of_science": [ + "climatology", + "natural sciences" + ], + "id": "cim-common-information-model.yml", + "identifier": [ + "msc:m7", + "https://doi.org/10.25504/FAIRsharing.k3z4q9", + "http://www.dcc.ac.uk/resources/metadata-standards/cim-common-information-model" + ], + "subject_areas": [ + "Climatology" + ], + "title": "CIM (Common Information Model)" + }, + "https://github.com/scholix/schema/blob/master/xsd/v1/scholix.xsd": { + "acronym": "scholix", + "field_of_science": [], + "id": "scholix-metadata-schema.yml", + "identifier": [ + "fuji:m28", + "https://doi.org/10.25504/FAIRsharing.B0d5Kn" + ], + "subject_areas": null, + "title": null + }, + "https://github.com/scholix/schema/blob/master/xsd/v3/schema.xsd": { + "acronym": "scholix", + "field_of_science": [], + "id": "scholix-metadata-schema.yml", + "identifier": [ + "fuji:m28", + "https://doi.org/10.25504/FAIRsharing.B0d5Kn" + ], + "subject_areas": null, + "title": null + }, + "https://groups.niso.org/apps/group_public/download.php/14833/z39_88_2004_r2010.pdf": { + "acronym": "CTX", + "field_of_science": [ + "sciences" + ], + "id": "openurl-contextobject.yml", + "identifier": [ + "fuji:m7", + "https://fairsharing.org/4686" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "The OpenURL ContextObject Format" + }, + "https://guidelines.openaire.eu/": { + "acronym": "OpenAIRE_G", + "field_of_science": [ + "sciences" + ], + "id": "openaire-guidelines.yml", + "identifier": [ + "msc:m92", + "https://doi.org/10.25504/FAIRsharing.123197" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "OpenAIRE Guidelines" + }, + "https://historicengland.org.uk/images-books/publications/midas-heritage/": { + "acronym": "MIDAS", + "field_of_science": [ + "humanities", + "archaeology", + "history", + "architectural design" + ], + "id": "midas-heritage.yml", + "identifier": [ + "msc:m24", + "https://doi.org/10.25504/FAIRsharing.q0hgq", + "http://www.dcc.ac.uk/resources/metadata-standards/midas-heritage" + ], + "subject_areas": [ + "Archaeology", + "Architecture", + "Cultural heritage", + "Cultural property preservation", + "History" + ], + "title": "MIDAS-Heritage" + }, + "https://ieeexplore.ieee.org/document/1032843": { + "acronym": "LOM", + "field_of_science": [], + "id": "lom-higher-education-schema.yml", + "identifier": [ + "fuji:m24", + "https://fairsharing.org/4664" + ], + "subject_areas": null, + "title": "Learning Object Metadata (LOM)" + }, + "https://infra.clarin.eu/CMDI/1.x/xsd/cmd-envelop.xsd": { + "acronym": "CMDI", + "field_of_science": [ + "linguistics", + "humanities", + "languages and literature" + ], + "id": "cmd-component-metadata.yml", + "identifier": [ + "fuji:m6", + "https://doi.org/10.25504/FAIRsharing.2e0599" + ], + "subject_areas": [ + "Linguistics", + "Languages" + ], + "title": "Component MetaData Specification (CMDI)" + }, + "https://inrae.github.io/ODAM/data-preparation/url": { + "acronym": null, + "field_of_science": [], + "id": "odam-datapackage.yml", + "identifier": [ + "10.25504/FAIRsharing.ld9wne" + ], + "subject_areas": [ + "biochemistry", + "molecular-biology", + "metabolic-biochemistry", + "biomaterials", + "bioengineering" + ], + "title": "ODAM Structural Metadata" + }, + "https://jats.nlm.nih.gov/publishing/1.0/xsd/JATS-journalpublishing1.xsd": { + "acronym": "jats", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "jats-schema.yml", + "identifier": [ + "fuji:m41", + "https://doi.org/10.25504/FAIRsharing.smr0rh" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "Journal Publishing Tag Set (Jats)" + }, + "https://mcp-profile-docs.readthedocs.io/en/stable/": { + "acronym": "AODN", + "field_of_science": [ + "glaciology", + "oceanography", + "hydrology", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences" + ], + "id": "marine-community-profile.yml", + "identifier": [ + "msc:m71", + "https://doi.org/10.25504/FAIRsharing.18b8b4" + ], + "subject_areas": [ + "Climatology", + "Earth sciences", + "Glaciology", + "Hydrology", + "Meteorology", + "Oceanography" + ], + "title": "AODN Marine Community Profile" + }, + "https://more.metadatacenter.org/sites/default/files/artifact/CEDAR%20Template%20Model%20v1.5.0_0.pdf": { + "acronym": "CEDAR", + "field_of_science": [ + "public administration", + "medical engineering", + "medical and health sciences", + "earth and related environmental sciences", + "agricultural sciences", + "clinical medicine", + "engineering and technology", + "agriculture", + "social sciences", + "natural sciences" + ], + "id": "cedar-template-model.yml", + "identifier": [ + "msc:m94", + "https://doi.org/10.25504/FAIRsharing.V527H4" + ], + "subject_areas": [ + "Administration", + "Agricultural research", + "Clinical medicine", + "Earth sciences", + "Medical information systems" + ], + "title": "CEDAR Template Model" + }, + "https://more.metadatacenter.org/tools-training/outreach/cedar-template-model": { + "acronym": "CEDAR", + "field_of_science": [ + "public administration", + "medical engineering", + "medical and health sciences", + "earth and related environmental sciences", + "agricultural sciences", + "clinical medicine", + "engineering and technology", + "agriculture", + "social sciences", + "natural sciences" + ], + "id": "cedar-template-model.yml", + "identifier": [ + "msc:m94", + "https://doi.org/10.25504/FAIRsharing.V527H4" + ], + "subject_areas": [ + "Administration", + "Agricultural research", + "Clinical medicine", + "Earth sciences", + "Medical information systems" + ], + "title": "CEDAR Template Model" + }, + "https://openaire.eu": { + "acronym": "OpenAIRE_G", + "field_of_science": [ + "sciences" + ], + "id": "openaire-guidelines.yml", + "identifier": [ + "msc:m92", + "https://doi.org/10.25504/FAIRsharing.123197" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "OpenAIRE Guidelines" + }, + "https://pro.carare.eu/doku.php?id=support:metadata-schema": { + "acronym": "CARARE", + "field_of_science": [ + "humanities", + "archaeology", + "history", + "architectural design" + ], + "id": "carare-metadata-schema.yml", + "identifier": [ + "msc:m49", + "https://doi.org/10.25504/FAIRsharing.ba7c93" + ], + "subject_areas": [ + "Archaeology", + "Architecture", + "Cultural heritage", + "Cultural property preservation", + "History" + ], + "title": "CARARE metadata schema" + }, + "https://pro.carare.eu/lib/exe/fetch.php?media=support:carare-v1_0_6_1.xsd": { + "acronym": "CARARE", + "field_of_science": [ + "humanities", + "archaeology", + "history", + "architectural design" + ], + "id": "carare-metadata-schema.yml", + "identifier": [ + "msc:m49", + "https://doi.org/10.25504/FAIRsharing.ba7c93" + ], + "subject_areas": [ + "Archaeology", + "Architecture", + "Cultural heritage", + "Cultural property preservation", + "History" + ], + "title": "CARARE metadata schema" + }, + "https://pro.europeana.eu/page/edm-documentation": { + "acronym": "EDM", + "field_of_science": [ + "humanities" + ], + "id": "edm-europeana-data-model.yml", + "identifier": [ + "fuji:m33", + "https://fairsharing.org/4653" + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "Europeana Data Model (EDM)" + }, + "https://prsinfo.clinicaltrials.gov/ProtocolRecordSchema.xsd": { + "acronym": null, + "field_of_science": [ + "medical and health sciences", + "clinical medicine" + ], + "id": "protocol-data-element-definitions.yml", + "identifier": [ + "msc:m32", + "http://www.dcc.ac.uk/resources/metadata-standards/protocol-data-element-definitions", + "https://doi.org/10.25504/FAIRsharing.7e962d" + ], + "subject_areas": [ + "Clinical medicine" + ], + "title": "Protocol Data Element Definitions" + }, + "https://prsinfo.clinicaltrials.gov/RRSUploadSchema.xsd": { + "acronym": null, + "field_of_science": [ + "medical and health sciences", + "clinical medicine" + ], + "id": "protocol-data-element-definitions.yml", + "identifier": [ + "msc:m32", + "http://www.dcc.ac.uk/resources/metadata-standards/protocol-data-element-definitions", + "https://doi.org/10.25504/FAIRsharing.7e962d" + ], + "subject_areas": [ + "Clinical medicine" + ], + "title": "Protocol Data Element Definitions" + }, + "https://psidev.info/magetab": { + "acronym": null, + "field_of_science": [], + "id": "mage-tab.yml", + "identifier": [ + "msc:m87", + "https://fairsharing.org/4680" + ], + "subject_areas": null, + "title": "MAGE-TAB" + }, + "https://pure.mpg.de/pubman/faces/ViewItemOverviewPage.jsp?itemId=item_1480943": { + "acronym": "CMDI", + "field_of_science": [ + "linguistics", + "humanities", + "languages and literature" + ], + "id": "cmd-component-metadata.yml", + "identifier": [ + "fuji:m6", + "https://doi.org/10.25504/FAIRsharing.2e0599" + ], + "subject_areas": [ + "Linguistics", + "Languages" + ], + "title": "Component MetaData Specification (CMDI)" + }, + "https://quake.ethz.ch/quakeml": { + "acronym": "QuakeML", + "field_of_science": [ + "earth and related environmental sciences", + "natural sciences", + "geophysics" + ], + "id": "quakeml.yml", + "identifier": [ + "fuji:m9", + "https://fairsharing.org/1444" + ], + "subject_areas": [ + "Earth sciences", + "Geophysics" + ], + "title": "QuakeML" + }, + "https://resources.bepress.com/OAI/2.0/qualified-dublin-core/": { + "acronym": "oai_dc", + "field_of_science": [ + "sciences" + ], + "id": "oai-dublin-core-schema.yml", + "identifier": [ + "fuji:m44", + "https://doi.org/10.25504/FAIRsharing.0417cf" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Open Archive Initiative Dublin Core (OAI DC)" + }, + "https://schema.org": { + "acronym": "schemaorg", + "field_of_science": [ + "sciences" + ], + "id": "schemaorg.yml", + "identifier": [ + "https://doi.org/10.25504/FAIRsharing.hzdzq8", + "msc:m101" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Schema.org" + }, + "https://schema.org/docs/documents.html": { + "acronym": "schemaorg", + "field_of_science": [ + "sciences" + ], + "id": "schemaorg.yml", + "identifier": [ + "https://doi.org/10.25504/FAIRsharing.hzdzq8", + "msc:m101" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Schema.org" + }, + "https://schemas.opengis.net/om/1.0.0/observation.xsd": { + "acronym": null, + "field_of_science": [ + "engineering and technology", + "chemical sciences", + "remote sensing", + "meteorology", + "natural sciences", + "geology" + ], + "id": "observations-and-measurements.yml", + "identifier": [ + "msc:m28", + "https://doi.org/10.25504/FAIRsharing.4ehmy9", + "http://www.dcc.ac.uk/resources/metadata-standards/observations-and-measurements" + ], + "subject_areas": [ + "Chemistry", + "Geology", + "Meteorology", + "Remote sensing" + ], + "title": "Observations and Measurements" + }, + "https://schemas.opengis.net/om/2.0/observation.xsd": { + "acronym": null, + "field_of_science": [ + "engineering and technology", + "chemical sciences", + "remote sensing", + "meteorology", + "natural sciences", + "geology" + ], + "id": "observations-and-measurements.yml", + "identifier": [ + "msc:m28", + "https://doi.org/10.25504/FAIRsharing.4ehmy9", + "http://www.dcc.ac.uk/resources/metadata-standards/observations-and-measurements" + ], + "subject_areas": [ + "Chemistry", + "Geology", + "Meteorology", + "Remote sensing" + ], + "title": "Observations and Measurements" + }, + "https://schemas.opengis.net/waterml/2.0/waterml2.xsd": { + "acronym": null, + "field_of_science": [ + "hydrology", + "natural sciences" + ], + "id": "waterml.yml", + "identifier": [ + "msc:m83", + "https://doi.org/10.25504/FAIRsharing.e07e1b" + ], + "subject_areas": [ + "Hydrology" + ], + "title": "WaterML" + }, + "https://spase-group.org/data/schema/spase-1.0.0.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-1.1.0.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-1.2.0.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-1.2.1.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-1.2.2.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-1.3.0.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.0.0.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.1.0.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.2.0.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.2.1.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.2.2.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.2.3.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.2.4.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.2.6.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.2.8.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.2.9.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.3.0.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.3.1.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.3.2.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.4.0.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.4.1.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.4.2.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://spase-group.org/data/schema/spase-2.5.0.xsd": { + "acronym": null, + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "spase-data-model.yml", + "identifier": [ + "msc:m39", + "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model", + "https://doi.org/10.25504/FAIRsharing.f5d440" + ], + "subject_areas": [ + "Astronomical systems", + "Astronomy", + "Sun" + ], + "title": "SPASE Data Model" + }, + "https://w3id.org/kim/hs-oer-lom-profil/latest/schemas/hs-oer-lom.xsd": { + "acronym": "LOM", + "field_of_science": [], + "id": "lom-higher-education-schema.yml", + "identifier": [ + "fuji:m24", + "https://fairsharing.org/4664" + ], + "subject_areas": null, + "title": "Learning Object Metadata (LOM)" + }, + "https://w3id.org/ro/crate": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "ro-crate.yml", + "identifier": [ + "https://doi.org/10.25504/FAIRsharing.wUoZKE", + "msc:m102" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RO-Crate" + }, + "https://w3id.org/ro/crate/0.2/context": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "ro-crate.yml", + "identifier": [ + "https://doi.org/10.25504/FAIRsharing.wUoZKE", + "msc:m102" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RO-Crate" + }, + "https://w3id.org/ro/crate/1.0/context": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "ro-crate.yml", + "identifier": [ + "https://doi.org/10.25504/FAIRsharing.wUoZKE", + "msc:m102" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RO-Crate" + }, + "https://w3id.org/ro/crate/1.1": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "ro-crate.yml", + "identifier": [ + "https://doi.org/10.25504/FAIRsharing.wUoZKE", + "msc:m102" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RO-Crate" + }, + "https://w3id.org/ro/crate/1.1/context": { + "acronym": null, + "field_of_science": [ + "sciences" + ], + "id": "ro-crate.yml", + "identifier": [ + "https://doi.org/10.25504/FAIRsharing.wUoZKE", + "msc:m102" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RO-Crate" + }, + "https://wiki.dnb.de/display/URNSERVDOK/xepicur+-+XML-Datentransferformat+zur+Verwaltung+von+URN": { + "acronym": "epicur", + "field_of_science": [], + "id": "epicur-metadata-schema.yml", + "identifier": [ + "fuji:m21", + "https://fairsharing.org/4659" + ], + "subject_areas": null, + "title": "xepicur" + }, + "https://wiki.nci.nih.gov/display/ICR/ISA-TAB-Nano#ISA-TAB-Nano-title": { + "acronym": null, + "field_of_science": [ + "biochemistry", + "biological sciences", + "engineering and technology", + "natural sciences" + ], + "id": "isa-tab-nano.yml", + "identifier": [ + "msc:m67", + "https://doi.org/10.25504/FAIRsharing.njqq5b" + ], + "subject_areas": [ + "Biochemicals", + "Biotechnology" + ], + "title": "ISA-TAB Nano" + }, + "https://wis.wmo.int/2012/metadata/": { + "acronym": null, + "field_of_science": [ + "meteorology", + "natural sciences" + ], + "id": "wmo-core-metadata-profile.yml", + "identifier": [ + "msc:m84", + "https://doi.org/10.25504/FAIRsharing.5e7bdc" + ], + "subject_areas": [ + "Meteorology" + ], + "title": "WMO Core Metadata Profile" + }, + "https://www.ands.org.au/online-services/rif-cs-schema": { + "acronym": "RIF-CS", + "field_of_science": [ + "sciences" + ], + "id": "rif-cs-registry-interchange-format-collections-and-services.yml", + "identifier": [ + "msc:m98", + "https://doi.org/10.25504/FAIRsharing.reybx2" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RIF-CS (Registry Interchange Format \u00e2\u20ac\u201c Collections and Services)" + }, + "https://www.anzlic.gov.au/resources/anzlic-metadata-profile": { + "acronym": "ANZLIC", + "field_of_science": [ + "cartography", + "natural sciences", + "physical geography" + ], + "id": "anzlic-metadata-profile.yml", + "identifier": [ + "msc:m46", + "https://fairsharing.org/820" + ], + "subject_areas": [ + "Cartography", + "Geography", + "Topography" + ], + "title": "ANZLIC Metadata Profile" + }, + "https://www.ariadne-infrastructure.eu/resource/ao/": { + "acronym": "ACDM", + "field_of_science": [ + "humanities", + "archaeology" + ], + "id": "ariadne-dataset-catalogue-model.yml", + "identifier": [ + "fuji:m19", + "https://fairsharing.org/4647" + ], + "subject_areas": [ + "Archaeology" + ], + "title": "ARIADNE Dataset Catalogue Model (ACDM)" + }, + "https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/": { + "acronym": "ACDM", + "field_of_science": [ + "humanities", + "archaeology" + ], + "id": "ariadne-dataset-catalogue-model.yml", + "identifier": [ + "fuji:m19", + "https://fairsharing.org/4647" + ], + "subject_areas": [ + "Archaeology" + ], + "title": "ARIADNE Dataset Catalogue Model (ACDM)" + }, + "https://www.bodc.ac.uk/data/information_and_inventories/edmed/": { + "acronym": null, + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "environmental sciences", + "ecology", + "climatology", + "soil sciences", + "meteorology", + "natural sciences" + ], + "id": "edmed-metadata-profile.yml", + "identifier": [ + "msc:m58", + "https://doi.org/10.25504/FAIRsharing.ed7f20" + ], + "subject_areas": [ + "Climatology", + "Ecology", + "Environmental sciences", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Soil sciences" + ], + "title": "EDMED Metadata Profile" + }, + "https://www.clarin.eu/cmd/1": { + "acronym": "CMDI", + "field_of_science": [ + "linguistics", + "humanities", + "languages and literature" + ], + "id": "cmd-component-metadata.yml", + "identifier": [ + "fuji:m6", + "https://doi.org/10.25504/FAIRsharing.2e0599" + ], + "subject_areas": [ + "Linguistics", + "Languages" + ], + "title": "Component MetaData Specification (CMDI)" + }, + "https://www.clarin.eu/content/component-metadata": { + "acronym": "CMDI", + "field_of_science": [ + "linguistics", + "humanities", + "languages and literature" + ], + "id": "cmd-component-metadata.yml", + "identifier": [ + "fuji:m6", + "https://doi.org/10.25504/FAIRsharing.2e0599" + ], + "subject_areas": [ + "Linguistics", + "Languages" + ], + "title": "Component MetaData Specification (CMDI)" + }, + "https://www.da-ra.de/downloads#version-3-0": { + "acronym": "da|ra", + "field_of_science": [ + "social sciences", + "political sciences", + "sociology" + ], + "id": "dara-metadata-schema.yml", + "identifier": [ + "fuji:m10", + "https://fairsharing.org/4651" + ], + "subject_areas": [ + "Social policy", + "Sociology" + ], + "title": "da|ra Metadata Schema" + }, + "https://www.editeur.org/files/ONIX%203/APPNOTE%20Describing%20e-books%20in%20ONIX.pdf": { + "acronym": "onix", + "field_of_science": [ + "library sciences", + "humanities" + ], + "id": "onix-metadata-schema.yml", + "identifier": [ + "fuji:m42", + "https://fairsharing.org/4683" + ], + "subject_areas": [ + "Bibliographic standards", + "Information/library standards" + ], + "title": "ONIX for Books Product Information Message" + }, + "https://www.eurocris.org/Uploads/Web%20pages/CERIF-1.5/CERIF_1.5_1.xsd": { + "acronym": "CERIF", + "field_of_science": [ + "sciences" + ], + "id": "cerif.yml", + "identifier": [ + "msc:m4", + "https://doi.org/10.25504/FAIRsharing.6945dq" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "CERIF (Common European Research Information Format)" + }, + "https://www.eurocris.org/Uploads/Web%20pages/CERIF-1.6/CERIF_1.6_2.xsd": { + "acronym": "CERIF", + "field_of_science": [ + "sciences" + ], + "id": "cerif.yml", + "identifier": [ + "msc:m4", + "https://doi.org/10.25504/FAIRsharing.6945dq" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "CERIF (Common European Research Information Format)" + }, + "https://www.fgdc.gov/schemas/metadata/": { + "acronym": "fgdc", + "field_of_science": [ + "oceanography", + "hydrology", + "social sciences", + "cartography", + "physical geography", + "climatology", + "social geography", + "marine biology", + "biochemistry", + "meteorology", + "natural sciences" + ], + "id": "fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge.yml", + "identifier": [ + "msc:m17", + "https://fairsharing.org/1445", + "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge" + ], + "subject_areas": [ + "Biochemistry", + "Cartography", + "Climatology", + "Geography", + "Hydrology", + "Land use", + "Marine biology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "FGDC/CSDGM (Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata)" + }, + "https://www.fgdc.gov/schemas/metadata/fgdc-std-001-1998.xsd": { + "acronym": "fgdc", + "field_of_science": [ + "oceanography", + "hydrology", + "social sciences", + "cartography", + "physical geography", + "climatology", + "social geography", + "marine biology", + "biochemistry", + "meteorology", + "natural sciences" + ], + "id": "fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge.yml", + "identifier": [ + "msc:m17", + "https://fairsharing.org/1445", + "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge" + ], + "subject_areas": [ + "Biochemistry", + "Cartography", + "Climatology", + "Geography", + "Hydrology", + "Land use", + "Marine biology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "FGDC/CSDGM (Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata)" + }, + "https://www.fgdc.gov/schemas/metadata/fgdc-std-001.2-2001.xsd": { + "acronym": "fgdc", + "field_of_science": [ + "oceanography", + "hydrology", + "social sciences", + "cartography", + "physical geography", + "climatology", + "social geography", + "marine biology", + "biochemistry", + "meteorology", + "natural sciences" + ], + "id": "fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge.yml", + "identifier": [ + "msc:m17", + "https://fairsharing.org/1445", + "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge" + ], + "subject_areas": [ + "Biochemistry", + "Cartography", + "Climatology", + "Geography", + "Hydrology", + "Land use", + "Marine biology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "FGDC/CSDGM (Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata)" + }, + "https://www.getty.edu/CDWA/CDWALite": { + "acronym": "cdwa-lite", + "field_of_science": [ + "humanities" + ], + "id": "cdwa-lite-schema.yml", + "identifier": [ + "fuji:m30", + "https://fairsharing.org/4649" + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "CDWA Lite" + }, + "https://www.getty.edu/research/publications/electronic_publications/cdwa/cdwalite.pdf": { + "acronym": "cdwa-lite", + "field_of_science": [ + "humanities" + ], + "id": "cdwa-lite-schema.yml", + "identifier": [ + "fuji:m30", + "https://fairsharing.org/4649" + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "CDWA Lite" + }, + "https://www.ivoa.net/documents/RegistryInterface/20180723/REC-RegistryInterface-1.1.html": { + "acronym": "ivoa-reg", + "field_of_science": [ + "astronomy", + "natural sciences" + ], + "id": "ivoa-registry-metdata.yml", + "identifier": [ + "fuji:m35", + "https://doi.org/10.25504/FAIRsharing.RycpEU", + "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications" + ], + "subject_areas": [ + "Astronomy" + ], + "title": "IVOA Registry Interfaces" + }, + "https://www.ivoa.net/documents/cover/CharacterisationDM-20070530.html": { + "acronym": "CharDM", + "field_of_science": [], + "id": "chardm-astronomical-dataset-characterisation.yml", + "identifier": [ + "fuji:m29", + "https://doi.org/10.25504/FAIRsharing.yYjZWb" + ], + "subject_areas": null, + "title": "CharDM, Data Model for Astronomical DataSet Characterisation" + }, + "https://www.loc.gov/ead/": { + "acronym": "ead", + "field_of_science": [ + "humanities", + "history" + ], + "id": "ead-encoded-archival-description.yml", + "identifier": [ + "msc:m96", + "https://doi.org/10.25504/FAIRsharing.95f59a" + ], + "subject_areas": [ + "History" + ], + "title": "EAD (Encoded Archival Description)" + }, + "https://www.loc.gov/ead/EAD3taglib/EAD3.html": { + "acronym": "ead", + "field_of_science": [ + "humanities", + "history" + ], + "id": "ead-encoded-archival-description.yml", + "identifier": [ + "msc:m96", + "https://doi.org/10.25504/FAIRsharing.95f59a" + ], + "subject_areas": [ + "History" + ], + "title": "EAD (Encoded Archival Description)" + }, + "https://www.loc.gov/ead/ag/aghome.html": { + "acronym": "ead", + "field_of_science": [ + "humanities", + "history" + ], + "id": "ead-encoded-archival-description.yml", + "identifier": [ + "msc:m96", + "https://doi.org/10.25504/FAIRsharing.95f59a" + ], + "subject_areas": [ + "History" + ], + "title": "EAD (Encoded Archival Description)" + }, + "https://www.loc.gov/ead/ead.xsd": { + "acronym": "ead", + "field_of_science": [ + "humanities", + "history" + ], + "id": "ead-encoded-archival-description.yml", + "identifier": [ + "msc:m96", + "https://doi.org/10.25504/FAIRsharing.95f59a" + ], + "subject_areas": [ + "History" + ], + "title": "EAD (Encoded Archival Description)" + }, + "https://www.loc.gov/ead/ead3.dtd": { + "acronym": "ead", + "field_of_science": [ + "humanities", + "history" + ], + "id": "ead-encoded-archival-description.yml", + "identifier": [ + "msc:m96", + "https://doi.org/10.25504/FAIRsharing.95f59a" + ], + "subject_areas": [ + "History" + ], + "title": "EAD (Encoded Archival Description)" + }, + "https://www.loc.gov/ead/ead3.xsd": { + "acronym": "ead", + "field_of_science": [ + "humanities", + "history" + ], + "id": "ead-encoded-archival-description.yml", + "identifier": [ + "msc:m96", + "https://doi.org/10.25504/FAIRsharing.95f59a" + ], + "subject_areas": [ + "History" + ], + "title": "EAD (Encoded Archival Description)" + }, + "https://www.loc.gov/ead/tglib/": { + "acronym": "ead", + "field_of_science": [ + "humanities", + "history" + ], + "id": "ead-encoded-archival-description.yml", + "identifier": [ + "msc:m96", + "https://doi.org/10.25504/FAIRsharing.95f59a" + ], + "subject_areas": [ + "History" + ], + "title": "EAD (Encoded Archival Description)" + }, + "https://www.loc.gov/ead/tglib1998/": { + "acronym": "ead", + "field_of_science": [ + "humanities", + "history" + ], + "id": "ead-encoded-archival-description.yml", + "identifier": [ + "msc:m96", + "https://doi.org/10.25504/FAIRsharing.95f59a" + ], + "subject_areas": [ + "History" + ], + "title": "EAD (Encoded Archival Description)" + }, + "https://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd": { + "acronym": "MARC", + "field_of_science": [ + "humanities", + "sciences", + "library sciences" + ], + "id": "marc-machine-readable-cataloging.yml", + "identifier": [ + "msc:m88", + "https://doi.org/10.25504/FAIRsharing.217b1b" + ], + "subject_areas": [ + "Multidisciplinary", + "Bibliographic standards", + "Information/library standards" + ], + "title": "MARC (Machine-Readable Cataloging)" + }, + "https://www.loc.gov/standards/mets/mets-profiles.html": { + "acronym": "METS", + "field_of_science": [ + "sciences" + ], + "id": "mets-metadata-encoding-and-transmission-standard.yml", + "identifier": [ + "fuji:m11", + "https://doi.org/10.25504/FAIRsharing.921056" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "METS - Metadata Encoding and Transmission Standard" + }, + "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v1-2.xsd": { + "acronym": "METS", + "field_of_science": [ + "sciences" + ], + "id": "mets-metadata-encoding-and-transmission-standard.yml", + "identifier": [ + "fuji:m11", + "https://doi.org/10.25504/FAIRsharing.921056" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "METS - Metadata Encoding and Transmission Standard" + }, + "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v2-0.xsd": { + "acronym": "METS", + "field_of_science": [ + "sciences" + ], + "id": "mets-metadata-encoding-and-transmission-standard.yml", + "identifier": [ + "fuji:m11", + "https://doi.org/10.25504/FAIRsharing.921056" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "METS - Metadata Encoding and Transmission Standard" + }, + "https://www.loc.gov/standards/mets/profile_docs/mets.profile.v2-1.xsd": { + "acronym": "METS", + "field_of_science": [ + "sciences" + ], + "id": "mets-metadata-encoding-and-transmission-standard.yml", + "identifier": [ + "fuji:m11", + "https://doi.org/10.25504/FAIRsharing.921056" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "METS - Metadata Encoding and Transmission Standard" + }, + "https://www.loc.gov/standards/premis/v1/PREMIS-v1-1.xsd": { + "acronym": "premis", + "field_of_science": [ + "sciences" + ], + "id": "premis.yml", + "identifier": [ + "msc:m31", + "https://doi.org/10.25504/FAIRsharing.27a0f4" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "PREMIS" + }, + "https://www.loc.gov/standards/premis/v2/premis-v2-2.xsd": { + "acronym": "premis", + "field_of_science": [ + "sciences" + ], + "id": "premis.yml", + "identifier": [ + "msc:m31", + "https://doi.org/10.25504/FAIRsharing.27a0f4" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "PREMIS" + }, + "https://www.loc.gov/standards/premis/v2/premis-v2-3.xsd": { + "acronym": "premis", + "field_of_science": [ + "sciences" + ], + "id": "premis.yml", + "identifier": [ + "msc:m31", + "https://doi.org/10.25504/FAIRsharing.27a0f4" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "PREMIS" + }, + "https://www.loc.gov/standards/premis/v3/premis-v3-0.xsd": { + "acronym": "premis", + "field_of_science": [ + "sciences" + ], + "id": "premis.yml", + "identifier": [ + "msc:m31", + "https://doi.org/10.25504/FAIRsharing.27a0f4" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "PREMIS" + }, + "https://www.mpi.nl/IMDI/Schema/IMDI_3.0.xsd": { + "acronym": "IMDI", + "field_of_science": [ + "linguistics", + "humanities" + ], + "id": "imdi-metadata-schema.yml", + "identifier": [ + "fuji:m15", + "https://doi.org/10.25504/FAIRsharing.2cfb88" + ], + "subject_areas": [ + "Humanities", + "Linguistics" + ], + "title": "IMDI Metadata Standard" + }, + "https://www.oerbw.de/hsoerlom": { + "acronym": "LOM", + "field_of_science": [], + "id": "lom-higher-education-schema.yml", + "identifier": [ + "fuji:m24", + "https://fairsharing.org/4664" + ], + "subject_areas": null, + "title": "Learning Object Metadata (LOM)" + }, + "https://www.ogc.org/standards/gml": { + "acronym": null, + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "cartography", + "physical geography", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences", + "geology" + ], + "id": "iso-19136.yml", + "identifier": [ + "fuji:m3", + "https://doi.org/10.25504/FAIRsharing.d69ee0" + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Geology", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "Geography Markup Language" + }, + "https://www.openaire.eu/cerif-profile/1.1/": { + "acronym": "CERIF", + "field_of_science": [ + "sciences" + ], + "id": "cerif.yml", + "identifier": [ + "msc:m4", + "https://doi.org/10.25504/FAIRsharing.6945dq" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "CERIF (Common European Research Information Format)" + }, + "https://www.openaire.eu/schema/1.0/oaf-1.0.xsd": { + "acronym": "OpenAIRE_RG", + "field_of_science": [ + "sciences" + ], + "id": "openaire-research-graph.yml", + "identifier": [ + "fuji:m20", + "https://fairsharing.org/4684" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "OpenAIRE Research Graph" + }, + "https://www.openaire.eu/schema/cris/1.1/openaire-cerif-profile.xsd": { + "acronym": "CERIF", + "field_of_science": [ + "sciences" + ], + "id": "cerif.yml", + "identifier": [ + "msc:m4", + "https://doi.org/10.25504/FAIRsharing.6945dq" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "CERIF (Common European Research Information Format)" + }, + "https://www.openaire.eu/schema/latest/doc/oaf.html": { + "acronym": "OpenAIRE_RG", + "field_of_science": [ + "sciences" + ], + "id": "openaire-research-graph.yml", + "identifier": [ + "fuji:m20", + "https://fairsharing.org/4684" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "OpenAIRE Research Graph" + }, + "https://www.openaire.eu/schema/repo-lit/4.0/openaire.xsd": { + "acronym": "OpenAIRE_G", + "field_of_science": [ + "sciences" + ], + "id": "openaire-guidelines.yml", + "identifier": [ + "msc:m92", + "https://doi.org/10.25504/FAIRsharing.123197" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "OpenAIRE Guidelines" + }, + "https://www.rioxx.net/": { + "acronym": "rioxx", + "field_of_science": [ + "sciences" + ], + "id": "rioxx-metadata-application-profile.yml", + "identifier": [ + "fuji:m5", + "https://fairsharing.org/4690" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RIOXX Metadata Application Profile" + }, + "https://www.rioxx.net/schema/v2.0/rioxxterms/": { + "acronym": "rioxx", + "field_of_science": [ + "sciences" + ], + "id": "rioxx-metadata-application-profile.yml", + "identifier": [ + "fuji:m5", + "https://fairsharing.org/4690" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "RIOXX Metadata Application Profile" + }, + "https://www.tei-c.org/release/doc/tei-p5-doc/en/html/index.html": { + "acronym": "TEI", + "field_of_science": [ + "languages and literature", + "humanities", + "history" + ], + "id": "tei-text-encoding-initiative-guidelines.yml", + "identifier": [ + "msc:m99", + "https://doi.org/10.25504/FAIRsharing.87b86e" + ], + "subject_areas": [ + "History", + "Languages" + ], + "title": "TEI (Text Encoding Initiative) Guidelines" + }, + "https://www.ukeof.org.uk/schema/1/UKEOF_v1.0.xsd": { + "acronym": null, + "field_of_science": [ + "hydrology", + "ecology", + "climatology", + "biological sciences", + "engineering and technology", + "soil sciences", + "remote sensing", + "meteorology", + "natural sciences", + "geology" + ], + "id": "ukeof.yml", + "identifier": [ + "msc:m40", + "https://doi.org/10.25504/FAIRsharing.9xytp6" + ], + "subject_areas": [ + "Biogeography", + "Biological diversity", + "Climatology", + "Ecology", + "Geology", + "Hydrology", + "Meteorology", + "Remote sensing", + "Soil sciences" + ], + "title": "UKEOF" + }, + "https://www.w3.org/2005/Atom": { + "acronym": "ATOM", + "field_of_science": [ + "sciences" + ], + "id": "atom-syndication-format.yml", + "identifier": [ + "fuji:m13", + "https://fairsharing.org/4648" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "The Atom Syndication Format" + }, + "https://www.w3.org/2017/dxwg/wiki/Main_Page": { + "acronym": "DCAT", + "field_of_science": [ + "sciences" + ], + "id": "dcat-data-catalog-vocabulary.yml", + "identifier": [ + "msc:m12", + "https://doi.org/10.25504/FAIRsharing.h4j3qm", + "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DCAT (Data Catalog Vocabulary)" + }, + "https://www.w3.org/Submission/prism": { + "acronym": "PRISM", + "field_of_science": [], + "id": "prism-publishing-industry-standard-metadata.yml", + "identifier": [ + "fuji:m27", + "https://fairsharing.org/4689" + ], + "subject_areas": null, + "title": "PRISM Publishing Requirements for Industry Standard Metadata" + }, + "https://www.w3.org/TR/vocab-dcat/#class-catalog": { + "acronym": "DCAT", + "field_of_science": [ + "sciences" + ], + "id": "dcat-data-catalog-vocabulary.yml", + "identifier": [ + "msc:m12", + "https://doi.org/10.25504/FAIRsharing.h4j3qm", + "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DCAT (Data Catalog Vocabulary)" + }, + "https://www.w3.org/TR/vocab-dcat/#class-dataset": { + "acronym": "DCAT", + "field_of_science": [ + "sciences" + ], + "id": "dcat-data-catalog-vocabulary.yml", + "identifier": [ + "msc:m12", + "https://doi.org/10.25504/FAIRsharing.h4j3qm", + "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DCAT (Data Catalog Vocabulary)" + }, + "https://www.w3.org/ns/dcat.ttl": { + "acronym": "DCAT", + "field_of_science": [ + "sciences" + ], + "id": "dcat-data-catalog-vocabulary.yml", + "identifier": [ + "msc:m12", + "https://doi.org/10.25504/FAIRsharing.h4j3qm", + "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "DCAT (Data Catalog Vocabulary)" + }, + "info:lc/xmlns/premis-v2": { + "acronym": "premis", + "field_of_science": [ + "sciences" + ], + "id": "premis.yml", + "identifier": [ + "msc:m31", + "https://doi.org/10.25504/FAIRsharing.27a0f4" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "PREMIS" + }, + "info:ofi/fmt:kev:mtx:ctx": { + "acronym": "CTX", + "field_of_science": [ + "sciences" + ], + "id": "openurl-contextobject.yml", + "identifier": [ + "fuji:m7", + "https://fairsharing.org/4686" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "The OpenURL ContextObject Format" + }, + "info:ofi/fmt:xml:xsd:ctx": { + "acronym": "CTX", + "field_of_science": [ + "sciences" + ], + "id": "openurl-contextobject.yml", + "identifier": [ + "fuji:m7", + "https://fairsharing.org/4686" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "The OpenURL ContextObject Format" + }, + "info:srw/schema/5/picaXML-v1.0": { + "acronym": "pica", + "field_of_science": [], + "id": "pica-metadata-schema.yml", + "identifier": [ + "fuji:m37", + "https://fairsharing.org/4688" + ], + "subject_areas": null, + "title": "OCLC PICA XML" + }, + "oai_openaire": { + "acronym": "OpenAIRE_G", + "field_of_science": [ + "sciences" + ], + "id": "openaire-guidelines.yml", + "identifier": [ + "msc:m92", + "https://doi.org/10.25504/FAIRsharing.123197" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "OpenAIRE Guidelines" + }, + "urn:dc:qdc:container": { + "acronym": "QDC", + "field_of_science": [ + "sciences" + ], + "id": "dublin-core-qualified.yml", + "identifier": [ + "fuji:m22", + "https://doi.org/10.25504/FAIRsharing.3nx7t" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Qualified Dublin Core" + }, + "urn:isbn:1-931666-22-9": { + "acronym": "ead", + "field_of_science": [ + "humanities", + "history" + ], + "id": "ead-encoded-archival-description.yml", + "identifier": [ + "msc:m96", + "https://doi.org/10.25504/FAIRsharing.95f59a" + ], + "subject_areas": [ + "History" + ], + "title": "EAD (Encoded Archival Description)" + }, + "urn:mpeg:mpeg21:2002:02-DIDL-NS": { + "acronym": "DIDL", + "field_of_science": [ + "sciences" + ], + "id": "didl-digital-item-declaration-language.yml", + "identifier": [ + "fuji:m4", + "https://fairsharing.org/4652" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "Digital Item Declaration Language (DIDL)" + }, + "urn:nbn:de:1111-2004033116": { + "acronym": "epicur", + "field_of_science": [], + "id": "epicur-metadata-schema.yml", + "identifier": [ + "fuji:m21", + "https://fairsharing.org/4659" + ], + "subject_areas": null, + "title": "xepicur" + }, + "urn:xmlns:org:eurocris:cerif-1.4-0": { + "acronym": "CERIF", + "field_of_science": [ + "sciences" + ], + "id": "cerif.yml", + "identifier": [ + "msc:m4", + "https://doi.org/10.25504/FAIRsharing.6945dq" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "CERIF (Common European Research Information Format)" + }, + "urn:xmlns:org:eurocris:cerif-1.5-1": { + "acronym": "CERIF", + "field_of_science": [ + "sciences" + ], + "id": "cerif.yml", + "identifier": [ + "msc:m4", + "https://doi.org/10.25504/FAIRsharing.6945dq" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "CERIF (Common European Research Information Format)" + }, + "urn:xmlns:org:eurocris:cerif-1.6-2": { + "acronym": "CERIF", + "field_of_science": [ + "sciences" + ], + "id": "cerif.yml", + "identifier": [ + "msc:m4", + "https://doi.org/10.25504/FAIRsharing.6945dq" + ], + "subject_areas": [ + "Multidisciplinary" + ], + "title": "CERIF (Common European Research Information Format)" + }, + "www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=32554": { + "acronym": null, + "field_of_science": [ + "glaciology", + "oceanography", + "hydrogeology", + "hydrology", + "cartography", + "physical geography", + "climatology", + "earth and related environmental sciences", + "meteorology", + "natural sciences", + "geology" + ], + "id": "iso-19136.yml", + "identifier": [ + "fuji:m3", + "https://doi.org/10.25504/FAIRsharing.d69ee0" + ], + "subject_areas": [ + "Cartography", + "Climatology", + "Earth sciences", + "Geography", + "Geology", + "Glaciology", + "Hydrogeology", + "Hydrology", + "Meteorology", + "Oceanography", + "Topography" + ], + "title": "Geography Markup Language" + }, + "www.lido-schema.org/schema/latest/lido.xsd": { + "acronym": "LIDO", + "field_of_science": [ + "humanities" + ], + "id": "lido-lightweight-information-describing-objects.yml", + "identifier": [ + "fuji:m18", + "https://doi.org/10.25504/FAIRsharing.73558b" + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "LIDO, Lightweight Information Describing Objects" + }, + "www.lido-schema.org/schema/v1.1/lido-v1.1.xsd": { + "acronym": "LIDO", + "field_of_science": [ + "humanities" + ], + "id": "lido-lightweight-information-describing-objects.yml", + "identifier": [ + "fuji:m18", + "https://doi.org/10.25504/FAIRsharing.73558b" + ], + "subject_areas": [ + "Humanities", + "Cultural heritage" + ], + "title": "LIDO, Lightweight Information Describing Objects" + } +} diff --git a/fuji_server/data/open_formats.json b/fuji_server/data/open_formats.json index e913feca..68c8f486 100644 --- a/fuji_server/data/open_formats.json +++ b/fuji_server/data/open_formats.json @@ -6,8 +6,11 @@ "application/CCP4-unmerged-experimental": "Generic", "application/dbase": "Generic", "application/dbf": "Generic", + "application/dicom": "Generic", + "application/fits": "Generic", "application/geo+json": "Generic", "application/mathml+xml": "Generic", + "application/netcdf": "Generic", "application/sbml+xml": "Generic", "application/sla": "Generic", "application/vnd.wolfram.cdf": "Generic", @@ -15,23 +18,31 @@ "application/wmo-grib2": "Generic", "application/x-3ds": "Generic", "application/x-cdf": "Generic", + "application/x-grib": "Generic", + "application/x-hdf": "Generic", "application/x-hdf5": "Generic", + "application/x-netcdf": "Generic", "chemical/seq-aa-fasta": "Generic", "chemical/seq-na-fasta": "Generic", + "chemical/seq-na-fastq": "Generic", "chemical/seq-na-genbank": "Generic", "chemical/seq-na-sff": "Generic", "chemical/x-cactus": "Generic", "chemical/x-cactus-ascii": "Generic", + "chemical/x-cdx": "Generic", "chemical/x-cdxml": "Generic", "chemical/x-cerius": "Generic", "chemical/x-chem3d": "Generic", + "chemical/x-cif": "Generic", "chemical/x-cmdf": "Generic", "chemical/x-cml": "Generic", "chemical/x-crossfire": "Generic", "chemical/x-cube": "Generic", + "chemical/x-daylight-smiles": "Generic", "chemical/x-embl-dl-nucleotide": "Generic", "chemical/x-galactic-spc": "Generic", "chemical/x-gamess-input": "Generic", + "chemical/x-gaussian-checkpoint": "Generic", "chemical/x-gaussian-log": "Generic", "chemical/x-gcg8-sequence": "Generic", "chemical/x-hin": "Generic", @@ -46,33 +57,22 @@ "chemical/x-mdl-sdfile": "Generic", "chemical/x-mdl-tgf": "Generic", "chemical/x-mmcif": "Generic", + "chemical/x-mol2": "Generic", "chemical/x-molconn-Z": "Generic", "chemical/x-pdb": "Generic", "chemical/x-swissprot": "Generic", "chemical/x-vamas-iso14976": "Generic", "chemical/x-xtel": "Generic", "hemical/x-alchemy": "Generic", + "image/dicom-rle": "Generic", + "image/fits": "Generic", "image/x-3ds": "Generic", + "model/mesh": "Generic", "model/vnd.collada+xml": "Generic", "text/mathml": "Generic", "text/x-bed": "Generic", + "text/x-fasta": "Generic", "text/x-gff3": "Generic", "text/x-nh": "Generic", - "text/x-stockholm-alignment": "Generic", - "chemical/x-cdx": "Generic", - "chemical/x-daylight-smiles": "Generic", - "chemical/x-gaussian-checkpoint": "Generic", - "chemical/x-mol2": "Generic", - "image/dicom-rle": "Generic", - "application/fits": "Generic", - "chemical/seq-na-fastq": "Generic", - "chemical/x-cif": "Generic", - "image/fits": "Generic", - "model/mesh": "Generic", - "application/x-grib": "Generic", - "application/dicom": "Generic", - "application/netcdf": "Generic", - "text/x-fasta": "Generic", - "application/x-netcdf": "Generic", - "application/x-hdf": "Generic" + "text/x-stockholm-alignment": "Generic" } diff --git a/fuji_server/data/repodois.json b/fuji_server/data/repodois.json index 64f36f22..8bb4ceb6 100644 --- a/fuji_server/data/repodois.json +++ b/fuji_server/data/repodois.json @@ -1 +1,236 @@ -{"gesis.rki": "https://doi.org/10.17616/R3K31G", "delft.data4tu": "https://doi.org/10.17616/R3VG6N", "ardcx.aims": "https://doi.org/10.17616/R3X908", "fbtk.dmxfnr": "https://doi.org/10.17616/R31NJMV8", "bl.cam": "https://doi.org/10.17616/R3SW4D", "nu.arch": "https://doi.org/10.17616/R31NJMGT", "bl.ads": "https://doi.org/10.17616/R3MW23", "fzj.b2share": "https://doi.org/10.17616/R3VK72", "stsci.mast": "https://doi.org/10.17616/R3K897", "cbg.datasets": "https://doi.org/10.17616/R3PP7J", "tib.beilst": "https://doi.org/10.17616/R3536N", "mlbs.skuxgs": "https://doi.org/10.17616/R3ZP8D", "bl.birkbeck": "https://doi.org/10.17616/R31NJLW9", "snd.bolin": "https://doi.org/10.17616/R3PP99", "ocul.spdv": "https://doi.org/10.17616/R32326", "psc.bil": "https://doi.org/10.17616/R31NJN9G", "brown.bdr": "https://doi.org/10.17616/R3193B", "bl.brunel": "https://doi.org/10.17616/R3DP9T", "tib.bafg": "https://doi.org/10.17616/R3H35C", "caltech.data": "https://doi.org/10.17616/R3SW99", "cul.ciesin": "https://doi.org/10.17616/R31605", "tib.kit-ioc": "https://doi.org/10.17616/R34P5T", "cornell.ciser": "https://doi.org/10.17616/R3ZK70", "clarin.clarin": "https://doi.org/10.17616/R3RP5D", "ocean.ocean": "https://doi.org/10.17616/R38F5N", "gdcc.csuc": "https://doi.org/10.17616/R31NJMYF", "cornell.library": "https://doi.org/10.17616/R3FP94", "bl.cran": "https://doi.org/10.17616/R3MH0J", "dartlib.crawdad": "https://doi.org/10.17616/R3CD0B", "ardcx.curtin": "https://doi.org/10.17616/R3WM02", "gesis.csda": "https://doi.org/10.17616/R35P6H", "dans.archive": "https://doi.org/10.17616/R3401D", "psu.datacom": "https://doi.org/10.17616/R31NJMGV", "inist.inra": "https://doi.org/10.17616/R3DJ4J", "umn.drum": "https://doi.org/10.17616/R30D19", "estdoi.repo": "https://doi.org/10.17616/R30D32", "dafi.client": "https://doi.org/10.17616/R3QS3C", "unm.dataone": "https://doi.org/10.17616/R3101G", "fct.uminho": "https://doi.org/10.17616/R31NJMNP", "figshare.iastate": "https://doi.org/10.17616/R3GV3W", "pu.dataspace": "https://doi.org/10.17616/R33B6F", "dans.dataversenl": "https://doi.org/10.17616/R33W6Z", "bibsys.uit-ord": "https://doi.org/10.17616/R3TV17", "gesis.ssri": "https://doi.org/10.17616/R31NJMWM", "sml.tdar": "https://doi.org/10.17616/R3HK56", "csic.digital": "https://doi.org/10.17616/R3P34J", "bl.dri": "https://doi.org/10.17616/R3W632", "subgoe.dariah": "https://doi.org/10.17616/R30G8N", "bl.dundee": "https://doi.org/10.17616/R31NJN0E", "dryad.dryad": "https://doi.org/10.17616/R34S33", "zbmed.dsmz": "https://doi.org/10.17616/R3G88X", "dk.dtic": "https://doi.org/10.17616/R31NJMWG", "kmot.rdr": "https://doi.org/10.17616/R31NJMN6", "dkrz.esgf": "https://doi.org/10.17616/R3BK7D", "ktsw.aezvvv": "https://doi.org/10.17616/R31NJMVX", "ethz.wsl": "https://doi.org/10.17616/R3G49X", "ethz.e-coll": "https://doi.org/10.17616/R3HF66", "ethz.da-rd": "https://doi.org/10.17616/R34D05", "bl.ecmwf": "https://doi.org/10.17616/R3WS8T", "awzy.fednnv": "https://doi.org/10.17616/R3PM1K", "carl.frdr": "https://doi.org/10.17616/R3X50W", "figshare.ars": "https://doi.org/10.17616/R3PK5R", "nlqq.xoncsf": "https://doi.org/10.17616/R31NJMYB", "tib.floss": "https://doi.org/10.17616/R3K905", "lxkc.dskyfi": "https://doi.org/10.17616/R3W331", "ykdk.zuysqi": "https://doi.org/10.17616/R3XP4K", "tib.luis": "https://doi.org/10.17616/R3C519", "gesis.gesis": "https://doi.org/10.17616/R3BB70", "gesis.zpid": "https://doi.org/10.17616/R3FS48", "tib.gfz": "https://doi.org/10.17616/R3VQ0S", "cngb.gigadb": "https://doi.org/10.17616/R3TG83", "gbif.gbif": "https://doi.org/10.17616/R3J014", "ardcx.griffith": "https://doi.org/10.17616/R3FG92", "gdcc.harvard-sbgr": "https://doi.org/10.17616/R3N92J", "gdcc.harvard-dv": "https://doi.org/10.17616/R3C880", "cern.hepdata": "https://doi.org/10.17616/R30W2H", "inist.humanum": "https://doi.org/10.17616/R3JM1B", "snd.icos": "https://doi.org/10.17616/R3235B", "gesis.icpsr": "https://doi.org/10.17616/R3BC8Q", "ieee.dataport": "https://doi.org/10.17616/R3H77H", "iiasa.dare": "https://doi.org/10.17616/R31NJMH0", "illinois.databank": "https://doi.org/10.17616/R3C93F", "bl.imperial": "http://doi.org/10.17616/R3K64N", "iris.iris": "https://doi.org/10.17616/R3X607", "gesis.indepth": "https://doi.org/10.17616/R3432T", "jcvi.gxpwaq": "https://doi.org/10.17616/R3S634", "tib.inp": "https://doi.org/10.17616/R31NJMM8", "cern.inspire": "https://doi.org/10.17616/R3JC9Z", "inist.ifremer": "https://doi.org/10.17616/R31NJMHX", "inist.ill": "https://doi.org/10.17616/R33H18", "tib.kit-imk": "https://doi.org/10.17616/R3N347", "umn.ipums": "https://doi.org/10.17616/R3ZS59", "wwpx.intr2": "https://doi.org/10.17616/R37M1J", "bl.iita": "https://doi.org/10.17616/R3K22H", "tib.ipk": "https://doi.org/10.17616/R3CP9H", "delft.isric": "https://doi.org/10.17616/R3X01J", "ist.rex": "https://doi.org/10.17616/R3877B", "gdcc.jhu": "https://doi.org/10.17616/R3RW77", "kaggle.kaggle": "https://doi.org/10.17616/R32N5V", "estdoi.keel": "https://doi.org/10.17616/R3P636", "rice.kinder": "https://doi.org/10.17616/R3GB90", "delft.knmi": "https://doi.org/10.17616/R3QH0G", "brvz.rdr": "https://doi.org/10.17616/R31NJN5S", "landcare.soils": "https://doi.org/10.17616/R3660Q", "landcare.general": "https://doi.org/10.17616/R3092N", "tib.ldeo": "https://doi.org/10.17616/R3PV10", "tib.ubbs": "https://doi.org/10.17616/R31NJMTU", "gesis.neps": "https://doi.org/10.17616/R35P7W", "bl.lincoln": "https://doi.org/10.17616/R3MZ01", "ldc.catalog": "https://doi.org/10.17616/R3T06H", "zbw.ifo": "https://doi.org/10.17616/R3P01C", "dk.sb": "https://doi.org/10.17616/R31NJM89", "bl.lshtm": "https://doi.org/10.17616/R3705V", "bl.lboro": "https://doi.org/10.17616/R3564X", "delft.maastro": "https://doi.org/10.17616/R38W4R", "oibk.ohycfa": "https://doi.org/10.17616/R31NJMWR", "mdw.repository": "https://doi.org/10.17616/R30M00", "elsevier.md": "https://doi.org/10.17616/R3DD11", "bl.mendeley": "https://doi.org/10.17616/R3DD11", "bkmx.azjwzc": "https://doi.org/10.17616/R3VK72", "csc.nrd": "https://doi.org/10.17616/R33649", "phbi.repo": "https://doi.org/10.17616/R3PC7F", "tib.ukon": "https://doi.org/10.17616/R3M024", "gdcc.ntu": "https://doi.org/10.17616/R3N77R", "cornell.ndacan": "https://doi.org/10.17616/R3N90S", "crui.ogsts": "https://doi.org/10.17616/R3TR3Z", "noaa.ncei": "https://doi.org/10.17616/R3362J", "gdcc.harvard-slp": "https://doi.org/10.17616/R3XD09", "nsidc.datactr": "https://doi.org/10.17616/R3HP4V", "nus.sb": "https://doi.org/10.17616/R3FF4T", "bl.nhm": "https://doi.org/10.17616/R3PS7K", "esdis.ornl": "https://doi.org/10.17616/R3SG61", "inist.otelo": "https://doi.org/10.17616/R3F19K", "europ.odin": "https://doi.org/10.17616/R3J917", "gdcc.odum-dv": "https://doi.org/10.17616/R3RP41", "ohsu.ohsu": "https://doi.org/10.17616/R3MS9Q", "kim.openkim": "https://doi.org/10.17616/R3SK8T", "cos.osf": "https://doi.org/10.17616/R3N03T", "sul.openneuro": "https://doi.org/10.17616/R33047", "bl.shef": "https://doi.org/10.17616/R3P64K", "bl.brookes": "https://doi.org/10.17616/R31NJMGX", "bl.oxdb": "https://doi.org/10.17616/R3504V", "pangaea.repository": "https://doi.org/10.17616/R3XS37", "nasapds.nasapds": "https://doi.org/10.17616/R37593", "bf.discover": "https://doi.org/10.17616/R31NJMN0", "mit.physio": "https://doi.org/10.17616/R3D06S", "ujcm.zntzqv": "https://doi.org/10.17616/R31NJNDH", "zbmed.biofresh": "https://doi.org/10.17616/R3DG9R", "pds.data": "https://doi.org/10.17616/R31NJMJB", "purdue.purduelib": "https://doi.org/10.17616/R3V90N", "estdoi.qdb": "https://doi.org/10.17616/R31NJMVF", "inist.adisp": "https://doi.org/10.17616/R3W90Z", "tib.radar": "https://doi.org/10.17616/R3ZX96", "delft.ru": "https://doi.org/10.17616/R31NJMZR", "figshare.ariz": "https://doi.org/10.17616/R31NJMSF", "uchile.dataverse": "https://doi.org/10.17616/R31NJMLW", "udr.researchdata": "https://doi.org/10.17616/R31NJMOS", "dzhw.fdz-dzhw": "https://doi.org/10.17616/R3BR0G", "dipf.rdcedu": "https://doi.org/10.17616/R3R010", "gesis.bibb-fdz": "https://doi.org/10.17616/R3359V", "bamf.bamf": "https://doi.org/10.17616/R31NJMZ5", "gesis.dezim": "https://doi.org/10.17616/R31NJMNK", "rg.rg": "https://doi.org/10.17616/R36H16", "inist.resif": "https://doi.org/10.17616/R37Q06", "tib.hzdr": "https://doi.org/10.17616/R3BR40", "tib.ub-hro": "https://doi.org/10.17616/R31NJMQH", "psu.scholar": "https://doi.org/10.17616/R34W4H", "cnic.sciencedb": "https://doi.org/10.17616/R31NJMNT", "tib.bikf": "https://doi.org/10.17616/R3GM23", "gesis.share": "https://doi.org/10.17616/R3BK5N", "bl.hallam": "https://doi.org/10.17616/R3S92S", "ethz.sicas": "https://doi.org/10.17616/R3HP8C", "sul.simtk": "https://doi.org/10.17616/R3QJ4B", "si.si": "https://doi.org/10.17616/R3W49N", "gesis.sodanet": "https://doi.org/10.17616/R38G7R", "gesis.adp": "https://doi.org/10.17616/R3SG7D", "concor.kcydcu": "https://doi.org/10.17616/R3FJ70", "sul.sdr": "https://doi.org/10.17616/R3RK6R", "snd.su": "https://doi.org/10.17616/R3N648", "inist.cds": "https://doi.org/10.17616/R3690R", "delft.surfsara": "https://doi.org/10.17616/R31NJML8", "gesis.srda": "https://doi.org/10.17616/R31NJMLA", "snd.smhi": "https://doi.org/10.17616/R3R05H", "snd.snd": "https://doi.org/10.17616/R3CS38", "sagebio.synapse": "https://doi.org/10.17616/R3B934", "gdcc.syr-qdr": "https://doi.org/10.17616/R3CS51", "fzj.tereno": "https://doi.org/10.17616/R39G9T", "tuw.tethys": "https://doi.org/10.17616/R31NJMU0", "gesis.aussda": "https://doi.org/10.17616/R39G72", "ccdc.csd": "https://doi.org/10.17616/R36011", "sml.tcia": "https://doi.org/10.17616/R3NH0V", "si.cda": "https://doi.org/10.17616/R3201S", "hlqc.znxeli": "https://doi.org/10.17616/R31NJMJP", "tib.tuhh": "https://doi.org/10.17616/R31NJML0", "bl.uel": "https://doi.org/10.17616/R3V48Z", "arfm.ufzdrp": "https://doi.org/10.17616/R31NJN1M", "bl.ukda": "https://doi.org/10.17616/R3088K", "gdcc.odum-library": "https://doi.org/10.17616/R3RP41", "crui.unibo": "https://doi.org/10.17616/R3P19R", "lmu.ub": "https://doi.org/10.17616/R3PP65", "inist.ifsttar": "https://doi.org/10.17616/R31NJMKM", "bl.ucld": "https://doi.org/10.17616/R34F41", "nzau.data": "https://doi.org/10.17616/R3BW7H", "bl.bath": "https://doi.org/10.17616/R32928", "bl.bristol": "https://doi.org/10.17616/R3CP84", "figshare.uct": "https://doi.org/10.17616/R36R4R", "bl.uclan": "https://doi.org/10.17616/R38D3J", "bl.ed": "https://doi.org/10.17616/R3RG6Q", "bl.essex": "https://doi.org/10.17616/R3SV0J", "bl.exeter": "https://doi.org/10.17616/R3033Z", "bl.herts": "https://doi.org/10.17616/R31NJMM4", "nkn.nkn": "https://doi.org/10.17616/R3JK91", "bl.leeds": "https://doi.org/10.17616/R3JH19", "unimelb.repo1": "https://doi.org/10.17616/R3HH10", "bl.reading": "https://doi.org/10.17616/R3D075", "bl.salford": "https://doi.org/10.17616/R31D20", "bl.soton": "https://doi.org/10.17616/R3H05B", "ardcx.usq": "https://doi.org/10.17616/R36Q18", "bl.standrew": "https://doi.org/10.17616/R3878Q", "bl.strath": "https://doi.org/10.17616/R3G18H", "bl.surrey": "https://doi.org/10.17616/R34N3Q", "usda.usda": "https://doi.org/10.17616/R3G051", "usgs.prod": "https://doi.org/10.17616/R33S3S", "delft.uu": "https://doi.org/10.17616/R3ZB7K", "vt.vtechdata": "https://doi.org/10.17616/R3JF54", "jcvi.eivbwb": "https://doi.org/10.17616/R30P93", "vivli.search": "https://doi.org/10.17616/R3SB9S", "delft.vliz": "https://doi.org/10.17616/R3WG7B", "wh.whoas": "https://doi.org/10.17616/R34302", "dkrz.wdcc": "https://doi.org/10.17616/R3989R", "ethz.wgms": "https://doi.org/10.17616/R3WP5N", "zbw.zbw-jda": "https://doi.org/10.17616/R3BM03", "cern.zenodo": "https://doi.org/10.17616/R3QP53", "zbw.zew": "https://doi.org/10.17616/R3389W"} \ No newline at end of file +{ + "ardcx.aims": "https://doi.org/10.17616/R3X908", + "ardcx.curtin": "https://doi.org/10.17616/R3WM02", + "ardcx.griffith": "https://doi.org/10.17616/R3FG92", + "ardcx.usq": "https://doi.org/10.17616/R36Q18", + "arfm.ufzdrp": "https://doi.org/10.17616/R31NJN1M", + "awzy.fednnv": "https://doi.org/10.17616/R3PM1K", + "bamf.bamf": "https://doi.org/10.17616/R31NJMZ5", + "bf.discover": "https://doi.org/10.17616/R31NJMN0", + "bibsys.uit-ord": "https://doi.org/10.17616/R3TV17", + "bkmx.azjwzc": "https://doi.org/10.17616/R3VK72", + "bl.ads": "https://doi.org/10.17616/R3MW23", + "bl.bath": "https://doi.org/10.17616/R32928", + "bl.birkbeck": "https://doi.org/10.17616/R31NJLW9", + "bl.bristol": "https://doi.org/10.17616/R3CP84", + "bl.brookes": "https://doi.org/10.17616/R31NJMGX", + "bl.brunel": "https://doi.org/10.17616/R3DP9T", + "bl.cam": "https://doi.org/10.17616/R3SW4D", + "bl.cran": "https://doi.org/10.17616/R3MH0J", + "bl.dri": "https://doi.org/10.17616/R3W632", + "bl.dundee": "https://doi.org/10.17616/R31NJN0E", + "bl.ecmwf": "https://doi.org/10.17616/R3WS8T", + "bl.ed": "https://doi.org/10.17616/R3RG6Q", + "bl.essex": "https://doi.org/10.17616/R3SV0J", + "bl.exeter": "https://doi.org/10.17616/R3033Z", + "bl.hallam": "https://doi.org/10.17616/R3S92S", + "bl.herts": "https://doi.org/10.17616/R31NJMM4", + "bl.iita": "https://doi.org/10.17616/R3K22H", + "bl.imperial": "http://doi.org/10.17616/R3K64N", + "bl.lboro": "https://doi.org/10.17616/R3564X", + "bl.leeds": "https://doi.org/10.17616/R3JH19", + "bl.lincoln": "https://doi.org/10.17616/R3MZ01", + "bl.lshtm": "https://doi.org/10.17616/R3705V", + "bl.mendeley": "https://doi.org/10.17616/R3DD11", + "bl.nhm": "https://doi.org/10.17616/R3PS7K", + "bl.oxdb": "https://doi.org/10.17616/R3504V", + "bl.reading": "https://doi.org/10.17616/R3D075", + "bl.salford": "https://doi.org/10.17616/R31D20", + "bl.shef": "https://doi.org/10.17616/R3P64K", + "bl.soton": "https://doi.org/10.17616/R3H05B", + "bl.standrew": "https://doi.org/10.17616/R3878Q", + "bl.strath": "https://doi.org/10.17616/R3G18H", + "bl.surrey": "https://doi.org/10.17616/R34N3Q", + "bl.uclan": "https://doi.org/10.17616/R38D3J", + "bl.ucld": "https://doi.org/10.17616/R34F41", + "bl.uel": "https://doi.org/10.17616/R3V48Z", + "bl.ukda": "https://doi.org/10.17616/R3088K", + "brown.bdr": "https://doi.org/10.17616/R3193B", + "brvz.rdr": "https://doi.org/10.17616/R31NJN5S", + "caltech.data": "https://doi.org/10.17616/R3SW99", + "carl.frdr": "https://doi.org/10.17616/R3X50W", + "cbg.datasets": "https://doi.org/10.17616/R3PP7J", + "ccdc.csd": "https://doi.org/10.17616/R36011", + "cern.hepdata": "https://doi.org/10.17616/R30W2H", + "cern.inspire": "https://doi.org/10.17616/R3JC9Z", + "cern.zenodo": "https://doi.org/10.17616/R3QP53", + "clarin.clarin": "https://doi.org/10.17616/R3RP5D", + "cngb.gigadb": "https://doi.org/10.17616/R3TG83", + "cnic.sciencedb": "https://doi.org/10.17616/R31NJMNT", + "concor.kcydcu": "https://doi.org/10.17616/R3FJ70", + "cornell.ciser": "https://doi.org/10.17616/R3ZK70", + "cornell.library": "https://doi.org/10.17616/R3FP94", + "cornell.ndacan": "https://doi.org/10.17616/R3N90S", + "cos.osf": "https://doi.org/10.17616/R3N03T", + "crui.ogsts": "https://doi.org/10.17616/R3TR3Z", + "crui.unibo": "https://doi.org/10.17616/R3P19R", + "csc.nrd": "https://doi.org/10.17616/R33649", + "csic.digital": "https://doi.org/10.17616/R3P34J", + "cul.ciesin": "https://doi.org/10.17616/R31605", + "dafi.client": "https://doi.org/10.17616/R3QS3C", + "dans.archive": "https://doi.org/10.17616/R3401D", + "dans.dataversenl": "https://doi.org/10.17616/R33W6Z", + "dartlib.crawdad": "https://doi.org/10.17616/R3CD0B", + "delft.data4tu": "https://doi.org/10.17616/R3VG6N", + "delft.isric": "https://doi.org/10.17616/R3X01J", + "delft.knmi": "https://doi.org/10.17616/R3QH0G", + "delft.maastro": "https://doi.org/10.17616/R38W4R", + "delft.ru": "https://doi.org/10.17616/R31NJMZR", + "delft.surfsara": "https://doi.org/10.17616/R31NJML8", + "delft.uu": "https://doi.org/10.17616/R3ZB7K", + "delft.vliz": "https://doi.org/10.17616/R3WG7B", + "dipf.rdcedu": "https://doi.org/10.17616/R3R010", + "dk.dtic": "https://doi.org/10.17616/R31NJMWG", + "dk.sb": "https://doi.org/10.17616/R31NJM89", + "dkrz.esgf": "https://doi.org/10.17616/R3BK7D", + "dkrz.wdcc": "https://doi.org/10.17616/R3989R", + "dryad.dryad": "https://doi.org/10.17616/R34S33", + "dzhw.fdz-dzhw": "https://doi.org/10.17616/R3BR0G", + "elsevier.md": "https://doi.org/10.17616/R3DD11", + "esdis.ornl": "https://doi.org/10.17616/R3SG61", + "estdoi.keel": "https://doi.org/10.17616/R3P636", + "estdoi.qdb": "https://doi.org/10.17616/R31NJMVF", + "estdoi.repo": "https://doi.org/10.17616/R30D32", + "ethz.da-rd": "https://doi.org/10.17616/R34D05", + "ethz.e-coll": "https://doi.org/10.17616/R3HF66", + "ethz.sicas": "https://doi.org/10.17616/R3HP8C", + "ethz.wgms": "https://doi.org/10.17616/R3WP5N", + "ethz.wsl": "https://doi.org/10.17616/R3G49X", + "europ.odin": "https://doi.org/10.17616/R3J917", + "fbtk.dmxfnr": "https://doi.org/10.17616/R31NJMV8", + "fct.uminho": "https://doi.org/10.17616/R31NJMNP", + "figshare.ariz": "https://doi.org/10.17616/R31NJMSF", + "figshare.ars": "https://doi.org/10.17616/R3PK5R", + "figshare.iastate": "https://doi.org/10.17616/R3GV3W", + "figshare.uct": "https://doi.org/10.17616/R36R4R", + "fzj.b2share": "https://doi.org/10.17616/R3VK72", + "fzj.tereno": "https://doi.org/10.17616/R39G9T", + "gbif.gbif": "https://doi.org/10.17616/R3J014", + "gdcc.csuc": "https://doi.org/10.17616/R31NJMYF", + "gdcc.harvard-dv": "https://doi.org/10.17616/R3C880", + "gdcc.harvard-sbgr": "https://doi.org/10.17616/R3N92J", + "gdcc.harvard-slp": "https://doi.org/10.17616/R3XD09", + "gdcc.jhu": "https://doi.org/10.17616/R3RW77", + "gdcc.ntu": "https://doi.org/10.17616/R3N77R", + "gdcc.odum-dv": "https://doi.org/10.17616/R3RP41", + "gdcc.odum-library": "https://doi.org/10.17616/R3RP41", + "gdcc.syr-qdr": "https://doi.org/10.17616/R3CS51", + "gesis.adp": "https://doi.org/10.17616/R3SG7D", + "gesis.aussda": "https://doi.org/10.17616/R39G72", + "gesis.bibb-fdz": "https://doi.org/10.17616/R3359V", + "gesis.csda": "https://doi.org/10.17616/R35P6H", + "gesis.dezim": "https://doi.org/10.17616/R31NJMNK", + "gesis.gesis": "https://doi.org/10.17616/R3BB70", + "gesis.icpsr": "https://doi.org/10.17616/R3BC8Q", + "gesis.indepth": "https://doi.org/10.17616/R3432T", + "gesis.neps": "https://doi.org/10.17616/R35P7W", + "gesis.rki": "https://doi.org/10.17616/R3K31G", + "gesis.share": "https://doi.org/10.17616/R3BK5N", + "gesis.sodanet": "https://doi.org/10.17616/R38G7R", + "gesis.srda": "https://doi.org/10.17616/R31NJMLA", + "gesis.ssri": "https://doi.org/10.17616/R31NJMWM", + "gesis.zpid": "https://doi.org/10.17616/R3FS48", + "hlqc.znxeli": "https://doi.org/10.17616/R31NJMJP", + "ieee.dataport": "https://doi.org/10.17616/R3H77H", + "iiasa.dare": "https://doi.org/10.17616/R31NJMH0", + "illinois.databank": "https://doi.org/10.17616/R3C93F", + "inist.adisp": "https://doi.org/10.17616/R3W90Z", + "inist.cds": "https://doi.org/10.17616/R3690R", + "inist.humanum": "https://doi.org/10.17616/R3JM1B", + "inist.ifremer": "https://doi.org/10.17616/R31NJMHX", + "inist.ifsttar": "https://doi.org/10.17616/R31NJMKM", + "inist.ill": "https://doi.org/10.17616/R33H18", + "inist.inra": "https://doi.org/10.17616/R3DJ4J", + "inist.otelo": "https://doi.org/10.17616/R3F19K", + "inist.resif": "https://doi.org/10.17616/R37Q06", + "iris.iris": "https://doi.org/10.17616/R3X607", + "ist.rex": "https://doi.org/10.17616/R3877B", + "jcvi.eivbwb": "https://doi.org/10.17616/R30P93", + "jcvi.gxpwaq": "https://doi.org/10.17616/R3S634", + "kaggle.kaggle": "https://doi.org/10.17616/R32N5V", + "kim.openkim": "https://doi.org/10.17616/R3SK8T", + "kmot.rdr": "https://doi.org/10.17616/R31NJMN6", + "ktsw.aezvvv": "https://doi.org/10.17616/R31NJMVX", + "landcare.general": "https://doi.org/10.17616/R3092N", + "landcare.soils": "https://doi.org/10.17616/R3660Q", + "ldc.catalog": "https://doi.org/10.17616/R3T06H", + "lmu.ub": "https://doi.org/10.17616/R3PP65", + "lxkc.dskyfi": "https://doi.org/10.17616/R3W331", + "mdw.repository": "https://doi.org/10.17616/R30M00", + "mit.physio": "https://doi.org/10.17616/R3D06S", + "mlbs.skuxgs": "https://doi.org/10.17616/R3ZP8D", + "nasapds.nasapds": "https://doi.org/10.17616/R37593", + "nkn.nkn": "https://doi.org/10.17616/R3JK91", + "nlqq.xoncsf": "https://doi.org/10.17616/R31NJMYB", + "noaa.ncei": "https://doi.org/10.17616/R3362J", + "nsidc.datactr": "https://doi.org/10.17616/R3HP4V", + "nu.arch": "https://doi.org/10.17616/R31NJMGT", + "nus.sb": "https://doi.org/10.17616/R3FF4T", + "nzau.data": "https://doi.org/10.17616/R3BW7H", + "ocean.ocean": "https://doi.org/10.17616/R38F5N", + "ocul.spdv": "https://doi.org/10.17616/R32326", + "ohsu.ohsu": "https://doi.org/10.17616/R3MS9Q", + "oibk.ohycfa": "https://doi.org/10.17616/R31NJMWR", + "pangaea.repository": "https://doi.org/10.17616/R3XS37", + "pds.data": "https://doi.org/10.17616/R31NJMJB", + "phbi.repo": "https://doi.org/10.17616/R3PC7F", + "psc.bil": "https://doi.org/10.17616/R31NJN9G", + "psu.datacom": "https://doi.org/10.17616/R31NJMGV", + "psu.scholar": "https://doi.org/10.17616/R34W4H", + "pu.dataspace": "https://doi.org/10.17616/R33B6F", + "purdue.purduelib": "https://doi.org/10.17616/R3V90N", + "rg.rg": "https://doi.org/10.17616/R36H16", + "rice.kinder": "https://doi.org/10.17616/R3GB90", + "sagebio.synapse": "https://doi.org/10.17616/R3B934", + "si.cda": "https://doi.org/10.17616/R3201S", + "si.si": "https://doi.org/10.17616/R3W49N", + "sml.tcia": "https://doi.org/10.17616/R3NH0V", + "sml.tdar": "https://doi.org/10.17616/R3HK56", + "snd.bolin": "https://doi.org/10.17616/R3PP99", + "snd.icos": "https://doi.org/10.17616/R3235B", + "snd.smhi": "https://doi.org/10.17616/R3R05H", + "snd.snd": "https://doi.org/10.17616/R3CS38", + "snd.su": "https://doi.org/10.17616/R3N648", + "stsci.mast": "https://doi.org/10.17616/R3K897", + "subgoe.dariah": "https://doi.org/10.17616/R30G8N", + "sul.openneuro": "https://doi.org/10.17616/R33047", + "sul.sdr": "https://doi.org/10.17616/R3RK6R", + "sul.simtk": "https://doi.org/10.17616/R3QJ4B", + "tib.bafg": "https://doi.org/10.17616/R3H35C", + "tib.beilst": "https://doi.org/10.17616/R3536N", + "tib.bikf": "https://doi.org/10.17616/R3GM23", + "tib.floss": "https://doi.org/10.17616/R3K905", + "tib.gfz": "https://doi.org/10.17616/R3VQ0S", + "tib.hzdr": "https://doi.org/10.17616/R3BR40", + "tib.inp": "https://doi.org/10.17616/R31NJMM8", + "tib.ipk": "https://doi.org/10.17616/R3CP9H", + "tib.kit-imk": "https://doi.org/10.17616/R3N347", + "tib.kit-ioc": "https://doi.org/10.17616/R34P5T", + "tib.ldeo": "https://doi.org/10.17616/R3PV10", + "tib.luis": "https://doi.org/10.17616/R3C519", + "tib.radar": "https://doi.org/10.17616/R3ZX96", + "tib.tuhh": "https://doi.org/10.17616/R31NJML0", + "tib.ub-hro": "https://doi.org/10.17616/R31NJMQH", + "tib.ubbs": "https://doi.org/10.17616/R31NJMTU", + "tib.ukon": "https://doi.org/10.17616/R3M024", + "tuw.tethys": "https://doi.org/10.17616/R31NJMU0", + "uchile.dataverse": "https://doi.org/10.17616/R31NJMLW", + "udr.researchdata": "https://doi.org/10.17616/R31NJMOS", + "ujcm.zntzqv": "https://doi.org/10.17616/R31NJNDH", + "umn.drum": "https://doi.org/10.17616/R30D19", + "umn.ipums": "https://doi.org/10.17616/R3ZS59", + "unimelb.repo1": "https://doi.org/10.17616/R3HH10", + "unm.dataone": "https://doi.org/10.17616/R3101G", + "usda.usda": "https://doi.org/10.17616/R3G051", + "usgs.prod": "https://doi.org/10.17616/R33S3S", + "vivli.search": "https://doi.org/10.17616/R3SB9S", + "vt.vtechdata": "https://doi.org/10.17616/R3JF54", + "wh.whoas": "https://doi.org/10.17616/R34302", + "wwpx.intr2": "https://doi.org/10.17616/R37M1J", + "ykdk.zuysqi": "https://doi.org/10.17616/R3XP4K", + "zbmed.biofresh": "https://doi.org/10.17616/R3DG9R", + "zbmed.dsmz": "https://doi.org/10.17616/R3G88X", + "zbw.ifo": "https://doi.org/10.17616/R3P01C", + "zbw.zbw-jda": "https://doi.org/10.17616/R3BM03", + "zbw.zew": "https://doi.org/10.17616/R3389W" +} diff --git a/fuji_server/data/science_formats.json b/fuji_server/data/science_formats.json index 28153daf..66471ade 100644 --- a/fuji_server/data/science_formats.json +++ b/fuji_server/data/science_formats.json @@ -1,32 +1,115 @@ { + "application/CCP4-mtz-freerflag": "Crystallography", + "application/CCP4-mtz-map": "Crystallography", + "application/CCP4-mtz-observed": "Crystallography", + "application/CCP4-mtz-phases": "Crystallography", + "application/CCP4-unmerged-experimental": "Crystallography", + "application/dbase": "General", + "application/dbf": "General", + "application/dicom": "Health", "application/fits": "Astronomy", - "image/fits": "Astronomy", + "application/geo+json": "Geography", + "application/mathematica": "Generic", + "application/mathml+xml": "Mathematics", + "application/matlab-mat": "Generic", + "application/msexcel": "Generic", + "application/netcdf": "General", + "application/sbml+xml": "Biology", + "application/sla": "General", + "application/vnd.apple.numbers": "Generic", + "application/vnd.fdsn.mseed": "Geophysics", + "application/vnd.lotus-1-2-10": "Generic", + "application/vnd.lotus-1-2-3": "Generic", + "application/vnd.lotus-1-2-4": "Generic", + "application/vnd.lotus-1-2-5": "Generic", + "application/vnd.lotus-1-2-6": "Generic", + "application/vnd.lotus-1-2-7": "Generic", + "application/vnd.lotus-1-2-8": "Generic", + "application/vnd.lotus-1-2-9": "Generic", + "application/vnd.ms-excel": "Generic", + "application/vnd.ms-excel.addin.macroenabled.12": "Generic", + "application/vnd.ms-excel.sheet.2": "Generic", + "application/vnd.ms-excel.sheet.3": "Generic", + "application/vnd.ms-excel.sheet.4": "Generic", + "application/vnd.ms-excel.sheet.binary.macroenabled.12": "Generic", + "application/vnd.ms-excel.sheet.macroenabled.12": "Generic", + "application/vnd.ms-excel.template.macroenabled.12": "Generic", + "application/vnd.ms-excel.workspace.3": "Generic", + "application/vnd.ms-excel.workspace.4": "Generic", + "application/vnd.ms-works": "Generic", + "application/vnd.oasis.opendocument.spreadsheet": "Generic", + "application/vnd.oasis.opendocument.spreadsheet-template": "Generic", + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": "Generic", + "application/vnd.openxmlformats-officedocument.spreadsheetml.template": "Generic", + "application/vnd.sun.xml.calc": "Generic", + "application/vnd.sun.xml.calc.template": "Generic", + "application/vnd.wolfram.cdf": "General", + "application/vnd.wolfram.cdf.text": "General", + "application/wmo-grib2": "Meteorology", + "application/x-3ds": "General", + "application/x-R-2": "Generic", + "application/x-cdf": "General", + "application/x-dvn-csvspss-zip": "Generic", + "application/x-dvn-tabddi-zip": "Generic", + "application/x-gnumeric": "Generic", + "application/x-grib": "Meteorology", + "application/x-h5": "General", + "application/x-hdf": "General", + "application/x-hdf5": "General", + "application/x-ipynb+json": "Generic", + "application/x-matlab-data": "Generic", + "application/x-matlab-figure": "Generic", + "application/x-matlab-workspace": "Generic", + "application/x-netcdf": "General", + "application/x-nsdstat": "Generic", + "application/x-quattro-pro": "Generic", + "application/x-rlang-transport": "Generic", + "application/x-sas": "Generic", + "application/x-sas-catalog": "Generic", + "application/x-sas-data": "Generic", + "application/x-sas-log": "Generic", + "application/x-sas-output": "Generic", + "application/x-sas-syntax": "Generic", + "application/x-sas-system": "Generic", + "application/x-sas-transport": "Generic", + "application/x-spss-por": "Generic", + "application/x-spss-portable": "Generic", + "application/x-spss-sav": "Generic", + "application/x-spss-sps": "Generic", + "application/x-spss-syntax": "Generic", + "application/x-stata": "Generic", + "application/x-stata-13": "Generic", + "application/x-stata-14": "Generic", + "application/x-stata-15": "Generic", + "application/x-stata-6": "Generic", + "application/x-stata-ado": "Generic", + "application/x-stata-do": "Generic", + "application/x-stata-dta": "Generic", + "application/x-stata-smcl": "Generic", + "application/x-stata-syntax": "Generic", + "application/x-tika-msworks-spreadsheet": "Generic", + "application/x-tika-old-excel": "Generic", "chemical/seq-aa-fasta": "Biochemistry", "chemical/seq-na-fasta": "Biochemistry", "chemical/seq-na-fastq": "Biology", "chemical/seq-na-genbank": "Biochemistry", "chemical/seq-na-sff": "Biochemistry", - "chemical/x-mdl-molfile": "Biochemistry", - "chemical/x-mol2": "Chemistry", - "chemical/x-pdb": "Biochemistry", - "application/sbml+xml": "Biology", - "text/x-bed": "Biology", - "text/x-gff3": "Biology", - "text/x-nh": "Biology", - "text/x-stockholm-alignment": "Biology", - "text/x-fasta": "Biology", "chemical/x-cactus": "Chemistry", "chemical/x-cactus-ascii": "Chemistry", + "chemical/x-cdx": "Chemistry", "chemical/x-cdxml": "Chemistry", "chemical/x-cerius": "Chemistry", "chemical/x-chem3d": "Chemistry", + "chemical/x-cif": "Chemistry", "chemical/x-cmdf": "Chemistry", "chemical/x-cml": "Chemistry", "chemical/x-crossfire": "Chemistry", "chemical/x-cube": "Chemistry", + "chemical/x-daylight-smiles": "Chemistry", "chemical/x-embl-dl-nucleotide": "Chemistry", "chemical/x-galactic-spc": "Chemistry", "chemical/x-gamess-input": "Chemistry", + "chemical/x-gaussian-checkpoint": "Chemistry", "chemical/x-gaussian-log": "Chemistry", "chemical/x-gcg8-sequence": "Chemistry", "chemical/x-hin": "Chemistry", @@ -35,120 +118,37 @@ "chemical/x-kinemage": "Chemistry", "chemical/x-macmolecule": "Chemistry", "chemical/x-macromodel-input": "Chemistry", + "chemical/x-mdl-molfile": "Biochemistry", "chemical/x-mdl-rdfile": "Chemistry", "chemical/x-mdl-rxnfile": "Chemistry", "chemical/x-mdl-sdfile": "Chemistry", "chemical/x-mdl-tgf": "Chemistry", "chemical/x-mmcif": "Chemistry", + "chemical/x-mol2": "Chemistry", "chemical/x-molconn-Z": "Chemistry", + "chemical/x-pdb": "Biochemistry", "chemical/x-swissprot": "Chemistry", "chemical/x-vamas-iso14976": "Chemistry", "chemical/x-xtel": "Chemistry", "hemical/x-alchemy": "Chemistry", - "chemical/x-cdx": "Chemistry", - "chemical/x-daylight-smiles": "Chemistry", - "chemical/x-gaussian-checkpoint": "Chemistry", - "chemical/x-cif": "Chemistry", - "application/CCP4-mtz-freerflag": "Crystallography", - "application/CCP4-mtz-map": "Crystallography", - "application/CCP4-mtz-observed": "Crystallography", - "application/CCP4-mtz-phases": "Crystallography", - "application/CCP4-unmerged-experimental": "Crystallography", - "application/dbase": "General", - "application/dbf": "General", - "application/sla": "General", - "application/vnd.wolfram.cdf": "General", - "application/vnd.wolfram.cdf.text": "General", - "application/x-3ds": "General", - "application/x-cdf": "General", - "application/x-hdf5": "General", + "image/dicom-rle": "Health", + "image/fits": "Astronomy", "image/x-3ds": "General", - "model/vnd.collada+xml": "General", "model/mesh": "General", - "application/netcdf": "General", - "application/x-netcdf": "General", - "application/x-h5": "General", - "application/x-hdf": "General", - "application/geo+json": "Geography", - "image/dicom-rle": "Health", - "application/dicom": "Health", - "application/mathml+xml": "Mathematics", + "model/vnd.collada+xml": "General", "text/mathml": "Mathematics", - "application/wmo-grib2": "Meteorology", - "application/x-grib": "Meteorology", - "application/vnd.lotus-1-2-10": "Generic", - "application/vnd.lotus-1-2-4": "Generic", - "application/vnd.lotus-1-2-5": "Generic", - "application/vnd.lotus-1-2-6": "Generic", - "application/vnd.lotus-1-2-7": "Generic", - "application/vnd.lotus-1-2-8": "Generic", - "application/vnd.lotus-1-2-9": "Generic", - "application/vnd.ms-excel.sheet.2": "Generic", - "application/vnd.ms-excel.sheet.3": "Generic", - "application/vnd.ms-excel.sheet.4": "Generic", - "application/vnd.ms-excel.workspace.3": "Generic", - "application/vnd.ms-excel.workspace.4": "Generic", - "application/vnd.openxmlformats-officedocument.spreadsheetml.template": "Generic", - "application/x-tika-old-excel": "Generic", - "application/vnd.lotus-1-2-3": "Generic", - "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": "Generic", - "application/x-gnumeric": "Generic", - "application/x-tika-msworks-spreadsheet": "Generic", - "application/vnd.ms-excel.addin.macroenabled.12": "Generic", - "application/vnd.ms-excel.sheet.macroenabled.12": "Generic", - "application/vnd.ms-excel.template.macroenabled.12": "Generic", - "application/vnd.apple.numbers": "Generic", - "application/vnd.ms-excel.sheet.binary.macroenabled.12": "Generic", - "application/vnd.sun.xml.calc": "Generic", - "application/vnd.sun.xml.calc.template": "Generic", - "application/msexcel": "Generic", - "application/x-quattro-pro": "Generic", - "application/vnd.oasis.opendocument.spreadsheet-template": "Generic", - "application/vnd.ms-works": "Generic", - "application/vnd.ms-excel": "Generic", - "application/vnd.oasis.opendocument.spreadsheet": "Generic", + "text/x-bed": "Biology", "text/x-c": "Computer Sciences", - "text/x-matlab": "Generic", + "text/x-fasta": "Biology", + "text/x-gff3": "Biology", "text/x-mathematica": "Mathematics", + "text/x-matlab": "Generic", + "text/x-nh": "Biology", "text/x-python": "Generic", "text/x-python-script": "Generic", "text/x-r-source": "Generic", - "application/x-ipynb+json": "Generic", - "application/x-stata-do": "Generic", - "application/x-stata-syntax": "Generic", - "text/x-spss-syntax": "Generic", - "application/x-spss-syntax": "Generic", "text/x-sas-syntax": "Generic", - "application/x-sas-syntax": "Generic", - "type/x-r-syntax": "Generic", - "application/x-rlang-transport": "Generic", - "application/x-R-2": "Generic", - "application/x-stata": "Generic", - "application/x-stata-6": "Generic", - "application/x-stata-13": "Generic", - "application/x-stata-14": "Generic", - "application/x-stata-15": "Generic", - "application/x-stata-ado": "Generic", - "application/x-stata-dta": "Generic", - "application/x-stata-smcl": "Generic", - "application/x-spss-por": "Generic", - "application/x-spss-portable": "Generic", - "application/x-spss-sav": "Generic", - "application/x-spss-sps": "Generic", - "application/x-sas": "Generic", - "application/x-sas-transport": "Generic", - "application/x-sas-system": "Generic", - "application/x-sas-data": "Generic", - "application/x-sas-catalog": "Generic", - "application/x-sas-log": "Generic", - "application/x-sas-output": "Generic", - "application/x-dvn-csvspss-zip": "Generic", - "application/x-dvn-tabddi-zip": "Generic", - "application/mathematica": "Generic", - "application/matlab-mat": "Generic", - "application/x-matlab-data": "Generic", - "application/x-matlab-figure": "Generic", - "application/x-matlab-workspace": "Generic", - "application/x-nsdstat": "Generic", - "application/vnd.fdsn.mseed" : "Geophysics" + "text/x-spss-syntax": "Generic", + "text/x-stockholm-alignment": "Biology", + "type/x-r-syntax": "Generic" } diff --git a/fuji_server/data/standard_uri_protocols.json b/fuji_server/data/standard_uri_protocols.json index 895c9fcc..3637fbfa 100644 --- a/fuji_server/data/standard_uri_protocols.json +++ b/fuji_server/data/standard_uri_protocols.json @@ -1,50 +1,50 @@ { + "amqp": { + "name": "Advanced Message Queuing Protocol" + }, + "coap": { + "name": "Constrained Application Protocol" + }, + "coaps": { + "name": "Constrained Application Protocol Secure" + }, "ftp": { - "name" : "File Transfer Protocol" + "name": "File Transfer Protocol" }, "http": { - "name" : "Hyper Text Transfer Protocol" + "name": "Hyper Text Transfer Protocol" }, "https": { - "name" : "Hyper Text Transfer Protocol Secure" + "name": "Hyper Text Transfer Protocol Secure" + }, + "mqtt": { + "name": "Message Queuing Telemetry Transport" }, "rtsp": { - "name" : "Real Time Streaming Protocol" + "name": "Real Time Streaming Protocol" }, "rtspu": { - "name" : "Real Time Streaming Protocol" + "name": "Real Time Streaming Protocol" }, "sftp": { - "name" : "Secure File Transfer Protocol" + "name": "Secure File Transfer Protocol" }, "shttp": { - "name" : "Secure Hypertext Transfer Protocol" - }, - "svn": { - "name" : "Subversion" + "name": "Secure Hypertext Transfer Protocol" }, "ssh": { - "name" : "Secure Shell" + "name": "Secure Shell" + }, + "svn": { + "name": "Subversion" }, "telnet": { - "name" : "Telnet" + "name": "Telnet" }, "ws": { - "name" : "WebSocket" + "name": "WebSocket" }, "wss": { - "name" : "WebSocket Secure" - }, - "mqtt": { - "name" : "Message Queuing Telemetry Transport" - }, - "amqp": { - "name" : "Advanced Message Queuing Protocol" - }, - "coap": { - "name" : "Constrained Application Protocol" - }, - "coaps": { - "name" : "Constrained Application Protocol Secure" + "name": "WebSocket Secure" } } diff --git a/fuji_server/evaluators/fair_evaluator.py b/fuji_server/evaluators/fair_evaluator.py index e6298149..9618ca91 100644 --- a/fuji_server/evaluators/fair_evaluator.py +++ b/fuji_server/evaluators/fair_evaluator.py @@ -23,10 +23,11 @@ # SOFTWARE. import re +from fuji_server.helper.metadata_mapper import Mapper from fuji_server.models.fair_result_common_score import FAIRResultCommonScore from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium -from fuji_server.helper.metadata_mapper import Mapper -#from fuji_server.models.fair_result_evaluation_criterium_requirements import FAIRResultEvaluationCriteriumRequirements + +# from fuji_server.models.fair_result_evaluation_criterium_requirements import FAIRResultEvaluationCriteriumRequirements class FAIREvaluator: @@ -54,9 +55,10 @@ class FAIREvaluator: Logger to log during the evaluation process """ - #according to the CMMI model + # according to the CMMI model maturity_levels = Mapper.MATURITY_LEVELS.value - #{0: 'incomplete', 1: 'initial', 2: 'managed', 3: 'defined', 4: 'quantitatively managed',5: 'optimizing'} + + # {0: 'incomplete', 1: 'initial', 2: 'managed', 3: 'defined', 4: 'quantitatively managed',5: 'optimizing'} def __init__(self, fuji_instance): """ Parameters @@ -75,8 +77,7 @@ def __init__(self, fuji_instance): self.isDebug = self.fuji.isDebug self.fuji.count = self.fuji.count + 1 self.logger = self.fuji.logger - self.metric_regex = r'FsF-[FAIR][0-9]?(\.[0-9])?-[0-9]+[MD]+(-[0-9]+[a-z]?)?' - + self.metric_regex = r"FsF-[FAIR][0-9]?(\.[0-9])?-[0-9]+[MD]+(-[0-9]+[a-z]?)?" def set_metric(self, metric_identifier): """Set the metric for evaluation process. @@ -91,17 +92,17 @@ def set_metric(self, metric_identifier): self.metrics = self.fuji.METRICS self.metric_identifier = metric_identifier if self.metric_identifier is not None and self.metric_identifier in self.metrics: - self.agnostic_identifier = self.metrics.get(metric_identifier).get('agnostic_identifier') - self.community_identifier = self.metrics.get(metric_identifier).get('metric_identifier') - self.total_score = int(self.metrics.get(metric_identifier).get('total_score')) + self.agnostic_identifier = self.metrics.get(metric_identifier).get("agnostic_identifier") + self.community_identifier = self.metrics.get(metric_identifier).get("metric_identifier") + self.total_score = int(self.metrics.get(metric_identifier).get("total_score")) self.score = FAIRResultCommonScore(total=self.total_score) - self.metric_name = self.metrics.get(metric_identifier).get('metric_name') - self.metric_number = self.metrics.get(metric_identifier).get('metric_number') + self.metric_name = self.metrics.get(metric_identifier).get("metric_name") + self.metric_number = self.metrics.get(metric_identifier).get("metric_number") self.initializeMetricTests() def evaluate(self): """To be implemented (override) in the child class""" - #Do the main FAIR check here + # Do the main FAIR check here return True def getResult(self): @@ -110,58 +111,57 @@ def getResult(self): self.evaluate() if self.result: - #self.result.metric_identifier = self.metrics.get(self.result.metric_identifier).get('metric_identifier') + # self.result.metric_identifier = self.metrics.get(self.result.metric_identifier).get('metric_identifier') res_dict = self.result.to_dict() - #res_dict['agnostic_metric_identifier'] = self.agnostic_identifier + # res_dict['agnostic_metric_identifier'] = self.agnostic_identifier return res_dict else: return {} - def isTestDefined(self, testid): - if testid in self.metric_tests: + if testid in self.metric_tests: return True else: self.logger.info( - self.metric_identifier+' : This test is not defined in the metric YAML and therefore not performed -: '+ str(testid)) + self.metric_identifier + + " : This test is not defined in the metric YAML and therefore not performed -: " + + str(testid) + ) return False - def initializeMetricTests(self): """Initialize the evaluation criteria. aka metric tests""" - all_metric_tests = self.metrics.get(self.metric_identifier).get('metric_tests') + all_metric_tests = self.metrics.get(self.metric_identifier).get("metric_tests") if all_metric_tests is not None: for metric_test in all_metric_tests: evaluation_criterium = FAIRResultEvaluationCriterium() evaluation_criterium.metric_test_score = FAIRResultCommonScore() evaluation_criterium.metric_test_requirements = [] - #evaluation_criterium.metric_test_identifier = metric_test.get('metric_test_identifier') - evaluation_criterium.metric_test_status = 'fail' - evaluation_criterium.metric_test_name = metric_test.get('metric_test_name') - evaluation_criterium.metric_test_target = metric_test.get('metric_test_target') - if metric_test.get('metric_test_requirements'): - for test_requirements in metric_test.get('metric_test_requirements'): - #test_req = FAIRResultEvaluationCriteriumRequirements() + # evaluation_criterium.metric_test_identifier = metric_test.get('metric_test_identifier') + evaluation_criterium.metric_test_status = "fail" + evaluation_criterium.metric_test_name = metric_test.get("metric_test_name") + evaluation_criterium.metric_test_target = metric_test.get("metric_test_target") + if metric_test.get("metric_test_requirements"): + for test_requirements in metric_test.get("metric_test_requirements"): + # test_req = FAIRResultEvaluationCriteriumRequirements() test_req = {} - test_req['modality'] = test_requirements.get('modality') - test_req['required'] = test_requirements.get('required') - test_req['tested_on'] = test_requirements.get('tested_on') - test_req['comment'] = test_requirements.get('comment') - test_req['target'] = test_requirements.get('target') + test_req["modality"] = test_requirements.get("modality") + test_req["required"] = test_requirements.get("required") + test_req["tested_on"] = test_requirements.get("tested_on") + test_req["comment"] = test_requirements.get("comment") + test_req["target"] = test_requirements.get("target") evaluation_criterium.metric_test_requirements.append(test_req) evaluation_criterium.metric_test_score.earned = 0 - evaluation_criterium.metric_test_score.total = metric_test.get('metric_test_score') - evaluation_criterium.metric_test_score_config = metric_test.get('metric_test_score') + evaluation_criterium.metric_test_score.total = metric_test.get("metric_test_score") + evaluation_criterium.metric_test_score_config = metric_test.get("metric_test_score") evaluation_criterium.metric_test_maturity = 0 - evaluation_criterium.metric_test_maturity_config = metric_test.get('metric_test_maturity') - if metric_test.get('agnostic_test_identifier'): - self.metric_tests[metric_test.get('agnostic_test_identifier')] = evaluation_criterium - - def setEvaluationCriteriumScore(self, - criterium_id, - metric_test_score=0, - metric_test_status='fail', - metric_test_maturity=None): + evaluation_criterium.metric_test_maturity_config = metric_test.get("metric_test_maturity") + if metric_test.get("agnostic_test_identifier"): + self.metric_tests[metric_test.get("agnostic_test_identifier")] = evaluation_criterium + + def setEvaluationCriteriumScore( + self, criterium_id, metric_test_score=0, metric_test_status="fail", metric_test_maturity=None + ): """Set the evaluation criterium score of each evaluator. Parameters @@ -177,23 +177,22 @@ def setEvaluationCriteriumScore(self, evaluation_criterium = self.metric_tests.get(criterium_id) if evaluation_criterium is not None: evaluation_criterium.metric_test_score.earned = metric_test_score - if metric_test_status == 'pass': + if metric_test_status == "pass": evaluation_criterium.metric_test_score.earned = evaluation_criterium.metric_test_score.total evaluation_criterium.metric_test_status = metric_test_status - if metric_test_status == 'pass': + if metric_test_status == "pass": evaluation_criterium.metric_test_maturity = evaluation_criterium.metric_test_maturity_config self.metric_tests[criterium_id] = evaluation_criterium def getTestConfigScore(self, criterium_id): if self.metric_tests.get(criterium_id): - return self.metric_tests[criterium_id].metric_test_score.total + return self.metric_tests[criterium_id].metric_test_score.total else: return False def getTestConfigMaturity(self, criterium_id): - #get the configured maturity from YAML + # get the configured maturity from YAML if self.metric_tests.get(criterium_id): return self.metric_tests[criterium_id].metric_test_maturity_config else: return False - diff --git a/fuji_server/evaluators/fair_evaluator_community_metadata.py b/fuji_server/evaluators/fair_evaluator_community_metadata.py index c734a5a5..02d0dcaf 100644 --- a/fuji_server/evaluators/fair_evaluator_community_metadata.py +++ b/fuji_server/evaluators/fair_evaluator_community_metadata.py @@ -23,6 +23,9 @@ # SOFTWARE. from typing import List + +from tldextract import extract + from fuji_server.evaluators.fair_evaluator import FAIREvaluator from fuji_server.helper.metadata_provider_csw import OGCCSWMetadataProvider from fuji_server.helper.metadata_provider_oai import OAIMetadataProvider @@ -30,7 +33,7 @@ from fuji_server.helper.repository_helper import RepositoryHelper from fuji_server.models.community_endorsed_standard import CommunityEndorsedStandard from fuji_server.models.community_endorsed_standard_output_inner import CommunityEndorsedStandardOutputInner -from tldextract import extract + class FAIREvaluatorCommunityMetadata(FAIREvaluator): """ @@ -45,10 +48,11 @@ class FAIREvaluatorCommunityMetadata(FAIREvaluator): or metadata follows community specific metadata standard using namespaces or schemas found in the provided metadata or the metadata service outputs. """ + def __init__(self, fuji_instance): self.pids_which_resolve = {} FAIREvaluator.__init__(self, fuji_instance) - self.set_metric('FsF-R1.3-01M') + self.set_metric("FsF-R1.3-01M") self.community_standards_output = [] self.found_metadata_standards = [] self.valid_metadata_standards = [] @@ -58,15 +62,22 @@ def validate_service_url(self): if self.fuji.metadata_service_url: service_url_parts = extract(self.fuji.metadata_service_url) landing_url_parts = extract(self.fuji.landing_url) - service_domain = service_url_parts.domain + '.' + service_url_parts.suffix - landing_domain = landing_url_parts.domain + '.' + landing_url_parts.suffix + service_domain = service_url_parts.domain + "." + service_url_parts.suffix + landing_domain = landing_url_parts.domain + "." + landing_url_parts.suffix if landing_domain == service_domain: return True else: self.logger.warning( - 'FsF-R1.3-01M : Service URL domain/subdomain does not match with landing page domain -: {}'.format( - service_domain, landing_domain)) - self.fuji.metadata_service_url, self.fuji.csw_endpoint, self.fuji.oaipmh_endpoint, self.fuji.sparql_endpoint = None, None, None, None + "FsF-R1.3-01M : Service URL domain/subdomain does not match with landing page domain -: {}".format( + service_domain, landing_domain + ) + ) + ( + self.fuji.metadata_service_url, + self.fuji.csw_endpoint, + self.fuji.oaipmh_endpoint, + self.fuji.sparql_endpoint, + ) = (None, None, None, None) return False else: return False @@ -74,132 +85,161 @@ def validate_service_url(self): def retrieve_metadata_standards_from_namespaces(self): nsstandards = [] if self.fuji.namespace_uri: - self.logger.info('FsF-R1.3-01M : Namespaces included in the metadata -: {}'.format(list(set(self.fuji.namespace_uri)))) + self.logger.info( + "FsF-R1.3-01M : Namespaces included in the metadata -: {}".format(list(set(self.fuji.namespace_uri))) + ) for nsuri in list(set(self.fuji.namespace_uri)): - sinfo = self.get_metadata_standards_info(nsuri , 'ns') + sinfo = self.get_metadata_standards_info(nsuri, "ns") if sinfo: self.found_metadata_standards.append(sinfo) - if sinfo.get('type') == 'disciplinary': - if sinfo.get('name') not in nsstandards: - nsstandards.append(sinfo.get('name')) + if sinfo.get("type") == "disciplinary": + if sinfo.get("name") not in nsstandards: + nsstandards.append(sinfo.get("name")) if nsstandards: self.logger.info( - '{} : Found metadata standards that are given as namespaces -: {}'.format( - 'FsF-R1.3-01M', str(set(nsstandards)))) + "{} : Found metadata standards that are given as namespaces -: {}".format( + "FsF-R1.3-01M", str(set(nsstandards)) + ) + ) def retrieve_metadata_standards_from_sparql(self): if self.fuji.sparql_endpoint: - self.logger.info('{} : Use SPARQL endpoint to retrieve standards used by the repository -: {}'.format( - 'FsF-R1.3-01M', self.fuji.sparql_endpoint)) + self.logger.info( + "{} : Use SPARQL endpoint to retrieve standards used by the repository -: {}".format( + "FsF-R1.3-01M", self.fuji.sparql_endpoint + ) + ) if self.fuji.uri_validator(self.fuji.sparql_endpoint): - sparql_provider = SPARQLMetadataProvider(endpoint=self.fuji.sparql_endpoint, - logger=self.logger, - metric_id='FsF-R1.3-01M') + sparql_provider = SPARQLMetadataProvider( + endpoint=self.fuji.sparql_endpoint, logger=self.logger, metric_id="FsF-R1.3-01M" + ) standards_uris = sparql_provider.getMetadataStandards() self.fuji.namespace_uri.extend(sparql_provider.getNamespaces()) stds = [] if standards_uris: for sturi in list(set(standards_uris.values())): - sinfo = self.get_metadata_standards_info(sturi, 'sparql') + sinfo = self.get_metadata_standards_info(sturi, "sparql") if sinfo: self.found_metadata_standards.append(sinfo) - if sinfo.get('type') == 'disciplinary': - stds.append(sinfo.get('name')) + if sinfo.get("type") == "disciplinary": + stds.append(sinfo.get("name")) if stds: self.logger.log( self.fuji.LOG_SUCCESS, - '{} : Found metadata standards that are listed in SPARQL endpoint -: {}'.format( - 'FsF-R1.3-01M', str(stds))) + "{} : Found metadata standards that are listed in SPARQL endpoint -: {}".format( + "FsF-R1.3-01M", str(stds) + ), + ) else: - self.logger.info('{} : Invalid SPARQL endpoint'.format('FsF-R1.3-01M')) + self.logger.info("{} : Invalid SPARQL endpoint".format("FsF-R1.3-01M")) def retrieve_metadata_standards_from_csw(self): if self.fuji.csw_endpoint: - self.logger.info('{} : Use OGC CSW endpoint to retrieve standards used by the repository -: {}'.format( - 'FsF-R1.3-01M', self.fuji.csw_endpoint)) - if (self.fuji.uri_validator(self.fuji.csw_endpoint)): - csw_provider = OGCCSWMetadataProvider(endpoint=self.fuji.csw_endpoint, - logger=self.logger, - metric_id='FsF-R1.3-01M') + self.logger.info( + "{} : Use OGC CSW endpoint to retrieve standards used by the repository -: {}".format( + "FsF-R1.3-01M", self.fuji.csw_endpoint + ) + ) + if self.fuji.uri_validator(self.fuji.csw_endpoint): + csw_provider = OGCCSWMetadataProvider( + endpoint=self.fuji.csw_endpoint, logger=self.logger, metric_id="FsF-R1.3-01M" + ) standards_uris = csw_provider.getMetadataStandards() self.fuji.namespace_uri.extend(csw_provider.getNamespaces()) stds = [] if standards_uris: for sturi in list(set(standards_uris.values())): - sinfo = self.get_metadata_standards_info(sturi, 'csw') + sinfo = self.get_metadata_standards_info(sturi, "csw") if sinfo: self.found_metadata_standards.append(sinfo) - if sinfo.get('type') == 'disciplinary': - stds.append(sinfo.get('name')) + if sinfo.get("type") == "disciplinary": + stds.append(sinfo.get("name")) if stds: self.logger.info( - '{} : Found metadata standards that are listed in OGC CSW endpoint -: {}'.format( - 'FsF-R1.3-01M', str(stds))) + "{} : Found metadata standards that are listed in OGC CSW endpoint -: {}".format( + "FsF-R1.3-01M", str(stds) + ) + ) else: - self.logger.info('{} : Invalid OGC CSW endpoint'.format('FsF-R1.3-01M')) + self.logger.info("{} : Invalid OGC CSW endpoint".format("FsF-R1.3-01M")) def retrieve_metadata_standards_from_oai_pmh(self): if self.fuji.oaipmh_endpoint: - self.logger.info('{} : Use OAI-PMH endpoint to retrieve standards used by the repository -: {}'.format( - 'FsF-R1.3-01M', self.fuji.oaipmh_endpoint)) - if (self.fuji.uri_validator(self.fuji.oaipmh_endpoint)): - oai_provider = OAIMetadataProvider(endpoint=self.fuji.oaipmh_endpoint, - logger=self.logger, - metric_id='FsF-R1.3-01M') + self.logger.info( + "{} : Use OAI-PMH endpoint to retrieve standards used by the repository -: {}".format( + "FsF-R1.3-01M", self.fuji.oaipmh_endpoint + ) + ) + if self.fuji.uri_validator(self.fuji.oaipmh_endpoint): + oai_provider = OAIMetadataProvider( + endpoint=self.fuji.oaipmh_endpoint, logger=self.logger, metric_id="FsF-R1.3-01M" + ) standards_uris = oai_provider.getMetadataStandards() self.fuji.namespace_uri.extend(oai_provider.getNamespaces()) stds = [] if standards_uris: for sturi in list(set(standards_uris.values())): - sinfo = self.get_metadata_standards_info(sturi, 'oai-pmh') + sinfo = self.get_metadata_standards_info(sturi, "oai-pmh") if sinfo: self.found_metadata_standards.append(sinfo) - if sinfo.get('type') == 'disciplinary': - stds.append(sinfo.get('name')) + if sinfo.get("type") == "disciplinary": + stds.append(sinfo.get("name")) if stds: self.logger.info( - '{} : Found metadata standards that are listed in OAI-PMH endpoint -: {}'.format( - 'FsF-R1.3-01M', str(stds))) + "{} : Found metadata standards that are listed in OAI-PMH endpoint -: {}".format( + "FsF-R1.3-01M", str(stds) + ) + ) else: - self.logger.info('{} : Invalid endpoint'.format('FsF-R1.3-01M')) + self.logger.info("{} : Invalid endpoint".format("FsF-R1.3-01M")) else: - self.logger.warning('{} : NO valid OAI-PMH endpoint found'.format('FsF-R1.3-01M')) + self.logger.warning("{} : NO valid OAI-PMH endpoint found".format("FsF-R1.3-01M")) return True def retrieve_metadata_standards_from_re3data(self): - if self.fuji.metadata_merged.get('datacite_client'): + if self.fuji.metadata_merged.get("datacite_client"): self.logger.info( - 'FsF-R1.3-01M : Trying to retrieve metadata info from re3data/datacite services using client id -: ' - + str(self.fuji.metadata_merged.get('datacite_client'))) + "FsF-R1.3-01M : Trying to retrieve metadata info from re3data/datacite services using client id -: " + + str(self.fuji.metadata_merged.get("datacite_client")) + ) if self.fuji.pid_scheme: repoHelper = self.fuji.repo_helper if not self.fuji.metadata_service_url: - self.logger.info('{} : Inferring metadata service endpoint (OAI, SPARQL) information through re3data/datacite services'.format( - 'FsF-R1.3-01M')) - self.fuji.oaipmh_endpoint = repoHelper.getRe3MetadataAPIs().get('OAI-PMH') - self.fuji.sparql_endpoint = repoHelper.getRe3MetadataAPIs().get('SPARQL') + self.logger.info( + "{} : Inferring metadata service endpoint (OAI, SPARQL) information through re3data/datacite services".format( + "FsF-R1.3-01M" + ) + ) + self.fuji.oaipmh_endpoint = repoHelper.getRe3MetadataAPIs().get("OAI-PMH") + self.fuji.sparql_endpoint = repoHelper.getRe3MetadataAPIs().get("SPARQL") stds = [] for sturi in repoHelper.getRe3MetadataStandards(): - sinfo = self.get_metadata_standards_info(sturi, 're3data') - #print('OAI URI ', sturi, sinfo) + sinfo = self.get_metadata_standards_info(sturi, "re3data") + # print('OAI URI ', sturi, sinfo) if sinfo: self.found_metadata_standards.append(sinfo) - if sinfo.get('name') not in stds: - stds.append(sinfo.get('name')) - self.logger.info('{} : Metadata standards listed in re3data record -: {}'.format( - 'FsF-R1.3-01M', str(stds))) + if sinfo.get("name") not in stds: + stds.append(sinfo.get("name")) + self.logger.info( + "{} : Metadata standards listed in re3data record -: {}".format("FsF-R1.3-01M", str(stds)) + ) else: self.logger.info( - 'FsF-R1.3-01M : No Datacite client id found, therefore skipping re3data metadata retrieval') + "FsF-R1.3-01M : No Datacite client id found, therefore skipping re3data metadata retrieval" + ) # verify the service url by domain matching self.validate_service_url() def retrieve_metadata_standards_from_apis(self): if self.fuji.landing_url is not None: - self.logger.info('FsF-R1.3-01M : Retrieving API and Standards') - if self.fuji.metadata_service_url not in [None, '']: - self.logger.info('FsF-R1.3-01M : Metadata service endpoint (' + str(self.fuji.metadata_service_type) + - ') provided as part of the assessment request -: ' + str(self.fuji.metadata_service_url)) + self.logger.info("FsF-R1.3-01M : Retrieving API and Standards") + if self.fuji.metadata_service_url not in [None, ""]: + self.logger.info( + "FsF-R1.3-01M : Metadata service endpoint (" + + str(self.fuji.metadata_service_type) + + ") provided as part of the assessment request -: " + + str(self.fuji.metadata_service_url) + ) self.retrieve_metadata_standards_from_re3data() # retrieve metadata standards info from oai-pmh self.retrieve_metadata_standards_from_oai_pmh() @@ -209,8 +249,10 @@ def retrieve_metadata_standards_from_apis(self): self.retrieve_metadata_standards_from_sparql() else: self.logger.warning( - '{} : Skipped external ressources (e.g. OAI, re3data) checks since landing page could not be resolved'. - format('FsF-R1.3-01M')) + "{} : Skipped external ressources (e.g. OAI, re3data) checks since landing page could not be resolved".format( + "FsF-R1.3-01M" + ) + ) def filter_community_metadata_standards(self, testid, found_metadata_standards): test_requirements = [] @@ -218,67 +260,77 @@ def filter_community_metadata_standards(self, testid, found_metadata_standards): test_requirements = self.metric_tests[self.metric_identifier + str(testid)].metric_test_requirements[0] if test_requirements: community_standards = [] - if test_requirements.get('required'): - test_required=[] - if isinstance(test_requirements.get('required'), list): - test_required = test_requirements.get('required') - elif test_requirements.get('required').get('name'): - test_required = test_requirements.get('required').get('name') + if test_requirements.get("required"): + test_required = [] + if isinstance(test_requirements.get("required"), list): + test_required = test_requirements.get("required") + elif test_requirements.get("required").get("name"): + test_required = test_requirements.get("required").get("name") if not isinstance(test_required, list): test_required = [test_required] if test_required: self.logger.info( - '{0} : Will exclusively consider community specific metadata standards for {0}{1} which are specified in metrics -: {2}'.format( - self.metric_identifier, str(testid), test_required)) + "{0} : Will exclusively consider community specific metadata standards for {0}{1} which are specified in metrics -: {2}".format( + self.metric_identifier, str(testid), test_required + ) + ) for rq_mstandard_id in list(test_required): for kn_mstandard in found_metadata_standards: - #check if internal or external identifiers (RDA, fairsharing) are listed - if rq_mstandard_id in kn_mstandard.get('external_ids') or rq_mstandard_id == kn_mstandard.get('id'): - community_standards.append(kn_mstandard.get('id')) + # check if internal or external identifiers (RDA, fairsharing) are listed + if rq_mstandard_id in kn_mstandard.get( + "external_ids" + ) or rq_mstandard_id == kn_mstandard.get("id"): + community_standards.append(kn_mstandard.get("id")) if len(community_standards) > 0: self.logger.info( - '{0} : Identifiers of community specific metadata standards found -: {1}'.format( - self.metric_identifier, community_standards)) - found_metadata_standards = [x for x in found_metadata_standards if x.get('id') in community_standards] + "{0} : Identifiers of community specific metadata standards found -: {1}".format( + self.metric_identifier, community_standards + ) + ) + found_metadata_standards = [ + x for x in found_metadata_standards if x.get("id") in community_standards + ] return found_metadata_standards def testMultidisciplinarybutCommunityEndorsedMetadataDetected(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-3'): - test_score = self.getTestConfigScore(self.metric_identifier + '-3') + if self.isTestDefined(self.metric_identifier + "-3"): + test_score = self.getTestConfigScore(self.metric_identifier + "-3") generic_found = False - found_metadata_standards = self.filter_community_metadata_standards('-3', self.found_metadata_standards) + found_metadata_standards = self.filter_community_metadata_standards("-3", self.found_metadata_standards) for found_standard in found_metadata_standards: - if found_standard.get('type')=='generic': + if found_standard.get("type") == "generic": generic_found = True if found_standard not in self.valid_metadata_standards: self.valid_metadata_standards.append(found_standard) if generic_found: self.logger.log( self.fuji.LOG_SUCCESS, - 'FsF-R1.3-01M : Found non-disciplinary standards (but RDA listed) using namespaces or schemas found in re3data record or via provided metadata or metadata services outputs') - self.setEvaluationCriteriumScore(self.metric_identifier + '-3', test_score, 'pass') - self.maturity = self.metric_tests.get(self.metric_identifier + '-3').metric_test_maturity_config + "FsF-R1.3-01M : Found non-disciplinary standards (but RDA listed) using namespaces or schemas found in re3data record or via provided metadata or metadata services outputs", + ) + self.setEvaluationCriteriumScore(self.metric_identifier + "-3", test_score, "pass") + self.maturity = self.metric_tests.get(self.metric_identifier + "-3").metric_test_maturity_config self.score.earned = test_score test_status = True return test_status def testCommunitySpecificMetadataDetectedviaRe3Data(self): - if self.isTestDefined(self.metric_identifier + '-2'): - test_score = self.getTestConfigScore(self.metric_identifier + '-2') + if self.isTestDefined(self.metric_identifier + "-2"): + test_score = self.getTestConfigScore(self.metric_identifier + "-2") specific_found = False - found_metadata_standards = self.filter_community_metadata_standards('-2', self.found_metadata_standards) + found_metadata_standards = self.filter_community_metadata_standards("-2", self.found_metadata_standards) for found_standard in found_metadata_standards: - if found_standard.get('type') == 'disciplinary' and found_standard.get('source') == 're3data': + if found_standard.get("type") == "disciplinary" and found_standard.get("source") == "re3data": specific_found = True if found_standard not in self.valid_metadata_standards: self.valid_metadata_standards.append(found_standard) if specific_found: self.logger.log( self.fuji.LOG_SUCCESS, - 'FsF-R1.3-01M : Found disciplinary standard listed in the re3data record of the responsible repository') - self.setEvaluationCriteriumScore(self.metric_identifier + '-2', test_score, 'pass') - self.maturity = self.metric_tests.get(self.metric_identifier + '-2').metric_test_maturity_config + "FsF-R1.3-01M : Found disciplinary standard listed in the re3data record of the responsible repository", + ) + self.setEvaluationCriteriumScore(self.metric_identifier + "-2", test_score, "pass") + self.maturity = self.metric_tests.get(self.metric_identifier + "-2").metric_test_maturity_config self.score.earned = test_score return True else: @@ -286,21 +338,22 @@ def testCommunitySpecificMetadataDetectedviaRe3Data(self): def testCommunitySpecificMetadataDetectedviaNamespaces(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-1'): - test_score = self.getTestConfigScore(self.metric_identifier + '-1') + if self.isTestDefined(self.metric_identifier + "-1"): + test_score = self.getTestConfigScore(self.metric_identifier + "-1") specific_found = False - found_metadata_standards = self.filter_community_metadata_standards('-1', self.found_metadata_standards) + found_metadata_standards = self.filter_community_metadata_standards("-1", self.found_metadata_standards) for found_standard in found_metadata_standards: - if found_standard.get('type') == 'disciplinary' and found_standard.get('source') != 're3data': + if found_standard.get("type") == "disciplinary" and found_standard.get("source") != "re3data": specific_found = True if found_standard not in self.valid_metadata_standards: self.valid_metadata_standards.append(found_standard) if specific_found: self.logger.log( self.fuji.LOG_SUCCESS, - 'FsF-R1.3-01M : Found disciplinary standard using namespaces or schemas found in provided metadata or metadata services outputs ') - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score, 'pass') - self.maturity = self.metric_tests.get(self.metric_identifier + '-1').metric_test_maturity_config + "FsF-R1.3-01M : Found disciplinary standard using namespaces or schemas found in provided metadata or metadata services outputs ", + ) + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") + self.maturity = self.metric_tests.get(self.metric_identifier + "-1").metric_test_maturity_config self.score.earned = test_score test_status = True return test_status @@ -309,47 +362,50 @@ def get_metadata_standards_info(self, uri, source): standard_found = self.fuji.metadata_harvester.lookup_metadatastandard_by_uri(uri) if standard_found: metadata_info = self.fuji.metadata_harvester.get_metadata_standard_info(standard_found) - if metadata_info.get('type')=='generic': + if metadata_info.get("type") == "generic": self.logger.info( - 'FsF-R1.3-01M : Found non-disciplinary standard (but RDA listed) -: via {}: {} - {}' - .format(str(source),metadata_info.get('name'), uri)) + "FsF-R1.3-01M : Found non-disciplinary standard (but RDA listed) -: via {}: {} - {}".format( + str(source), metadata_info.get("name"), uri + ) + ) else: self.logger.info( - 'FsF-R1.3-01M : Found disciplinary standard -: via {} : {} - {}'.format(str(source),metadata_info.get('name'), uri)) - metadata_info['uri'] = uri - metadata_info['source'] = source + "FsF-R1.3-01M : Found disciplinary standard -: via {} : {} - {}".format( + str(source), metadata_info.get("name"), uri + ) + ) + metadata_info["uri"] = uri + metadata_info["source"] = source return metadata_info else: return {} - def evaluate(self): - self.community_standards_output: List[CommunityEndorsedStandardOutputInner] = [] self.retrieve_metadata_standards_from_namespaces() self.retrieve_metadata_standards_from_apis() - self.result = CommunityEndorsedStandard(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) + self.result = CommunityEndorsedStandard( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) if self.testMultidisciplinarybutCommunityEndorsedMetadataDetected(): - self.result.test_status = 'pass' + self.result.test_status = "pass" if self.testCommunitySpecificMetadataDetectedviaRe3Data(): - self.result.test_status = 'pass' + self.result.test_status = "pass" if self.testCommunitySpecificMetadataDetectedviaNamespaces(): - self.result.test_status = 'pass' + self.result.test_status = "pass" for found_standard in self.valid_metadata_standards: out = CommunityEndorsedStandardOutputInner() - out.metadata_standard = found_standard.get('name') # use here original standard uri detected - out.subject_areas = found_standard.get('subject') - out.url = found_standard.get('uri') - out.type = found_standard.get('type') - out.source = found_standard.get('catalogue') + out.metadata_standard = found_standard.get("name") # use here original standard uri detected + out.subject_areas = found_standard.get("subject") + out.url = found_standard.get("uri") + out.type = found_standard.get("type") + out.source = found_standard.get("catalogue") self.community_standards_output.append(out) if not self.community_standards_output: - self.logger.warning('FsF-R1.3-01M : Unable to determine community standard(s)') + self.logger.warning("FsF-R1.3-01M : Unable to determine community standard(s)") self.result.metric_tests = self.metric_tests self.result.score = self.score self.result.maturity = self.maturity diff --git a/fuji_server/evaluators/fair_evaluator_data_access_level.py b/fuji_server/evaluators/fair_evaluator_data_access_level.py index 4d2d37ab..a7582211 100644 --- a/fuji_server/evaluators/fair_evaluator_data_access_level.py +++ b/fuji_server/evaluators/fair_evaluator_data_access_level.py @@ -22,12 +22,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. +import re + from fuji_server.evaluators.fair_evaluator import FAIREvaluator from fuji_server.evaluators.fair_evaluator_license import FAIREvaluatorLicense +from fuji_server.helper.metadata_mapper import Mapper from fuji_server.models.data_access_level import DataAccessLevel from fuji_server.models.data_access_output import DataAccessOutput -from fuji_server.helper.metadata_mapper import Mapper -import re class FAIREvaluatorDataAccessLevel(FAIREvaluator): @@ -42,110 +43,146 @@ class FAIREvaluatorDataAccessLevel(FAIREvaluator): This method will evaluate the metadata that includes the level of data access, e.g., public, embargoed, restricted, whether using a appropriate metadata field or using a machine-readable and verified against controlled vocabularies. """ + def __init__(self, fuji_instance): FAIREvaluator.__init__(self, fuji_instance) - #if self.fuji.metric_helper.get_metric_version() <= 0.5: - self.set_metric('FsF-A1-01M') - #else: + # if self.fuji.metric_helper.get_metric_version() <= 0.5: + self.set_metric("FsF-A1-01M") + # else: # self.set_metric('FsF-R1.1-02M') self.access_details = {} self.access_level = None - #self.access_rights_dict = self.fuji.ACCESS_RIGHTS - self.lower_case_access_dict = {k.get('id').lower():k.get('access_condition') for ak, av in self.fuji.ACCESS_RIGHTS.items() for k in av.get('members')} - self.ACCESS_RIGHT_CODES = {k.get('id'):k.get('access_condition') for ak,av in self.fuji.ACCESS_RIGHTS.items() for k in av.get('members')} - self.ACCESS_RIGHT_CODES.update({k.get('label').lower():k.get('access_condition') for ak,av in self.fuji.ACCESS_RIGHTS.items() for k in av.get('members')}) - #self.lower_case_access_dict = dict((k.lower(), v) for k, v in Mapper.ACCESS_RIGHT_CODES.value.items()) + # self.access_rights_dict = self.fuji.ACCESS_RIGHTS + self.lower_case_access_dict = { + k.get("id").lower(): k.get("access_condition") + for ak, av in self.fuji.ACCESS_RIGHTS.items() + for k in av.get("members") + } + self.ACCESS_RIGHT_CODES = { + k.get("id"): k.get("access_condition") + for ak, av in self.fuji.ACCESS_RIGHTS.items() + for k in av.get("members") + } + self.ACCESS_RIGHT_CODES.update( + { + k.get("label").lower(): k.get("access_condition") + for ak, av in self.fuji.ACCESS_RIGHTS.items() + for k in av.get("members") + } + ) + # self.lower_case_access_dict = dict((k.lower(), v) for k, v in Mapper.ACCESS_RIGHT_CODES.value.items()) + def excludeLicences(self, access_rights): licence_evaluator = FAIREvaluatorLicense(self.fuji) real_access_rights = [] if access_rights: for access_right in access_rights: if isinstance(access_right, str): - access_right = re.sub(r'[\r\n]+', ' ', access_right) + access_right = re.sub(r"[\r\n]+", " ", access_right) if not licence_evaluator.isLicense( - value=access_right, - metric_id=self.metric_identifier): # exclude license-based text from access_rights + value=access_right, metric_id=self.metric_identifier + ): # exclude license-based text from access_rights real_access_rights.append(access_right) self.logger.info( - self.metric_identifier + ' : Access condition does not look like license, therefore continuing -: {}'.format(access_right)) + self.metric_identifier + + " : Access condition does not look like license, therefore continuing -: {}".format( + access_right + ) + ) else: self.logger.warning( - self.metric_identifier + ' : Access condition looks like license, therefore the following is ignored -: {}'. - format(access_right)) - if self.fuji.metadata_merged.get('license'): - if isinstance(self.fuji.metadata_merged.get('license'), list): - self.fuji.metadata_merged['license'].append(access_right) + self.metric_identifier + + " : Access condition looks like license, therefore the following is ignored -: {}".format( + access_right + ) + ) + if self.fuji.metadata_merged.get("license"): + if isinstance(self.fuji.metadata_merged.get("license"), list): + self.fuji.metadata_merged["license"].append(access_right) else: - self.fuji.metadata_merged['license'] = [access_right] + self.fuji.metadata_merged["license"] = [access_right] self.logger.info( - 'FsF-R1.1-01M : License expressed as access condition (rights), therefore moved from FsF-A1-01M -: {}' - .format(access_right)) + "FsF-R1.1-01M : License expressed as access condition (rights), therefore moved from FsF-A1-01M -: {}".format( + access_right + ) + ) return real_access_rights def testAccessRightsMetadataAvailable(self, access_rights): test_result = False - if self.isTestDefined(self.metric_identifier + '-1'): - test_score = self.getTestConfigScore(self.metric_identifier + '-1') + if self.isTestDefined(self.metric_identifier + "-1"): + test_score = self.getTestConfigScore(self.metric_identifier + "-1") if access_rights: test_result = True - self.logger.info(self.metric_identifier +' : Found access rights information in dedicated metadata element -: '+str(access_rights)) - self.setEvaluationCriteriumScore(self.metric_identifier + '-1',test_score, 'pass') + self.logger.info( + self.metric_identifier + + " : Found access rights information in dedicated metadata element -: " + + str(access_rights) + ) + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") self.score.earned = test_score - self.maturity = self.metric_tests.get(self.metric_identifier + '-1').metric_test_maturity_config + self.maturity = self.metric_tests.get(self.metric_identifier + "-1").metric_test_maturity_config else: - self.logger.warning(self.metric_identifier +' : NO access information is available in metadata') + self.logger.warning(self.metric_identifier + " : NO access information is available in metadata") return test_result - def testAccessRightsStandardTerms(self,access_rights): + def testAccessRightsStandardTerms(self, access_rights): test_result = False - if self.isTestDefined(self.metric_identifier + '-3'): - test_score = self.getTestConfigScore(self.metric_identifier + '-3') + if self.isTestDefined(self.metric_identifier + "-3"): + test_score = self.getTestConfigScore(self.metric_identifier + "-3") if access_rights: for access_right in access_rights: if access_right.lower() in self.lower_case_access_dict: self.logger.info( - self.metric_identifier + ' : Non-actionable (term only) standard access level recognized as -:' + - str(self.lower_case_access_dict.get(access_right.lower()))) - self.maturity = self.metric_tests.get(self.metric_identifier + '-3').metric_test_maturity_config - self.setEvaluationCriteriumScore(self.metric_identifier + '-3', test_score, 'pass') + self.metric_identifier + + " : Non-actionable (term only) standard access level recognized as -:" + + str(self.lower_case_access_dict.get(access_right.lower())) + ) + self.maturity = self.metric_tests.get(self.metric_identifier + "-3").metric_test_maturity_config + self.setEvaluationCriteriumScore(self.metric_identifier + "-3", test_score, "pass") self.access_level = self.lower_case_access_dict.get(access_right.lower()) - self.access_details['access_condition'] = access_right + self.access_details["access_condition"] = access_right self.score.earned = test_score break else: - self.logger.info(self.metric_identifier +' : Skipping standard terms test since NO access information is available in metadata') + self.logger.info( + self.metric_identifier + + " : Skipping standard terms test since NO access information is available in metadata" + ) return test_result def getIsAccessibleForFreeTerm(self): access_rights = [] afree_uri = None - #schema.org/accessiblefroFree - access_free = self.fuji.metadata_merged.get('access_free') + # schema.org/accessiblefroFree + access_free = self.fuji.metadata_merged.get("access_free") if access_free is not None: self.logger.info( - self.metric_identifier + ' : Found \'schema.org/isAccessibleForFree\' to determine the access level (either public or restricted)' + self.metric_identifier + + " : Found 'schema.org/isAccessibleForFree' to determine the access level (either public or restricted)" ) if access_free: # schema.org: isAccessibleForFree || free - access_rights = 'public' + access_rights = "public" else: - access_rights = 'restricted' - afree_uri = 'https://schema.org/isAccessibleForFree#' + str(access_rights) + access_rights = "restricted" + afree_uri = "https://schema.org/isAccessibleForFree#" + str(access_rights) - return access_rights,afree_uri + return access_rights, afree_uri - def testAccessRightsMachineReadable(self,access_rights): + def testAccessRightsMachineReadable(self, access_rights): test_result = False - if self.isTestDefined(self.metric_identifier + '-2'): - test_score = self.getTestConfigScore(self.metric_identifier + '-2') - #Hier stimmt was nicht!!! - rights_regex = r'((info\:eu\-repo\/semantics|schema.org\/isAccessibleForFree|purl.org\/coar\/access_right|vocabularies\.coar-repositories\.org\/access_rights|purl\.org\/eprint\/accessRights|europa\.eu\/resource\/authority\/access-right)[\/#]{1}(\S*))' + if self.isTestDefined(self.metric_identifier + "-2"): + test_score = self.getTestConfigScore(self.metric_identifier + "-2") + # Hier stimmt was nicht!!! + rights_regex = r"((info\:eu\-repo\/semantics|schema.org\/isAccessibleForFree|purl.org\/coar\/access_right|vocabularies\.coar-repositories\.org\/access_rights|purl\.org\/eprint\/accessRights|europa\.eu\/resource\/authority\/access-right)[\/#]{1}(\S*))" if not access_rights: - access_free = self.fuji.metadata_merged.get('access_free') + access_free = self.fuji.metadata_merged.get("access_free") if access_rights: for access_right in access_rights: - self.logger.info(self.metric_identifier + ' : Access right information specified -: {}'.format( - access_right)) + self.logger.info( + self.metric_identifier + " : Access right information specified -: {}".format(access_right) + ) rights_match = re.search(rights_regex, access_right, re.IGNORECASE) if rights_match is not None: last_group = len(rights_match.groups()) @@ -154,39 +191,49 @@ def testAccessRightsMachineReadable(self,access_rights): if re.search(right_code, filtered_rights, re.IGNORECASE): test_result = True self.access_level = right_status - self.access_details['access_condition'] = rights_match[1] # overwrite existing condition - self.logger.info(self.metric_identifier + ' : Standardized actionable access level recognized as -:' + - str(right_status)) - self.setEvaluationCriteriumScore(self.metric_identifier + '-2', test_score, 'pass') + self.access_details["access_condition"] = rights_match[ + 1 + ] # overwrite existing condition + self.logger.info( + self.metric_identifier + + " : Standardized actionable access level recognized as -:" + + str(right_status) + ) + self.setEvaluationCriteriumScore(self.metric_identifier + "-2", test_score, "pass") self.score.earned = test_score - self.maturity = self.metric_tests.get(self.metric_identifier + '-2').metric_test_maturity_config + self.maturity = self.metric_tests.get( + self.metric_identifier + "-2" + ).metric_test_maturity_config break break else: - self.logger.info(self.metric_identifier +' : Skipping machine readablility test since NO access information is available in metadata') + self.logger.info( + self.metric_identifier + + " : Skipping machine readablility test since NO access information is available in metadata" + ) return test_result def evaluate(self): - #Focus on machine readable rights -> URIs only - #1) http://vocabularies.coar-repositories.org/documentation/access_rights/ - #2) Eprints AccessRights Vocabulary: check for http://purl.org/eprint/accessRights/ - #3) EU publications access rights check for http://publications.europa.eu/resource/authority/access-right/NON_PUBLIC - #4) Openaire Guidelines info:eu-repo/semantics/openAccess - self.result = DataAccessLevel(self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) + # Focus on machine readable rights -> URIs only + # 1) http://vocabularies.coar-repositories.org/documentation/access_rights/ + # 2) Eprints AccessRights Vocabulary: check for http://purl.org/eprint/accessRights/ + # 3) EU publications access rights check for http://publications.europa.eu/resource/authority/access-right/NON_PUBLIC + # 4) Openaire Guidelines info:eu-repo/semantics/openAccess + self.result = DataAccessLevel( + self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) self.output = DataAccessOutput() - test_status = 'fail' - access_rights = self.fuji.metadata_merged.get('access_level') + test_status = "fail" + access_rights = self.fuji.metadata_merged.get("access_level") if isinstance(access_rights, str): access_rights = [access_rights] access_rights = self.excludeLicences(access_rights) - #access_rights can be None or [] + # access_rights can be None or [] if self.testAccessRightsMetadataAvailable(access_rights): - test_status = 'pass' + test_status = "pass" if self.testAccessRightsStandardTerms(access_rights): - test_status = 'pass' + test_status = "pass" else: try: afreeterm, afreeuri = self.getIsAccessibleForFreeTerm() @@ -194,37 +241,43 @@ def evaluate(self): access_rights.extend([afreeuri]) self.access_level = afreeterm if self.testAccessRightsStandardTerms(access_rights): - test_status = 'pass' + test_status = "pass" except: pass if self.testAccessRightsMachineReadable(access_rights): - test_status = 'pass' + test_status = "pass" if not self.access_details and access_rights: if access_rights: - self.access_details['access_condition'] = ', '.join(access_rights) + self.access_details["access_condition"] = ", ".join(access_rights) - #if embargoed, publication date must be specified (for now score is not deducted, just outputs warning message) - if self.access_level == 'embargoed': - available_date = self.fuji.metadata_merged.get('publication_date') + # if embargoed, publication date must be specified (for now score is not deducted, just outputs warning message) + if self.access_level == "embargoed": + available_date = self.fuji.metadata_merged.get("publication_date") if available_date: - self.logger.info(self.metric_identifier + ' : Embargoed access, available date -: {}'.format(available_date)) - self.access_details['available_date'] = available_date + self.logger.info( + self.metric_identifier + " : Embargoed access, available date -: {}".format(available_date) + ) + self.access_details["available_date"] = available_date else: - self.logger.warning(self.metric_identifier + ' : Embargoed access, available date NOT found') + self.logger.warning(self.metric_identifier + " : Embargoed access, available date NOT found") if self.access_level or self.access_details: - test_status = 'pass' + test_status = "pass" self.result.score = self.score self.result.test_status = test_status - if self.access_level: #must be one of ['public', 'embargoed', 'restricted', 'closed','metadataonly'] + if self.access_level: # must be one of ['public', 'embargoed', 'restricted', 'closed','metadataonly'] self.output.access_level = self.access_level - self.logger.log(self.fuji.LOG_SUCCESS, - self.metric_identifier + ' : Access level to data could successfully be determined -: ' + self.access_level) + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + + " : Access level to data could successfully be determined -: " + + self.access_level, + ) else: - self.logger.warning(self.metric_identifier + ' : Unable to determine the access level') + self.logger.warning(self.metric_identifier + " : Unable to determine the access level") self.output.access_details = self.access_details self.result.metric_tests = self.metric_tests self.result.maturity = self.maturity diff --git a/fuji_server/evaluators/fair_evaluator_data_content_metadata.py b/fuji_server/evaluators/fair_evaluator_data_content_metadata.py index 7d5d4325..92f81929 100644 --- a/fuji_server/evaluators/fair_evaluator_data_content_metadata.py +++ b/fuji_server/evaluators/fair_evaluator_data_content_metadata.py @@ -22,11 +22,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. import re + from fuji_server.evaluators.fair_evaluator import FAIREvaluator from fuji_server.models.data_content_metadata import DataContentMetadata from fuji_server.models.data_content_metadata_output import DataContentMetadataOutput from fuji_server.models.data_content_metadata_output_inner import DataContentMetadataOutputInner + class FAIREvaluatorDataContentMetadata(FAIREvaluator): """ A class to evaluate whether the metadata specifies the content of the data (R1.01MD). A child class of FAIREvaluator. @@ -41,88 +43,106 @@ class FAIREvaluatorDataContentMetadata(FAIREvaluator): def __init__(self, fuji_instance): FAIREvaluator.__init__(self, fuji_instance) - self.set_metric('FsF-R1-01MD') + self.set_metric("FsF-R1-01MD") self.data_content_descriptors = [] def subtestDataContentInfoGiven(self): test_result = False - test_score = self.getTestConfigScore(self.metric_identifier + '-1b') + test_score = self.getTestConfigScore(self.metric_identifier + "-1b") if isinstance(self.fuji.content_identifier, dict): if len(self.fuji.content_identifier) > 0: - self.setEvaluationCriteriumScore(self.metric_identifier + '-1b', test_score, 'pass') + self.setEvaluationCriteriumScore(self.metric_identifier + "-1b", test_score, "pass") return test_result def subtestResourceTypeGiven(self): test_result = False - test_score = self.getTestConfigScore(self.metric_identifier + '-1a') - resource_types = self.fuji.metadata_merged.get('object_type') + test_score = self.getTestConfigScore(self.metric_identifier + "-1a") + resource_types = self.fuji.metadata_merged.get("object_type") if resource_types: if not isinstance(resource_types, list): resource_types = [resource_types] for resource_type in resource_types: resource_type = str(resource_type).lower() - if str(resource_type).startswith('http'): - #http://schema.org/Dataset - resource_type = str(resource_type).split('/')[-1] - if str(resource_type).lower() in self.fuji.VALID_RESOURCE_TYPES or resource_type in self.fuji.SCHEMA_ORG_CONTEXT: - self.logger.log(self.fuji.LOG_SUCCESS, - self.metric_identifier + ' : Valid resource type (e.g. subtype of schema.org/CreativeWork, DCMI Type or DataCite resourceType) specified -: {}'.format(resource_type)) + if str(resource_type).startswith("http"): + # http://schema.org/Dataset + resource_type = str(resource_type).split("/")[-1] + if ( + str(resource_type).lower() in self.fuji.VALID_RESOURCE_TYPES + or resource_type in self.fuji.SCHEMA_ORG_CONTEXT + ): + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + + " : Valid resource type (e.g. subtype of schema.org/CreativeWork, DCMI Type or DataCite resourceType) specified -: {}".format( + resource_type + ), + ) self.output.object_type = resource_type - self.setEvaluationCriteriumScore(self.metric_identifier + '-1a', test_score, 'pass') + self.setEvaluationCriteriumScore(self.metric_identifier + "-1a", test_score, "pass") test_result = True else: - self.logger.warning(self.metric_identifier + ' : Invalid resource type (e.g. subtype of schema.org/CreativeWork, DCMI Type or DataCite resourceType) specified -: ' + str(resource_type)) + self.logger.warning( + self.metric_identifier + + " : Invalid resource type (e.g. subtype of schema.org/CreativeWork, DCMI Type or DataCite resourceType) specified -: " + + str(resource_type) + ) else: - self.logger.warning(self.metric_identifier + ' : NO resource type specified ') + self.logger.warning(self.metric_identifier + " : NO resource type specified ") return test_result def testMinimalInformationAboutDataContentAvailable(self): test_result = False - if self.isTestDefined(self.metric_identifier + '-1'): - test_score = self.getTestConfigScore(self.metric_identifier + '-1') + if self.isTestDefined(self.metric_identifier + "-1"): + test_score = self.getTestConfigScore(self.metric_identifier + "-1") if self.subtestResourceTypeGiven(): test_result = True - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score, 'pass') + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") if self.subtestDataContentInfoGiven(): test_result = True - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score, 'pass') + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") if test_result: self.score.earned += test_score - self.maturity = self.getTestConfigMaturity(self.metric_identifier + '-1') #self.metric_tests.get(self.metric_identifier + '-1').metric_test_maturity_config + self.maturity = self.getTestConfigMaturity( + self.metric_identifier + "-1" + ) # self.metric_tests.get(self.metric_identifier + '-1').metric_test_maturity_config return test_result def subtestDataTypeAndSizeGiven(self, test_data_content_url): test_result = False if test_data_content_url: data_object = self.fuji.content_identifier.get(test_data_content_url) - if data_object.get('claimed_type') and data_object.get('claimed_size'): + if data_object.get("claimed_type") and data_object.get("claimed_size"): test_result = True - self.setEvaluationCriteriumScore(self.metric_identifier + '-2a', 0, 'pass') + self.setEvaluationCriteriumScore(self.metric_identifier + "-2a", 0, "pass") self.logger.log( - self.fuji.LOG_SUCCESS, - self.metric_identifier + ' : Found file size and type specified in metadata') - elif not data_object.get('claimed_type'): - self.logger.warning('{0} : NO info about file type available in given metadata -: '.format( - self.metric_identifier)) + self.fuji.LOG_SUCCESS, self.metric_identifier + " : Found file size and type specified in metadata" + ) + elif not data_object.get("claimed_type"): + self.logger.warning( + "{0} : NO info about file type available in given metadata -: ".format(self.metric_identifier) + ) else: - self.logger.warning('{0} : NO info about file size available in given metadata -: '.format( - self.metric_identifier)) + self.logger.warning( + "{0} : NO info about file size available in given metadata -: ".format(self.metric_identifier) + ) return test_result def subtestMeasuredVariablesGiven(self): test_result = False - if self.fuji.metadata_merged.get('measured_variable'): + if self.fuji.metadata_merged.get("measured_variable"): test_result = True - self.setEvaluationCriteriumScore(self.metric_identifier + '-2b', 0, 'pass') + self.setEvaluationCriteriumScore(self.metric_identifier + "-2b", 0, "pass") self.logger.log( self.fuji.LOG_SUCCESS, - self.metric_identifier + ' : Found measured variables or observations (aka parameters) as content descriptor') + self.metric_identifier + + " : Found measured variables or observations (aka parameters) as content descriptor", + ) return test_result - def testVerifiableDataDescriptorsAvailable(self,test_data_content_url): + def testVerifiableDataDescriptorsAvailable(self, test_data_content_url): test_result = False - if self.isTestDefined(self.metric_identifier + '-2'): - test_score = self.getTestConfigScore(self.metric_identifier + '-2') + if self.isTestDefined(self.metric_identifier + "-2"): + test_score = self.getTestConfigScore(self.metric_identifier + "-2") if test_data_content_url: if self.subtestDataTypeAndSizeGiven(test_data_content_url): test_result = True @@ -130,29 +150,31 @@ def testVerifiableDataDescriptorsAvailable(self,test_data_content_url): test_result = True if test_result: self.score.earned += test_score - self.setEvaluationCriteriumScore(self.metric_identifier + '-2', test_score, 'pass') - self.maturity = self.metric_tests.get(self.metric_identifier + '-2').metric_test_maturity_config + self.setEvaluationCriteriumScore(self.metric_identifier + "-2", test_score, "pass") + self.maturity = self.metric_tests.get(self.metric_identifier + "-2").metric_test_maturity_config return test_result - def testSizeAndTypeMatchesMetadata(self,test_data_content_url): + def testSizeAndTypeMatchesMetadata(self, test_data_content_url): test_result = False size_matches = False type_matches = False - if self.isTestDefined(self.metric_identifier + '-3'): - test_score = self.getTestConfigScore(self.metric_identifier + '-3') + if self.isTestDefined(self.metric_identifier + "-3"): + test_score = self.getTestConfigScore(self.metric_identifier + "-3") data_object = self.fuji.content_identifier.get(test_data_content_url) - if data_object.get('claimed_type') and data_object.get('claimed_size'): - if not isinstance(data_object.get('tika_content_type'), list): - data_object['tika_content_type'] = [data_object.get('tika_content_type')] - if data_object.get('content_size') and data_object.get('claimed_size'): - if data_object.get('truncated') and data_object.get('header_content_size'): + if data_object.get("claimed_type") and data_object.get("claimed_size"): + if not isinstance(data_object.get("tika_content_type"), list): + data_object["tika_content_type"] = [data_object.get("tika_content_type")] + if data_object.get("content_size") and data_object.get("claimed_size"): + if data_object.get("truncated") and data_object.get("header_content_size"): self.logger.info( - '{0} : Since file was truncated will rely on content size given in HTTP header -: {1}' - .format(self.metric_identifier, str(data_object.get('header_content_size')))) - data_object['content_size'] = data_object.get('header_content_size') + "{0} : Since file was truncated will rely on content size given in HTTP header -: {1}".format( + self.metric_identifier, str(data_object.get("header_content_size")) + ) + ) + data_object["content_size"] = data_object.get("header_content_size") try: - if data_object.get('claimed_size'): - data_size = data_object.get('claimed_size') + if data_object.get("claimed_size"): + data_size = data_object.get("claimed_size") try: dsm = re.match(r"(\d+(?:\.\d+)?)\s*[A-Za-z]*", str(data_size)) if dsm[1]: @@ -160,114 +182,142 @@ def testSizeAndTypeMatchesMetadata(self,test_data_content_url): except: pass object_size = int(float(data_size)) - if object_size == int(float(data_object.get('content_size'))): + if object_size == int(float(data_object.get("content_size"))): size_matches = True self.logger.info( - '{0} : Sucessfully verified content size from downloaded file -: (expected: {1}, found: {2})' - .format(self.metric_identifier, str(data_object.get('claimed_size')), - str(data_object.get('content_size')))) + "{0} : Sucessfully verified content size from downloaded file -: (expected: {1}, found: {2})".format( + self.metric_identifier, + str(data_object.get("claimed_size")), + str(data_object.get("content_size")), + ) + ) else: self.logger.warning( - '{0} : Could not verify content size from downloaded file -: (expected: {1}, found: {2})' - .format(self.metric_identifier, str(data_object.get('claimed_size')), - str(data_object.get('content_size')))) + "{0} : Could not verify content size from downloaded file -: (expected: {1}, found: {2})".format( + self.metric_identifier, + str(data_object.get("claimed_size")), + str(data_object.get("content_size")), + ) + ) data_content_filesize_inner = DataContentMetadataOutputInner() - data_content_filesize_inner.descriptor = 'file size' - data_content_filesize_inner.descriptor_value = data_object.get('claimed_size') + data_content_filesize_inner.descriptor = "file size" + data_content_filesize_inner.descriptor_value = data_object.get("claimed_size") data_content_filesize_inner.matches_content = size_matches self.data_content_descriptors.append(data_content_filesize_inner) except Exception as e: self.logger.warning( - '{0} : Could not verify content size from downloaded file -: (expected: {1}, found: {2})' - .format(self.metric_identifier, str(data_object.get('claimed_size')), - str(data_object.get('content_size')))) + "{0} : Could not verify content size from downloaded file -: (expected: {1}, found: {2})".format( + self.metric_identifier, + str(data_object.get("claimed_size")), + str(data_object.get("content_size")), + ) + ) - if data_object.get('header_content_type') == data_object.get('claimed_type') \ - or data_object.get('claimed_type') in data_object.get('tika_content_type'): + if data_object.get("header_content_type") == data_object.get("claimed_type") or data_object.get( + "claimed_type" + ) in data_object.get("tika_content_type"): type_matches = True self.logger.info( - '{0} : Sucessfully verified content type from downloaded file -: (expected: {1}, found: via tika {2})' - .format(self.metric_identifier, data_object.get('claimed_type'), - str(data_object.get('tika_content_type'))+' or via header '+str(data_object.get('header_content_type')))) + "{0} : Sucessfully verified content type from downloaded file -: (expected: {1}, found: via tika {2})".format( + self.metric_identifier, + data_object.get("claimed_type"), + str(data_object.get("tika_content_type")) + + " or via header " + + str(data_object.get("header_content_type")), + ) + ) else: self.logger.warning( - '{0} : Could not verify content type from downloaded file -: (expected: {1}, found: via tika {2})' - .format(self.metric_identifier, data_object.get('claimed_type'), - str(data_object.get('tika_content_type'))+' or via header '+str(data_object.get('header_content_type')))) + "{0} : Could not verify content type from downloaded file -: (expected: {1}, found: via tika {2})".format( + self.metric_identifier, + data_object.get("claimed_type"), + str(data_object.get("tika_content_type")) + + " or via header " + + str(data_object.get("header_content_type")), + ) + ) data_content_filetype_inner = DataContentMetadataOutputInner() - data_content_filetype_inner.descriptor = 'file type' - data_content_filetype_inner.descriptor_value = data_object.get('claimed_type') + data_content_filetype_inner.descriptor = "file type" + data_content_filetype_inner.descriptor_value = data_object.get("claimed_type") data_content_filetype_inner.matches_content = type_matches self.data_content_descriptors.append(data_content_filetype_inner) if size_matches and type_matches: self.score.earned += test_score - self.setEvaluationCriteriumScore(self.metric_identifier + '-3', test_score, 'pass') - self.maturity = self.metric_tests.get(self.metric_identifier + '-3').metric_test_maturity_config + self.setEvaluationCriteriumScore(self.metric_identifier + "-3", test_score, "pass") + self.maturity = self.metric_tests.get(self.metric_identifier + "-3").metric_test_maturity_config test_result = True return test_result def testVariablesMatchMetadata(self, test_data_content_url): test_result = False - if self.isTestDefined(self.metric_identifier + '-4'): - test_score = self.getTestConfigScore(self.metric_identifier + '-4') + if self.isTestDefined(self.metric_identifier + "-4"): + test_score = self.getTestConfigScore(self.metric_identifier + "-4") test_data_object = self.fuji.content_identifier.get(test_data_content_url) if test_data_object: - if self.fuji.metadata_merged.get('measured_variable'): - if not test_data_object.get('test_data_content_text'): + if self.fuji.metadata_merged.get("measured_variable"): + if not test_data_object.get("test_data_content_text"): self.logger.warning( - self.metric_identifier+' : Could not verify measured variables found in data object content, content parsing failed' + self.metric_identifier + + " : Could not verify measured variables found in data object content, content parsing failed" ) - for variable in self.fuji.metadata_merged['measured_variable']: + for variable in self.fuji.metadata_merged["measured_variable"]: variable_match = False variable_metadata_inner = DataContentMetadataOutputInner() - variable_metadata_inner.descriptor = 'measured_variable' + variable_metadata_inner.descriptor = "measured_variable" variable_metadata_inner.descriptor_value = variable - if test_data_object.get('test_data_content_text'): - if variable in test_data_object.get('test_data_content_text'): + if test_data_object.get("test_data_content_text"): + if variable in test_data_object.get("test_data_content_text"): test_result = True variable_match = True - self.logger.log(self.fuji.LOG_SUCCESS, - self.metric_identifier+' : Found specified measured variable in data object content -: '+str(variable)) + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + + " : Found specified measured variable in data object content -: " + + str(variable), + ) variable_metadata_inner.matches_content = variable_match self.data_content_descriptors.append(variable_metadata_inner) else: self.logger.warning( - 'FsF-R1-01MD : NO measured variables found in metadata, skip \'measured_variable\' test.') + "FsF-R1-01MD : NO measured variables found in metadata, skip 'measured_variable' test." + ) if test_result: self.score.earned += test_score - self.setEvaluationCriteriumScore(self.metric_identifier + '-4', test_score, 'pass') - self.maturity = self.metric_tests.get( - self.metric_identifier + '-4').metric_test_maturity_config + self.setEvaluationCriteriumScore(self.metric_identifier + "-4", test_score, "pass") + self.maturity = self.metric_tests.get(self.metric_identifier + "-4").metric_test_maturity_config return test_result def evaluate(self): - self.result = DataContentMetadata(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) + self.result = DataContentMetadata( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) self.output = DataContentMetadataOutput() - test_status = 'fail' - self.logger.info(self.metric_identifier+' : Object landing page accessible status -: {}'.format( - self.fuji.isLandingPageAccessible)) + test_status = "fail" + self.logger.info( + self.metric_identifier + + " : Object landing page accessible status -: {}".format(self.fuji.isLandingPageAccessible) + ) if self.testMinimalInformationAboutDataContentAvailable(): - test_status = 'pass' + test_status = "pass" if isinstance(self.fuji.content_identifier, dict): if len(self.fuji.content_identifier) > 0: - verified_urls = [e for e,v in self.fuji.content_identifier.items() if v.get('verified')] + verified_urls = [e for e, v in self.fuji.content_identifier.items() if v.get("verified")] if verified_urls: test_data_content_url = verified_urls[0] else: test_data_content_url = list(self.fuji.content_identifier.keys())[0] if self.testVerifiableDataDescriptorsAvailable(test_data_content_url): - test_status = 'pass' + test_status = "pass" if self.testSizeAndTypeMatchesMetadata(test_data_content_url): - test_status = 'pass' + test_status = "pass" if self.testVariablesMatchMetadata(test_data_content_url): - test_status = 'pass' + test_status = "pass" else: self.logger.warning( - self.metric_identifier+' : NO data object content available/accessible to perform file descriptors (type and size) tests' + self.metric_identifier + + " : NO data object content available/accessible to perform file descriptors (type and size) tests" ) self.output.data_content_descriptor = self.data_content_descriptors diff --git a/fuji_server/evaluators/fair_evaluator_data_identifier_included.py b/fuji_server/evaluators/fair_evaluator_data_identifier_included.py index bdcd563c..fd45ce0d 100644 --- a/fuji_server/evaluators/fair_evaluator_data_identifier_included.py +++ b/fuji_server/evaluators/fair_evaluator_data_identifier_included.py @@ -23,6 +23,7 @@ # SOFTWARE. import enum import socket +import urllib import requests @@ -30,7 +31,6 @@ from fuji_server.models.identifier_included import IdentifierIncluded from fuji_server.models.identifier_included_output import IdentifierIncludedOutput from fuji_server.models.identifier_included_output_inner import IdentifierIncludedOutputInner -import urllib class FAIREvaluatorDataIdentifierIncluded(FAIREvaluator): @@ -48,96 +48,106 @@ class FAIREvaluatorDataIdentifierIncluded(FAIREvaluator): def __init__(self, fuji_instance): FAIREvaluator.__init__(self, fuji_instance) - self.set_metric('FsF-F3-01M') + self.set_metric("FsF-F3-01M") self.content_list = [] def testDataSizeTypeNameAvailable(self, datainfolist): test_result = False - if self.isTestDefined(self.metric_identifier + '-1'): - test_score = self.getTestConfigScore(self.metric_identifier + '-1') + if self.isTestDefined(self.metric_identifier + "-1"): + test_score = self.getTestConfigScore(self.metric_identifier + "-1") if datainfolist: for datainfo in datainfolist: if isinstance(datainfo, dict): - '''if datainfo.get('source'): - if isinstance(datainfo['source'], enum.Enum): - try: - datainfo['source'] = datainfo['source'].acronym() - except: - pass''' - if datainfo.get('type') or datainfo.get('size') or datainfo.get('url'): + """if datainfo.get('source'): + if isinstance(datainfo['source'], enum.Enum): + try: + datainfo['source'] = datainfo['source'].acronym() + except: + pass""" + if datainfo.get("type") or datainfo.get("size") or datainfo.get("url"): test_result = True - if isinstance(datainfo.get('source'),enum.Enum): - datainfo['source'] = datainfo.get('source').name - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score, 'pass') - self.maturity = self.metric_tests.get(self.metric_identifier + '-1').metric_test_maturity_config + if isinstance(datainfo.get("source"), enum.Enum): + datainfo["source"] = datainfo.get("source").name + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") + self.maturity = self.metric_tests.get( + self.metric_identifier + "-1" + ).metric_test_maturity_config did_output_content = IdentifierIncludedOutputInner() did_output_content.content_identifier_included = datainfo self.content_list.append(did_output_content) - #self.fuji.content_identifier.append(datainfo) + # self.fuji.content_identifier.append(datainfo) if test_result: self.score.earned += test_score return test_result def testDataUrlOrPIDAvailable(self, datainfolist): test_result = False - if self.isTestDefined(self.metric_identifier + '-2'): - test_score = self.getTestConfigScore(self.metric_identifier + '-2') + if self.isTestDefined(self.metric_identifier + "-2"): + test_score = self.getTestConfigScore(self.metric_identifier + "-2") if datainfolist: for datainfo in datainfolist: if isinstance(datainfo, dict): - if datainfo.get('url'): + if datainfo.get("url"): test_result = True - self.setEvaluationCriteriumScore(self.metric_identifier + '-2', test_score, 'pass') - self.maturity = self.metric_tests.get(self.metric_identifier + '-2').metric_test_maturity_config + self.setEvaluationCriteriumScore(self.metric_identifier + "-2", test_score, "pass") + self.maturity = self.metric_tests.get( + self.metric_identifier + "-2" + ).metric_test_maturity_config else: - self.logger.warning(self.metric_identifier +' : Object (content) url is empty -: {}'.format(datainfo)) + self.logger.warning( + self.metric_identifier + " : Object (content) url is empty -: {}".format(datainfo) + ) if test_result: self.score.earned += test_score return test_result def evaluate(self): - socket.setdefaulttimeout(1) - self.result = IdentifierIncluded(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) + self.result = IdentifierIncluded( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) self.output = IdentifierIncludedOutput() - #id_object = self.fuji.metadata_merged.get('object_identifier') - #self.output.object_identifier_included = id_object - contents = self.fuji.metadata_merged.get('object_content_identifier') - #if id_object is not None: + # id_object = self.fuji.metadata_merged.get('object_identifier') + # self.output.object_identifier_included = id_object + contents = self.fuji.metadata_merged.get("object_content_identifier") + # if id_object is not None: # self.logger.info('FsF-F3-01M : Object identifier specified -: {}'.format(id_object)) score = 0 content_list = [] if contents: - #print(contents) + # print(contents) if isinstance(contents, dict): contents = [contents] - #ignore empty? + # ignore empty? contents = [c for c in contents if c] - #keep unique only - - #contents = list({cv['url']:cv for cv in contents}.values()) - #print(contents) + # keep unique only - + # contents = list({cv['url']:cv for cv in contents}.values()) + # print(contents) number_of_contents = len(contents) if number_of_contents >= self.fuji.FILES_LIMIT: self.logger.info( - self.metric_identifier +' : The total number of object (content) identifiers specified is above threshold, will use the first -: {} content identifiers for the tests' - .format(self.fuji.FILES_LIMIT)) - contents = contents[:self.fuji.FILES_LIMIT] - self.result.test_status = 'fail' + self.metric_identifier + + " : The total number of object (content) identifiers specified is above threshold, will use the first -: {} content identifiers for the tests".format( + self.fuji.FILES_LIMIT + ) + ) + contents = contents[: self.fuji.FILES_LIMIT] + self.result.test_status = "fail" if self.testDataSizeTypeNameAvailable(contents): - self.result.test_status = 'pass' + self.result.test_status = "pass" if self.testDataUrlOrPIDAvailable(contents): - self.result.test_status = 'pass' + self.result.test_status = "pass" - if self.result.test_status == 'pass': - self.logger.log(self.fuji.LOG_SUCCESS, - self.metric_identifier +' : Number of object content identifier found -: {}'.format( - number_of_contents)) + if self.result.test_status == "pass": + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + + " : Number of object content identifier found -: {}".format(number_of_contents), + ) else: - self.logger.warning(self.metric_identifier +' : Valid data (content) identifier missing.') + self.logger.warning(self.metric_identifier + " : Valid data (content) identifier missing.") self.result.metric_tests = self.metric_tests self.output.object_content_identifier_included = self.content_list diff --git a/fuji_server/evaluators/fair_evaluator_data_provenance.py b/fuji_server/evaluators/fair_evaluator_data_provenance.py index 8113b71a..32a9e8a7 100644 --- a/fuji_server/evaluators/fair_evaluator_data_provenance.py +++ b/fuji_server/evaluators/fair_evaluator_data_provenance.py @@ -23,10 +23,10 @@ # SOFTWARE. from fuji_server.evaluators.fair_evaluator import FAIREvaluator +from fuji_server.helper.metadata_mapper import Mapper from fuji_server.models.data_provenance import DataProvenance from fuji_server.models.data_provenance_output import DataProvenanceOutput from fuji_server.models.data_provenance_output_inner import DataProvenanceOutputInner -from fuji_server.helper.metadata_mapper import Mapper class FAIREvaluatorDataProvenance(FAIREvaluator): @@ -46,65 +46,78 @@ class FAIREvaluatorDataProvenance(FAIREvaluator): def __init__(self, fuji_instance): FAIREvaluator.__init__(self, fuji_instance) - self.set_metric('FsF-R1.2-01M') - + self.set_metric("FsF-R1.2-01M") def testProvenanceMetadataAvailable(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-1'): - test_score = self.getTestConfigScore(self.metric_identifier + '-1') + if self.isTestDefined(self.metric_identifier + "-1"): + test_score = self.getTestConfigScore(self.metric_identifier + "-1") provenance_metadata_output = DataProvenanceOutputInner() provenance_metadata_output.provenance_metadata = [] provenance_metadata_output.is_available = False - self.logger.info(self.metric_identifier + ' : Check if provenance information is available in descriptive metadata') + self.logger.info( + self.metric_identifier + " : Check if provenance information is available in descriptive metadata" + ) for md in self.fuji.metadata_merged: if md in Mapper.PROVENANCE_MAPPING.value: provenance_metadata_output.is_available = True - provenance_metadata_output.provenance_metadata.append({ - 'prov_o_mapping': - Mapper.PROVENANCE_MAPPING.value.get(md), - 'metadata_element': - md, - 'metadata_value': - self.fuji.metadata_merged.get(md) - }) + provenance_metadata_output.provenance_metadata.append( + { + "prov_o_mapping": Mapper.PROVENANCE_MAPPING.value.get(md), + "metadata_element": md, + "metadata_value": self.fuji.metadata_merged.get(md), + } + ) - relateds = self.fuji.metadata_merged.get('related_resources') + relateds = self.fuji.metadata_merged.get("related_resources") self.logger.info( - self.metric_identifier + ' : Check if provenance information is available in metadata about related resources') + self.metric_identifier + + " : Check if provenance information is available in metadata about related resources" + ) if isinstance(relateds, list): for rm in relateds: - if rm.get('relation_type') in Mapper.PROVENANCE_MAPPING.value: - provenance_metadata_output.provenance_metadata.append({ - 'prov_o_mapping': - Mapper.PROVENANCE_MAPPING.value.get(rm.get('relation_type')), - 'metadata_element': - 'related.' + str(rm.get('relation_type')), - 'metadata_value': - rm.get('related_resource') - }) + if rm.get("relation_type") in Mapper.PROVENANCE_MAPPING.value: + provenance_metadata_output.provenance_metadata.append( + { + "prov_o_mapping": Mapper.PROVENANCE_MAPPING.value.get(rm.get("relation_type")), + "metadata_element": "related." + str(rm.get("relation_type")), + "metadata_value": rm.get("related_resource"), + } + ) else: - self.logger.warning(self.metric_identifier + ' : No provenance information found in metadata about related resources') + self.logger.warning( + self.metric_identifier + " : No provenance information found in metadata about related resources" + ) if provenance_metadata_output.is_available: test_status = True - self.logger.log(self.fuji.LOG_SUCCESS, self.metric_identifier + ' : Found data creation-related provenance information') - self.maturity = self.getTestConfigMaturity(self.metric_identifier + '-1') + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + " : Found data creation-related provenance information", + ) + self.maturity = self.getTestConfigMaturity(self.metric_identifier + "-1") self.score.earned = test_score - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score, 'pass') + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") self.output.provenance_metadata_included = provenance_metadata_output return test_status def testProvenanceStandardsUsed(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-2'): - test_score = self.getTestConfigScore(self.metric_identifier + '-2') - provenance_namespaces = ['http://www.w3.org/ns/prov','http://www.w3.org/ns/prov#', 'http://purl.org/pav/','http://purl.org/pav'] + if self.isTestDefined(self.metric_identifier + "-2"): + test_score = self.getTestConfigScore(self.metric_identifier + "-2") + provenance_namespaces = [ + "http://www.w3.org/ns/prov", + "http://www.w3.org/ns/prov#", + "http://purl.org/pav/", + "http://purl.org/pav", + ] # structured provenance metadata available structured_metadata_output = DataProvenanceOutputInner() structured_metadata_output.provenance_metadata = [] structured_metadata_output.is_available = False - self.logger.info(self.metric_identifier + ' : Check if provenance specific namespaces are listed in metadata') + self.logger.info( + self.metric_identifier + " : Check if provenance specific namespaces are listed in metadata" + ) used_provenance_namespace = list(set(provenance_namespaces).intersection(set(self.fuji.namespace_uri))) if used_provenance_namespace: @@ -112,27 +125,29 @@ def testProvenanceStandardsUsed(self): self.score.earned += test_score structured_metadata_output.is_available = True for used_prov_ns in used_provenance_namespace: - structured_metadata_output.provenance_metadata.append({'namespace': used_prov_ns}) - self.setEvaluationCriteriumScore(self.metric_identifier + '-2', test_score, 'pass') - self.maturity = self.getTestConfigMaturity(self.metric_identifier + '-2') - self.logger.log(self.fuji.LOG_SUCCESS, self.metric_identifier + ' : Found use of dedicated provenance ontologies') + structured_metadata_output.provenance_metadata.append({"namespace": used_prov_ns}) + self.setEvaluationCriteriumScore(self.metric_identifier + "-2", test_score, "pass") + self.maturity = self.getTestConfigMaturity(self.metric_identifier + "-2") + self.logger.log( + self.fuji.LOG_SUCCESS, self.metric_identifier + " : Found use of dedicated provenance ontologies" + ) else: - self.logger.warning(self.metric_identifier + ' : Formal provenance metadata is unavailable') + self.logger.warning(self.metric_identifier + " : Formal provenance metadata is unavailable") self.output.structured_provenance_available = structured_metadata_output return test_status def evaluate(self): - self.result = DataProvenance(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) + self.result = DataProvenance( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) self.output = DataProvenanceOutput() - provenance_status = 'fail' + provenance_status = "fail" if self.testProvenanceMetadataAvailable(): - provenance_status = 'pass' + provenance_status = "pass" if self.testProvenanceStandardsUsed(): - provenance_status = 'pass' - + provenance_status = "pass" + self.result.test_status = provenance_status self.result.metric_tests = self.metric_tests self.result.maturity = self.maturity diff --git a/fuji_server/evaluators/fair_evaluator_file_format.py b/fuji_server/evaluators/fair_evaluator_file_format.py index cc037afe..8e3b81bd 100644 --- a/fuji_server/evaluators/fair_evaluator_file_format.py +++ b/fuji_server/evaluators/fair_evaluator_file_format.py @@ -22,12 +22,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. +import mimetypes +import re + from fuji_server.evaluators.fair_evaluator import FAIREvaluator from fuji_server.models.data_file_format import DataFileFormat from fuji_server.models.data_file_format_output import DataFileFormatOutput from fuji_server.models.data_file_format_output_inner import DataFileFormatOutputInner -import mimetypes -import re class FAIREvaluatorFileFormat(FAIREvaluator): @@ -45,76 +46,91 @@ class FAIREvaluatorFileFormat(FAIREvaluator): def __init__(self, fuji_instance): FAIREvaluator.__init__(self, fuji_instance) - self.set_metric('FsF-R1.3-02D') - self.data_file_list=[] + self.set_metric("FsF-R1.3-02D") + self.data_file_list = [] def setFileFormatDict(self): if not self.fuji.content_identifier: # self.content_identifier only includes uris that are accessible - contents = self.fuji.metadata_merged.get('object_content_identifier') + contents = self.fuji.metadata_merged.get("object_content_identifier") unique_types = [] if contents: for c in contents: - if c.get('type'): - unique_types.append(c.get('type')) - self.logger.info('FsF-R1.3-02D : File format(s) specified -: {}'.format(list(set(unique_types)))) + if c.get("type"): + unique_types.append(c.get("type")) + self.logger.info("FsF-R1.3-02D : File format(s) specified -: {}".format(list(set(unique_types)))) mime_url_pair = {} if len(self.fuji.content_identifier) > 0: - content_urls = [item.get('url') for item in self.fuji.content_identifier.values()] - self.logger.info('FsF-R1.3-02D : Data content identifier provided -: {}'.format(content_urls)) - #self.maturity = 1 + content_urls = [item.get("url") for item in self.fuji.content_identifier.values()] + self.logger.info("FsF-R1.3-02D : Data content identifier provided -: {}".format(content_urls)) + # self.maturity = 1 preferred_detected = False for file_index, data_file in enumerate(self.fuji.content_identifier.values()): - mime_type = data_file.get('claimed_type') - if data_file.get('url') is not None: - if (mime_type is None or '/' not in mime_type) and data_file.get('header_content_type'): + mime_type = data_file.get("claimed_type") + if data_file.get("url") is not None: + if (mime_type is None or "/" not in mime_type) and data_file.get("header_content_type"): self.logger.info( - 'FsF-R1.3-02D : No mime type given in metadata, therefore the mime type given in HTTP header is used -: {}'.format( - data_file.get('header_content_type'))) - mime_type = data_file.get('header_content_type') - if mime_type is None or '/' not in mime_type or mime_type in ['application/octet-stream', 'binary/octet-stream']: + "FsF-R1.3-02D : No mime type given in metadata, therefore the mime type given in HTTP header is used -: {}".format( + data_file.get("header_content_type") + ) + ) + mime_type = data_file.get("header_content_type") + if ( + mime_type is None + or "/" not in mime_type + or mime_type in ["application/octet-stream", "binary/octet-stream"] + ): self.logger.info( - 'FsF-R1.3-02D : No mime type given in metadata, therefore guessing the type of a file based on its filename or URL -: {}'.format( - data_file.get('url'))) + "FsF-R1.3-02D : No mime type given in metadata, therefore guessing the type of a file based on its filename or URL -: {}".format( + data_file.get("url") + ) + ) # if mime type not given try to guess it based on the file name - guessed_mime_type = mimetypes.guess_type(data_file.get('url')) - self.logger.info('FsF-R1.3-02D : Guess return value -: {}'.format(guessed_mime_type)) - mime_type = guessed_mime_type[0] # the return value is a tuple (type, encoding) where type is None if the type can’t be guessed + guessed_mime_type = mimetypes.guess_type(data_file.get("url")) + self.logger.info("FsF-R1.3-02D : Guess return value -: {}".format(guessed_mime_type)) + mime_type = guessed_mime_type[ + 0 + ] # the return value is a tuple (type, encoding) where type is None if the type can’t be guessed if mime_type: - self.logger.info( - 'FsF-R1.3-02D : Found mime type in metadata -: ' + str(mime_type)) + self.logger.info("FsF-R1.3-02D : Found mime type in metadata -: " + str(mime_type)) valid_type = True - if data_file.get('tika_content_type'): - if mime_type not in data_file.get('tika_content_type'): + if data_file.get("tika_content_type"): + if mime_type not in data_file.get("tika_content_type"): valid_type = False if mime_type in self.fuji.ARCHIVE_MIMETYPES: # check archive&compress media type self.logger.info( - 'FsF-R1.3-02D : Archiving/compression format specified -: {}'.format(mime_type)) - if valid_type and data_file.get('tika_content_type'): + "FsF-R1.3-02D : Archiving/compression format specified -: {}".format(mime_type) + ) + if valid_type and data_file.get("tika_content_type"): # exclude archive format - #if file_index == len(self.fuji.content_identifier) - 1: - data_file['tika_content_type'] = [ - n for n in data_file.get('tika_content_type') + # if file_index == len(self.fuji.content_identifier) - 1: + data_file["tika_content_type"] = [ + n + for n in data_file.get("tika_content_type") if n not in self.fuji.ARCHIVE_MIMETYPES ] self.logger.info( - 'FsF-R1.3-02D : Extracted file formats for selected data object (see FsF-R1-01MD) -: {}' - .format(data_file.get('tika_content_type'))) - for t in data_file.get('tika_content_type'): - mime_url_pair[t] = data_file.get('url') + "FsF-R1.3-02D : Extracted file formats for selected data object (see FsF-R1-01MD) -: {}".format( + data_file.get("tika_content_type") + ) + ) + for t in data_file.get("tika_content_type"): + mime_url_pair[t] = data_file.get("url") else: self.logger.warning( - 'FsF-R1.3-02D : Content type not verified during FsF-R1-01MD, assuming login page or similar instead of -: {}' - .format(mime_type)) + "FsF-R1.3-02D : Content type not verified during FsF-R1-01MD, assuming login page or similar instead of -: {}".format( + mime_type + ) + ) else: - mime_url_pair[mime_type] = data_file.get('url') - if data_file.get('tika_content_type'): - #add tika detected mimes - for tika_mime in data_file.get('tika_content_type'): + mime_url_pair[mime_type] = data_file.get("url") + if data_file.get("tika_content_type"): + # add tika detected mimes + for tika_mime in data_file.get("tika_content_type"): if valid_type and tika_mime not in mime_url_pair: - mime_url_pair[tika_mime] = data_file.get('url') + mime_url_pair[tika_mime] = data_file.get("url") return mime_url_pair def testCommunityFileFormatUsed(self, mime_url_pair): @@ -122,62 +138,63 @@ def testCommunityFileFormatUsed(self, mime_url_pair): # check if format is a scientific one: preferred_mimetype = None data_file_list = [] - text_format_regex = r'(^text)[\/]|[\/\+](xml|text|json)' + text_format_regex = r"(^text)[\/]|[\/\+](xml|text|json)" test_status = False - if self.isTestDefined(self.metric_identifier + '-1'): - test_score = self.getTestConfigScore(self.metric_identifier + '-1') + if self.isTestDefined(self.metric_identifier + "-1"): + test_score = self.getTestConfigScore(self.metric_identifier + "-1") if mime_url_pair: for mimetype, url in mime_url_pair.items(): data_file_output = DataFileFormatOutputInner() preferance_reason = [] subject_area = [] if mimetype in self.fuji.SCIENCE_FILE_FORMATS: - self.setEvaluationCriteriumScore('FsF-R1.3-02D-1c', 0, 'pass') - if self.maturity < self.getTestConfigMaturity('FsF-R1.3-02D-1c'): - self.maturity = self.getTestConfigMaturity('FsF-R1.3-02D-1c') - if self.fuji.SCIENCE_FILE_FORMATS.get(mimetype) == 'Generic': - subject_area.append('General') - preferance_reason.append('generic science format') + self.setEvaluationCriteriumScore("FsF-R1.3-02D-1c", 0, "pass") + if self.maturity < self.getTestConfigMaturity("FsF-R1.3-02D-1c"): + self.maturity = self.getTestConfigMaturity("FsF-R1.3-02D-1c") + if self.fuji.SCIENCE_FILE_FORMATS.get(mimetype) == "Generic": + subject_area.append("General") + preferance_reason.append("generic science format") else: subject_area.append(self.fuji.SCIENCE_FILE_FORMATS.get(mimetype)) - preferance_reason.append('science format') + preferance_reason.append("science format") test_status = data_file_output.is_preferred_format = True # check if long term format if mimetype in self.fuji.LONG_TERM_FILE_FORMATS: - self.setEvaluationCriteriumScore('FsF-R1.3-02D-1b', 0, 'pass') - if self.maturity < self.getTestConfigMaturity('FsF-R1.3-02D-1b'): - self.maturity = self.getTestConfigMaturity('FsF-R1.3-02D-1b') - preferance_reason.append('long term format') - subject_area.append('General') + self.setEvaluationCriteriumScore("FsF-R1.3-02D-1b", 0, "pass") + if self.maturity < self.getTestConfigMaturity("FsF-R1.3-02D-1b"): + self.maturity = self.getTestConfigMaturity("FsF-R1.3-02D-1b") + preferance_reason.append("long term format") + subject_area.append("General") test_status = data_file_output.is_preferred_format = True # check if open format if mimetype in self.fuji.OPEN_FILE_FORMATS: - self.setEvaluationCriteriumScore('FsF-R1.3-02D-1a', 0, 'pass') - if self.maturity < self.getTestConfigMaturity('FsF-R1.3-02D-1a'): - self.maturity = self.getTestConfigMaturity('FsF-R1.3-02D-1a') - preferance_reason.append('open format') - subject_area.append('General') + self.setEvaluationCriteriumScore("FsF-R1.3-02D-1a", 0, "pass") + if self.maturity < self.getTestConfigMaturity("FsF-R1.3-02D-1a"): + self.maturity = self.getTestConfigMaturity("FsF-R1.3-02D-1a") + preferance_reason.append("open format") + subject_area.append("General") test_status = data_file_output.is_preferred_format = True # generic text/xml/json file check - if 'html' not in mimetype and re.search(text_format_regex, mimetype): - self.setEvaluationCriteriumScore('FsF-R1.3-02D-1a', 0, 'pass') - self.setEvaluationCriteriumScore('FsF-R1.3-02D-1b', 0, 'pass') - self.setEvaluationCriteriumScore('FsF-R1.3-02D-1c', 0, 'fail') - self.maturity = self.getTestConfigMaturity('FsF-R1.3-02D-1b') - preferance_reason.extend(['long term format', 'open format', 'generic science format']) - subject_area.append('General') + if "html" not in mimetype and re.search(text_format_regex, mimetype): + self.setEvaluationCriteriumScore("FsF-R1.3-02D-1a", 0, "pass") + self.setEvaluationCriteriumScore("FsF-R1.3-02D-1b", 0, "pass") + self.setEvaluationCriteriumScore("FsF-R1.3-02D-1c", 0, "fail") + self.maturity = self.getTestConfigMaturity("FsF-R1.3-02D-1b") + preferance_reason.extend(["long term format", "open format", "generic science format"]) + subject_area.append("General") test_status = data_file_output.is_preferred_format = True - if 'html' in mimetype: + if "html" in mimetype: preferance_reason = [] if preferance_reason: preferred_mimetype = mimetype self.logger.log( self.fuji.LOG_SUCCESS, - 'FsF-R1.3-02D : Could identify a file format commonly used by the scientific community -:' + - str(preferred_mimetype)) + "FsF-R1.3-02D : Could identify a file format commonly used by the scientific community -:" + + str(preferred_mimetype), + ) data_file_output.mime_type = mimetype data_file_output.file_uri = url data_file_output.preference_reason = list(set(preferance_reason)) @@ -185,23 +202,22 @@ def testCommunityFileFormatUsed(self, mime_url_pair): self.data_file_list.append(data_file_output) if test_status: self.score.earned = test_score - self.setEvaluationCriteriumScore('FsF-R1.3-02D-1', test_score, 'pass') + self.setEvaluationCriteriumScore("FsF-R1.3-02D-1", test_score, "pass") return test_status def evaluate(self): - - self.result = DataFileFormat(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) + self.result = DataFileFormat( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) self.output = DataFileFormatOutput() mime_url_dict = self.setFileFormatDict() if self.testCommunityFileFormatUsed(mime_url_dict): - self.result.test_status = 'pass' + self.result.test_status = "pass" else: self.logger.warning( - 'FsF-R1.3-02D : Could not perform file format checks as data content identifier(s) unavailable/inaccesible' + "FsF-R1.3-02D : Could not perform file format checks as data content identifier(s) unavailable/inaccesible" ) - self.result.test_status = 'fail' + self.result.test_status = "fail" self.output = self.data_file_list self.result.output = self.output diff --git a/fuji_server/evaluators/fair_evaluator_formal_metadata.py b/fuji_server/evaluators/fair_evaluator_formal_metadata.py index 1e2a876a..eb01fac2 100644 --- a/fuji_server/evaluators/fair_evaluator_formal_metadata.py +++ b/fuji_server/evaluators/fair_evaluator_formal_metadata.py @@ -41,42 +41,57 @@ class FAIREvaluatorFormalMetadata(FAIREvaluator): This method will evaluate whether the metadata is parsable and has a structured data embedded in the landing page or formal metadata, e.g., RDF, JSON-LD, is accessible. """ + def __init__(self, fuji_instance): FAIREvaluator.__init__(self, fuji_instance) - self.set_metric('FsF-I1-01M') + self.set_metric("FsF-I1-01M") self.outputs = [] def testEmbeddedStructuredMetadataAvailable(self): # 1. light-weight check (structured_data), expected keys from extruct ['json-ld','rdfa'] test_status = False - if self.isTestDefined(self.metric_identifier + '-1'): - test_score = self.getTestConfigScore(self.metric_identifier + '-1') - self.logger.info('{0} : Check of structured data (RDF serialization) embedded in the data page'.format( - self.metric_identifier)) + if self.isTestDefined(self.metric_identifier + "-1"): + test_score = self.getTestConfigScore(self.metric_identifier + "-1") + self.logger.info( + "{0} : Check of structured data (RDF serialization) embedded in the data page".format( + self.metric_identifier + ) + ) if MetadataSources.SCHEMAORG_EMBEDDED.name in dict(self.fuji.metadata_sources): self.outputs.append( - FormalMetadataOutputInner(serialization_format='JSON-LD', - source='structured_data', - is_metadata_found=True)) - self.logger.info('{0} : JSON-LD (schema.org) serialization found in the data page - {1}'.format( - self.metric_identifier, 'JSON-LD')) + FormalMetadataOutputInner( + serialization_format="JSON-LD", source="structured_data", is_metadata_found=True + ) + ) + self.logger.info( + "{0} : JSON-LD (schema.org) serialization found in the data page - {1}".format( + self.metric_identifier, "JSON-LD" + ) + ) if MetadataSources.RDFA_EMBEDDED.name in dict(self.fuji.metadata_sources): self.outputs.append( - FormalMetadataOutputInner(serialization_format='RDFa', source='structured_data', - is_metadata_found=True)) - self.logger.info('{0} : RDFa serialization found in the data page - {1}'.format( - self.metric_identifier, 'RDFa')) + FormalMetadataOutputInner( + serialization_format="RDFa", source="structured_data", is_metadata_found=True + ) + ) + self.logger.info( + "{0} : RDFa serialization found in the data page - {1}".format(self.metric_identifier, "RDFa") + ) if len(self.outputs) == 0: - self.logger.info('{0} : NO structured data (RDF serialization) embedded in the data page'.format( - self.metric_identifier)) + self.logger.info( + "{0} : NO structured data (RDF serialization) embedded in the data page".format( + self.metric_identifier + ) + ) else: self.logger.log( self.fuji.LOG_SUCCESS, - '{0} : Found structured data (RDF serialization) in the data page'.format(self.metric_identifier)) + "{0} : Found structured data (RDF serialization) in the data page".format(self.metric_identifier), + ) self.score.earned += test_score - self.maturity = self.getTestConfigMaturity(self.metric_identifier + '-1') - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score, 'pass') + self.maturity = self.getTestConfigMaturity(self.metric_identifier + "-1") + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") return test_status @@ -84,47 +99,62 @@ def testExternalStructuredMetadataAvailable(self): # 2. hard check (typed-link, content negotiate, sparql endpoint) # 2a. in the object page, you may find a test_status = False - if self.isTestDefined(self.metric_identifier + '-2'): - test_score = self.getTestConfigScore(self.metric_identifier + '-2') - self.logger.info('{0} : Check if RDF-based typed link included'.format(self.metric_identifier)) - if MetadataSources.RDF_TYPED_LINKS.name in dict(self.fuji.metadata_sources) or MetadataSources.RDF_SIGNPOSTING_LINKS.name in dict(self.fuji.metadata_sources): - self.logger.info('{0} : RDF graph retrieved via typed link, content type - {1}'.format( - self.metric_identifier, 'RDF')) + if self.isTestDefined(self.metric_identifier + "-2"): + test_score = self.getTestConfigScore(self.metric_identifier + "-2") + self.logger.info("{0} : Check if RDF-based typed link included".format(self.metric_identifier)) + if MetadataSources.RDF_TYPED_LINKS.name in dict( + self.fuji.metadata_sources + ) or MetadataSources.RDF_SIGNPOSTING_LINKS.name in dict(self.fuji.metadata_sources): + self.logger.info( + "{0} : RDF graph retrieved via typed link, content type - {1}".format(self.metric_identifier, "RDF") + ) self.outputs.append( - FormalMetadataOutputInner(serialization_format='RDF', source='typed_link', is_metadata_found=True)) + FormalMetadataOutputInner(serialization_format="RDF", source="typed_link", is_metadata_found=True) + ) test_status = True else: - self.logger.info('{0} : NO RDF-based typed link found'.format(self.metric_identifier)) + self.logger.info("{0} : NO RDF-based typed link found".format(self.metric_identifier)) # 2b.content negotiate - self.logger.info('{0} : Check if RDF metadata available through content negotiation'.format( - self.metric_identifier)) + self.logger.info( + "{0} : Check if RDF metadata available through content negotiation".format(self.metric_identifier) + ) if MetadataSources.SCHEMAORG_NEGOTIATED.name in dict(self.fuji.metadata_sources): - self.logger.info('{0} : JSON-LD graph retrieved through content negotiation, content type - {1}'.format( - self.metric_identifier, 'JSON-LD')) + self.logger.info( + "{0} : JSON-LD graph retrieved through content negotiation, content type - {1}".format( + self.metric_identifier, "JSON-LD" + ) + ) self.outputs.append( - FormalMetadataOutputInner(serialization_format='JSON-LD', - source='content_negotiate', - is_metadata_found=True)) + FormalMetadataOutputInner( + serialization_format="JSON-LD", source="content_negotiate", is_metadata_found=True + ) + ) test_status = True if MetadataSources.RDF_NEGOTIATED.name in dict(self.fuji.metadata_sources): - self.logger.info('{0} : RDF graph retrieved through content negotiation, content type - {1}'.format( - self.metric_identifier, 'RDF')) + self.logger.info( + "{0} : RDF graph retrieved through content negotiation, content type - {1}".format( + self.metric_identifier, "RDF" + ) + ) self.outputs.append( - FormalMetadataOutputInner(serialization_format='RDF', - source='content_negotiate', - is_metadata_found=True)) + FormalMetadataOutputInner( + serialization_format="RDF", source="content_negotiate", is_metadata_found=True + ) + ) test_status = True if test_status: self.logger.log( self.fuji.LOG_SUCCESS, - '{0} : Found RDF content through content negotiation or typed links'.format(self.metric_identifier)) + "{0} : Found RDF content through content negotiation or typed links".format(self.metric_identifier), + ) else: - self.logger.info('{0} : NO RDF metadata available through content negotiation'.format( - self.metric_identifier)) - # 2c. try to retrieve via sparql endpoint (if available) + self.logger.info( + "{0} : NO RDF metadata available through content negotiation".format(self.metric_identifier) + ) + # 2c. try to retrieve via sparql endpoint (if available) # self.logger.info('{0} : Check if SPARQL endpoint is available'.format(formal_meta_identifier)) # self.sparql_endpoint = 'http://data.archaeologydataservice.ac.uk/sparql/repositories/archives' #test endpoint # self.sparql_endpoint = 'http://data.archaeologydataservice.ac.uk/query/' #test web sparql form @@ -132,58 +162,63 @@ def testExternalStructuredMetadataAvailable(self): # self.sparql_endpoint = 'https://meta.icos-cp.eu/sparqlclient/' #test endpoint # self.pid_url = 'https://meta.icos-cp.eu/objects/9ri1elaogsTv9LQFLNTfDNXm' #test uri if self.fuji.sparql_endpoint: - self.logger.info('{0} : SPARQL endpoint found -: {1}'.format(self.metric_identifier, - self.fuji.sparql_endpoint)) - sparql_provider = SPARQLMetadataProvider(endpoint=self.fuji.sparql_endpoint, - logger=self.logger, - metric_id=self.metric_identifier) + self.logger.info( + "{0} : SPARQL endpoint found -: {1}".format(self.metric_identifier, self.fuji.sparql_endpoint) + ) + sparql_provider = SPARQLMetadataProvider( + endpoint=self.fuji.sparql_endpoint, logger=self.logger, metric_id=self.metric_identifier + ) if self.fuji.pid_url == None: url_to_sparql = self.fuji.landing_url else: url_to_sparql = self.fuji.pid_url - query = 'DESCRIBE <' + str(url_to_sparql) + '>' + query = "DESCRIBE <" + str(url_to_sparql) + ">" # query = "CONSTRUCT {{?dataURI ?property ?value}} where {{ VALUES ?dataURI {{ <"+str(url_to_sparql)+"> }} ?dataURI ?property ?value }}" - self.logger.info('{0} : Executing SPARQL -: {1}'.format(self.metric_identifier, query)) + self.logger.info("{0} : Executing SPARQL -: {1}".format(self.metric_identifier, query)) rdfgraph, contenttype = sparql_provider.getMetadata(query) if rdfgraph: self.outputs.append( - FormalMetadataOutputInner(serialization_format=contenttype, - source='sparql_endpoint', - is_metadata_found=True)) - self.logger.log(self.fuji.LOG_SUCCESS, - '{0} : Found RDF content through SPARQL endpoint'.format( - self.metric_identifier)) - self.setEvaluationCriteriumScore('FsF-I1-01M-2', 1, 'pass') + FormalMetadataOutputInner( + serialization_format=contenttype, source="sparql_endpoint", is_metadata_found=True + ) + ) + self.logger.log( + self.fuji.LOG_SUCCESS, + "{0} : Found RDF content through SPARQL endpoint".format(self.metric_identifier), + ) + self.setEvaluationCriteriumScore("FsF-I1-01M-2", 1, "pass") self.fuji.namespace_uri.extend(sparql_provider.getNamespaces()) else: - self.logger.warning('{0} : NO RDF metadata retrieved through the sparql endpoint'.format( - self.metric_identifier)) + self.logger.warning( + "{0} : NO RDF metadata retrieved through the sparql endpoint".format(self.metric_identifier) + ) else: self.logger.warning( - '{0} : NO SPARQL endpoint found through re3data based on the object URI provided'.format( - self.metric_identifier)) + "{0} : NO SPARQL endpoint found through re3data based on the object URI provided".format( + self.metric_identifier + ) + ) if test_status: - self.score.earned += self.getTestConfigScore(self.metric_identifier + '-2') - self.maturity = self.getTestConfigMaturity(self.metric_identifier + '-2') - self.setEvaluationCriteriumScore(self.metric_identifier + '-2',test_score, 'pass') + self.score.earned += self.getTestConfigScore(self.metric_identifier + "-2") + self.maturity = self.getTestConfigMaturity(self.metric_identifier + "-2") + self.setEvaluationCriteriumScore(self.metric_identifier + "-2", test_score, "pass") return test_status def evaluate(self): - self.result = FormalMetadata(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) - + self.result = FormalMetadata( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) score = 0 - test_status = 'fail' + test_status = "fail" # note: 'source' allowed values = ["typed_link", "content_negotiate", "structured_data", "sparql_endpoint"] if self.testEmbeddedStructuredMetadataAvailable(): - test_status = 'pass' + test_status = "pass" if self.testExternalStructuredMetadataAvailable(): - test_status = 'pass' + test_status = "pass" self.result.test_status = test_status self.result.metric_tests = self.metric_tests self.result.score = self.score diff --git a/fuji_server/evaluators/fair_evaluator_license.py b/fuji_server/evaluators/fair_evaluator_license.py index e0136b7c..ecbf37f7 100644 --- a/fuji_server/evaluators/fair_evaluator_license.py +++ b/fuji_server/evaluators/fair_evaluator_license.py @@ -25,11 +25,12 @@ import re import urllib.parse +import idutils import Levenshtein + from fuji_server.evaluators.fair_evaluator import FAIREvaluator from fuji_server.models.license import License from fuji_server.models.license_output_inner import LicenseOutputInner -import idutils class FAIREvaluatorLicense(FAIREvaluator): @@ -48,14 +49,14 @@ class FAIREvaluatorLicense(FAIREvaluator): def __init__(self, fuji_instance): FAIREvaluator.__init__(self, fuji_instance) - self.set_metric('FsF-R1.1-01M') + self.set_metric("FsF-R1.1-01M") - self.output=[] - self.license_info =[] + self.output = [] + self.license_info = [] def setLicenseDataAndOutput(self): self.license_info = [] - specified_licenses = self.fuji.metadata_merged.get('license') + specified_licenses = self.fuji.metadata_merged.get("license") if isinstance(specified_licenses, str): # licenses maybe string or list depending on metadata schemas specified_licenses = [specified_licenses] if specified_licenses is not None and specified_licenses != []: @@ -78,38 +79,53 @@ def setLicenseDataAndOutput(self): license_output.details_url = spdx_uri license_output.osi_approved = spdx_osi self.output.append((license_output)) - self.license_info.append({'license':l, 'id': spdx_id, 'is_url': isurl, 'spdx_uri':spdx_uri , 'osi_approved':spdx_osi, 'valid':licence_valid}) + self.license_info.append( + { + "license": l, + "id": spdx_id, + "is_url": isurl, + "spdx_uri": spdx_uri, + "osi_approved": spdx_osi, + "valid": licence_valid, + } + ) if not spdx_uri: - self.logger.warning('{0} : NO SPDX license representation (spdx url, osi_approved) found'.format( - self.metric_identifier)) + self.logger.warning( + "{0} : NO SPDX license representation (spdx url, osi_approved) found".format( + self.metric_identifier + ) + ) else: test_status = True self.logger.log( self.fuji.LOG_SUCCESS, - '{0} : Found SPDX license representation (spdx url, osi_approved)'.format( - self.metric_identifier)) + "{0} : Found SPDX license representation (spdx url, osi_approved)".format( + self.metric_identifier + ), + ) - - def isCreativeCommonsLicense(self,license_url, metric_id): + def isCreativeCommonsLicense(self, license_url, metric_id): iscc = False genericcc = None try: - if 'creativecommons.org/publicdomain/' in license_url: + if "creativecommons.org/publicdomain/" in license_url: iscc = True - self.logger.info('{0} : Found CreativeCommons Public Domain Mark or License -: {1}'.format(metric_id, license_url)) - genericcc = 'CC0-1.0' + self.logger.info( + "{0} : Found CreativeCommons Public Domain Mark or License -: {1}".format(metric_id, license_url) + ) + genericcc = "CC0-1.0" else: - #https://wiki.creativecommons.org/wiki/License_Properties - ccregex= r'https?://creativecommons\.org/licenses/(by(-nc)?(-nd)?(-sa)?)/(1\.0|2\.0|2\.5|3\.0|4\.0)' + # https://wiki.creativecommons.org/wiki/License_Properties + ccregex = r"https?://creativecommons\.org/licenses/(by(-nc)?(-nd)?(-sa)?)/(1\.0|2\.0|2\.5|3\.0|4\.0)" ccmatch = re.match(ccregex, license_url) if ccmatch: - self.logger.info('{0} : Found CreativeCommons license -: {1}'.format(metric_id, license_url)) + self.logger.info("{0} : Found CreativeCommons license -: {1}".format(metric_id, license_url)) genericcc = ccmatch[0] iscc = True else: - iscc = False + iscc = False except Exception as e: - iscc = False + iscc = False return iscc, genericcc def isLicense(self, value, metric_id): @@ -130,24 +146,24 @@ def isLicense(self, value, metric_id): return islicense def lookup_license_by_url(self, u, metric_id): - self.logger.info('{0} : Verify URL through SPDX registry -: {1}'.format(metric_id, u)) + self.logger.info("{0} : Verify URL through SPDX registry -: {1}".format(metric_id, u)) html_url = None isOsiApproved = False id = None ul = None - if 'spdx.org/licenses' in u: - ul = u.split('/')[-1] + if "spdx.org/licenses" in u: + ul = u.split("/")[-1] for item in self.fuji.SPDX_LICENSES: # u = u.lower() # if any(u in v.lower() for v in item.values()): - licenseId = item.get('licenseId') - seeAlso = item.get('seeAlso') + licenseId = item.get("licenseId") + seeAlso = item.get("seeAlso") if any(u in v for v in seeAlso) or licenseId == ul: - self.logger.info('{0} : Found SPDX license representation -: {1}'.format(metric_id, item['detailsUrl'])) + self.logger.info("{0} : Found SPDX license representation -: {1}".format(metric_id, item["detailsUrl"])) # html_url = '.html'.join(item['detailsUrl'].rsplit('.json', 1)) - html_url = item['detailsUrl'].replace('.json', '.html') - isOsiApproved = item['isOsiApproved'] - id = item['licenseId'] + html_url = item["detailsUrl"].replace(".json", ".html") + isOsiApproved = item["isOsiApproved"] + id = item["licenseId"] break return html_url, isOsiApproved, id @@ -156,93 +172,100 @@ def lookup_license_by_name(self, lvalue, metric_id): html_url = None isOsiApproved = False id = None - self.logger.info('{0} : License verification name through SPDX registry -: {1}'.format(metric_id, lvalue)) + self.logger.info("{0} : License verification name through SPDX registry -: {1}".format(metric_id, lvalue)) # Levenshtein distance similarity ratio between two license name if lvalue: sim = [Levenshtein.ratio(lvalue.lower(), i) for i in self.fuji.SPDX_LICENSE_NAMES] if max(sim) > 0.85: index_max = max(range(len(sim)), key=sim.__getitem__) sim_license = self.fuji.SPDX_LICENSE_NAMES[index_max] - found = next((item for item in self.fuji.SPDX_LICENSES if item['name'] == sim_license), None) - self.logger.info('{0}: Found SPDX license representation -: {1}'.format(metric_id, found['detailsUrl'])) + found = next((item for item in self.fuji.SPDX_LICENSES if item["name"] == sim_license), None) + self.logger.info("{0}: Found SPDX license representation -: {1}".format(metric_id, found["detailsUrl"])) # html_url = '.html'.join(found['detailsUrl'].rsplit('.json', 1)) - html_url = found['detailsUrl'].replace('.json', '.html') - isOsiApproved = found['isOsiApproved'] - id = found['licenseId'] + html_url = found["detailsUrl"].replace(".json", ".html") + isOsiApproved = found["isOsiApproved"] + id = found["licenseId"] return html_url, isOsiApproved, id def testLicenseMetadataElementAvailable(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-1'): - test_score = self.getTestConfigScore(self.metric_identifier + '-1') - if self.license_info is not None and self.license_info != []: + if self.isTestDefined(self.metric_identifier + "-1"): + test_score = self.getTestConfigScore(self.metric_identifier + "-1") + if self.license_info is not None and self.license_info != []: test_status = True - self.logger.log(self.fuji.LOG_SUCCESS, - '{0} : Found licence information in metadata'.format(self.metric_identifier)) - self.maturity = self.getTestConfigMaturity(self.metric_identifier + '-1') - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score, 'pass') + self.logger.log( + self.fuji.LOG_SUCCESS, "{0} : Found licence information in metadata".format(self.metric_identifier) + ) + self.maturity = self.getTestConfigMaturity(self.metric_identifier + "-1") + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") self.score.earned += test_score else: - self.logger.warning('{0} : License information unavailable in metadata'.format(self.metric_identifier)) + self.logger.warning("{0} : License information unavailable in metadata".format(self.metric_identifier)) return test_status def testLicenseIsValidAndSPDXRegistered(self): test_status = False test_requirements = {} - if self.isTestDefined(self.metric_identifier + '-2'): - if self.metric_tests[self.metric_identifier + '-2'].metric_test_requirements: - test_requirements = self.metric_tests[self.metric_identifier + '-2'].metric_test_requirements[0] - test_score = self.getTestConfigScore(self.metric_identifier + '-2') + if self.isTestDefined(self.metric_identifier + "-2"): + if self.metric_tests[self.metric_identifier + "-2"].metric_test_requirements: + test_requirements = self.metric_tests[self.metric_identifier + "-2"].metric_test_requirements[0] + test_score = self.getTestConfigScore(self.metric_identifier + "-2") test_required = [] - if test_requirements.get('required'): - - if isinstance(test_requirements.get('required'), list): - test_required = test_requirements.get('required') - elif test_requirements.get('required').get('name'): - test_required = test_requirements.get('required').get('name') + if test_requirements.get("required"): + if isinstance(test_requirements.get("required"), list): + test_required = test_requirements.get("required") + elif test_requirements.get("required").get("name"): + test_required = test_requirements.get("required").get("name") if not isinstance(test_required, list): test_required = [test_required] self.logger.info( - '{0} : Will exclusively consider community specific licenses for {0}{1} which are specified in metrics -: {2}'.format( - self.metric_identifier, '-2', test_requirements.get('required'))) + "{0} : Will exclusively consider community specific licenses for {0}{1} which are specified in metrics -: {2}".format( + self.metric_identifier, "-2", test_requirements.get("required") + ) + ) else: self.logger.info( - '{0} : Will consider all SPDX licenses as community specific licenses for {0} '.format( - self.metric_identifier, '-2')) + "{0} : Will consider all SPDX licenses as community specific licenses for {0} ".format( + self.metric_identifier, "-2" + ) + ) if self.license_info: for l in self.license_info: if test_required: for rq_license_id in test_required: - if l.get('id'): - if fnmatch.fnmatch(l.get('id'), rq_license_id): + if l.get("id"): + if fnmatch.fnmatch(l.get("id"), rq_license_id): test_status = True else: - if l.get('valid'): + if l.get("valid"): test_status = True else: - self.logger.warning('{0} : Skipping SPDX and community license verification since license information unavailable in metadata'.format(self.metric_identifier)) + self.logger.warning( + "{0} : Skipping SPDX and community license verification since license information unavailable in metadata".format( + self.metric_identifier + ) + ) if test_status: - self.maturity = self.getTestConfigMaturity(self.metric_identifier + '-2') + self.maturity = self.getTestConfigMaturity(self.metric_identifier + "-2") self.score.earned += test_score - self.setEvaluationCriteriumScore(self.metric_identifier + '-2', test_score, 'pass') + self.setEvaluationCriteriumScore(self.metric_identifier + "-2", test_score, "pass") return test_status def evaluate(self): - self.setLicenseDataAndOutput() - self.result = License(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) + self.result = License( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) - license_status = 'fail' + license_status = "fail" if self.testLicenseMetadataElementAvailable(): - license_status = 'pass' + license_status = "pass" if self.testLicenseIsValidAndSPDXRegistered(): - license_status = 'pass' + license_status = "pass" self.result.test_status = license_status self.result.output = self.output diff --git a/fuji_server/evaluators/fair_evaluator_metadata_identifier_included.py b/fuji_server/evaluators/fair_evaluator_metadata_identifier_included.py index 1c072d23..2cbe1a31 100644 --- a/fuji_server/evaluators/fair_evaluator_metadata_identifier_included.py +++ b/fuji_server/evaluators/fair_evaluator_metadata_identifier_included.py @@ -23,6 +23,7 @@ # SOFTWARE. import enum import socket +import urllib import requests @@ -30,7 +31,6 @@ from fuji_server.models.identifier_included import IdentifierIncluded from fuji_server.models.identifier_included_output import IdentifierIncludedOutput from fuji_server.models.identifier_included_output_inner import IdentifierIncludedOutputInner -import urllib class FAIREvaluatorMetadataIdentifierIncluded(FAIREvaluator): @@ -48,21 +48,20 @@ class FAIREvaluatorMetadataIdentifierIncluded(FAIREvaluator): def __init__(self, fuji_instance): FAIREvaluator.__init__(self, fuji_instance) - self.set_metric('FsF-F3-02M') + self.set_metric("FsF-F3-02M") self.content_list = [] - def testMetadataUrlOrPIDAvailable(self, datainfolist): test_result = False object_identifier = [] - if self.isTestDefined(self.metric_identifier + '-1'): - test_score = self.getTestConfigScore(self.metric_identifier + '-1') + if self.isTestDefined(self.metric_identifier + "-1"): + test_score = self.getTestConfigScore(self.metric_identifier + "-1") if datainfolist: for datainfo in datainfolist: if isinstance(datainfo, dict): - method = datainfo.get('method') - if datainfo.get('metadata'): - object_identifier = datainfo['metadata'].get('object_identifier') + method = datainfo.get("method") + if datainfo.get("metadata"): + object_identifier = datainfo["metadata"].get("object_identifier") if isinstance(object_identifier, str): object_identifier = [object_identifier] if object_identifier: @@ -71,33 +70,36 @@ def testMetadataUrlOrPIDAvailable(self, datainfolist): test_result = True self.content_list.append(oid) self.logger.info( - self.metric_identifier + ' : Found metadata identifier in metadata -: {} via {}'.format( - oid, method)) + self.metric_identifier + + " : Found metadata identifier in metadata -: {} via {}".format(oid, method) + ) if test_result: - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score, 'pass') - self.maturity = self.metric_tests.get(self.metric_identifier + '-1').metric_test_maturity_config + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") + self.maturity = self.metric_tests.get(self.metric_identifier + "-1").metric_test_maturity_config self.score.earned += test_score return test_result def evaluate(self): - number_of_contents=0 - self.result = IdentifierIncluded(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) + number_of_contents = 0 + self.result = IdentifierIncluded( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) self.output = IdentifierIncludedOutput() contents = self.fuji.metadata_unmerged - #print(self.fuji.metadata_unmerged) - self.result.test_status = 'fail' + # print(self.fuji.metadata_unmerged) + self.result.test_status = "fail" if self.testMetadataUrlOrPIDAvailable(contents): - self.result.test_status = 'pass' + self.result.test_status = "pass" - if self.result.test_status == 'pass': - self.logger.log(self.fuji.LOG_SUCCESS, - self.metric_identifier +' : Number of object content identifier found -: {}'.format( - number_of_contents)) + if self.result.test_status == "pass": + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + + " : Number of object content identifier found -: {}".format(number_of_contents), + ) else: - self.logger.warning(self.metric_identifier +' : Valid data (content) identifier missing.') + self.logger.warning(self.metric_identifier + " : Valid data (content) identifier missing.") self.result.metric_tests = self.metric_tests self.output.object_content_identifier_included = self.content_list diff --git a/fuji_server/evaluators/fair_evaluator_metadata_preservation.py b/fuji_server/evaluators/fair_evaluator_metadata_preservation.py index 381a7f17..21121962 100644 --- a/fuji_server/evaluators/fair_evaluator_metadata_preservation.py +++ b/fuji_server/evaluators/fair_evaluator_metadata_preservation.py @@ -40,25 +40,27 @@ class FAIREvaluatorMetadataPreserved(FAIREvaluator): """ def evaluate(self): - registry_bound_pid = ['doi'] - self.result = MetadataPreserved(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) + registry_bound_pid = ["doi"] + self.result = MetadataPreserved( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) outputs = [] - test_status = 'fail' + test_status = "fail" score = 0 if self.fuji.pid_scheme: if self.fuji.pid_scheme in registry_bound_pid: - test_status = 'pass' - outputs.append(MetadataPreservedOutput(metadata_preservation_method='datacite')) + test_status = "pass" + outputs.append(MetadataPreservedOutput(metadata_preservation_method="datacite")) score = 1 - self.setEvaluationCriteriumScore('FsF-A2-01M-1', 1, 'pass') + self.setEvaluationCriteriumScore("FsF-A2-01M-1", 1, "pass") self.maturity = 3 self.logger.log( - self.fuji.LOG_SUCCESS, '{0} : Metadata registry bound PID system used: ' + - self.fuji.pid_scheme.format(self.metric_identifier)) + self.fuji.LOG_SUCCESS, + "{0} : Metadata registry bound PID system used: " + + self.fuji.pid_scheme.format(self.metric_identifier), + ) else: - self.logger.warning('{0} : NO metadata registry bound PID system used'.format(self.metric_identifier)) + self.logger.warning("{0} : NO metadata registry bound PID system used".format(self.metric_identifier)) self.score.earned = score self.result.score = self.score self.result.output = outputs diff --git a/fuji_server/evaluators/fair_evaluator_minimal_metadata.py b/fuji_server/evaluators/fair_evaluator_minimal_metadata.py index 7d616273..69c5e236 100644 --- a/fuji_server/evaluators/fair_evaluator_minimal_metadata.py +++ b/fuji_server/evaluators/fair_evaluator_minimal_metadata.py @@ -22,11 +22,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -from fuji_server.models.core_metadata_output import CoreMetadataOutput -from fuji_server.models.core_metadata import CoreMetadata from fuji_server.evaluators.fair_evaluator import FAIREvaluator -from fuji_server.helper.metadata_mapper import Mapper from fuji_server.helper.metadata_collector import MetadataOfferingMethods +from fuji_server.helper.metadata_mapper import Mapper +from fuji_server.models.core_metadata import CoreMetadata +from fuji_server.models.core_metadata_output import CoreMetadataOutput class FAIREvaluatorCoreMetadata(FAIREvaluator): @@ -44,37 +44,51 @@ class FAIREvaluatorCoreMetadata(FAIREvaluator): def __init__(self, fuji_instance): FAIREvaluator.__init__(self, fuji_instance) - self.set_metric('FsF-F2-01M') + self.set_metric("FsF-F2-01M") self.metadata_found = {} # this list is following the recommendation of DataCite see: Fenner et al 2019 and Starr & Gastl, 2011 - self.partial_elements = ['creator', 'title', 'object_identifier', 'publication_date', 'publisher', 'object_type'] + self.partial_elements = [ + "creator", + "title", + "object_identifier", + "publication_date", + "publisher", + "object_type", + ] self.required_metadata_properties = Mapper.REQUIRED_CORE_METADATA.value def testMetadataCommonMethodsAvailable(self): - #implements FsF-F2-01M-1 - if self.isTestDefined('FsF-F2-01M-1'): - test_score = self.metric_tests.get('FsF-F2-01M-1').metric_test_score_config + # implements FsF-F2-01M-1 + if self.isTestDefined("FsF-F2-01M-1"): + test_score = self.metric_tests.get("FsF-F2-01M-1").metric_test_score_config if len(self.metadata_found) >= 1: - self.logger.info('FsF-F2-01M : Found some descriptive metadata elements -: ' + - str(self.metadata_found.keys())) - self.setEvaluationCriteriumScore('FsF-F2-01M-1', test_score, 'pass') + self.logger.info( + "FsF-F2-01M : Found some descriptive metadata elements -: " + str(self.metadata_found.keys()) + ) + self.setEvaluationCriteriumScore("FsF-F2-01M-1", test_score, "pass") source_mechanisms = dict((y, x) for x, y in list(set(self.fuji.metadata_sources))) for source_mechanism in source_mechanisms: - if source_mechanism in [MetadataOfferingMethods.MICRODATA_RDFA, MetadataOfferingMethods.HTML_EMBEDDING]: - self.setEvaluationCriteriumScore('FsF-F2-01M-1a', 0, 'pass') + if source_mechanism in [ + MetadataOfferingMethods.MICRODATA_RDFA, + MetadataOfferingMethods.HTML_EMBEDDING, + ]: + self.setEvaluationCriteriumScore("FsF-F2-01M-1a", 0, "pass") if source_mechanism == MetadataOfferingMethods.CONTENT_NEGOTIATION: - self.setEvaluationCriteriumScore('FsF-F2-01M-1b', 0, 'pass') + self.setEvaluationCriteriumScore("FsF-F2-01M-1b", 0, "pass") if source_mechanism == MetadataOfferingMethods.TYPED_LINKS: - self.setEvaluationCriteriumScore('FsF-F2-01M-1c', 0, 'pass') + self.setEvaluationCriteriumScore("FsF-F2-01M-1c", 0, "pass") if source_mechanism == MetadataOfferingMethods.SIGNPOSTING: - self.setEvaluationCriteriumScore('FsF-F2-01M-1d', 0, 'pass') - self.maturity = self.metric_tests.get('FsF-F2-01M-1').metric_test_maturity_config + self.setEvaluationCriteriumScore("FsF-F2-01M-1d", 0, "pass") + self.maturity = self.metric_tests.get("FsF-F2-01M-1").metric_test_maturity_config self.score.earned = test_score partial_missing = list(set(self.partial_elements) - set(self.metadata_found)) if partial_missing: - self.logger.warning(self.metric_identifier+' : Not all required citation metadata elements exist, missing -: ' + - str(partial_missing)) + self.logger.warning( + self.metric_identifier + + " : Not all required citation metadata elements exist, missing -: " + + str(partial_missing) + ) return True else: @@ -82,51 +96,63 @@ def testMetadataCommonMethodsAvailable(self): def testCoreDescriptiveMetadataAvailable(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-3'): - test_requirements = self.metric_tests[self.metric_identifier + '-3'].metric_test_requirements[0] + if self.isTestDefined(self.metric_identifier + "-3"): + test_requirements = self.metric_tests[self.metric_identifier + "-3"].metric_test_requirements[0] if test_requirements: - test_required=[] - if test_requirements.get('required'): - if isinstance(test_requirements.get('required'), list): - test_required = test_requirements.get('required') - elif test_requirements.get('required').get('name'): - test_required = test_requirements.get('required').get('name') + test_required = [] + if test_requirements.get("required"): + if isinstance(test_requirements.get("required"), list): + test_required = test_requirements.get("required") + elif test_requirements.get("required").get("name"): + test_required = test_requirements.get("required").get("name") if not isinstance(test_required, list): test_required = [test_required] self.logger.info( - '{0} : Will exclusively consider community specific metadata properties which are specified in metrics -: {1}'.format( - self.metric_identifier, test_requirements.get('required'))) - self.required_metadata_properties =[] + "{0} : Will exclusively consider community specific metadata properties which are specified in metrics -: {1}".format( + self.metric_identifier, test_requirements.get("required") + ) + ) + self.required_metadata_properties = [] for rq_prop in test_required: if rq_prop in Mapper.REFERENCE_METADATA_LIST.value: self.required_metadata_properties.append(rq_prop) - test_score = self.getTestConfigScore(self.metric_identifier + '-3') - if set(self.metadata_found) & set(self.required_metadata_properties) == set(self.required_metadata_properties): + test_score = self.getTestConfigScore(self.metric_identifier + "-3") + if set(self.metadata_found) & set(self.required_metadata_properties) == set( + self.required_metadata_properties + ): self.logger.log( self.fuji.LOG_SUCCESS, - self.metric_identifier+' : Found required core descriptive metadata elements -: {}'.format(self.required_metadata_properties)) - self.maturity = self.metric_tests.get(self.metric_identifier + '-3').metric_test_maturity_config + self.metric_identifier + + " : Found required core descriptive metadata elements -: {}".format( + self.required_metadata_properties + ), + ) + self.maturity = self.metric_tests.get(self.metric_identifier + "-3").metric_test_maturity_config self.score.earned = self.total_score - self.setEvaluationCriteriumScore(self.metric_identifier + '-3', test_score, 'pass') + self.setEvaluationCriteriumScore(self.metric_identifier + "-3", test_score, "pass") test_status = True else: core_missing = list(set(self.required_metadata_properties) - set(self.metadata_found)) self.logger.warning( - self.metric_identifier+' : Not all required core descriptive metadata elements exist, missing -: {}'.format( - str(core_missing))) + self.metric_identifier + + " : Not all required core descriptive metadata elements exist, missing -: {}".format( + str(core_missing) + ) + ) return test_status - def testCoreCitationMetadataAvailable(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-2'): - test_score = self.getTestConfigScore(self.metric_identifier + '-2') + if self.isTestDefined(self.metric_identifier + "-2"): + test_score = self.getTestConfigScore(self.metric_identifier + "-2") if set(self.partial_elements).issubset(self.metadata_found): self.logger.log( self.fuji.LOG_SUCCESS, - self.metric_identifier+' : Found required core citation metadata elements -: {}'.format(self.partial_elements)) - self.maturity = self.metric_tests.get(self.metric_identifier + '-2').metric_test_maturity_config - self.setEvaluationCriteriumScore(self.metric_identifier + '-2', test_score, 'pass') + self.metric_identifier + + " : Found required core citation metadata elements -: {}".format(self.partial_elements), + ) + self.maturity = self.metric_tests.get(self.metric_identifier + "-2").metric_test_maturity_config + self.setEvaluationCriteriumScore(self.metric_identifier + "-2", test_score, "pass") self.score.earned = self.score.earned + test_score test_status = True return test_status @@ -134,32 +160,38 @@ def testCoreCitationMetadataAvailable(self): def evaluate(self): if self.fuji.landing_url is None: self.logger.warning( - self.metric_identifier+' : Metadata checks probably unreliable: landing page URL could not be determined') - self.result = CoreMetadata(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) - - test_status = 'fail' - metadata_status = 'insufficient metadata' - self.metadata_found = {k: v for k, v in self.fuji.metadata_merged.items() if k in Mapper.REFERENCE_METADATA_LIST.value} + self.metric_identifier + + " : Metadata checks probably unreliable: landing page URL could not be determined" + ) + self.result = CoreMetadata( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) + + test_status = "fail" + metadata_status = "insufficient metadata" + self.metadata_found = { + k: v for k, v in self.fuji.metadata_merged.items() if k in Mapper.REFERENCE_METADATA_LIST.value + } self.logger.info( - self.metric_identifier+' : Testing if any metadata has been made available via common web standards') + self.metric_identifier + " : Testing if any metadata has been made available via common web standards" + ) if self.testMetadataCommonMethodsAvailable(): - test_status = 'pass' - metadata_status = 'some metadata' + test_status = "pass" + metadata_status = "some metadata" if self.testCoreCitationMetadataAvailable(): - test_status = 'pass' - metadata_status = 'partial metadata' + test_status = "pass" + metadata_status = "partial metadata" if self.testCoreDescriptiveMetadataAvailable(): - test_status = 'pass' - metadata_status = 'all metadata' + test_status = "pass" + metadata_status = "all metadata" output_sources = [] for oi, os in list(set(self.fuji.metadata_sources)): output_sources.append((oi, os.acronym())) - self.output = CoreMetadataOutput(core_metadata_status=metadata_status, - core_metadata_source=output_sources) + self.output = CoreMetadataOutput(core_metadata_status=metadata_status, core_metadata_source=output_sources) - self.output.core_metadata_found = {k: v for k, v in self.metadata_found.items() if k in self.required_metadata_properties} + self.output.core_metadata_found = { + k: v for k, v in self.metadata_found.items() if k in self.required_metadata_properties + } self.result.test_status = test_status self.result.metric_tests = self.metric_tests diff --git a/fuji_server/evaluators/fair_evaluator_persistent_identifier_data.py b/fuji_server/evaluators/fair_evaluator_persistent_identifier_data.py index e99ff86b..4a3746e7 100644 --- a/fuji_server/evaluators/fair_evaluator_persistent_identifier_data.py +++ b/fuji_server/evaluators/fair_evaluator_persistent_identifier_data.py @@ -21,18 +21,20 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. +import re +from urllib.parse import urlparse + import requests +from bs4 import BeautifulSoup from tldextract import extract from fuji_server import Persistence, PersistenceOutput -from fuji_server.models.persistence_output_inner import PersistenceOutputInner from fuji_server.evaluators.fair_evaluator import FAIREvaluator from fuji_server.helper.identifier_helper import IdentifierHelper from fuji_server.helper.metadata_mapper import Mapper -from fuji_server.helper.request_helper import RequestHelper, AcceptTypes -from urllib.parse import urlparse -import re -from bs4 import BeautifulSoup +from fuji_server.helper.request_helper import AcceptTypes, RequestHelper +from fuji_server.models.persistence_output_inner import PersistenceOutputInner + class FAIREvaluatorPersistentIdentifierData(FAIREvaluator): """ @@ -46,79 +48,83 @@ class FAIREvaluatorPersistentIdentifierData(FAIREvaluator): the identifier is web-accesible, i.e., it resolves to a landing page with metadata of the data object. """ - def __init__(self, fuji_instance): self.pids_which_resolve = {} FAIREvaluator.__init__(self, fuji_instance) - self.set_metric('FsF-F1-02DD') + self.set_metric("FsF-F1-02DD") def setPidsOutput(self): self.output.persistent_identifiers = [] for pid_info in self.fuji.content_identifier.values(): - if pid_info.get('is_persistent'): + if pid_info.get("is_persistent"): output_inner = PersistenceOutputInner() - output_inner.pid = pid_info.get('url') - output_inner.pid_scheme = pid_info.get('scheme') - if pid_info.get('resolved_url'): + output_inner.pid = pid_info.get("url") + output_inner.pid_scheme = pid_info.get("scheme") + if pid_info.get("resolved_url"): output_inner.resolvable_status = True - output_inner.resolved_url = pid_info.get('resolved_url') + output_inner.resolved_url = pid_info.get("resolved_url") self.output.persistent_identifiers.append(output_inner) def testCompliesWithPIDScheme(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-1'): - test_score = self.getTestConfigScore(self.metric_identifier + '-1') + if self.isTestDefined(self.metric_identifier + "-1"): + test_score = self.getTestConfigScore(self.metric_identifier + "-1") for pid_info in self.fuji.content_identifier.values(): - #if pid_info.get('verified'): - if pid_info.get('is_persistent') : + # if pid_info.get('verified'): + if pid_info.get("is_persistent"): test_status = True if test_status: - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score, 'pass') + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") self.score.earned = test_score - self.maturity = self.metric_tests.get(self.metric_identifier + '-1').metric_test_maturity_config + self.maturity = self.metric_tests.get(self.metric_identifier + "-1").metric_test_maturity_config test_status = True return test_status def testIfLandingPageResolves(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-2'): - test_score = self.getTestConfigScore(self.metric_identifier + '-2') + if self.isTestDefined(self.metric_identifier + "-2"): + test_score = self.getTestConfigScore(self.metric_identifier + "-2") for pid_info in self.fuji.content_identifier.values(): - if pid_info.get('is_persistent'): - if pid_info.get('resolved_url'): + if pid_info.get("is_persistent"): + if pid_info.get("resolved_url"): test_status = True - self.logger.info(self.metric_identifier + ' : Found PID which could be verified (does resolve properly) -: ' + str(pid_info.get('url'))) + self.logger.info( + self.metric_identifier + + " : Found PID which could be verified (does resolve properly) -: " + + str(pid_info.get("url")) + ) break else: self.logger.info( - self.metric_identifier + ' : Found PID pointing to data which could not be verified (does not resolve properly) -: ' + str( - pid_info.get('url'))) + self.metric_identifier + + " : Found PID pointing to data which could not be verified (does not resolve properly) -: " + + str(pid_info.get("url")) + ) if test_status: - self.setEvaluationCriteriumScore(self.metric_identifier + '-2', test_score, 'pass') - self.maturity = self.metric_tests.get(self.metric_identifier + '-2').metric_test_maturity_config + self.setEvaluationCriteriumScore(self.metric_identifier + "-2", test_score, "pass") + self.maturity = self.metric_tests.get(self.metric_identifier + "-2").metric_test_maturity_config self.score.earned = self.total_score # idenfier should be based on a persistence scheme and resolvable - self.logger.log(self.fuji.LOG_SUCCESS, - self.metric_identifier + ' : Persistence identifier scheme for data identifier -: {}'.format(self.fuji.pid_scheme)) + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + + " : Persistence identifier scheme for data identifier -: {}".format(self.fuji.pid_scheme), + ) return test_status - def evaluate(self): - self.result = Persistence(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) + self.result = Persistence( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) self.output = PersistenceOutput() # ======= CHECK IDENTIFIER PERSISTENCE ======= - self.result.test_status = 'fail' + self.result.test_status = "fail" self.setPidsOutput() if self.testCompliesWithPIDScheme(): - self.result.test_status = 'pass' + self.result.test_status = "pass" if self.testIfLandingPageResolves(): - self.result.test_status = 'pass' + self.result.test_status = "pass" self.result.score = self.score self.result.maturity = self.maturity self.result.metric_tests = self.metric_tests self.result.output = self.output - - - diff --git a/fuji_server/evaluators/fair_evaluator_persistent_identifier_metadata.py b/fuji_server/evaluators/fair_evaluator_persistent_identifier_metadata.py index ed5c030b..6f397266 100644 --- a/fuji_server/evaluators/fair_evaluator_persistent_identifier_metadata.py +++ b/fuji_server/evaluators/fair_evaluator_persistent_identifier_metadata.py @@ -21,18 +21,20 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. +import re +from urllib.parse import urlparse + import requests +from bs4 import BeautifulSoup from tldextract import extract from fuji_server import Persistence, PersistenceOutput -from fuji_server.models.persistence_output_inner import PersistenceOutputInner from fuji_server.evaluators.fair_evaluator import FAIREvaluator from fuji_server.helper.identifier_helper import IdentifierHelper from fuji_server.helper.metadata_mapper import Mapper -from fuji_server.helper.request_helper import RequestHelper, AcceptTypes -from urllib.parse import urlparse -import re -from bs4 import BeautifulSoup +from fuji_server.helper.request_helper import AcceptTypes, RequestHelper +from fuji_server.models.persistence_output_inner import PersistenceOutputInner + class FAIREvaluatorPersistentIdentifierMetadata(FAIREvaluator): """ @@ -46,96 +48,103 @@ class FAIREvaluatorPersistentIdentifierMetadata(FAIREvaluator): the identifier is web-accesible, i.e., it resolves to a landing page with metadata of the data object. """ - def __init__(self, fuji_instance): self.pids_which_resolve = {} FAIREvaluator.__init__(self, fuji_instance) - if self.fuji.metric_helper.get_metric_version() != '0.5': - metric = 'FsF-F1-02M' + if self.fuji.metric_helper.get_metric_version() != "0.5": + metric = "FsF-F1-02M" else: - metric = 'FsF-F1-02D' + metric = "FsF-F1-02D" self.set_metric(metric) def setPidsOutput(self): self.output.persistent_identifiers = [] for pid, pid_info in self.fuji.pid_collector.items(): - if pid_info.get('is_persistent'): + if pid_info.get("is_persistent"): output_inner = PersistenceOutputInner() - output_inner.pid = pid_info.get('pid') - output_inner.pid_scheme = pid_info.get('scheme') - if pid_info.get('resolved_url'): + output_inner.pid = pid_info.get("pid") + output_inner.pid_scheme = pid_info.get("scheme") + if pid_info.get("resolved_url"): output_inner.resolvable_status = True - output_inner.resolved_url = pid_info.get('resolved_url') + output_inner.resolved_url = pid_info.get("resolved_url") self.output.persistent_identifiers.append(output_inner) def testCompliesWithPIDScheme(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-1'): - test_score = self.getTestConfigScore(self.metric_identifier + '-1') + if self.isTestDefined(self.metric_identifier + "-1"): + test_score = self.getTestConfigScore(self.metric_identifier + "-1") for pid, pid_info in self.fuji.pid_collector.items(): - if pid_info.get('verified'): - if pid_info.get('is_persistent') : + if pid_info.get("verified"): + if pid_info.get("is_persistent"): test_status = True else: self.logger.warning( - self.metric_identifier + ' : Skipping PID syntax test since the PID seems to resolve to a different entity') + self.metric_identifier + + " : Skipping PID syntax test since the PID seems to resolve to a different entity" + ) if test_status: - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score, 'pass') + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") self.score.earned = test_score - self.maturity = self.metric_tests.get(self.metric_identifier + '-1').metric_test_maturity_config + self.maturity = self.metric_tests.get(self.metric_identifier + "-1").metric_test_maturity_config test_status = True return test_status def testIfLandingPageResolves(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-2'): - test_score = self.getTestConfigScore(self.metric_identifier + '-2') + if self.isTestDefined(self.metric_identifier + "-2"): + test_score = self.getTestConfigScore(self.metric_identifier + "-2") for pid, pid_info in self.fuji.pid_collector.items(): - if pid_info.get('verified') or not self.fuji.verify_pids: - if pid_info.get('resolved_url'): + if pid_info.get("verified") or not self.fuji.verify_pids: + if pid_info.get("resolved_url"): self.fuji.isLandingPageAccessible = True - self.logger.info(self.metric_identifier + ' : Found PID which could be verified (does resolve properly) -: ' + str(pid)) + self.logger.info( + self.metric_identifier + + " : Found PID which could be verified (does resolve properly) -: " + + str(pid) + ) else: self.logger.info( - self.metric_identifier + ' : Found PID which could not be verified (does not resolve properly) -: ' + str( - pid)) + self.metric_identifier + + " : Found PID which could not be verified (does not resolve properly) -: " + + str(pid) + ) if self.fuji.isLandingPageAccessible: test_status = True - self.setEvaluationCriteriumScore(self.metric_identifier + '-2', test_score, 'pass') - self.maturity = self.metric_tests.get(self.metric_identifier + '-2').metric_test_maturity_config + self.setEvaluationCriteriumScore(self.metric_identifier + "-2", test_score, "pass") + self.maturity = self.metric_tests.get(self.metric_identifier + "-2").metric_test_maturity_config self.score.earned = self.total_score # idenfier should be based on a persistence scheme and resolvable - self.logger.log(self.fuji.LOG_SUCCESS, - self.metric_identifier + ' : Persistence identifier scheme -: {}'.format(self.fuji.pid_scheme)) + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + " : Persistence identifier scheme -: {}".format(self.fuji.pid_scheme), + ) return test_status - def evaluate(self): - self.result = Persistence(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) + self.result = Persistence( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) self.output = PersistenceOutput() # ======= CHECK IDENTIFIER PERSISTENCE ======= - self.logger.info(self.metric_identifier + ' : PID schemes-based assessment supported by the assessment service - {}'.format( - IdentifierHelper.VALID_PIDS.keys())) - - self.result.test_status = 'fail' + self.logger.info( + self.metric_identifier + + " : PID schemes-based assessment supported by the assessment service - {}".format( + IdentifierHelper.VALID_PIDS.keys() + ) + ) + + self.result.test_status = "fail" self.setPidsOutput() if self.testCompliesWithPIDScheme(): - self.result.test_status = 'pass' + self.result.test_status = "pass" if self.testIfLandingPageResolves(): - self.result.test_status = 'pass' + self.result.test_status = "pass" - '''else: + """else: self.score.earned = 0 - self.logger.warning(self.metric_identifier + ' : Could not identify a valid peristent identifier based on scheme and resolution')''' - - + self.logger.warning(self.metric_identifier + ' : Could not identify a valid peristent identifier based on scheme and resolution')""" self.result.score = self.score self.result.maturity = self.maturity self.result.metric_tests = self.metric_tests self.result.output = self.output - - - diff --git a/fuji_server/evaluators/fair_evaluator_related_resources.py b/fuji_server/evaluators/fair_evaluator_related_resources.py index e4778133..3dc0e5e5 100644 --- a/fuji_server/evaluators/fair_evaluator_related_resources.py +++ b/fuji_server/evaluators/fair_evaluator_related_resources.py @@ -40,54 +40,59 @@ class FAIREvaluatorRelatedResources(FAIREvaluator): This method will evaluate the links between metadata whether they relate explicitly in metadata and they relate by machine-readable links/identifier. """ + def __init__(self, fuji_instance): FAIREvaluator.__init__(self, fuji_instance) - self.set_metric('FsF-I3-01M') + self.set_metric("FsF-I3-01M") self.is_actionable = False def testRelatedResourcesAvailable(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-1'): - test_score = self.getTestConfigScore(self.metric_identifier + '-1') + if self.isTestDefined(self.metric_identifier + "-1"): + test_score = self.getTestConfigScore(self.metric_identifier + "-1") if self.fuji.related_resources: - self.logger.log(self.fuji.LOG_SUCCESS, - self.metric_identifier + ' : Number of related resources found in metadata -: '+str(len(self.fuji.related_resources))) + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + + " : Number of related resources found in metadata -: " + + str(len(self.fuji.related_resources)), + ) test_status = True self.output = self.fuji.related_resources - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score, 'pass') + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") self.score.earned = self.total_score - self.maturity = self.getTestConfigMaturity(self.metric_identifier + '-1') + self.maturity = self.getTestConfigMaturity(self.metric_identifier + "-1") else: - self.logger.warning(self.metric_identifier + ' : Could not identify related resources in metadata') + self.logger.warning(self.metric_identifier + " : Could not identify related resources in metadata") return test_status def testRelatedResourcesMachineReadable(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-2'): - test_score = self.getTestConfigScore(self.metric_identifier + '-2') + if self.isTestDefined(self.metric_identifier + "-2"): + test_score = self.getTestConfigScore(self.metric_identifier + "-2") if self.fuji.related_resources: for relation in self.fuji.related_resources: - if isinstance(relation.get('related_resource'), list): - relation['related_resource'] = relation.get('related_resource')[0] - relation_identifier = IdentifierHelper(relation.get('related_resource')) - if relation_identifier.is_persistent or 'url' in relation_identifier.identifier_schemes: + if isinstance(relation.get("related_resource"), list): + relation["related_resource"] = relation.get("related_resource")[0] + relation_identifier = IdentifierHelper(relation.get("related_resource")) + if relation_identifier.is_persistent or "url" in relation_identifier.identifier_schemes: test_status = True if test_status: self.score.earned = self.total_score - self.setEvaluationCriteriumScore(self.metric_identifier + '-2', test_score, 'pass') - self.maturity = self.getTestConfigMaturity(self.metric_identifier + '-2') + self.setEvaluationCriteriumScore(self.metric_identifier + "-2", test_score, "pass") + self.maturity = self.getTestConfigMaturity(self.metric_identifier + "-2") return test_status def evaluate(self): - self.result = RelatedResource(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) + self.result = RelatedResource( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) self.output = RelatedResourceOutput() # if self.metadata_merged.get('related_resources'): - related_status = 'fail' + related_status = "fail" if self.testRelatedResourcesAvailable(): - related_status = 'pass' + related_status = "pass" self.testRelatedResourcesMachineReadable() self.result.metric_tests = self.metric_tests self.result.test_status = related_status diff --git a/fuji_server/evaluators/fair_evaluator_searchable.py b/fuji_server/evaluators/fair_evaluator_searchable.py index 41a63c36..3497f004 100644 --- a/fuji_server/evaluators/fair_evaluator_searchable.py +++ b/fuji_server/evaluators/fair_evaluator_searchable.py @@ -22,18 +22,19 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. +from typing import Any, List + from fuji_server import OutputSearchMechanisms from fuji_server.evaluators.fair_evaluator import FAIREvaluator from fuji_server.evaluators.fair_evaluator_community_metadata import FAIREvaluatorCommunityMetadata +from fuji_server.helper.catalogue_helper import MetaDataCatalogue from fuji_server.helper.catalogue_helper_datacite import MetaDataCatalogueDataCite from fuji_server.helper.catalogue_helper_google_datasearch import MetaDataCatalogueGoogleDataSearch from fuji_server.helper.catalogue_helper_mendeley_data import MetaDataCatalogueMendeleyData from fuji_server.helper.identifier_helper import IdentifierHelper +from fuji_server.helper.metadata_collector import MetaDataCollector, MetadataOfferingMethods, MetadataSources from fuji_server.models.searchable import Searchable from fuji_server.models.searchable_output import SearchableOutput -from fuji_server.helper.metadata_collector import MetaDataCollector, MetadataSources, MetadataOfferingMethods -from fuji_server.helper.catalogue_helper import MetaDataCatalogue -from typing import List, Any class FAIREvaluatorSearchable(FAIREvaluator): @@ -51,120 +52,157 @@ class FAIREvaluatorSearchable(FAIREvaluator): def __init__(self, fuji_instance): FAIREvaluator.__init__(self, fuji_instance) - self.set_metric('FsF-F4-01M') + self.set_metric("FsF-F4-01M") self.search_mechanisms = [] - self.search_engines_support_offering = ['html_embedding', 'microdata_rdfa'] - self.search_engines_support_standards = ['schemaorg','dublin-core','dcat-data-catalog-vocabulary']# from f-uji.net/vocab/metadata/standards + self.search_engines_support_offering = ["html_embedding", "microdata_rdfa"] + self.search_engines_support_standards = [ + "schemaorg", + "dublin-core", + "dcat-data-catalog-vocabulary", + ] # from f-uji.net/vocab/metadata/standards self.search_engines_support = [ - MetadataSources.SCHEMAORG_NEGOTIATED.name, MetadataSources.SCHEMAORG_EMBEDDED.name, - MetadataSources.DUBLINCORE_EMBEDDED.name, MetadataSources.RDFA_EMBEDDED.name + MetadataSources.SCHEMAORG_NEGOTIATED.name, + MetadataSources.SCHEMAORG_EMBEDDED.name, + MetadataSources.DUBLINCORE_EMBEDDED.name, + MetadataSources.RDFA_EMBEDDED.name, ] self.sources_registry = [ - MetaDataCatalogue.Sources.DATACITE, MetaDataCatalogue.Sources.MENDELEY_DATA, MetaDataCatalogue.Sources.GOOGLE_DATASET + MetaDataCatalogue.Sources.DATACITE, + MetaDataCatalogue.Sources.MENDELEY_DATA, + MetaDataCatalogue.Sources.GOOGLE_DATASET, ] def testMetadataExchangeStandardsAvailable(self): - #test for oai, csw, sparql + # test for oai, csw, sparql test_status = False - standards_supported =[] + standards_supported = [] - if self.isTestDefined(self.metric_identifier + '-3'): + if self.isTestDefined(self.metric_identifier + "-3"): if self.fuji.use_datacite: - self.logger.info(self.metric_identifier + ' : Trying to identify a metadata exchange standard given as input or via re3data entry') - test_score = self.getTestConfigScore(self.metric_identifier + '-3') + self.logger.info( + self.metric_identifier + + " : Trying to identify a metadata exchange standard given as input or via re3data entry" + ) + test_score = self.getTestConfigScore(self.metric_identifier + "-3") if not self.fuji.oaipmh_endpoint: self.logger.info( - '{} : Inferring metadata service endpoint (OAI) information through re3data/datacite services'.format( - self.metric_identifier)) - self.fuji.oaipmh_endpoint = self.fuji.repo_helper.getRe3MetadataAPIs().get('OAI-PMH') + "{} : Inferring metadata service endpoint (OAI) information through re3data/datacite services".format( + self.metric_identifier + ) + ) + self.fuji.oaipmh_endpoint = self.fuji.repo_helper.getRe3MetadataAPIs().get("OAI-PMH") if self.fuji.oaipmh_endpoint: - standards_supported.append('OAI-PMH') + standards_supported.append("OAI-PMH") if self.fuji.csw_endpoint: - standards_supported.append('OGC-CSW') + standards_supported.append("OGC-CSW") if not self.fuji.sparql_endpoint: self.logger.info( - '{} : Inferring metadata service endpoint (SPARQL) information through re3data/datacite services'.format( - self.metric_identifier)) - self.fuji.sparql_endpoint = self.fuji.repo_helper.getRe3MetadataAPIs().get('SPARQL') + "{} : Inferring metadata service endpoint (SPARQL) information through re3data/datacite services".format( + self.metric_identifier + ) + ) + self.fuji.sparql_endpoint = self.fuji.repo_helper.getRe3MetadataAPIs().get("SPARQL") if self.fuji.sparql_endpoint: - standards_supported.append('SPARQL') + standards_supported.append("SPARQL") if standards_supported: - self.setEvaluationCriteriumScore(self.metric_identifier + '-3', test_score, 'pass') - self.maturity = self.getTestConfigMaturity(self.metric_identifier + '-3') + self.setEvaluationCriteriumScore(self.metric_identifier + "-3", test_score, "pass") + self.maturity = self.getTestConfigMaturity(self.metric_identifier + "-3") self.score.earned += test_score - #standards_supported.append(self.fuji.self.metadata_service_type) + # standards_supported.append(self.fuji.self.metadata_service_type) self.search_mechanisms.append( - OutputSearchMechanisms(mechanism='exchange standard', mechanism_info=standards_supported)) - self.logger.log(self.fuji.LOG_SUCCESS,self.metric_identifier + ' : Metadata found - metadata exchange standard -: '+str(standards_supported)) + OutputSearchMechanisms(mechanism="exchange standard", mechanism_info=standards_supported) + ) + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + + " : Metadata found - metadata exchange standard -: " + + str(standards_supported), + ) else: - self.logger.warning(self.metric_identifier + ' : No metadata exchange standard found') + self.logger.warning(self.metric_identifier + " : No metadata exchange standard found") else: - self.logger.warning(self.metric_identifier + ' : Datacite support disabled, therefore skipping re3data metadata exchange standard check') + self.logger.warning( + self.metric_identifier + + " : Datacite support disabled, therefore skipping re3data metadata exchange standard check" + ) return test_status - def testSearchEngineCompatibleMetadataAvailable(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-1'): + if self.isTestDefined(self.metric_identifier + "-1"): search_engine_support_match = [] - test_score = self.getTestConfigScore(self.metric_identifier + '-1') - #NEW Way + test_score = self.getTestConfigScore(self.metric_identifier + "-1") + # NEW Way for found_metadata in self.fuji.metadata_unmerged: - if found_metadata.get('metadata'): - if found_metadata.get('metadata') !={'object_type': 'Other'}: - if found_metadata.get('offering_method') in self.search_engines_support_offering: - standard_found = found_metadata.get('metadata_standard') - #standard_found = self.fuji.metadata_harvester.lookup_metadatastandard_by_uri(found_metadata.get('schema')) - '''if found_metadata.get('namespaces') and not standard_found: + if found_metadata.get("metadata"): + if found_metadata.get("metadata") != {"object_type": "Other"}: + if found_metadata.get("offering_method") in self.search_engines_support_offering: + standard_found = found_metadata.get("metadata_standard") + # standard_found = self.fuji.metadata_harvester.lookup_metadatastandard_by_uri(found_metadata.get('schema')) + """if found_metadata.get('namespaces') and not standard_found: for namesp in found_metadata.get('namespaces'): standard_found = self.fuji.metadata_harvester.lookup_metadatastandard_by_uri(namesp) if standard_found: - break''' + break""" if standard_found in self.search_engines_support_standards: - search_engine_support_match.append(standard_found+' via: '+found_metadata.get('offering_method')) + search_engine_support_match.append( + standard_found + " via: " + found_metadata.get("offering_method") + ) search_engine_support_match = list(set(search_engine_support_match)) - #OLD WAY + # OLD WAY # Check search mechanisms based on sources of metadata extracted. - '''search_engine_support_match: List[Any] = list( - set(dict(self.fuji.metadata_sources).keys()).intersection(self.search_engines_support))''' + """search_engine_support_match: List[Any] = list( + set(dict(self.fuji.metadata_sources).keys()).intersection(self.search_engines_support))""" if search_engine_support_match: - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score, 'pass') - self.maturity = self.getTestConfigMaturity(self.metric_identifier + '-1') + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") + self.maturity = self.getTestConfigMaturity(self.metric_identifier + "-1") self.score.earned += test_score test_status = True self.search_mechanisms.append( - OutputSearchMechanisms(mechanism='structured data', mechanism_info=search_engine_support_match)) - self.logger.log(self.fuji.LOG_SUCCESS,self.metric_identifier + ' : Metadata is offered in a way major search engines can ingest it -: '+str(search_engine_support_match)) + OutputSearchMechanisms(mechanism="structured data", mechanism_info=search_engine_support_match) + ) + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + + " : Metadata is offered in a way major search engines can ingest it -: " + + str(search_engine_support_match), + ) else: - self.logger.warning(self.metric_identifier + ' : Metadata is NOT found through -: {}'.format(self.search_engines_support)) + self.logger.warning( + self.metric_identifier + + " : Metadata is NOT found through -: {}".format(self.search_engines_support) + ) return test_status def testListedinSearchEngines(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-2'): - test_score = self.getTestConfigScore(self.metric_identifier + '-2') + if self.isTestDefined(self.metric_identifier + "-2"): + test_score = self.getTestConfigScore(self.metric_identifier + "-2") # check if record is listed in major catalogs -> searchable # DataCite registry, Google Dataset search, Mendeley data etc.. - #Using the DataCite API in case content negotiation does not work + # Using the DataCite API in case content negotiation does not work registries_supported = [] if self.fuji.pid_url or self.fuji.landing_url: - #DataCite only for DOIs + # DataCite only for DOIs pidhelper = IdentifierHelper(self.fuji.pid_url) if self.fuji.pid_scheme: - if 'doi' in self.fuji.pid_scheme: + if "doi" in self.fuji.pid_scheme: datacite_registry_helper = MetaDataCatalogueDataCite(self.fuji.logger) datacite_registry_helper.query(pidhelper.normalized_id) if datacite_registry_helper.islisted: registries_supported.append(datacite_registry_helper.source) if not registries_supported: - google_registry_helper = MetaDataCatalogueGoogleDataSearch(self.fuji.logger, self.fuji.metadata_merged.get('object_type')) + google_registry_helper = MetaDataCatalogueGoogleDataSearch( + self.fuji.logger, self.fuji.metadata_merged.get("object_type") + ) google_registry_helper.query([pidhelper.normalized_id, self.fuji.landing_url]) if google_registry_helper.islisted: registries_supported.append(google_registry_helper.source) else: self.logger.info( - self.metric_identifier + ' : Dataset already found in registry therefore skipping Google Dataset Search Cache query' + self.metric_identifier + + " : Dataset already found in registry therefore skipping Google Dataset Search Cache query" ) if not registries_supported: @@ -174,39 +212,48 @@ def testListedinSearchEngines(self): registries_supported.append(mendeley_registry_helper.source) else: self.logger.info( - self.metric_identifier + ' : Dataset already found in registry therefore skipping Mendeley Data query') + self.metric_identifier + + " : Dataset already found in registry therefore skipping Mendeley Data query" + ) else: self.logger.warning( - self.metric_identifier + ' : No resolvable PID or responding landing page found, therefore skipping data catalogue coverage tests' + self.metric_identifier + + " : No resolvable PID or responding landing page found, therefore skipping data catalogue coverage tests" ) if registries_supported: - self.setEvaluationCriteriumScore(self.metric_identifier + '-2', test_score, 'pass') - self.maturity = self.getTestConfigMaturity(self.metric_identifier + '-2') + self.setEvaluationCriteriumScore(self.metric_identifier + "-2", test_score, "pass") + self.maturity = self.getTestConfigMaturity(self.metric_identifier + "-2") self.score.earned += test_score self.search_mechanisms.append( - OutputSearchMechanisms(mechanism='metadata registry', mechanism_info=registries_supported)) - self.logger.log(self.fuji.LOG_SUCCESS,self.metric_identifier + ' : Metadata found through - metadata registry') + OutputSearchMechanisms(mechanism="metadata registry", mechanism_info=registries_supported) + ) + self.logger.log( + self.fuji.LOG_SUCCESS, self.metric_identifier + " : Metadata found through - metadata registry" + ) else: self.logger.warning( - self.metric_identifier + ' : Metadata is NOT found through registries considered by the assessment service -: {}'. - format([s.name for s in self.sources_registry])) + self.metric_identifier + + " : Metadata is NOT found through registries considered by the assessment service -: {}".format( + [s.name for s in self.sources_registry] + ) + ) return test_status def evaluate(self): - self.result = Searchable(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) + self.result = Searchable( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) self.output = SearchableOutput() - searchable_status = 'fail' + searchable_status = "fail" if self.testSearchEngineCompatibleMetadataAvailable(): - searchable_status = 'pass' + searchable_status = "pass" if self.testListedinSearchEngines(): - searchable_status = 'pass' + searchable_status = "pass" if self.testMetadataExchangeStandardsAvailable(): - searchable_status = 'pass' + searchable_status = "pass" else: - self.logger.warning('NO search mechanism supported') + self.logger.warning("NO search mechanism supported") self.result.test_status = searchable_status self.result.score = self.score self.output.search_mechanisms = self.search_mechanisms diff --git a/fuji_server/evaluators/fair_evaluator_semantic_vocabulary.py b/fuji_server/evaluators/fair_evaluator_semantic_vocabulary.py index 14c17140..599c010f 100644 --- a/fuji_server/evaluators/fair_evaluator_semantic_vocabulary.py +++ b/fuji_server/evaluators/fair_evaluator_semantic_vocabulary.py @@ -24,9 +24,9 @@ import fnmatch from fuji_server.evaluators.fair_evaluator import FAIREvaluator +from fuji_server.helper.linked_vocab_helper import linked_vocab_helper from fuji_server.models.semantic_vocabulary import SemanticVocabulary from fuji_server.models.semantic_vocabulary_output_inner import SemanticVocabularyOutputInner -from fuji_server.helper.linked_vocab_helper import linked_vocab_helper class FAIREvaluatorSemanticVocabulary(FAIREvaluator): @@ -45,67 +45,78 @@ class FAIREvaluatorSemanticVocabulary(FAIREvaluator): def __init__(self, fuji_instance): FAIREvaluator.__init__(self, fuji_instance) - self.set_metric('FsF-I2-01M') + self.set_metric("FsF-I2-01M") self.outputs = [] self.knownnamespaceuris = [] def setCommunityRequirements(self): - test_requirements =[] + test_requirements = [] reqsdefined = False - if self.metric_tests[self.metric_identifier + '-2'].metric_test_requirements: - test_requirements = self.metric_tests[self.metric_identifier + '-2'].metric_test_requirements[0] + if self.metric_tests[self.metric_identifier + "-2"].metric_test_requirements: + test_requirements = self.metric_tests[self.metric_identifier + "-2"].metric_test_requirements[0] if test_requirements: - community_vocabs =[] - if test_requirements.get('required'): - test_required=[] - if isinstance(test_requirements.get('required'), list): - test_required = test_requirements.get('required') - elif test_requirements.get('required').get('identifier'): - test_required = test_requirements.get('required').get('identifier') + community_vocabs = [] + if test_requirements.get("required"): + test_required = [] + if isinstance(test_requirements.get("required"), list): + test_required = test_requirements.get("required") + elif test_requirements.get("required").get("identifier"): + test_required = test_requirements.get("required").get("identifier") if not isinstance(test_required, list): test_required = [test_required] reqsdefined = True self.logger.info( - '{0} : Will exclusively consider community specific vocabularies which are specified in metrics -: {1}'.format( - self.metric_identifier, test_requirements.get('required'))) + "{0} : Will exclusively consider community specific vocabularies which are specified in metrics -: {1}".format( + self.metric_identifier, test_requirements.get("required") + ) + ) for rq_vocab in test_required: for kn_vocab in self.knownnamespaceuris: if fnmatch.fnmatch(kn_vocab, rq_vocab): community_vocabs.append(kn_vocab) if len(community_vocabs) > 0: self.logger.info( - '{0} : Namespaces of community specific vocabularies found -: {1}'.format( - self.metric_identifier, community_vocabs)) + "{0} : Namespaces of community specific vocabularies found -: {1}".format( + self.metric_identifier, community_vocabs + ) + ) self.knownnamespaceuris = [x for x in self.knownnamespaceuris if x in community_vocabs] return reqsdefined def testSemanticNamespaceURIsAvailable(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-1'): - test_score = self.getTestConfigScore(self.metric_identifier + '-1') + if self.isTestDefined(self.metric_identifier + "-1"): + test_score = self.getTestConfigScore(self.metric_identifier + "-1") if self.fuji.namespace_uri or self.fuji.linked_namespace_uri: - self.maturity = self.getTestConfigMaturity(self.metric_identifier + '-1') - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score, 'pass') + self.maturity = self.getTestConfigMaturity(self.metric_identifier + "-1") + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") self.score.earned += test_status test_status = True - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score, 'pass') + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") else: - self.logger.warning('{0} : NO namespaces of semantic vocabularies found in the metadata'.format(self.metric_identifier)) + self.logger.warning( + "{0} : NO namespaces of semantic vocabularies found in the metadata".format(self.metric_identifier) + ) return test_status def testKnownSemanticResourcesUsed(self): lov_helper = linked_vocab_helper(self.fuji.LINKED_VOCAB_INDEX) test_status = False communityspecsdefined = False - if self.isTestDefined(self.metric_identifier + '-2'): - test_score = self.getTestConfigScore(self.metric_identifier + '-2') + if self.isTestDefined(self.metric_identifier + "-2"): + test_score = self.getTestConfigScore(self.metric_identifier + "-2") if not self.fuji.namespace_uri and not self.fuji.linked_namespace_uri: self.logger.info( - '{0} : Skipping namespace lookup in LOD registry list since no namespaces available'.format( - self.metric_identifier)) + "{0} : Skipping namespace lookup in LOD registry list since no namespaces available".format( + self.metric_identifier + ) + ) if self.fuji.namespace_uri: - self.logger.info('{0} : Check if known namespace(s) are used in structured metadata (RDF, XML) which exist(s) in a LOD registry -: {1}'.format( - self.metric_identifier, self.fuji.namespace_uri)) + self.logger.info( + "{0} : Check if known namespace(s) are used in structured metadata (RDF, XML) which exist(s) in a LOD registry -: {1}".format( + self.metric_identifier, self.fuji.namespace_uri + ) + ) for ns_uri in self.fuji.namespace_uri: lov_entry = lov_helper.get_linked_vocab_by_iri(ns_uri, isnamespaceIRI=True) if lov_entry and ns_uri not in self.knownnamespaceuris: @@ -113,8 +124,10 @@ def testKnownSemanticResourcesUsed(self): if self.fuji.linked_namespace_uri: self.logger.info( - '{0} : Check if known namespace(s) are used in linked property URIs which exist(s) in a LOD registry -: {1}'.format( - self.metric_identifier, self.fuji.linked_namespace_uri)) + "{0} : Check if known namespace(s) are used in linked property URIs which exist(s) in a LOD registry -: {1}".format( + self.metric_identifier, self.fuji.linked_namespace_uri + ) + ) for ns_uri in self.fuji.linked_namespace_uri: lov_entry = lov_helper.get_linked_vocab_by_iri(ns_uri, isnamespaceIRI=True) if lov_entry and ns_uri not in self.knownnamespaceuris: @@ -123,29 +136,40 @@ def testKnownSemanticResourcesUsed(self): communityspecsdefined = self.setCommunityRequirements() if self.knownnamespaceuris: self.score.earned += test_score - self.maturity = self.getTestConfigMaturity(self.metric_identifier + '-2') - self.setEvaluationCriteriumScore(self.metric_identifier + '-2', test_score, 'pass') - self.logger.log(self.fuji.LOG_SUCCESS, - '{0} : Namespace matches found -: {1}'.format(self.metric_identifier, self.knownnamespaceuris)) + self.maturity = self.getTestConfigMaturity(self.metric_identifier + "-2") + self.setEvaluationCriteriumScore(self.metric_identifier + "-2", test_score, "pass") + self.logger.log( + self.fuji.LOG_SUCCESS, + "{0} : Namespace matches found -: {1}".format(self.metric_identifier, self.knownnamespaceuris), + ) for e in self.knownnamespaceuris: self.outputs.append(SemanticVocabularyOutputInner(namespace=e, is_namespace_active=True)) not_exists = [x for x in self.fuji.namespace_uri if x not in self.knownnamespaceuris] if not_exists: self.logger.warning( - '{0} : Vocabulary namespace(s) or URIs specified but no match is found in LOD reference list (examples) -: {1}'. - format(self.metric_identifier, not_exists[:10])) + "{0} : Vocabulary namespace(s) or URIs specified but no match is found in LOD reference list (examples) -: {1}".format( + self.metric_identifier, not_exists[:10] + ) + ) else: if communityspecsdefined: - self.logger.warning('{0} : NO community specific vocabulary namespace URI is found which is listed in the LOD registry'.format(self.metric_identifier)) + self.logger.warning( + "{0} : NO community specific vocabulary namespace URI is found which is listed in the LOD registry".format( + self.metric_identifier + ) + ) else: - self.logger.warning('{0} : NO known vocabulary namespace URI is found which is listed in the LOD registry'.format(self.metric_identifier)) - + self.logger.warning( + "{0} : NO known vocabulary namespace URI is found which is listed in the LOD registry".format( + self.metric_identifier + ) + ) return test_status def removeDefaultVocabularies(self, vocablist): vocablist = list(set(vocablist)) - vocablist = [x.strip().rstrip('/#') for x in vocablist] + vocablist = [x.strip().rstrip("/#") for x in vocablist] excluded = [] for n in vocablist: @@ -154,33 +178,38 @@ def removeDefaultVocabularies(self, vocablist): excluded.append(n) vocablist[:] = [x for x in vocablist if x not in excluded] if excluded: - self.logger.info('{0} : Default vocabulary namespace(s) excluded -: {1}'.format( - self.metric_identifier, excluded)) + self.logger.info( + "{0} : Default vocabulary namespace(s) excluded -: {1}".format(self.metric_identifier, excluded) + ) return vocablist def evaluate(self): - self.result = SemanticVocabulary(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) + self.result = SemanticVocabulary( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) - #outputs = [] - test_status = 'fail' + # outputs = [] + test_status = "fail" # remove duplicates and default namespaces - if len(self.fuji.namespace_uri) >0: + if len(self.fuji.namespace_uri) > 0: self.logger.info( - '{0} : Removing default namespaces from {1} vocabulary namespaces found in structured metadata'.format( - self.metric_identifier, len(self.fuji.namespace_uri))) + "{0} : Removing default namespaces from {1} vocabulary namespaces found in structured metadata".format( + self.metric_identifier, len(self.fuji.namespace_uri) + ) + ) self.fuji.namespace_uri = self.removeDefaultVocabularies(self.fuji.namespace_uri) if len(self.fuji.linked_namespace_uri) > 0: self.logger.info( - '{0} : Removing default namespaces from {1} vocabulary namespaces extracted from links found in metadata'.format( - self.metric_identifier, len(self.fuji.linked_namespace_uri))) + "{0} : Removing default namespaces from {1} vocabulary namespaces extracted from links found in metadata".format( + self.metric_identifier, len(self.fuji.linked_namespace_uri) + ) + ) self.fuji.linked_namespace_uri = self.removeDefaultVocabularies(self.fuji.linked_namespace_uri) if self.testSemanticNamespaceURIsAvailable(): - test_status = 'pass' + test_status = "pass" if self.testKnownSemanticResourcesUsed(): - test_status = 'pass' + test_status = "pass" self.result.test_status = test_status self.result.score = self.score diff --git a/fuji_server/evaluators/fair_evaluator_standardised_protocol_data.py b/fuji_server/evaluators/fair_evaluator_standardised_protocol_data.py index f45a94b3..b70b9fa6 100644 --- a/fuji_server/evaluators/fair_evaluator_standardised_protocol_data.py +++ b/fuji_server/evaluators/fair_evaluator_standardised_protocol_data.py @@ -22,11 +22,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. +from urllib.parse import urlparse + from fuji_server.evaluators.fair_evaluator import FAIREvaluator +from fuji_server.helper.metadata_mapper import Mapper from fuji_server.models.standardised_protocol_data import StandardisedProtocolData from fuji_server.models.standardised_protocol_data_output import StandardisedProtocolDataOutput -from fuji_server.helper.metadata_mapper import Mapper -from urllib.parse import urlparse class FAIREvaluatorStandardisedProtocolData(FAIREvaluator): @@ -44,39 +45,45 @@ class FAIREvaluatorStandardisedProtocolData(FAIREvaluator): def __init__(self, fuji_instance): FAIREvaluator.__init__(self, fuji_instance) - self.set_metric('FsF-A1-03D') + self.set_metric("FsF-A1-03D") self.data_output = {} def testStandardProtocolDataUsed(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-1'): - test_score = self.getTestConfigScore(self.metric_identifier + '-1') + if self.isTestDefined(self.metric_identifier + "-1"): + test_score = self.getTestConfigScore(self.metric_identifier + "-1") if len(self.fuji.content_identifier) > 0: # here we only test the first content identifier - data_url = list(self.fuji.content_identifier.values())[0].get('url') + data_url = list(self.fuji.content_identifier.values())[0].get("url") data_parsed_url = urlparse(data_url) data_url_scheme = data_parsed_url.scheme if data_url_scheme in self.fuji.STANDARD_PROTOCOLS: - self.logger.log(self.fuji.LOG_SUCCESS, - self.metric_identifier + ' : Standard protocol for access to data object found -: ' + data_url_scheme) + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + + " : Standard protocol for access to data object found -: " + + data_url_scheme, + ) self.data_output = {data_url_scheme: self.fuji.STANDARD_PROTOCOLS.get(data_url_scheme)} - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score, 'pass') - self.maturity = self.getTestConfigMaturity(self.metric_identifier + '-1') + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") + self.maturity = self.getTestConfigMaturity(self.metric_identifier + "-1") test_status = True self.score.earned = test_score else: - self.logger.warning(self.metric_identifier + ' : Skipping protocol test for data since NO content (data) identifier is given in metadata') + self.logger.warning( + self.metric_identifier + + " : Skipping protocol test for data since NO content (data) identifier is given in metadata" + ) return test_status def evaluate(self): + self.result = StandardisedProtocolData( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) - self.result = StandardisedProtocolData(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) - - test_status = 'fail' + test_status = "fail" if self.testStandardProtocolDataUsed(): - test_status = 'pass' + test_status = "pass" self.result.score = self.score self.result.output = StandardisedProtocolDataOutput(standard_data_protocol=self.data_output) self.result.metric_tests = self.metric_tests diff --git a/fuji_server/evaluators/fair_evaluator_standardised_protocol_metadata.py b/fuji_server/evaluators/fair_evaluator_standardised_protocol_metadata.py index 9c6edbc4..7e2f5a6e 100644 --- a/fuji_server/evaluators/fair_evaluator_standardised_protocol_metadata.py +++ b/fuji_server/evaluators/fair_evaluator_standardised_protocol_metadata.py @@ -22,11 +22,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. +from urllib.parse import urlparse + from fuji_server.evaluators.fair_evaluator import FAIREvaluator +from fuji_server.helper.metadata_mapper import Mapper from fuji_server.models.standardised_protocol_metadata import StandardisedProtocolMetadata from fuji_server.models.standardised_protocol_metadata_output import StandardisedProtocolMetadataOutput -from fuji_server.helper.metadata_mapper import Mapper -from urllib.parse import urlparse class FAIREvaluatorStandardisedProtocolMetadata(FAIREvaluator): @@ -45,13 +46,13 @@ class FAIREvaluatorStandardisedProtocolMetadata(FAIREvaluator): def __init__(self, fuji_instance): FAIREvaluator.__init__(self, fuji_instance) - self.set_metric('FsF-A1-02M') + self.set_metric("FsF-A1-02M") self.metadata_output = {} def testStandardProtocolMetadataUsed(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-1'): - test_score = self.getTestConfigScore(self.metric_identifier + '-1') + if self.isTestDefined(self.metric_identifier + "-1"): + test_score = self.getTestConfigScore(self.metric_identifier + "-1") if self.fuji.landing_url is not None: metadata_required = Mapper.REQUIRED_CORE_METADATA.value metadata_found = {k: v for k, v in self.fuji.metadata_merged.items() if k in metadata_required} @@ -61,36 +62,41 @@ def testStandardProtocolMetadataUsed(self): metadata_url_scheme = metadata_parsed_url.scheme if len(self.fuji.metadata_merged) == 0: self.logger.warning( - self.metric_identifier + ' : No metadata given or found, therefore the protocol of given PID was not assessed. See: FsF-F2-01M' + self.metric_identifier + + " : No metadata given or found, therefore the protocol of given PID was not assessed. See: FsF-F2-01M" ) else: if metadata_url_scheme in self.fuji.STANDARD_PROTOCOLS: self.logger.log( self.fuji.LOG_SUCCESS, - 'FsF-A1-02M : Standard protocol for access to metadata found -: ' + str(metadata_url_scheme)) + "FsF-A1-02M : Standard protocol for access to metadata found -: " + + str(metadata_url_scheme), + ) - self.metadata_output = {metadata_url_scheme: self.fuji.STANDARD_PROTOCOLS.get(metadata_url_scheme)} + self.metadata_output = { + metadata_url_scheme: self.fuji.STANDARD_PROTOCOLS.get(metadata_url_scheme) + } test_status = True self.score.earned = test_score - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score, 'pass') - self.maturity = self.getTestConfigMaturity(self.metric_identifier + '-1') + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") + self.maturity = self.getTestConfigMaturity(self.metric_identifier + "-1") # TODO: check why this is tested - delete if not required if set(metadata_found) != set(metadata_required): - self.logger.info('FsF-A1-02M : NOT all required metadata given, see: FsF-F2-01M') + self.logger.info("FsF-A1-02M : NOT all required metadata given, see: FsF-F2-01M") # parse the URL and return the protocol which has to be one of Internet RFC on Relative Uniform Resource Locators else: - self.logger.warning('FsF-A1-02M : Metadata Identifier is not actionable or protocol errors occurred') + self.logger.warning("FsF-A1-02M : Metadata Identifier is not actionable or protocol errors occurred") return test_status def evaluate(self): - self.result = StandardisedProtocolMetadata(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) - test_status = 'fail' + self.result = StandardisedProtocolMetadata( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) + test_status = "fail" score = 0 if self.testStandardProtocolMetadataUsed(): - test_status ='pass' + test_status = "pass" self.result.score = self.score self.result.output = StandardisedProtocolMetadataOutput(standard_metadata_protocol=self.metadata_output) self.result.metric_tests = self.metric_tests diff --git a/fuji_server/evaluators/fair_evaluator_unique_identifier_data.py b/fuji_server/evaluators/fair_evaluator_unique_identifier_data.py index 1740eab8..e6dc4354 100644 --- a/fuji_server/evaluators/fair_evaluator_unique_identifier_data.py +++ b/fuji_server/evaluators/fair_evaluator_unique_identifier_data.py @@ -24,12 +24,14 @@ import re import uuid -import idutils + import hashid +import idutils + +from fuji_server.evaluators.fair_evaluator import FAIREvaluator from fuji_server.helper.identifier_helper import IdentifierHelper -from fuji_server.models.uniqueness_output import UniquenessOutput from fuji_server.models.uniqueness import Uniqueness -from fuji_server.evaluators.fair_evaluator import FAIREvaluator +from fuji_server.models.uniqueness_output import UniquenessOutput class FAIREvaluatorUniqueIdentifierData(FAIREvaluator): @@ -46,28 +48,34 @@ class FAIREvaluatorUniqueIdentifierData(FAIREvaluator): def __init__(self, fuji_instance): FAIREvaluator.__init__(self, fuji_instance) - metric = 'FsF-F1-01DD' + metric = "FsF-F1-01DD" self.set_metric(metric) def testDataIdentifierCompliesWithIdutilsScheme(self, validschemes=[]): test_status = False - if self.isTestDefined(self.metric_identifier + '-1'): - test_score = self.getTestConfigScore(self.metric_identifier + '-1') + if self.isTestDefined(self.metric_identifier + "-1"): + test_score = self.getTestConfigScore(self.metric_identifier + "-1") self.logger.info( - self.metric_identifier + ' : Using idutils schemes to identify unique or persistent identifiers for data') - #contents = self.fuji.metadata_merged.get('object_content_identifier') + self.metric_identifier + + " : Using idutils schemes to identify unique or persistent identifiers for data" + ) + # contents = self.fuji.metadata_merged.get('object_content_identifier') contents = self.fuji.content_identifier for content in contents.values(): - if content.get('url'): - idhelper = IdentifierHelper(content.get('url')) + if content.get("url"): + idhelper = IdentifierHelper(content.get("url")) found_ids = idhelper.identifier_schemes if len(found_ids) > 0: - self.logger.log(self.fuji.LOG_SUCCESS, - self.metric_identifier + ' : Unique identifier schemes found for data URI -: {} as {}'.format( - str(content.get('url')),found_ids)) - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', test_score , 'pass') - self.maturity = self.metric_tests.get(self.metric_identifier + '-1').metric_test_maturity_config - self.output.guid = content.get('url') + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + + " : Unique identifier schemes found for data URI -: {} as {}".format( + str(content.get("url")), found_ids + ), + ) + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", test_score, "pass") + self.maturity = self.metric_tests.get(self.metric_identifier + "-1").metric_test_maturity_config + self.output.guid = content.get("url") self.output.guid_scheme = idhelper.preferred_schema self.score.earned += test_score test_status = True @@ -76,46 +84,53 @@ def testDataIdentifierCompliesWithIdutilsScheme(self, validschemes=[]): def testDataIdentifierCompliesWithUUIDorHASH(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-2'): - test_score = self.getTestConfigScore(self.metric_identifier + '-2') + if self.isTestDefined(self.metric_identifier + "-2"): + test_score = self.getTestConfigScore(self.metric_identifier + "-2") contents = self.fuji.content_identifier for content in contents.values(): - if content.get('url') and content.get('schema'): - - if content.get('schema') == 'uuid': - self.logger.log(self.fuji.LOG_SUCCESS, self.metric_identifier + ' : Unique identifier (UUID) scheme for data identifier found') - self.output.guid_scheme = 'uuid' + if content.get("url") and content.get("schema"): + if content.get("schema") == "uuid": + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + " : Unique identifier (UUID) scheme for data identifier found", + ) + self.output.guid_scheme = "uuid" test_status = True break - elif content.get('schema') == 'hash': - self.output.guid_scheme = 'hash' - self.logger.log(self.fuji.LOG_SUCCESS, self.metric_identifier + ' : Unique identifier (SHA,MD5) scheme for data identifier found') + elif content.get("schema") == "hash": + self.output.guid_scheme = "hash" + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + " : Unique identifier (SHA,MD5) scheme for data identifier found", + ) test_status = True break if test_status: - self.setEvaluationCriteriumScore(self.metric_identifier + '-2', test_score, 'pass') - self.output.guid = content.get('url') - self.maturity = self.maturity = self.metric_tests.get(self.metric_identifier + '-2').metric_test_maturity_config + self.setEvaluationCriteriumScore(self.metric_identifier + "-2", test_score, "pass") + self.output.guid = content.get("url") + self.maturity = self.maturity = self.metric_tests.get( + self.metric_identifier + "-2" + ).metric_test_maturity_config self.score.earned = test_score return test_status def evaluate(self): # ======= CHECK IDENTIFIER UNIQUENESS ======= if self.metric_identifier in self.metrics: - self.result = Uniqueness(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) + self.result = Uniqueness( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) self.output = UniquenessOutput() - self.result.test_status = 'fail' + self.result.test_status = "fail" if self.testDataIdentifierCompliesWithIdutilsScheme(): - self.result.test_status = 'pass' + self.result.test_status = "pass" if self.testDataIdentifierCompliesWithUUIDorHASH(): - self.result.test_status = 'pass' + self.result.test_status = "pass" else: - self.result.test_status = 'fail' + self.result.test_status = "fail" self.score.earned = 0 - self.logger.warning(self.metric_identifier + ' : Failed to check the identifier scheme!.') + self.logger.warning(self.metric_identifier + " : Failed to check the identifier scheme!.") self.result.score = self.score self.result.metric_tests = self.metric_tests self.result.output = self.output - self.result.maturity = self.maturity \ No newline at end of file + self.result.maturity = self.maturity diff --git a/fuji_server/evaluators/fair_evaluator_unique_identifier_metadata.py b/fuji_server/evaluators/fair_evaluator_unique_identifier_metadata.py index 000ee644..7b017439 100644 --- a/fuji_server/evaluators/fair_evaluator_unique_identifier_metadata.py +++ b/fuji_server/evaluators/fair_evaluator_unique_identifier_metadata.py @@ -24,12 +24,14 @@ import re import uuid -import idutils + import hashid +import idutils + +from fuji_server.evaluators.fair_evaluator import FAIREvaluator from fuji_server.helper.identifier_helper import IdentifierHelper -from fuji_server.models.uniqueness_output import UniquenessOutput from fuji_server.models.uniqueness import Uniqueness -from fuji_server.evaluators.fair_evaluator import FAIREvaluator +from fuji_server.models.uniqueness_output import UniquenessOutput class FAIREvaluatorUniqueIdentifierMetadata(FAIREvaluator): @@ -43,26 +45,33 @@ class FAIREvaluatorUniqueIdentifierMetadata(FAIREvaluator): This method will evaluate whether the data is assigned to a unique identifier (UUID/HASH) that folows a proper syntax or identifier is resolvable and follows a defined unique identifier syntax (URL, IRI). """ + def __init__(self, fuji_instance): FAIREvaluator.__init__(self, fuji_instance) - if self.fuji.metric_helper.get_metric_version() != '0.5': - metric = 'FsF-F1-01M' + if self.fuji.metric_helper.get_metric_version() != "0.5": + metric = "FsF-F1-01M" else: - metric = 'FsF-F1-01D' - #after 0.5 seperate metrics for metadata and data + metric = "FsF-F1-01D" + # after 0.5 seperate metrics for metadata and data self.set_metric(metric) - def testMetadataIdentifierCompliesWithIdutilsScheme(self, validschemes = []): + def testMetadataIdentifierCompliesWithIdutilsScheme(self, validschemes=[]): test_status = False - if self.isTestDefined(self.metric_identifier + '-1'): - self.logger.info(self.metric_identifier+' : Using idutils schemes to identify unique or persistent identifiers for metadata') + if self.isTestDefined(self.metric_identifier + "-1"): + self.logger.info( + self.metric_identifier + + " : Using idutils schemes to identify unique or persistent identifiers for metadata" + ) idhelper = IdentifierHelper(self.fuji.id) found_ids = idhelper.identifier_schemes - self.logger.info(self.metric_identifier+' :Starting assessment on identifier: {}'.format(self.fuji.id)) + self.logger.info(self.metric_identifier + " :Starting assessment on identifier: {}".format(self.fuji.id)) if len(found_ids) > 0: - self.logger.log(self.fuji.LOG_SUCCESS, self.metric_identifier+' : Unique identifier schemes found {}'.format(found_ids)) - self.setEvaluationCriteriumScore(self.metric_identifier + '-1', self.total_score, 'pass') - self.maturity = self.metric_tests.get(self.metric_identifier + '-1').metric_test_maturity_config + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + " : Unique identifier schemes found {}".format(found_ids), + ) + self.setEvaluationCriteriumScore(self.metric_identifier + "-1", self.total_score, "pass") + self.maturity = self.metric_tests.get(self.metric_identifier + "-1").metric_test_maturity_config self.output.guid = self.fuji.id self.score.earned = self.total_score found_id = idhelper.preferred_schema @@ -70,47 +79,55 @@ def testMetadataIdentifierCompliesWithIdutilsScheme(self, validschemes = []): if idhelper.is_persistent: self.fuji.pid_scheme = found_id self.fuji.pid_url = idhelper.identifier_url - self.logger.info(self.metric_identifier + ' : Finalized unique identifier scheme - {}'.format(found_id)) + self.logger.info(self.metric_identifier + " : Finalized unique identifier scheme - {}".format(found_id)) self.output.guid_scheme = found_id test_status = True return test_status def testMetadataIdentifierCompliesWithUUIDorHASH(self): test_status = False - if self.isTestDefined(self.metric_identifier + '-2'): - test_score = self.getTestConfigScore(self.metric_identifier + '-2') + if self.isTestDefined(self.metric_identifier + "-2"): + test_score = self.getTestConfigScore(self.metric_identifier + "-2") idhelper = IdentifierHelper(self.fuji.id) - if idhelper.preferred_schema =='uuid': - self.logger.log(self.fuji.LOG_SUCCESS, self.metric_identifier + ' : Unique identifier (UUID) scheme for metadata identifier found') - self.output.guid_scheme = 'uuid' + if idhelper.preferred_schema == "uuid": + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + " : Unique identifier (UUID) scheme for metadata identifier found", + ) + self.output.guid_scheme = "uuid" test_status = True - elif idhelper.preferred_schema =='hash': - self.output.guid_scheme = 'hash' - self.logger.log(self.fuji.LOG_SUCCESS, self.metric_identifier + ' : Unique identifier (SHA,MD5) scheme for metadata identifier found') + elif idhelper.preferred_schema == "hash": + self.output.guid_scheme = "hash" + self.logger.log( + self.fuji.LOG_SUCCESS, + self.metric_identifier + " : Unique identifier (SHA,MD5) scheme for metadata identifier found", + ) test_status = True if test_status: - self.setEvaluationCriteriumScore(self.metric_identifier + '-2', test_score, 'pass') + self.setEvaluationCriteriumScore(self.metric_identifier + "-2", test_score, "pass") self.output.guid = self.fuji.id - self.maturity = self.maturity = self.metric_tests.get(self.metric_identifier + '-2').metric_test_maturity_config + self.maturity = self.maturity = self.metric_tests.get( + self.metric_identifier + "-2" + ).metric_test_maturity_config self.score.earned = test_score return test_status def evaluate(self): # ======= CHECK IDENTIFIER UNIQUENESS ======= if self.metric_identifier in self.metrics: - self.result = Uniqueness(id=self.metric_number, - metric_identifier=self.metric_identifier, - metric_name=self.metric_name) + self.result = Uniqueness( + id=self.metric_number, metric_identifier=self.metric_identifier, metric_name=self.metric_name + ) self.output = UniquenessOutput() - self.result.test_status = 'fail' + self.result.test_status = "fail" if self.testMetadataIdentifierCompliesWithUUIDorHASH(): - self.result.test_status = 'pass' + self.result.test_status = "pass" if self.testMetadataIdentifierCompliesWithIdutilsScheme(): - self.result.test_status = 'pass' + self.result.test_status = "pass" else: - self.result.test_status = 'fail' + self.result.test_status = "fail" self.score.earned = 0 - self.logger.warning(self.metric_identifier + ' : Failed to check the identifier scheme!.') + self.logger.warning(self.metric_identifier + " : Failed to check the identifier scheme!.") self.result.score = self.score self.result.metric_tests = self.metric_tests self.result.output = self.output diff --git a/fuji_server/harvester/data_harvester.py b/fuji_server/harvester/data_harvester.py index 34c931df..bf87f224 100644 --- a/fuji_server/harvester/data_harvester.py +++ b/fuji_server/harvester/data_harvester.py @@ -1,21 +1,22 @@ import hashlib import io import logging +import os import re import time import urllib import idutils -import os from tika import parser from fuji_server.helper.identifier_helper import IdentifierHelper -class DataHarvester(): +class DataHarvester: LOG_SUCCESS = 25 LOG_FAILURE = 35 - def __init__(self, data_links, logger, landing_page = None, auth_token=None, auth_token_type='Basic', metrics = None): + + def __init__(self, data_links, logger, landing_page=None, auth_token=None, auth_token_type="Basic", metrics=None): self.logger = logger self.data_links = data_links self.auth_token = auth_token @@ -28,13 +29,13 @@ def __init__(self, data_links, logger, landing_page = None, auth_token=None, aut self.content_type = None def expand_url(self, url): - #replace local urls with full path from landing_page URI - self.logger.info('FsF-R1-01MD : Trying to complete local file name with full path info using landing page URI') + # replace local urls with full path from landing_page URI + self.logger.info("FsF-R1-01MD : Trying to complete local file name with full path info using landing page URI") if self.landing_page: if idutils.is_url(self.landing_page): try: - path = os.path.dirname(self.landing_page) - url = path+'/'+url + path = os.path.dirname(self.landing_page) + url = path + "/" + url except: pass return url @@ -44,75 +45,82 @@ def extend_mime_type_list(self, mime_list): if isinstance(mime_list, str): mime_list = [mime_list] for mime in mime_list: - xm = re.split(r'/(?:[xX][-\.])?', mime) + xm = re.split(r"/(?:[xX][-\.])?", mime) if len(xm) == 2: - if str(xm[0] + '/' + xm[1]) not in mime_list: - mime_list.append(str(xm[0] + '/' + xm[1])) + if str(xm[0] + "/" + xm[1]) not in mime_list: + mime_list.append(str(xm[0] + "/" + xm[1])) return mime_list - def retrieve_all_data(self, howmany = 1): + def retrieve_all_data(self, howmany=1): if self.data_links: if isinstance(self.data_links, list): self.data_links.reverse() if len(self.data_links) > howmany: - self.logger.warning('FsF-R1-01MD : Will not use all given data links, will use '+str(howmany)+' accessible data files from '+(str(len(self.data_links)))) - inx = 0 #number of files which are not accessible (status code !=200) - for idx,datafile in enumerate(self.data_links): + self.logger.warning( + "FsF-R1-01MD : Will not use all given data links, will use " + + str(howmany) + + " accessible data files from " + + (str(len(self.data_links))) + ) + inx = 0 # number of files which are not accessible (status code !=200) + for idx, datafile in enumerate(self.data_links): fileinfo = {} - if datafile.get('url') and idx < howmany+inx: - fileinfo, buffer = self.get(datafile.get('url')) - if fileinfo.get('status_code') != 200: + if datafile.get("url") and idx < howmany + inx: + fileinfo, buffer = self.get(datafile.get("url")) + if fileinfo.get("status_code") != 200: inx += 1 else: - fileinfo['verified'] = True - fileinfo['tika_content_type'] = [] + fileinfo["verified"] = True + fileinfo["tika_content_type"] = [] if fileinfo: - fileinfo.update(self.tika(buffer, datafile.get('url'))) + fileinfo.update(self.tika(buffer, datafile.get("url"))) else: - fileinfo['verified'] = False - fileinfo['claimed_size'] = datafile.get('size') - fileinfo['claimed_type'] = datafile.get('type') - fileinfo['url'] = datafile.get('url') - self.data[datafile.get('url')]=fileinfo + fileinfo["verified"] = False + fileinfo["claimed_size"] = datafile.get("size") + fileinfo["claimed_type"] = datafile.get("type") + fileinfo["url"] = datafile.get("url") + self.data[datafile.get("url")] = fileinfo return True - - def get(self,url): + + def get(self, url): start = time.time() fileinfo = {} downloaded_size = 0 file_buffer_object = io.BytesIO() content_size = 0 if url: - fileinfo['is_persistent'] = False + fileinfo["is_persistent"] = False idhelper = IdentifierHelper(url) if idhelper.preferred_schema: - fileinfo['schema'] =idhelper.preferred_schema + fileinfo["schema"] = idhelper.preferred_schema if idhelper.is_persistent: - fileinfo['is_persistent'] = True + fileinfo["is_persistent"] = True if not idutils.is_url(url): url = self.expand_url(url) try: - request_headers = { - 'Accept': '*/*', - 'User-Agent': 'F-UJI'} + request_headers = {"Accept": "*/*", "User-Agent": "F-UJI"} if self.auth_token: - request_headers['Authorization'] = self.auth_token_type + ' ' + self.auth_token + request_headers["Authorization"] = self.auth_token_type + " " + self.auth_token request = urllib.request.Request(url, headers=request_headers) response = urllib.request.urlopen(request, timeout=self.timeout) rstatus = response.getcode() - fileinfo['status_code'] = rstatus - fileinfo['truncated'] = False - fileinfo['resolved_url'] = response.geturl() - #self.info['response_content_type'] = content_type = response.info().get_content_type() - if response.headers.get('content-type'): - self.content_type = fileinfo['header_content_type'] = response.headers.get('content-type').split(';')[0] - elif response.headers.get('Content-Type'): - self.content_type = fileinfo['header_content_type'] = response.headers.get('Content-Type').split(';')[0] - - if response.headers.get('content-length'): - fileinfo['header_content_size'] = response.headers.get('content-length').split(';')[0] - elif response.headers.get('Content-Length'): - fileinfo['header_content_size'] = response.headers.get('Content-Length').split(';')[0] + fileinfo["status_code"] = rstatus + fileinfo["truncated"] = False + fileinfo["resolved_url"] = response.geturl() + # self.info['response_content_type'] = content_type = response.info().get_content_type() + if response.headers.get("content-type"): + self.content_type = fileinfo["header_content_type"] = response.headers.get("content-type").split( + ";" + )[0] + elif response.headers.get("Content-Type"): + self.content_type = fileinfo["header_content_type"] = response.headers.get("Content-Type").split( + ";" + )[0] + + if response.headers.get("content-length"): + fileinfo["header_content_size"] = response.headers.get("content-length").split(";")[0] + elif response.headers.get("Content-Length"): + fileinfo["header_content_size"] = response.headers.get("Content-Length").split(";")[0] chunksize = 1024 content_size = 0 @@ -124,93 +132,95 @@ def get(self,url): # response_body.append(chunk) file_buffer_object.write(chunk) # avoiding large file sizes to test with TIKA.. truncate after 1 Mb - fileinfo['downloaded_size'] = downloaded_size = downloaded_size + len(chunk) + fileinfo["downloaded_size"] = downloaded_size = downloaded_size + len(chunk) if time.time() > (start + self.timeout) or downloaded_size >= self.max_download_size: - self.logger.warning('FsF-R1-01MD : File too large.., skipped download after -:' + - str(self.timeout) + ' sec or receiving > ' + str(self.max_download_size) + - '- {}'.format(url)) + self.logger.warning( + "FsF-R1-01MD : File too large.., skipped download after -:" + + str(self.timeout) + + " sec or receiving > " + + str(self.max_download_size) + + "- {}".format(url) + ) content_size = 0 - content_size = str(response.headers.get('content-length')).split(';')[0] - fileinfo['truncated']=True + content_size = str(response.headers.get("content-length")).split(";")[0] + fileinfo["truncated"] = True break else: content_size = downloaded_size - fileinfo['content_size'] = content_size + fileinfo["content_size"] = content_size response.close() self.logger.warning( - 'FsF-R1-01MD : Content identifier accessible -: {0}, HTTPStatus code {1} '.format( - url,rstatus)) + "FsF-R1-01MD : Content identifier accessible -: {0}, HTTPStatus code {1} ".format(url, rstatus) + ) except urllib.error.HTTPError as e: self.logger.warning( - 'FsF-F3-01M : Content identifier inaccessible -: {0}, HTTPError code {1} '.format( - url, e.code)) + "FsF-F3-01M : Content identifier inaccessible -: {0}, HTTPError code {1} ".format(url, e.code) + ) self.logger.warning( - 'FsF-R1-01MD : Content identifier inaccessible -: {0}, HTTPError code {1} '.format( - url, e.code)) + "FsF-R1-01MD : Content identifier inaccessible -: {0}, HTTPError code {1} ".format(url, e.code) + ) self.logger.warning( - 'FsF-R1.3-02D : Content identifier inaccessible -: {0}, HTTPError code {1} '.format( - url, e.code)) + "FsF-R1.3-02D : Content identifier inaccessible -: {0}, HTTPError code {1} ".format(url, e.code) + ) except urllib.error.URLError as e: self.logger.exception(e.reason) - self.logger.warning('FsF-F3-01M : Content identifier inaccessible -: {0}, URLError reason {1} '.format( - url, e.reason)) - self.logger.warning('FsF-R1-01MD : Content identifier inaccessible -: {0}, URLError reason {1} '.format( - url, e.reason)) - self.logger.warning('FsF-R1.3-02D : Content identifier inaccessible -: {0}, URLError reason {1} '.format( - url, e.reason)) + self.logger.warning( + "FsF-F3-01M : Content identifier inaccessible -: {0}, URLError reason {1} ".format(url, e.reason) + ) + self.logger.warning( + "FsF-R1-01MD : Content identifier inaccessible -: {0}, URLError reason {1} ".format(url, e.reason) + ) + self.logger.warning( + "FsF-R1.3-02D : Content identifier inaccessible -: {0}, URLError reason {1} ".format(url, e.reason) + ) except Exception as e: - self.logger.warning('FsF-F3-01M : Content identifier inaccessible -:' +url +' '+ str(e)) - self.logger.warning('FsF-R1-01MD : Content identifier inaccessible -:' + url +' '+ str(e)) - self.logger.warning('FsF-R1.3-02D : Content identifier inaccessible -:' +url +' '+ str(e)) + self.logger.warning("FsF-F3-01M : Content identifier inaccessible -:" + url + " " + str(e)) + self.logger.warning("FsF-R1-01MD : Content identifier inaccessible -:" + url + " " + str(e)) + self.logger.warning("FsF-R1.3-02D : Content identifier inaccessible -:" + url + " " + str(e)) return fileinfo, file_buffer_object def tika(self, file_buffer_object, url): - parsed_content = '' - tika_content_types = '' - fileinfo={'tika_content_type':[]} + parsed_content = "" + tika_content_types = "" + fileinfo = {"tika_content_type": []} status = None try: if len(file_buffer_object.getvalue()) > 0: parsedFile = parser.from_buffer(file_buffer_object.getvalue()) - #print('TIKA: ',url, parsedFile) - #if not parsedFile.get('content'): + # print('TIKA: ',url, parsedFile) + # if not parsedFile.get('content'): # print('NO CONTENT') - #else: + # else: # print('HAS CONTENT') - fileinfo['tika_status'] = status = parsedFile.get('status') - tika_content_types = parsedFile.get('metadata').get('Content-Type') - parsed_content = parsedFile.get('content') - self.logger.info('{0} : Successfully parsed data object file using TIKA'.format( - 'FsF-R1-01MD')) + fileinfo["tika_status"] = status = parsedFile.get("status") + tika_content_types = parsedFile.get("metadata").get("Content-Type") + parsed_content = parsedFile.get("content") + self.logger.info("{0} : Successfully parsed data object file using TIKA".format("FsF-R1-01MD")) file_buffer_object.close() parsedFile.clear() else: - self.logger.warning('{0} : Could not parse data object file using TIKA'.format( - 'FsF-R1-01MD')) + self.logger.warning("{0} : Could not parse data object file using TIKA".format("FsF-R1-01MD")) except Exception as e: - self.logger.warning('{0} : File parsing using TIKA failed -: {1}'.format( - 'FsF-R1-01MD', e)) + self.logger.warning("{0} : File parsing using TIKA failed -: {1}".format("FsF-R1-01MD", e)) # in case TIKA request fails use response header info tika_content_types = str(self.content_type) if isinstance(tika_content_types, list): - fileinfo['tika_content_type'] = list(set(i.split(';')[0] for i in tika_content_types)) + fileinfo["tika_content_type"] = list(set(i.split(";")[0] for i in tika_content_types)) else: - content_types_str = tika_content_types.split(';')[0] - fileinfo['tika_content_type'].append(content_types_str) - fileinfo['tika_content_type'] = self.extend_mime_type_list(fileinfo['tika_content_type']) + content_types_str = tika_content_types.split(";")[0] + fileinfo["tika_content_type"].append(content_types_str) + fileinfo["tika_content_type"] = self.extend_mime_type_list(fileinfo["tika_content_type"]) # Extract the text content from the parsed file and convert to string - self.logger.info('{0} : File request status code -: {1}'.format('FsF-R1-01MD', status)) + self.logger.info("{0} : File request status code -: {1}".format("FsF-R1-01MD", status)) - fileinfo['test_data_content_text'] = str(re.sub(r'[\r\n\t\s]+', ' ', str(parsed_content))) + fileinfo["test_data_content_text"] = str(re.sub(r"[\r\n\t\s]+", " ", str(parsed_content))) # Escape any slash # test_data_content_text = parsed_content.replace('\\', '\\\\').replace('"', '\\"') - if fileinfo['test_data_content_text']: - self.logger.info( - 'FsF-R1-01MD : Succesfully parsed data file(s) -: {}'.format(url)) + if fileinfo["test_data_content_text"]: + self.logger.info("FsF-R1-01MD : Succesfully parsed data file(s) -: {}".format(url)) return fileinfo - diff --git a/fuji_server/harvester/metadata_harvester.py b/fuji_server/harvester/metadata_harvester.py index fff9626b..32e024d6 100644 --- a/fuji_server/harvester/metadata_harvester.py +++ b/fuji_server/harvester/metadata_harvester.py @@ -6,18 +6,18 @@ import mimetypes import re import urllib -from urllib.parse import urlparse, urljoin +from urllib.parse import urljoin, urlparse -from rapidfuzz import process, fuzz -from tldextract import extract import extruct import lxml from bs4 import BeautifulSoup from pyRdfa import pyRdfa +from rapidfuzz import fuzz, process +from tldextract import extract -#from fuji_server.controllers.fair_check import ME +# from fuji_server.controllers.fair_check import ME from fuji_server.helper.identifier_helper import IdentifierHelper -from fuji_server.helper.metadata_collector import MetaDataCollector, MetadataSources, MetadataOfferingMethods +from fuji_server.helper.metadata_collector import MetaDataCollector, MetadataOfferingMethods, MetadataSources from fuji_server.helper.metadata_collector_datacite import MetaDataCollectorDatacite from fuji_server.helper.metadata_collector_dublincore import MetaDataCollectorDublinCore from fuji_server.helper.metadata_collector_highwire_eprints import MetaDataCollectorHighwireEprints @@ -29,14 +29,33 @@ from fuji_server.helper.metadata_mapper import Mapper from fuji_server.helper.metadata_provider_rss_atom import RSSAtomMetadataProvider from fuji_server.helper.preprocessor import Preprocessor -from fuji_server.helper.request_helper import RequestHelper, AcceptTypes +from fuji_server.helper.request_helper import AcceptTypes, RequestHelper + -class MetadataHarvester(): +class MetadataHarvester: LOG_SUCCESS = 25 LOG_FAILURE = 35 - signposting_relation_types = ['describedby', 'item','license','type','collection', 'author','linkset','cite-as'] - def __init__(self, uid, use_datacite = True, logger = None, auth_token = None, auth_token_type = 'Basic', allowed_harvesting_methods = None): - uid_bytes = uid.encode('utf-8') + signposting_relation_types = [ + "describedby", + "item", + "license", + "type", + "collection", + "author", + "linkset", + "cite-as", + ] + + def __init__( + self, + uid, + use_datacite=True, + logger=None, + auth_token=None, + auth_token_type="Basic", + allowed_harvesting_methods=None, + ): + uid_bytes = uid.encode("utf-8") self.test_id = hashlib.sha1(uid_bytes).hexdigest() # str(base64.urlsafe_b64encode(uid_bytes), "utf-8") # an id we can use for caching etc if isinstance(uid, str): @@ -51,16 +70,16 @@ def __init__(self, uid, use_datacite = True, logger = None, auth_token = None, a self.landing_html = None self.landing_url = None self.landing_page_status = None - self.landing_redirect_list =[] #urlsvisited during redirects - self.landing_redirect_status_list = []# list with stati + self.landing_redirect_list = [] # urlsvisited during redirects + self.landing_redirect_status_list = [] # list with stati self.landing_content_type = None self.origin_url = None self.pid_url = None - self.redirect_url = None #usually the landing page url + self.redirect_url = None # usually the landing page url self.repeat_pid_check = False self.related_resources = [] self.metadata_merged = {} - self.typed_links =[] + self.typed_links = [] self.STANDARD_PROTOCOLS = Preprocessor.get_standard_protocols() self.reference_elements = Mapper.REFERENCE_METADATA_LIST.value.copy() self.valid_pid_types = IdentifierHelper.VALID_PIDS @@ -72,28 +91,31 @@ def __init__(self, uid, use_datacite = True, logger = None, auth_token = None, a self.signposting_header_links = [] self.use_datacite = use_datacite self.is_html_page = False - #Do something with this + # Do something with this self.pid_collector = {} - logging.addLevelName(self.LOG_SUCCESS, 'SUCCESS') - logging.addLevelName(self.LOG_FAILURE, 'FAILURE') - #set allowed methods for metadata harvesting + logging.addLevelName(self.LOG_SUCCESS, "SUCCESS") + logging.addLevelName(self.LOG_FAILURE, "FAILURE") + # set allowed methods for metadata harvesting self.allowed_harvesting_methods = [i for i in MetaDataCollector.getEnumMethodNames()] if allowed_harvesting_methods: if all(isinstance(x, enum.Enum) for x in allowed_harvesting_methods): self.allowed_harvesting_methods = allowed_harvesting_methods - if isinstance(self.allowed_harvesting_methods,list): + if isinstance(self.allowed_harvesting_methods, list): self.allowed_harvesting_sources = MetadataSources.getSourcesbyMethod(self.allowed_harvesting_methods) else: self.allowed_harvesting_sources = [i for i in MetaDataCollector.getEnumSourceNames()] - #print('allowed sources: ', self.allowed_harvesting_sources) - #print('allowed methods: ', self.allowed_harvesting_methods) + # print('allowed sources: ', self.allowed_harvesting_sources) + # print('allowed methods: ', self.allowed_harvesting_methods) self.COMMUNITY_METADATA_STANDARDS = Preprocessor.get_metadata_standards() - self.COMMUNITY_METADATA_STANDARDS_URIS = {u.strip().strip('#/') : k for k, v in self.COMMUNITY_METADATA_STANDARDS.items() for u in v.get('urls')} - self.COMMUNITY_METADATA_STANDARDS_NAMES = {k: v.get('title') for k,v in self.COMMUNITY_METADATA_STANDARDS.items()} - + self.COMMUNITY_METADATA_STANDARDS_URIS = { + u.strip().strip("#/"): k for k, v in self.COMMUNITY_METADATA_STANDARDS.items() for u in v.get("urls") + } + self.COMMUNITY_METADATA_STANDARDS_NAMES = { + k: v.get("title") for k, v in self.COMMUNITY_METADATA_STANDARDS.items() + } def is_harvesting_source_allowed(self, method): - #test full or part string in one of the allowed source method keys + # test full or part string in one of the allowed source method keys if method in self.allowed_harvesting_sources: return True else: @@ -105,65 +127,77 @@ def is_harvesting_method_allowed(self, method): else: return False - def add_metadata_source(self,source): - #print(source.value) + def add_metadata_source(self, source): + # print(source.value) try: - self.metadata_sources.append((source.name, source.value.get('method'))) + self.metadata_sources.append((source.name, source.value.get("method"))) except Exception as e: - print('Add Metadata Source Error: ', str(e)) + print("Add Metadata Source Error: ", str(e)) - def merge_metadata(self, metadict, url, method, format, mimetype, schema='', namespaces = []): + def merge_metadata(self, metadict, url, method, format, mimetype, schema="", namespaces=[]): try: offering_method = None if not isinstance(namespaces, list): namespaces = [namespaces] - if isinstance(metadict,dict): - #self.metadata_sources.append((method_source, 'negotiated')) + if isinstance(metadict, dict): + # self.metadata_sources.append((method_source, 'negotiated')) for r in metadict.keys(): if r in self.reference_elements: self.metadata_merged[r] = metadict[r] self.reference_elements.pop(r) - #self.reference_elements.remove(r) - if metadict.get('object_identifier'): - if not isinstance(metadict.get('object_identifier'), list): - metadict['object_identifier'] = [metadict.get('object_identifier')] - for object_identifier in metadict.get('object_identifier'): + # self.reference_elements.remove(r) + if metadict.get("object_identifier"): + if not isinstance(metadict.get("object_identifier"), list): + metadict["object_identifier"] = [metadict.get("object_identifier")] + for object_identifier in metadict.get("object_identifier"): resolves_to_landing_domain = False pid_helper = IdentifierHelper(object_identifier, self.logger) - if pid_helper.identifier_url not in self.pid_collector and pid_helper.is_persistent and pid_helper.preferred_schema in self.valid_pid_types: + if ( + pid_helper.identifier_url not in self.pid_collector + and pid_helper.is_persistent + and pid_helper.preferred_schema in self.valid_pid_types + ): pid_record = pid_helper.get_identifier_info(self.pid_collector) self.pid_collector[pid_helper.identifier_url] = pid_record - resolves_to_landing_domain = self.check_if_pid_resolves_to_landing_page(pid_helper.identifier_url) - self.pid_collector[pid_helper.identifier_url]['verified'] = resolves_to_landing_domain - - if metadict.get('related_resources'): - self.related_resources.extend(metadict.get('related_resources')) - if metadict.get('object_content_identifier'): - self.logger.info('FsF-F3-01M : Found data links in '+str(format)+' metadata -: ' + - str(len(metadict.get('object_content_identifier')))) + resolves_to_landing_domain = self.check_if_pid_resolves_to_landing_page( + pid_helper.identifier_url + ) + self.pid_collector[pid_helper.identifier_url]["verified"] = resolves_to_landing_domain + + if metadict.get("related_resources"): + self.related_resources.extend(metadict.get("related_resources")) + if metadict.get("object_content_identifier"): + self.logger.info( + "FsF-F3-01M : Found data links in " + + str(format) + + " metadata -: " + + str(len(metadict.get("object_content_identifier"))) + ) ## add: mechanism ('content negotiation', 'typed links', 'embedded') ## add: format namespace if isinstance(method, enum.Enum): if isinstance(method.value, dict): - offering_method = method.value.get('method').acronym() + offering_method = method.value.get("method").acronym() method = method.name test_uris = namespaces test_uris.append(schema) metadata_standard = self.get_metadata_standard_by_uris(test_uris) - mdict = {'method' : method, - 'offering_method':offering_method, - 'url' : url, - 'format' : format.acronym(), - 'metadata_standard': metadata_standard, - 'mime' : mimetype, - 'schema' : schema, - 'metadata' : metadict, - 'namespaces' : namespaces} + mdict = { + "method": method, + "offering_method": offering_method, + "url": url, + "format": format.acronym(), + "metadata_standard": metadata_standard, + "mime": mimetype, + "schema": schema, + "metadata": metadict, + "namespaces": namespaces, + } if mdict not in self.metadata_unmerged: self.metadata_unmerged.append(mdict) except Exception as e: - print('Metadata Merge Error: '+str(e), format, mimetype, schema) + print("Metadata Merge Error: " + str(e), format, mimetype, schema) def exclude_null(self, dt): if type(dt) is dict: @@ -178,25 +212,27 @@ def exclude_null(self, dt): else: return dt - def check_if_pid_resolves_to_landing_page(self, pid_url = None): + def check_if_pid_resolves_to_landing_page(self, pid_url=None): if pid_url in self.pid_collector: - candidate_landing_url = self.pid_collector[pid_url].get('resolved_url') + candidate_landing_url = self.pid_collector[pid_url].get("resolved_url") if candidate_landing_url and self.landing_url: candidate_landing_url_parts = extract(candidate_landing_url) landing_url_parts = extract(self.landing_url) - input_id_domain = candidate_landing_url_parts.domain + '.' + candidate_landing_url_parts.suffix - landing_domain = landing_url_parts.domain + '.' + landing_url_parts.suffix + input_id_domain = candidate_landing_url_parts.domain + "." + candidate_landing_url_parts.suffix + landing_domain = landing_url_parts.domain + "." + landing_url_parts.suffix if landing_domain != input_id_domain: self.logger.warning( - 'FsF-F1-02D : Landing page domain resolved from PID found in metadata does not match with input URL domain -:'+str(pid_url) + "FsF-F1-02D : Landing page domain resolved from PID found in metadata does not match with input URL domain -:" + + str(pid_url) ) self.logger.warning( - 'FsF-F2-01M : Landing page domain resolved from PID found in metadata does not match with input URL domain -:'+str(pid_url) + "FsF-F2-01M : Landing page domain resolved from PID found in metadata does not match with input URL domain -:" + + str(pid_url) ) return False else: self.logger.info( - 'FsF-F1-02D : Verified PID found in metadata since it is resolving to user input URL domain' + "FsF-F1-02D : Verified PID found in metadata since it is resolving to user input URL domain" ) return True else: @@ -210,18 +246,22 @@ def check_pidtest_repeat(self): if self.related_resources: for relation in self.related_resources: try: - if relation.get('relation_type') == 'isPartOf' and isinstance(relation.get('related_resource'), str): - parent_identifier = IdentifierHelper(relation.get('related_resource'), self.logger) + if relation.get("relation_type") == "isPartOf" and isinstance( + relation.get("related_resource"), str + ): + parent_identifier = IdentifierHelper(relation.get("related_resource"), self.logger) if parent_identifier.is_persistent: - self.logger.info('FsF-F2-01M : Found parent (isPartOf) identifier which is a PID in metadata, you may consider to assess the parent') + self.logger.info( + "FsF-F2-01M : Found parent (isPartOf) identifier which is a PID in metadata, you may consider to assess the parent" + ) except Exception as e: - print('Relation error: ',e) + print("Relation error: ", e) pass - if self.metadata_merged.get('object_identifier'): - if isinstance(self.metadata_merged.get('object_identifier'), list): - identifiertotest = self.metadata_merged.get('object_identifier') + if self.metadata_merged.get("object_identifier"): + if isinstance(self.metadata_merged.get("object_identifier"), list): + identifiertotest = self.metadata_merged.get("object_identifier") else: - identifiertotest = [self.metadata_merged.get('object_identifier')] + identifiertotest = [self.metadata_merged.get("object_identifier")] if self.pid_scheme is None: found_pids = {} for pidcandidate in identifiertotest: @@ -229,7 +269,7 @@ def check_pidtest_repeat(self): found_id_scheme = idhelper.preferred_schema validated = False if self.pid_collector.get(idhelper.identifier_url): - if self.pid_collector.get(idhelper.identifier_url).get('verified'): + if self.pid_collector.get(idhelper.identifier_url).get("verified"): validated = True else: validated = False @@ -237,17 +277,19 @@ def check_pidtest_repeat(self): found_pids[found_id_scheme] = idhelper.get_identifier_url() if len(found_pids) >= 1 and self.repeat_pid_check == False: self.logger.info( - 'FsF-F2-01M : Found object identifier in metadata, repeating PID check for FsF-F1-02D') + "FsF-F2-01M : Found object identifier in metadata, repeating PID check for FsF-F1-02D" + ) self.logger.info( - 'FsF-F1-02D : Found object identifier in metadata during FsF-F2-01M, therefore PID check was repeated') + "FsF-F1-02D : Found object identifier in metadata during FsF-F2-01M, therefore PID check was repeated" + ) self.repeat_pid_check = True - if 'doi' in found_pids: - self.pid_url = found_pids['doi'] - self.pid_scheme = 'doi' + if "doi" in found_pids: + self.pid_url = found_pids["doi"] + self.pid_scheme = "doi" else: self.pid_scheme, self.pid_url = next(iter(found_pids.items())) - '''def get_html_xml_links(self): + """def get_html_xml_links(self): xmllinks=[] if self.landing_html: try: @@ -292,7 +334,7 @@ def get_guessed_xml_link(self): response.close() except: self.logger.info('FsF-F2-01M : Guessed XML retrieval failed for -: ' + guessed_link) - return datalink''' + return datalink""" def set_html_typed_links(self): try: @@ -302,112 +344,131 @@ def set_html_typed_links(self): if isinstance(self.landing_html, str): if self.landing_html: try: - dom = lxml.html.fromstring(self.landing_html.encode('utf8')) - links = dom.xpath('/*/head/link') + dom = lxml.html.fromstring(self.landing_html.encode("utf8")) + links = dom.xpath("/*/head/link") for l in links: source = MetadataOfferingMethods.TYPED_LINKS - href = l.attrib.get('href') - rel = l.attrib.get('rel') - type = l.attrib.get('type') - profile = l.attrib.get('format') + href = l.attrib.get("href") + rel = l.attrib.get("rel") + type = l.attrib.get("type") + profile = l.attrib.get("format") type = str(type).strip() - #handle relative paths + # handle relative paths linkparts = urlparse(href) - if linkparts.scheme == '': + if linkparts.scheme == "": href = urljoin(self.landing_url, href) - if linkparts.path.endswith('.xml'): - if type not in ['application/xml','text/xml'] and not type.endswith('+xml'): - type += '+xml' - #signposting links - #https://www.w3.org/2001/sw/RDFCore/20031212-rdfinhtml/ recommends: link rel="meta" as well as "alternate meta" - if rel in ['meta','alternate meta','metadata','collection','author','describes','item','type','search','alternate','describedby','cite-as','linkset','license']: + if linkparts.path.endswith(".xml"): + if type not in ["application/xml", "text/xml"] and not type.endswith("+xml"): + type += "+xml" + # signposting links + # https://www.w3.org/2001/sw/RDFCore/20031212-rdfinhtml/ recommends: link rel="meta" as well as "alternate meta" + if rel in [ + "meta", + "alternate meta", + "metadata", + "collection", + "author", + "describes", + "item", + "type", + "search", + "alternate", + "describedby", + "cite-as", + "linkset", + "license", + ]: if rel in self.signposting_relation_types: source = MetadataOfferingMethods.SIGNPOSTING - self.typed_links.append({ - 'url': href, - 'type': type, - 'rel': rel, - 'profile': profile, - 'source' : source - }) + self.typed_links.append( + {"url": href, "type": type, "rel": rel, "profile": profile, "source": source} + ) except: - self.logger.info('FsF-F2-01M : Typed links identification failed -:') + self.logger.info("FsF-F2-01M : Typed links identification failed -:") else: - self.logger.info('FsF-F2-01M : Expected HTML to check for typed links but received empty string ') - + self.logger.info("FsF-F2-01M : Expected HTML to check for typed links but received empty string ") def set_signposting_header_links(self, content, header): - header_link_string = header.get('Link') + header_link_string = header.get("Link") if header_link_string is not None: self.signposting_header_links = self.parse_signposting_http_link_format(header_link_string) if self.signposting_header_links: - self.logger.info('FsF-F1-02D : Found signposting links in response header of landingpage -: ' + str(len( - self.signposting_header_links))) + self.logger.info( + "FsF-F1-02D : Found signposting links in response header of landingpage -: " + + str(len(self.signposting_header_links)) + ) def set_signposting_linkset_links(self): linksetlinks = [] - linksetlink ={} - if self.get_html_typed_links('linkset'): - linksetlinks = self.get_html_typed_links('linkset') - elif self.get_signposting_header_links('linkset'): - linksetlinks = self.get_signposting_header_links('linkset') + linksetlink = {} + if self.get_html_typed_links("linkset"): + linksetlinks = self.get_html_typed_links("linkset") + elif self.get_signposting_header_links("linkset"): + linksetlinks = self.get_signposting_header_links("linkset") if linksetlinks: linksetlink = linksetlinks[0] try: - if linksetlink.get('url'): - requestHelper = RequestHelper(linksetlink.get('url'), self.logger) + if linksetlink.get("url"): + requestHelper = RequestHelper(linksetlink.get("url"), self.logger) requestHelper.setAcceptType(AcceptTypes.linkset) - neg_source, linkset_data= requestHelper.content_negotiate('FsF-F1-02D') + neg_source, linkset_data = requestHelper.content_negotiate("FsF-F1-02D") if isinstance(linkset_data, dict): - if isinstance(linkset_data.get('linkset'),list): + if isinstance(linkset_data.get("linkset"), list): validlinkset = None - for candidatelinkset in linkset_data.get('linkset'): + for candidatelinkset in linkset_data.get("linkset"): if isinstance(candidatelinkset, dict): - if candidatelinkset.get('anchor') in [self.pid_url,self.landing_url]: + if candidatelinkset.get("anchor") in [self.pid_url, self.landing_url]: validlinkset = candidatelinkset break if validlinkset: for linktype, links in validlinkset.items(): - if linktype != 'anchor': + if linktype != "anchor": if not isinstance(links, list): links = [links] for link in links: if linktype in self.signposting_relation_types: - self.typed_links.append({ - 'url': link.get('href'), - 'type': link.get('type'), - 'rel': linktype, - 'profile': link.get('profile'), - 'source' : MetadataOfferingMethods.SIGNPOSTING - }) - self.logger.info('FsF-F2-01M : Found valid Signposting Linkset in provided JSON file') + self.typed_links.append( + { + "url": link.get("href"), + "type": link.get("type"), + "rel": linktype, + "profile": link.get("profile"), + "source": MetadataOfferingMethods.SIGNPOSTING, + } + ) + self.logger.info("FsF-F2-01M : Found valid Signposting Linkset in provided JSON file") else: - self.logger.warning('FsF-F2-01M : Found Signposting Linkset but none of the given anchors matches landing oage or PID') + self.logger.warning( + "FsF-F2-01M : Found Signposting Linkset but none of the given anchors matches landing oage or PID" + ) else: validlinkset = False parsed_links = self.parse_signposting_http_link_format(linkset_data.decode()) try: - if parsed_links[0].get('anchor'): - self.logger.info('FsF-F2-01M : Found valid Signposting Linkset in provided text file') + if parsed_links[0].get("anchor"): + self.logger.info("FsF-F2-01M : Found valid Signposting Linkset in provided text file") for parsed_link in parsed_links: - if parsed_link.get('anchor') in [self.pid_url, self.landing_url]: + if parsed_link.get("anchor") in [self.pid_url, self.landing_url]: self.typed_links.append(parsed_link) validlinkset = True if not validlinkset: self.logger.warning( - 'FsF-F2-01M : Found Signposting Linkset but none of the given anchors matches landing page or PID') + "FsF-F2-01M : Found Signposting Linkset but none of the given anchors matches landing page or PID" + ) except Exception as e: - self.logger.warning('FsF-F2-01M : Found Signposting Linkset but could not correctly parse the file') + self.logger.warning( + "FsF-F2-01M : Found Signposting Linkset but could not correctly parse the file" + ) print(e) except Exception as e: - self.logger.warning('FsF-F2-01M : Failed to parse Signposting Linkset -: '+str(e)) + self.logger.warning("FsF-F2-01M : Failed to parse Signposting Linkset -: " + str(e)) def get_signposting_object_identifier(self): # check if there is a cite-as signposting link signposting_pid = None - signposting_header_pids = self.get_signposting_header_links('cite-as') - signposting_html_pids = self.get_html_typed_links('cite-as') + signposting_header_pids = self.get_signposting_header_links("cite-as") + signposting_html_pids = self.get_html_typed_links("cite-as") signposting_pid_link_list = [] if isinstance(signposting_header_pids, list): signposting_pid_link_list = signposting_header_pids @@ -416,49 +477,55 @@ def get_signposting_object_identifier(self): if signposting_pid_link_list: for signposting_pid_link in signposting_pid_link_list: - signposting_pid = signposting_pid_link.get('url') + signposting_pid = signposting_pid_link.get("url") if signposting_pid: self.logger.info( - 'FsF-F1-02D : Found object identifier (cite-as) in signposting links -:' + str( - signposting_pid)) - if not signposting_pid_link.get('type'): + "FsF-F1-02D : Found object identifier (cite-as) in signposting links -:" + str(signposting_pid) + ) + if not signposting_pid_link.get("type"): self.logger.warning( - 'FsF-F1-02D : Found cite-as signposting links has no type attribute-:' + str( - signposting_pid)) + "FsF-F1-02D : Found cite-as signposting links has no type attribute-:" + + str(signposting_pid) + ) signidhelper = IdentifierHelper(signposting_pid, self.logger) - if self.metadata_merged.get('object_identifier'): - if isinstance(self.metadata_merged.get('object_identifier'), list): - self.metadata_merged['object_identifier'].append(signposting_pid) + if self.metadata_merged.get("object_identifier"): + if isinstance(self.metadata_merged.get("object_identifier"), list): + self.metadata_merged["object_identifier"].append(signposting_pid) else: - self.metadata_merged['object_identifier'] = [signposting_pid] - if signidhelper.identifier_url not in self.pid_collector and signidhelper.is_persistent and signidhelper.preferred_schema in self.valid_pid_types: + self.metadata_merged["object_identifier"] = [signposting_pid] + if ( + signidhelper.identifier_url not in self.pid_collector + and signidhelper.is_persistent + and signidhelper.preferred_schema in self.valid_pid_types + ): signpid_record = signidhelper.get_identifier_info(self.pid_collector) self.pid_collector[signidhelper.identifier_url] = signpid_record - resolves_to_landing_domain = self.check_if_pid_resolves_to_landing_page(signidhelper.identifier_url) - self.pid_collector[signidhelper.identifier_url]['verified'] = resolves_to_landing_domain - + resolves_to_landing_domain = self.check_if_pid_resolves_to_landing_page( + signidhelper.identifier_url + ) + self.pid_collector[signidhelper.identifier_url]["verified"] = resolves_to_landing_domain - def get_html_typed_links(self, rel='item', allkeys=True): + def get_html_typed_links(self, rel="item", allkeys=True): # Use Typed Links in HTTP Link headers to help machines find the resources that make up a publication. # Use links to find domains specific metadata datalinks = [] if not isinstance(rel, list): rel = [rel] for typed_link in self.typed_links: - if typed_link.get('rel') in rel: + if typed_link.get("rel") in rel: if not allkeys: - typed_link = {tlkey: typed_link[tlkey] for tlkey in ['url', 'type', 'source']} + typed_link = {tlkey: typed_link[tlkey] for tlkey in ["url", "type", "source"]} datalinks.append((typed_link)) return datalinks - def get_signposting_header_links(self, rel='item', allkeys=True): + def get_signposting_header_links(self, rel="item", allkeys=True): signlinks = [] if not isinstance(rel, list): rel = [rel] for signposting_links in self.signposting_header_links: - if signposting_links.get('rel') in rel: + if signposting_links.get("rel") in rel: if not allkeys: - signposting_links = {slkey: signposting_links[slkey] for slkey in ['url', 'type', 'source']} + signposting_links = {slkey: signposting_links[slkey] for slkey in ["url", "type", "source"]} signlinks.append(signposting_links) if signlinks == []: signlinks = None @@ -466,22 +533,22 @@ def get_signposting_header_links(self, rel='item', allkeys=True): def parse_signposting_http_link_format(self, signposting_link_format_text): found_signposting_links = [] - for preparsed_link in signposting_link_format_text.split(','): + for preparsed_link in signposting_link_format_text.split(","): found_link = None found_type, type_match, anchor_match = None, None, None found_rel, rel_match = None, None found_formats, formats_match = None, None - parsed_link = preparsed_link.strip().split(';') + parsed_link = preparsed_link.strip().split(";") found_link = parsed_link[0].strip() for link_prop in parsed_link[1:]: link_prop = str(link_prop).strip() - if link_prop.startswith('anchor'): + if link_prop.startswith("anchor"): anchor_match = re.search(r'anchor\s*=\s*\"?([^,;"]+)\"?', link_prop) - if link_prop.startswith('rel'): + if link_prop.startswith("rel"): rel_match = re.search(r'rel\s*=\s*\"?([^,;"]+)\"?', link_prop) - elif link_prop.startswith('type'): + elif link_prop.startswith("type"): type_match = re.search(r'type\s*=\s*\"?([^,;"]+)\"?', link_prop) - elif link_prop.startswith('formats'): + elif link_prop.startswith("formats"): formats_match = re.search(r'formats\s*=\s*\"?([^,;"]+)\"?', link_prop) if type_match: found_type = type_match[1] @@ -490,30 +557,34 @@ def parse_signposting_http_link_format(self, signposting_link_format_text): if formats_match: found_formats = formats_match[1] signposting_link_dict = { - 'url': found_link[1:-1], - 'type': str(found_type).strip(), - 'rel': str(found_rel).strip(), - 'profile': found_formats, - 'source': MetadataOfferingMethods.SIGNPOSTING + "url": found_link[1:-1], + "type": str(found_type).strip(), + "rel": str(found_rel).strip(), + "profile": found_formats, + "source": MetadataOfferingMethods.SIGNPOSTING, } if anchor_match: - signposting_link_dict['anchor'] = anchor_match[1] - if signposting_link_dict.get('url') and signposting_link_dict.get('rel') in self.signposting_relation_types: + signposting_link_dict["anchor"] = anchor_match[1] + if signposting_link_dict.get("url") and signposting_link_dict.get("rel") in self.signposting_relation_types: found_signposting_links.append(signposting_link_dict) - return found_signposting_links + return found_signposting_links def raise_warning_if_javascript_page(self, response_content): # check if javascript generated content only: try: - soup = BeautifulSoup(response_content, features='html.parser') - script_content = soup.findAll('script') - for script in soup(['script', 'style', 'title', 'noscript']): + soup = BeautifulSoup(response_content, features="html.parser") + script_content = soup.findAll("script") + for script in soup(["script", "style", "title", "noscript"]): script.extract() text_content = soup.get_text(strip=True) if (len(str(script_content)) > len(str(text_content))) and len(text_content) <= 150: - self.logger.warning('FsF-F1-02D : Landing page seems to be JavaScript generated, could not detect enough content') - self.logger.warning('FsF-F2-01M : Landing page seems to be JavaScript generated, could not detect enough content') + self.logger.warning( + "FsF-F1-02D : Landing page seems to be JavaScript generated, could not detect enough content" + ) + self.logger.warning( + "FsF-F2-01M : Landing page seems to be JavaScript generated, could not detect enough content" + ) except Exception as e: pass @@ -521,64 +592,69 @@ def raise_warning_if_javascript_page(self, response_content): def clean_html_language_tag(self, response_content): # avoid RDFa errors try: - langregex = r' 0]) if len(extracted) == 0: extracted = {} else: - print('NO LANDING HTML') + print("NO LANDING HTML") return extracted def retrieve_metadata_embedded(self): - # ======= RETRIEVE METADATA FROM LANDING PAGE ======= response_status = None try: - self.logger.info('FsF-F2-01M : Trying to resolve input URL -: ' + str(self.id)) + self.logger.info("FsF-F2-01M : Trying to resolve input URL -: " + str(self.id)) # check if is PID in this case complete to URL and add to pid_collector idhelper = IdentifierHelper(self.id, self.logger) if idhelper.is_persistent: self.pid_scheme = idhelper.preferred_schema self.pid_url = idhelper.identifier_url - self.pid_collector[self.pid_url] = {'pid':self.id, - 'pid_url':self.pid_url, - 'scheme':self.pid_scheme, - 'is_persistent': True} - #as a input PID it is verified even if it is not resolved - self.pid_collector[self.pid_url]['verified'] = True + self.pid_collector[self.pid_url] = { + "pid": self.id, + "pid_url": self.pid_url, + "scheme": self.pid_scheme, + "is_persistent": True, + } + # as a input PID it is verified even if it is not resolved + self.pid_collector[self.pid_url]["verified"] = True input_url = idhelper.get_identifier_url() @@ -586,39 +662,44 @@ def retrieve_metadata_embedded(self): if input_urlscheme in self.STANDARD_PROTOCOLS: self.origin_url = input_url requestHelper = RequestHelper(input_url, self.logger) - requestHelper.setAuthToken(self.auth_token,self.auth_token_type) - #requestHelper.setAcceptType(AcceptTypes.html_xml) # request + requestHelper.setAuthToken(self.auth_token, self.auth_token_type) + # requestHelper.setAcceptType(AcceptTypes.html_xml) # request requestHelper.setAcceptType(AcceptTypes.default) # request - neg_source, landingpage_html = requestHelper.content_negotiate('FsF-F1-02D', ignore_html=False) - if not 'html' in str(requestHelper.content_type): - self.logger.info('FsF-F2-01M :Content type is ' + str(requestHelper.content_type) + - ', therefore skipping Embedded metadata (microdata, RDFa) tests') + neg_source, landingpage_html = requestHelper.content_negotiate("FsF-F1-02D", ignore_html=False) + if not "html" in str(requestHelper.content_type): + self.logger.info( + "FsF-F2-01M :Content type is " + + str(requestHelper.content_type) + + ", therefore skipping Embedded metadata (microdata, RDFa) tests" + ) else: self.is_html_page = True if requestHelper.redirect_url and requestHelper.response_status == 200: - self.isLandingPageAccessible = True self.landing_url = requestHelper.redirect_url if self.pid_url in self.pid_collector: - self.pid_collector[self.pid_url]['verified'] = True - self.pid_collector[self.pid_url]['resolved_url'] = self.landing_url + self.pid_collector[self.pid_url]["verified"] = True + self.pid_collector[self.pid_url]["resolved_url"] = self.landing_url self.redirect_url = requestHelper.redirect_url response_status = requestHelper.response_status self.landing_page_status = response_status - #if requestHelper.response_content: - #self.landing_url = requestHelper.redirect_url + # if requestHelper.response_content: + # self.landing_url = requestHelper.redirect_url else: - self.logger.warning('FsF-F2-01M :Skipping Embedded tests, no scheme/protocol detected to be able to resolve '+(str(self.id))) + self.logger.warning( + "FsF-F2-01M :Skipping Embedded tests, no scheme/protocol detected to be able to resolve " + + (str(self.id)) + ) except Exception as e: - self.logger.error('FsF-F2-01M : Resource inaccessible -: ' +str(e)) + self.logger.error("FsF-F2-01M : Resource inaccessible -: " + str(e)) pass if self.landing_url and self.is_html_page: - if self.landing_url not in ['https://datacite.org/invalid.html']: + if self.landing_url not in ["https://datacite.org/invalid.html"]: if response_status == 200: self.raise_warning_if_javascript_page(requestHelper.response_content) up = urlparse(self.landing_url) - self.landing_origin = '{uri.scheme}://{uri.netloc}'.format(uri=up) + self.landing_origin = "{uri.scheme}://{uri.netloc}".format(uri=up) self.landing_html = requestHelper.getResponseContent() self.landing_content_type = requestHelper.content_type self.landing_redirect_list = requestHelper.redirect_list @@ -626,16 +707,21 @@ def retrieve_metadata_embedded(self): elif response_status in [401, 402, 403]: self.isLandingPageAccessible = False self.logger.warning( - 'FsF-F1-02D : Resource inaccessible, identifier returned http status code -: {code}'.format( - code=response_status)) + "FsF-F1-02D : Resource inaccessible, identifier returned http status code -: {code}".format( + code=response_status + ) + ) else: self.isLandingPageAccessible = False self.logger.warning( - 'FsF-F1-02D : Resource inaccessible, identifier returned http status code -: {code}'.format( - code=response_status)) + "FsF-F1-02D : Resource inaccessible, identifier returned http status code -: {code}".format( + code=response_status + ) + ) else: self.logger.warning( - 'FsF-F1-02D : Invalid DOI, identifier resolved to -: {code}'.format(code=self.landing_url)) + "FsF-F1-02D : Invalid DOI, identifier resolved to -: {code}".format(code=self.landing_url) + ) self.landing_url = None try: if requestHelper.redirect_list: @@ -643,253 +729,336 @@ def retrieve_metadata_embedded(self): self.landing_redirect_status_list = requestHelper.redirect_status_list except: pass - #we have to test landin_url again, because above it may have been set to None again.. (invalid DOI) + # we have to test landin_url again, because above it may have been set to None again.. (invalid DOI) if self.landing_url and self.is_html_page: - self.set_html_typed_links() self.set_signposting_header_links(requestHelper.response_content, requestHelper.getResponseHeader()) self.set_signposting_linkset_links() - if self.is_harvesting_method_allowed(MetadataOfferingMethods.HTML_EMBEDDING) or self.is_harvesting_method_allowed(MetadataOfferingMethods.MICRODATA_RDFA): - self.logger.info('FsF-F2-01M : Starting to analyse EMBEDDED metadata at -: ' + str(self.landing_url)) - #test if content is html otherwise skip embedded tests - #print(self.landing_content_type) - if 'html' in str(self.landing_content_type): + if self.is_harvesting_method_allowed( + MetadataOfferingMethods.HTML_EMBEDDING + ) or self.is_harvesting_method_allowed(MetadataOfferingMethods.MICRODATA_RDFA): + self.logger.info("FsF-F2-01M : Starting to analyse EMBEDDED metadata at -: " + str(self.landing_url)) + # test if content is html otherwise skip embedded tests + # print(self.landing_content_type) + if "html" in str(self.landing_content_type): # ========= retrieve schema.org (embedded, or from via content-negotiation if pid provided) ========= extruct_metadata = self.retrieve_metadata_embedded_extruct() - #if extruct_metadata: + # if extruct_metadata: if self.is_harvesting_source_allowed(MetadataSources.SCHEMAORG_EMBEDDED): - ext_meta = extruct_metadata.get('json-ld') - self.logger.info('FsF-F2-01M : Trying to retrieve schema.org JSON-LD metadata from html page') + ext_meta = extruct_metadata.get("json-ld") + self.logger.info("FsF-F2-01M : Trying to retrieve schema.org JSON-LD metadata from html page") - schemaorg_collector_embedded = MetaDataCollectorRdf(loggerinst=self.logger, - json_ld_content=ext_meta, - source = MetadataSources.SCHEMAORG_EMBEDDED) + schemaorg_collector_embedded = MetaDataCollectorRdf( + loggerinst=self.logger, json_ld_content=ext_meta, source=MetadataSources.SCHEMAORG_EMBEDDED + ) source_schemaorg, schemaorg_dict = schemaorg_collector_embedded.parse_metadata() metaformat = schemaorg_collector_embedded.metadata_format schemaorg_dict = self.exclude_null(schemaorg_dict) if schemaorg_dict: self.namespace_uri.extend(schemaorg_collector_embedded.namespaces) self.linked_namespace_uri.update(schemaorg_collector_embedded.getLinkedNamespaces()) - #self.metadata_sources.append((source_schemaorg.name, source_schemaorg.value.get('method'))) + # self.metadata_sources.append((source_schemaorg.name, source_schemaorg.value.get('method'))) self.add_metadata_source(source_schemaorg) - if schemaorg_dict.get('related_resources'): - self.related_resources.extend(schemaorg_dict.get('related_resources')) + if schemaorg_dict.get("related_resources"): + self.related_resources.extend(schemaorg_dict.get("related_resources")) # add object type for future reference - self.merge_metadata(schemaorg_dict, self.landing_url, source_schemaorg, metaformat,'application/ld+json','http://schema.org', schemaorg_collector_embedded.namespaces) + self.merge_metadata( + schemaorg_dict, + self.landing_url, + source_schemaorg, + metaformat, + "application/ld+json", + "http://schema.org", + schemaorg_collector_embedded.namespaces, + ) self.logger.log( self.LOG_SUCCESS, - 'FsF-F2-01M : Found schema.org JSON-LD metadata in html page -: ' + str(schemaorg_dict.keys())) + "FsF-F2-01M : Found schema.org JSON-LD metadata in html page -: " + + str(schemaorg_dict.keys()), + ) else: - self.logger.info('FsF-F2-01M : schema.org JSON-LD metadata in html page UNAVAILABLE') + self.logger.info("FsF-F2-01M : schema.org JSON-LD metadata in html page UNAVAILABLE") else: - self.logger.info('FsF-F2-01M : Skipped disabled harvesting method -: ' + str(MetadataSources.SCHEMAORG_EMBEDDED.value.get('label'))) + self.logger.info( + "FsF-F2-01M : Skipped disabled harvesting method -: " + + str(MetadataSources.SCHEMAORG_EMBEDDED.value.get("label")) + ) # ========= retrieve highwire and eprints embedded in html page ========= if self.reference_elements: if self.is_harvesting_source_allowed(MetadataSources.HIGHWIRE_EPRINTS_EMBEDDED): - self.logger.info('FsF-F2-01M : Trying to retrieve Highwire and eprints metadata from html page') - hw_collector = MetaDataCollectorHighwireEprints(loggerinst=self.logger, - sourcemetadata=self.landing_html) + self.logger.info( + "FsF-F2-01M : Trying to retrieve Highwire and eprints metadata from html page" + ) + hw_collector = MetaDataCollectorHighwireEprints( + loggerinst=self.logger, sourcemetadata=self.landing_html + ) source_hw, hw_dict = hw_collector.parse_metadata() hw_metaformat = hw_collector.metadata_format hw_dict = self.exclude_null(hw_dict) if hw_dict: self.namespace_uri.extend(hw_collector.namespaces) - #not_null_dc = [k for k, v in dc_dict.items() if v is not None] + # not_null_dc = [k for k, v in dc_dict.items() if v is not None] self.add_metadata_source(source_hw) - #self.metadata_sources.append((source_hw, 'embedded')) - if hw_dict.get('related_resources'): - self.related_resources.extend(hw_dict.get('related_resources')) - self.merge_metadata(hw_dict, self.landing_url, source_hw, hw_metaformat, 'text/html','highwire_eprints', hw_collector.namespaces) - - self.logger.log(self.LOG_SUCCESS, - 'FsF-F2-01M : Found Highwire or eprints metadata -: ' + str(hw_dict.keys())) + # self.metadata_sources.append((source_hw, 'embedded')) + if hw_dict.get("related_resources"): + self.related_resources.extend(hw_dict.get("related_resources")) + self.merge_metadata( + hw_dict, + self.landing_url, + source_hw, + hw_metaformat, + "text/html", + "highwire_eprints", + hw_collector.namespaces, + ) + + self.logger.log( + self.LOG_SUCCESS, + "FsF-F2-01M : Found Highwire or eprints metadata -: " + str(hw_dict.keys()), + ) else: - self.logger.info('FsF-F2-01M : Highwire or eprints metadata UNAVAILABLE') + self.logger.info("FsF-F2-01M : Highwire or eprints metadata UNAVAILABLE") else: - self.logger.info('FsF-F2-01M : Skipped disabled harvesting method -: ' + str( - MetadataSources.HIGHWIRE_EPRINTS_EMBEDDED.value.get('label'))) + self.logger.info( + "FsF-F2-01M : Skipped disabled harvesting method -: " + + str(MetadataSources.HIGHWIRE_EPRINTS_EMBEDDED.value.get("label")) + ) # ========= retrieve dublin core embedded in html page ========= if self.reference_elements: if self.is_harvesting_source_allowed(MetadataSources.DUBLINCORE_EMBEDDED): - self.logger.info('FsF-F2-01M : Trying to retrieve Dublin Core metadata from html page') - dc_collector = MetaDataCollectorDublinCore(loggerinst=self.logger, - sourcemetadata=self.landing_html, - mapping=Mapper.DC_MAPPING) + self.logger.info("FsF-F2-01M : Trying to retrieve Dublin Core metadata from html page") + dc_collector = MetaDataCollectorDublinCore( + loggerinst=self.logger, sourcemetadata=self.landing_html, mapping=Mapper.DC_MAPPING + ) source_dc, dc_dict = dc_collector.parse_metadata() dc_dict = self.exclude_null(dc_dict) if dc_dict: self.namespace_uri.extend(dc_collector.namespaces) - #not_null_dc = [k for k, v in dc_dict.items() if v is not None] - #self.metadata_sources.append((source_dc, 'embedded')) + # not_null_dc = [k for k, v in dc_dict.items() if v is not None] + # self.metadata_sources.append((source_dc, 'embedded')) self.add_metadata_source(source_dc) - if dc_dict.get('related_resources'): - self.related_resources.extend(dc_dict.get('related_resources')) - self.merge_metadata(dc_dict, self.landing_url, source_dc,dc_collector.metadata_format, 'text/html','http://purl.org/dc/elements/1.1/', dc_collector.namespaces) - - self.logger.log(self.LOG_SUCCESS, - 'FsF-F2-01M : Found DublinCore metadata -: ' + str(dc_dict.keys())) + if dc_dict.get("related_resources"): + self.related_resources.extend(dc_dict.get("related_resources")) + self.merge_metadata( + dc_dict, + self.landing_url, + source_dc, + dc_collector.metadata_format, + "text/html", + "http://purl.org/dc/elements/1.1/", + dc_collector.namespaces, + ) + + self.logger.log( + self.LOG_SUCCESS, "FsF-F2-01M : Found DublinCore metadata -: " + str(dc_dict.keys()) + ) else: - self.logger.info('FsF-F2-01M : DublinCore metadata UNAVAILABLE') + self.logger.info("FsF-F2-01M : DublinCore metadata UNAVAILABLE") else: - self.logger.info('FsF-F2-01M : Skipped disabled harvesting method -: ' + str( - MetadataSources.DUBLINCORE_EMBEDDED.value.get('label'))) + self.logger.info( + "FsF-F2-01M : Skipped disabled harvesting method -: " + + str(MetadataSources.DUBLINCORE_EMBEDDED.value.get("label")) + ) # ========= retrieve embedded rdfa and microdata metadata ======== if self.is_harvesting_source_allowed(MetadataSources.MICRODATA_EMBEDDED): - self.logger.info('FsF-F2-01M : Trying to retrieve Microdata metadata from html page') + self.logger.info("FsF-F2-01M : Trying to retrieve Microdata metadata from html page") - micro_meta = extruct_metadata.get('microdata') - microdata_collector = MetaDataCollectorMicroData(loggerinst=self.logger, - sourcemetadata=micro_meta, - mapping=Mapper.MICRODATA_MAPPING) + micro_meta = extruct_metadata.get("microdata") + microdata_collector = MetaDataCollectorMicroData( + loggerinst=self.logger, sourcemetadata=micro_meta, mapping=Mapper.MICRODATA_MAPPING + ) source_micro, micro_dict = microdata_collector.parse_metadata() if micro_dict: - #self.metadata_sources.append((source_micro, 'embedded')) + # self.metadata_sources.append((source_micro, 'embedded')) self.add_metadata_source(source_micro) self.namespace_uri.extend(microdata_collector.getNamespaces()) micro_dict = self.exclude_null(micro_dict) - self.merge_metadata(micro_dict, self.landing_url, source_micro, microdata_collector.metadata_format, 'text/html', 'http://www.w3.org/TR/microdata', microdata_collector.getNamespaces()) - self.logger.log(self.LOG_SUCCESS, - 'FsF-F2-01M : Found microdata metadata -: ' + str(micro_dict.keys())) + self.merge_metadata( + micro_dict, + self.landing_url, + source_micro, + microdata_collector.metadata_format, + "text/html", + "http://www.w3.org/TR/microdata", + microdata_collector.getNamespaces(), + ) + self.logger.log( + self.LOG_SUCCESS, "FsF-F2-01M : Found microdata metadata -: " + str(micro_dict.keys()) + ) else: - self.logger.info('FsF-F2-01M : Skipped disabled harvesting method -: ' + str( - MetadataSources.MICRODATA_EMBEDDED.value.get('label'))) + self.logger.info( + "FsF-F2-01M : Skipped disabled harvesting method -: " + + str(MetadataSources.MICRODATA_EMBEDDED.value.get("label")) + ) - #================== RDFa + # ================== RDFa if self.is_harvesting_source_allowed(MetadataSources.RDFA_EMBEDDED): - self.logger.info('FsF-F2-01M : Trying to retrieve RDFa metadata from html page') + self.logger.info("FsF-F2-01M : Trying to retrieve RDFa metadata from html page") rdfasource = MetadataSources.RDFA_EMBEDDED try: rdfa_dict = {} - rdflib_logger = logging.getLogger('rdflib') + rdflib_logger = logging.getLogger("rdflib") rdflib_logger.setLevel(logging.ERROR) try: - rdfa_html = self.landing_html.decode('utf-8') + rdfa_html = self.landing_html.decode("utf-8") except Exception as e: rdfa_html = self.landing_html pass rdfa_html = self.clean_html_language_tag(rdfa_html) - rdfabuffer= io.StringIO(rdfa_html) + rdfabuffer = io.StringIO(rdfa_html) # rdflib is no longer supporting RDFa: https://stackoverflow.com/questions/68500028/parsing-htmlrdfa-in-rdflib # https://github.com/RDFLib/rdflib/discussions/1582 - rdfa_graph = pyRdfa(media_type='text/html').graph_from_source(rdfabuffer) + rdfa_graph = pyRdfa(media_type="text/html").graph_from_source(rdfabuffer) - rdfa_collector = MetaDataCollectorRdf(loggerinst=self.logger, - target_url=self.landing_url, - source=rdfasource) + rdfa_collector = MetaDataCollectorRdf( + loggerinst=self.logger, target_url=self.landing_url, source=rdfasource + ) try: rdfa_dict = rdfa_collector.get_metadata_from_graph(rdfa_graph) except Exception as e: - print('RDFa Graph error: ',e) - if (len(rdfa_dict) > 0): - #self.metadata_sources.append((rdfasource, 'embedded')) + print("RDFa Graph error: ", e) + if len(rdfa_dict) > 0: + # self.metadata_sources.append((rdfasource, 'embedded')) self.add_metadata_source(rdfasource) self.namespace_uri.extend(rdfa_collector.getNamespaces()) - #rdfa_dict['object_identifier']=self.pid_url + # rdfa_dict['object_identifier']=self.pid_url rdfa_dict = self.exclude_null(rdfa_dict) - #print(method, url, offering_method, format, mimetype, schema) - - self.merge_metadata(rdfa_dict, self.landing_url, rdfasource,rdfa_collector.metadata_format, 'application/xhtml+xml', 'http://www.w3.org/ns/rdfa#',rdfa_collector.getNamespaces()) - - self.logger.log(self.LOG_SUCCESS, - 'FsF-F2-01M : Found RDFa metadata -: ' + str(rdfa_dict.keys())) + # print(method, url, offering_method, format, mimetype, schema) + + self.merge_metadata( + rdfa_dict, + self.landing_url, + rdfasource, + rdfa_collector.metadata_format, + "application/xhtml+xml", + "http://www.w3.org/ns/rdfa#", + rdfa_collector.getNamespaces(), + ) + + self.logger.log( + self.LOG_SUCCESS, "FsF-F2-01M : Found RDFa metadata -: " + str(rdfa_dict.keys()) + ) except Exception as e: - print('RDFa parsing error',str(e)) + print("RDFa parsing error", str(e)) self.logger.info( - 'FsF-F2-01M : RDFa metadata parsing exception, probably no RDFa embedded in HTML -:' + str(e)) + "FsF-F2-01M : RDFa metadata parsing exception, probably no RDFa embedded in HTML -:" + + str(e) + ) else: - self.logger.info('FsF-F2-01M : Skipped disabled harvesting method -: ' + str( - MetadataSources.RDFA_EMBEDDED.value.get('label'))) + self.logger.info( + "FsF-F2-01M : Skipped disabled harvesting method -: " + + str(MetadataSources.RDFA_EMBEDDED.value.get("label")) + ) # ======== retrieve OpenGraph metadata if self.is_harvesting_source_allowed(MetadataSources.OPENGRAPH_EMBEDDED): + self.logger.info("FsF-F2-01M : Trying to retrieve OpenGraph metadata from html page") - self.logger.info('FsF-F2-01M : Trying to retrieve OpenGraph metadata from html page') - - ext_meta = extruct_metadata.get('opengraph') - opengraph_collector = MetaDataCollectorOpenGraph(loggerinst=self.logger, - sourcemetadata=ext_meta, - mapping=Mapper.OG_MAPPING) + ext_meta = extruct_metadata.get("opengraph") + opengraph_collector = MetaDataCollectorOpenGraph( + loggerinst=self.logger, sourcemetadata=ext_meta, mapping=Mapper.OG_MAPPING + ) source_opengraph, opengraph_dict = opengraph_collector.parse_metadata() opengraph_dict = self.exclude_null(opengraph_dict) if opengraph_dict: self.namespace_uri.extend(opengraph_collector.namespaces) - #self.metadata_sources.append((source_opengraph, 'embedded')) + # self.metadata_sources.append((source_opengraph, 'embedded')) self.add_metadata_source(source_opengraph) - self.merge_metadata(opengraph_dict, self.landing_url, source_opengraph,opengraph_collector.metadata_format, 'text/html', 'https://ogp.me/', opengraph_collector.namespaces) + self.merge_metadata( + opengraph_dict, + self.landing_url, + source_opengraph, + opengraph_collector.metadata_format, + "text/html", + "https://ogp.me/", + opengraph_collector.namespaces, + ) - self.logger.log(self.LOG_SUCCESS, - 'FsF-F2-01M : Found OpenGraph metadata -: ' + str(opengraph_dict.keys())) + self.logger.log( + self.LOG_SUCCESS, + "FsF-F2-01M : Found OpenGraph metadata -: " + str(opengraph_dict.keys()), + ) else: - self.logger.info('FsF-F2-01M : OpenGraph metadata UNAVAILABLE') + self.logger.info("FsF-F2-01M : OpenGraph metadata UNAVAILABLE") else: - self.logger.info('FsF-F2-01M : Skipped disabled harvesting method -: ' + str( - MetadataSources.OPENGRAPH_EMBEDDED.value.get('label'))) + self.logger.info( + "FsF-F2-01M : Skipped disabled harvesting method -: " + + str(MetadataSources.OPENGRAPH_EMBEDDED.value.get("label")) + ) else: - self.logger.warning('FsF-F2-01M : Skipped EMBEDDED metadata identification of landing page at -: ' + - str(self.landing_url) + ' expected html content but received: ' + - str(self.landing_content_type)) + self.logger.warning( + "FsF-F2-01M : Skipped EMBEDDED metadata identification of landing page at -: " + + str(self.landing_url) + + " expected html content but received: " + + str(self.landing_content_type) + ) else: self.logger.warning( - 'FsF-F2-01M :Skipping Embedded tests, since no EMBEDDED method in allowed harvesting methods: ' + ( - str(self.allowed_harvesting_sources))) + "FsF-F2-01M :Skipping Embedded tests, since no EMBEDDED method in allowed harvesting methods: " + + (str(self.allowed_harvesting_sources)) + ) ############## end of embedded metadata content harvesting - - if self.is_harvesting_method_allowed(MetadataOfferingMethods.TYPED_LINKS) or self.is_harvesting_method_allowed(MetadataOfferingMethods.SIGNPOSTING): + if self.is_harvesting_method_allowed( + MetadataOfferingMethods.TYPED_LINKS + ) or self.is_harvesting_method_allowed(MetadataOfferingMethods.SIGNPOSTING): # ========= retrieve signposting data links - self.logger.info('FsF-F2-01M : Trying to identify Typed Links to data items in html page') + self.logger.info("FsF-F2-01M : Trying to identify Typed Links to data items in html page") - data_sign_links = self.get_signposting_header_links('item') + data_sign_links = self.get_signposting_header_links("item") if data_sign_links: - self.logger.info('FsF-F3-01M : Found data links in response header (signposting) -: ' + - str(len(data_sign_links))) - if self.metadata_merged.get('object_content_identifier') is None: - self.metadata_merged['object_content_identifier'] = data_sign_links + self.logger.info( + "FsF-F3-01M : Found data links in response header (signposting) -: " + str(len(data_sign_links)) + ) + if self.metadata_merged.get("object_content_identifier") is None: + self.metadata_merged["object_content_identifier"] = data_sign_links # ========= retrieve signposting or typed data object links ========= - data_meta_links = self.get_html_typed_links(rel='item') + data_meta_links = self.get_html_typed_links(rel="item") if data_meta_links: - self.logger.info('FsF-F3-01M : Found data links in HTML head (link rel=item) -: ' + - str(len(data_meta_links))) - if self.metadata_merged.get('object_content_identifier') is None: - self.metadata_merged['object_content_identifier'] = data_meta_links + self.logger.info( + "FsF-F3-01M : Found data links in HTML head (link rel=item) -: " + str(len(data_meta_links)) + ) + if self.metadata_merged.get("object_content_identifier") is None: + self.metadata_merged["object_content_identifier"] = data_meta_links # self.metadata_sources.append((MetaDataCollector.Sources.TYPED_LINK.value,'linked')) else: - self.logger.warning( - 'FsF-F2-01M :Skipping typed or signposting link collection') + self.logger.warning("FsF-F2-01M :Skipping typed or signposting link collection") - #======== retrieve OpenSearch links - search_links = self.get_html_typed_links(rel='search') + # ======== retrieve OpenSearch links + search_links = self.get_html_typed_links(rel="search") for search in search_links: - if search.get('type') in ['application/opensearchdescription+xml']: - self.logger.info('FsF-R1.3-01M : Found OpenSearch link in HTML head (link rel=search) -: ' + - str(search['url'])) - self.namespace_uri.append('http://a9.com/-/spec/opensearch/1.1/') + if search.get("type") in ["application/opensearchdescription+xml"]: + self.logger.info( + "FsF-R1.3-01M : Found OpenSearch link in HTML head (link rel=search) -: " + str(search["url"]) + ) + self.namespace_uri.append("http://a9.com/-/spec/opensearch/1.1/") else: self.logger.warning( - 'FsF-F2-01M : Skipped EMBEDDED metadata identification, no landing page URL or HTML content could be determined') + "FsF-F2-01M : Skipped EMBEDDED metadata identification, no landing page URL or HTML content could be determined" + ) self.check_pidtest_repeat() - - def retrieve_metadata_external_rdf_negotiated(self,target_url_list=[]): + def retrieve_metadata_external_rdf_negotiated(self, target_url_list=[]): # ========= retrieve rdf metadata namespaces by content negotiation ======== if self.is_harvesting_source_allowed(MetadataSources.RDF_NEGOTIATED): source = MetadataSources.RDF_NEGOTIATED - #if self.pid_scheme == 'purl': + # if self.pid_scheme == 'purl': # targeturl = self.pid_url - #else: + # else: # targeturl = self.landing_url for targeturl in target_url_list: self.logger.info( - 'FsF-F2-01M : Trying to retrieve RDF metadata through content negotiation from URL -: ' + str( - targeturl)) + "FsF-F2-01M : Trying to retrieve RDF metadata through content negotiation from URL -: " + + str(targeturl) + ) neg_rdf_collector = MetaDataCollectorRdf(loggerinst=self.logger, target_url=targeturl, source=source) neg_rdf_collector.set_auth_token(self.auth_token, self.auth_token_type) if neg_rdf_collector is not None: @@ -902,88 +1071,131 @@ def retrieve_metadata_external_rdf_negotiated(self,target_url_list=[]): self.namespace_uri.extend(neg_rdf_collector.getNamespaces()) rdf_dict = self.exclude_null(rdf_dict) if rdf_dict: - test_content_negotiation = True - self.logger.log(self.LOG_SUCCESS, - 'FsF-F2-01M : Found Linked Data metadata -: {}'.format(str(rdf_dict.keys()))) - #self.metadata_sources.append((source_rdf, 'negotiated')) + self.logger.log( + self.LOG_SUCCESS, + "FsF-F2-01M : Found Linked Data metadata -: {}".format(str(rdf_dict.keys())), + ) + # self.metadata_sources.append((source_rdf, 'negotiated')) self.add_metadata_source(source_rdf) - self.merge_metadata(rdf_dict, targeturl, source_rdf, neg_rdf_collector.metadata_format, neg_rdf_collector.getContentType(), - 'http://www.w3.org/1999/02/22-rdf-syntax-ns', neg_rdf_collector.getNamespaces()) + self.merge_metadata( + rdf_dict, + targeturl, + source_rdf, + neg_rdf_collector.metadata_format, + neg_rdf_collector.getContentType(), + "http://www.w3.org/1999/02/22-rdf-syntax-ns", + neg_rdf_collector.getNamespaces(), + ) else: - self.logger.info('FsF-F2-01M : Linked Data metadata UNAVAILABLE') + self.logger.info("FsF-F2-01M : Linked Data metadata UNAVAILABLE") else: - self.logger.info('FsF-F2-01M : Skipped disabled harvesting method -: ' + str( - MetadataSources.RDF_NEGOTIATED.value.get('label'))) + self.logger.info( + "FsF-F2-01M : Skipped disabled harvesting method -: " + + str(MetadataSources.RDF_NEGOTIATED.value.get("label")) + ) - def retrieve_metadata_external_schemaorg_negotiated(self,target_url_list=[]): + def retrieve_metadata_external_schemaorg_negotiated(self, target_url_list=[]): if self.is_harvesting_source_allowed(MetadataSources.SCHEMAORG_NEGOTIATED): for target_url in target_url_list: # ========= retrieve json-ld/schema.org metadata namespaces by content negotiation ======== self.logger.info( - 'FsF-F2-01M : Trying to retrieve schema.org JSON-LD metadata through content negotiation from URL -: ' + str( - target_url)) - schemaorg_collector_negotiated = MetaDataCollectorRdf(loggerinst=self.logger, - target_url=target_url, - source = MetadataSources.SCHEMAORG_NEGOTIATED) + "FsF-F2-01M : Trying to retrieve schema.org JSON-LD metadata through content negotiation from URL -: " + + str(target_url) + ) + schemaorg_collector_negotiated = MetaDataCollectorRdf( + loggerinst=self.logger, target_url=target_url, source=MetadataSources.SCHEMAORG_NEGOTIATED + ) schemaorg_collector_negotiated.setAcceptType(AcceptTypes.jsonld) source_schemaorg, schemaorg_dict = schemaorg_collector_negotiated.parse_metadata() schemaorg_dict = self.exclude_null(schemaorg_dict) if schemaorg_dict: self.namespace_uri.extend(schemaorg_collector_negotiated.namespaces) - #self.metadata_sources.append((source_schemaorg, 'negotiated')) + # self.metadata_sources.append((source_schemaorg, 'negotiated')) self.add_metadata_source(source_schemaorg) # add object type for future reference - self.merge_metadata(schemaorg_dict, target_url, source_schemaorg, schemaorg_collector_negotiated.metadata_format, 'application/ld+json', - 'http://www.schema.org', schemaorg_collector_negotiated.namespaces) + self.merge_metadata( + schemaorg_dict, + target_url, + source_schemaorg, + schemaorg_collector_negotiated.metadata_format, + "application/ld+json", + "http://www.schema.org", + schemaorg_collector_negotiated.namespaces, + ) self.logger.log( - self.LOG_SUCCESS, 'FsF-F2-01M : Found Schema.org metadata through content negotiation-: ' + - str(schemaorg_dict.keys())) + self.LOG_SUCCESS, + "FsF-F2-01M : Found Schema.org metadata through content negotiation-: " + + str(schemaorg_dict.keys()), + ) else: - self.logger.info('FsF-F2-01M : Schema.org metadata through content negotiation UNAVAILABLE') + self.logger.info("FsF-F2-01M : Schema.org metadata through content negotiation UNAVAILABLE") else: - self.logger.info('FsF-F2-01M : Skipped disabled harvesting method -: ' + str( - MetadataSources.SCHEMAORG_NEGOTIATED.value.get('label'))) + self.logger.info( + "FsF-F2-01M : Skipped disabled harvesting method -: " + + str(MetadataSources.SCHEMAORG_NEGOTIATED.value.get("label")) + ) - def retrieve_metadata_external_xml_negotiated(self,target_url_list=[]): + def retrieve_metadata_external_xml_negotiated(self, target_url_list=[]): if self.is_harvesting_source_allowed(MetadataSources.XML_NEGOTIATED): for target_url in target_url_list: self.logger.info( - 'FsF-F2-01M : Trying to retrieve XML metadata through content negotiation from URL -: ' + str(target_url)) - negotiated_xml_collector = MetaDataCollectorXML(loggerinst=self.logger, - target_url=self.landing_url, - link_type=MetadataOfferingMethods.CONTENT_NEGOTIATION) - negotiated_xml_collector.set_auth_token(self.auth_token,self.auth_token_type) + "FsF-F2-01M : Trying to retrieve XML metadata through content negotiation from URL -: " + + str(target_url) + ) + negotiated_xml_collector = MetaDataCollectorXML( + loggerinst=self.logger, + target_url=self.landing_url, + link_type=MetadataOfferingMethods.CONTENT_NEGOTIATION, + ) + negotiated_xml_collector.set_auth_token(self.auth_token, self.auth_token_type) source_neg_xml, metadata_neg_dict = negotiated_xml_collector.parse_metadata() # print('### ',metadata_neg_dict) - neg_namespace = 'unknown xml' + neg_namespace = "unknown xml" metadata_neg_dict = self.exclude_null(metadata_neg_dict) if len(negotiated_xml_collector.getNamespaces()) > 0: self.namespace_uri.extend(negotiated_xml_collector.getNamespaces()) neg_namespace = negotiated_xml_collector.getNamespaces()[0] self.linked_namespace_uri.update(negotiated_xml_collector.getLinkedNamespaces()) - #print('LINKED NS XML ',self.linked_namespace_uri) + # print('LINKED NS XML ',self.linked_namespace_uri) if metadata_neg_dict: - #self.metadata_sources.append((source_neg_xml, 'negotiated')) + # self.metadata_sources.append((source_neg_xml, 'negotiated')) self.add_metadata_source(source_neg_xml) - self.merge_metadata(metadata_neg_dict, self.landing_url, source_neg_xml,negotiated_xml_collector.metadata_format, - negotiated_xml_collector.getContentType(), neg_namespace) + self.merge_metadata( + metadata_neg_dict, + self.landing_url, + source_neg_xml, + negotiated_xml_collector.metadata_format, + negotiated_xml_collector.getContentType(), + neg_namespace, + ) #### self.logger.log( - self.LOG_SUCCESS, 'FsF-F2-01M : Found XML metadata through content negotiation-: ' + - str(metadata_neg_dict.keys())) + self.LOG_SUCCESS, + "FsF-F2-01M : Found XML metadata through content negotiation-: " + + str(metadata_neg_dict.keys()), + ) self.namespace_uri.extend(negotiated_xml_collector.getNamespaces()) # also add found xml namespaces without recognized data elif len(negotiated_xml_collector.getNamespaces()) > 0: - self.merge_metadata({}, self.landing_url, source_neg_xml,negotiated_xml_collector.metadata_format, negotiated_xml_collector.getContentType(), - neg_namespace) + self.merge_metadata( + {}, + self.landing_url, + source_neg_xml, + negotiated_xml_collector.metadata_format, + negotiated_xml_collector.getContentType(), + neg_namespace, + ) else: - self.logger.info('FsF-F2-01M : Skipped disabled harvesting method -: ' + str( - MetadataSources.XML_NEGOTIATED.value.get('label'))) - ''' + self.logger.info( + "FsF-F2-01M : Skipped disabled harvesting method -: " + + str(MetadataSources.XML_NEGOTIATED.value.get("label")) + ) + + """ def retrieve_metadata_external_georss(self): # ========= retrieve atom, GeoRSS links feed_links = self.get_html_typed_links(rel='alternate') @@ -995,30 +1207,37 @@ def retrieve_metadata_external_georss(self): #feed_helper = RSSAtomMetadataProvider(self.logger, feed['url'], 'FsF-R1.3-01M') #feed_helper.getMetadataStandards() #self.namespace_uri.extend(feed_helper.getNamespaces()) - ''' + """ + def retrieve_metadata_external_oai_ore(self): - oai_link = self.get_html_typed_links('resourcemap') + oai_link = self.get_html_typed_links("resourcemap") if oai_link: - if oai_link.get('type') in ['application/atom+xml']: - #elif metadata_link['type'] in ['application/atom+xml'] and metadata_link['rel'] == 'resourcemap': + if oai_link.get("type") in ["application/atom+xml"]: + # elif metadata_link['type'] in ['application/atom+xml'] and metadata_link['rel'] == 'resourcemap': self.logger.info( - 'FsF-F2-01M : Found e.g. Typed Links in HTML Header linking to OAI ORE (atom) Metadata -: (' + - str(oai_link['type'] + ')')) - ore_atom_collector = MetaDataCollectorOreAtom(loggerinst=self.logger, - target_url=oai_link['url']) + "FsF-F2-01M : Found e.g. Typed Links in HTML Header linking to OAI ORE (atom) Metadata -: (" + + str(oai_link["type"] + ")") + ) + ore_atom_collector = MetaDataCollectorOreAtom(loggerinst=self.logger, target_url=oai_link["url"]) source_ore, ore_dict = ore_atom_collector.parse_metadata() ore_dict = self.exclude_null(ore_dict) if ore_dict: - self.logger.log(self.LOG_SUCCESS, - 'FsF-F2-01M : Found OAI ORE metadata -: {}'.format(str(ore_dict.keys()))) + self.logger.log( + self.LOG_SUCCESS, "FsF-F2-01M : Found OAI ORE metadata -: {}".format(str(ore_dict.keys())) + ) self.add_metadata_source(source_ore) - self.merge_metadata(ore_dict, oai_link['url'], source_ore, ore_atom_collector.getContentType(), - 'http://www.openarchives.org/ore/terms', - 'http://www.openarchives.org/ore/terms') + self.merge_metadata( + ore_dict, + oai_link["url"], + source_ore, + ore_atom_collector.getContentType(), + "http://www.openarchives.org/ore/terms", + "http://www.openarchives.org/ore/terms", + ) def retrieve_metadata_external_datacite(self): if self.is_harvesting_source_allowed(MetadataSources.DATACITE_JSON_NEGOTIATED): - #if self.pid_scheme: + # if self.pid_scheme: # ================= datacite by content negotiation =========== # in case use_datacite id false use the landing page URL for content negotiation, otherwise the pid url if self.use_datacite is True and self.pid_url: @@ -1026,59 +1245,76 @@ def retrieve_metadata_external_datacite(self): else: datacite_target_url = self.landing_url if datacite_target_url: - dcite_collector = MetaDataCollectorDatacite(mapping=Mapper.DATACITE_JSON_MAPPING, - loggerinst=self.logger, - pid_url=datacite_target_url) + dcite_collector = MetaDataCollectorDatacite( + mapping=Mapper.DATACITE_JSON_MAPPING, loggerinst=self.logger, pid_url=datacite_target_url + ) source_dcitejsn, dcitejsn_dict = dcite_collector.parse_metadata() dcitejsn_dict = self.exclude_null(dcitejsn_dict) if dcitejsn_dict: - #self.metadata_sources.append((source_dcitejsn, 'negotiated')) + # self.metadata_sources.append((source_dcitejsn, 'negotiated')) self.add_metadata_source(source_dcitejsn) - self.logger.log(self.LOG_SUCCESS, - 'FsF-F2-01M : Found Datacite metadata -: {}'.format(str(dcitejsn_dict.keys()))) + self.logger.log( + self.LOG_SUCCESS, "FsF-F2-01M : Found Datacite metadata -: {}".format(str(dcitejsn_dict.keys())) + ) self.namespace_uri.extend(dcite_collector.getNamespaces()) - self.merge_metadata(dcitejsn_dict,datacite_target_url,source_dcitejsn,dcite_collector.metadata_format, dcite_collector.getContentType(), 'http://datacite.org/schema',dcite_collector.getNamespaces()) + self.merge_metadata( + dcitejsn_dict, + datacite_target_url, + source_dcitejsn, + dcite_collector.metadata_format, + dcite_collector.getContentType(), + "http://datacite.org/schema", + dcite_collector.getNamespaces(), + ) else: - self.logger.info('FsF-F2-01M : Datacite metadata UNAVAILABLE') + self.logger.info("FsF-F2-01M : Datacite metadata UNAVAILABLE") else: - self.logger.info('FsF-F2-01M : No target URL (PID or landing page) given, therefore Datacite metadata (json) not requested.') + self.logger.info( + "FsF-F2-01M : No target URL (PID or landing page) given, therefore Datacite metadata (json) not requested." + ) else: - self.logger.info('FsF-F2-01M : Skipped disabled harvesting method -: ' + str( - MetadataSources.DATACITE_JSON_NEGOTIATED.value.get('label'))) + self.logger.info( + "FsF-F2-01M : Skipped disabled harvesting method -: " + + str(MetadataSources.DATACITE_JSON_NEGOTIATED.value.get("label")) + ) def get_connected_metadata_links(self): # get all links which lead to metadata are given by signposting, typed links, guessing or in html href - if MetadataOfferingMethods.SIGNPOSTING in self.allowed_harvesting_methods or MetadataOfferingMethods.TYPED_LINKS in self.allowed_harvesting_methods: + if ( + MetadataOfferingMethods.SIGNPOSTING in self.allowed_harvesting_methods + or MetadataOfferingMethods.TYPED_LINKS in self.allowed_harvesting_methods + ): connected_metadata_links = [] signposting_header_links = [] # signposting html links - signposting_html_links = self.get_html_typed_links(['describedby']) + signposting_html_links = self.get_html_typed_links(["describedby"]) # signposting header links if MetadataOfferingMethods.SIGNPOSTING in self.allowed_harvesting_methods: - if self.get_signposting_header_links('describedby'): - signposting_header_links = self.get_signposting_header_links('describedby', False) + if self.get_signposting_header_links("describedby"): + signposting_header_links = self.get_signposting_header_links("describedby", False) self.logger.info( - 'FsF-F2-01M : Found metadata link as (describedby) signposting header links -:' + str( - [sl.get('url') for sl in signposting_header_links])) + "FsF-F2-01M : Found metadata link as (describedby) signposting header links -:" + + str([sl.get("url") for sl in signposting_header_links]) + ) if signposting_header_links: connected_metadata_links.extend(signposting_header_links) if signposting_html_links: connected_metadata_links.extend(signposting_html_links) - #if signposting_typeset_links: + # if signposting_typeset_links: # connected_metadata_links.extend(signposting_typeset_links) if MetadataOfferingMethods.TYPED_LINKS in self.allowed_harvesting_methods: - html_typed_links = self.get_html_typed_links(['meta', 'alternate meta', 'metadata','alternate'], False) + html_typed_links = self.get_html_typed_links(["meta", "alternate meta", "metadata", "alternate"], False) if html_typed_links: connected_metadata_links.extend(html_typed_links) - '''if 'guessed' in allowedmethods: + """if 'guessed' in allowedmethods: guessed_metadata_link = self.get_guessed_xml_link() href_metadata_links = self.get_html_xml_links() if href_metadata_links: connected_metadata_links.extend(href_metadata_links) if guessed_metadata_link is not None: - connected_metadata_links.append(guessed_metadata_link)''' + connected_metadata_links.append(guessed_metadata_link)""" return connected_metadata_links def retrieve_metadata_external_linked_metadata(self): @@ -1089,101 +1325,147 @@ def retrieve_metadata_external_linked_metadata(self): typed_metadata_links = [dict(t) for t in {tuple(d.items()) for d in typed_metadata_links}] typed_metadata_links = self.get_preferred_links(typed_metadata_links) for metadata_link in typed_metadata_links: - if not metadata_link['type']: + if not metadata_link["type"]: # guess type based on e.g. file suffix try: - metadata_link['type'] = mimetypes.guess_type(metadata_link['url'])[0] + metadata_link["type"] = mimetypes.guess_type(metadata_link["url"])[0] except Exception: pass - if re.search(r'[\/+](rdf(\+xml)?|(?:x-)?turtle|ttl|n3|n-triples|ld\+json)+$', str(metadata_link['type'])): - if self.is_harvesting_source_allowed(MetadataSources.RDF_TYPED_LINKS) or self.is_harvesting_source_allowed(MetadataSources.RDF_SIGNPOSTING_LINKS): - self.logger.info('FsF-F2-01M : Found e.g. Typed Links in HTML Header linking to RDF Metadata -: (' + - str(metadata_link['type']) + ' ' + str(metadata_link['url']) + ')') - if metadata_link.get('source') == MetadataOfferingMethods.SIGNPOSTING: + if re.search( + r"[\/+](rdf(\+xml)?|(?:x-)?turtle|ttl|n3|n-triples|ld\+json)+$", str(metadata_link["type"]) + ): + if self.is_harvesting_source_allowed( + MetadataSources.RDF_TYPED_LINKS + ) or self.is_harvesting_source_allowed(MetadataSources.RDF_SIGNPOSTING_LINKS): + self.logger.info( + "FsF-F2-01M : Found e.g. Typed Links in HTML Header linking to RDF Metadata -: (" + + str(metadata_link["type"]) + + " " + + str(metadata_link["url"]) + + ")" + ) + if metadata_link.get("source") == MetadataOfferingMethods.SIGNPOSTING: source = MetadataSources.RDF_SIGNPOSTING_LINKS else: source = MetadataSources.RDF_TYPED_LINKS - typed_rdf_collector = MetaDataCollectorRdf(loggerinst=self.logger, - target_url=metadata_link['url'], - source=source) + typed_rdf_collector = MetaDataCollectorRdf( + loggerinst=self.logger, target_url=metadata_link["url"], source=source + ) if typed_rdf_collector is not None: source_rdf, rdf_dict = typed_rdf_collector.parse_metadata() self.namespace_uri.extend(typed_rdf_collector.getNamespaces()) rdf_dict = self.exclude_null(rdf_dict) if rdf_dict: test_typed_links = True - self.logger.log(self.LOG_SUCCESS, - 'FsF-F2-01M : Found Linked Data (RDF) metadata -: {}'.format( - str(rdf_dict.keys()))) - #self.metadata_sources.append((source_rdf, metadata_link['source'])) + self.logger.log( + self.LOG_SUCCESS, + "FsF-F2-01M : Found Linked Data (RDF) metadata -: {}".format(str(rdf_dict.keys())), + ) + # self.metadata_sources.append((source_rdf, metadata_link['source'])) self.add_metadata_source(source_rdf) - self.merge_metadata(rdf_dict, metadata_link['url'], source_rdf,typed_rdf_collector.metadata_format, - typed_rdf_collector.getContentType(), - 'http://www.w3.org/1999/02/22-rdf-syntax-ns', - typed_rdf_collector.getNamespaces()) + self.merge_metadata( + rdf_dict, + metadata_link["url"], + source_rdf, + typed_rdf_collector.metadata_format, + typed_rdf_collector.getContentType(), + "http://www.w3.org/1999/02/22-rdf-syntax-ns", + typed_rdf_collector.getNamespaces(), + ) else: - self.logger.info('FsF-F2-01M : Linked Data metadata UNAVAILABLE') + self.logger.info("FsF-F2-01M : Linked Data metadata UNAVAILABLE") else: - self.logger.info('FsF-F2-01M : Skipped disabled harvesting method -: ' + str( - MetadataSources.RDF_TYPED_LINKS.value.get('label'))) - - elif re.search(r'[+\/]xml$', str(metadata_link['type'])): - if self.is_harvesting_source_allowed(MetadataSources.XML_TYPED_LINKS) or self.is_harvesting_source_allowed(MetadataSources.XML_SIGNPOSTING_LINKS): - self.logger.info('FsF-F2-01M : Found e.g. Typed Links in HTML Header linking to XML Metadata -: (' + - str(metadata_link['type'] + ' ' + metadata_link['url'] + ')')) - linked_xml_collector = MetaDataCollectorXML(loggerinst=self.logger, - target_url=metadata_link['url'], - link_type=metadata_link.get('source'), - pref_mime_type=metadata_link['type']) + self.logger.info( + "FsF-F2-01M : Skipped disabled harvesting method -: " + + str(MetadataSources.RDF_TYPED_LINKS.value.get("label")) + ) + + elif re.search(r"[+\/]xml$", str(metadata_link["type"])): + if self.is_harvesting_source_allowed( + MetadataSources.XML_TYPED_LINKS + ) or self.is_harvesting_source_allowed(MetadataSources.XML_SIGNPOSTING_LINKS): + self.logger.info( + "FsF-F2-01M : Found e.g. Typed Links in HTML Header linking to XML Metadata -: (" + + str(metadata_link["type"] + " " + metadata_link["url"] + ")") + ) + linked_xml_collector = MetaDataCollectorXML( + loggerinst=self.logger, + target_url=metadata_link["url"], + link_type=metadata_link.get("source"), + pref_mime_type=metadata_link["type"], + ) if linked_xml_collector is not None: source_linked_xml, linked_xml_dict = linked_xml_collector.parse_metadata() - lkd_namespace = 'unknown xml' + lkd_namespace = "unknown xml" if len(linked_xml_collector.getNamespaces()) > 0: lkd_namespace = linked_xml_collector.getNamespaces()[0] self.namespace_uri.extend(linked_xml_collector.getNamespaces()) self.linked_namespace_uri.update(linked_xml_collector.getLinkedNamespaces()) if linked_xml_dict: - #self.metadata_sources.append((MetaDataCollector.Sources.XML_TYPED_LINKS.value.get('label'), metadata_link['source'])) - if metadata_link.get('source') == MetadataOfferingMethods.SIGNPOSTING: + # self.metadata_sources.append((MetaDataCollector.Sources.XML_TYPED_LINKS.value.get('label'), metadata_link['source'])) + if metadata_link.get("source") == MetadataOfferingMethods.SIGNPOSTING: self.add_metadata_source(MetadataSources.XML_SIGNPOSTING_LINKS) else: self.add_metadata_source(MetadataSources.XML_TYPED_LINKS) - self.merge_metadata(linked_xml_dict, metadata_link['url'], source_linked_xml, - linked_xml_collector.metadata_format, linked_xml_collector.getContentType(), lkd_namespace) - - self.logger.log(self.LOG_SUCCESS, - 'FsF-F2-01M : Found XML metadata through typed links-: ' + str(linked_xml_dict.keys())) + self.merge_metadata( + linked_xml_dict, + metadata_link["url"], + source_linked_xml, + linked_xml_collector.metadata_format, + linked_xml_collector.getContentType(), + lkd_namespace, + ) + + self.logger.log( + self.LOG_SUCCESS, + "FsF-F2-01M : Found XML metadata through typed links-: " + + str(linked_xml_dict.keys()), + ) # also add found xml namespaces without recognized data elif len(linked_xml_collector.getNamespaces()) > 0: - self.merge_metadata(dict(), metadata_link['url'], source_linked_xml,linked_xml_collector.metadata_format, - linked_xml_collector.getContentType(), lkd_namespace, - linked_xml_collector.getNamespaces()) + self.merge_metadata( + dict(), + metadata_link["url"], + source_linked_xml, + linked_xml_collector.metadata_format, + linked_xml_collector.getContentType(), + lkd_namespace, + linked_xml_collector.getNamespaces(), + ) else: - self.logger.info('FsF-F2-01M : Skipped disabled harvesting method -: ' + str( - MetadataSources.XML_TYPED_LINKS.value.get('label'))) + self.logger.info( + "FsF-F2-01M : Skipped disabled harvesting method -: " + + str(MetadataSources.XML_TYPED_LINKS.value.get("label")) + ) else: self.logger.info( - 'FsF-F2-01M : Found typed link or signposting link but will ignore (can\'t handle) mime type -:' + str( - metadata_link['type'])) - + "FsF-F2-01M : Found typed link or signposting link but will ignore (can't handle) mime type -:" + + str(metadata_link["type"]) + ) - def retrieve_metadata_external(self, target_url = None, repeat_mode = False): - if self.is_harvesting_method_allowed(MetadataOfferingMethods.CONTENT_NEGOTIATION) or self.is_harvesting_method_allowed(MetadataOfferingMethods.TYPED_LINKS) or self.is_harvesting_method_allowed(MetadataOfferingMethods.SIGNPOSTING): + def retrieve_metadata_external(self, target_url=None, repeat_mode=False): + if ( + self.is_harvesting_method_allowed(MetadataOfferingMethods.CONTENT_NEGOTIATION) + or self.is_harvesting_method_allowed(MetadataOfferingMethods.TYPED_LINKS) + or self.is_harvesting_method_allowed(MetadataOfferingMethods.SIGNPOSTING) + ): self.logger.info( - 'FsF-F2-01M : Starting to identify EXTERNAL metadata through content negotiation or typed (signposting) links') + "FsF-F2-01M : Starting to identify EXTERNAL metadata through content negotiation or typed (signposting) links" + ) if self.landing_url or self.pid_url: if not self.landing_url: self.logger.warning( - 'FsF-F2-01M : Landing page could not be identified, therefore EXTERNAL metadata is based on PID only and may be incomplete') + "FsF-F2-01M : Landing page could not be identified, therefore EXTERNAL metadata is based on PID only and may be incomplete" + ) target_url_list = [self.origin_url, self.pid_url, self.landing_url] - if self.use_datacite is False and 'doi' == self.pid_scheme: + if self.use_datacite is False and "doi" == self.pid_scheme: if self.origin_url == self.pid_url: target_url_list = [self.landing_url] else: - target_url_list = [self.origin_url,self.landing_url] - #specific target url + target_url_list = [self.origin_url, self.landing_url] + # specific target url if isinstance(target_url, str): target_url_list = [target_url] @@ -1196,31 +1478,30 @@ def retrieve_metadata_external(self, target_url = None, repeat_mode = False): self.retrieve_metadata_external_linked_metadata() self.retrieve_metadata_external_oai_ore() - if self.reference_elements: - self.logger.debug('FsF-F2-01M : Reference metadata elements NOT FOUND -: {}'.format( - self.reference_elements)) + self.logger.debug( + "FsF-F2-01M : Reference metadata elements NOT FOUND -: {}".format(self.reference_elements) + ) else: - self.logger.debug('FsF-F2-01M : ALL reference metadata elements available') + self.logger.debug("FsF-F2-01M : ALL reference metadata elements available") # Now if an identifier has been detected in the metadata, potentially check for persistent identifier has to be repeated.. self.check_pidtest_repeat() else: self.logger.warning( - 'FsF-F2-01M : Skipped EXTERNAL metadata identification, no landing page URL or HTML content could be determined') - + "FsF-F2-01M : Skipped EXTERNAL metadata identification, no landing page URL or HTML content could be determined" + ) def get_preferred_links(self, linklist): - #prefer links which look like the landing page url + # prefer links which look like the landing page url preferred_links = [] other_links = [] for link in linklist: - if self.landing_url in str(link.get('url')): + if self.landing_url in str(link.get("url")): preferred_links.append(link) else: other_links.append(link) return preferred_links + other_links - def lookup_metadatastandard_by_name(self, value): found = None # get standard name with the highest matching percentage using fuzzywuzzy @@ -1232,27 +1513,25 @@ def lookup_metadatastandard_by_name(self, value): def lookup_metadatastandard_by_uri(self, value): metadata_standard_id = None if value: - value = str(value).strip().strip('#/') + value = str(value).strip().strip("#/") # try to find it as direct match using http or https as prefix - if value.startswith('http') or value.startswith('ftp'): - value = value.replace('s://', '://') + if value.startswith("http") or value.startswith("ftp"): + value = value.replace("s://", "://") metadata_standard_id = self.COMMUNITY_METADATA_STANDARDS_URIS.get(value) if not metadata_standard_id: - metadata_standard_id = self.COMMUNITY_METADATA_STANDARDS_URIS.get(value.replace('://', 's://')) + metadata_standard_id = self.COMMUNITY_METADATA_STANDARDS_URIS.get(value.replace("://", "s://")) if not metadata_standard_id: - #fuzzy as fall back + # fuzzy as fall back try: - match = process.extractOne(value, - self.COMMUNITY_METADATA_STANDARDS_URIS.keys()) + match = process.extractOne(value, self.COMMUNITY_METADATA_STANDARDS_URIS.keys()) if extract(str(value)).domain == extract(str(match[0])).domain: if match[1] > 90: metadata_standard_id = list(self.COMMUNITY_METADATA_STANDARDS_URIS.values())[match[2]] except Exception as e: - print('METADATA STANDARD LOOKUP ERROR: ', str(e)) + print("METADATA STANDARD LOOKUP ERROR: ", str(e)) pass return metadata_standard_id - def get_metadata_standard_by_uris(self, test_uris): metadata_standard_id = None if isinstance(test_uris, list): @@ -1267,28 +1546,27 @@ def get_metadata_standard_info(self, metadata_standard_id): if metadata_standard_id: mstandard = self.COMMUNITY_METADATA_STANDARDS.get(metadata_standard_id) type = None - subject = mstandard.get('field_of_science') - std_ids = mstandard.get('identifier') + subject = mstandard.get("field_of_science") + std_ids = mstandard.get("identifier") metadatacatalogids = [] for stid in std_ids: - if stid.get('type') == 'local': - caturi = stid.get('value') - if caturi.startswith('msc:'): - caturi = 'https://rdamsc.bath.ac.uk/msc/' + caturi.split(':')[-1] + if stid.get("type") == "local": + caturi = stid.get("value") + if caturi.startswith("msc:"): + caturi = "https://rdamsc.bath.ac.uk/msc/" + caturi.split(":")[-1] metadatacatalogids.append(caturi) if subject: - if subject == ['sciences'] or all(elem == 'Multidisciplinary' for elem in subject): - type = 'generic' + if subject == ["sciences"] or all(elem == "Multidisciplinary" for elem in subject): + type = "generic" else: - type = 'disciplinary' - metadata_standard_info = {'id': metadata_standard_id, - 'subject': subject, - 'name': mstandard.get('title'), - 'acronym': mstandard['acronym'], - 'external_ids': std_ids, - 'type': type, - 'catalogue': metadatacatalogids} + type = "disciplinary" + metadata_standard_info = { + "id": metadata_standard_id, + "subject": subject, + "name": mstandard.get("title"), + "acronym": mstandard["acronym"], + "external_ids": std_ids, + "type": type, + "catalogue": metadatacatalogids, + } return metadata_standard_info - - - diff --git a/fuji_server/harvester/repository_harvester.py b/fuji_server/harvester/repository_harvester.py index cc1b0421..80bf41c9 100644 --- a/fuji_server/harvester/repository_harvester.py +++ b/fuji_server/harvester/repository_harvester.py @@ -2,8 +2,7 @@ class RepositoryHarvester: - - def __init__(self, harvester_type='oai', endpoint_url=''): + def __init__(self, harvester_type="oai", endpoint_url=""): self.type = harvester_type self.url = endpoint_url return True diff --git a/fuji_server/helper/catalogue_helper.py b/fuji_server/helper/catalogue_helper.py index 9d9af943..1bd3d5e3 100644 --- a/fuji_server/helper/catalogue_helper.py +++ b/fuji_server/helper/catalogue_helper.py @@ -4,7 +4,7 @@ class MetaDataCatalogue(object): - """ A base class of to access a metadata catalogue + """A base class of to access a metadata catalogue Attributes ---------- apiURI : str @@ -19,14 +19,15 @@ class MetaDataCatalogue(object): query(pid) Method to access the metadata catalog given a parameter of PID """ + apiURI = None # Using enum class create enumerations of metadata catalogs class Sources(enum.Enum): - DATACITE = 'DataCite Registry' - GOOGLE_DATASET = 'Google Dataset Search' - MENDELEY_DATA = 'Mendeley Data' + DATACITE = "DataCite Registry" + GOOGLE_DATASET = "Google Dataset Search" + MENDELEY_DATA = "Mendeley Data" def __init__(self, logger: logging.Logger = None): """ diff --git a/fuji_server/helper/catalogue_helper_datacite.py b/fuji_server/helper/catalogue_helper_datacite.py index 34511194..8a1e1c16 100644 --- a/fuji_server/helper/catalogue_helper_datacite.py +++ b/fuji_server/helper/catalogue_helper_datacite.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- import logging + import requests from fuji_server.helper.catalogue_helper import MetaDataCatalogue @@ -19,8 +20,9 @@ class MetaDataCatalogueDataCite(MetaDataCatalogue): query(pid) Method to check whether the metadata given by PID is listed in Datacite """ + islisted = False - apiURI = 'https://api.datacite.org/dois' + apiURI = "https://api.datacite.org/dois" def __init__(self, logger: logging.Logger = None): """ @@ -46,16 +48,16 @@ def query(self, pid): """ response = None try: - res = requests.get(self.apiURI + '/' + pid, timeout=5) - self.logger.info('FsF-F4-01M : Querying DataCite API for -:' + str(pid)) + res = requests.get(self.apiURI + "/" + pid, timeout=5) + self.logger.info("FsF-F4-01M : Querying DataCite API for -:" + str(pid)) if res.status_code == 200: self.islisted = True - self.logger.info('FsF-F4-01M : Found identifier in DataCite catalogue -:' + str(pid)) + self.logger.info("FsF-F4-01M : Found identifier in DataCite catalogue -:" + str(pid)) elif res.status_code == 404: - self.logger.info('FsF-F4-01M : Identifier not listed in DataCite catalogue -:' + str(pid)) + self.logger.info("FsF-F4-01M : Identifier not listed in DataCite catalogue -:" + str(pid)) else: - self.logger.error('FsF-F4-01M : DataCite API not available -:' + str(res.status_code)) + self.logger.error("FsF-F4-01M : DataCite API not available -:" + str(res.status_code)) except Exception as e: - self.logger.error('FsF-F4-01M : DataCite API not available or returns errors -:' + str(e)) + self.logger.error("FsF-F4-01M : DataCite API not available or returns errors -:" + str(e)) return response diff --git a/fuji_server/helper/catalogue_helper_google_datasearch.py b/fuji_server/helper/catalogue_helper_google_datasearch.py index 7b43c6d6..151ec924 100644 --- a/fuji_server/helper/catalogue_helper_google_datasearch.py +++ b/fuji_server/helper/catalogue_helper_google_datasearch.py @@ -1,13 +1,12 @@ # -*- coding: utf-8 -*- import logging +import os import re import sqlite3 as sl from random import randint from time import sleep import pandas as pd -import os - import requests from bs4 import BeautifulSoup @@ -32,13 +31,14 @@ class MetaDataCatalogueGoogleDataSearch(MetaDataCatalogue): random_sample(limit) """ + islisted = False - #apiURI = 'https://api.datacite.org/dois' - def __init__(self, logger: logging.Logger = None, object_type = None): + # apiURI = 'https://api.datacite.org/dois' + def __init__(self, logger: logging.Logger = None, object_type=None): self.logger = logger self.source = self.getEnumSourceNames().GOOGLE_DATASET.value - self.google_cache_db_path = os.path.join(Preprocessor.fuji_server_dir, 'data', 'google_cache.db') + self.google_cache_db_path = os.path.join(Preprocessor.fuji_server_dir, "data", "google_cache.db") self.google_custom_search_id = Preprocessor.google_custom_search_id self.google_custom_search_api_key = Preprocessor.google_custom_search_api_key @@ -49,31 +49,35 @@ def random_sample(self, limit): try: con = sl.connect(self.google_cache_db_path) with con: - samplef = pd.read_sql_query('SELECT uri FROM google_links ORDER BY RANDOM() LIMIT '+str(limit), con) - sample = samplef['uri'].values.tolist() + samplef = pd.read_sql_query("SELECT uri FROM google_links ORDER BY RANDOM() LIMIT " + str(limit), con) + sample = samplef["uri"].values.tolist() except Exception as e: print(e) return sample def query(self, pidlist): - #print(sys.getsizeof(Preprocessor.google_data_dois)) + # print(sys.getsizeof(Preprocessor.google_data_dois)) pidlist = [p for p in pidlist if p is not None] response = None found_google_links = None if not os.path.exists(self.google_cache_db_path): self.logger.warning( - 'FsF-F4-01M : Google Search Cache DB does not exist, see F-UJI installation instructions') + "FsF-F4-01M : Google Search Cache DB does not exist, see F-UJI installation instructions" + ) else: try: con = sl.connect(self.google_cache_db_path) with con: - dbquery = 'SELECT LOWER(uri) FROM google_links where uri IN(' + ', '.join( - f'\'{str(pid).lower()}\'' for pid in pidlist) + ')' + dbquery = ( + "SELECT LOWER(uri) FROM google_links where uri IN(" + + ", ".join(f"'{str(pid).lower()}'" for pid in pidlist) + + ")" + ) dbres = con.execute(dbquery) found_google_links = dbres.fetchall() except Exception as e: - self.logger.warning('FsF-F4-01M : Google Search Cache DB Query Error: -:' + str(e)) + self.logger.warning("FsF-F4-01M : Google Search Cache DB Query Error: -:" + str(e)) if found_google_links: self.islisted = True @@ -91,43 +95,43 @@ def query(self, pidlist): break if self.islisted: - self.logger.info('FsF-F4-01M : Found identifier in Google Dataset Search cache -:' + - str(found_google_links)) + self.logger.info( + "FsF-F4-01M : Found identifier in Google Dataset Search cache -:" + str(found_google_links) + ) else: - self.logger.info('FsF-F4-01M : Identifier not listed in Google Dataset Search cache -:' + str(pidlist)) + self.logger.info("FsF-F4-01M : Identifier not listed in Google Dataset Search cache -:" + str(pidlist)) return response def create_cache_db(self, google_cache_file): gs = pd.read_csv(google_cache_file) - #google_cache_db_path = os.path.join(Preprocessor.fuji_server_dir, 'data','google_cache.db') + # google_cache_db_path = os.path.join(Preprocessor.fuji_server_dir, 'data','google_cache.db') con = sl.connect(self.google_cache_db_path) - gf = pd.DataFrame(pd.concat([gs['url'], gs['doi']]), columns=['uri']).drop_duplicates() - gf['source'] = 0 - gf.to_sql('google_links', con, if_exists='replace', index=False) + gf = pd.DataFrame(pd.concat([gs["url"], gs["doi"]]), columns=["uri"]).drop_duplicates() + gf["source"] = 0 + gf.to_sql("google_links", con, if_exists="replace", index=False) with con: - data = con.execute('CREATE INDEX google_uri_index ON google_links (uri) ') + data = con.execute("CREATE INDEX google_uri_index ON google_links (uri) ") con.close() - def add_google_search_record(self, url_to_save, source = 1): - #three sourced (int) : 0 = from kaggle file, 1 = from custom search match, 2 = google search (scraped) + def add_google_search_record(self, url_to_save, source=1): + # three sourced (int) : 0 = from kaggle file, 1 = from custom search match, 2 = google search (scraped) con = sl.connect(self.google_cache_db_path) try: with con: - data = con.execute('INSERT INTO google_links (uri, source) values (\''+str(url_to_save)+'\',1)') + data = con.execute("INSERT INTO google_links (uri, source) values ('" + str(url_to_save) + "',1)") return except Exception as e: - print('GOOGLE CACHE INSERT FAILED', e) + print("GOOGLE CACHE INSERT FAILED", e) con.close() return True ##test - def query_google_webindex(self,url_to_test, pidlist): + def query_google_webindex(self, url_to_test, pidlist): url_to_test = str(url_to_test).strip() google = "https://www.google.com/search?q=site:" + url_to_test + "&hl=en" headers = { - "User-Agent": - "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3538.102 Safari/537.36 Edge/18.19582" + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3538.102 Safari/537.36 Edge/18.19582" } found_url_in_google = False try: @@ -142,30 +146,37 @@ def query_google_webindex(self,url_to_test, pidlist): self.add_google_search_record(url_to_save) sleep(randint(5, 20)) except Exception as e: - self.logger.warning('FsF-F4-01M : Google Index Query Error: -:' + str(e)) + self.logger.warning("FsF-F4-01M : Google Index Query Error: -:" + str(e)) return found_url_in_google def query_google_custom_search(self, url_to_test, pidlist): url_to_test = str(url_to_test).strip() - if str(self.object_type).strip().lower() == 'dataset': + if str(self.object_type).strip().lower() == "dataset": found_url_in_google = False if self.google_custom_search_id and self.google_custom_search_api_key: try: - google_url = 'https://customsearch.googleapis.com/customsearch/v1?cx=' + self.google_custom_search_id + '&q=url:' + url_to_test + '&key=' + self.google_custom_search_api_key + google_url = ( + "https://customsearch.googleapis.com/customsearch/v1?cx=" + + self.google_custom_search_id + + "&q=url:" + + url_to_test + + "&key=" + + self.google_custom_search_api_key + ) res = requests.get(google_url) if res: try: google_json = res.json() - if google_json.get('items'): - for google_item in google_json.get('items'): - if google_item.get('link') == url_to_test: + if google_json.get("items"): + for google_item in google_json.get("items"): + if google_item.get("link") == url_to_test: for url_to_save in pidlist: self.add_google_search_record(url_to_save) found_url_in_google = True except Exception as e: print(e) except Exception as e: - self.logger.warning('FsF-F4-01M : Google Custom Search Query Error: -:' + str(e)) + self.logger.warning("FsF-F4-01M : Google Custom Search Query Error: -:" + str(e)) return found_url_in_google def init_google_custom_search(self, custom_search_id, api_key): diff --git a/fuji_server/helper/catalogue_helper_mendeley_data.py b/fuji_server/helper/catalogue_helper_mendeley_data.py index 24811eb2..e5da11ed 100644 --- a/fuji_server/helper/catalogue_helper_mendeley_data.py +++ b/fuji_server/helper/catalogue_helper_mendeley_data.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- import logging + import requests from fuji_server.helper.catalogue_helper import MetaDataCatalogue @@ -19,8 +20,9 @@ class MetaDataCatalogueMendeleyData(MetaDataCatalogue): query(pidlist) Method to check whether the metadata given by PID is listed in Mendeley Data """ + islisted = False - apiURI = 'https://api.datasearch.elsevier.com/api/v2/search?query=' + apiURI = "https://api.datasearch.elsevier.com/api/v2/search?query=" def __init__(self, logger: logging.Logger = None): self.logger = logger @@ -42,25 +44,29 @@ def query(self, pidlist): for pid in pidlist: try: if pid: - res = requests.get(self.apiURI + '/' + requests.utils.quote(str(pid)), timeout=1) - self.logger.info('FsF-F4-01M : Querying Mendeley Data API for -:' + str(pid)) + res = requests.get(self.apiURI + "/" + requests.utils.quote(str(pid)), timeout=1) + self.logger.info("FsF-F4-01M : Querying Mendeley Data API for -:" + str(pid)) if res.status_code == 200: resp = res.json() - if resp.get('results'): - for result in resp.get('results'): - if str(pid).lower() == str(result.get('doi')).lower() or str(pid).lower() == str( - result.get('containerURI')).lower(): + if resp.get("results"): + for result in resp.get("results"): + if ( + str(pid).lower() == str(result.get("doi")).lower() + or str(pid).lower() == str(result.get("containerURI")).lower() + ): self.islisted = True - self.logger.info('FsF-F4-01M : Found identifier in Mendeley Data catalogue -:' + - str(pid)) + self.logger.info( + "FsF-F4-01M : Found identifier in Mendeley Data catalogue -:" + str(pid) + ) break if not self.islisted: - self.logger.info('FsF-F4-01M : Identifier not listed in Mendeley Data catalogue -:' + - str(pid)) + self.logger.info( + "FsF-F4-01M : Identifier not listed in Mendeley Data catalogue -:" + str(pid) + ) else: - self.logger.error('FsF-F4-01M : Mendeley Data API not available -:' + str(res.status_code)) + self.logger.error("FsF-F4-01M : Mendeley Data API not available -:" + str(res.status_code)) except Exception as e: - self.logger.error('FsF-F4-01M : Mendeley Data API not available or returns errors: ' + str(e)) + self.logger.error("FsF-F4-01M : Mendeley Data API not available or returns errors: " + str(e)) return response diff --git a/fuji_server/helper/create_google_cache_db.py b/fuji_server/helper/create_google_cache_db.py index e6e06c95..94ceff2a 100644 --- a/fuji_server/helper/create_google_cache_db.py +++ b/fuji_server/helper/create_google_cache_db.py @@ -6,12 +6,12 @@ # Step 1 visit: https://www.kaggle.com/googleai/dataset-search-metadata-for-datasets # Step 2 download the latest Dataset Search corpus file # Step 3 indicate the location of the file below -google_file_location = 'C:\\Users\\Robert\\Documents\\dataset_metadata_2020_10_16.csv' +google_file_location = "C:\\Users\\Robert\\Documents\\dataset_metadata_2020_10_16.csv" # Step 4 run the script if google_file_location is not None: - print('Starting to create Google Dataset Search DB') + print("Starting to create Google Dataset Search DB") g.create_cache_db(google_file_location) - print('Finished...') + print("Finished...") else: - print('No google_file_location provided, FUJI is not properly installed.') + print("No google_file_location provided, FUJI is not properly installed.") diff --git a/fuji_server/helper/create_google_lists.py b/fuji_server/helper/create_google_lists.py index a8e1b0b3..e09ed340 100644 --- a/fuji_server/helper/create_google_lists.py +++ b/fuji_server/helper/create_google_lists.py @@ -11,9 +11,9 @@ # Step 4 run the script if google_file_location is None: # Throw an exception instead? - #pass # do not be verbose otherwise this gets printed on import - print('Could not create Google Dataset Search files, no google_file_location specified, please do so.') + # pass # do not be verbose otherwise this gets printed on import + print("Could not create Google Dataset Search files, no google_file_location specified, please do so.") else: - print('Starting to create Google Dataset Search files') + print("Starting to create Google Dataset Search files") g.create_lists(google_file_location) - print('Finished...') + print("Finished...") diff --git a/fuji_server/helper/identifier_helper.py b/fuji_server/helper/identifier_helper.py index b0647b61..a8422541 100644 --- a/fuji_server/helper/identifier_helper.py +++ b/fuji_server/helper/identifier_helper.py @@ -20,171 +20,183 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. +import re import urllib import uuid import hashid import idutils -import re - import requests from fuji_server.helper.metadata_mapper import Mapper from fuji_server.helper.preprocessor import Preprocessor -from fuji_server.helper.request_helper import RequestHelper, AcceptTypes +from fuji_server.helper.request_helper import AcceptTypes, RequestHelper class IdentifierHelper: # List of PIDS e.g. those listed in datacite schema VALID_PIDS = { - 'ark':{'label':'Archival Resource Key (ARK)','source':'datacite.org'}, - 'arxiv':{'label':'arXiv Submission ID','source':'datacite.org'}, - 'bioproject':{'label':'BioProject ID','source':'identifiers.org'}, - 'biosample':{'label':'BioSample ID','source':'identifiers.org'}, - 'doi':{'label':'Digital Object Identifier (DOI)','source':'datacite.org'}, - 'ensembl':{'label':'Ensembl ID','source':'identifiers.org'}, - 'genome':{'label':'GenBank or RefSeq genome','source':'identifiers.org'}, - 'gnd':{'label':'Gemeinsame Normdatei (GND) ID','source':'f-uji.net'}, - 'handle':{'label':'Handle System ID','source':'datacite.org'}, - 'lsid':{'label':'Life Science Identifier','source':'datacite.org'}, - 'pmid':{'label':'PubMed ID','source':'datacite.org'}, - 'pmcid':{'label':'PubMed Central ID','source':'identifiers.org'}, - 'purl':{'label':'Persistent Uniform Resource Locator (PURL)','source':'datacite.org'}, - 'refseq':{'label':'RefSeq ID','source':'identifiers.org'}, - 'sra':{'label':'Sequence Read Archive (SRA) ID','source':'identifiers.org'}, - 'uniprot':{'label':'UniProt ID','source':'identifiers.org'}, - 'urn':{'label':'Uniform Resource Name (URN)','source':'datacite.org'}, - 'identifiers.org':{'label':'Identifiers.org Identifier','source':'identifiers.org'}, - 'w3id':{'label':'Permanent Identifier for the Web (W3ID)','source':'identifiers.org'} + "ark": {"label": "Archival Resource Key (ARK)", "source": "datacite.org"}, + "arxiv": {"label": "arXiv Submission ID", "source": "datacite.org"}, + "bioproject": {"label": "BioProject ID", "source": "identifiers.org"}, + "biosample": {"label": "BioSample ID", "source": "identifiers.org"}, + "doi": {"label": "Digital Object Identifier (DOI)", "source": "datacite.org"}, + "ensembl": {"label": "Ensembl ID", "source": "identifiers.org"}, + "genome": {"label": "GenBank or RefSeq genome", "source": "identifiers.org"}, + "gnd": {"label": "Gemeinsame Normdatei (GND) ID", "source": "f-uji.net"}, + "handle": {"label": "Handle System ID", "source": "datacite.org"}, + "lsid": {"label": "Life Science Identifier", "source": "datacite.org"}, + "pmid": {"label": "PubMed ID", "source": "datacite.org"}, + "pmcid": {"label": "PubMed Central ID", "source": "identifiers.org"}, + "purl": {"label": "Persistent Uniform Resource Locator (PURL)", "source": "datacite.org"}, + "refseq": {"label": "RefSeq ID", "source": "identifiers.org"}, + "sra": {"label": "Sequence Read Archive (SRA) ID", "source": "identifiers.org"}, + "uniprot": {"label": "UniProt ID", "source": "identifiers.org"}, + "urn": {"label": "Uniform Resource Name (URN)", "source": "datacite.org"}, + "identifiers.org": {"label": "Identifiers.org Identifier", "source": "identifiers.org"}, + "w3id": {"label": "Permanent Identifier for the Web (W3ID)", "source": "identifiers.org"}, } - #identifiers.org pattern - #TODO: check if this is needed.. if so ..complete and add check to FAIRcheck - IDENTIFIERS_PIDS = r'https://identifiers.org/[provider_code/]namespace:accession' + # identifiers.org pattern + # TODO: check if this is needed.. if so ..complete and add check to FAIRcheck + IDENTIFIERS_PIDS = r"https://identifiers.org/[provider_code/]namespace:accession" IDENTIFIERS_ORG_DATA = Preprocessor.get_identifiers_org_data() identifier_schemes = [] preferred_schema = None # the preferred schema identifier_url = None identifier = None - method = 'idutils' + method = "idutils" resolver = None is_persistent = False - NON_IDENTIFIERS_ORG_KEYS = ['doi'] - URN_RESOLVER = {'urn:doi:': 'dx.doi.org/', - 'urn:lex:br':'www.lexml.gov.br/', - 'urn:nbn:de':'nbn-resolving.org/', - 'urn:nbn:se':'urn.kb.se/resolve?urn=', - 'urn:nbn:at':'resolver.obvsg.at/', - 'urn:nbn:hr':'urn.nsk.hr/', - 'urn:nbn:no':'urn.nb.no/', - 'urn:nbn:fi':'urn.fi/', - 'urn:nbn:it':'nbn.depositolegale.it/', - 'urn:nbn:nl':'www.persistent-identifier.nl/'} + NON_IDENTIFIERS_ORG_KEYS = ["doi"] + URN_RESOLVER = { + "urn:doi:": "dx.doi.org/", + "urn:lex:br": "www.lexml.gov.br/", + "urn:nbn:de": "nbn-resolving.org/", + "urn:nbn:se": "urn.kb.se/resolve?urn=", + "urn:nbn:at": "resolver.obvsg.at/", + "urn:nbn:hr": "urn.nsk.hr/", + "urn:nbn:no": "urn.nb.no/", + "urn:nbn:fi": "urn.fi/", + "urn:nbn:it": "nbn.depositolegale.it/", + "urn:nbn:nl": "www.persistent-identifier.nl/", + } - #check if the urn is a urn plus resolver URL + # check if the urn is a urn plus resolver URL def check_resolver_urn(self, idstring): ret = False - if 'urn:' in idstring and not idstring.startswith('urn:'): + if "urn:" in idstring and not idstring.startswith("urn:"): try: - urnsplit = re.split(r'(urn:(?:nbn|doi|lex|):[a-z]+)', idstring, re.IGNORECASE) + urnsplit = re.split(r"(urn:(?:nbn|doi|lex|):[a-z]+)", idstring, re.IGNORECASE) if len(urnsplit) > 1: urnid = urnsplit[1] candidateurn = urnid + str(urnsplit[2]) - candresolver = re.sub(r'https?://', '', urnsplit[0]) + candresolver = re.sub(r"https?://", "", urnsplit[0]) if candresolver in self.URN_RESOLVER.values(): if idutils.is_urn(candidateurn): - self.identifier_schemes = ['url', 'urn'] - self.preferred_schema = 'urn' + self.identifier_schemes = ["url", "urn"] + self.preferred_schema = "urn" self.normalized_id = candidateurn - self.identifier_url = 'https://' + candresolver + candidateurn + self.identifier_url = "https://" + candresolver + candidateurn ret = True except Exception as e: - print('URN parsing error', e) + print("URN parsing error", e) return ret - def __init__(self, idstring, logger = None): + def __init__(self, idstring, logger=None): self.identifier = idstring self.normalized_id = None self.logger = logger if self.identifier and isinstance(self.identifier, str): idparts = urllib.parse.urlparse(self.identifier) if len(self.identifier) > 4 and not self.identifier.isnumeric(): - #workaround to identify nbn urns given together with standard resolver urls: + # workaround to identify nbn urns given together with standard resolver urls: self.check_resolver_urn(self.identifier) - #workaround to resolve lsids: - #idutils.LANDING_URLS['lsid'] ='http://www.lsid.info/resolver/?lsid={pid}' - #workaround to recognize https purls and arks - if '/purl.archive.org/' in self.identifier: - self.identifier = self.identifier.replace('/purl.archive.org/', '/purl.org/') - if 'https://purl.' in self.identifier or '/ark:' in self.identifier: - self.identifier = self.identifier.replace('https:', 'http:') - #workaround to identify arks properly: - self.identifier = self.identifier.replace('/ark:' , '/ark:/' ) - self.identifier = self.identifier.replace('/ark://', '/ark:/') - generic_identifiers_org_pattern = r'^([a-z0-9\._]+):(.+)' + # workaround to resolve lsids: + # idutils.LANDING_URLS['lsid'] ='http://www.lsid.info/resolver/?lsid={pid}' + # workaround to recognize https purls and arks + if "/purl.archive.org/" in self.identifier: + self.identifier = self.identifier.replace("/purl.archive.org/", "/purl.org/") + if "https://purl." in self.identifier or "/ark:" in self.identifier: + self.identifier = self.identifier.replace("https:", "http:") + # workaround to identify arks properly: + self.identifier = self.identifier.replace("/ark:", "/ark:/") + self.identifier = self.identifier.replace("/ark://", "/ark:/") + generic_identifiers_org_pattern = r"^([a-z0-9\._]+):(.+)" if self.is_uuid(): - self.identifier_schemes = ['uuid'] - self.preferred_schema = 'uuid' + self.identifier_schemes = ["uuid"] + self.preferred_schema = "uuid" self.is_persistent = False if self.is_hash(): - self.identifier_schemes = ['hash'] - self.preferred_schema = 'hash' + self.identifier_schemes = ["hash"] + self.preferred_schema = "hash" self.is_persistent = False - if not self.identifier_schemes or self.identifier_schemes == ['url']: + if not self.identifier_schemes or self.identifier_schemes == ["url"]: # w3id check - if idparts.scheme == 'https' and idparts.netloc in ['w3id.org','www.w3id.org'] and idparts.path != '': - self.identifier_schemes = ['w3id','url'] - self.preferred_schema = 'w3id' + if ( + idparts.scheme == "https" + and idparts.netloc in ["w3id.org", "www.w3id.org"] + and idparts.path != "" + ): + self.identifier_schemes = ["w3id", "url"] + self.preferred_schema = "w3id" self.identifier_url = self.identifier self.normalized_id = self.identifier - #identifiers.org + # identifiers.org - elif idparts.netloc == 'identifiers.org': - idorgparts = idparts.path.split('/') + elif idparts.netloc == "identifiers.org": + idorgparts = idparts.path.split("/") if len(idorgparts) == 3: - self.identifier = idorgparts[1]+':'+idorgparts[2] + self.identifier = idorgparts[1] + ":" + idorgparts[2] idmatch = re.search(generic_identifiers_org_pattern, self.identifier) if idmatch: found_prefix = idmatch[1] found_suffix = idmatch[2] - if found_prefix in self.IDENTIFIERS_ORG_DATA.keys() and found_prefix not in self.NON_IDENTIFIERS_ORG_KEYS: - if (re.search(self.IDENTIFIERS_ORG_DATA[found_prefix]['pattern'], found_suffix)): - self.identifier_schemes = ['identifiers.org',found_prefix] + if ( + found_prefix in self.IDENTIFIERS_ORG_DATA.keys() + and found_prefix not in self.NON_IDENTIFIERS_ORG_KEYS + ): + if re.search(self.IDENTIFIERS_ORG_DATA[found_prefix]["pattern"], found_suffix): + self.identifier_schemes = ["identifiers.org", found_prefix] self.preferred_schema = found_prefix self.identifier_url = str( - self.IDENTIFIERS_ORG_DATA[found_prefix]['url_pattern']).replace( - '{$id}', found_suffix) - self.normalized_id = found_prefix.lower() + ':' + found_suffix + self.IDENTIFIERS_ORG_DATA[found_prefix]["url_pattern"] + ).replace("{$id}", found_suffix) + self.normalized_id = found_prefix.lower() + ":" + found_suffix # idutils check if not self.identifier_schemes: self.identifier_schemes = idutils.detect_identifier_schemes(self.identifier) - if 'url' not in self.identifier_schemes and idparts.scheme in ['http','https']: - self.identifier_schemes.append('url') + if "url" not in self.identifier_schemes and idparts.scheme in ["http", "https"]: + self.identifier_schemes.append("url") # verify handles - if 'handle' in self.identifier_schemes: + if "handle" in self.identifier_schemes: if not self.verify_handle(self.identifier): - self.identifier_schemes.remove('handle') + self.identifier_schemes.remove("handle") # identifiers.org check if self.identifier_schemes: # preferred schema if self.identifier_schemes: if len(self.identifier_schemes) > 0: if len(self.identifier_schemes) > 1: - if 'url' in self.identifier_schemes: # ['doi', 'url'] - #move url to end of list - self.identifier_schemes.append(self.identifier_schemes.pop(self.identifier_schemes.index('url'))) - #self.identifier_schemes.remove('url') + if "url" in self.identifier_schemes: # ['doi', 'url'] + # move url to end of list + self.identifier_schemes.append( + self.identifier_schemes.pop(self.identifier_schemes.index("url")) + ) + # self.identifier_schemes.remove('url') self.preferred_schema = self.identifier_schemes[0] if not self.normalized_id: self.normalized_id = idutils.normalize_pid(self.identifier, self.preferred_schema) if not self.identifier_url: self.identifier_url = self.to_url(self.identifier, self.preferred_schema) - #print('IDURL ',self.identifier_url, self.preferred_schema) - if self.preferred_schema in self.VALID_PIDS or self.preferred_schema in self.IDENTIFIERS_ORG_DATA.keys( + # print('IDURL ',self.identifier_url, self.preferred_schema) + if ( + self.preferred_schema in self.VALID_PIDS + or self.preferred_schema in self.IDENTIFIERS_ORG_DATA.keys() ): self.is_persistent = True if not self.normalized_id: @@ -205,31 +217,33 @@ def is_hash(self): hash = hashid.HashID() validhash = False for hashtype in hash.identifyHash(self.identifier): - if re.search(r'^(sha|md5|blake)', hashtype.name, re.IGNORECASE): + if re.search(r"^(sha|md5|blake)", hashtype.name, re.IGNORECASE): validhash = True return validhash except Exception: return False def verify_handle(self, val, includeparams=True): - #additional checks for handles since the syntax is very generic + # additional checks for handles since the syntax is very generic try: - #see: https://www.icann.org/en/system/files/files/octo-002-14oct19-en.pdf : + # see: https://www.icann.org/en/system/files/files/octo-002-14oct19-en.pdf : # One of the Handle System's main features is that prefixes do not include names. Dr. Kahn # explains that the Handle System "does not rely on name semantics". For example, organization # names are usually not included in handle prefixes. To date, except for a few special (and # primarily administrative) cases, prefixes contain only digits. # Therefore: - #handle_regexp = re.compile(r"(hdl:\s*|(?:https?://)?hdl\.handle\.net/)?([^/.]+(?:\.[^/.]+)*)/(.+)$") - handle_regexp = re.compile(r"(hdl:\s*|(?:https?://)?hdl\.handle\.net/)?([0-9]+(?:\.[0-9]+)*)/(.+)$", flags=re.I) + # handle_regexp = re.compile(r"(hdl:\s*|(?:https?://)?hdl\.handle\.net/)?([^/.]+(?:\.[^/.]+)*)/(.+)$") + handle_regexp = re.compile( + r"(hdl:\s*|(?:https?://)?hdl\.handle\.net/)?([0-9]+(?:\.[0-9]+)*)/(.+)$", flags=re.I + ) ures = urllib.parse.urlparse(val) if ures: if ures.query: - #detect handles in uri - for query in ures.query.split('&'): + # detect handles in uri + for query in ures.query.split("&"): try: - param = query.split('=')[1] - if param.startswith('hdl.handle') or param.startswith('hdl:'): + param = query.split("=")[1] + if param.startswith("hdl.handle") or param.startswith("hdl:"): val = param except Exception as e: pass @@ -239,38 +253,38 @@ def verify_handle(self, val, includeparams=True): else: return False except Exception as e: - print('handle verification error: '+str(e)) + print("handle verification error: " + str(e)) return False def to_url(self, id, schema): idurl = None try: - if schema == 'ark': + if schema == "ark": idurl = id else: idurl = idutils.to_url(id, schema) - if schema in ['doi', 'handle']: - idurl = idurl.replace('http:', 'https:') + if schema in ["doi", "handle"]: + idurl = idurl.replace("http:", "https:") except Exception as e: - print('ID helper to_url error '+str(e)) + print("ID helper to_url error " + str(e)) return idurl - def get_resolved_url(self, pid_collector = {}): + def get_resolved_url(self, pid_collector={}): candidate_pid = self.identifier_url if candidate_pid not in pid_collector or not pid_collector: try: requestHelper = RequestHelper(candidate_pid, self.logger) requestHelper.setAcceptType(AcceptTypes.default) # request - requestHelper.content_negotiate('FsF-F1-02D', ignore_html=False) + requestHelper.content_negotiate("FsF-F1-02D", ignore_html=False) if requestHelper.response_content: return requestHelper.redirect_url else: return None except Exception as e: - print('PID resolve test error',e) + print("PID resolve test error", e) return None else: - return pid_collector[candidate_pid].get('landing_page') + return pid_collector[candidate_pid].get("landing_page") def get_preferred_schema(self): return self.preferred_schema @@ -284,14 +298,16 @@ def get_identifier_url(self): def get_normalized_id(self): return self.normalized_id - def get_identifier_info(self, pidcollector = {}, resolve = True): + def get_identifier_info(self, pidcollector={}, resolve=True): if resolve: resolved_url = self.get_resolved_url(pidcollector) else: resolved_url = None - return {'pid':self.identifier, - 'normalized':self.normalized_id, - 'pid_url':self.identifier_url, - 'scheme':self.preferred_schema, - 'is_persistent':self.is_persistent, - 'resolved_url': resolved_url} + return { + "pid": self.identifier, + "normalized": self.normalized_id, + "pid_url": self.identifier_url, + "scheme": self.preferred_schema, + "is_persistent": self.is_persistent, + "resolved_url": resolved_url, + } diff --git a/fuji_server/helper/linked_vocab_helper.py b/fuji_server/helper/linked_vocab_helper.py index 06d2d8dd..cae938f2 100644 --- a/fuji_server/helper/linked_vocab_helper.py +++ b/fuji_server/helper/linked_vocab_helper.py @@ -1,9 +1,10 @@ import json -from tldextract import extract -from urllib.parse import urlparse +import os import re +from urllib.parse import urlparse + import requests -import os +from tldextract import extract class linked_vocab_helper: @@ -12,18 +13,19 @@ class linked_vocab_helper: def __init__(self, linked_vocab_index={}): self.linked_vocab_index = linked_vocab_index self.linked_vocab_dict = {} - self.ignore_prefixes = ['orcid','doi','isni','ror','wikipedia'] - #prefixes used for identifiers only not terms - self.ignore_domain = ['orcid.org', 'doi.org','ror.org','zenodo.org'] + self.ignore_prefixes = ["orcid", "doi", "isni", "ror", "wikipedia"] + # prefixes used for identifiers only not terms + self.ignore_domain = ["orcid.org", "doi.org", "ror.org", "zenodo.org"] def set_linked_vocab_dict(self): - print('Setting up the vocab dict.........................') + print("Setting up the vocab dict.........................") # a new implementation based on bioportal etc.. - for ont_reg_file in os.listdir(os.path.join(self.fuji_server_dir, 'data', 'linked_vocabs')): - if ont_reg_file.endswith('.json'): #and ont_reg_file not in ['fuji_ontologies.json', 'bioregistry.json']: - with open(os.path.join(self.fuji_server_dir, 'data', 'linked_vocabs', ont_reg_file), - encoding='utf-8') as reg_file: + for ont_reg_file in os.listdir(os.path.join(self.fuji_server_dir, "data", "linked_vocabs")): + if ont_reg_file.endswith(".json"): # and ont_reg_file not in ['fuji_ontologies.json', 'bioregistry.json']: + with open( + os.path.join(self.fuji_server_dir, "data", "linked_vocabs", ont_reg_file), encoding="utf-8" + ) as reg_file: reg_ontologies = json.load(reg_file) self.linked_vocab_dict.update(reg_ontologies) @@ -31,120 +33,137 @@ def split_iri(self, iri): ret = {} domainparts = extract(iri) if domainparts.suffix: - ret['domain'] = domainparts.domain + '.' + domainparts.suffix + ret["domain"] = domainparts.domain + "." + domainparts.suffix if domainparts.domain: if domainparts.subdomain: - ret['subdomain'] = domainparts.subdomain + ret["subdomain"] = domainparts.subdomain else: - ret['subdomain'] = 'www' + ret["subdomain"] = "www" else: - ret['domain'], ret['subdomain'] = None, None + ret["domain"], ret["subdomain"] = None, None - ret['iri'] = iri + ret["iri"] = iri if domainparts.domain and domainparts.suffix: - ret['path'] = iri.split(domainparts.domain + '.' + domainparts.suffix)[1] + ret["path"] = iri.split(domainparts.domain + "." + domainparts.suffix)[1] else: - ret['path'] = None + ret["path"] = None return ret def add_linked_vocab_index_entry(self, prefix, reg_entry): - prefix = reg_entry.get('prefix') - uri_regex = reg_entry.get('pattern') - uri_format = reg_entry.get('uri_format') - namespace = uri_format.split('$1')[0] - subjects = reg_entry.get('subjects') - title = reg_entry.get('name') + prefix = reg_entry.get("prefix") + uri_regex = reg_entry.get("pattern") + uri_format = reg_entry.get("uri_format") + namespace = uri_format.split("$1")[0] + subjects = reg_entry.get("subjects") + title = reg_entry.get("name") uriparts = self.split_iri(uri_format) - if uriparts.get('domain') not in self.ignore_domain: - if not self.linked_vocab_index.get(uriparts.get('domain')): - self.linked_vocab_index[uriparts.get('domain')] = {} - if not self.linked_vocab_index[uriparts.get('domain')].get(uriparts.get('subdomain')): - self.linked_vocab_index[uriparts.get('domain')][uriparts.get('subdomain')] = [ - {'prefix': prefix, 'pattern': uriparts.get('path'), 'regex': uri_regex, 'subjects': subjects, - 'name': title,'namespace':namespace}] + if uriparts.get("domain") not in self.ignore_domain: + if not self.linked_vocab_index.get(uriparts.get("domain")): + self.linked_vocab_index[uriparts.get("domain")] = {} + if not self.linked_vocab_index[uriparts.get("domain")].get(uriparts.get("subdomain")): + self.linked_vocab_index[uriparts.get("domain")][uriparts.get("subdomain")] = [ + { + "prefix": prefix, + "pattern": uriparts.get("path"), + "regex": uri_regex, + "subjects": subjects, + "name": title, + "namespace": namespace, + } + ] else: - self.linked_vocab_index[uriparts.get('domain')][uriparts.get('subdomain')].append( - {'prefix': prefix, 'pattern': uriparts.get('path'), 'regex': uri_regex, 'subjects': subjects, - 'name': title,'namespace':namespace}) + self.linked_vocab_index[uriparts.get("domain")][uriparts.get("subdomain")].append( + { + "prefix": prefix, + "pattern": uriparts.get("path"), + "regex": uri_regex, + "subjects": subjects, + "name": title, + "namespace": namespace, + } + ) def set_linked_vocab_index(self): if not self.linked_vocab_dict: self.set_linked_vocab_dict() for rk, rd in self.linked_vocab_dict.items(): - if str(rd.get('prefix')).lower() not in self.ignore_prefixes: + if str(rd.get("prefix")).lower() not in self.ignore_prefixes: if isinstance(rd, dict): - if rd.get('uri_format'): + if rd.get("uri_format"): self.add_linked_vocab_index_entry(rk, rd) for k, d in rd.items(): if isinstance(d, dict): - if d.get('uri_format'): - if not d.get('name'): + if d.get("uri_format"): + if not d.get("name"): # try to get the first name in dict try: for el in (*rd.values(),): - if el.get('name'): - d['name'] = el.get('name') + if el.get("name"): + d["name"] = el.get("name") break except: pass self.add_linked_vocab_index_entry(rk, d) def get_overlap(self, s1, s2): - result = '' + result = "" for char in s1: if char in s2 and not char in result: result += char return len(result) - - def get_linked_vocab_by_iri(self, IRI, isnamespaceIRI=False, firstonly = True): + def get_linked_vocab_by_iri(self, IRI, isnamespaceIRI=False, firstonly=True): IRI = IRI.strip() if isnamespaceIRI: - IRI = IRI.rstrip('/#') + IRI = IRI.rstrip("/#") iri_parts = self.split_iri(IRI) onto_match = [] final_onto_match = None tested_patterns = [] - iri_domain = iri_parts.get('domain') + iri_domain = iri_parts.get("domain") if self.linked_vocab_index.get(iri_domain): - if self.linked_vocab_index[iri_domain].get(iri_parts.get('subdomain')): - for reg_res in self.linked_vocab_index[iri_domain][iri_parts.get('subdomain')]: + if self.linked_vocab_index[iri_domain].get(iri_parts.get("subdomain")): + for reg_res in self.linked_vocab_index[iri_domain][iri_parts.get("subdomain")]: # full match - if reg_res.get('namespace') == IRI: - onto_match.append({'score': len(iri_parts.get('path')), 'match': reg_res}) + if reg_res.get("namespace") == IRI: + onto_match.append({"score": len(iri_parts.get("path")), "match": reg_res}) else: # print(reg_res.get('pattern').replace('$1',''), iri_parts.get('path')) - if reg_res.get('pattern'): + if reg_res.get("pattern"): pattern_check = False if isnamespaceIRI: - #print(reg_res.get('pattern').split('$1')[0].rstrip('/#') , iri_parts.get('path').rstrip('/#')) - if reg_res.get('pattern').split('$1')[0].rstrip('/#') in iri_parts.get('path').rstrip('/#'): + # print(reg_res.get('pattern').split('$1')[0].rstrip('/#') , iri_parts.get('path').rstrip('/#')) + if reg_res.get("pattern").split("$1")[0].rstrip("/#") in iri_parts.get("path").rstrip( + "/#" + ): pattern_check = True else: - if reg_res.get('pattern').split('$1')[0] in iri_parts.get('path'): + if reg_res.get("pattern").split("$1")[0] in iri_parts.get("path"): pattern_check = True if pattern_check: - if reg_res.get('regex'): - comb_regex = reg_res.get('regex').lstrip('^').rstrip('$') + if reg_res.get("regex"): + comb_regex = reg_res.get("regex").lstrip("^").rstrip("$") else: - if '?' in reg_res.get('pattern'): - reg_res['pattern']=reg_res.get('pattern').replace('?','\?') - comb_regex = reg_res.get('pattern').split('$1')[0].rstrip('/#') + if "?" in reg_res.get("pattern"): + reg_res["pattern"] = reg_res.get("pattern").replace("?", "\?") + comb_regex = reg_res.get("pattern").split("$1")[0].rstrip("/#") if comb_regex not in tested_patterns: tested_patterns.append(comb_regex) - comb_match = re.search(comb_regex, iri_parts.get('path')) - score = self.get_overlap(iri_parts.get('path'), reg_res.get('pattern').split('$1')[0]) + comb_match = re.search(comb_regex, iri_parts.get("path")) + score = self.get_overlap( + iri_parts.get("path"), reg_res.get("pattern").split("$1")[0] + ) if comb_match: - #if len(comb_match.groups()) > 0: + # if len(comb_match.groups()) > 0: # if comb_match[1]: # print('++++++',comb_match[1],reg_res.get('namespace')) # reg_res['namespace'] = IRI.split(comb_match[1])[0] + comb_match[1] - onto_match.append({'score': score, 'match': reg_res}) + onto_match.append({"score": score, "match": reg_res}) maxscore = 0 if onto_match: for ont_m in onto_match: - if ont_m['score'] >= maxscore: - final_onto_match = ont_m['match'] + if ont_m["score"] >= maxscore: + final_onto_match = ont_m["match"] return final_onto_match diff --git a/fuji_server/helper/log_message_filter.py b/fuji_server/helper/log_message_filter.py index 1f431550..0721a333 100644 --- a/fuji_server/helper/log_message_filter.py +++ b/fuji_server/helper/log_message_filter.py @@ -25,17 +25,16 @@ class MessageFilter(logging.Filter): - def __init__(self): self.messages = {} def filter(self, record): # Intercept logs messages #TODO - do not write FsF-* messages into a log file - #print(record.getMessage()) - if record.msg.startswith('FsF-'): + # print(record.getMessage()) + if record.msg.startswith("FsF-"): level = record.levelname - m = record.msg.split(':', 1) - msg = '%s: %s' % (level, m[1].strip()) + m = record.msg.split(":", 1) + msg = "%s: %s" % (level, m[1].strip()) record.msg = msg return True diff --git a/fuji_server/helper/metadata_collector.py b/fuji_server/helper/metadata_collector.py index 7297ea76..445981eb 100644 --- a/fuji_server/helper/metadata_collector.py +++ b/fuji_server/helper/metadata_collector.py @@ -25,41 +25,44 @@ import enum import logging from typing import Optional + from urlextract import URLExtract + from fuji_server.helper import metadata_mapper +from fuji_server.helper.linked_vocab_helper import linked_vocab_helper from fuji_server.helper.metadata_mapper import Mapper from fuji_server.helper.preprocessor import Preprocessor -from fuji_server.helper.linked_vocab_helper import linked_vocab_helper class MetadataFormats(enum.Enum): - HTML = {'label':'HTML', 'acronym':'html'} - XHTML= {'label':'XHTML', 'acronym':'xhtml'} - XML= {'label':'XML', 'acronym':'xml'} - RDF= {'label':'RDF', 'acronym':'rdf'} - RDFA ={'label':'RDFa', 'acronym':'rdfa'} - JSON= {'label':'JSON', 'acronym':'json'} - JSONLD= {'label':'JSON-LD', 'acronym':'json-ld'} - MICRODATA ={'label':'MICRODATA','acronym':'microdata'} - TEXT ={'label':'Text', 'acronym':'text'} + HTML = {"label": "HTML", "acronym": "html"} + XHTML = {"label": "XHTML", "acronym": "xhtml"} + XML = {"label": "XML", "acronym": "xml"} + RDF = {"label": "RDF", "acronym": "rdf"} + RDFA = {"label": "RDFa", "acronym": "rdfa"} + JSON = {"label": "JSON", "acronym": "json"} + JSONLD = {"label": "JSON-LD", "acronym": "json-ld"} + MICRODATA = {"label": "MICRODATA", "acronym": "microdata"} + TEXT = {"label": "Text", "acronym": "text"} def acronym(self): - return self.value.get('acronym') + return self.value.get("acronym") + class MetadataOfferingMethods(enum.Enum): - HTML_EMBEDDING = {'label': 'HTML Embedding', 'acronym': 'html_embedding'} - MICRODATA_RDFA = {'label': 'Microdata and RDFa', 'acronym': 'microdata_rdfa'} - TYPED_LINKS = {'label': 'Typed Links', 'acronym': 'typed_links'} - SIGNPOSTING = {'label': 'Signposting Links', 'acronym': 'signposting'} - CONTENT_NEGOTIATION = {'label': 'Content Negotiation', 'acronym': 'content_negotiation'} + HTML_EMBEDDING = {"label": "HTML Embedding", "acronym": "html_embedding"} + MICRODATA_RDFA = {"label": "Microdata and RDFa", "acronym": "microdata_rdfa"} + TYPED_LINKS = {"label": "Typed Links", "acronym": "typed_links"} + SIGNPOSTING = {"label": "Signposting Links", "acronym": "signposting"} + CONTENT_NEGOTIATION = {"label": "Content Negotiation", "acronym": "content_negotiation"} def acronym(self): - return self.value.get('acronym') + return self.value.get("acronym") # Using enum class create enumerations of metadata sources class MetadataSources(enum.Enum): - """"Enum class to enumerate metadata sources.""" + """ "Enum class to enumerate metadata sources.""" @classmethod def getSourcesbyMethod(cls, methods): @@ -70,49 +73,116 @@ def getSourcesbyMethod(cls, methods): if isinstance(method, str): method = MetadataOfferingMethods[method] for ms in MetadataSources: - if ms.value.get('method') == method: + if ms.value.get("method") == method: found_sources.append(ms) return found_sources - HIGHWIRE_EPRINTS_EMBEDDED = {'method': MetadataOfferingMethods.HTML_EMBEDDING, 'label': 'Embedded Highwire or Eprints', - 'acronym': 'highwire-eprints-html', 'format':MetadataFormats.HTML} - DUBLINCORE_EMBEDDED = {'method': MetadataOfferingMethods.HTML_EMBEDDING, 'label': 'Embedded DublinCore', - 'acronym': 'dublincore-html', 'format':MetadataFormats.XHTML} - OPENGRAPH_EMBEDDED = {'method': MetadataOfferingMethods.HTML_EMBEDDING, 'label': 'Embedded OpenGraph', - 'acronym': 'opengraph-html', 'format':MetadataFormats.RDFA}#OpenGraph is based on RDFa - SCHEMAORG_EMBEDDED = {'method': MetadataOfferingMethods.HTML_EMBEDDING, 'label': 'Schema.org JSON-LD (Embedded)', - 'acronym': 'schemaorg-html','format':MetadataFormats.JSONLD} - RDFA_EMBEDDED = {'method': MetadataOfferingMethods.MICRODATA_RDFA, 'label': 'Embedded RDFa', 'acronym': 'rdfa-html', 'format':MetadataFormats.RDFA} - MICRODATA_EMBEDDED = {'method': MetadataOfferingMethods.MICRODATA_RDFA, 'label': 'Embedded Microdata', - 'acronym': 'microdata-html', 'format':MetadataFormats.MICRODATA} - SCHEMAORG_NEGOTIATED = {'method': MetadataOfferingMethods.CONTENT_NEGOTIATION, 'label': 'Schema.org JSON-LD (Negotiated)', - 'acronym': 'schemaorg-negotiated','format':MetadataFormats.JSONLD} - DATACITE_JSON_NEGOTIATED = {'method': MetadataOfferingMethods.CONTENT_NEGOTIATION, 'label': 'Datacite Search', - 'acronym': 'datacite-negotiated','format':'JSON'} - RDF_NEGOTIATED = {'method': MetadataOfferingMethods.CONTENT_NEGOTIATION, 'label': 'Linked Data (RDF)', - 'acronym': 'rdf-negotiated', 'format':MetadataFormats.RDF} - XML_NEGOTIATED = {'method': MetadataOfferingMethods.CONTENT_NEGOTIATION, 'label': 'Generic XML (Negotiated)', - 'acronym': 'xml-negotiated', 'format':MetadataFormats.XML} - XML_TYPED_LINKS = {'method': MetadataOfferingMethods.TYPED_LINKS, 'label': 'Generic XML, Typed Links', - 'acronym': 'xml-type-linked', 'format':MetadataFormats.XML} - RDF_TYPED_LINKS = {'method': MetadataOfferingMethods.TYPED_LINKS, 'label': 'Linked Data (RDF), Typed Links', - 'acronym': 'rdf-type-linked','format':MetadataFormats.RDF} # Links in header which lead to a RDF resource - SCHEMAORG_TYPED_LINKS = {'method': MetadataOfferingMethods.TYPED_LINKS, 'label': 'Schema.org JSON-LD, Typed Links', - 'acronym': 'schemaorg-type-linked', 'format': MetadataFormats.JSONLD} + HIGHWIRE_EPRINTS_EMBEDDED = { + "method": MetadataOfferingMethods.HTML_EMBEDDING, + "label": "Embedded Highwire or Eprints", + "acronym": "highwire-eprints-html", + "format": MetadataFormats.HTML, + } + DUBLINCORE_EMBEDDED = { + "method": MetadataOfferingMethods.HTML_EMBEDDING, + "label": "Embedded DublinCore", + "acronym": "dublincore-html", + "format": MetadataFormats.XHTML, + } + OPENGRAPH_EMBEDDED = { + "method": MetadataOfferingMethods.HTML_EMBEDDING, + "label": "Embedded OpenGraph", + "acronym": "opengraph-html", + "format": MetadataFormats.RDFA, + } # OpenGraph is based on RDFa + SCHEMAORG_EMBEDDED = { + "method": MetadataOfferingMethods.HTML_EMBEDDING, + "label": "Schema.org JSON-LD (Embedded)", + "acronym": "schemaorg-html", + "format": MetadataFormats.JSONLD, + } + RDFA_EMBEDDED = { + "method": MetadataOfferingMethods.MICRODATA_RDFA, + "label": "Embedded RDFa", + "acronym": "rdfa-html", + "format": MetadataFormats.RDFA, + } + MICRODATA_EMBEDDED = { + "method": MetadataOfferingMethods.MICRODATA_RDFA, + "label": "Embedded Microdata", + "acronym": "microdata-html", + "format": MetadataFormats.MICRODATA, + } + SCHEMAORG_NEGOTIATED = { + "method": MetadataOfferingMethods.CONTENT_NEGOTIATION, + "label": "Schema.org JSON-LD (Negotiated)", + "acronym": "schemaorg-negotiated", + "format": MetadataFormats.JSONLD, + } + DATACITE_JSON_NEGOTIATED = { + "method": MetadataOfferingMethods.CONTENT_NEGOTIATION, + "label": "Datacite Search", + "acronym": "datacite-negotiated", + "format": "JSON", + } + RDF_NEGOTIATED = { + "method": MetadataOfferingMethods.CONTENT_NEGOTIATION, + "label": "Linked Data (RDF)", + "acronym": "rdf-negotiated", + "format": MetadataFormats.RDF, + } + XML_NEGOTIATED = { + "method": MetadataOfferingMethods.CONTENT_NEGOTIATION, + "label": "Generic XML (Negotiated)", + "acronym": "xml-negotiated", + "format": MetadataFormats.XML, + } + XML_TYPED_LINKS = { + "method": MetadataOfferingMethods.TYPED_LINKS, + "label": "Generic XML, Typed Links", + "acronym": "xml-type-linked", + "format": MetadataFormats.XML, + } + RDF_TYPED_LINKS = { + "method": MetadataOfferingMethods.TYPED_LINKS, + "label": "Linked Data (RDF), Typed Links", + "acronym": "rdf-type-linked", + "format": MetadataFormats.RDF, + } # Links in header which lead to a RDF resource + SCHEMAORG_TYPED_LINKS = { + "method": MetadataOfferingMethods.TYPED_LINKS, + "label": "Schema.org JSON-LD, Typed Links", + "acronym": "schemaorg-type-linked", + "format": MetadataFormats.JSONLD, + } # TYPED_LINK = 'Typed Links' - SIGNPOSTING_LINKS = {'method': MetadataOfferingMethods.SIGNPOSTING, 'label': 'Signposting Typed Links', - 'acronym': 'signposting-linked'} - RDF_SIGNPOSTING_LINKS = {'method': MetadataOfferingMethods.SIGNPOSTING, 'label': 'Linked Data (RDF), Signposting Links', - 'acronym': 'rdf-signposting-linked','format':MetadataFormats.RDF} - XML_SIGNPOSTING_LINKS = {'method': MetadataOfferingMethods.SIGNPOSTING, 'label': 'Generic XML, Signposting Links', - 'acronym': 'xml-signposting-linked','format':MetadataFormats.XML} + SIGNPOSTING_LINKS = { + "method": MetadataOfferingMethods.SIGNPOSTING, + "label": "Signposting Typed Links", + "acronym": "signposting-linked", + } + RDF_SIGNPOSTING_LINKS = { + "method": MetadataOfferingMethods.SIGNPOSTING, + "label": "Linked Data (RDF), Signposting Links", + "acronym": "rdf-signposting-linked", + "format": MetadataFormats.RDF, + } + XML_SIGNPOSTING_LINKS = { + "method": MetadataOfferingMethods.SIGNPOSTING, + "label": "Generic XML, Signposting Links", + "acronym": "xml-signposting-linked", + "format": MetadataFormats.XML, + } # B2FIND = 'B2FIND Metadata Aggregator' - XML_GUESSED = {'method': None, 'label': 'Guessed XML Link','acronym':'xml-guessed', 'format':MetadataFormats.XML} - OAI_ORE = {'method': MetadataOfferingMethods.TYPED_LINKS, 'label': 'OAI-ORE','format':MetadataFormats.XML} + XML_GUESSED = {"method": None, "label": "Guessed XML Link", "acronym": "xml-guessed", "format": MetadataFormats.XML} + OAI_ORE = {"method": MetadataOfferingMethods.TYPED_LINKS, "label": "OAI-ORE", "format": MetadataFormats.XML} + def acronym(self): - return self.value.get('acronym') + return self.value.get("acronym") + def format(self): - return self.value.get('format') + return self.value.get("format") + class MetaDataCollector(object): """ @@ -160,12 +230,9 @@ class MetaDataCollector(object): metadata_mapping: Optional[Mapper] - - - def __init__(self, - sourcemetadata: dict = None, - mapping: metadata_mapper.Mapper = None, - logger: logging.Logger = None): + def __init__( + self, sourcemetadata: dict = None, mapping: metadata_mapper.Mapper = None, logger: logging.Logger = None + ): """ Parameters ---------- @@ -181,13 +248,13 @@ def __init__(self, self.metadata_format = None self.logger = logger self.target_metadata = {} - #namespaces used in the declaration parts + # namespaces used in the declaration parts self.namespaces = [] - #namespaces recognized in lonked URIs + # namespaces recognized in lonked URIs self.linked_namespaces = {} self.content_type = None self.uris = [] - self.auth_token_type = 'Basic' + self.auth_token_type = "Basic" self.auth_token = None self.accept_type = None @@ -252,8 +319,8 @@ def setLinkedNamespaces(self, meta_source): if isinstance(url, str): found_lov = lov_helper.get_linked_vocab_by_iri(url) if found_lov: - self.linked_namespaces[found_lov.get('namespace')] = found_lov + self.linked_namespaces[found_lov.get("namespace")] = found_lov def set_auth_token(self, authtoken, authtokentype): self.auth_token = authtoken - self.auth_token_type = authtokentype \ No newline at end of file + self.auth_token_type = authtokentype diff --git a/fuji_server/helper/metadata_collector_datacite.py b/fuji_server/helper/metadata_collector_datacite.py index 01fd36d0..6e1938e4 100644 --- a/fuji_server/helper/metadata_collector_datacite.py +++ b/fuji_server/helper/metadata_collector_datacite.py @@ -22,10 +22,12 @@ # SOFTWARE. from typing import List + import jmespath + from fuji_server.helper.metadata_collector import MetaDataCollector, MetadataSources from fuji_server.helper.metadata_mapper import Mapper -from fuji_server.helper.request_helper import RequestHelper, AcceptTypes +from fuji_server.helper.request_helper import AcceptTypes, RequestHelper class MetaDataCollectorDatacite(MetaDataCollector): @@ -64,11 +66,11 @@ def __init__(self, mapping, pid_url=None, loggerinst=None): """ super().__init__(logger=loggerinst, mapping=mapping) self.pid_url = pid_url - self.exclude_conversion = ['creator', 'license', 'related_resources', 'access_level'] + self.exclude_conversion = ["creator", "license", "related_resources", "access_level"] self.accept_type = AcceptTypes.datacite_json def parse_metadata(self): - """ Parse the Datacite metadata from the data + """Parse the Datacite metadata from the data Returns ------ @@ -80,10 +82,10 @@ def parse_metadata(self): source_name = None dcite_metadata = {} if self.pid_url: - self.logger.info('FsF-F2-01M : Trying to retrieve datacite metadata') + self.logger.info("FsF-F2-01M : Trying to retrieve datacite metadata") requestHelper = RequestHelper(self.pid_url, self.logger) requestHelper.setAcceptType(self.accept_type) - neg_format, ext_meta = requestHelper.content_negotiate('FsF-F2-01M') + neg_format, ext_meta = requestHelper.content_negotiate("FsF-F2-01M") self.metadata_format = neg_format self.content_type = requestHelper.content_type if ext_meta: @@ -91,39 +93,42 @@ def parse_metadata(self): dcite_metadata = jmespath.search(self.metadata_mapping.value, ext_meta) if dcite_metadata: self.setLinkedNamespaces(str(ext_meta)) - self.namespaces.append('http://datacite.org/schema/') + self.namespaces.append("http://datacite.org/schema/") source_name = MetadataSources.DATACITE_JSON_NEGOTIATED - if dcite_metadata['creator'] is None: - first = dcite_metadata['creator_first'] - last = dcite_metadata['creator_last'] + if dcite_metadata["creator"] is None: + first = dcite_metadata["creator_first"] + last = dcite_metadata["creator_last"] # default type of creator is [] if isinstance(first, list) and isinstance(last, list): if len(first) == len(last): - names = [i + ' ' + j for i, j in zip(first, last)] - dcite_metadata['creator'] = names + names = [i + " " + j for i, j in zip(first, last)] + dcite_metadata["creator"] = names - if dcite_metadata.get('related_resources'): - self.logger.info('FsF-I3-01M : {0} related resource(s) extracted from -: {1}'.format( - len(dcite_metadata['related_resources']), source_name.name)) + if dcite_metadata.get("related_resources"): + self.logger.info( + "FsF-I3-01M : {0} related resource(s) extracted from -: {1}".format( + len(dcite_metadata["related_resources"]), source_name.name + ) + ) temp_rels = [] - for r in dcite_metadata['related_resources']: - if r.get('scheme_uri'): - self.namespaces.append(r.get('scheme_uri')) + for r in dcite_metadata["related_resources"]: + if r.get("scheme_uri"): + self.namespaces.append(r.get("scheme_uri")) filtered = {k: v for k, v in r.items() if v is not None} temp_rels.append(filtered) - dcite_metadata['related_resources'] = temp_rels + dcite_metadata["related_resources"] = temp_rels else: - self.logger.info('FsF-I3-01M : No related resource(s) found in Datacite metadata') + self.logger.info("FsF-I3-01M : No related resource(s) found in Datacite metadata") # convert all values (list type) into string except 'creator','license','related_resources' for key, value in dcite_metadata.items(): if key not in self.exclude_conversion and isinstance(value, list): - flat = ', '.join(map(str, value)) + flat = ", ".join(map(str, value)) dcite_metadata[key] = flat except Exception as e: - self.logger.warning('FsF-F2-01M : Failed to extract Datacite JSON -: {}'.format(e)) - #self.logger.exception('Failed to extract Datacite JSON -: {}'.format(e)) + self.logger.warning("FsF-F2-01M : Failed to extract Datacite JSON -: {}".format(e)) + # self.logger.exception('Failed to extract Datacite JSON -: {}'.format(e)) else: - self.logger.warning('FsF-F2-01M : Skipped Datacite metadata retrieval, no PID URL detected') + self.logger.warning("FsF-F2-01M : Skipped Datacite metadata retrieval, no PID URL detected") return source_name, dcite_metadata diff --git a/fuji_server/helper/metadata_collector_dublincore.py b/fuji_server/helper/metadata_collector_dublincore.py index 7f22bf50..ce030aef 100644 --- a/fuji_server/helper/metadata_collector_dublincore.py +++ b/fuji_server/helper/metadata_collector_dublincore.py @@ -22,9 +22,11 @@ # SOFTWARE. import re + from bs4 import BeautifulSoup + +from fuji_server.helper.metadata_collector import MetaDataCollector, MetadataFormats, MetadataSources from fuji_server.helper.metadata_mapper import Mapper -from fuji_server.helper.metadata_collector import MetaDataCollector, MetadataSources, MetadataFormats class MetaDataCollectorDublinCore(MetaDataCollector): @@ -66,92 +68,115 @@ def parse_metadata(self): a dictionary of Dublin Core metadata """ dc_core_metadata = {} - dc_core_base_props = ['contributor', 'coverage', 'creator', 'date', 'issued', 'description', 'format', 'identifier', - 'language', 'publisher', 'relation', 'rights', 'source', 'subject', 'title', 'type'] + dc_core_base_props = [ + "contributor", + "coverage", + "creator", + "date", + "issued", + "description", + "format", + "identifier", + "language", + "publisher", + "relation", + "rights", + "source", + "subject", + "title", + "type", + ] source = None if self.source_metadata is not None: try: self.metadata_format = MetadataFormats.XHTML - #self.logger.info('FsF-F2-01M : Trying to extract DublinCore metadata from html page') + # self.logger.info('FsF-F2-01M : Trying to extract DublinCore metadata from html page') # get core metadat from dublin core meta tags: # < meta name = "DCTERMS.element" content = "Value" / > # meta_dc_matches = re.findall(']*)name=\"(DC|DCTERMS)?\.([a-z]+)\"(.*?)content=\"(.*?)\"',self.landing_html) - #exp = '<\s*meta\s*([^\>]*)name\s*=\s*\"(DC|DCTERMS)?\.([A-Za-z]+)(\.[A-Za-z]+)?\"(.*?)content\s*=\s*\"(.*?)\"' + # exp = '<\s*meta\s*([^\>]*)name\s*=\s*\"(DC|DCTERMS)?\.([A-Za-z]+)(\.[A-Za-z]+)?\"(.*?)content\s*=\s*\"(.*?)\"' meta_dc_matches = [] - self.content_type = 'text/html' + self.content_type = "text/html" try: - metasoup = BeautifulSoup(self.source_metadata, 'lxml') + metasoup = BeautifulSoup(self.source_metadata, "lxml") meta_dc_soupresult = metasoup.findAll( - 'meta', attrs={'name': re.compile(r'(DC|dc|DCTERMS|dcterms)\.([A-Za-z]+)')}) + "meta", attrs={"name": re.compile(r"(DC|dc|DCTERMS|dcterms)\.([A-Za-z]+)")} + ) if len(meta_dc_soupresult) <= 0: meta_dc_soupresult = metasoup.findAll( - 'meta', attrs={'name':re.compile(r'('+'|'.join(dc_core_base_props)+')')}) + "meta", attrs={"name": re.compile(r"(" + "|".join(dc_core_base_props) + ")")} + ) for meta_tag in meta_dc_soupresult: - dc_name_parts = str(meta_tag['name']).split('.') + dc_name_parts = str(meta_tag["name"]).split(".") if len(dc_name_parts) == 1 and dc_name_parts[0] in dc_core_base_props: - dc_name_parts = ['dc',dc_name_parts[0]] - if (len(dc_name_parts) > 1): + dc_name_parts = ["dc", dc_name_parts[0]] + if len(dc_name_parts) > 1: dc_t = None if len(dc_name_parts) == 3: dc_t = dc_name_parts[2] - meta_dc_matches.append([dc_name_parts[1], dc_t, meta_tag.get('content')]) - #meta_dc_matches = re.findall(exp, self.source_metadata) + meta_dc_matches.append([dc_name_parts[1], dc_t, meta_tag.get("content")]) + # meta_dc_matches = re.findall(exp, self.source_metadata) except Exception as e: - self.logger.exception('Parsing error, failed to extract DublinCore -: {}'.format(e)) + self.logger.exception("Parsing error, failed to extract DublinCore -: {}".format(e)) if len(meta_dc_matches) > 0: - self.namespaces.append('http://purl.org/dc/elements/1.1/') - #source = self.getEnumSourceNames().DUBLINCORE_EMBEDDED + self.namespaces.append("http://purl.org/dc/elements/1.1/") + # source = self.getEnumSourceNames().DUBLINCORE_EMBEDDED source = MetadataSources.DUBLINCORE_EMBEDDED dcterms = [] for dcitems in self.metadata_mapping.value.values(): if isinstance(dcitems, list): for dcitem in dcitems: dcterms.append(str(dcitem).lower()) - #dcterms.extend(dcitems) + # dcterms.extend(dcitems) else: dcterms.append(str(dcitems).lower()) for dc_meta in meta_dc_matches: # dc_meta --> ('', 'DC', 'creator', ' ', 'Hillenbrand, Claus-Dieter') - #key - k = str(dc_meta[0]) #2 - #type - t = dc_meta[1] #3 - #value - v = dc_meta[2] #5 + # key + k = str(dc_meta[0]) # 2 + # type + t = dc_meta[1] # 3 + # value + v = dc_meta[2] # 5 - if k.lower() == 'date': - if t == 'dateAccepted': - dc_core_metadata['accepted_date'] = v - elif t == 'dateSubmitted': - dc_core_metadata['submitted_date'] = v + if k.lower() == "date": + if t == "dateAccepted": + dc_core_metadata["accepted_date"] = v + elif t == "dateSubmitted": + dc_core_metadata["submitted_date"] = v # if self.isDebug: # self.logger.info('FsF-F2-01M: DublinCore metadata element, %s = %s , ' % (k, v) if k.lower() in dcterms: - #self.logger.info('FsF-F2-01M: DublinCore metadata element, %s = %s , ' % (k, v)) + # self.logger.info('FsF-F2-01M: DublinCore metadata element, %s = %s , ' % (k, v)) try: - elem = [key for (key, value) in Mapper.DC_MAPPING.value.items() if k.lower() in str(value).lower() - ][0] # fuji ref fields + elem = [ + key + for (key, value) in Mapper.DC_MAPPING.value.items() + if k.lower() in str(value).lower() + ][ + 0 + ] # fuji ref fields except Exception as e: - #nothing found so just continue + # nothing found so just continue pass - if elem == 'related_resources': - #dc_core_metadata['related_resources'] = [] + if elem == "related_resources": + # dc_core_metadata['related_resources'] = [] # tuple of type and relation - #Mapping see: https://www.w3.org/TR/prov-dc/ - #qualifiers, subproperties (t): - #https://www.dublincore.org/specifications/dublin-core/dcmes-qualifiers/ - #https://www.dublincore.org/specifications/dublin-core/dcq-html/ - if k in ['source', 'references']: - t = 'wasDerivedFrom' - elif k == 'relation': - if t in [None, '']: - t = 'isRelatedTo' + # Mapping see: https://www.w3.org/TR/prov-dc/ + # qualifiers, subproperties (t): + # https://www.dublincore.org/specifications/dublin-core/dcmes-qualifiers/ + # https://www.dublincore.org/specifications/dublin-core/dcq-html/ + if k in ["source", "references"]: + t = "wasDerivedFrom" + elif k == "relation": + if t in [None, ""]: + t = "isRelatedTo" else: t = k - v = [{'related_resource': v, 'relation_type': t}] # must be a list of dict - #v = dict(related_resource=v, relation_type=t) + v = [{"related_resource": v, "relation_type": t}] # must be a list of dict + # v = dict(related_resource=v, relation_type=t) if v: if elem in dc_core_metadata: if isinstance(dc_core_metadata[elem], list): @@ -166,21 +191,23 @@ def parse_metadata(self): dc_core_metadata[elem] = temp_list else: dc_core_metadata[elem] = v - if dc_core_metadata.get('related_resources'): - count = len([d for d in dc_core_metadata.get('related_resources') if d.get('related_resource')]) + if dc_core_metadata.get("related_resources"): + count = len([d for d in dc_core_metadata.get("related_resources") if d.get("related_resource")]) self.logger.info( - 'FsF-I3-01M : number of related resource(s) extracted from DublinCore -: {0} from {1}'. - format(count, source.name)) + "FsF-I3-01M : number of related resource(s) extracted from DublinCore -: {0} from {1}".format( + count, source.name + ) + ) else: - self.logger.info('FsF-I3-01M : No related resource(s) found in DublinCore metadata') + self.logger.info("FsF-I3-01M : No related resource(s) found in DublinCore metadata") # process string-based file format # https://www.dublincore.org/specifications/dublin-core/dcmi-dcsv/ - '''if dc_core_metadata.get('file_format_only'): + """if dc_core_metadata.get('file_format_only'): format_str = dc_core_metadata.get('file_format_only') if isinstance(format_str, str): format_str = re.split(';|,', format_str)[0].strip( ) # assume first value as media type #TODO use regex to extract mimetype - dc_core_metadata['file_format_only'] = format_str''' + dc_core_metadata['file_format_only'] = format_str""" except Exception as e: - self.logger.exception('Failed to extract DublinCore - {}'.format(e)) + self.logger.exception("Failed to extract DublinCore - {}".format(e)) return source, dc_core_metadata diff --git a/fuji_server/helper/metadata_collector_highwire_eprints.py b/fuji_server/helper/metadata_collector_highwire_eprints.py index 21d4d77b..6e5de4b0 100644 --- a/fuji_server/helper/metadata_collector_highwire_eprints.py +++ b/fuji_server/helper/metadata_collector_highwire_eprints.py @@ -22,9 +22,11 @@ # SOFTWARE. import re + from bs4 import BeautifulSoup -from fuji_server.helper.metadata_mapper import Mapper + from fuji_server.helper.metadata_collector import MetaDataCollector, MetadataFormats +from fuji_server.helper.metadata_mapper import Mapper class MetaDataCollectorHighwireEprints(MetaDataCollector): @@ -70,22 +72,23 @@ def parse_metadata(self): if self.source_metadata is not None: self.metadata_format = MetadataFormats.HTML meta_hw_matches = [] - self.content_type = 'text/html' - metasoup = BeautifulSoup(self.source_metadata, 'lxml') + self.content_type = "text/html" + metasoup = BeautifulSoup(self.source_metadata, "lxml") meta_hw_soupresult = metasoup.findAll( - 'meta', attrs={'name': re.compile(r'(eprints\.|citation_)([A-Z_a-z]+)')}) + "meta", attrs={"name": re.compile(r"(eprints\.|citation_)([A-Z_a-z]+)")} + ) flipped_hw = Mapper.flip_dict(Mapper.HIGHWIRE_MAPPING.value) - flipped_hw.update(flipped_eprints = Mapper.flip_dict(Mapper.EPRINTS_MAPPING.value)) + flipped_hw.update(flipped_eprints=Mapper.flip_dict(Mapper.EPRINTS_MAPPING.value)) for meta_tag in meta_hw_soupresult: - hw_name_parts = str(meta_tag['name']).split('.') + hw_name_parts = str(meta_tag["name"]).split(".") if len(hw_name_parts) == 1: elem_name = hw_name_parts[0] - if not 'https://www.highwirepress.com/terms/' not in self.namespaces: - self.namespaces.append('https://www.highwirepress.com/terms/') + if not "https://www.highwirepress.com/terms/" not in self.namespaces: + self.namespaces.append("https://www.highwirepress.com/terms/") elif len(hw_name_parts) == 2: elem_name = hw_name_parts[1] - if 'http://purl.org/eprint/terms/' not in self.namespaces: - self.namespaces.append('http://purl.org/eprint/terms/') + if "http://purl.org/eprint/terms/" not in self.namespaces: + self.namespaces.append("http://purl.org/eprint/terms/") else: elem_name = None if elem_name in flipped_hw: @@ -99,11 +102,11 @@ def parse_metadata(self): elem = elem[0] pass if not value: - value = meta_tag.get('content') - if elem == 'related_resources': - value = {'related_resource': value, 'relation_type': 'isRelatedTo'} + value = meta_tag.get("content") + if elem == "related_resources": + value = {"related_resource": value, "relation_type": "isRelatedTo"} if not hw_core_metadata.get(elem): - if elem == 'related_resources': + if elem == "related_resources": hw_core_metadata[elem] = [value] else: hw_core_metadata[elem] = value diff --git a/fuji_server/helper/metadata_collector_microdata.py b/fuji_server/helper/metadata_collector_microdata.py index 0a3359a5..ccf3047d 100644 --- a/fuji_server/helper/metadata_collector_microdata.py +++ b/fuji_server/helper/metadata_collector_microdata.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- import jmespath + from fuji_server.helper.metadata_collector import MetaDataCollector, MetadataFormats from fuji_server.helper.preprocessor import Preprocessor @@ -20,8 +21,10 @@ class MetaDataCollectorMicroData(MetaDataCollector): parse_metadata() Method to parse the Microdata metadata from the data. """ + source_name = None SCHEMA_ORG_CREATIVEWORKS = Preprocessor.get_schema_org_creativeworks() + def __init__(self, sourcemetadata, mapping, loggerinst): """ Parameters @@ -49,14 +52,14 @@ def parse_metadata(self): """ micro_metadata = {} ext_meta = None - self.content_type = 'text/html' + self.content_type = "text/html" self.metadata_format = MetadataFormats.MICRODATA if self.source_metadata: - #print(self.source_metadata) - if len(self.source_metadata)>1: + # print(self.source_metadata) + if len(self.source_metadata) > 1: try: for sm in self.source_metadata: - if str(sm.get('type').split('/')[-1]).lower() in self.SCHEMA_ORG_CREATIVEWORKS: + if str(sm.get("type").split("/")[-1]).lower() in self.SCHEMA_ORG_CREATIVEWORKS: ext_meta = sm except: pass @@ -65,22 +68,22 @@ def parse_metadata(self): ext_meta = self.source_metadata[0] if ext_meta is not None: - self.logger.info('FsF-F2-01M : Trying to extract Microdata metadata from -: {}'.format(self.source_name)) + self.logger.info("FsF-F2-01M : Trying to extract Microdata metadata from -: {}".format(self.source_name)) # TODO check syntax - not ending with /, type and @type # TODO (important) extend mapping to detect other pids (link to related entities)? # TODO replace check_context_type list context comparison by regex - check_context_type = ['Dataset', 'Collection'] + check_context_type = ["Dataset", "Collection"] try: - #if ext_meta['@context'] in check_context_type['@context'] and ext_meta['@type'] in check_context_type["@type"]: - if str(ext_meta.get('type')).find('schema.org') > -1: + # if ext_meta['@context'] in check_context_type['@context'] and ext_meta['@type'] in check_context_type["@type"]: + if str(ext_meta.get("type")).find("schema.org") > -1: micro_metadata = jmespath.search(self.metadata_mapping.value, ext_meta) - self.namespaces.append('http://schema.org/') + self.namespaces.append("http://schema.org/") else: - self.logger.info('FsF-F2-01M : Failed to parse non schema.org type Microdata') + self.logger.info("FsF-F2-01M : Failed to parse non schema.org type Microdata") except Exception as err: - #print(err.with_traceback()) - self.logger.info('FsF-F2-01M : Failed to parse Microdata -: {}'.format(err)) + # print(err.with_traceback()) + self.logger.info("FsF-F2-01M : Failed to parse Microdata -: {}".format(err)) else: - self.logger.info('FsF-F2-01M : Could not identify Microdata metadata') + self.logger.info("FsF-F2-01M : Could not identify Microdata metadata") return self.source_name, micro_metadata diff --git a/fuji_server/helper/metadata_collector_opengraph.py b/fuji_server/helper/metadata_collector_opengraph.py index 85e5372f..2ba769a2 100644 --- a/fuji_server/helper/metadata_collector_opengraph.py +++ b/fuji_server/helper/metadata_collector_opengraph.py @@ -18,6 +18,7 @@ class MetaDataCollectorOpenGraph(MetaDataCollector): parse_metadata() Method to parse the Open Graph metadata from the data. """ + source_name = None def __init__(self, sourcemetadata, mapping, loggerinst): @@ -45,23 +46,23 @@ def parse_metadata(self): dict a dictionary of Open Graph metadata """ - self.content_type = 'text/html' + self.content_type = "text/html" og_metadata = {} ext_meta = None if self.source_metadata: self.metadata_format = MetadataFormats.RDFA - #self.logger.info('FsF-F2-01M : Trying to extract OpenGraph metadata from html page') + # self.logger.info('FsF-F2-01M : Trying to extract OpenGraph metadata from html page') self.source_name = self.getEnumSourceNames().OPENGRAPH_EMBEDDED - ext_meta = dict(self.source_metadata[0].get('properties')) + ext_meta = dict(self.source_metadata[0].get("properties")) if ext_meta is not None: for map_key, map_value in self.metadata_mapping.value.items(): if ext_meta.get(map_value): og_metadata[map_key] = ext_meta.get(map_value) if len(og_metadata) > 0: - self.logger.info('FsF-F2-01M : Found OpenGraph metadata-: ' + str(og_metadata.keys())) - self.namespaces.append('http://ogp.me/ns#') - #else: + self.logger.info("FsF-F2-01M : Found OpenGraph metadata-: " + str(og_metadata.keys())) + self.namespaces.append("http://ogp.me/ns#") + # else: # self.logger.info('FsF-F2-01M : Non-metadata OpenGraph properties -:'+str(ext_meta)) - #self.logger.info('FsF-F2-01M : Could not identify OpenGraph metadata') + # self.logger.info('FsF-F2-01M : Could not identify OpenGraph metadata') return self.source_name, og_metadata diff --git a/fuji_server/helper/metadata_collector_ore_atom.py b/fuji_server/helper/metadata_collector_ore_atom.py index dfdf4c4e..bb876f62 100644 --- a/fuji_server/helper/metadata_collector_ore_atom.py +++ b/fuji_server/helper/metadata_collector_ore_atom.py @@ -21,9 +21,10 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -from fuji_server.helper.metadata_collector import MetaDataCollector, MetadataFormats import feedparser +from fuji_server.helper.metadata_collector import MetaDataCollector, MetadataFormats + class MetaDataCollectorOreAtom(MetaDataCollector): """ @@ -43,6 +44,7 @@ class MetaDataCollectorOreAtom(MetaDataCollector): parse_metadata() Method to parse the ORE Atom metadata from the data. """ + source_name = None def __init__(self, loggerinst, target_url): @@ -54,7 +56,7 @@ def __init__(self, loggerinst, target_url): target_url : str Target URL """ - #self.is_pid = ispid + # self.is_pid = ispid self.target_url = target_url super().__init__(logger=loggerinst) @@ -68,7 +70,7 @@ def parse_metadata(self): dict a dictionary of ORE Atom metadata """ - self.content_type = 'application/atom+xml' + self.content_type = "application/atom+xml" ore_metadata = {} if self.target_url: self.source_name = self.getEnumSourceNames().OAI_ORE @@ -76,34 +78,36 @@ def parse_metadata(self): try: feed = feedparser.parse(self.target_url) if feed: - if feed.get('entries'): - if len(feed.get('entries')) == 1: - ore_metadata['title'] = feed.get('entries')[0].get('title') - ore_metadata['creator'] = feed.get('entries')[0].get('author') - ore_metadata['publisher'] = feed.get('entries')[0].get('source') - ore_metadata['publication_date'] = feed.get('entries')[0].get('published') - if feed.get('entries')[0].get('source'): - ore_metadata['publisher'] = feed.get('entries')[0].get('source').get('author') - ore_metadata['object_identifier'] = [feed.get('entries')[0].get('id')] - if feed.get('entries')[0].get('link'): - ore_metadata['object_identifier'].append(feed.get('entries')[0].get('link')) - if feed.get('entries')[0].get('link'): - pid = feed.get('entries')[0].get('link') + if feed.get("entries"): + if len(feed.get("entries")) == 1: + ore_metadata["title"] = feed.get("entries")[0].get("title") + ore_metadata["creator"] = feed.get("entries")[0].get("author") + ore_metadata["publisher"] = feed.get("entries")[0].get("source") + ore_metadata["publication_date"] = feed.get("entries")[0].get("published") + if feed.get("entries")[0].get("source"): + ore_metadata["publisher"] = feed.get("entries")[0].get("source").get("author") + ore_metadata["object_identifier"] = [feed.get("entries")[0].get("id")] + if feed.get("entries")[0].get("link"): + ore_metadata["object_identifier"].append(feed.get("entries")[0].get("link")) + if feed.get("entries")[0].get("link"): + pid = feed.get("entries")[0].get("link") if pid != self.target_url: - ore_metadata['object_identifier'] = feed.get('entries')[0].get('link') - if feed.get('entries')[0].get('links'): - ore_metadata['object_content_identifier'] = [] - for link in feed.get('entries')[0].get('links'): - if 'ore/terms/aggregates' in str(link.get('rel')): - ore_metadata['object_content_identifier'].append({ - 'url': str(link.get('href')), - 'type': str(link.get('type')), - 'size': str(link.get('length')) - }) + ore_metadata["object_identifier"] = feed.get("entries")[0].get("link") + if feed.get("entries")[0].get("links"): + ore_metadata["object_content_identifier"] = [] + for link in feed.get("entries")[0].get("links"): + if "ore/terms/aggregates" in str(link.get("rel")): + ore_metadata["object_content_identifier"].append( + { + "url": str(link.get("href")), + "type": str(link.get("type")), + "size": str(link.get("length")), + } + ) except Exception as err: - #print(err.with_traceback()) - self.logger.warning('FsF-F2-01M : Failed to parse OAI ORE XML -: {}'.format(err)) + # print(err.with_traceback()) + self.logger.warning("FsF-F2-01M : Failed to parse OAI ORE XML -: {}".format(err)) else: - self.logger.info('FsF-F2-01M : Could not identify OAI ORE metadata') + self.logger.info("FsF-F2-01M : Could not identify OAI ORE metadata") return self.source_name, ore_metadata diff --git a/fuji_server/helper/metadata_collector_rdf.py b/fuji_server/helper/metadata_collector_rdf.py index a533db37..5e4786b0 100644 --- a/fuji_server/helper/metadata_collector_rdf.py +++ b/fuji_server/helper/metadata_collector_rdf.py @@ -29,18 +29,21 @@ import jmespath import rdflib import requests -from rdflib import Namespace, Graph, URIRef, plugin -from rdflib.namespace import RDF -from rdflib.namespace import DCTERMS -from rdflib.namespace import DC -from rdflib.namespace import FOAF -from rdflib.namespace import SDO #schema.org - -from fuji_server.helper.metadata_collector import MetaDataCollector, MetadataSources, MetadataFormats -from fuji_server.helper.request_helper import RequestHelper, AcceptTypes +from pyld import jsonld +from rdflib import Graph, Namespace, URIRef, plugin +from rdflib.namespace import ( + DC, + DCTERMS, + FOAF, + RDF, + SDO, # schema.org +) + +from fuji_server.helper.metadata_collector import MetaDataCollector, MetadataFormats, MetadataSources from fuji_server.helper.metadata_mapper import Mapper from fuji_server.helper.preprocessor import Preprocessor -from pyld import jsonld +from fuji_server.helper.request_helper import AcceptTypes, RequestHelper + class MetaDataCollectorRdf(MetaDataCollector): """ @@ -76,10 +79,12 @@ class MetaDataCollectorRdf(MetaDataCollector): get_metadata_from_graph(g) Method to get all metadata from a graph object """ + target_url = None SCHEMA_ORG_CONTEXT = Preprocessor.get_schema_org_context() SCHEMA_ORG_CREATIVEWORKS = Preprocessor.get_schema_org_creativeworks() - def __init__(self, loggerinst, target_url=None, source=None, json_ld_content = None): + + def __init__(self, loggerinst, target_url=None, source=None, json_ld_content=None): """ Parameters ---------- @@ -101,10 +106,9 @@ def __init__(self, loggerinst, target_url=None, source=None, json_ld_content = N if self.source_name == MetadataSources.RDFA_EMBEDDED: self.metadata_format = MetadataFormats.RDFA self.json_ld_content = json_ld_content - #self.rdf_graph = rdf_graph + # self.rdf_graph = rdf_graph self.accept_type = AcceptTypes.rdf - def getAllURIS(self, graph): founduris = [] for link in list(graph.objects()): @@ -112,35 +116,37 @@ def getAllURIS(self, graph): founduris.append(str(link)) return founduris - def set_namespaces(self,graph): + def set_namespaces(self, graph): namespaces = {} - known_namespace_regex = [r'https?:\/\/vocab\.nerc\.ac\.uk\/collection\/[A-Z][0-9]+\/current\/', - r'https?:\/\/purl\.obolibrary\.org\/obo\/[a-z]+(\.owl|#)'] + known_namespace_regex = [ + r"https?:\/\/vocab\.nerc\.ac\.uk\/collection\/[A-Z][0-9]+\/current\/", + r"https?:\/\/purl\.obolibrary\.org\/obo\/[a-z]+(\.owl|#)", + ] try: nm = graph.namespace_manager possible = set(graph.predicates()).union(graph.objects(None, RDF.type)) alluris = set(graph.objects()).union(set(graph.subjects())) - #namespaces from mentioned objects and subjects uris (best try) + # namespaces from mentioned objects and subjects uris (best try) for uri in alluris: if idutils.is_url(uri): for known_pattern in known_namespace_regex: kpm = re.match(known_pattern, uri) - if kpm : + if kpm: uri = kpm[0] self.namespaces.append(uri) else: - uri = str(uri).strip().rstrip('/#') - if '#' in uri: - namespace_candidate = uri.rsplit('#', 1)[0] + uri = str(uri).strip().rstrip("/#") + if "#" in uri: + namespace_candidate = uri.rsplit("#", 1)[0] else: - namespace_candidate = uri.rsplit('/', 1)[0] + namespace_candidate = uri.rsplit("/", 1)[0] if namespace_candidate != uri: self.namespaces.append(namespace_candidate) else: - namespace_candidate = uri.rsplit('#', 1)[0] + namespace_candidate = uri.rsplit("#", 1)[0] if namespace_candidate != uri: self.namespaces.append(namespace_candidate) - #defined namespaces + # defined namespaces for predicate in possible: prefix, namespace, local = nm.compute_qname(predicate) namespaces[prefix] = namespace @@ -148,51 +154,53 @@ def set_namespaces(self,graph): self.namespaces = list(set(self.namespaces)) except Exception as e: - self.logger.info('FsF-F2-01M : RDF Namespace detection error -: {}'.format(e)) + self.logger.info("FsF-F2-01M : RDF Namespace detection error -: {}".format(e)) return namespaces def get_metadata_from_graph(self, rdf_response_graph): - rdf_metadata ={} + rdf_metadata = {} if rdf_response_graph: ontology_indicator = [ - rdflib.term.URIRef('http://www.w3.org/2004/02/skos/core#'), - rdflib.term.URIRef('http://www.w3.org/2002/07/owl#') + rdflib.term.URIRef("http://www.w3.org/2004/02/skos/core#"), + rdflib.term.URIRef("http://www.w3.org/2002/07/owl#"), ] if isinstance(rdf_response_graph, rdflib.graph.Graph) or isinstance(rdflib.graph.ConjunctiveGraph): - self.logger.info('FsF-F2-01M : Found RDF Graph which was sucessfully parsed') - self.logger.info('FsF-F2-01M : Trying to identify namespaces in RDF Graph') + self.logger.info("FsF-F2-01M : Found RDF Graph which was sucessfully parsed") + self.logger.info("FsF-F2-01M : Trying to identify namespaces in RDF Graph") graph_namespaces = self.set_namespaces(rdf_response_graph) - #self.getNamespacesfromIRIs(graph_text) + # self.getNamespacesfromIRIs(graph_text) # TODO: set credit score for being valid RDF # TODO: since its valid RDF aka semantic representation, make sure FsF-I1-01M is passed and scored - if rdflib.term.URIRef('http://www.w3.org/ns/dcat#') in graph_namespaces.values(): - self.logger.info('FsF-F2-01M : RDF Graph seems to contain DCAT metadata elements') + if rdflib.term.URIRef("http://www.w3.org/ns/dcat#") in graph_namespaces.values(): + self.logger.info("FsF-F2-01M : RDF Graph seems to contain DCAT metadata elements") rdf_metadata = self.get_dcat_metadata(rdf_response_graph) - elif rdflib.term.URIRef('http://schema.org/') in graph_namespaces.values(): - self.logger.info('FsF-F2-01M : RDF Graph seems to contain schema.org metadata elements') + elif rdflib.term.URIRef("http://schema.org/") in graph_namespaces.values(): + self.logger.info("FsF-F2-01M : RDF Graph seems to contain schema.org metadata elements") rdf_metadata = self.get_schemaorg_metadata_from_graph(rdf_response_graph) elif bool(set(ontology_indicator) & set(graph_namespaces.values())): - self.logger.info('FsF-F2-01M : RDF Graph seems to contain SKOS/OWL metadata elements') + self.logger.info("FsF-F2-01M : RDF Graph seems to contain SKOS/OWL metadata elements") rdf_metadata = self.get_ontology_metadata(rdf_response_graph) - #else: + # else: if not rdf_metadata: - self.logger.info('FsF-F2-01M : Could not find DCAT, schema.org or SKOS/OWL metadata, continuing with generic SPARQL') - #try to find root node - ''' + self.logger.info( + "FsF-F2-01M : Could not find DCAT, schema.org or SKOS/OWL metadata, continuing with generic SPARQL" + ) + # try to find root node + """ typed_objects = list(rdf_response_graph.objects(predicate=RDF.type)) if typed_objects: typed_nodes = list(rdf_response_graph[:RDF.type:typed_objects[0]]) if typed_nodes: rdf_metadata = self.get_metadata(rdf_response_graph, typed_nodes[0], str(typed_objects[0])) - ''' - #if not rdf_metadata or len(list(rdf_metadata)) <= 1: + """ + # if not rdf_metadata or len(list(rdf_metadata)) <= 1: rdf_metadata = self.get_sparqled_metadata(rdf_response_graph) - #add found namespaces URIs to namespace - #for ns in graph_namespaces.values(): + # add found namespaces URIs to namespace + # for ns in graph_namespaces.values(): # self.namespaces.append(ns) else: - self.logger.info('FsF-F2-01M : Expected RDF Graph but received -: {0}'.format(self.content_type)) + self.logger.info("FsF-F2-01M : Expected RDF Graph but received -: {0}".format(self.content_type)) return rdf_metadata def parse_metadata(self): @@ -205,59 +213,69 @@ def parse_metadata(self): dict a dictionary of metadata in RDF graph """ - #self.source_name = self.getEnumSourceNames().LINKED_DATA.value - #self.logger.info('FsF-F2-01M : Trying to request RDF metadata from -: {}'.format(self.source_name)) + # self.source_name = self.getEnumSourceNames().LINKED_DATA.value + # self.logger.info('FsF-F2-01M : Trying to request RDF metadata from -: {}'.format(self.source_name)) rdf_metadata = dict() rdf_response_graph = None - #if self.rdf_graph is None: + # if self.rdf_graph is None: if not self.json_ld_content and self.target_url: if not self.accept_type: self.accept_type = AcceptTypes.rdf requestHelper: RequestHelper = RequestHelper(self.target_url, self.logger) requestHelper.setAcceptType(self.accept_type) - requestHelper.setAuthToken(self.auth_token,self.auth_token_type) - neg_format, rdf_response = requestHelper.content_negotiate('FsF-F2-01M') + requestHelper.setAuthToken(self.auth_token, self.auth_token_type) + neg_format, rdf_response = requestHelper.content_negotiate("FsF-F2-01M") self.metadata_format = neg_format if requestHelper.checked_content_hash: - if requestHelper.checked_content.get(requestHelper.checked_content_hash).get('checked') and 'xml' in requestHelper.content_type: + if ( + requestHelper.checked_content.get(requestHelper.checked_content_hash).get("checked") + and "xml" in requestHelper.content_type + ): requestHelper.response_content = None - self.logger.info('FsF-F2-01M : Ignoring RDF since content already has been parsed as XML') + self.logger.info("FsF-F2-01M : Ignoring RDF since content already has been parsed as XML") if requestHelper.response_content is not None: self.content_type = requestHelper.content_type else: - self.content_type = 'application/ld+json' + self.content_type = "application/ld+json" rdf_response = self.json_ld_content if self.content_type is not None: - self.content_type = self.content_type.split(';', 1)[0] - #handle JSON-LD - if self.content_type in ['application/ld+json','application/json','application/vnd.schemaorg.ld+json']: + self.content_type = self.content_type.split(";", 1)[0] + # handle JSON-LD + if self.content_type in ["application/ld+json", "application/json", "application/vnd.schemaorg.ld+json"]: if self.target_url: jsonld_source_url = self.target_url else: - jsonld_source_url = 'landing page' + jsonld_source_url = "landing page" if self.json_ld_content: self.source_name = MetadataSources.SCHEMAORG_EMBEDDED self.metadata_format = MetadataFormats.JSONLD - elif self.source_name != MetadataSources.RDF_TYPED_LINKS and self.source_name != MetadataSources.RDF_SIGNPOSTING_LINKS: + elif ( + self.source_name != MetadataSources.RDF_TYPED_LINKS + and self.source_name != MetadataSources.RDF_SIGNPOSTING_LINKS + ): self.source_name = MetadataSources.SCHEMAORG_NEGOTIATED self.metadata_format = MetadataFormats.JSONLD - self.logger.info('FsF-F2-01M : Try to parse RDF (JSON-LD) from -: %s' % (jsonld_source_url)) + self.logger.info("FsF-F2-01M : Try to parse RDF (JSON-LD) from -: %s" % (jsonld_source_url)) if isinstance(rdf_response, bytes): try: rdf_response = rdf_response.decode("utf-8") except: pass if isinstance(rdf_response, dict) or isinstance(rdf_response, list): - self.logger.info('FsF-F2-01M : Try to parse JSON-LD using JMESPath retrieved as dict from -: %s' % (jsonld_source_url)) + self.logger.info( + "FsF-F2-01M : Try to parse JSON-LD using JMESPath retrieved as dict from -: %s" + % (jsonld_source_url) + ) # in case two or more JSON-LD strings are embedded if isinstance(rdf_response, list): json_dict = None if len(rdf_response) > 1: self.logger.info( - 'FsF-F2-01M : Found more than one JSON-LD embedded in landing page try to identify Dataset or CreativeWork type') + "FsF-F2-01M : Found more than one JSON-LD embedded in landing page try to identify Dataset or CreativeWork type" + ) for meta_rec in rdf_response: - meta_rec_type = str(meta_rec.get('@type')).lower().lstrip('schema:') - if meta_rec_type in ['dataset']: + meta_rec_type = str(meta_rec.get("@type")).lower().lstrip("schema:") + if meta_rec_type in ["dataset"]: json_dict = meta_rec break if meta_rec_type in self.SCHEMA_ORG_CREATIVEWORKS: @@ -271,112 +289,143 @@ def parse_metadata(self): if rdf_metadata: self.setLinkedNamespaces(str(rdf_response)) else: - self.logger.info('FsF-F2-01M : Could not identify schema.org JSON-LD metadata using JMESPath, continuing with RDF graph processing') + self.logger.info( + "FsF-F2-01M : Could not identify schema.org JSON-LD metadata using JMESPath, continuing with RDF graph processing" + ) # quick fix for https://github.com/RDFLib/rdflib/issues/1484 # needs to be done before dict is converted to string - #print(rdf_response) - if rdf_response.get('@context'): - if rdf_response.get('@graph'): + # print(rdf_response) + if rdf_response.get("@context"): + if rdf_response.get("@graph"): try: - #drop duplicate context in graph - if isinstance(rdf_response.get('@graph'), list): - for grph in rdf_response.get('@graph'): - if grph.get('@context'): - del grph['@context'] + # drop duplicate context in graph + if isinstance(rdf_response.get("@graph"), list): + for grph in rdf_response.get("@graph"): + if grph.get("@context"): + del grph["@context"] else: - if rdf_response.get('@graph').get('@context'): - del rdf_response['@graph']['@context'] + if rdf_response.get("@graph").get("@context"): + del rdf_response["@graph"]["@context"] except Exception as e: - print('Failed drop duplicate JSON-LD context in graph') + print("Failed drop duplicate JSON-LD context in graph") pass - #Fixing Dereferencing issues: https://github.com/json-ld/json-ld.org/issues/747 - if isinstance(rdf_response.get('@context'), list): - for ctxi, ctxt in enumerate(rdf_response.get('@context')): - if 'schema.org' in ctxt: - rdf_response['@context'][ctxi] = 'https://schema.org/docs/jsonldcontext.json' - if isinstance(rdf_response.get('@context'), str): - if 'schema.org' in rdf_response.get('@context'): - rdf_response['@context'] = 'https://schema.org/docs/jsonldcontext.json' + # Fixing Dereferencing issues: https://github.com/json-ld/json-ld.org/issues/747 + if isinstance(rdf_response.get("@context"), list): + for ctxi, ctxt in enumerate(rdf_response.get("@context")): + if "schema.org" in ctxt: + rdf_response["@context"][ + ctxi + ] = "https://schema.org/docs/jsonldcontext.json" + if isinstance(rdf_response.get("@context"), str): + if "schema.org" in rdf_response.get("@context"): + rdf_response["@context"] = "https://schema.org/docs/jsonldcontext.json" rdf_response = jsonld.expand(rdf_response) rdf_response = json.dumps(rdf_response) except Exception as e: - print('RDF Collector Error: ',e) + print("RDF Collector Error: ", e) pass - #t ry to make graph from JSON-LD string + # t ry to make graph from JSON-LD string if isinstance(rdf_response, str): try: - rdf_response = str(rdf_response).encode('utf-8') + rdf_response = str(rdf_response).encode("utf-8") except: - self.logger.info('FsF-F2-01M : UTF-8 string conversion of JSON-LD failed') + self.logger.info("FsF-F2-01M : UTF-8 string conversion of JSON-LD failed") pass - self.logger.info('FsF-F2-01M : Try to parse JSON-LD using RDFLib retrieved as string from -: %s' % (jsonld_source_url)) + self.logger.info( + "FsF-F2-01M : Try to parse JSON-LD using RDFLib retrieved as string from -: %s" + % (jsonld_source_url) + ) try: jsonldgraph = rdflib.ConjunctiveGraph() - rdf_response_graph = jsonldgraph.parse(data=rdf_response, format='json-ld') - #rdf_response_graph = jsonldgraph + rdf_response_graph = jsonldgraph.parse(data=rdf_response, format="json-ld") + # rdf_response_graph = jsonldgraph self.setLinkedNamespaces(self.getAllURIS(jsonldgraph)) except Exception as e: - print('JSON-LD parsing error', e, rdf_response[:100]) - self.logger.info('FsF-F2-01M : Parsing error (RDFLib), failed to extract JSON-LD -: {}'.format(e)) + print("JSON-LD parsing error", e, rdf_response[:100]) + self.logger.info( + "FsF-F2-01M : Parsing error (RDFLib), failed to extract JSON-LD -: {}".format(e) + ) elif self.accept_type == AcceptTypes.rdf: - #print('ACCEPT: ',self.accept_type) + # print('ACCEPT: ',self.accept_type) # parse all other RDF formats (non JSON-LD schema.org) # parseformat = re.search(r'[\/+]([a-z0-9]+)$', str(requestHelper.content_type)) - format_dict = {'text/ttl':'turtle', - 'application/xhtml+xml':'rdfa', - 'application/n-triples':'nt', - 'application/n-quads':'nquads' - } + format_dict = { + "text/ttl": "turtle", + "application/xhtml+xml": "rdfa", + "application/n-triples": "nt", + "application/n-quads": "nquads", + } if self.content_type in format_dict: parseformat = (None, format_dict[self.content_type]) else: - parseformat = re.search(r'[\/+]([a-z0-9]+)$', str(self.content_type)) + parseformat = re.search(r"[\/+]([a-z0-9]+)$", str(self.content_type)) if parseformat: parse_format = parseformat[1] - if parse_format =='rdfa': + if parse_format == "rdfa": self.metadata_format = MetadataFormats.RDFA - if parse_format not in ['xml', 'n3','turtle', 'nt', 'pretty-xml','trix','trig','nquads', 'json-ld','hext']: - parse_format = 'turtle' - if 'html' not in str(parse_format) and 'zip' not in str(parse_format) : + if parse_format not in [ + "xml", + "n3", + "turtle", + "nt", + "pretty-xml", + "trix", + "trig", + "nquads", + "json-ld", + "hext", + ]: + parse_format = "turtle" + if "html" not in str(parse_format) and "zip" not in str(parse_format): RDFparsed = False - self.logger.info('FsF-F2-01M : Try to parse RDF from -: %s as %s' % (self.target_url,parse_format)) + self.logger.info( + "FsF-F2-01M : Try to parse RDF from -: %s as %s" % (self.target_url, parse_format) + ) badline = None while not RDFparsed: try: - graph = rdflib.Graph(identifier = self.target_url) + graph = rdflib.Graph(identifier=self.target_url) graph.parse(data=rdf_response, format=parse_format) rdf_response_graph = graph self.setLinkedNamespaces(self.getAllURIS(rdf_response_graph)) RDFparsed = True except Exception as e: - #:74964:92: unclosed token - errorlinematch = re.search(r'\sline\s([0-9]+)',str(e)) + # :74964:92: unclosed token + errorlinematch = re.search(r"\sline\s([0-9]+)", str(e)) if not errorlinematch: - errorlinematch = re.search(r':([0-9]+)',str(e)) - if errorlinematch and parseformat[1] !='xml': - if int(errorlinematch[1])+1 != badline: + errorlinematch = re.search(r":([0-9]+)", str(e)) + if errorlinematch and parseformat[1] != "xml": + if int(errorlinematch[1]) + 1 != badline: badline = int(errorlinematch[1]) self.logger.warning( - 'FsF-F2-01M : Failed to parse RDF, trying to fix RDF string and retry parsing everything before line -: %s ' % str(badline)) + "FsF-F2-01M : Failed to parse RDF, trying to fix RDF string and retry parsing everything before line -: %s " + % str(badline) + ) splitRDF = rdf_response.splitlines() - if len(splitRDF) >=1 and badline <= len(splitRDF) and badline > 1: - rdf_response = b'\n'.join(splitRDF[:badline-1]) + if len(splitRDF) >= 1 and badline <= len(splitRDF) and badline > 1: + rdf_response = b"\n".join(splitRDF[: badline - 1]) else: - RDFparsed = True # end reached + RDFparsed = True # end reached else: RDFparsed = True else: - RDFparsed = True # give up + RDFparsed = True # give up if not RDFparsed: continue else: self.logger.warning( - 'FsF-F2-01M : Failed to parse RDF -: %s %s' % (self.target_url, str(e))) + "FsF-F2-01M : Failed to parse RDF -: %s %s" % (self.target_url, str(e)) + ) else: - self.logger.info('FsF-F2-01M : Seems to be HTML not RDF, therefore skipped parsing RDF from -: %s' % (self.target_url)) + self.logger.info( + "FsF-F2-01M : Seems to be HTML not RDF, therefore skipped parsing RDF from -: %s" + % (self.target_url) + ) else: - self.logger.info('FsF-F2-01M : Could not determine RDF serialisation format for -: {}'.format(self.target_url)) + self.logger.info( + "FsF-F2-01M : Could not determine RDF serialisation format for -: {}".format(self.target_url) + ) if not rdf_metadata: rdf_metadata = self.get_metadata_from_graph(rdf_response_graph) @@ -399,57 +448,76 @@ def get_sparqled_metadata(self, g): meta = dict() try: - if (len(g) >= 1): - self.logger.info('FsF-F2-01M : Trying to query generic SPARQL on RDF, found triples: -:'+str(len(g))) + if len(g) >= 1: + self.logger.info("FsF-F2-01M : Trying to query generic SPARQL on RDF, found triples: -:" + str(len(g))) r = g.query(Mapper.GENERIC_SPARQL.value) for row in r: for l, v in row.asdict().items(): if l is not None: if l in [ - 'references', 'source', 'isVersionOf', 'isReferencedBy', 'isPartOf', 'hasVersion', - 'replaces', 'hasPart', 'isReplacedBy', 'requires', 'isRequiredBy' + "references", + "source", + "isVersionOf", + "isReferencedBy", + "isPartOf", + "hasVersion", + "replaces", + "hasPart", + "isReplacedBy", + "requires", + "isRequiredBy", ]: - if not meta.get('related_resources'): - meta['related_resources'] = [] - meta['related_resources'].append({'related_resource': str(v), 'relation_type': l}) + if not meta.get("related_resources"): + meta["related_resources"] = [] + meta["related_resources"].append({"related_resource": str(v), "relation_type": l}) else: meta[l] = str(v) break else: self.logger.warning( - 'FsF-F2-01M : Graph seems to contain no triple, skipping core metadata element test') + "FsF-F2-01M : Graph seems to contain no triple, skipping core metadata element test" + ) except Exception as e: - self.logger.info('FsF-F2-01M : SPARQLing error -: {}'.format(e)) + self.logger.info("FsF-F2-01M : SPARQLing error -: {}".format(e)) if len(meta) <= 0: goodtriples = [] has_xhtml = False for t in list(g): # exclude xhtml properties/predicates: - if not '/xhtml/vocab' in t[1] and not '/ogp.me' in t[1]: + if not "/xhtml/vocab" in t[1] and not "/ogp.me" in t[1]: goodtriples.append(t) else: has_xhtml = True if has_xhtml: - self.logger.info('FsF-F2-01M : Found RDFa like triples but at least some of them seem to be XHTML or OpenGraph properties which are excluded') + self.logger.info( + "FsF-F2-01M : Found RDFa like triples but at least some of them seem to be XHTML or OpenGraph properties which are excluded" + ) if len(goodtriples) > 1: - if not meta.get('object_type'): - meta['object_type'] = 'Other' + if not meta.get("object_type"): + meta["object_type"] = "Other" self.logger.info( - 'FsF-F2-01M : Could not find core metadata elements through generic SPARQL query on RDF but found ' - + str(len(goodtriples)) + ' triples in the given graph') - elif meta.get('object_type'): - #Ignore non CreativeWork schema.org types - if 'schema.org' in meta['object_type']: - if meta['object_type'].split('/')[-1].lower() not in self.SCHEMA_ORG_CREATIVEWORKS: - self.logger.info('FsF-F2-01M : Ignoring SPARQLed metadata seems to be non CreativeWork schema.org type: '+str(meta['object_type'])) + "FsF-F2-01M : Could not find core metadata elements through generic SPARQL query on RDF but found " + + str(len(goodtriples)) + + " triples in the given graph" + ) + elif meta.get("object_type"): + # Ignore non CreativeWork schema.org types + if "schema.org" in meta["object_type"]: + if meta["object_type"].split("/")[-1].lower() not in self.SCHEMA_ORG_CREATIVEWORKS: + self.logger.info( + "FsF-F2-01M : Ignoring SPARQLed metadata seems to be non CreativeWork schema.org type: " + + str(meta["object_type"]) + ) meta = dict() if meta: - self.logger.info('FsF-F2-01M : Found some core metadata elements through generic SPARQL query on RDF -: ' + - str(meta.keys())) + self.logger.info( + "FsF-F2-01M : Found some core metadata elements through generic SPARQL query on RDF -: " + + str(meta.keys()) + ) return meta - #TODO rename to: get_core_metadata - def get_metadata(self, g, item, type='Dataset'): + # TODO rename to: get_core_metadata + def get_metadata(self, g, item, type="Dataset"): """Get the core (domain agnostic, DCAT, DC, schema.org) metadata given in RDF graph. Parameters @@ -466,112 +534,181 @@ def get_metadata(self, g, item, type='Dataset'): dict a dictionary of core metadata in RDF graph """ - DCAT = Namespace('http://www.w3.org/ns/dcat#') - SMA = Namespace('http://schema.org/') + DCAT = Namespace("http://www.w3.org/ns/dcat#") + SMA = Namespace("http://schema.org/") meta = dict() - #default sparql - #meta = self.get_default_metadata(g) - self.logger.info('FsF-F2-01M : Trying to get some core domain agnostic (DCAT, DC, schema.org) metadata from RDF graph') - if not meta.get('object_identifier'): - meta['object_identifier'] = [] - for identifier in (list(g.objects(item, DC.identifier)) + list(g.objects(item, DCTERMS.identifier)) + - list(g.objects(item, SDO.identifier)) + list(g.objects(item, SMA.identifier)) + - list(g.objects(item, SDO.sameAs))+ list(g.objects(item, SMA.sameAs))): - meta['object_identifier'].append(str(identifier)) - - ''' + # default sparql + # meta = self.get_default_metadata(g) + self.logger.info( + "FsF-F2-01M : Trying to get some core domain agnostic (DCAT, DC, schema.org) metadata from RDF graph" + ) + if not meta.get("object_identifier"): + meta["object_identifier"] = [] + for identifier in ( + list(g.objects(item, DC.identifier)) + + list(g.objects(item, DCTERMS.identifier)) + + list(g.objects(item, SDO.identifier)) + + list(g.objects(item, SMA.identifier)) + + list(g.objects(item, SDO.sameAs)) + + list(g.objects(item, SMA.sameAs)) + ): + meta["object_identifier"].append(str(identifier)) + + """ meta['object_identifier'] = (g.value(item, DC.identifier) or g.value(item, DCTERMS.identifier) or g.value(item, SDO.identifier) or g.value(item, SMA.identifier) or g.value(item, SMA.sameAs)) - ''' - ''' + """ + """ if self.source_name != self.getEnumSourceNames().RDFA.value: meta['object_identifier'] = str(item) meta['object_content_identifier'] = [{'url': str(item), 'type': 'application/rdf+xml'}] - ''' - if not meta.get('language'): - meta['language'] = str(g.value(item, DC.language) or g.value(item, DCTERMS.language) or - g.value(item, SDO.inLanguage) or g.value(item, SMA.inLanguage)) - if not meta.get('title'): - meta['title'] = str(g.value(item, DC.title) or g.value(item, DCTERMS.title) or g.value(item, SMA.name) or g.value(item, SDO.name) or g.value(item, SMA.headline) or g.value(item, SDO.headline)) - if not meta.get('summary'): - meta['summary'] = str(g.value(item, DC.description) or g.value(item, DCTERMS.description) or g.value(item, DCTERMS.abstract) or - g.value(item, SMA.description) or g.value(item, SDO.description) - or g.value(item, SMA.abstract) or g.value(item, SDO.abstract)) - if not meta.get('publication_date'): - meta['publication_date'] = str(g.value(item, DC.date) or g.value(item, DCTERMS.date) or - g.value(item, DCTERMS.issued) - or g.value(item, SMA.datePublished) or g.value(item, SMA.dateCreated) - or g.value(item, SDO.datePublished) or g.value(item, SDO.dateCreated) - ) - if not meta.get('publisher'): - meta['publisher']=[] - for publisher in (list(g.objects(item, DC.publisher)) or list(g.objects(item, DCTERMS.publisher)) or - list(g.objects(item, SMA.publisher)) or list(g.objects(item, SDO.publisher)) or - list(g.objects(item, SMA.provider)) or list(g.objects(item, SDO.provider))): - publishername = (g.value(publisher,FOAF.name) or (g.value(publisher,SMA.name))or (g.value(publisher,SDO.name))) + """ + if not meta.get("language"): + meta["language"] = str( + g.value(item, DC.language) + or g.value(item, DCTERMS.language) + or g.value(item, SDO.inLanguage) + or g.value(item, SMA.inLanguage) + ) + if not meta.get("title"): + meta["title"] = str( + g.value(item, DC.title) + or g.value(item, DCTERMS.title) + or g.value(item, SMA.name) + or g.value(item, SDO.name) + or g.value(item, SMA.headline) + or g.value(item, SDO.headline) + ) + if not meta.get("summary"): + meta["summary"] = str( + g.value(item, DC.description) + or g.value(item, DCTERMS.description) + or g.value(item, DCTERMS.abstract) + or g.value(item, SMA.description) + or g.value(item, SDO.description) + or g.value(item, SMA.abstract) + or g.value(item, SDO.abstract) + ) + if not meta.get("publication_date"): + meta["publication_date"] = str( + g.value(item, DC.date) + or g.value(item, DCTERMS.date) + or g.value(item, DCTERMS.issued) + or g.value(item, SMA.datePublished) + or g.value(item, SMA.dateCreated) + or g.value(item, SDO.datePublished) + or g.value(item, SDO.dateCreated) + ) + if not meta.get("publisher"): + meta["publisher"] = [] + for publisher in ( + list(g.objects(item, DC.publisher)) + or list(g.objects(item, DCTERMS.publisher)) + or list(g.objects(item, SMA.publisher)) + or list(g.objects(item, SDO.publisher)) + or list(g.objects(item, SMA.provider)) + or list(g.objects(item, SDO.provider)) + ): + publishername = ( + g.value(publisher, FOAF.name) or (g.value(publisher, SMA.name)) or (g.value(publisher, SDO.name)) + ) if publishername: - meta['publisher'].append(str(publishername)) + meta["publisher"].append(str(publishername)) else: - meta['publisher'].append(str(publisher)) - #meta['publisher'] = str(g.value(item, DC.publisher) or g.value(item, DCTERMS.publisher) or + meta["publisher"].append(str(publisher)) + # meta['publisher'] = str(g.value(item, DC.publisher) or g.value(item, DCTERMS.publisher) or # g.value(item, SMA.publisher) or g.value(item, SDO.publisher) or g.value(item, SMA.provider) or g.value(item, SDO.provider)) - if not meta.get('keywords'): - meta['keywords'] = [] - for keyword in (list(g.objects(item, DCAT.keyword)) + list(g.objects(item, DCTERMS.subject)) + - list(g.objects(item, DC.subject)) - or list(g.objects(item, SMA.keywords)) or list(g.objects(item, SDO.keywords))): - meta['keywords'].append(str(keyword)) - #TODO creators, contributors - if not meta.get('creator'): - meta['creator'] = [] - for creator in (list(g.objects(item, DCTERMS.creator)) or list(g.objects(item, DC.creator)) or list(g.objects(item, SMA.author))): - if g.value(creator,FOAF.name): - meta['creator'].append(str(g.value(creator,FOAF.name))) + if not meta.get("keywords"): + meta["keywords"] = [] + for keyword in ( + list(g.objects(item, DCAT.keyword)) + + list(g.objects(item, DCTERMS.subject)) + + list(g.objects(item, DC.subject)) + or list(g.objects(item, SMA.keywords)) + or list(g.objects(item, SDO.keywords)) + ): + meta["keywords"].append(str(keyword)) + # TODO creators, contributors + if not meta.get("creator"): + meta["creator"] = [] + for creator in ( + list(g.objects(item, DCTERMS.creator)) + or list(g.objects(item, DC.creator)) + or list(g.objects(item, SMA.author)) + ): + if g.value(creator, FOAF.name): + meta["creator"].append(str(g.value(creator, FOAF.name))) else: - meta['creator'].append(str(creator)) - - if not meta.get('contributor'): - meta['contributor'] = [] - for contributor in (list(g.objects(item, DCTERMS.contributor)) or list(g.objects(item, DC.contributor)) or list(g.objects(item, SMA.contributor))): - meta['contributor'].append(str(contributor)) - if not meta.get('license'): - meta['license'] = str(g.value(item, DCTERMS.license) or g.value(item, SDO.license) or g.value(item, SMA.license)) - if not meta.get('access_level'): - meta['access_level'] = str(g.value(item, DCTERMS.accessRights) or g.value(item, DCTERMS.rights) or - g.value(item, DC.rights) - or g.value(item, SDO.conditionsOfAccess) or g.value(item, SMA.conditionsOfAccess) ) - if not meta.get('related_resources'): - meta['related_resources'] = [] + meta["creator"].append(str(creator)) + + if not meta.get("contributor"): + meta["contributor"] = [] + for contributor in ( + list(g.objects(item, DCTERMS.contributor)) + or list(g.objects(item, DC.contributor)) + or list(g.objects(item, SMA.contributor)) + ): + meta["contributor"].append(str(contributor)) + if not meta.get("license"): + meta["license"] = str( + g.value(item, DCTERMS.license) or g.value(item, SDO.license) or g.value(item, SMA.license) + ) + if not meta.get("access_level"): + meta["access_level"] = str( + g.value(item, DCTERMS.accessRights) + or g.value(item, DCTERMS.rights) + or g.value(item, DC.rights) + or g.value(item, SDO.conditionsOfAccess) + or g.value(item, SMA.conditionsOfAccess) + ) + if not meta.get("related_resources"): + meta["related_resources"] = [] for dctrelationtype in [ - DCTERMS.references, DCTERMS.source, DCTERMS.isVersionOf, DCTERMS.isReferencedBy, DCTERMS.isPartOf, - DCTERMS.hasVersion, DCTERMS.replaces, DCTERMS.hasPart, DCTERMS.isReplacedBy, DCTERMS.requires, - DCTERMS.isRequiredBy + DCTERMS.references, + DCTERMS.source, + DCTERMS.isVersionOf, + DCTERMS.isReferencedBy, + DCTERMS.isPartOf, + DCTERMS.hasVersion, + DCTERMS.replaces, + DCTERMS.hasPart, + DCTERMS.isReplacedBy, + DCTERMS.requires, + DCTERMS.isRequiredBy, ]: dctrelation = g.value(item, dctrelationtype) if dctrelation: - meta['related_resources'].append({ - 'related_resource': str(dctrelation), - 'relation_type': str(dctrelationtype) - }) + meta["related_resources"].append( + {"related_resource": str(dctrelation), "relation_type": str(dctrelationtype)} + ) for schemarelationtype in [ - SMA.isPartOf, SMA.includedInDataCatalog, SMA.subjectOf, SMA.isBasedOn, SMA.sameAs, - SDO.isPartOf, SDO.includedInDataCatalog, SDO.subjectOf, SDO.isBasedOn, SDO.sameAs + SMA.isPartOf, + SMA.includedInDataCatalog, + SMA.subjectOf, + SMA.isBasedOn, + SMA.sameAs, + SDO.isPartOf, + SDO.includedInDataCatalog, + SDO.subjectOf, + SDO.isBasedOn, + SDO.sameAs, ]: schemarelation = g.value(item, schemarelationtype) if schemarelation: - meta['related_resources'].append({ - 'related_resource': str(schemarelation), - 'relation_type': str(schemarelationtype) - }) + meta["related_resources"].append( + {"related_resource": str(schemarelation), "relation_type": str(schemarelationtype)} + ) if meta: - meta['object_type'] = type - meta = {k: v for k, v in meta.items() if v not in [None, 'None',[]]} + meta["object_type"] = type + meta = {k: v for k, v in meta.items() if v not in [None, "None", []]} self.logger.info( - 'FsF-F2-01M : Found some core domain agnostic (DCAT, DC, schema.org) metadata from RDF graph -: '+str(meta)) + "FsF-F2-01M : Found some core domain agnostic (DCAT, DC, schema.org) metadata from RDF graph -: " + + str(meta) + ) return meta def get_ontology_metadata(self, graph): @@ -588,190 +725,206 @@ def get_ontology_metadata(self, graph): a dictionary of Ontology in RDF graph """ ont_metadata = dict() - OWL = Namespace('http://www.w3.org/2002/07/owl#') - SKOS = Namespace('http://www.w3.org/2004/02/skos/core#') - ontologies = list(graph[:RDF.type:OWL.Ontology]) + OWL = Namespace("http://www.w3.org/2002/07/owl#") + SKOS = Namespace("http://www.w3.org/2004/02/skos/core#") + ontologies = list(graph[: RDF.type : OWL.Ontology]) if len(ontologies) > 0: - self.logger.info('FsF-F2-01M : RDF Graph seems to represent a OWL Ontology') - ont_metadata = self.get_metadata(graph, ontologies[0], type='DefinedTermSet') + self.logger.info("FsF-F2-01M : RDF Graph seems to represent a OWL Ontology") + ont_metadata = self.get_metadata(graph, ontologies[0], type="DefinedTermSet") else: - ontologies = list(graph[:RDF.type:SKOS.ConceptScheme]) or list(graph[:RDF.type:SKOS.Collection]) + ontologies = list(graph[: RDF.type : SKOS.ConceptScheme]) or list(graph[: RDF.type : SKOS.Collection]) if len(ontologies) > 0: - self.logger.info('FsF-F2-01M : RDF Graph seems to represent a SKOS Ontology') - ont_metadata = self.get_metadata(graph, ontologies[0], type='DefinedTermSet') + self.logger.info("FsF-F2-01M : RDF Graph seems to represent a SKOS Ontology") + ont_metadata = self.get_metadata(graph, ontologies[0], type="DefinedTermSet") else: - self.logger.info('FsF-F2-01M : Could not parse Ontology RDF') + self.logger.info("FsF-F2-01M : Could not parse Ontology RDF") return ont_metadata def get_schemorg_metadata_from_dict(self, json_dict): - jsnld_metadata ={} + jsnld_metadata = {} trusted = True if isinstance(json_dict, dict): - self.logger.info('FsF-F2-01M : Trying to extract schema.org JSON-LD metadata from -: {}'.format( - self.source_name.name)) + self.logger.info( + "FsF-F2-01M : Trying to extract schema.org JSON-LD metadata from -: {}".format(self.source_name.name) + ) # TODO check syntax - not ending with /, type and @type # TODO (important) extend mapping to detect other pids (link to related entities)? try: - #if ext_meta['@context'] in check_context_type['@context'] and ext_meta['@type'] in check_context_type["@type"]: - if str(json_dict.get('@context')).find('://schema.org') > -1: - schemaorgns = 'schema' - if isinstance(json_dict.get('@context'), dict): - for contextname, contexturi in json_dict.get('@context').items(): - if contexturi.endswith('schema.org/'): + # if ext_meta['@context'] in check_context_type['@context'] and ext_meta['@type'] in check_context_type["@type"]: + if str(json_dict.get("@context")).find("://schema.org") > -1: + schemaorgns = "schema" + if isinstance(json_dict.get("@context"), dict): + for contextname, contexturi in json_dict.get("@context").items(): + if contexturi.endswith("schema.org/"): schemaorgns = contextname - json_dict = json.loads(json.dumps(json_dict).replace('"' + schemaorgns + ':', '"')) - #special case #1 - if json_dict.get('mainEntity'): - self.logger.info('FsF-F2-01M : \'MainEntity\' detected in JSON-LD, trying to identify its properties') - for mainEntityprop in json_dict.get('mainEntity'): - if isinstance(json_dict.get('mainEntity'), dict): - json_dict[mainEntityprop] = json_dict.get('mainEntity').get(mainEntityprop) - #special case #2 - #if json_dict.get('@graph'): + json_dict = json.loads(json.dumps(json_dict).replace('"' + schemaorgns + ":", '"')) + # special case #1 + if json_dict.get("mainEntity"): + self.logger.info( + "FsF-F2-01M : 'MainEntity' detected in JSON-LD, trying to identify its properties" + ) + for mainEntityprop in json_dict.get("mainEntity"): + if isinstance(json_dict.get("mainEntity"), dict): + json_dict[mainEntityprop] = json_dict.get("mainEntity").get(mainEntityprop) + # special case #2 + # if json_dict.get('@graph'): # self.logger.info('FsF-F2-01M : Seems to be a JSON-LD graph, trying to compact') - #ext_meta = self.compact_jsonld(ext_meta) + # ext_meta = self.compact_jsonld(ext_meta) - if not isinstance(json_dict.get('@type'), list): - json_dict['@type'] = [json_dict.get('@type')] + if not isinstance(json_dict.get("@type"), list): + json_dict["@type"] = [json_dict.get("@type")] - if not json_dict.get('@type'): + if not json_dict.get("@type"): self.logger.info( - 'FsF-F2-01M : Found JSON-LD which seems to be a schema.org object but has no context type') - elif not any(tt.lower() in self.SCHEMA_ORG_CONTEXT for tt in json_dict.get('@type')): - #elif str(json_dict.get('@type')).lower() not in self.SCHEMA_ORG_CONTEXT: + "FsF-F2-01M : Found JSON-LD which seems to be a schema.org object but has no context type" + ) + elif not any(tt.lower() in self.SCHEMA_ORG_CONTEXT for tt in json_dict.get("@type")): + # elif str(json_dict.get('@type')).lower() not in self.SCHEMA_ORG_CONTEXT: trusted = False self.logger.info( - 'FsF-F2-01M : Found JSON-LD but will not use it since it seems not to be a schema.org object based on the given context type -:' - + str(json_dict.get('@type'))) - elif not any(tt.lower() in self.SCHEMA_ORG_CREATIVEWORKS for tt in json_dict.get('@type')): - #elif str(json_dict.get('@type')).lower() not in self.SCHEMA_ORG_CREATIVEWORKS: + "FsF-F2-01M : Found JSON-LD but will not use it since it seems not to be a schema.org object based on the given context type -:" + + str(json_dict.get("@type")) + ) + elif not any(tt.lower() in self.SCHEMA_ORG_CREATIVEWORKS for tt in json_dict.get("@type")): + # elif str(json_dict.get('@type')).lower() not in self.SCHEMA_ORG_CREATIVEWORKS: trusted = False self.logger.info( - 'FsF-F2-01M : Found schema.org JSON-LD but will not use it since it seems not to be a CreativeWork like research data object -:'+str(json_dict.get('@type'))) + "FsF-F2-01M : Found schema.org JSON-LD but will not use it since it seems not to be a CreativeWork like research data object -:" + + str(json_dict.get("@type")) + ) else: self.logger.info( - 'FsF-F2-01M : Found schema.org JSON-LD which seems to be valid, based on the given context type -:' - + str(json_dict.get('@type'))) + "FsF-F2-01M : Found schema.org JSON-LD which seems to be valid, based on the given context type -:" + + str(json_dict.get("@type")) + ) - self.namespaces.append('http://schema.org/') + self.namespaces.append("http://schema.org/") jsnld_metadata = jmespath.search(Mapper.SCHEMAORG_MAPPING.value, json_dict) - if jsnld_metadata.get('creator') is None: - first = jsnld_metadata.get('creator_first') - last = jsnld_metadata.get('creator_last') + if jsnld_metadata.get("creator") is None: + first = jsnld_metadata.get("creator_first") + last = jsnld_metadata.get("creator_last") if last: if isinstance(first, list) and isinstance(last, list): if len(first) == len(last): - names = [str(i) + ' ' + str(j) for i, j in zip(first, last)] - jsnld_metadata['creator'] = names + names = [str(i) + " " + str(j) for i, j in zip(first, last)] + jsnld_metadata["creator"] = names else: - jsnld_metadata['creator'] = [str(first) + ' ' + str(last)] + jsnld_metadata["creator"] = [str(first) + " " + str(last)] invalid_license = False - if jsnld_metadata.get('license'): - self.logger.info('FsF-R1.1-01M : License metadata found (schema.org) -: {}'.format( - jsnld_metadata.get('license'))) - if not isinstance(jsnld_metadata.get('license'), list): - jsnld_metadata['license'] = [jsnld_metadata['license']] + if jsnld_metadata.get("license"): + self.logger.info( + "FsF-R1.1-01M : License metadata found (schema.org) -: {}".format( + jsnld_metadata.get("license") + ) + ) + if not isinstance(jsnld_metadata.get("license"), list): + jsnld_metadata["license"] = [jsnld_metadata["license"]] lk = 0 - for licence in jsnld_metadata.get('license'): + for licence in jsnld_metadata.get("license"): if isinstance(licence, dict): - ls_type = licence.get('@type') - #license can be of type URL or CreativeWork - if ls_type == 'CreativeWork': - ls = licence.get('url') + ls_type = licence.get("@type") + # license can be of type URL or CreativeWork + if ls_type == "CreativeWork": + ls = licence.get("url") if not ls: - ls = licence.get('name') + ls = licence.get("name") if ls: - jsnld_metadata['license'][lk] = ls + jsnld_metadata["license"][lk] = ls else: invalid_license = True else: invalid_license = True if invalid_license: self.logger.warning( - 'FsF-R1.1-01M : Looks like schema.org representation of license is incorrect.' + "FsF-R1.1-01M : Looks like schema.org representation of license is incorrect." ) - jsnld_metadata['license'][lk] = None - lk+=1 - + jsnld_metadata["license"][lk] = None + lk += 1 # filter out None values of related_resources - if jsnld_metadata.get('related_resources'): - relateds = [d for d in jsnld_metadata['related_resources'] if d['related_resource'] is not None] + if jsnld_metadata.get("related_resources"): + relateds = [d for d in jsnld_metadata["related_resources"] if d["related_resource"] is not None] if relateds: - jsnld_metadata['related_resources'] = relateds - self.logger.info('FsF-I3-01M : {0} related resource(s) extracted from -: {1}'.format( - len(jsnld_metadata['related_resources']), self.source_name.name)) + jsnld_metadata["related_resources"] = relateds + self.logger.info( + "FsF-I3-01M : {0} related resource(s) extracted from -: {1}".format( + len(jsnld_metadata["related_resources"]), self.source_name.name + ) + ) else: - del jsnld_metadata['related_resources'] - self.logger.info('FsF-I3-01M : No related resource(s) found in Schema.org metadata') + del jsnld_metadata["related_resources"] + self.logger.info("FsF-I3-01M : No related resource(s) found in Schema.org metadata") - if jsnld_metadata.get('object_size'): - #print(jsnld_metadata.get('object_size')) - if isinstance(jsnld_metadata['object_size'], dict): - jsnld_metadata['object_size'] = str(jsnld_metadata['object_size'].get('value')) + if jsnld_metadata.get("object_size"): + # print(jsnld_metadata.get('object_size')) + if isinstance(jsnld_metadata["object_size"], dict): + jsnld_metadata["object_size"] = str(jsnld_metadata["object_size"].get("value")) - #jsnld_metadata['object_size'] = str(jsnld_metadata['object_size'].get('value')) + ' '+ jsnld_metadata['object_size'].get('unitText') + # jsnld_metadata['object_size'] = str(jsnld_metadata['object_size'].get('value')) + ' '+ jsnld_metadata['object_size'].get('unitText') else: - self.logger.info('FsF-F2-01M : Found JSON-LD but record is not of type schema.org based on context -: ' + str(json_dict.get('@context'))) + self.logger.info( + "FsF-F2-01M : Found JSON-LD but record is not of type schema.org based on context -: " + + str(json_dict.get("@context")) + ) except Exception as err: - #print(err.with_traceback()) - self.logger.info('FsF-F2-01M : Failed to parse JSON-LD schema.org -: {}'.format(err)) + # print(err.with_traceback()) + self.logger.info("FsF-F2-01M : Failed to parse JSON-LD schema.org -: {}".format(err)) else: - self.logger.info('FsF-F2-01M : Could not identify JSON-LD schema.org metadata from ingested JSON dict') + self.logger.info("FsF-F2-01M : Could not identify JSON-LD schema.org metadata from ingested JSON dict") if not trusted: jsnld_metadata = {} return jsnld_metadata def get_schemaorg_metadata_from_graph(self, graph): - #we will only test creative works and subtypes + # we will only test creative works and subtypes creative_work_types = Preprocessor.get_schema_org_creativeworks() creative_work = None - schema_metadata={} - SMA = Namespace('http://schema.org/') + schema_metadata = {} + SMA = Namespace("http://schema.org/") schema_org_nodes = [] # use only schema.org properties and create graph using these. # is e.g. important in case schema.org is encoded as RDFa and variuos namespaces are used - creative_work_type = 'Dataset' + creative_work_type = "Dataset" try: cand_creative_work = {} - object_types_dict ={} + object_types_dict = {} for root in rdflib.util.find_roots(graph, RDF.type): # we have https and http as allowed schema.org namespace protocols - if 'schema.org' in str(root): - root_name = str(root).rsplit('/')[-1].strip() + if "schema.org" in str(root): + root_name = str(root).rsplit("/")[-1].strip() if root_name.lower() in creative_work_types: - creative_works = list(graph[:RDF.type:root]) + creative_works = list(graph[: RDF.type : root]) # Finding the schema.org root if len(list(graph.subjects(object=creative_works[0]))) == 0: - cand_creative_work[root_name] =creative_works[0] + cand_creative_work[root_name] = creative_works[0] if object_types_dict.get(str(creative_works[0])): object_types_dict[str(creative_works[0])].append(root_name) else: - object_types_dict[str(creative_works[0])]=[root_name] + object_types_dict[str(creative_works[0])] = [root_name] # prioritize Dataset type if cand_creative_work: - if 'Dataset' in cand_creative_work: - creative_work = cand_creative_work['Dataset'] + if "Dataset" in cand_creative_work: + creative_work = cand_creative_work["Dataset"] else: creative_work = cand_creative_work[list(cand_creative_work)[0]] creative_work_type = list(cand_creative_work)[0] except Exception as e: - self.logger.info('FsF-F2-01M : Schema.org RDF graph parsing failed -: '+str(e)) + self.logger.info("FsF-F2-01M : Schema.org RDF graph parsing failed -: " + str(e)) if creative_work: - schema_metadata = self.get_metadata(graph, creative_work, type = creative_work_type) - #object type (in case there are more than one - if isinstance(object_types_dict.get(str(creative_work)),list): - schema_metadata['object_type'] = object_types_dict.get(str(creative_work)) + schema_metadata = self.get_metadata(graph, creative_work, type=creative_work_type) + # object type (in case there are more than one + if isinstance(object_types_dict.get(str(creative_work)), list): + schema_metadata["object_type"] = object_types_dict.get(str(creative_work)) # creator creator_node = None if graph.value(creative_work, SMA.creator): @@ -787,34 +940,41 @@ def get_schemaorg_metadata_from_graph(self, graph): creators = graph.objects(creative_work, creator_node) creator_name = [] for creator in creators: - creator_name.append((graph.value(creator, SMA.familyName) or graph.value(creator, SDO.familyName) - or graph.value(creator, SDO.name) or graph.value(creator, SMA.name) )) + creator_name.append( + ( + graph.value(creator, SMA.familyName) + or graph.value(creator, SDO.familyName) + or graph.value(creator, SDO.name) + or graph.value(creator, SMA.name) + ) + ) if len(creator_name) > 0: - schema_metadata['creator'] = creator_name + schema_metadata["creator"] = creator_name - distribution = (graph.objects(creative_work, SMA.distribution) or graph.objects(creative_work, SDO.distribution)) - schema_metadata['object_content_identifier'] = [] + distribution = graph.objects(creative_work, SMA.distribution) or graph.objects( + creative_work, SDO.distribution + ) + schema_metadata["object_content_identifier"] = [] for dist in distribution: - durl = (graph.value(dist, SMA.contentUrl) or graph.value(dist, SDO.contentUrl)) - dtype = (graph.value(dist, SMA.encodingFormat) or graph.value(dist, SDO.encodingFormat)) - dsize = (graph.value(dist, SMA.contentSize) or graph.value(dist, SDO.contentSize)) + durl = graph.value(dist, SMA.contentUrl) or graph.value(dist, SDO.contentUrl) + dtype = graph.value(dist, SMA.encodingFormat) or graph.value(dist, SDO.encodingFormat) + dsize = graph.value(dist, SMA.contentSize) or graph.value(dist, SDO.contentSize) if durl or dtype or dsize: if idutils.is_url(str(durl)): if dtype: - dtype = '/'.join(str(dtype).split('/')[-2:]) - schema_metadata['object_content_identifier'].append({ - 'url': str(durl), - 'type': dtype, - 'size': str(dsize) - }) - schema_metadata['measured_variable'] = [] - for variable in (list(graph.objects(creative_works[0], SMA.variableMeasured)) - or list(graph.objects(creative_works[0], SDO.variableMeasured))): - variablename = (graph.value(variable, SMA.name) or graph.value(variable, SDO.name)) + dtype = "/".join(str(dtype).split("/")[-2:]) + schema_metadata["object_content_identifier"].append( + {"url": str(durl), "type": dtype, "size": str(dsize)} + ) + schema_metadata["measured_variable"] = [] + for variable in list(graph.objects(creative_works[0], SMA.variableMeasured)) or list( + graph.objects(creative_works[0], SDO.variableMeasured) + ): + variablename = graph.value(variable, SMA.name) or graph.value(variable, SDO.name) if variablename: - schema_metadata['measured_variable'].append(variablename) + schema_metadata["measured_variable"].append(variablename) else: - schema_metadata['measured_variable'].append(variable) + schema_metadata["measured_variable"].append(variable) #'measured_variable: variableMeasured[*].name || variableMeasured , object_size: size,' \ @@ -834,69 +994,74 @@ def get_dcat_metadata(self, graph): a dictionary of Ontology in RDF graph """ dcat_metadata = dict() - DCAT = Namespace('http://www.w3.org/ns/dcat#') + DCAT = Namespace("http://www.w3.org/ns/dcat#") - datasets = list(graph[:RDF.type:DCAT.Dataset]) + datasets = list(graph[: RDF.type : DCAT.Dataset]) if len(datasets) > 1: - self.logger.info('FsF-F2-01M : Found more than one DCAT Dataset description, will use first one') + self.logger.info("FsF-F2-01M : Found more than one DCAT Dataset description, will use first one") if len(datasets) > 0: - dcat_metadata = self.get_metadata(graph, datasets[0], type='Dataset') + dcat_metadata = self.get_metadata(graph, datasets[0], type="Dataset") # distribution distribution = graph.objects(datasets[0], DCAT.distribution) - dcat_metadata['object_content_identifier'] = [] + dcat_metadata["object_content_identifier"] = [] for dist in distribution: dtype, durl, dsize = None, None, None if not (graph.value(dist, DCAT.accessURL) or graph.value(dist, DCAT.downloadURL)): - self.logger.info('FsF-F2-01M : Trying to retrieve DCAT distributions from remote location -:' + - str(dist)) + self.logger.info( + "FsF-F2-01M : Trying to retrieve DCAT distributions from remote location -:" + str(dist) + ) try: distgraph = rdflib.Graph() disturl = str(dist) - distresponse = requests.get(disturl, headers={'Accept': 'application/rdf+xml'}) + distresponse = requests.get(disturl, headers={"Accept": "application/rdf+xml"}) if distresponse.text: - distgraph.parse(data=distresponse.text, format='application/rdf+xml') - extdist = list(distgraph[:RDF.type:DCAT.Distribution]) - durl = (distgraph.value(extdist[0], DCAT.accessURL) or - distgraph.value(extdist[0], DCAT.downloadURL)) + distgraph.parse(data=distresponse.text, format="application/rdf+xml") + extdist = list(distgraph[: RDF.type : DCAT.Distribution]) + durl = distgraph.value(extdist[0], DCAT.accessURL) or distgraph.value( + extdist[0], DCAT.downloadURL + ) dsize = distgraph.value(extdist[0], DCAT.byteSize) dtype = distgraph.value(extdist[0], DCAT.mediaType) - self.logger.info('FsF-F2-01M : Found DCAT distribution URL info from remote location -:' + - str(durl)) + self.logger.info( + "FsF-F2-01M : Found DCAT distribution URL info from remote location -:" + str(durl) + ) except Exception as e: - self.logger.info('FsF-F2-01M : Failed to retrieve DCAT distributions from remote location -:' + - str(dist)) - #print(e) + self.logger.info( + "FsF-F2-01M : Failed to retrieve DCAT distributions from remote location -:" + str(dist) + ) + # print(e) durl = str(dist) else: - durl = (graph.value(dist, DCAT.accessURL) or graph.value(dist, DCAT.downloadURL)) - #taking only one just to check if licence is available - dcat_metadata['license'] = graph.value(dist, DCTERMS.license) + durl = graph.value(dist, DCAT.accessURL) or graph.value(dist, DCAT.downloadURL) + # taking only one just to check if licence is available + dcat_metadata["license"] = graph.value(dist, DCTERMS.license) # TODO: check if this really works.. - dcat_metadata['access_rights'] = (graph.value(dist, DCTERMS.accessRights) or - graph.value(dist, DCTERMS.rights)) + dcat_metadata["access_rights"] = graph.value(dist, DCTERMS.accessRights) or graph.value( + dist, DCTERMS.rights + ) dtype = graph.value(dist, DCAT.mediaType) dsize = graph.value(dist, DCAT.bytesSize) if durl or dtype or dsize: if idutils.is_url(str(durl)): - dtype = '/'.join(str(dtype).split('/')[-2:]) - dcat_metadata['object_content_identifier'].append({ - 'url': str(durl), - 'type': dtype, - 'size': str(dsize) - }) - - if dcat_metadata['object_content_identifier']: - self.logger.info('FsF-F3-01M : Found data links in DCAT.org metadata -: ' + - str(dcat_metadata['object_content_identifier'])) - #TODO: add provenance metadata retrieval - #else: + dtype = "/".join(str(dtype).split("/")[-2:]) + dcat_metadata["object_content_identifier"].append( + {"url": str(durl), "type": dtype, "size": str(dsize)} + ) + + if dcat_metadata["object_content_identifier"]: + self.logger.info( + "FsF-F3-01M : Found data links in DCAT.org metadata -: " + + str(dcat_metadata["object_content_identifier"]) + ) + # TODO: add provenance metadata retrieval + # else: # self.logger.info('FsF-F2-01M : Found DCAT content but could not correctly parse metadata') - #in order to keep DCAT in the found metadata list, we need to pass at least one metadata value.. - #dcat_metadata['object_type'] = 'Dataset' + # in order to keep DCAT in the found metadata list, we need to pass at least one metadata value.. + # dcat_metadata['object_type'] = 'Dataset' return dcat_metadata - #rdf_meta.query(self.metadata_mapping.value) - #print(rdf_meta) - #return None + # rdf_meta.query(self.metadata_mapping.value) + # print(rdf_meta) + # return None def get_content_type(self): """Get the content type. diff --git a/fuji_server/helper/metadata_collector_xml.py b/fuji_server/helper/metadata_collector_xml.py index a3bbfe5f..73bc8e5a 100644 --- a/fuji_server/helper/metadata_collector_xml.py +++ b/fuji_server/helper/metadata_collector_xml.py @@ -20,13 +20,14 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. +import re + import idutils +import lxml -from fuji_server.helper.metadata_collector import MetaDataCollector, MetadataOfferingMethods, MetadataFormats -from fuji_server.helper.request_helper import RequestHelper, AcceptTypes +from fuji_server.helper.metadata_collector import MetaDataCollector, MetadataFormats, MetadataOfferingMethods from fuji_server.helper.metadata_mapper import Mapper -import lxml -import re +from fuji_server.helper.request_helper import AcceptTypes, RequestHelper class MetaDataCollectorXML(MetaDataCollector): @@ -50,9 +51,10 @@ class MetaDataCollectorXML(MetaDataCollector): Get mapped xml metadata """ + target_url = None - def __init__(self, loggerinst, target_url, link_type='linked', pref_mime_type=None): + def __init__(self, loggerinst, target_url, link_type="linked", pref_mime_type=None): """ Parameters ---------- @@ -73,25 +75,25 @@ def __init__(self, loggerinst, target_url, link_type='linked', pref_mime_type=No def getAllURIs(self, metatree): founduris = [] try: - #all text element values - elr = metatree.xpath('//text()') + # all text element values + elr = metatree.xpath("//text()") for el in elr: if str(el).strip(): if el not in founduris: if idutils.is_url(el) or idutils.is_urn(el): founduris.append(str(el)) - #all attribute values - alr = metatree.xpath('//@*') + # all attribute values + alr = metatree.xpath("//@*") for al in alr: if al not in founduris: if idutils.is_url(al) or idutils.is_urn(al): founduris.append(str(al)) - founduris = list(set(founduris)) - #xpath + founduris = list(set(founduris)) + # xpath # //text() # //@* except Exception as e: - print('getAllURIs XML error: '+str(e)) + print("getAllURIs XML error: " + str(e)) return founduris def parse_metadata(self): @@ -108,13 +110,13 @@ def parse_metadata(self): xml_mapping = None metatree = None envelope_metadata = {} - self.content_type = 'application/xml' + self.content_type = "application/xml" - XSI = 'http://www.w3.org/2001/XMLSchema-instance' + XSI = "http://www.w3.org/2001/XMLSchema-instance" if self.link_type == MetadataOfferingMethods.TYPED_LINKS: source_name = self.getEnumSourceNames().XML_TYPED_LINKS - #elif self.link_type == 'guessed': + # elif self.link_type == 'guessed': # source_name = self.getEnumSourceNames().XML_GUESSED elif self.link_type == MetadataOfferingMethods.CONTENT_NEGOTIATION: source_name = self.getEnumSourceNames().XML_NEGOTIATED @@ -126,67 +128,65 @@ def parse_metadata(self): requestHelper.setAuthToken(self.auth_token, self.auth_token_type) if self.pref_mime_type: requestHelper.addAcceptType(self.pref_mime_type) - #self.logger.info('FsF-F2-01M : Sending request to access metadata from -: {}'.format(self.target_url)) - neg_format, xml_response = requestHelper.content_negotiate('FsF-F2-01M') + # self.logger.info('FsF-F2-01M : Sending request to access metadata from -: {}'.format(self.target_url)) + neg_format, xml_response = requestHelper.content_negotiate("FsF-F2-01M") self.metadata_format = neg_format if requestHelper.response_content is not None: self.content_type = requestHelper.content_type - self.logger.info('FsF-F2-01M : Trying to extract/parse XML metadata from URL -: {}'.format(self.target_url)) - #dom = lxml.html.fromstring(self.landing_html.encode('utf8')) + self.logger.info("FsF-F2-01M : Trying to extract/parse XML metadata from URL -: {}".format(self.target_url)) + # dom = lxml.html.fromstring(self.landing_html.encode('utf8')) if neg_format != MetadataFormats.XML: - #if neg_source != 'xml': - self.logger.info('FsF-F2-01M : Expected XML but content negotiation responded -: ' + str(neg_format)) + # if neg_source != 'xml': + self.logger.info("FsF-F2-01M : Expected XML but content negotiation responded -: " + str(neg_format)) else: try: - parser = lxml.etree.XMLParser(strip_cdata=False,recover=True) + parser = lxml.etree.XMLParser(strip_cdata=False, recover=True) tree = lxml.etree.XML(xml_response, parser) root_element = tree.tag - if root_element.endswith('}OAI-PMH'): + if root_element.endswith("}OAI-PMH"): self.logger.info( - 'FsF-F2-01M : Found OAI-PMH type XML envelope, unpacking \'metadata\' element for further processing' + "FsF-F2-01M : Found OAI-PMH type XML envelope, unpacking 'metadata' element for further processing" ) - metatree = tree.find('.//{*}metadata/*') - elif root_element.endswith('}mets'): + metatree = tree.find(".//{*}metadata/*") + elif root_element.endswith("}mets"): self.logger.info( - 'FsF-F2-01M : Found METS type XML envelope, unpacking all \'xmlData\' elements for further processing' + "FsF-F2-01M : Found METS type XML envelope, unpacking all 'xmlData' elements for further processing" ) envelope_metadata = self.get_mapped_xml_metadata(tree, Mapper.XML_MAPPING_METS.value) - metatree = tree.find('.//{*}dmdSec/{*}mdWrap/{*}xmlData/*') - elif root_element.endswith('}GetRecordsResponse'): + metatree = tree.find(".//{*}dmdSec/{*}mdWrap/{*}xmlData/*") + elif root_element.endswith("}GetRecordsResponse"): self.logger.info( - 'FsF-F2-01M : Found OGC CSW GetRecords type XML envelope, unpacking \'SearchResults\' element for further processing' + "FsF-F2-01M : Found OGC CSW GetRecords type XML envelope, unpacking 'SearchResults' element for further processing" ) - metatree = tree.find('.//{*}SearchResults/*') - elif root_element.endswith('}GetRecordByIdResponse'): + metatree = tree.find(".//{*}SearchResults/*") + elif root_element.endswith("}GetRecordByIdResponse"): self.logger.info( - 'FsF-F2-01M : Found OGC CSW GetRecordByIdResponse type XML envelope, unpacking metadata element for further processing' + "FsF-F2-01M : Found OGC CSW GetRecordByIdResponse type XML envelope, unpacking metadata element for further processing" ) - metatree = tree.find('.//*') - elif root_element.endswith('}DIDL'): + metatree = tree.find(".//*") + elif root_element.endswith("}DIDL"): self.logger.info( - 'FsF-F2-01M : Found DIDL (MPEG21) type XML envelope, unpacking metadata element for further processing' + "FsF-F2-01M : Found DIDL (MPEG21) type XML envelope, unpacking metadata element for further processing" ) - metatree = tree.find('.//{*}Item/{*}Component/{*}Resource/*') + metatree = tree.find(".//{*}Item/{*}Component/{*}Resource/*") else: metatree = tree except Exception as e: - self.logger.info( - 'FsF-F2-01M : XML parsing failed -: '+str(e) - ) + self.logger.info("FsF-F2-01M : XML parsing failed -: " + str(e)) if metatree is not None: - #self.setURIValues(metatree) - #print(list(set(self.getURIValues()))) + # self.setURIValues(metatree) + # print(list(set(self.getURIValues()))) self.logger.info( - 'FsF-F2-01M : Found some XML properties, trying to identify (domain) specific format to parse' + "FsF-F2-01M : Found some XML properties, trying to identify (domain) specific format to parse" ) root_namespace = None - nsmatch = re.match(r'^\{(.+)\}(.+)$', metatree.tag) - schema_locations = set(metatree.xpath('//*/@xsi:schemaLocation', namespaces={'xsi': XSI})) + nsmatch = re.match(r"^\{(.+)\}(.+)$", metatree.tag) + schema_locations = set(metatree.xpath("//*/@xsi:schemaLocation", namespaces={"xsi": XSI})) for schema_location in schema_locations: - self.namespaces.extend(re.split(r'\s', re.sub(r'\s+', r' ',schema_location))) - #self.namespaces = re.split('\s', schema_location) - element_namespaces = set(metatree.xpath('//namespace::*')) + self.namespaces.extend(re.split(r"\s", re.sub(r"\s+", r" ", schema_location))) + # self.namespaces = re.split('\s', schema_location) + element_namespaces = set(metatree.xpath("//namespace::*")) for el_ns in element_namespaces: if len(el_ns) == 2: if el_ns[1] not in self.namespaces: @@ -194,50 +194,51 @@ def parse_metadata(self): if nsmatch: root_namespace = nsmatch[1] root_element = nsmatch[2] - #print('#' + root_element + '#', root_namespace) - #put the root namespace at the start f list - self.namespaces.insert(0,root_namespace) - if root_element == 'codeBook': + # print('#' + root_element + '#', root_namespace) + # put the root namespace at the start f list + self.namespaces.insert(0, root_namespace) + if root_element == "codeBook": xml_mapping = Mapper.XML_MAPPING_DDI_CODEBOOK.value - self.logger.info('FsF-F2-01M : Identified DDI codeBook XML based on root tag') - elif root_element == 'StudyUnit': + self.logger.info("FsF-F2-01M : Identified DDI codeBook XML based on root tag") + elif root_element == "StudyUnit": xml_mapping = Mapper.XML_MAPPING_DDI_STUDYUNIT.value - self.logger.info('FsF-F2-01M : Identified DDI StudyUnit XML based on root tag') - elif root_element == 'CMD': + self.logger.info("FsF-F2-01M : Identified DDI StudyUnit XML based on root tag") + elif root_element == "CMD": xml_mapping = Mapper.XML_MAPPING_CMD.value - self.logger.info('FsF-F2-01M : Identified DDI CMD XML based on root tag') - elif root_element == 'DIF': + self.logger.info("FsF-F2-01M : Identified DDI CMD XML based on root tag") + elif root_element == "DIF": xml_mapping = Mapper.XML_MAPPING_DIF.value - self.logger.info('FsF-F2-01M : Identified Directory Interchange Format (DIF) XML based on root tag') - elif root_element == 'dc' or any( - 'http://dublincore.org/schemas/xmls/' in s for s in self.namespaces): + self.logger.info( + "FsF-F2-01M : Identified Directory Interchange Format (DIF) XML based on root tag" + ) + elif root_element == "dc" or any( + "http://dublincore.org/schemas/xmls/" in s for s in self.namespaces + ): xml_mapping = Mapper.XML_MAPPING_DUBLIN_CORE.value - self.logger.info('FsF-F2-01M : Identified Dublin Core XML based on root tag or namespace') - elif root_element == 'mods': + self.logger.info("FsF-F2-01M : Identified Dublin Core XML based on root tag or namespace") + elif root_element == "mods": xml_mapping = Mapper.XML_MAPPING_MODS.value - self.logger.info('FsF-F2-01M : Identified MODS XML based on root tag') - elif root_element == 'eml': + self.logger.info("FsF-F2-01M : Identified MODS XML based on root tag") + elif root_element == "eml": xml_mapping = Mapper.XML_MAPPING_EML.value - self.logger.info('FsF-F2-01M : Identified EML XML based on root tag') - elif root_element in ['MD_Metadata', 'MI_Metadata']: + self.logger.info("FsF-F2-01M : Identified EML XML based on root tag") + elif root_element in ["MD_Metadata", "MI_Metadata"]: xml_mapping = Mapper.XML_MAPPING_GCMD_ISO.value - self.logger.info('FsF-F2-01M : Identified ISO 19115 XML based on root tag') - elif root_element == 'rss': - self.logger.info('FsF-F2-01M : Identified RSS/GEORSS XML based on root tag') + self.logger.info("FsF-F2-01M : Identified ISO 19115 XML based on root tag") + elif root_element == "rss": + self.logger.info("FsF-F2-01M : Identified RSS/GEORSS XML based on root tag") elif root_namespace: - if 'datacite.org/schema' in root_namespace: + if "datacite.org/schema" in root_namespace: xml_mapping = Mapper.XML_MAPPING_DATACITE.value - self.logger.info('FsF-F2-01M : Identified DataCite XML based on namespace') - #print('XML Details: ',(self.target_url,root_namespace, root_element)) + self.logger.info("FsF-F2-01M : Identified DataCite XML based on namespace") + # print('XML Details: ',(self.target_url,root_namespace, root_element)) linkeduris = self.getAllURIs(metatree) self.setLinkedNamespaces(linkeduris) if xml_mapping is None: - self.logger.info( - 'FsF-F2-01M : Could not identify (domain) specific XML format to parse' - ) + self.logger.info("FsF-F2-01M : Could not identify (domain) specific XML format to parse") else: self.logger.info( - 'FsF-F2-01M : Could not find XML properties, could not identify specific XML format to parse' + "FsF-F2-01M : Could not find XML properties, could not identify specific XML format to parse" ) if xml_mapping and metatree is not None: xml_metadata = self.get_mapped_xml_metadata(metatree, xml_mapping) @@ -247,18 +248,16 @@ def parse_metadata(self): if envelope_key not in xml_metadata: xml_metadata[envelope_key] = envelope_values - #delete empty properties + # delete empty properties if xml_metadata: xml_metadata = {k: v for k, v in xml_metadata.items() if v} if xml_metadata: if requestHelper.checked_content_hash: - requestHelper.checked_content.get(requestHelper.checked_content_hash)['checked'] = True - self.logger.info( - 'FsF-F2-01M : Found some metadata in XML -: '+(str(xml_metadata.keys())) - ) + requestHelper.checked_content.get(requestHelper.checked_content_hash)["checked"] = True + self.logger.info("FsF-F2-01M : Found some metadata in XML -: " + (str(xml_metadata.keys()))) else: - self.logger.info('FsF-F2-01M : Could not identify metadata properties in XML') + self.logger.info("FsF-F2-01M : Could not identify metadata properties in XML") return source_name, xml_metadata def get_mapped_xml_metadata(self, tree, mapping): @@ -278,77 +277,77 @@ def get_mapped_xml_metadata(self, tree, mapping): a dictionary of mapped XML metadata """ res = dict() - #make sure related_resources are not listed in the mapping dict instead related_resource_Reltype has to be used - res['related_resources'] = [] + # make sure related_resources are not listed in the mapping dict instead related_resource_Reltype has to be used + res["related_resources"] = [] for prop in mapping: res[prop] = [] - if isinstance(mapping.get(prop).get('path'), list): - pathlist = mapping.get(prop).get('path') + if isinstance(mapping.get(prop).get("path"), list): + pathlist = mapping.get(prop).get("path") else: - pathlist = [mapping.get(prop).get('path')] + pathlist = [mapping.get(prop).get("path")] propcontent = [] for mappath in pathlist: - pathdef = mappath.split('@@') + pathdef = mappath.split("@@") attribute = None if len(pathdef) > 1: attribute = pathdef[1] - if ':' in attribute: - if attribute.split(':')[0] == 'xlink': - attribute = '{http://www.w3.org/1999/xlink}' + attribute.split(':')[1] - elif attribute.split(':')[0] == 'xml': - attribute = '{http://www.w3.org/XML/1998/namespace}' + attribute.split(':')[1] + if ":" in attribute: + if attribute.split(":")[0] == "xlink": + attribute = "{http://www.w3.org/1999/xlink}" + attribute.split(":")[1] + elif attribute.split(":")[0] == "xml": + attribute = "{http://www.w3.org/XML/1998/namespace}" + attribute.split(":")[1] try: subtrees = tree.findall(pathdef[0]) except Exception as e: - print('XML XPATH error ',str(e)) + print("XML XPATH error ", str(e)) for subtree in subtrees: - propcontent.append({'tree': subtree, 'attribute': attribute}) + propcontent.append({"tree": subtree, "attribute": attribute}) # propcontent.extend({'tree':tree.findall(pathdef[0]),'attribute':attribute}) if isinstance(propcontent, list): if len(propcontent) == 1: - if propcontent[0].get('attribute'): - res[prop] = propcontent[0].get('tree').attrib.get(propcontent[0].get('attribute')) - elif len(propcontent[0].get('tree')) == 0: - res[prop] = propcontent[0].get('tree').text + if propcontent[0].get("attribute"): + res[prop] = propcontent[0].get("tree").attrib.get(propcontent[0].get("attribute")) + elif len(propcontent[0].get("tree")) == 0: + res[prop] = propcontent[0].get("tree").text else: - res[prop] = lxml.etree.tostring(propcontent[0].get('tree'), method='text', encoding='unicode') - res[prop] = re.sub(r'\s+', ' ', res[prop]) + res[prop] = lxml.etree.tostring(propcontent[0].get("tree"), method="text", encoding="unicode") + res[prop] = re.sub(r"\s+", " ", res[prop]) res[prop] = res[prop].strip() else: for propelem in propcontent: - if propelem.get('attribute'): - res[prop].append(propelem.get('tree').attrib.get(propelem.get('attribute'))) - elif len(propelem.get('tree')) == 0: - res[prop].append(propelem.get('tree').text) + if propelem.get("attribute"): + res[prop].append(propelem.get("tree").attrib.get(propelem.get("attribute"))) + elif len(propelem.get("tree")) == 0: + res[prop].append(propelem.get("tree").text) else: - resprop = lxml.etree.tostring(propelem.get('tree'), method='text', encoding='unicode') - resprop = re.sub(r'\s+', ' ', resprop) + resprop = lxml.etree.tostring(propelem.get("tree"), method="text", encoding="unicode") + resprop = re.sub(r"\s+", " ", resprop) resprop = resprop.strip() res[prop].append(resprop) - #related resources + # related resources for kres, vres in res.items(): if vres: - if kres.startswith('related_resource') and 'related_resource_type' not in kres: + if kres.startswith("related_resource") and "related_resource_type" not in kres: if isinstance(vres, str): vres = [vres] reltype = kres[17:] if not reltype: - reltype = 'related' + reltype = "related" ri = 0 for relres in vres: if relres: - if res.get('related_resource_type'): - if ri < len(res['related_resource_type']): - reltype = res['related_resource_type'][ri] - relres = re.sub(r'[\n\t]*', '', str(relres)).strip() + if res.get("related_resource_type"): + if ri < len(res["related_resource_type"]): + reltype = res["related_resource_type"][ri] + relres = re.sub(r"[\n\t]*", "", str(relres)).strip() if relres and reltype: - res['related_resources'].append({'related_resource': relres, 'resource_type': reltype}) + res["related_resources"].append({"related_resource": relres, "resource_type": reltype}) ri += 1 - #object_content_identifiers - ''' + # object_content_identifiers + """ # The code below would theoretically also consider information which does not include a content identifier but only sie or type of content res['object_content_identifier'] = [] if res.get('object_content_identifier_url'): @@ -384,30 +383,28 @@ def get_mapped_xml_metadata(self, tree, mapping): res.pop('object_content_identifier_type', None) res.pop('object_content_identifier_size', None) res.pop('object_content_identifier_url', None) - ''' - if res.get('object_content_identifier_url'): - res['object_content_identifier'] = [] - if not isinstance(res['object_content_identifier_url'], list): - res['object_content_identifier_url'] = [res['object_content_identifier_url']] + """ + if res.get("object_content_identifier_url"): + res["object_content_identifier"] = [] + if not isinstance(res["object_content_identifier_url"], list): + res["object_content_identifier_url"] = [res["object_content_identifier_url"]] ci = 0 - for content_url in res['object_content_identifier_url']: + for content_url in res["object_content_identifier_url"]: content_size = None content_type = None - if res.get('object_content_identifier_size'): - if ci < len(res['object_content_identifier_size']): - content_size = res['object_content_identifier_size'][ci] - if res.get('object_content_identifier_type'): - if ci < len(res['object_content_identifier_type']): - content_type = res['object_content_identifier_type'][ci] - res['object_content_identifier'].append({ - 'url': content_url, - 'size': content_size, - 'type': content_type - }) + if res.get("object_content_identifier_size"): + if ci < len(res["object_content_identifier_size"]): + content_size = res["object_content_identifier_size"][ci] + if res.get("object_content_identifier_type"): + if ci < len(res["object_content_identifier_type"]): + content_type = res["object_content_identifier_type"][ci] + res["object_content_identifier"].append( + {"url": content_url, "size": content_size, "type": content_type} + ) ci += 1 - res.pop('object_content_identifier_type', None) - res.pop('object_content_identifier_size', None) - res.pop('object_content_identifier_url', None) - #print(self.removew(res)) - #print(res) + res.pop("object_content_identifier_type", None) + res.pop("object_content_identifier_size", None) + res.pop("object_content_identifier_url", None) + # print(self.removew(res)) + # print(res) return res diff --git a/fuji_server/helper/metadata_mapper.py b/fuji_server/helper/metadata_mapper.py index 903f53c7..e755c7fa 100644 --- a/fuji_server/helper/metadata_mapper.py +++ b/fuji_server/helper/metadata_mapper.py @@ -33,7 +33,7 @@ def flip_dict(dict_to_flip): for dval in dvalue: if isinstance(dval, tuple): try: - flipped_dict[dval[0]] = (dkey,dval[1]) + flipped_dict[dval[0]] = (dkey, dval[1]) except: pass else: @@ -48,219 +48,248 @@ def flip_dict(dict_to_flip): """ ## ============================ CONFIGURATIONS ============================ ## - - #CMMI capability maturity levels - MATURITY_LEVELS = {0: 'incomplete', 1: 'initial', 2: 'moderate', 3: 'advanced'} + # CMMI capability maturity levels + MATURITY_LEVELS = {0: "incomplete", 1: "initial", 2: "moderate", 3: "advanced"} # reference metadata elements (used by FUJI) - #['creator','license','related_resources'] --> list type + # ['creator','license','related_resources'] --> list type # datacite_client --> retrieve re3data records # TODO include data types of all reference elements REFERENCE_METADATA_LIST = { - 'object_identifier':{'label':'Object Identifier','sameAs':'http://purl.org/dc/terms/identifier'}, - 'creator':{'label':'Creator','sameAs':'http://purl.org/dc/terms/creator'}, - 'title':{'label':'Title','sameAs':'http://purl.org/dc/terms/title'}, - 'publisher':{'label':'Publisher','sameAs':'http://purl.org/dc/terms/publisher'}, - 'publication_date':{'label':'Publication Date','sameAs':'http://purl.org/dc/terms/date'}, - 'summary':{'label':'Summary','sameAs':'http://purl.org/dc/terms/abstract'}, - 'keywords':{'label':'Keywords','sameAs':'http://purl.org/dc/terms/subject'}, - 'object_content_identifier':{'label':'Content (Data) Identifier','sameAs':'https://schema.org/contentUrl'}, - 'access_level':{'label':'Access Level','sameAs':'http://purl.org/dc/terms/accessRights'}, - 'access_free':{'label':'Free Access','sameAs':'https://schema.org/isAccessibleForFree'}, - 'related_resources':{'label':'Related resources','sameAs':'http://purl.org/dc/terms/related'}, - 'provenance_general':{'label':'Provenance','sameAs':'http://purl.org/dc/terms/provenance'}, - 'measured_variable':{'label':'Measured Variable','sameAs':'https://schema.org/variableMeasured'}, - 'contributor':{'label':'Contributor','sameAs':'http://purl.org/dc/terms/contributor'}, - 'license':{'label':'License','sameAs':'http://purl.org/dc/terms/license'}, + "object_identifier": {"label": "Object Identifier", "sameAs": "http://purl.org/dc/terms/identifier"}, + "creator": {"label": "Creator", "sameAs": "http://purl.org/dc/terms/creator"}, + "title": {"label": "Title", "sameAs": "http://purl.org/dc/terms/title"}, + "publisher": {"label": "Publisher", "sameAs": "http://purl.org/dc/terms/publisher"}, + "publication_date": {"label": "Publication Date", "sameAs": "http://purl.org/dc/terms/date"}, + "summary": {"label": "Summary", "sameAs": "http://purl.org/dc/terms/abstract"}, + "keywords": {"label": "Keywords", "sameAs": "http://purl.org/dc/terms/subject"}, + "object_content_identifier": {"label": "Content (Data) Identifier", "sameAs": "https://schema.org/contentUrl"}, + "access_level": {"label": "Access Level", "sameAs": "http://purl.org/dc/terms/accessRights"}, + "access_free": {"label": "Free Access", "sameAs": "https://schema.org/isAccessibleForFree"}, + "related_resources": {"label": "Related resources", "sameAs": "http://purl.org/dc/terms/related"}, + "provenance_general": {"label": "Provenance", "sameAs": "http://purl.org/dc/terms/provenance"}, + "measured_variable": {"label": "Measured Variable", "sameAs": "https://schema.org/variableMeasured"}, + "contributor": {"label": "Contributor", "sameAs": "http://purl.org/dc/terms/contributor"}, + "license": {"label": "License", "sameAs": "http://purl.org/dc/terms/license"}, #'file_format_only':{'label':'File Format','sameAs':'http://purl.org/dc/terms/format'}, - 'object_type':{'label':'Object Type','sameAs':'http://purl.org/dc/terms/type'}, - 'datacite_client':{'label':'DataCite Client ID','sameAs':None}, - 'modified_date':{'label':'Date Modified','sameAs':'http://purl.org/dc/terms/modified'}, - 'created_date':{'label':'Date Created','sameAs':'http://purl.org/dc/terms/created'}, - 'right_holder':{'label':'License','sameAs':'http://purl.org/dc/terms/rightsHolder'}, - 'object_size':{'label':'Object Size','sameAs':'http://purl.org/dc/terms/extent'}, - 'language':{'label':'Language','sameAs':'http://purl.org/dc/terms/language'} + "object_type": {"label": "Object Type", "sameAs": "http://purl.org/dc/terms/type"}, + "datacite_client": {"label": "DataCite Client ID", "sameAs": None}, + "modified_date": {"label": "Date Modified", "sameAs": "http://purl.org/dc/terms/modified"}, + "created_date": {"label": "Date Created", "sameAs": "http://purl.org/dc/terms/created"}, + "right_holder": {"label": "License", "sameAs": "http://purl.org/dc/terms/rightsHolder"}, + "object_size": {"label": "Object Size", "sameAs": "http://purl.org/dc/terms/extent"}, + "language": {"label": "Language", "sameAs": "http://purl.org/dc/terms/language"}, } # core metadata elements (FsF-F2-01M) REQUIRED_CORE_METADATA = [ - 'creator', 'title', 'publisher', 'publication_date', 'summary', 'keywords', 'object_identifier', 'object_type' + "creator", + "title", + "publisher", + "publication_date", + "summary", + "keywords", + "object_identifier", + "object_type", ] ## ============================ METADATA MAPPINGS ============================ ## - #https://www.dublincore.org/webinars/2015/openaire_guidelines_promoting_repositories_interoperability_and_supporting_open_access_funder_mandates/slides.pdf + # https://www.dublincore.org/webinars/2015/openaire_guidelines_promoting_repositories_interoperability_and_supporting_open_access_funder_mandates/slides.pdf ACCESS_RIGHT_CODES = { - 'c_abf2': 'public', - 'c_f1cf': 'embargoed', - 'c_16ec': 'restricted', - 'c_14cb': 'metadataonly', - 'OpenAccess': 'public', - 'ClosedAccess': 'closed', - 'RestrictedAccess': 'restricted', - 'NON_PUBLIC': 'restricted', - 'OP_DATPRO': 'embargoed', - 'PUBLIC': 'public', - 'RESTRICTED': 'restricted', - 'SENSITIVE': 'restricted', - 'embargoedAccess': 'embargoed' + "c_abf2": "public", + "c_f1cf": "embargoed", + "c_16ec": "restricted", + "c_14cb": "metadataonly", + "OpenAccess": "public", + "ClosedAccess": "closed", + "RestrictedAccess": "restricted", + "NON_PUBLIC": "restricted", + "OP_DATPRO": "embargoed", + "PUBLIC": "public", + "RESTRICTED": "restricted", + "SENSITIVE": "restricted", + "embargoedAccess": "embargoed", } - #https://en.wikipedia.org/wiki/List_of_archive_formats#cite_ref-MIME_type_2-3 + # https://en.wikipedia.org/wiki/List_of_archive_formats#cite_ref-MIME_type_2-3 # only consider mime types registered with IANA: https://www.iana.org/assignments/media-types/media-types.xhtml ARCHIVE_COMPRESS_MIMETYPES = [ - 'application/gzip', 'application/zstd', 'application/octet-stream', 'application/vnd.ms-cab-compressed', - 'application/zip', 'application/x-gzip','application/x-zip-compressed' + "application/gzip", + "application/zstd", + "application/octet-stream", + "application/vnd.ms-cab-compressed", + "application/zip", + "application/x-gzip", + "application/x-zip-compressed", ] HIGHWIRE_MAPPING = { - 'object_identifier': ['citation_arxiv_id','citation_pmid','citation_doi','citation_id'], - 'creator': ['citation_author','citation_authors'], - 'title': 'citation_title', - 'publisher': 'citation_publisher', - 'publication_date': ['citation_date', 'citation_publication_date'], - 'summary': ['citation_abstract_html_url'], - 'keywords': 'citation_keywords', - 'related_resources': [ - 'citation_reference', 'citation_collection_id' + "object_identifier": ["citation_arxiv_id", "citation_pmid", "citation_doi", "citation_id"], + "creator": ["citation_author", "citation_authors"], + "title": "citation_title", + "publisher": "citation_publisher", + "publication_date": ["citation_date", "citation_publication_date"], + "summary": ["citation_abstract_html_url"], + "keywords": "citation_keywords", + "related_resources": ["citation_reference", "citation_collection_id"], + "object_type": [ + ("citation_inbook_title", "Book"), + ("citation_conference_title", "ScholarlyArticle"), + ("citation_dissertation_institution", "Thesis"), + ("citation_dissertation_name", "Thesis"), + ("citation_journal_abbrev", "ScholarlyArticle"), + ("citation_technical_report_institution", "TechArticle"), + ("citation_technical_report_number", "TechArticle"), + ("citation_patent_country", "Patent"), ], - 'object_type': [('citation_inbook_title','Book'), - ('citation_conference_title','ScholarlyArticle'), - ('citation_dissertation_institution', 'Thesis'), - ('citation_dissertation_name', 'Thesis'), - ('citation_journal_abbrev','ScholarlyArticle'), - ('citation_technical_report_institution','TechArticle'), - ('citation_technical_report_number','TechArticle'), - ('citation_patent_country','Patent')], - 'language': 'citation_language' + "language": "citation_language", } EPRINTS_MAPPING = { - 'object_identifier': ['id_number','official_url'], - 'creator': 'creators_name', - 'title': 'title', - 'publication_date': ['date', 'datestamp'], - 'object_type': 'type', - 'publisher': 'publisher', - 'summary' :'abstract' + "object_identifier": ["id_number", "official_url"], + "creator": "creators_name", + "title": "title", + "publication_date": ["date", "datestamp"], + "object_type": "type", + "publisher": "publisher", + "summary": "abstract", } - # https://www.dublincore.org/specifications/dublin-core/dcmi-terms/ # dc: rights, dcterm: accessRights, rightsHolder? # license: Recommended practice is to identify the license document with a URI. If this is not possible or feasible, a literal value that identifies the license may be provided. DC_MAPPING = { - 'object_identifier' : 'identifier', - 'creator' : 'creator', - 'title' : 'title', - 'contributor' : 'contributor', - 'publisher' : 'publisher', - 'publication_date' : ['date', 'available', 'issued'], - 'summary' : ['abstract', 'description'], - 'keywords' : 'subject', - 'object_type' : 'type', - 'object_size' :'exent', - 'modified_date' : 'modified', - 'created_date' : 'created', - 'license' : 'license', + "object_identifier": "identifier", + "creator": "creator", + "title": "title", + "contributor": "contributor", + "publisher": "publisher", + "publication_date": ["date", "available", "issued"], + "summary": ["abstract", "description"], + "keywords": "subject", + "object_type": "type", + "object_size": "exent", + "modified_date": "modified", + "created_date": "created", + "license": "license", #'file_format_only' : 'format', - 'access_level': ['rights', 'accessRights'], - 'right_holder' : 'rightsHolder', - 'date_available' : 'available', - 'provenance_general' : 'provenance', - 'related_resources': [ - 'relation', 'source', 'references', 'hasVersion', 'isReferencedBy', 'isVersionOf', 'hasVersion', 'replaces', - 'requires', 'conformsTo', 'hasFormat', 'hasPart', 'isPartOf', 'isReplacedBy', 'isRequiredBy' + "access_level": ["rights", "accessRights"], + "right_holder": "rightsHolder", + "date_available": "available", + "provenance_general": "provenance", + "related_resources": [ + "relation", + "source", + "references", + "hasVersion", + "isReferencedBy", + "isVersionOf", + "hasVersion", + "replaces", + "requires", + "conformsTo", + "hasFormat", + "hasPart", + "isPartOf", + "isReplacedBy", + "isRequiredBy", ], - 'language' : 'language' + "language": "language", } # https://ogp.me/ # og:url ->The canonical URL of your object that will be used as its permanent ID in the graph (assume this is fuji:object_indentifier) OG_MAPPING = { - 'title': 'og:title', - 'object_identifier': 'og:url', - 'summary': 'og:description', - 'object_type': 'og:type', - 'publisher': 'og:site_name', - 'language':'og:locale' + "title": "og:title", + "object_identifier": "og:url", + "summary": "og:description", + "object_type": "og:type", + "publisher": "og:site_name", + "language": "og:locale", } # Schema.org # conditionsOfAccess, usageInfo?, isAccessibleForFree ## A license document that applies to this content, typically indicated by URL. - SCHEMAORG_MAPPING = '{title: name[*]."@value" || name || headline[*]."@value" || headline, object_type: "@type", '\ - 'publication_date: datePublished."@value" || datePublished || dateCreated, '\ - 'modified_date: dateModified."@value" ||dateModified, ' \ - 'creator: creator[?"@type" ==\'Person\'].name || creator[?"@type" ==\'Organization\'].name || author[*].name || creator[*].name || creator.name || author.name, ' \ - 'creator_first: creator[*].givenName || author[*].givenName || creator.givenName || author.givenName,' \ - 'creator_last: creator[*].familyName || author[*].familyName || creator.familyName || author.familyName,' \ - 'contributor: contributor[*].name || contributor[*].familyName, ' \ - 'right_holder: copyrightHolder[*].name || copyrightHolder[*].familyName, ' \ - 'publisher: publisher.name || provider.name || publisher || provider, ' \ - 'license: license."@id" || license[?"@type" ==\'CreativeWork\'].id || license[?"@type" ==\'CreativeWork\'].url || license[?"@type" ==\'CreativeWork\'].name || license, ' \ - 'summary: description, keywords: keywords, ' \ - 'object_identifier: [((identifier.value || identifier[*].value || identifier || "@id") || (url || url."@id")) , ' \ - '(sameAs."@id" || sameAs[0]."@id" || sameAs.url || sameAs[0].url || sameAs)][], ' \ - 'access_level: conditionsOfAccess, ' \ - 'access_free: (isAccessibleForFree || free), ' \ - 'measured_variable: variableMeasured[*].name || variableMeasured , object_size: size,' \ - 'related_resources: [{related_resource: (isPartOf."@id" || isPartOf[0]."@id" || isPartOf.url || isPartOf[0].url || isPartOf), relation_type: \'isPartOf\'}, ' \ - '{related_resource: (sameAs."@id" || sameAs[0]."@id" || sameAs.url || sameAs[0].url || sameAs), relation_type: \'sameAs\'},' \ - '{related_resource: (includedInDataCatalog."@id" || includedInDataCatalog[0]."@id" || includedInDataCatalog.url || includedInDataCatalog[0].url || includedInDataCatalog.name || includedInDataCatalog[0].name || includedInDataCatalog), relation_type: \'isPartOf\'}, ' \ - '{related_resource: (subjectOf."@id" || subjectOf[0]."@id" || subjectOf.url ||subjectOf[0].url || subjectOf.name || subjectOf[0].name || subjectOf), relation_type: \'isReferencedBy\'},' \ - '{related_resource: (isBasedOn."@id" || isBasedOn[0]."@id" || isBasedOn.url || isBasedOn[0].url || isBasedOn) , relation_type: \'isBasedOn\'} , ' \ - '{related_resource: "@reverse".isBasedOn[0]."@id" || "@reverse".isBasedOn."@id" || "@reverse".isBasedOn[0].url || isBasedOn , relation_type: \'isBasisFor\'} ], ' \ - 'object_content_identifier: (distribution[*].{url: contentUrl, type: (encodingFormat || fileFormat), size: (contentSize || fileSize), profile: schemaVersion} || [distribution.{url: contentUrl, type: (encodingFormat || fileFormat), size: (contentSize || fileSize), profile: schemaVersion}])' \ - 'language: inLanguage.name || inLanguage.alternateName || inLanguage}' + SCHEMAORG_MAPPING = ( + '{title: name[*]."@value" || name || headline[*]."@value" || headline, object_type: "@type", ' + 'publication_date: datePublished."@value" || datePublished || dateCreated, ' + 'modified_date: dateModified."@value" ||dateModified, ' + "creator: creator[?\"@type\" =='Person'].name || creator[?\"@type\" =='Organization'].name || author[*].name || creator[*].name || creator.name || author.name, " + "creator_first: creator[*].givenName || author[*].givenName || creator.givenName || author.givenName," + "creator_last: creator[*].familyName || author[*].familyName || creator.familyName || author.familyName," + "contributor: contributor[*].name || contributor[*].familyName, " + "right_holder: copyrightHolder[*].name || copyrightHolder[*].familyName, " + "publisher: publisher.name || provider.name || publisher || provider, " + 'license: license."@id" || license[?"@type" ==\'CreativeWork\'].id || license[?"@type" ==\'CreativeWork\'].url || license[?"@type" ==\'CreativeWork\'].name || license, ' + "summary: description, keywords: keywords, " + 'object_identifier: [((identifier.value || identifier[*].value || identifier || "@id") || (url || url."@id")) , ' + '(sameAs."@id" || sameAs[0]."@id" || sameAs.url || sameAs[0].url || sameAs)][], ' + "access_level: conditionsOfAccess, " + "access_free: (isAccessibleForFree || free), " + "measured_variable: variableMeasured[*].name || variableMeasured , object_size: size," + 'related_resources: [{related_resource: (isPartOf."@id" || isPartOf[0]."@id" || isPartOf.url || isPartOf[0].url || isPartOf), relation_type: \'isPartOf\'}, ' + '{related_resource: (sameAs."@id" || sameAs[0]."@id" || sameAs.url || sameAs[0].url || sameAs), relation_type: \'sameAs\'},' + '{related_resource: (includedInDataCatalog."@id" || includedInDataCatalog[0]."@id" || includedInDataCatalog.url || includedInDataCatalog[0].url || includedInDataCatalog.name || includedInDataCatalog[0].name || includedInDataCatalog), relation_type: \'isPartOf\'}, ' + '{related_resource: (subjectOf."@id" || subjectOf[0]."@id" || subjectOf.url ||subjectOf[0].url || subjectOf.name || subjectOf[0].name || subjectOf), relation_type: \'isReferencedBy\'},' + '{related_resource: (isBasedOn."@id" || isBasedOn[0]."@id" || isBasedOn.url || isBasedOn[0].url || isBasedOn) , relation_type: \'isBasedOn\'} , ' + '{related_resource: "@reverse".isBasedOn[0]."@id" || "@reverse".isBasedOn."@id" || "@reverse".isBasedOn[0].url || isBasedOn , relation_type: \'isBasisFor\'} ], ' + "object_content_identifier: (distribution[*].{url: contentUrl, type: (encodingFormat || fileFormat), size: (contentSize || fileSize), profile: schemaVersion} || [distribution.{url: contentUrl, type: (encodingFormat || fileFormat), size: (contentSize || fileSize), profile: schemaVersion}])" + "language: inLanguage.name || inLanguage.alternateName || inLanguage}" + ) # 'related_resources: [{related_resource: isPartOf, relation_type: \'isPartOf\'}, {related_resource: isBasedOn, relation_type: \'isBasedOn\'}], ' \ - #TODO: more real life examples are needed to provide a valid mapping for microdata - MICRODATA_MAPPING = '{object_type: type, title: properties.name, summary: properties.description, publication_date: properties.datePublished, ' \ - 'publisher: (properties.publisher.properties.name || properties.publisher),' \ - 'creator: (properties.creator.properties.name || properties.author.properties.name)' \ - '}' + # TODO: more real life examples are needed to provide a valid mapping for microdata + MICRODATA_MAPPING = ( + "{object_type: type, title: properties.name, summary: properties.description, publication_date: properties.datePublished, " + "publisher: (properties.publisher.properties.name || properties.publisher)," + "creator: (properties.creator.properties.name || properties.author.properties.name)" + "}" + ) # - DATACITE_JSON_MAPPING = '{object_identifier: id, object_type: types.resourceTypeGeneral, ' \ - 'creator: creators[*].name, creator_first: creators[*].givenName,' \ - 'creator_last: creators[*].familyName, publisher: publisher, ' \ - 'contributor: contributors[*].name || contributors[*].familyName, '\ - 'right_holder: contributors[?contributorType == \'RightsHolder\'], '\ - 'title: titles[0].title, keywords: subjects[*].subject, publication_date: dates[?dateType ==\'Available\'].date || publicationYear,' \ - 'license: rightsList[*].rightsUri || rightsList[*].rights ,' \ - 'summary: descriptions[?descriptionType == \'Abstract\'].description || descriptions[0].description, ' \ - 'related_resources: ( relatedIdentifiers[*].{related_resource: relatedIdentifier, relation_type:relationType, scheme_uri: schemeUri}), ' \ - 'datacite_client: clientId, ' \ - 'modified_date: dates[?dateType == \'Updated\'].date,' \ - 'created_date: dates[?dateType == \'Created\'].date,' \ - 'accepted_date: dates[?dateType == \'Accepted\'].date,' \ - 'submitted_date: dates[?dateType == \'Submitted\'].date,' \ - 'object_content_identifier: {url: contentUrl} , ' \ - 'access_level: rightsList[*].rightsUri || rightsList[*].rights, ' \ - 'language: language }' + DATACITE_JSON_MAPPING = ( + "{object_identifier: id, object_type: types.resourceTypeGeneral, " + "creator: creators[*].name, creator_first: creators[*].givenName," + "creator_last: creators[*].familyName, publisher: publisher, " + "contributor: contributors[*].name || contributors[*].familyName, " + "right_holder: contributors[?contributorType == 'RightsHolder'], " + "title: titles[0].title, keywords: subjects[*].subject, publication_date: dates[?dateType =='Available'].date || publicationYear," + "license: rightsList[*].rightsUri || rightsList[*].rights ," + "summary: descriptions[?descriptionType == 'Abstract'].description || descriptions[0].description, " + "related_resources: ( relatedIdentifiers[*].{related_resource: relatedIdentifier, relation_type:relationType, scheme_uri: schemeUri}), " + "datacite_client: clientId, " + "modified_date: dates[?dateType == 'Updated'].date," + "created_date: dates[?dateType == 'Created'].date," + "accepted_date: dates[?dateType == 'Accepted'].date," + "submitted_date: dates[?dateType == 'Submitted'].date," + "object_content_identifier: {url: contentUrl} , " + "access_level: rightsList[*].rightsUri || rightsList[*].rights, " + "language: language }" + ) #'related_resources: relatedIdentifiers[*].[relatedIdentifier,relationType]}' PROVENANCE_MAPPING = { - 'contributor': 'prov:wasAttributedTo', - 'creator': 'prov:wasAttributedTo', - 'publisher': 'prov:wasAttributedTo', - 'right_holder': 'prov:wasAttributedTo', - 'created_date': 'prov:generatedAtTime', - 'publication_date': 'prov:generatedAtTime', - 'accepted_date': 'prov:generatedAtTime', - 'submitted_date': 'prov:generatedAtTime', - 'modified_date': 'prov:generatedAtTime', - 'hasFormat': 'prov:alternateOf', - 'isFormatOf': 'prov:alternateOf', - 'isVersionOf': 'prov:wasRevisionOf', - 'isNewVersionOf': 'prov:wasRevisionOf', - 'isReferencedBy': 'prov:hadDerivation', - 'isReplacedBy': 'prov:wasRevisionOf', - 'References': 'prov:wasDerivedFrom', - 'IsDerivedFrom': 'prov:wasDerivedFrom', - 'isBasedOn': 'prov:hadPrimarySource', - 'hasVersion': 'prov:hadRevision', - 'Obsoletes': 'prov:wasRevisionOf', - 'Replaces': 'prov:wasDerivedFrom' + "contributor": "prov:wasAttributedTo", + "creator": "prov:wasAttributedTo", + "publisher": "prov:wasAttributedTo", + "right_holder": "prov:wasAttributedTo", + "created_date": "prov:generatedAtTime", + "publication_date": "prov:generatedAtTime", + "accepted_date": "prov:generatedAtTime", + "submitted_date": "prov:generatedAtTime", + "modified_date": "prov:generatedAtTime", + "hasFormat": "prov:alternateOf", + "isFormatOf": "prov:alternateOf", + "isVersionOf": "prov:wasRevisionOf", + "isNewVersionOf": "prov:wasRevisionOf", + "isReferencedBy": "prov:hadDerivation", + "isReplacedBy": "prov:wasRevisionOf", + "References": "prov:wasDerivedFrom", + "IsDerivedFrom": "prov:wasDerivedFrom", + "isBasedOn": "prov:hadPrimarySource", + "hasVersion": "prov:hadRevision", + "Obsoletes": "prov:wasRevisionOf", + "Replaces": "prov:wasDerivedFrom", } GENERIC_SPARQL = """ @@ -289,8 +318,8 @@ def flip_dict(dict_to_flip): OPTIONAL {?dataset dct:replaces ?replaces} OPTIONAL {?dataset dct:hasPart ?hasPart} OPTIONAL {?dataset dct:requires ?requires} - OPTIONAL {?dataset dct:isRequiredBy ?isRequiredBy} - OPTIONAL {?dataset dct:language|dc:language|sdo:inLanguage ?language} + OPTIONAL {?dataset dct:isRequiredBy ?isRequiredBy} + OPTIONAL {?dataset dct:language|dc:language|sdo:inLanguage ?language} }LIMIT 1 """ @@ -300,231 +329,128 @@ def flip_dict(dict_to_flip): # attributes: must be indicated like this: tag@@attribute XML_MAPPING_DUBLIN_CORE = { - 'title': { - 'path': './{*}title' - }, - 'creator': { - 'path': './{*}creator' - }, - 'contributor': { - 'path': './{*}contributor' - }, - 'keywords': { - 'path': './{*}subject' - }, - 'summary': { - 'path': './{*}description' - }, - 'publisher': { - 'path': './{*}publisher' - }, - 'keywords': { - 'path': './{*}subject' - }, - 'publication_date': { - 'path': ['./{*}date', './{*}available', './{*}issued'] - }, - 'created_date': { - 'path': './{*}created' - }, - 'object_identifier': { - 'path': './{*}identifier' - }, - 'related_resource': { - 'path': [ - './{*}related', './{*}source', './{*}references', './{*}hasVersion', './{*}isReferencedBy', - './{*}isVersionOf', './{*}hasVersion', './{*}replaces', './{*}requires', './{*}conformsTo', - './{*}hasFormat', './{*}hasPart', './{*}isPartOf', './{*}isReplacedBy', './{*}isRequiredBy' + "title": {"path": "./{*}title"}, + "creator": {"path": "./{*}creator"}, + "contributor": {"path": "./{*}contributor"}, + "keywords": {"path": "./{*}subject"}, + "summary": {"path": "./{*}description"}, + "publisher": {"path": "./{*}publisher"}, + "keywords": {"path": "./{*}subject"}, + "publication_date": {"path": ["./{*}date", "./{*}available", "./{*}issued"]}, + "created_date": {"path": "./{*}created"}, + "object_identifier": {"path": "./{*}identifier"}, + "related_resource": { + "path": [ + "./{*}related", + "./{*}source", + "./{*}references", + "./{*}hasVersion", + "./{*}isReferencedBy", + "./{*}isVersionOf", + "./{*}hasVersion", + "./{*}replaces", + "./{*}requires", + "./{*}conformsTo", + "./{*}hasFormat", + "./{*}hasPart", + "./{*}isPartOf", + "./{*}isReplacedBy", + "./{*}isRequiredBy", ] }, - 'license': { - 'path': './{*}license' - }, - 'access_level': { - 'path': ['./{*}rights', './{*}accessRights'] - }, - 'object_type': { - 'path': './{*}type' - }, - 'provenance_general': { - 'path': './{*}provenance' - }, - 'language': { - 'path': './{*}language' - }, - + "license": {"path": "./{*}license"}, + "access_level": {"path": ["./{*}rights", "./{*}accessRights"]}, + "object_type": {"path": "./{*}type"}, + "provenance_general": {"path": "./{*}provenance"}, + "language": {"path": "./{*}language"}, } XML_MAPPING_DATACITE = { - 'title': { - 'path': './{*}titles/{*}title' - }, - 'creator': { - 'path': './{*}creators/{*}creator/{*}creatorName' - }, - 'contributor': { - 'path': './{*}contributors/{*}contributorName' - }, - 'publication_date': { - 'path': './{*}publicationYear' - }, - 'keywords': { - 'path': './{*}subjects/{*}subject' - }, - 'object_identifier': { - 'path': './{*}identifier' - }, - 'publisher': { - 'path': './{*}publisher' - }, - 'summary': { - 'path': './{*}descriptions/{*}description' - }, - 'object_type': { - 'path': './{*}resourceType@@resourceTypeGeneral' - }, - 'related_resource': { - 'path': './{*}relatedIdentifiers/{*}relatedIdentifier' - }, - 'related_resource_type': { - 'path': './{*}relatedIdentifiers/{*}relatedIdentifier@@relationType' - }, - 'license': { - 'path': ['./{*}rightsList/{*}rights', './{*}rightsList/{*}rights@@rightsURI'] - }, - 'access_level': { - 'path': ['./{*}rightsList/{*}rights', './{*}rightsList/{*}rights@@rightsURI'] - }, - 'language': { - 'path': './{*}language' - } + "title": {"path": "./{*}titles/{*}title"}, + "creator": {"path": "./{*}creators/{*}creator/{*}creatorName"}, + "contributor": {"path": "./{*}contributors/{*}contributorName"}, + "publication_date": {"path": "./{*}publicationYear"}, + "keywords": {"path": "./{*}subjects/{*}subject"}, + "object_identifier": {"path": "./{*}identifier"}, + "publisher": {"path": "./{*}publisher"}, + "summary": {"path": "./{*}descriptions/{*}description"}, + "object_type": {"path": "./{*}resourceType@@resourceTypeGeneral"}, + "related_resource": {"path": "./{*}relatedIdentifiers/{*}relatedIdentifier"}, + "related_resource_type": {"path": "./{*}relatedIdentifiers/{*}relatedIdentifier@@relationType"}, + "license": {"path": ["./{*}rightsList/{*}rights", "./{*}rightsList/{*}rights@@rightsURI"]}, + "access_level": {"path": ["./{*}rightsList/{*}rights", "./{*}rightsList/{*}rights@@rightsURI"]}, + "language": {"path": "./{*}language"}, } XML_MAPPING_METS = { - 'publisher': { - 'path': './{*}metsHdr/{*}agent[@ROLE="CREATOR"]/{*}name' - }, - 'object_content_identifier_url': { - 'path': './{*}fileSec/{*}fileGrp/{*}file/{*}FLocat@@xlink:href' - }, - 'object_content_identifier_type': { - 'path': './{*}fileSec/{*}fileGrp/{*}file@@MIMETYPE' - } + "publisher": {"path": './{*}metsHdr/{*}agent[@ROLE="CREATOR"]/{*}name'}, + "object_content_identifier_url": {"path": "./{*}fileSec/{*}fileGrp/{*}file/{*}FLocat@@xlink:href"}, + "object_content_identifier_type": {"path": "./{*}fileSec/{*}fileGrp/{*}file@@MIMETYPE"}, } XML_MAPPING_MODS = { - 'title': { - 'path': './{*}titleInfo/{*}title' - }, - 'creator': { - 'path': [ + "title": {"path": "./{*}titleInfo/{*}title"}, + "creator": { + "path": [ "./{*}name/{*}role[{*}roleTerm='Creator']/../{*}namePart[1]", - "./{*}name/{*}role[{*}roleTerm='Author']/../{*}namePart[1]" + "./{*}name/{*}role[{*}roleTerm='Author']/../{*}namePart[1]", ] }, - 'publisher': { - 'path': './{*}originInfo/{*}publisher' - }, - 'object_identifier': { - 'path': './{*}identifier' - }, - 'publication_date': { - 'path': './{*}originInfo/{*}dateCreated' - }, - 'related_resource': { - 'path': ['./{*}relatedItem/{*}recordInfo/{*}recordIdentifier', './{*}relatedItem/{*}identifier'] - }, - 'related_resource_type': { - 'path': ['./{*}relatedItem@@type', './{*}relatedItem@@type'] - }, - 'keywords': { - 'path': './{*}subject/{*}topic' - }, - 'summary': { - 'path': './{*}abstract' - }, - 'object_type': { - 'path': './{*}typeOfResource' - }, - 'access_level': { - 'path': ['./{*}accessCondition', './{*}accessCondition@@type', './{*}accessCondition@@href'] - }, - 'license': { - 'path': ['./{*}accessCondition', './{*}accessCondition@@type', './{*}accessCondition@@href'] - }, - 'language':{ - 'path':'./{*}language/{*}languageTerm' - } + "publisher": {"path": "./{*}originInfo/{*}publisher"}, + "object_identifier": {"path": "./{*}identifier"}, + "publication_date": {"path": "./{*}originInfo/{*}dateCreated"}, + "related_resource": { + "path": ["./{*}relatedItem/{*}recordInfo/{*}recordIdentifier", "./{*}relatedItem/{*}identifier"] + }, + "related_resource_type": {"path": ["./{*}relatedItem@@type", "./{*}relatedItem@@type"]}, + "keywords": {"path": "./{*}subject/{*}topic"}, + "summary": {"path": "./{*}abstract"}, + "object_type": {"path": "./{*}typeOfResource"}, + "access_level": {"path": ["./{*}accessCondition", "./{*}accessCondition@@type", "./{*}accessCondition@@href"]}, + "license": {"path": ["./{*}accessCondition", "./{*}accessCondition@@type", "./{*}accessCondition@@href"]}, + "language": {"path": "./{*}language/{*}languageTerm"}, } XML_MAPPING_EML = { - 'title': { - 'path': './{*}dataset/{*}title' - }, - 'object_identifier': { - 'path': ['./{*}dataset/{*}alternateIdentifier', './/@@packageId'] - }, - 'creator': { - 'path': './{*}dataset/{*}individualName/{*}surName' - }, - 'contributor': { - 'path': './{*}dataset/{*}associatedParty/{*}surName' - }, - 'publication_date': { - 'path': './{*}dataset/{*}pubDate' - }, - 'keywords': { - 'path': './{*}dataset/{*}keywordSet/{*}keyword' - }, - 'summary': { - 'path': './{*}dataset/{*}abstract/{*}para' - }, - 'publisher': { - 'path': './{*}dataset/{*}publisher/{*}organizationName' - }, - 'measured_variable': { - 'path': './/{*}additionalMetadata/{*}metadata/{*}variableName' - }, - 'license': { - 'path': [ - './{*}dataset/{*}intellectualRights/{*}para', - '{*}dataset/{*}intellectualRights/{*}section/{*}para/{*}value' + "title": {"path": "./{*}dataset/{*}title"}, + "object_identifier": {"path": ["./{*}dataset/{*}alternateIdentifier", ".//@@packageId"]}, + "creator": {"path": "./{*}dataset/{*}individualName/{*}surName"}, + "contributor": {"path": "./{*}dataset/{*}associatedParty/{*}surName"}, + "publication_date": {"path": "./{*}dataset/{*}pubDate"}, + "keywords": {"path": "./{*}dataset/{*}keywordSet/{*}keyword"}, + "summary": {"path": "./{*}dataset/{*}abstract/{*}para"}, + "publisher": {"path": "./{*}dataset/{*}publisher/{*}organizationName"}, + "measured_variable": {"path": ".//{*}additionalMetadata/{*}metadata/{*}variableName"}, + "license": { + "path": [ + "./{*}dataset/{*}intellectualRights/{*}para", + "{*}dataset/{*}intellectualRights/{*}section/{*}para/{*}value", ] }, - 'object_content_identifier_url': { - 'path': [ - './{*}dataset/{*}dataTable/{*}physical/{*}distribution/{*}online/{*}url', - './/{*}dataset/{*}distribution/{*}online/{*}url' + "object_content_identifier_url": { + "path": [ + "./{*}dataset/{*}dataTable/{*}physical/{*}distribution/{*}online/{*}url", + ".//{*}dataset/{*}distribution/{*}online/{*}url", ] }, - 'object_content_identifier_size': { - 'path': './{*}dataset/{*}dataTable/{*}physical/{*}distribution/{*}online/{*}size' + "object_content_identifier_size": { + "path": "./{*}dataset/{*}dataTable/{*}physical/{*}distribution/{*}online/{*}size" }, - 'language': { - 'path': './{*}dataset/{*}language' - } + "language": {"path": "./{*}dataset/{*}language"}, } - XML_MAPPING_CMD ={ - 'object_identifier': { - 'path': './{*}Header/{*}MdSelfLink' - }, - 'creator': { - 'path': './{*}Header/{*}MdCreator' - }, - 'publication_date': { - 'path': './{*}Header/{*}MdCreationDate' + XML_MAPPING_CMD = { + "object_identifier": {"path": "./{*}Header/{*}MdSelfLink"}, + "creator": {"path": "./{*}Header/{*}MdCreator"}, + "publication_date": {"path": "./{*}Header/{*}MdCreationDate"}, + "publisher": {"path": "./{*}Header/{*}MdCollectionDisplayName"}, + "object_content_identifier_url": { + "path": "./{*}Resources/{*}ResourceProxyList/{*}ResourceProxy/{*}ResourceRef" }, - 'publisher': { - 'path': './{*}Header/{*}MdCollectionDisplayName' - }, - 'object_content_identifier_url': { - 'path':'./{*}Resources/{*}ResourceProxyList/{*}ResourceProxy/{*}ResourceRef' + "object_content_identifier_type": { + "path": "./{*}Resources/{*}ResourceProxyList/{*}ResourceProxy/{*}ResourceType@@mimetype" }, - 'object_content_identifier_type': { - 'path': './{*}Resources/{*}ResourceProxyList/{*}ResourceProxy/{*}ResourceType@@mimetype' - } } - ''' + """ local standard? dda.dk/metadata/1.0.0 see: http://dda.dk/search-technical-information/schema/MetaDataSchema.xsd XML_MAPPING_DDA_DK_STUDY ={ 'object_identifier': { @@ -553,244 +479,184 @@ def flip_dict(dict_to_flip): } } - ''' + """ XML_MAPPING_DDI_STUDYUNIT = { - 'title':{ - 'path':'./{*}Citation/{*}Title' - },'creator': { - 'path': './{*}Citation/{*}Creator' - }, - 'object_identifier':{ - 'path':'./{*}Citation/{*}InternationalIdentifier' - }, - 'publisher': { - 'path':'./{*}Citation/{*}Publisher' - }, - 'publication_date': { - 'path':'./{*}Citation/{*}PublicationDate' - }, - 'summary': { - 'path': './{*}Abstract' - }, - 'keywords': { - 'path':'./{*}Coverage/{*}TopicalCoverage/{*}Subject' - }, - 'access_level': { - 'path':'.//{*}AccessConditions' - }, - 'related_resource':{ - 'path':'./{*}RelatedOtherMaterialReference' - }, - 'related_resource_hasVersion': { - 'path': './{*}Version' - }, - 'related_resource_isBasedOn': { - 'path':'./{*}BasedOnObject' - }, - 'measured_variable': { - 'path': './{*}LogicalProduct/{*}VariableScheme/{*}Variable/{*}Label' - } + "title": {"path": "./{*}Citation/{*}Title"}, + "creator": {"path": "./{*}Citation/{*}Creator"}, + "object_identifier": {"path": "./{*}Citation/{*}InternationalIdentifier"}, + "publisher": {"path": "./{*}Citation/{*}Publisher"}, + "publication_date": {"path": "./{*}Citation/{*}PublicationDate"}, + "summary": {"path": "./{*}Abstract"}, + "keywords": {"path": "./{*}Coverage/{*}TopicalCoverage/{*}Subject"}, + "access_level": {"path": ".//{*}AccessConditions"}, + "related_resource": {"path": "./{*}RelatedOtherMaterialReference"}, + "related_resource_hasVersion": {"path": "./{*}Version"}, + "related_resource_isBasedOn": {"path": "./{*}BasedOnObject"}, + "measured_variable": {"path": "./{*}LogicalProduct/{*}VariableScheme/{*}Variable/{*}Label"}, } XML_MAPPING_DDI_CODEBOOK = { - 'title': { - 'path': './{*}stdyDscr/{*}citation/{*}titlStmt/{*}titl' - }, - 'creator': { - 'path': './{*}stdyDscr/{*}citation/{*}rspStmt/{*}AuthEnty' - }, - 'keywords': { - 'path': - ['./{*}stdyDscr/{*}stdyInfo/{*}subject/{*}keyword', './{*}stdyDscr/{*}stdyInfo/{*}subject/{*}topcClas'] - }, - 'summary': { - 'path': './{*}stdyDscr/{*}stdyInfo/{*}abstract' - }, - 'publisher': { - 'path': - ['./{*}docDscr/{*}citation/{*}prodStmt/{*}producer', './{*}stdyDscr/{*}citation/{*}distStmt/{*}distrbtr'] - }, - 'publication_date': { - 'path': './{*}docDscr/{*}citation/{*}prodStmt/{*}prodDate@@date' - }, - 'object_identifier': { - 'path': [ - './{*}stdyDscr/{*}dataAccs/{*}setAvail/{*}accsPlac@@URI', - './{*}docDscr/{*}citation/{*}titlStmt/{*}IDNo', - './{*}docDscr/{*}citation/{*}holdings@@URI', - './{*}stdyDscr/{*}citation/{*}titlStmt/{*}IDNo' + "title": {"path": "./{*}stdyDscr/{*}citation/{*}titlStmt/{*}titl"}, + "creator": {"path": "./{*}stdyDscr/{*}citation/{*}rspStmt/{*}AuthEnty"}, + "keywords": { + "path": [ + "./{*}stdyDscr/{*}stdyInfo/{*}subject/{*}keyword", + "./{*}stdyDscr/{*}stdyInfo/{*}subject/{*}topcClas", ] }, - 'related_resource': { - 'path': ['./{*}stdyDscr/{*}method/{*}dataColl/{*}sources', './{*}stdyDscr/{*}othrStdyMat/*'] - }, - 'related_resource_hasVersion': { - 'path': ['./{*}docDscr/{*}citation/{*}verStmt', './{*}stdyDscr/{*}citation/{*}verStmt'] + "summary": {"path": "./{*}stdyDscr/{*}stdyInfo/{*}abstract"}, + "publisher": { + "path": [ + "./{*}docDscr/{*}citation/{*}prodStmt/{*}producer", + "./{*}stdyDscr/{*}citation/{*}distStmt/{*}distrbtr", + ] }, - 'related_resource_isPartOf': { - 'path': - ['./{*}docDscr/{*}citation/{*}serStmt/{*}serName', './{*}stdyDscr/{*}citation/{*}serStmt/{*}serName'] + "publication_date": {"path": "./{*}docDscr/{*}citation/{*}prodStmt/{*}prodDate@@date"}, + "object_identifier": { + "path": [ + "./{*}stdyDscr/{*}dataAccs/{*}setAvail/{*}accsPlac@@URI", + "./{*}docDscr/{*}citation/{*}titlStmt/{*}IDNo", + "./{*}docDscr/{*}citation/{*}holdings@@URI", + "./{*}stdyDscr/{*}citation/{*}titlStmt/{*}IDNo", + ] }, - 'license': { - 'path': - ['./{*}docDscr/{*}citation/{*}prodStmt/{*}copyright', './{*}stdyDscr/{*}citation/{*}prodStmt/{*}copyright'] + "related_resource": { + "path": ["./{*}stdyDscr/{*}method/{*}dataColl/{*}sources", "./{*}stdyDscr/{*}othrStdyMat/*"] }, - 'object_type': { - 'path': './{*}stdyDscr/{*}stdyInfo/{*}sumDscr/{*}dataKind' + "related_resource_hasVersion": { + "path": ["./{*}docDscr/{*}citation/{*}verStmt", "./{*}stdyDscr/{*}citation/{*}verStmt"] }, - 'access_level': { - 'path': ['./{*}stdyDscr/{*}dataAccs/{*}setAvail/{*}avlStatus', './{*}stdyDscr/{*}dataAccs/{*}useStmt/*'] + "related_resource_isPartOf": { + "path": [ + "./{*}docDscr/{*}citation/{*}serStmt/{*}serName", + "./{*}stdyDscr/{*}citation/{*}serStmt/{*}serName", + ] }, - 'object_content_identifier_url': { - 'path': './/{*}fileDscr@@URI' + "license": { + "path": [ + "./{*}docDscr/{*}citation/{*}prodStmt/{*}copyright", + "./{*}stdyDscr/{*}citation/{*}prodStmt/{*}copyright", + ] }, - 'measured_variable': { - 'path': './{*}dataDscr/{*}var@@name' + "object_type": {"path": "./{*}stdyDscr/{*}stdyInfo/{*}sumDscr/{*}dataKind"}, + "access_level": { + "path": ["./{*}stdyDscr/{*}dataAccs/{*}setAvail/{*}avlStatus", "./{*}stdyDscr/{*}dataAccs/{*}useStmt/*"] }, - 'language':{ - 'path': ['./{*}codeBook@@lang', - './{*}stdyDscr/{*}citation/{*}titlStmt/{*}titl@@xml:lang'] - } + "object_content_identifier_url": {"path": ".//{*}fileDscr@@URI"}, + "measured_variable": {"path": "./{*}dataDscr/{*}var@@name"}, + "language": {"path": ["./{*}codeBook@@lang", "./{*}stdyDscr/{*}citation/{*}titlStmt/{*}titl@@xml:lang"]}, } - XML_MAPPING_DIF ={ - 'object_identifier':{ - 'path':'./{*}Dataset_Citation/{*}Persistent_Identifier' - }, - 'title': { - 'path':'./{*}Dataset_Citation/{*}Dataset_Title' - }, - 'publication_date': { - 'path':'./{*}Dataset_Citation/{*}Dataset_Release_Date' - }, - 'creator': { - 'path': './{*}Dataset_Citation/{*}Dataset_Creator' - }, - 'summary': { - 'path': './{*}Summary/{*}Abstract' - }, - 'publisher': { - 'path':['./{*}Dataset_Citation/{*}Dataset_Publisher','./{*}Data_Center/{*}Data_Center_Name'] - }, - 'keywords': { - 'path':['./{*}Science_Keywords/{*}Category','./{*}Science_Keywords/{*}Topic','./{*}Science_Keywords/{*}Term'] - }, - 'object_content_identifier_url': { - 'path':'./{*}Distribution/{*}Distribution_Media' - }, - 'object_content_identifier_size': { - 'path': './{*}Distribution/{*}Distribution_Size' - }, - 'object_content_identifier_type': { - 'path': './{*}Distribution/{*}Distribution_Format' - }, - 'measured_variable': { - 'path':'./{*}Science_Keywords/{*}Detailed_Variable' - }, - 'access_level': { - 'path': ['./{*}Access_Constraints','./{*}Use_Constraints'] - }, - 'related_resource': { - 'path':'./{*}Related_URL/{*}URL' - }, - 'related_resource_type':{ - 'path': './{*}Related_URL/{*}Type' + XML_MAPPING_DIF = { + "object_identifier": {"path": "./{*}Dataset_Citation/{*}Persistent_Identifier"}, + "title": {"path": "./{*}Dataset_Citation/{*}Dataset_Title"}, + "publication_date": {"path": "./{*}Dataset_Citation/{*}Dataset_Release_Date"}, + "creator": {"path": "./{*}Dataset_Citation/{*}Dataset_Creator"}, + "summary": {"path": "./{*}Summary/{*}Abstract"}, + "publisher": {"path": ["./{*}Dataset_Citation/{*}Dataset_Publisher", "./{*}Data_Center/{*}Data_Center_Name"]}, + "keywords": { + "path": [ + "./{*}Science_Keywords/{*}Category", + "./{*}Science_Keywords/{*}Topic", + "./{*}Science_Keywords/{*}Term", + ] }, - 'related_resource_hasVersion': { - 'path': './{*}Dataset_Citation/{*}Version' - } + "object_content_identifier_url": {"path": "./{*}Distribution/{*}Distribution_Media"}, + "object_content_identifier_size": {"path": "./{*}Distribution/{*}Distribution_Size"}, + "object_content_identifier_type": {"path": "./{*}Distribution/{*}Distribution_Format"}, + "measured_variable": {"path": "./{*}Science_Keywords/{*}Detailed_Variable"}, + "access_level": {"path": ["./{*}Access_Constraints", "./{*}Use_Constraints"]}, + "related_resource": {"path": "./{*}Related_URL/{*}URL"}, + "related_resource_type": {"path": "./{*}Related_URL/{*}Type"}, + "related_resource_hasVersion": {"path": "./{*}Dataset_Citation/{*}Version"}, } XML_MAPPING_GCMD_ISO = { - 'title': { - 'path': [ - './{*}identificationInfo//{*}citation/{*}CI_Citation/{*}title/{*}CharacterString', - './{*}identificationInfo//{*}citation/{*}CI_Citation/{*}title' + "title": { + "path": [ + "./{*}identificationInfo//{*}citation/{*}CI_Citation/{*}title/{*}CharacterString", + "./{*}identificationInfo//{*}citation/{*}CI_Citation/{*}title", ] }, - 'publication_date': { - 'path': [ - './{*}identificationInfo//{*}citation/{*}CI_Citation/{*}date/{*}CI_Date/{*}date/{*}DateTime', - './{*}identificationInfo//{*}citation/{*}CI_Citation/{*}date/{*}CI_Date/{*}date' + "publication_date": { + "path": [ + "./{*}identificationInfo//{*}citation/{*}CI_Citation/{*}date/{*}CI_Date/{*}date/{*}DateTime", + "./{*}identificationInfo//{*}citation/{*}CI_Citation/{*}date/{*}CI_Date/{*}date", ] }, - 'object_identifier': { - 'path': [ - './{*}identificationInfo//{*}citation/{*}CI_Citation/{*}identifier/{*}MD_Identifier/{*}code/{*}CharacterString', - './{*}dataSetURI/{*}CharacterString' + "object_identifier": { + "path": [ + "./{*}identificationInfo//{*}citation/{*}CI_Citation/{*}identifier/{*}MD_Identifier/{*}code/{*}CharacterString", + "./{*}dataSetURI/{*}CharacterString", ] }, - 'creator': { - 'path': [ - './{*}identificationInfo//{*}citation/{*}CI_Citation/{*}citedResponsibleParty/{*}CI_ResponsibleParty/{*}individualName/{*}CharacterString', - './{*}identificationInfo//{*}citation/{*}CI_Citation/{*}citedResponsibleParty/{*}CI_ResponsibleParty/{*}individualName/', - './{*}identificationInfo//{*}pointOfContact/{*}CI_Responsibility//{*}CI_RoleCode[@codeListValue=\'pointOfContact\']/../../{*}party//{*}name', - './{*}identificationInfo//{*}pointOfContact/{*}CI_Responsibility//{*}CI_RoleCode[@codeListValue=\'author\']/../../{*}party//{*}name' + "creator": { + "path": [ + "./{*}identificationInfo//{*}citation/{*}CI_Citation/{*}citedResponsibleParty/{*}CI_ResponsibleParty/{*}individualName/{*}CharacterString", + "./{*}identificationInfo//{*}citation/{*}CI_Citation/{*}citedResponsibleParty/{*}CI_ResponsibleParty/{*}individualName/", + "./{*}identificationInfo//{*}pointOfContact/{*}CI_Responsibility//{*}CI_RoleCode[@codeListValue='pointOfContact']/../../{*}party//{*}name", + "./{*}identificationInfo//{*}pointOfContact/{*}CI_Responsibility//{*}CI_RoleCode[@codeListValue='author']/../../{*}party//{*}name", ] }, - 'summary': { - 'path': './{*}identificationInfo//{*}abstract' - }, - 'keywords': { - 'path': [ - './{*}identificationInfo//{*}descriptiveKeywords/{*}MD_Keywords/{*}keyword/{*}CharacterString', - './{*}identificationInfo//{*}topicCategory/{*}MD_TopicCategoryCode', - './{*}identificationInfo//{*}descriptiveKeywords/{*}MD_Keywords/{*}keyword' + "summary": {"path": "./{*}identificationInfo//{*}abstract"}, + "keywords": { + "path": [ + "./{*}identificationInfo//{*}descriptiveKeywords/{*}MD_Keywords/{*}keyword/{*}CharacterString", + "./{*}identificationInfo//{*}topicCategory/{*}MD_TopicCategoryCode", + "./{*}identificationInfo//{*}descriptiveKeywords/{*}MD_Keywords/{*}keyword", ] }, - 'publisher': { - 'path': [ + "publisher": { + "path": [ "./{*}contact/{*}CI_ResponsibleParty/{*}role[{*}CI_RoleCode='pointOfContact']/../{*}organisationName/{*}CharacterString", - './{*}identificationInfo//{*}pointOfContact/{*}CI_Responsibility//{*}CI_RoleCode[@codeListValue=\'custodian\']/../../{*}party//{*}name', - './{*}identificationInfo//{*}pointOfContact/{*}CI_Responsibility//{*}CI_RoleCode[@codeListValue=\'publisher\']/../../{*}party//{*}name' + "./{*}identificationInfo//{*}pointOfContact/{*}CI_Responsibility//{*}CI_RoleCode[@codeListValue='custodian']/../../{*}party//{*}name", + "./{*}identificationInfo//{*}pointOfContact/{*}CI_Responsibility//{*}CI_RoleCode[@codeListValue='publisher']/../../{*}party//{*}name", ] }, - 'object_type': { - 'path': [ - './{*}hierarchyLevel/{*}MD_ScopeCode', - './{*}identificationInfo//{*}spatialRepresentationType/{*}MD_SpatialRepresentationTypeCode' + "object_type": { + "path": [ + "./{*}hierarchyLevel/{*}MD_ScopeCode", + "./{*}identificationInfo//{*}spatialRepresentationType/{*}MD_SpatialRepresentationTypeCode", ] }, - 'object_content_identifier_url': { - 'path': [ - './{*}distributionInfo/{*}MD_Distribution/{*}transferOptions/{*}MD_DigitalTransferOptions/{*}onLine/{*}CI_OnlineResource/{*}linkage/{*}URL', - './{*}distributionInfo/{*}MD_Distribution//{*}CI_OnlineResource/{*}linkage/{*}URL' + "object_content_identifier_url": { + "path": [ + "./{*}distributionInfo/{*}MD_Distribution/{*}transferOptions/{*}MD_DigitalTransferOptions/{*}onLine/{*}CI_OnlineResource/{*}linkage/{*}URL", + "./{*}distributionInfo/{*}MD_Distribution//{*}CI_OnlineResource/{*}linkage/{*}URL", ] }, - 'measured_variable': { - 'path': [ - './{*}contentInfo/{*}MD_CoverageDescription/{*}attributeDescription/{*}RecordType', - #https://wiki.esipfed.org/Documenting_Resource_Content - './{*}contentInfo/{*}MD_CoverageDescription/{*}dimension/{*}MD_Band/{*}sequenceIdentifier/{*}MemberName/{*}aName', - './{*}contentInfo/{*}MD_CoverageDescription/{*}attributeGroup/{*}MD_AttributeGroup/{*}attribute/{*}MD_SampleDimension/{*}sequenceIdentifier/{*}MemberName/{*}aName' + "measured_variable": { + "path": [ + "./{*}contentInfo/{*}MD_CoverageDescription/{*}attributeDescription/{*}RecordType", + # https://wiki.esipfed.org/Documenting_Resource_Content + "./{*}contentInfo/{*}MD_CoverageDescription/{*}dimension/{*}MD_Band/{*}sequenceIdentifier/{*}MemberName/{*}aName", + "./{*}contentInfo/{*}MD_CoverageDescription/{*}attributeGroup/{*}MD_AttributeGroup/{*}attribute/{*}MD_SampleDimension/{*}sequenceIdentifier/{*}MemberName/{*}aName", ] }, - 'access_level': { - 'path': [ - './{*}identificationInfo//{*}resourceConstraints/{*}MD_LegalConstraints/{*}accessConstraints/{*}MD_RestrictionCode', - './{*}identificationInfo//{*}resourceConstraints/{*}MD_LegalConstraints/{*}accessConstraints/{*}MD_RestrictionCode@@codeListValue' + "access_level": { + "path": [ + "./{*}identificationInfo//{*}resourceConstraints/{*}MD_LegalConstraints/{*}accessConstraints/{*}MD_RestrictionCode", + "./{*}identificationInfo//{*}resourceConstraints/{*}MD_LegalConstraints/{*}accessConstraints/{*}MD_RestrictionCode@@codeListValue", ] }, - 'license': { - 'path': [ - './{*}identificationInfo//{*}resourceConstraints/{*}MD_LegalConstraints/{*}useConstraints/{*}MD_RestrictionCode[@codeListValue=\'license\']', + "license": { + "path": [ + "./{*}identificationInfo//{*}resourceConstraints/{*}MD_LegalConstraints/{*}useConstraints/{*}MD_RestrictionCode[@codeListValue='license']", #'./{*}identificationInfo//{*}resourceConstraints/{*}MD_LegalConstraints/{*}useConstraints/{*}MD_RestrictionCode@@codeListValue', - './{*}identificationInfo//{*}resourceConstraints/{*}otherConstraints/{*}CharacterString', - './{*}identificationInfo//{*}resourceConstraints/{*}MD_LegalConstraints/{*}otherConstraints/{*}Anchor', - './{*}identificationInfo//{*}resourceConstraints/{*}MD_LegalConstraints/{*}otherConstraints/{*}Anchor@@xlink:href' + "./{*}identificationInfo//{*}resourceConstraints/{*}otherConstraints/{*}CharacterString", + "./{*}identificationInfo//{*}resourceConstraints/{*}MD_LegalConstraints/{*}otherConstraints/{*}Anchor", + "./{*}identificationInfo//{*}resourceConstraints/{*}MD_LegalConstraints/{*}otherConstraints/{*}Anchor@@xlink:href", ] }, - 'related_resource': { - 'path': [ - './{*}identificationInfo//{*}aggregationInfo/{*}MD_AggregateInformation//{*}aggregateDataSetIdentifier/*', - './{*}identificationInfo//{*}aggregationInfo/{*}MD_AggregateInformation//{*}aggregateDataSetName/*' + "related_resource": { + "path": [ + "./{*}identificationInfo//{*}aggregationInfo/{*}MD_AggregateInformation//{*}aggregateDataSetIdentifier/*", + "./{*}identificationInfo//{*}aggregationInfo/{*}MD_AggregateInformation//{*}aggregateDataSetName/*", ] }, - 'related_resource_type': { - 'path': [ - './{*}identificationInfo//{*}aggregationInfo/{*}MD_AggregateInformation/{*}associationType/{*}DS_AssociationTypeCode@@codeListValue', - './{*}identificationInfo//{*}aggregationInfo/{*}MD_AggregateInformation/{*}associationType/{*}DS_AssociationTypeCode@@codeListValue' + "related_resource_type": { + "path": [ + "./{*}identificationInfo//{*}aggregationInfo/{*}MD_AggregateInformation/{*}associationType/{*}DS_AssociationTypeCode@@codeListValue", + "./{*}identificationInfo//{*}aggregationInfo/{*}MD_AggregateInformation/{*}associationType/{*}DS_AssociationTypeCode@@codeListValue", ] }, - 'language': { - 'path':'./{*}language/{*}LanguageCode@@codeListValue' - } + "language": {"path": "./{*}language/{*}LanguageCode@@codeListValue"}, } diff --git a/fuji_server/helper/metadata_provider.py b/fuji_server/helper/metadata_provider.py index 4031feed..fb255c06 100644 --- a/fuji_server/helper/metadata_provider.py +++ b/fuji_server/helper/metadata_provider.py @@ -22,7 +22,9 @@ # SOFTWARE. from abc import ABC, abstractmethod + from urlextract import URLExtract + from fuji_server.helper.preprocessor import Preprocessor @@ -89,18 +91,18 @@ def getNamespacesfromIRIs(self, meta_source): namespaces = set() if meta_source is not None: for url in set(extractor.gen_urls(str(meta_source))): - namespace_candidate = url.rsplit('/', 1)[0] + namespace_candidate = url.rsplit("/", 1)[0] if namespace_candidate != url: namespaces.add(namespace_candidate) else: - namespace_candidate = url.rsplit('#', 1)[0] + namespace_candidate = url.rsplit("#", 1)[0] if namespace_candidate != url: namespaces.add(namespace_candidate) vocabs = Preprocessor.getLinkedVocabs() - lod_namespaces = [d['namespace'] for d in vocabs if 'namespace' in d] + lod_namespaces = [d["namespace"] for d in vocabs if "namespace" in d] for ns in namespaces: - if ns + '/' in lod_namespaces: - self.namespaces.append(ns + '/') - elif ns + '#' in lod_namespaces: - self.namespaces.append(ns + '#') + if ns + "/" in lod_namespaces: + self.namespaces.append(ns + "/") + elif ns + "#" in lod_namespaces: + self.namespaces.append(ns + "#") diff --git a/fuji_server/helper/metadata_provider_csw.py b/fuji_server/helper/metadata_provider_csw.py index 242e7ffb..89c6e336 100644 --- a/fuji_server/helper/metadata_provider_csw.py +++ b/fuji_server/helper/metadata_provider_csw.py @@ -21,25 +21,26 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -from fuji_server.helper.metadata_provider import MetadataProvider -from fuji_server.helper.request_helper import RequestHelper, AcceptTypes from lxml import etree +from fuji_server.helper.metadata_provider import MetadataProvider +from fuji_server.helper.request_helper import AcceptTypes, RequestHelper + class OGCCSWMetadataProvider(MetadataProvider): - """A metadata provider class that will provide metadata from OGCCSW - """ + """A metadata provider class that will provide metadata from OGCCSW""" + csw_namespaces = { - 'csw': 'http://www.opengis.net/cat/csw/2.0.2', - 'ogc': 'http://www.opengis.net/ogc', - 'ows': 'http://www.opengis.net/ows', - 'gmd': 'http://www.isotc211.org/2005/gmd' + "csw": "http://www.opengis.net/cat/csw/2.0.2", + "ogc": "http://www.opengis.net/ogc", + "ows": "http://www.opengis.net/ows", + "gmd": "http://www.isotc211.org/2005/gmd", } def getMetadata(self): # http://ws.pangaea.de/oai/provider?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:pangaea.de:doi:10.1594/PANGAEA.66871 - #The nature of a resource identifier is outside the scope of the OAI-PMH. - #To facilitate access to the resource associated with harvested metadata, repositories should use an element in + # The nature of a resource identifier is outside the scope of the OAI-PMH. + # To facilitate access to the resource associated with harvested metadata, repositories should use an element in # #metadata records to establish a linkage between the record (and the identifier of its item) and the identifier # URL, URN, DOI, etc.) of the associated resource. # #The mandatory Dublin Core format provides the identifier element that should be used for this purpose @@ -53,8 +54,8 @@ def getMetadataStandards(self): dict A dictionary of schemas in OGCCSW """ - csw_endpoint = self.endpoint.split('?')[0] - csw_listmetadata_url = csw_endpoint + '?service=CSW&request=GetCapabilities' + csw_endpoint = self.endpoint.split("?")[0] + csw_listmetadata_url = csw_endpoint + "?service=CSW&request=GetCapabilities" requestHelper = RequestHelper(url=csw_listmetadata_url, logInst=self.logger) requestHelper.setAcceptType(AcceptTypes.xml) response_type, xml = requestHelper.content_negotiate(self.metric_id) @@ -62,16 +63,18 @@ def getMetadataStandards(self): if xml: try: root = etree.fromstring(requestHelper.response_content) - metadata_nodes = root.xpath('//ows:Parameter[@name="outputSchema"]/ows:Value', - namespaces=OGCCSWMetadataProvider.csw_namespaces) + metadata_nodes = root.xpath( + '//ows:Parameter[@name="outputSchema"]/ows:Value', namespaces=OGCCSWMetadataProvider.csw_namespaces + ) for node in metadata_nodes: if node.text: if node.text not in self.namespaces: self.namespaces.append(str(node.text)) schemas[str(node.text)] = str(node.text) except: - self.logger.info('{0} : Could not parse XML response retrieved from OGC CSW endpoint'.format( - self.metric_id)) + self.logger.info( + "{0} : Could not parse XML response retrieved from OGC CSW endpoint".format(self.metric_id) + ) return schemas diff --git a/fuji_server/helper/metadata_provider_oai.py b/fuji_server/helper/metadata_provider_oai.py index 09483661..84b35bc1 100644 --- a/fuji_server/helper/metadata_provider_oai.py +++ b/fuji_server/helper/metadata_provider_oai.py @@ -21,10 +21,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -from fuji_server.helper.metadata_provider import MetadataProvider -from fuji_server.helper.request_helper import RequestHelper, AcceptTypes from lxml import etree +from fuji_server.helper.metadata_provider import MetadataProvider +from fuji_server.helper.request_helper import AcceptTypes, RequestHelper + class OAIMetadataProvider(MetadataProvider): """A metadata provider class to provide the metadata from OAI @@ -42,12 +43,12 @@ class OAIMetadataProvider(MetadataProvider): """ - oai_namespaces = {'oai': 'http://www.openarchives.org/OAI/2.0/'} + oai_namespaces = {"oai": "http://www.openarchives.org/OAI/2.0/"} def getMetadata(self): # http://ws.pangaea.de/oai/provider?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:pangaea.de:doi:10.1594/PANGAEA.66871 - #The nature of a resource identifier is outside the scope of the OAI-PMH. - #To facilitate access to the resource associated with harvested metadata, repositories should use an element in + # The nature of a resource identifier is outside the scope of the OAI-PMH. + # To facilitate access to the resource associated with harvested metadata, repositories should use an element in # #metadata records to establish a linkage between the record (and the identifier of its item) and the identifier # URL, URN, DOI, etc.) of the associated resource. # #The mandatory Dublin Core format provides the identifier element that should be used for this purpose @@ -62,11 +63,11 @@ def getMetadataStandards(self): A dictionary of schemas in OAI """ filter = [] - #filter = ['datacite.org', 'openarchives.org', 'purl.org/dc/'] # TODO expand filters - #http://ws.pangaea.de/oai/provider?verb=ListMetadataFormats - oai_endpoint = self.endpoint.split('?')[0] - #oai_endpoint = oai_endpoint.rstrip('/') - oai_listmetadata_url = oai_endpoint + '?verb=ListMetadataFormats' + # filter = ['datacite.org', 'openarchives.org', 'purl.org/dc/'] # TODO expand filters + # http://ws.pangaea.de/oai/provider?verb=ListMetadataFormats + oai_endpoint = self.endpoint.split("?")[0] + # oai_endpoint = oai_endpoint.rstrip('/') + oai_listmetadata_url = oai_endpoint + "?verb=ListMetadataFormats" requestHelper = RequestHelper(url=oai_listmetadata_url, logInst=self.logger) requestHelper.setAcceptType(AcceptTypes.xml) response_type, xml = requestHelper.content_negotiate(self.metric_id) @@ -74,14 +75,18 @@ def getMetadataStandards(self): if xml: try: root = etree.fromstring(requestHelper.response_content) - metadata_nodes = root.xpath('//oai:OAI-PMH/oai:ListMetadataFormats/oai:metadataFormat', - namespaces=OAIMetadataProvider.oai_namespaces) + metadata_nodes = root.xpath( + "//oai:OAI-PMH/oai:ListMetadataFormats/oai:metadataFormat", + namespaces=OAIMetadataProvider.oai_namespaces, + ) for node in metadata_nodes: ele = etree.XPathEvaluator(node, namespaces=OAIMetadataProvider.oai_namespaces).evaluate metadata_prefix = ele( - 'string(oai:metadataPrefix/text())') # oai_dc + "string(oai:metadataPrefix/text())" + ) # oai_dc metadata_schema = ele( - 'string(oai:schema/text())') #http://www.openarchives.org/OAI/2.0/oai_dc.xsd + "string(oai:schema/text())" + ) # http://www.openarchives.org/OAI/2.0/oai_dc.xsd metadata_schema = metadata_schema.strip() self.namespaces.append(metadata_schema) # TODO there can be more than one OAI-PMH endpoint, https://www.re3data.org/repository/r3d100011221 @@ -89,11 +94,14 @@ def getMetadataStandards(self): schemas[metadata_prefix] = metadata_schema else: self.logger.info( - '{0} : Skipped domain-agnostic standard listed in OAI-PMH endpoint -: {1}'.format( - self.metric_id, metadata_prefix)) + "{0} : Skipped domain-agnostic standard listed in OAI-PMH endpoint -: {1}".format( + self.metric_id, metadata_prefix + ) + ) except: - self.logger.info('{0} : Could not parse XML response retrieved from OAI-PMH endpoint'.format( - self.metric_id)) + self.logger.info( + "{0} : Could not parse XML response retrieved from OAI-PMH endpoint".format(self.metric_id) + ) return schemas diff --git a/fuji_server/helper/metadata_provider_rss_atom.py b/fuji_server/helper/metadata_provider_rss_atom.py index 59580be1..3b189c44 100644 --- a/fuji_server/helper/metadata_provider_rss_atom.py +++ b/fuji_server/helper/metadata_provider_rss_atom.py @@ -22,12 +22,11 @@ # SOFTWARE. import re +import feedparser import lxml from fuji_server.helper.metadata_provider import MetadataProvider -import feedparser - -from fuji_server.helper.request_helper import RequestHelper, AcceptTypes +from fuji_server.helper.request_helper import AcceptTypes, RequestHelper class RSSAtomMetadataProvider(MetadataProvider): @@ -46,12 +45,12 @@ class RSSAtomMetadataProvider(MetadataProvider): """ - rss_namespaces = {'atom': 'http://www.w3.org/2005/Atom', 'georss': 'http://www.georss.org/georss/'} + rss_namespaces = {"atom": "http://www.w3.org/2005/Atom", "georss": "http://www.georss.org/georss/"} def getMetadata(self): # http://ws.pangaea.de/oai/provider?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:pangaea.de:doi:10.1594/PANGAEA.66871 - #The nature of a resource identifier is outside the scope of the OAI-PMH. - #To facilitate access to the resource associated with harvested metadata, repositories should use an element in + # The nature of a resource identifier is outside the scope of the OAI-PMH. + # To facilitate access to the resource associated with harvested metadata, repositories should use an element in # #metadata records to establish a linkage between the record (and the identifier of its item) and the identifier # URL, URN, DOI, etc.) of the associated resource. # #The mandatory Dublin Core format provides the identifier element that should be used for this purpose @@ -66,23 +65,26 @@ def getMetadataStandards(self): A dictionary of schemas in GeoRSS Atom """ schemas = {} - XSI = 'http://www.w3.org/2001/XMLSchema-instance' + XSI = "http://www.w3.org/2001/XMLSchema-instance" try: requestHelper = RequestHelper(self.endpoint, self.logger) requestHelper.setAcceptType(AcceptTypes.default) - neg_source, rss_response = requestHelper.content_negotiate('FsF-F2-01M') + neg_source, rss_response = requestHelper.content_negotiate("FsF-F2-01M") if requestHelper.response_content is not None: feed = feedparser.parse(requestHelper.response_content) - #print(feed.namespaces) + # print(feed.namespaces) for namespace_pre, namespace_uri in feed.namespaces.items(): if namespace_uri not in self.namespaces: self.namespaces.append(str(namespace_uri)) schemas[str(namespace_pre)] = str(namespace_uri) except Exception as e: - print('RSS Error ',e) - self.logger.info('{0} : Could not parse response retrieved from RSS/Atom Feed endpoint -: {1}'.format( - self.metric_id, str(e))) + print("RSS Error ", e) + self.logger.info( + "{0} : Could not parse response retrieved from RSS/Atom Feed endpoint -: {1}".format( + self.metric_id, str(e) + ) + ) return schemas diff --git a/fuji_server/helper/metadata_provider_sparql.py b/fuji_server/helper/metadata_provider_sparql.py index 3e8e5b82..4e875b98 100644 --- a/fuji_server/helper/metadata_provider_sparql.py +++ b/fuji_server/helper/metadata_provider_sparql.py @@ -22,8 +22,10 @@ # SOFTWARE. from urllib.error import HTTPError + import rdflib -from SPARQLWrapper import SPARQLWrapper, SPARQLExceptions, RDFXML +from SPARQLWrapper import RDFXML, SPARQLExceptions, SPARQLWrapper + from fuji_server.helper.metadata_provider import MetadataProvider @@ -74,32 +76,38 @@ def getMetadata(self, queryString): rdf_graph = None content_type = None try: - response = wrapper.query() #application/rdf+xml - content_type = response.info()['content-type'].split(';')[0] - if 'html' in content_type: - self.logger.warning('{0} : Looks like not a valid SPARQL endpoint, content type -: {1} '.format( - self.metric_id, content_type)) + response = wrapper.query() # application/rdf+xml + content_type = response.info()["content-type"].split(";")[0] + if "html" in content_type: + self.logger.warning( + "{0} : Looks like not a valid SPARQL endpoint, content type -: {1} ".format( + self.metric_id, content_type + ) + ) else: - rdf_graph = response.convert() #rdflib.graph.ConjunctiveGraph - #print(rdf_graph.serialize(format='xml')) + rdf_graph = response.convert() # rdflib.graph.ConjunctiveGraph + # print(rdf_graph.serialize(format='xml')) # https://www.w3.org/TR/sparql11-protocol/#query-success # The response body of a successful query operation with a 2XX response is either: # a SPARQL Results Document in XML, JSON, or CSV/TSV format (for SPARQL Query forms SELECT and ASK); or # an RDF graph [RDF-CONCEPTS] serialized, for example, in the RDF/XML syntax [RDF-XML], or an equivalent RDF graph serialization, for SPARQL Query forms DESCRIBE and CONSTRUCT if isinstance(rdf_graph, rdflib.graph.Graph) and len(rdf_graph) > 0: - self.logger.info('{0} : number of triples found in the graph, format -: {1} of {2}'.format( - self.metric_id, len(rdf_graph), content_type)) - graph_text = rdf_graph.serialize(format='ttl') + self.logger.info( + "{0} : number of triples found in the graph, format -: {1} of {2}".format( + self.metric_id, len(rdf_graph), content_type + ) + ) + graph_text = rdf_graph.serialize(format="ttl") for n in rdf_graph.namespaces(): self.namespaces.append(str(n[1])) self.getNamespacesfromIRIs(graph_text) else: - self.logger.warning('{0} : SPARQL query returns NO result.'.format(self.metric_id)) + self.logger.warning("{0} : SPARQL query returns NO result.".format(self.metric_id)) except HTTPError as err1: - self.logger.warning('{0} : HTTPError -: {1}'.format(self.metric_id, err1)) + self.logger.warning("{0} : HTTPError -: {1}".format(self.metric_id, err1)) except SPARQLExceptions.EndPointNotFound as err2: - self.logger.warning('{0} : SPARQLExceptions -: {1}'.format(self.metric_id, err2)) + self.logger.warning("{0} : SPARQLExceptions -: {1}".format(self.metric_id, err2)) return rdf_graph, content_type def getNamespaces(self): diff --git a/fuji_server/helper/metric_helper.py b/fuji_server/helper/metric_helper.py index 757cb3bd..b9f14fa7 100644 --- a/fuji_server/helper/metric_helper.py +++ b/fuji_server/helper/metric_helper.py @@ -6,66 +6,67 @@ from fuji_server.helper.preprocessor import Preprocessor + class MetricHelper: def __init__(self, metric_input_file_name, logger=None): - self.metric_specification = 'https://doi.org/10.5281/zenodo.6461229' + self.metric_specification = "https://doi.org/10.5281/zenodo.6461229" self.formatted_specification = {} self.metric_file_name = metric_input_file_name self.metric_version = None self.total_metrics = 0 self.all_metrics_list = None - self.metric_regex = r'FsF-[FAIR][0-9]?(\.[0-9])?-[0-9]+[MD]+' - self.metric_test_regex = r'FsF-[FAIR][0-9]?(\.[0-9])?-[0-9]+[MD]+(-[0-9]+[a-z]?)' + self.metric_regex = r"FsF-[FAIR][0-9]?(\.[0-9])?-[0-9]+[MD]+" + self.metric_test_regex = r"FsF-[FAIR][0-9]?(\.[0-9])?-[0-9]+[MD]+(-[0-9]+[a-z]?)" self.config = {} if logger: self.logger = logger else: self.logger = logging.getLogger() - ym = re.match('(metrics_v)?([0-9]+\.[0-9]+)(_[a-z]+)?(\.yaml)?', metric_input_file_name) + ym = re.match("(metrics_v)?([0-9]+\.[0-9]+)(_[a-z]+)?(\.yaml)?", metric_input_file_name) if ym: print(ym.groups()) - metric_file_name = '' + metric_file_name = "" self.metric_version = ym[2] if ym[3]: - self.metric_version = ym[2]+ym[3] + self.metric_version = ym[2] + ym[3] - if not str(metric_input_file_name).endswith('.yaml'): - metric_input_file_name = str(metric_input_file_name) + '.yaml' - if not str(metric_input_file_name).startswith('metrics_v'): - metric_input_file_name = 'metrics_v' + metric_input_file_name + if not str(metric_input_file_name).endswith(".yaml"): + metric_input_file_name = str(metric_input_file_name) + ".yaml" + if not str(metric_input_file_name).startswith("metrics_v"): + metric_input_file_name = "metrics_v" + metric_input_file_name if metric_input_file_name: metric_file_name = metric_input_file_name - metric_yml_path = Preprocessor.METRIC_YML_PATH + metric_yml_path = Preprocessor.METRIC_YML_PATH - print('METRIC VERSION' , self.metric_version) - print('LOADING METRICS ', metric_file_name, metric_yml_path) + print("METRIC VERSION", self.metric_version) + print("LOADING METRICS ", metric_file_name, metric_yml_path) specification = {} try: - stream = open(os.path.join(metric_yml_path,metric_file_name), 'r', encoding='utf8') + stream = open(os.path.join(metric_yml_path, metric_file_name), "r", encoding="utf8") specification = yaml.load(stream, Loader=yaml.FullLoader) except FileNotFoundError as e: - print('ERROR: YAML LOADING ERROR -NOT FOUND') + print("ERROR: YAML LOADING ERROR -NOT FOUND") self.logger.error(e) except yaml.YAMLError as e: - print('ERROR: YAML LOADING ERROR - YAML ERROR') + print("ERROR: YAML LOADING ERROR - YAML ERROR") self.logger.error(e) if specification: - if specification.get('metric_specification'): - self.metric_specification = specification.get('metric_specification') - self.config = specification.get('config') - self.all_metrics_list = specification['metrics'] + if specification.get("metric_specification"): + self.metric_specification = specification.get("metric_specification") + self.config = specification.get("config") + self.all_metrics_list = specification["metrics"] self.total_metrics = len(self.all_metrics_list) - print('NUMBER OF LOADED METRICS ', self.total_metrics) + print("NUMBER OF LOADED METRICS ", self.total_metrics) # expected output format of http://localhost:1071/uji/api/v1/metrics # unwanted_keys = ['question_type'] - self.formatted_specification['total'] = self.total_metrics - self.formatted_specification['metrics'] = self.all_metrics_list + self.formatted_specification["total"] = self.total_metrics + self.formatted_specification["metrics"] = self.all_metrics_list else: - print('ERROR: YAML FILE DOES NOT EXIST') + print("ERROR: YAML FILE DOES NOT EXIST") else: - print('ERROR: Invalid YAML File Name') - self.logger.error('Invalid YAML File Name') + print("ERROR: Invalid YAML File Name") + self.logger.error("Invalid YAML File Name") def get_metrics_config(self): if self.config: @@ -77,25 +78,27 @@ def get_custom_metrics(self, wanted_fields): new_dict = {} if self.all_metrics_list: for dictm in self.all_metrics_list: - tm = re.search(self.metric_regex, str(dictm.get('metric_identifier'))) + tm = re.search(self.metric_regex, str(dictm.get("metric_identifier"))) if tm: agnostic_identifier = tm[0] new_dict[agnostic_identifier] = {k: v for k, v in dictm.items() if k in wanted_fields} - new_dict[agnostic_identifier]['agnostic_identifier'] = agnostic_identifier - new_dict[agnostic_identifier]['metric_identifier'] = dictm.get('metric_identifier') + new_dict[agnostic_identifier]["agnostic_identifier"] = agnostic_identifier + new_dict[agnostic_identifier]["metric_identifier"] = dictm.get("metric_identifier") - if isinstance(dictm.get('metric_tests'), list): - for dictt in dictm.get('metric_tests'): - ttm = re.search(self.metric_test_regex, str(dictt.get('metric_test_identifier'))) + if isinstance(dictm.get("metric_tests"), list): + for dictt in dictm.get("metric_tests"): + ttm = re.search(self.metric_test_regex, str(dictt.get("metric_test_identifier"))) if ttm: agnostic_test_identifier = ttm[0] - dictt['agnostic_test_identifier'] = agnostic_test_identifier + dictt["agnostic_test_identifier"] = agnostic_test_identifier else: - self.logger.error('Invalid YAML defined Metric Test: ' + str(dictt.get('metric_test_identifier'))) + self.logger.error( + "Invalid YAML defined Metric Test: " + str(dictt.get("metric_test_identifier")) + ) else: - self.logger.error('Invalid YAML defined Metric: '+str(dictm.get('metric_identifier'))) + self.logger.error("Invalid YAML defined Metric: " + str(dictm.get("metric_identifier"))) else: - self.logger.error('No YAML defined Metric seems to exist: ') + self.logger.error("No YAML defined Metric seems to exist: ") return new_dict def get_metric_version(self): @@ -104,13 +107,13 @@ def get_metric_version(self): def get_metric(self, metric_id): metric = {} for listed_metric in self.all_metrics_list: - if listed_metric.get('metric_identifier') == metric_id: + if listed_metric.get("metric_identifier") == metric_id: metric = listed_metric else: - for metric_test in listed_metric.get('metric_tests'): - if metric_test.get('metric_test_identifier') == metric_id: + for metric_test in listed_metric.get("metric_tests"): + if metric_test.get("metric_test_identifier") == metric_id: metric = listed_metric return metric def get_metrics(self): - return self.formatted_specification \ No newline at end of file + return self.formatted_specification diff --git a/fuji_server/helper/preprocessor.py b/fuji_server/helper/preprocessor.py index 60ecbc92..f318353b 100644 --- a/fuji_server/helper/preprocessor.py +++ b/fuji_server/helper/preprocessor.py @@ -21,16 +21,17 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -import mimetypes -import time - -import yaml import json import logging +import mimetypes import os -from typing import Dict, Any +import time +from typing import Any, Dict from urllib.parse import urlparse + import requests +import yaml + from fuji_server.helper.linked_vocab_helper import linked_vocab_helper @@ -43,20 +44,20 @@ class Preprocessor(object): total_metrics = 0 total_licenses = 0 METRIC_YML_PATH = None - SPDX_URL = 'https://raw.github.com/spdx/license-list-data/master/json/licenses.json' - DATACITE_API_REPO = 'https://api.datacite.org/repositories' - RE3DATA_API = 'https://re3data.org/api/beta/repositories' + SPDX_URL = "https://raw.github.com/spdx/license-list-data/master/json/licenses.json" + DATACITE_API_REPO = "https://api.datacite.org/repositories" + RE3DATA_API = "https://re3data.org/api/beta/repositories" LOV_API = None LOD_CLOUDNET = None BIOPORTAL_API = None BIOPORTAL_KEY = None schema_org_context = [] - schema_org_creativeworks=[] + schema_org_creativeworks = [] all_licenses = [] license_names = [] metadata_standards = {} # key=subject,value =[standards name] - metadata_standards_uris = {} #some additional namespace uris and all uris from above as key + metadata_standards_uris = {} # some additional namespace uris and all uris from above as key all_file_formats = {} science_file_formats = {} long_term_file_formats = {} @@ -73,7 +74,7 @@ class Preprocessor(object): google_data_urls = [] # fuji_server_dir = os.path.dirname(sys.modules['__main__'].__file__) fuji_server_dir = os.path.dirname(os.path.dirname(__file__)) # project_root - header = {'Accept': 'application/json'} + header = {"Accept": "application/json"} logger = logging.getLogger(__name__) data_files_limit = 3 metric_specification = None @@ -91,14 +92,14 @@ def __new__(cls): @classmethod def set_mime_types(cls): try: - mimes = requests.get('https://raw.githubusercontent.com/jshttp/mime-db/master/db.json').json() + mimes = requests.get("https://raw.githubusercontent.com/jshttp/mime-db/master/db.json").json() for mime_type, mime_data in mimes.items(): - if mime_data.get('extensions'): - for ext in mime_data.get('extensions'): - #if '.' + ext not in mimetypes.types_map: - mimetypes.add_type(mime_type, '.' + ext, strict=True) + if mime_data.get("extensions"): + for ext in mime_data.get("extensions"): + # if '.' + ext not in mimetypes.types_map: + mimetypes.add_type(mime_type, "." + ext, strict=True) except Exception as e: - cls.logger.warning('Loading additional mime types failed, will continue with standard set') + cls.logger.warning("Loading additional mime types failed, will continue with standard set") @classmethod def set_max_content_size(cls, size): @@ -108,20 +109,20 @@ def set_max_content_size(cls, size): def set_remote_log_info(cls, host, path): if host: try: - request = requests.get('http://' + host + path) + request = requests.get("http://" + host + path) if request.status_code == 200: cls.remote_log_host = host cls.remote_log_path = path else: - cls.logger.warning('Remote Logging not possible, URL response: ' + str(request.status_code)) + cls.logger.warning("Remote Logging not possible, URL response: " + str(request.status_code)) except Exception as e: - cls.logger.warning('Remote Logging not possible ,please correct : ' + str(host) + ' ' + str(path)) + cls.logger.warning("Remote Logging not possible ,please correct : " + str(host) + " " + str(path)) @classmethod def set_google_custom_search_info(cls, search_id, api_key, web_search): if api_key: cls.google_custom_search_id = search_id - cls.google_custom_search_api_key= api_key + cls.google_custom_search_api_key = api_key cls.google_web_search_enabled = web_search @classmethod @@ -132,14 +133,14 @@ def get_identifiers_org_data(cls): @classmethod def retrieve_identifiers_org_data(cls): - std_uri_path = os.path.join(cls.fuji_server_dir, 'data', 'identifiers_org_resolver_data.json') - with open(std_uri_path, encoding='utf8') as f: + std_uri_path = os.path.join(cls.fuji_server_dir, "data", "identifiers_org_resolver_data.json") + with open(std_uri_path, encoding="utf8") as f: identifiers_data = json.load(f) if identifiers_data: - for namespace in identifiers_data['payload']['namespaces']: - cls.identifiers_org_data[namespace['prefix']] = { - 'pattern': namespace['pattern'], - 'url_pattern': namespace['resources'][0]['urlPattern'] + for namespace in identifiers_data["payload"]["namespaces"]: + cls.identifiers_org_data[namespace["prefix"]] = { + "pattern": namespace["pattern"], + "url_pattern": namespace["resources"][0]["urlPattern"], } @classmethod @@ -151,7 +152,7 @@ def get_resource_types(cls): @classmethod def retrieve_resource_types(cls): ns = [] - ns_file_path = os.path.join(cls.fuji_server_dir, 'data', 'ResourceTypes.txt') + ns_file_path = os.path.join(cls.fuji_server_dir, "data", "ResourceTypes.txt") with open(ns_file_path) as f: ns = [line.lower().rstrip() for line in f] if ns: @@ -160,14 +161,14 @@ def retrieve_resource_types(cls): @classmethod def retrieve_schema_org_context(cls): data = {} - std_uri_path = os.path.join(cls.fuji_server_dir, 'data', 'jsonldcontext.json') + std_uri_path = os.path.join(cls.fuji_server_dir, "data", "jsonldcontext.json") with open(std_uri_path) as f: data = json.load(f) if data: - for context, schemadict in data.get('@context').items(): + for context, schemadict in data.get("@context").items(): if isinstance(schemadict, dict): - schemauri = schemadict.get('@id') - if str(schemauri).startswith('schema:'): + schemauri = schemadict.get("@id") + if str(schemauri).startswith("schema:"): cls.schema_org_context.append(str(context).lower()) bioschema_context = cls.get_schema_org_creativeworks() cls.schema_org_context.extend(bioschema_context) @@ -175,12 +176,12 @@ def retrieve_schema_org_context(cls): @classmethod def retrieve_schema_org_creativeworks(cls, include_bioschemas=True): - data=[] - cw_path = os.path.join(cls.fuji_server_dir, 'data', 'creativeworktypes.txt') + data = [] + cw_path = os.path.join(cls.fuji_server_dir, "data", "creativeworktypes.txt") with open(cw_path) as f: data = f.read().splitlines() if include_bioschemas: - bs_path = os.path.join(cls.fuji_server_dir, 'data', 'bioschemastypes.txt') + bs_path = os.path.join(cls.fuji_server_dir, "data", "bioschemastypes.txt") with open(bs_path) as f: bdata = f.read().splitlines() data.extend(bdata) @@ -203,40 +204,40 @@ def set_data_files_limit(cls, limit): cls.data_files_limit = limit @classmethod - def set_metric_yaml_path(cls,yaml_metric_path): + def set_metric_yaml_path(cls, yaml_metric_path): cls.METRIC_YML_PATH = yaml_metric_path @classmethod def retrieve_metrics_yaml(cls, yaml_metric_path): cls.METRIC_YML_PATH = yaml_metric_path - #cls.data_files_limit = limit - #cls.metric_specification = specification_uri - stream = open(cls.METRIC_YML_PATH, 'r', encoding='utf8') + # cls.data_files_limit = limit + # cls.metric_specification = specification_uri + stream = open(cls.METRIC_YML_PATH, "r", encoding="utf8") try: specification = yaml.load(stream, Loader=yaml.FullLoader) except yaml.YAMLError as e: cls.logger.error(e) - cls.all_metrics_list = specification['metrics'] + cls.all_metrics_list = specification["metrics"] cls.total_metrics = len(cls.all_metrics_list) # expected output format of http://localhost:1071/uji/api/v1/metrics # unwanted_keys = ['question_type'] - cls.formatted_specification['total'] = cls.total_metrics + cls.formatted_specification["total"] = cls.total_metrics # temp_list = [] # for dictm in cls.all_metrics_list: # temp_dict = {k: v for k, v in dictm.items() if k not in unwanted_keys} # temp_list.append(dictm) # cls.formatted_specification['metrics'] = temp_list - cls.formatted_specification['metrics'] = cls.all_metrics_list + cls.formatted_specification["metrics"] = cls.all_metrics_list @classmethod def retrieve_datacite_re3repos(cls): # retrieve all client id and re3data doi from datacite - isDebugMode=True - re3dict_path = os.path.join(cls.fuji_server_dir, 'data', 'repodois.json') + isDebugMode = True + re3dict_path = os.path.join(cls.fuji_server_dir, "data", "repodois.json") repolistdate = os.path.getmtime(re3dict_path) try: - #update once a day + # update once a day if time.time() - repolistdate >= 86400: isDebugMode = False except: @@ -245,30 +246,30 @@ def retrieve_datacite_re3repos(cls): with open(re3dict_path) as f: cls.re3repositories = json.load(f) else: - print('updating re3data dois') - p = {'query': 're3data_id:*'} + print("updating re3data dois") + p = {"query": "re3data_id:*"} try: req = requests.get(cls.DATACITE_API_REPO, params=p, headers=cls.header) raw = req.json() - for r in raw['data']: - cls.re3repositories[r['id']] = r['attributes']['re3data'] - while 'next' in raw['links']: - response = requests.get(raw['links']['next']).json() - for r in response['data']: - cls.re3repositories[r['id']] = r['attributes']['re3data'] - raw['links'] = response['links'] - #fix wrong entry - cls.re3repositories['bl.imperial'] = 'http://doi.org/10.17616/R3K64N' - with open(re3dict_path, 'w') as f2: + for r in raw["data"]: + cls.re3repositories[r["id"]] = r["attributes"]["re3data"] + while "next" in raw["links"]: + response = requests.get(raw["links"]["next"]).json() + for r in response["data"]: + cls.re3repositories[r["id"]] = r["attributes"]["re3data"] + raw["links"] = response["links"] + # fix wrong entry + cls.re3repositories["bl.imperial"] = "http://doi.org/10.17616/R3K64N" + with open(re3dict_path, "w") as f2: json.dump(cls.re3repositories, f2) except requests.exceptions.RequestException as e: - print('Preprocessor Error: '+ str(e)) + print("Preprocessor Error: " + str(e)) cls.logger.error(e) @classmethod def get_access_rights(cls): data = None - jsn_path = os.path.join(cls.fuji_server_dir, 'data', 'access_rights.json') + jsn_path = os.path.join(cls.fuji_server_dir, "data", "access_rights.json") with open(jsn_path) as f: data = json.load(f) return data @@ -276,23 +277,23 @@ def get_access_rights(cls): @classmethod def retrieve_licenses(cls, isDebugMode): data = None - jsn_path = os.path.join(cls.fuji_server_dir, 'data', 'licenses.json') + jsn_path = os.path.join(cls.fuji_server_dir, "data", "licenses.json") # The repository can be found at https://github.com/spdx/license-list-data # https://spdx.org/spdx-license-list/license-list-overview if isDebugMode: # use local file instead of downloading the file online with open(jsn_path) as f: data = json.load(f) else: - #cls.SPDX_URL = license_path + # cls.SPDX_URL = license_path try: r = requests.get(cls.SPDX_URL) try: if r.status_code == 200: resp = r.json() - data = resp['licenses'] + data = resp["licenses"] for d in data: - d['name'] = d['name'].lower() # convert license name to lowercase - with open(jsn_path, 'w') as f: + d["name"] = d["name"].lower() # convert license name to lowercase + with open(jsn_path, "w") as f: json.dump(data, f) except json.decoder.JSONDecodeError as e1: cls.logger.error(e1) @@ -301,27 +302,28 @@ def retrieve_licenses(cls, isDebugMode): if data: cls.all_licenses = data for licenceitem in cls.all_licenses: - seeAlso = licenceitem.get('seeAlso') + seeAlso = licenceitem.get("seeAlso") # some cleanup to add modified licence URLs for licenceurl in seeAlso: - if 'http:' in licenceurl: - altURL = licenceurl.replace('http:', 'https:') + if "http:" in licenceurl: + altURL = licenceurl.replace("http:", "https:") else: - altURL = licenceurl.replace('https:', 'http:') + altURL = licenceurl.replace("https:", "http:") if altURL not in seeAlso: seeAlso.append(altURL) - if licenceurl.endswith('/legalcode'): - altURL = licenceurl.replace('/legalcode', '') + if licenceurl.endswith("/legalcode"): + altURL = licenceurl.replace("/legalcode", "") seeAlso.append(altURL) cls.total_licenses = len(data) - cls.license_names = [d['name'] for d in data if 'name' in d] + cls.license_names = [d["name"] for d in data if "name" in d] # referenceNumber = [r['referenceNumber'] for r in data if 'referenceNumber' in r] # seeAlso = [s['seeAlso'] for s in data if 'seeAlso' in s] # cls.license_urls = dict(zip(referenceNumber, seeAlso)) + @classmethod def retrieve_metadata_standards_uris(cls): data = {} - std_uri_path = os.path.join(cls.fuji_server_dir, 'data', 'metadata_standards_uris.json') + std_uri_path = os.path.join(cls.fuji_server_dir, "data", "metadata_standards_uris.json") with open(std_uri_path) as f: data = json.load(f) if data: @@ -329,14 +331,14 @@ def retrieve_metadata_standards_uris(cls): @classmethod def retrieve_metadata_standards(cls): - #cls.retrieve_metadata_standards_uris() + # cls.retrieve_metadata_standards_uris() data = {} - std_path = os.path.join(cls.fuji_server_dir, 'data', 'metadata_standards.json') + std_path = os.path.join(cls.fuji_server_dir, "data", "metadata_standards.json") # The original repository can be retrieved via https://rdamsc.bath.ac.uk/api/m # or at https://github.com/rd-alliance/metadata-catalog-dev with open(std_path) as f: data = json.load(f) - '''else: + """else: try: r = requests.get(catalog_url) try: @@ -366,35 +368,34 @@ def retrieve_metadata_standards(cls): except json.decoder.JSONDecodeError as e1: cls.logger.error(e1) except requests.exceptions.RequestException as e2: - cls.logger.error(e2)''' + cls.logger.error(e2)""" if data: cls.metadata_standards = data @classmethod def retrieve_all_file_formats(cls): - data={} - sci_file_path = os.path.join(cls.fuji_server_dir, 'data', 'file_formats.json') + data = {} + sci_file_path = os.path.join(cls.fuji_server_dir, "data", "file_formats.json") with open(sci_file_path) as f: data = json.load(f) if data: cls.all_file_formats = data - @classmethod def retrieve_science_file_formats(cls, isDebugMode): data = {} if not cls.all_file_formats: cls.retrieve_all_file_formats() for file in cls.all_file_formats.values(): - if 'scientific format' in file.get('reason'): + if "scientific format" in file.get("reason"): domain = None - if file.get('domain'): - domain = file.get('domain')[0] - for mime in file.get('mime'): + if file.get("domain"): + domain = file.get("domain")[0] + for mime in file.get("mime"): data[mime] = domain - '''sci_file_path = os.path.join(cls.fuji_server_dir, 'data', 'science_formats.json') + """sci_file_path = os.path.join(cls.fuji_server_dir, 'data', 'science_formats.json') with open(sci_file_path) as f: - data = json.load(f)''' + data = json.load(f)""" if data: cls.science_file_formats = data @@ -404,15 +405,15 @@ def retrieve_long_term_file_formats(cls, isDebugMode): if not cls.all_file_formats: cls.retrieve_all_file_formats() for file in cls.all_file_formats.values(): - if 'long term format' in file.get('reason'): + if "long term format" in file.get("reason"): domain = None - if file.get('domain'): - domain = file.get('domain')[0] - for mime in file.get('mime'): + if file.get("domain"): + domain = file.get("domain")[0] + for mime in file.get("mime"): data[mime] = domain - '''sci_file_path = os.path.join(cls.fuji_server_dir, 'data', 'longterm_formats.json') + """sci_file_path = os.path.join(cls.fuji_server_dir, 'data', 'longterm_formats.json') with open(sci_file_path) as f: - data = json.load(f)''' + data = json.load(f)""" if data: cls.long_term_file_formats = data @@ -422,22 +423,22 @@ def retrieve_open_file_formats(cls, isDebugMode): if not cls.all_file_formats: cls.retrieve_all_file_formats() for file in cls.all_file_formats.values(): - if 'open format' in file.get('reason'): + if "open format" in file.get("reason"): domain = None - if file.get('domain'): - domain = file.get('domain')[0] - for mime in file.get('mime'): + if file.get("domain"): + domain = file.get("domain")[0] + for mime in file.get("mime"): data[mime] = domain - '''sci_file_path = os.path.join(cls.fuji_server_dir, 'data', 'open_formats.json') + """sci_file_path = os.path.join(cls.fuji_server_dir, 'data', 'open_formats.json') with open(sci_file_path) as f: - data = json.load(f)''' + data = json.load(f)""" if data: cls.open_file_formats = data @classmethod def retrieve_standard_protocols(cls, isDebugMode): data = {} - protocols_path = os.path.join(cls.fuji_server_dir, 'data', 'standard_uri_protocols.json') + protocols_path = os.path.join(cls.fuji_server_dir, "data", "standard_uri_protocols.json") with open(protocols_path) as f: data = json.load(f) if data: @@ -446,10 +447,10 @@ def retrieve_standard_protocols(cls, isDebugMode): @classmethod def retrieve_default_namespaces(cls): ns = [] - ns_file_path = os.path.join(cls.fuji_server_dir, 'data', 'default_namespaces.txt') + ns_file_path = os.path.join(cls.fuji_server_dir, "data", "default_namespaces.txt") with open(ns_file_path) as f: - #ns = [line.split(':',1)[1].strip() for line in f] - ns = [line.rstrip().rstrip('/#') for line in f] + # ns = [line.split(':',1)[1].strip() for line in f] + ns = [line.rstrip().rstrip("/#") for line in f] if ns: cls.default_namespaces = ns @@ -465,79 +466,77 @@ def retrieve_linked_vocab_index(cls): lov_helper.set_linked_vocab_index() cls.linked_vocab_index = lov_helper.linked_vocab_index - - @classmethod def retrieve_linkedvocabs(cls, lov_api, lodcloud_api, isDebugMode): - #def retrieve_linkedvocabs(cls, lov_api, lodcloud_api, bioportal_api, bioportal_key, isDebugMode): + # def retrieve_linkedvocabs(cls, lov_api, lodcloud_api, bioportal_api, bioportal_key, isDebugMode): # may take around 20 minutes to test and import all vocabs cls.LOV_API = lov_api cls.LOD_CLOUDNET = lodcloud_api - #cls.BIOPORTAL_API = bioportal_api - #cls.BIOPORTAL_KEY = bioportal_key - ld_path = os.path.join(cls.fuji_server_dir, 'data', 'linked_vocab.json') + # cls.BIOPORTAL_API = bioportal_api + # cls.BIOPORTAL_KEY = bioportal_key + ld_path = os.path.join(cls.fuji_server_dir, "data", "linked_vocab.json") vocabs = [] if isDebugMode: with open(ld_path) as f: cls.linked_vocabs = json.load(f) else: - #1. retrieve records from https://lov.linkeddata.es/dataset/lov/api - #714 vocabs, of which 104 vocabs uri specified are broken (02072020) + # 1. retrieve records from https://lov.linkeddata.es/dataset/lov/api + # 714 vocabs, of which 104 vocabs uri specified are broken (02072020) try: req = requests.get(lov_api, headers=cls.header) raw_lov = req.json() broken = [] - cls.logger.info('{0} vocabs specified at {1}'.format(len(raw_lov), lov_api)) + cls.logger.info("{0} vocabs specified at {1}".format(len(raw_lov), lov_api)) for lov in raw_lov: - title = [i.get('value') for i in lov.get('titles') if i.get('lang') == 'en'][0] - uri = lov.get('uri') - nsp = lov.get('nsp') + title = [i.get("value") for i in lov.get("titles") if i.get("lang") == "en"][0] + uri = lov.get("uri") + nsp = lov.get("nsp") if uri and nsp: if cls.isURIActive(uri): - vocabs.append({'title': title, 'namespace': nsp, 'uri': uri, 'prefix': lov.get('prefix')}) + vocabs.append({"title": title, "namespace": nsp, "uri": uri, "prefix": lov.get("prefix")}) else: broken.append(uri) else: broken.append(uri) - cls.logger.info('{0} vocabs uri specified are broken'.format(len(broken))) + cls.logger.info("{0} vocabs uri specified are broken".format(len(broken))) except requests.exceptions.RequestException as e: cls.logger.error(e) except requests.exceptions.ConnectionError as e1: cls.logger.error(e1) - all_uris = [d['uri'] for d in vocabs if 'uri' in d] - #2a. retrieve vocabs from https://lod-cloud.net/lod-data.json - #1440 vocabs specified of which 1008 broken, so this source may be excluded in future + all_uris = [d["uri"] for d in vocabs if "uri" in d] + # 2a. retrieve vocabs from https://lod-cloud.net/lod-data.json + # 1440 vocabs specified of which 1008 broken, so this source may be excluded in future try: r = requests.get(lodcloud_api, headers=cls.header) raw = r.json() - cls.logger.info('{0} vocabs specified at {1}'.format(len(raw), lodcloud_api)) + cls.logger.info("{0} vocabs specified at {1}".format(len(raw), lodcloud_api)) broken_lod = [] for r in raw: d = raw.get(r) - website = d.get('website') - ns = d.get('namespace') + website = d.get("website") + ns = d.get("namespace") if website and ns: if cls.isURIActive(website): if website not in all_uris: temp = { - 'title': d['title'], - 'namespace': ns, - 'uri': website, - 'prefix': d.get('identifier') + "title": d["title"], + "namespace": ns, + "uri": website, + "prefix": d.get("identifier"), } vocabs.append(temp) else: broken_lod.append(website) else: broken_lod.append(website) - cls.logger.info('{0} vocabs uri specified are broken'.format(len(broken_lod))) + cls.logger.info("{0} vocabs uri specified are broken".format(len(broken_lod))) except requests.exceptions.RequestException as e: cls.logger.error(e) except requests.exceptions.ConnectionError as e1: cls.logger.error(e1) - #2b retrieve from BioPortal (excluded for now as the namespace in the ontology not necessarily use bioportal uri) + # 2b retrieve from BioPortal (excluded for now as the namespace in the ontology not necessarily use bioportal uri) # try: # params = dict() # params["apikey"] = bioportal_key @@ -556,15 +555,14 @@ def retrieve_linkedvocabs(cls, lov_api, lodcloud_api, isDebugMode): # except requests.exceptions.ConnectionError as e1: # cls.logger.exception(e1) - #3. write to a local file + # 3. write to a local file try: - with open(ld_path, 'w') as f: + with open(ld_path, "w") as f: json.dump(vocabs, f) cls.linked_vocabs = vocabs except IOError as e: - cls.logger.error('Couldn\'t write to file {}.'.format(ld_path)) - #for vocab in vocabs.items(): - + cls.logger.error("Couldn't write to file {}.".format(ld_path)) + # for vocab in vocabs.items(): @staticmethod def uri_validator(u): @@ -603,7 +601,7 @@ def getRE3repositories(cls): @classmethod def getLinkedVocabs(cls): if not cls.linked_vocabs: - #cls.retrieve_linkedvocabs(cls.LOV_API, cls.LOD_CLOUDNET, cls.BIOPORTAL_API, cls.BIOPORTAL_KEY, True) + # cls.retrieve_linkedvocabs(cls.LOV_API, cls.LOD_CLOUDNET, cls.BIOPORTAL_API, cls.BIOPORTAL_KEY, True) cls.retrieve_linkedvocabs(cls.LOV_API, cls.LOD_CLOUDNET, True) return cls.linked_vocabs @@ -613,13 +611,13 @@ def getDefaultNamespaces(cls): cls.retrieve_default_namespaces() return cls.default_namespaces - '''@classmethod + """@classmethod def get_metrics(cls): return cls.formatted_specification @classmethod def get_total_metrics(cls): - return cls.total_metrics''' + return cls.total_metrics""" @classmethod def get_total_licenses(cls): @@ -631,7 +629,7 @@ def get_custom_metrics(cls, wanted_fields): if not cls.all_metrics_list: cls.retrieve_metrics_yaml(cls.METRIC_YML_PATH) for dictm in cls.all_metrics_list: - new_dict[dictm['metric_identifier']] = {k: v for k, v in dictm.items() if k in wanted_fields} + new_dict[dictm["metric_identifier"]] = {k: v for k, v in dictm.items() if k in wanted_fields} return new_dict @classmethod diff --git a/fuji_server/helper/repository_helper.py b/fuji_server/helper/repository_helper.py index 9b9e2bb4..9e937f99 100644 --- a/fuji_server/helper/repository_helper.py +++ b/fuji_server/helper/repository_helper.py @@ -28,71 +28,71 @@ from tldextract import extract from fuji_server.helper.preprocessor import Preprocessor -from fuji_server.helper.request_helper import RequestHelper, AcceptTypes +from fuji_server.helper.request_helper import AcceptTypes, RequestHelper class RepositoryHelper: - DATACITE_REPOSITORIES = Preprocessor.getRE3repositories() - ns = {'r3d': 'http://www.re3data.org/schema/2-2'} - RE3DATA_APITYPES = ['OAI-PMH', 'SOAP', 'SPARQL', 'SWORD', 'OpenDAP'] + ns = {"r3d": "http://www.re3data.org/schema/2-2"} + RE3DATA_APITYPES = ["OAI-PMH", "SOAP", "SPARQL", "SWORD", "OpenDAP"] def __init__(self, client_id, logger, landingpage): self.client_id = client_id self.logger = logger self.landing_page_url = landingpage - #self.pid_scheme = pidscheme + # self.pid_scheme = pidscheme self.re3metadata_raw = None self.repository_name = None self.repository_url = None self.repo_apis = {} self.repo_standards = [] - #self.logger = logging.getLogger(logger) - #print(__name__) + # self.logger = logging.getLogger(logger) + # print(__name__) def lookup_re3data(self): - if self.client_id: #and self.pid_scheme: - + if self.client_id: # and self.pid_scheme: re3doi = RepositoryHelper.DATACITE_REPOSITORIES.get(self.client_id) # {client_id,re3doi} if re3doi: if idutils.is_doi(re3doi): - short_re3doi = idutils.normalize_pid(re3doi, scheme='doi') #https://doi.org/10.17616/R3XS37 + short_re3doi = idutils.normalize_pid(re3doi, scheme="doi") # https://doi.org/10.17616/R3XS37 else: re3doi = None # pid -> clientId -> repo doi-> re3id, and query repository metadata from re3api if re3doi: - self.logger.info('FsF-R1.3-01M : Found match re3data (DOI-based) record') - query_url = Preprocessor.RE3DATA_API + '?query=' + short_re3doi # https://re3data.org/api/beta/repositories?query= + self.logger.info("FsF-R1.3-01M : Found match re3data (DOI-based) record") + query_url = ( + Preprocessor.RE3DATA_API + "?query=" + short_re3doi + ) # https://re3data.org/api/beta/repositories?query= q = RequestHelper(url=query_url) q.setAcceptType(AcceptTypes.xml) - re_source, xml = q.content_negotiate(metric_id='RE3DATA') + re_source, xml = q.content_negotiate(metric_id="RE3DATA") try: if isinstance(xml, bytes): xml = xml.decode().encode() root = etree.fromstring(xml) - # - re3link = root.xpath('//link')[0].attrib['href'] + # + re3link = root.xpath("//link")[0].attrib["href"] if re3link is not None: - self.logger.info('FsF-R1.3-01M : Found match re3data metadata record -: ' + str(re3link)) + self.logger.info("FsF-R1.3-01M : Found match re3data metadata record -: " + str(re3link)) # query reposiroty metadata q2 = RequestHelper(url=re3link) q2.setAcceptType(AcceptTypes.xml) - re3_source, re3_response = q2.content_negotiate(metric_id='RE3DATA') + re3_source, re3_response = q2.content_negotiate(metric_id="RE3DATA") self.re3metadata_raw = re3_response self.parseRe3data() except Exception as e: - self.logger.warning('FsF-R1.3-01M : Malformed re3data (DOI-based) record received: ' + str(e)) + self.logger.warning("FsF-R1.3-01M : Malformed re3data (DOI-based) record received: " + str(e)) else: - self.logger.warning('FsF-R1.3-01M : No DOI of client id is available from datacite api') + self.logger.warning("FsF-R1.3-01M : No DOI of client id is available from datacite api") def parseRe3data(self): - #http://schema.re3data.org/3-0/re3data-example-V3-0.xml + # http://schema.re3data.org/3-0/re3data-example-V3-0.xml root = etree.fromstring(self.re3metadata_raw) # ns = {k: v for k, v in root.nsmap.items() if k} - name = root.xpath('//r3d:repositoryName', namespaces=RepositoryHelper.ns) - url = root.xpath('//r3d:repositoryURL', namespaces=RepositoryHelper.ns) + name = root.xpath("//r3d:repositoryName", namespaces=RepositoryHelper.ns) + url = root.xpath("//r3d:repositoryURL", namespaces=RepositoryHelper.ns) if name: self.repository_name = name[0].text if url: @@ -100,23 +100,31 @@ def parseRe3data(self): repo_domain_verified = False repo_url_parts = extract(self.repository_url) landing_url_parts = extract(self.landing_page_url) - repo_domain = repo_url_parts.domain + '.' + repo_url_parts.suffix - landing_domain = landing_url_parts.domain + '.' + landing_url_parts.suffix + repo_domain = repo_url_parts.domain + "." + repo_url_parts.suffix + landing_domain = landing_url_parts.domain + "." + landing_url_parts.suffix if landing_domain == repo_domain: repo_domain_verified = True - self.logger.info('FsF-R1.3-01M : Domain name listed in re3data metadata record matches landing page domain-: ' + str(repo_domain)) + self.logger.info( + "FsF-R1.3-01M : Domain name listed in re3data metadata record matches landing page domain-: " + + str(repo_domain) + ) else: - self.logger.warning('FsF-R1.3-01M : Domain name listed in re3data metadata record does not match landing page domain, therefore ignoring re3data records -: ' + str(repo_domain)+' - '+str(landing_domain)) + self.logger.warning( + "FsF-R1.3-01M : Domain name listed in re3data metadata record does not match landing page domain, therefore ignoring re3data records -: " + + str(repo_domain) + + " - " + + str(landing_domain) + ) if repo_domain_verified: - apis = root.xpath('//r3d:api', namespaces=RepositoryHelper.ns) + apis = root.xpath("//r3d:api", namespaces=RepositoryHelper.ns) for a in apis: - apiType = a.attrib['apiType'] + apiType = a.attrib["apiType"] if apiType in RepositoryHelper.RE3DATA_APITYPES: - self.repo_apis[a.attrib['apiType']] = a.text - #standards = root.xpath('//r3d:metadataStandard/r3d:metadataStandardName', namespaces=RepositoryHelper.ns) - standards = root.xpath('//r3d:metadataStandard/r3d:metadataStandardURL', namespaces=RepositoryHelper.ns) + self.repo_apis[a.attrib["apiType"]] = a.text + # standards = root.xpath('//r3d:metadataStandard/r3d:metadataStandardName', namespaces=RepositoryHelper.ns) + standards = root.xpath("//r3d:metadataStandard/r3d:metadataStandardURL", namespaces=RepositoryHelper.ns) self.repo_standards = [s.text for s in standards] - #print('#### ', self.repo_standards) + # print('#### ', self.repo_standards) def getRe3MetadataStandards(self): return self.repo_standards diff --git a/fuji_server/helper/request_helper.py b/fuji_server/helper/request_helper.py index c4f983a4..664dc2d4 100644 --- a/fuji_server/helper/request_helper.py +++ b/fuji_server/helper/request_helper.py @@ -21,28 +21,27 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. import gzip +import http.cookiejar import json import logging import mimetypes import re +import ssl import sys import traceback +import urllib from enum import Enum -import http.cookiejar - from io import BytesIO -from urllib.request import build_opener, HTTPCookieProcessor +from urllib.request import HTTPCookieProcessor, build_opener from zipfile import ZipFile import extruct import lxml import rdflib -import urllib -import ssl from tika import parser -from fuji_server.helper.preprocessor import Preprocessor from fuji_server.helper.metadata_collector import MetadataFormats +from fuji_server.helper.preprocessor import Preprocessor class FUJIHTTPRedirectHandler(urllib.request.HTTPRedirectHandler): @@ -51,48 +50,49 @@ def __init__(self): self.redirect_list = [] self.redirect_url = None self.redirect_status_list = [] + def redirect_request(self, req, fp, code, msg, hdrs, newurl): self.redirect_url = newurl self.redirect_list.append(newurl) - self.redirect_status_list.append((newurl,code)) + self.redirect_status_list.append((newurl, code)) return super().redirect_request(req, fp, code, msg, hdrs, newurl) + class AcceptTypes(Enum): - #TODO: this seems to be quite error prone.. - datacite_json = 'application/vnd.datacite.datacite+json' - datacite_xml = 'application/vnd.datacite.datacite+xml' - schemaorg = 'application/vnd.schemaorg.ld+json, application/ld+json' - html = 'text/html, application/xhtml+xml' - html_xml = 'text/html, application/xhtml+xml, application/xml;q=0.5, text/xml;q=0.5, application/rdf+xml;q=0.5' - xml = 'application/xml, text/xml;q=0.5' - #linkset = 'application/linkset+json, application/json, application/linkset' <-- causes bug #329 - linkset = 'application/linkset+json, application/linkset' - json = 'application/json, text/json;q=0.5' - jsonld = 'application/ld+json' - atom = 'application/atom+xml' - rdfjson = 'application/rdf+json' - nt = 'text/n3, application/n-triples' - rdfxml = 'application/rdf+xml, text/rdf;q=0.5, application/xml;q=0.1, text/xml;q=0.1' - turtle = 'text/ttl, text/turtle, application/turtle, application/x-turtle;q=0.6, text/n3;q=0.3, text/rdf+n3;q=0.3, application/rdf+n3;q=0.3' - rdf = 'text/turtle, application/turtle, application/x-turtle;q=0.8, application/rdf+xml, text/n3;q=0.9, text/rdf+n3;q=0.9,application/ld+json' - default = 'text/html, */*' + # TODO: this seems to be quite error prone.. + datacite_json = "application/vnd.datacite.datacite+json" + datacite_xml = "application/vnd.datacite.datacite+xml" + schemaorg = "application/vnd.schemaorg.ld+json, application/ld+json" + html = "text/html, application/xhtml+xml" + html_xml = "text/html, application/xhtml+xml, application/xml;q=0.5, text/xml;q=0.5, application/rdf+xml;q=0.5" + xml = "application/xml, text/xml;q=0.5" + # linkset = 'application/linkset+json, application/json, application/linkset' <-- causes bug #329 + linkset = "application/linkset+json, application/linkset" + json = "application/json, text/json;q=0.5" + jsonld = "application/ld+json" + atom = "application/atom+xml" + rdfjson = "application/rdf+json" + nt = "text/n3, application/n-triples" + rdfxml = "application/rdf+xml, text/rdf;q=0.5, application/xml;q=0.1, text/xml;q=0.1" + turtle = "text/ttl, text/turtle, application/turtle, application/x-turtle;q=0.6, text/n3;q=0.3, text/rdf+n3;q=0.3, application/rdf+n3;q=0.3" + rdf = "text/turtle, application/turtle, application/x-turtle;q=0.8, application/rdf+xml, text/n3;q=0.9, text/rdf+n3;q=0.9,application/ld+json" + default = "text/html, */*" @staticmethod def list(): atypes = [] - al = list(map(lambda c: c.value.split(','), AcceptTypes)) - return list(set([item.strip().split(';', 1)[0] for sublist in al for item in sublist])) + al = list(map(lambda c: c.value.split(","), AcceptTypes)) + return list(set([item.strip().split(";", 1)[0] for sublist in al for item in sublist])) class RequestHelper: - def __init__(self, url, logInst: object = None): self.checked_content = {} if logInst: self.logger = logInst else: - self.logger = Preprocessor.logger #logging.getLogger(__name__) - self.format = None #Guessed Metadata Format + self.logger = Preprocessor.logger # logging.getLogger(__name__) + self.format = None # Guessed Metadata Format self.request_url = url self.redirect_url = None self.resolved_url = None @@ -104,28 +104,28 @@ def __init__(self, url, logInst: object = None): self.response_status = None self.response_content = None # normally the response body self.response_header = None - self.response_charset = 'utf-8' + self.response_charset = "utf-8" self.content_type = None self.content_size = 0 - #maximum size which will be downloaded and analysed by F-UJU + # maximum size which will be downloaded and analysed by F-UJU self.max_content_size = Preprocessor.max_content_size self.checked_content_hash = None self.authtoken = None self.tokentype = None - def setAuthToken(self,authtoken, tokentype): + def setAuthToken(self, authtoken, tokentype): if isinstance(authtoken, str): self.authtoken = authtoken - if tokentype in ['Bearer', 'Basic']: + if tokentype in ["Bearer", "Basic"]: self.tokentype = tokentype def setAcceptType(self, accepttype): if not isinstance(accepttype, AcceptTypes): - raise TypeError('type must be an instance of AcceptTypes enum') + raise TypeError("type must be an instance of AcceptTypes enum") self.accept_type = accepttype.value def addAcceptType(self, mime_type): - self.accept_type= mime_type+','+self.accept_type + self.accept_type = mime_type + "," + self.accept_type def getAcceptType(self): return self.accept_type @@ -133,7 +133,7 @@ def getAcceptType(self): def setRequestUrl(self, url): self.request_url = url - #def getHTTPResponse(self): + # def getHTTPResponse(self): # return self.http_response def getResponseContent(self): @@ -146,36 +146,39 @@ def getResponseHeader(self): return dict(self.response_header) def content_decode(self, content): - if isinstance(content, 'str'): + if isinstance(content, "str"): a = 1 return True - def content_negotiate(self, metric_id='', ignore_html=True): + def content_negotiate(self, metric_id="", ignore_html=True): self.metric_id = metric_id format = MetadataFormats.HTML status_code = None tp_response = None if self.request_url is not None: try: - self.logger.info('{0} : Retrieving page -: {1} as {2}'.format(metric_id, self.request_url, - self.accept_type)) + self.logger.info( + "{0} : Retrieving page -: {1} as {2}".format(metric_id, self.request_url, self.accept_type) + ) urllib.request.HTTPRedirectHandler.http_error_308 = urllib.request.HTTPRedirectHandler.http_error_301 - cookiejar = http.cookiejar.MozillaCookieJar() + cookiejar = http.cookiejar.MozillaCookieJar() context = ssl._create_unverified_context() - context.set_ciphers('DEFAULT@SECLEVEL=1') + context.set_ciphers("DEFAULT@SECLEVEL=1") redirect_handler = FUJIHTTPRedirectHandler() - opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cookiejar), urllib.request.HTTPSHandler(context=context),urllib.request.HTTPHandler(),redirect_handler ) + opener = urllib.request.build_opener( + urllib.request.HTTPCookieProcessor(cookiejar), + urllib.request.HTTPSHandler(context=context), + urllib.request.HTTPHandler(), + redirect_handler, + ) urllib.request.install_opener(opener) - request_headers = { - 'Accept': self.accept_type, - 'User-Agent': 'F-UJI'} + request_headers = {"Accept": self.accept_type, "User-Agent": "F-UJI"} if self.authtoken: - request_headers['Authorization'] = self.tokentype+' '+self.authtoken - tp_request = urllib.request.Request(self.request_url, - headers=request_headers) + request_headers["Authorization"] = self.tokentype + " " + self.authtoken + tp_request = urllib.request.Request(self.request_url, headers=request_headers) try: - tp_response = opener.open(tp_request,timeout = 10) + tp_response = opener.open(tp_request, timeout=10) self.redirect_list = redirect_handler.redirect_list self.redirect_status_list = redirect_handler.redirect_status_list self.redirect_url = redirect_handler.redirect_url @@ -189,44 +192,58 @@ def content_negotiate(self, metric_id='', ignore_html=True): pass if e.code == 308: self.logger.error( - '%s : F-UJI 308 redirect failed, most likely this patch: https://github.com/python/cpython/pull/19588/commits is not installed' - % metric_id) + "%s : F-UJI 308 redirect failed, most likely this patch: https://github.com/python/cpython/pull/19588/commits is not installed" + % metric_id + ) elif e.code >= 500: - if 'doi.org' in self.request_url: - self.logger.error('{0} : DataCite/DOI content negotiation failed, status code -: {1}, {2} - {3}'.format( - metric_id, self.request_url, self.accept_type, str(e.code))) + if "doi.org" in self.request_url: + self.logger.error( + "{0} : DataCite/DOI content negotiation failed, status code -: {1}, {2} - {3}".format( + metric_id, self.request_url, self.accept_type, str(e.code) + ) + ) else: - self.logger.error('{0} : Request failed, status code -: {1}, {2} - {3}'.format( - metric_id, self.request_url, self.accept_type, str(e.code))) + self.logger.error( + "{0} : Request failed, status code -: {1}, {2} - {3}".format( + metric_id, self.request_url, self.accept_type, str(e.code) + ) + ) elif e.code == 400: try: - #browsers automatically redirect to https in case a 400 occured for a http URL + # browsers automatically redirect to https in case a 400 occured for a http URL if redirect_handler.redirect_list: last_redirect_url = redirect_handler.redirect_list[-1] - if 'http://' in last_redirect_url: + if "http://" in last_redirect_url: self.logger.warning( - '{0} : HTTP 400 Error after redirect to http page , trying to redirect to https page for -: {1}'.format( - metric_id, redirect_handler.redirect_list[-1])) + "{0} : HTTP 400 Error after redirect to http page , trying to redirect to https page for -: {1}".format( + metric_id, redirect_handler.redirect_list[-1] + ) + ) # This is what Browsers sometimes do: - last_redirect_url = last_redirect_url.replace('http:','https:') - tp_request = urllib.request.Request(last_redirect_url, - headers=request_headers) + last_redirect_url = last_redirect_url.replace("http:", "https:") + tp_request = urllib.request.Request(last_redirect_url, headers=request_headers) tp_response = opener.open(tp_request, timeout=10) except Exception as e: - print('Redirect fix error:'+str(e)) + print("Redirect fix error:" + str(e)) pass else: - self.logger.warning('{0} : Request failed, status code -: {1}, {2} - {3}'.format( - metric_id, self.request_url, self.accept_type, str(e.code))) + self.logger.warning( + "{0} : Request failed, status code -: {1}, {2} - {3}".format( + metric_id, self.request_url, self.accept_type, str(e.code) + ) + ) except urllib.error.URLError as e: - self.logger.warning('{0} : Request failed, reason -: {1}, {2} - URLError: {3}'.format( - metric_id, self.request_url, self.accept_type, str(e))) + self.logger.warning( + "{0} : Request failed, reason -: {1}, {2} - URLError: {3}".format( + metric_id, self.request_url, self.accept_type, str(e) + ) + ) self.response_status = 900 try: - urlerrmatch = re.search(r'\[Errno\s+(\-?[0-9]+)', str(e)) + urlerrmatch = re.search(r"\[Errno\s+(\-?[0-9]+)", str(e)) # eg urlopen error [Errno 11001] getaddrinfo failed => DNS failed if urlerrmatch: - print('Request URL Error: ', urlerrmatch[1]) + print("Request URL Error: ", urlerrmatch[1]) self.response_status = int(urlerrmatch[1]) except: pass @@ -238,9 +255,12 @@ def content_negotiate(self, metric_id='', ignore_html=True): except: pass except Exception as e: - print('Request ERROR: ', e) - self.logger.warning('{0} : Request failed, reason -: {1}, {2} - Error: {3}'.format( - metric_id, self.request_url, self.accept_type, str(e))) + print("Request ERROR: ", e) + self.logger.warning( + "{0} : Request failed, reason -: {1}, {2} - Error: {3}".format( + metric_id, self.request_url, self.accept_type, str(e) + ) + ) # some internal status messages for optional analysis try: self.redirect_url = redirect_handler.redirect_url @@ -248,213 +268,271 @@ def content_negotiate(self, metric_id='', ignore_html=True): self.redirect_status_list = redirect_handler.redirect_status_list except: pass - if 'NewConnectionError' in str(e): + if "NewConnectionError" in str(e): self.response_status = 601 - elif 'RemoteDisconnected' in str(e): + elif "RemoteDisconnected" in str(e): self.response_status = 602 - elif 'Read timed out' in str(e): + elif "Read timed out" in str(e): self.response_status = 603 - elif 'ConnectionResetError' in str(e): + elif "ConnectionResetError" in str(e): self.response_status = 604 else: self.response_status = 1000 # redirect logger messages to metadata collection metric - if metric_id == 'FsF-F1-02D': - #self.logger.info('FsF-F2-01M : Trying to identify some EMBEDDED metadata in content retrieved during PID verification process (FsF-F1-02D)') - metric_id = 'FsF-F2-01M' + if metric_id == "FsF-F1-02D": + # self.logger.info('FsF-F2-01M : Trying to identify some EMBEDDED metadata in content retrieved during PID verification process (FsF-F1-02D)') + metric_id = "FsF-F2-01M" if tp_response: - #self.http_response = tp_response - if tp_response.info().get('Content-Encoding') == 'gzip': - self.logger.info('FsF-F2-01M : Retrieving gzipped content') + # self.http_response = tp_response + if tp_response.info().get("Content-Encoding") == "gzip": + self.logger.info("FsF-F2-01M : Retrieving gzipped content") self.response_content = gzip.decompress(self.response_content) - if tp_response.info().get('Content-Type') == 'application/zip': - self.logger.warning('FsF-F2-01M : Received zipped content which contains several files, therefore skipping tests') + if tp_response.info().get("Content-Type") == "application/zip": + self.logger.warning( + "FsF-F2-01M : Received zipped content which contains several files, therefore skipping tests" + ) self.response_content = None format = None - #source = 'zip' + # source = 'zip' if tp_response.info().get_content_charset(): self.response_charset = tp_response.info().get_content_charset() self.response_header = tp_response.getheaders() self.redirect_url = tp_response.geturl() self.response_status = status_code = tp_response.status - self.logger.info('%s : Content negotiation on %s accept=%s, status=%s ' % - (metric_id, self.request_url, self.accept_type ,str(status_code))) - self.content_type = self.getResponseHeader().get('Content-Type') + self.logger.info( + "%s : Content negotiation on %s accept=%s, status=%s " + % (metric_id, self.request_url, self.accept_type, str(status_code)) + ) + self.content_type = self.getResponseHeader().get("Content-Type") if not self.content_type: - self.content_type = self.getResponseHeader().get('content-type') - #print(self.accept_type,self.content_type) + self.content_type = self.getResponseHeader().get("content-type") + # print(self.accept_type,self.content_type) # key for content cache - checked_content_id = hash(str(self.redirect_url ) + str(self.content_type)) + checked_content_id = hash(str(self.redirect_url) + str(self.content_type)) if checked_content_id in self.checked_content: self.checked_content_hash = checked_content_id - format = self.checked_content.get(checked_content_id).get('format') - self.parse_response = self.checked_content.get(checked_content_id).get('parse_response') - self.response_content = self.checked_content.get(checked_content_id).get('response_content') - self.content_type = self.checked_content.get(checked_content_id).get('content_type') - self.content_size = self.checked_content.get(checked_content_id).get('content_size') - content_truncated = self.checked_content.get(checked_content_id).get('content_truncated') - self.logger.info('%s : Using Cached response content' % metric_id) + format = self.checked_content.get(checked_content_id).get("format") + self.parse_response = self.checked_content.get(checked_content_id).get("parse_response") + self.response_content = self.checked_content.get(checked_content_id).get("response_content") + self.content_type = self.checked_content.get(checked_content_id).get("content_type") + self.content_size = self.checked_content.get(checked_content_id).get("content_size") + content_truncated = self.checked_content.get(checked_content_id).get("content_truncated") + self.logger.info("%s : Using Cached response content" % metric_id) else: - self.logger.info('%s : Creating Cached response content' % metric_id) + self.logger.info("%s : Creating Cached response content" % metric_id) content_truncated = False if status_code == 200: try: - self.content_size = int(self.getResponseHeader().get('Content-Length')) + self.content_size = int(self.getResponseHeader().get("Content-Length")) if not self.content_size: - self.content_size = int(self.getResponseHeader().get('content-length')) + self.content_size = int(self.getResponseHeader().get("content-length")) except Exception as e: self.content_size = 0 pass if self.content_size > self.max_content_size: content_truncated = True if sys.getsizeof(self.response_content) >= self.max_content_size or content_truncated: - self.logger.warning('%s : Downloaded content has been TRUNCATED by F-UJI since it is larger than: -: %s' % (metric_id, str(self.max_content_size))) + self.logger.warning( + "%s : Downloaded content has been TRUNCATED by F-UJI since it is larger than: -: %s" + % (metric_id, str(self.max_content_size)) + ) self.response_content = tp_response.read(self.max_content_size) if self.content_size == 0: self.content_size = sys.getsizeof(self.response_content) - #try to find out if content type is byte then fix + # try to find out if content type is byte then fix if self.response_content: try: - self.response_content.decode('utf-8') + self.response_content.decode("utf-8") except (UnicodeDecodeError, AttributeError) as e: - self.logger.warning('%s : Content UTF-8 encoding problem, trying to fix.. ' % metric_id) + self.logger.warning( + "%s : Content UTF-8 encoding problem, trying to fix.. " % metric_id + ) - self.response_content = self.response_content.decode('utf-8', errors='replace') - self.response_content = str(self.response_content).encode('utf-8') + self.response_content = self.response_content.decode("utf-8", errors="replace") + self.response_content = str(self.response_content).encode("utf-8") - #Now content should be utf-8 encoded + # Now content should be utf-8 encoded if content_truncated == True: try: - self.response_content = self.response_content.rsplit(b'\n',1)[0] + self.response_content = self.response_content.rsplit(b"\n", 1)[0] except Exception as e: - print('Error: '+str(e)) + print("Error: " + str(e)) if self.content_type is None: self.content_type = mimetypes.guess_type(self.request_url, strict=True)[0] if self.content_type is None: - #just in case tika is not running use this as quick check for the most obvious + # just in case tika is not running use this as quick check for the most obvious try: - if re.search(b'|||| 'AnyOfFAIRResultsResultsItems': + def from_dict(cls, dikt) -> "AnyOfFAIRResultsResultsItems": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/base_model_.py b/fuji_server/models/base_model_.py index 1d2735e0..f4fd9ed8 100644 --- a/fuji_server/models/base_model_.py +++ b/fuji_server/models/base_model_.py @@ -1,11 +1,10 @@ # -*- coding: utf-8 -*- import pprint - import typing from fuji_server import util -T = typing.TypeVar('T') +T = typing.TypeVar("T") class Model(object): @@ -32,13 +31,16 @@ def to_dict(self): for attr, _ in self.swagger_types.items(): value = getattr(self, attr) if isinstance(value, list): - result[attr] = list(map(lambda x: x.to_dict() if hasattr(x, 'to_dict') else x, value)) - elif hasattr(value, 'to_dict'): + result[attr] = list(map(lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value)) + elif hasattr(value, "to_dict"): result[attr] = value.to_dict() elif isinstance(value, dict): result[attr] = dict( - map(lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], 'to_dict') else item, value.items())) + map( + lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item, + value.items(), + ) + ) else: result[attr] = value diff --git a/fuji_server/models/body.py b/fuji_server/models/body.py index ea5fd686..e9c055c6 100644 --- a/fuji_server/models/body.py +++ b/fuji_server/models/body.py @@ -1,12 +1,12 @@ # coding: utf-8 from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class Body(Model): @@ -14,7 +14,19 @@ class Body(Model): Do not edit the class manually. """ - def __init__(self, object_identifier: str=None, test_debug: bool=False, metadata_service_endpoint: str=None, metadata_service_type: str=None, use_datacite: bool=None, metric_version: str=None, auth_token: str=None, auth_token_type: str=None, oaipmh_endpoint: str=None): # noqa: E501 + + def __init__( + self, + object_identifier: str = None, + test_debug: bool = False, + metadata_service_endpoint: str = None, + metadata_service_type: str = None, + use_datacite: bool = None, + metric_version: str = None, + auth_token: str = None, + auth_token_type: str = None, + oaipmh_endpoint: str = None, + ): # noqa: E501 """Body - a model defined in Swagger :param object_identifier: The object_identifier of this Body. # noqa: E501 @@ -37,27 +49,27 @@ def __init__(self, object_identifier: str=None, test_debug: bool=False, metadata :type oaipmh_endpoint: str """ self.swagger_types = { - 'object_identifier': str, - 'test_debug': bool, - 'metadata_service_endpoint': str, - 'metadata_service_type': str, - 'use_datacite': bool, - 'metric_version': str, - 'auth_token': str, - 'auth_token_type': str, - 'oaipmh_endpoint': str + "object_identifier": str, + "test_debug": bool, + "metadata_service_endpoint": str, + "metadata_service_type": str, + "use_datacite": bool, + "metric_version": str, + "auth_token": str, + "auth_token_type": str, + "oaipmh_endpoint": str, } self.attribute_map = { - 'object_identifier': 'object_identifier', - 'test_debug': 'test_debug', - 'metadata_service_endpoint': 'metadata_service_endpoint', - 'metadata_service_type': 'metadata_service_type', - 'use_datacite': 'use_datacite', - 'metric_version': 'metric_version', - 'auth_token': 'auth_token', - 'auth_token_type': 'auth_token_type', - 'oaipmh_endpoint': 'oaipmh_endpoint' + "object_identifier": "object_identifier", + "test_debug": "test_debug", + "metadata_service_endpoint": "metadata_service_endpoint", + "metadata_service_type": "metadata_service_type", + "use_datacite": "use_datacite", + "metric_version": "metric_version", + "auth_token": "auth_token", + "auth_token_type": "auth_token_type", + "oaipmh_endpoint": "oaipmh_endpoint", } self._object_identifier = object_identifier self._test_debug = test_debug @@ -70,7 +82,7 @@ def __init__(self, object_identifier: str=None, test_debug: bool=False, metadata self._oaipmh_endpoint = oaipmh_endpoint @classmethod - def from_dict(cls, dikt) -> 'Body': + def from_dict(cls, dikt) -> "Body": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/community_endorsed_standard.py b/fuji_server/models/community_endorsed_standard.py index 80c7403d..5889445f 100644 --- a/fuji_server/models/community_endorsed_standard.py +++ b/fuji_server/models/community_endorsed_standard.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.community_endorsed_standard_output import CommunityEndorsedStandardOutput # noqa: F401,E501 from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 -from fuji_server import util class CommunityEndorsedStandard(Model): @@ -20,16 +20,18 @@ class CommunityEndorsedStandard(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: str = 'incomplete', - output: CommunityEndorsedStandardOutput = None, - test_debug: Debug = None): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: str = "incomplete", + output: CommunityEndorsedStandardOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """CommunityEndorsedStandard - a model defined in Swagger :param id: The id of this CommunityEndorsedStandard. # noqa: E501 @@ -52,27 +54,27 @@ def __init__(self, :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': str, - 'output': CommunityEndorsedStandardOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": str, + "output": CommunityEndorsedStandardOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -85,7 +87,7 @@ def __init__(self, self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'CommunityEndorsedStandard': + def from_dict(cls, dikt) -> "CommunityEndorsedStandard": """Returns the dict as a model :param dikt: A dict. @@ -114,7 +116,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -137,7 +139,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -160,7 +162,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -203,10 +205,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this CommunityEndorsedStandard. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -229,7 +232,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/community_endorsed_standard_output.py b/fuji_server/models/community_endorsed_standard_output.py index 8d49121b..473383b3 100644 --- a/fuji_server/models/community_endorsed_standard_output.py +++ b/fuji_server/models/community_endorsed_standard_output.py @@ -1,13 +1,16 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model -from fuji_server.models.community_endorsed_standard_output_inner import CommunityEndorsedStandardOutputInner # noqa: F401,E501 +# noqa: F401,E501 from fuji_server import util +from fuji_server.models.base_model_ import Model +from fuji_server.models.community_endorsed_standard_output_inner import ( + CommunityEndorsedStandardOutputInner, +) class CommunityEndorsedStandardOutput(Model): @@ -17,15 +20,13 @@ class CommunityEndorsedStandardOutput(Model): """ def __init__(self): # noqa: E501 - """CommunityEndorsedStandardOutput - a model defined in Swagger - - """ + """CommunityEndorsedStandardOutput - a model defined in Swagger""" self.swagger_types = {} self.attribute_map = {} @classmethod - def from_dict(cls, dikt) -> 'CommunityEndorsedStandardOutput': + def from_dict(cls, dikt) -> "CommunityEndorsedStandardOutput": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/community_endorsed_standard_output_inner.py b/fuji_server/models/community_endorsed_standard_output_inner.py index 95323ef1..e8c06efb 100644 --- a/fuji_server/models/community_endorsed_standard_output_inner.py +++ b/fuji_server/models/community_endorsed_standard_output_inner.py @@ -1,12 +1,12 @@ # coding: utf-8 from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class CommunityEndorsedStandardOutputInner(Model): @@ -14,7 +14,15 @@ class CommunityEndorsedStandardOutputInner(Model): Do not edit the class manually. """ - def __init__(self, metadata_standard: str=None, url: str=None, subject_areas: List[str]=None, type: str=None, source: str=None): # noqa: E501 + + def __init__( + self, + metadata_standard: str = None, + url: str = None, + subject_areas: List[str] = None, + type: str = None, + source: str = None, + ): # noqa: E501 """CommunityEndorsedStandardOutputInner - a model defined in Swagger :param metadata_standard: The metadata_standard of this CommunityEndorsedStandardOutputInner. # noqa: E501 @@ -29,19 +37,19 @@ def __init__(self, metadata_standard: str=None, url: str=None, subject_areas: Li :type source: str """ self.swagger_types = { - 'metadata_standard': str, - 'url': str, - 'subject_areas': List[str], - 'type': str, - 'source': str + "metadata_standard": str, + "url": str, + "subject_areas": List[str], + "type": str, + "source": str, } self.attribute_map = { - 'metadata_standard': 'metadata_standard', - 'url': 'url', - 'subject_areas': 'subject_areas', - 'type': 'type', - 'source': 'source' + "metadata_standard": "metadata_standard", + "url": "url", + "subject_areas": "subject_areas", + "type": "type", + "source": "source", } self._metadata_standard = metadata_standard self._url = url @@ -50,7 +58,7 @@ def __init__(self, metadata_standard: str=None, url: str=None, subject_areas: Li self._source = source @classmethod - def from_dict(cls, dikt) -> 'CommunityEndorsedStandardOutputInner': + def from_dict(cls, dikt) -> "CommunityEndorsedStandardOutputInner": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/core_metadata.py b/fuji_server/models/core_metadata.py index 26d89b73..6e7e2415 100644 --- a/fuji_server/models/core_metadata.py +++ b/fuji_server/models/core_metadata.py @@ -1,17 +1,17 @@ # coding: utf-8 from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.core_metadata_output import CoreMetadataOutput # noqa: F401,E501 from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 -from fuji_server import util class CoreMetadata(Model): @@ -19,7 +19,19 @@ class CoreMetadata(Model): Do not edit the class manually. """ - def __init__(self, id: int=None, metric_identifier: str=None, metric_name: str=None, metric_tests: Dict[str, FAIRResultEvaluationCriterium]=None, test_status: str='fail', score: FAIRResultCommonScore=None, maturity: int=0, output: CoreMetadataOutput=None, test_debug: Debug=None): # noqa: E501 + + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: int = 0, + output: CoreMetadataOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """CoreMetadata - a model defined in Swagger :param id: The id of this CoreMetadata. # noqa: E501 @@ -42,27 +54,27 @@ def __init__(self, id: int=None, metric_identifier: str=None, metric_name: str=N :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': int, - 'output': CoreMetadataOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": int, + "output": CoreMetadataOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -75,7 +87,7 @@ def __init__(self, id: int=None, metric_identifier: str=None, metric_name: str=N self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'CoreMetadata': + def from_dict(cls, dikt) -> "CoreMetadata": """Returns the dict as a model :param dikt: A dict. @@ -196,8 +208,7 @@ def test_status(self, test_status: str): allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: raise ValueError( - "Invalid value for `test_status` ({0}), must be one of {1}" - .format(test_status, allowed_values) + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) ) self._test_status = test_status diff --git a/fuji_server/models/core_metadata_output.py b/fuji_server/models/core_metadata_output.py index 9333b0dd..4abc3a3c 100644 --- a/fuji_server/models/core_metadata_output.py +++ b/fuji_server/models/core_metadata_output.py @@ -1,13 +1,13 @@ # coding: utf-8 from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.output_core_metadata_found import OutputCoreMetadataFound # noqa: F401,E501 -from fuji_server import util class CoreMetadataOutput(Model): @@ -15,7 +15,13 @@ class CoreMetadataOutput(Model): Do not edit the class manually. """ - def __init__(self, core_metadata_status: str=None, core_metadata_found: OutputCoreMetadataFound=None, core_metadata_source: List[str]=None): # noqa: E501 + + def __init__( + self, + core_metadata_status: str = None, + core_metadata_found: OutputCoreMetadataFound = None, + core_metadata_source: List[str] = None, + ): # noqa: E501 """CoreMetadataOutput - a model defined in Swagger :param core_metadata_status: The core_metadata_status of this CoreMetadataOutput. # noqa: E501 @@ -26,22 +32,22 @@ def __init__(self, core_metadata_status: str=None, core_metadata_found: OutputCo :type core_metadata_source: List[str] """ self.swagger_types = { - 'core_metadata_status': str, - 'core_metadata_found': OutputCoreMetadataFound, - 'core_metadata_source': List[str] + "core_metadata_status": str, + "core_metadata_found": OutputCoreMetadataFound, + "core_metadata_source": List[str], } self.attribute_map = { - 'core_metadata_status': 'core_metadata_status', - 'core_metadata_found': 'core_metadata_found', - 'core_metadata_source': 'core_metadata_source' + "core_metadata_status": "core_metadata_status", + "core_metadata_found": "core_metadata_found", + "core_metadata_source": "core_metadata_source", } self._core_metadata_status = core_metadata_status self._core_metadata_found = core_metadata_found self._core_metadata_source = core_metadata_source @classmethod - def from_dict(cls, dikt) -> 'CoreMetadataOutput': + def from_dict(cls, dikt) -> "CoreMetadataOutput": """Returns the dict as a model :param dikt: A dict. @@ -72,8 +78,9 @@ def core_metadata_status(self, core_metadata_status: str): allowed_values = ["insufficent metadata", "partial metadata", "all metadata"] # noqa: E501 if core_metadata_status not in allowed_values: raise ValueError( - "Invalid value for `core_metadata_status` ({0}), must be one of {1}" - .format(core_metadata_status, allowed_values) + "Invalid value for `core_metadata_status` ({0}), must be one of {1}".format( + core_metadata_status, allowed_values + ) ) self._core_metadata_status = core_metadata_status diff --git a/fuji_server/models/data_access_level.py b/fuji_server/models/data_access_level.py index 4661f06d..b78c0dd5 100644 --- a/fuji_server/models/data_access_level.py +++ b/fuji_server/models/data_access_level.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.data_access_output import DataAccessOutput # noqa: F401,E501 from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 -from fuji_server import util class DataAccessLevel(Model): @@ -20,16 +20,18 @@ class DataAccessLevel(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: str = 'incomplete', - output: DataAccessOutput = None, - test_debug: Debug = None): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: str = "incomplete", + output: DataAccessOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """DataAccessLevel - a model defined in Swagger :param id: The id of this DataAccessLevel. # noqa: E501 @@ -52,27 +54,27 @@ def __init__(self, :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': str, - 'output': DataAccessOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": str, + "output": DataAccessOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -85,7 +87,7 @@ def __init__(self, self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'DataAccessLevel': + def from_dict(cls, dikt) -> "DataAccessLevel": """Returns the dict as a model :param dikt: A dict. @@ -114,7 +116,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -137,7 +139,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -160,7 +162,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -203,10 +205,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this DataAccessLevel. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -229,7 +232,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/data_access_output.py b/fuji_server/models/data_access_output.py index 1235ff0a..b8ff8483 100644 --- a/fuji_server/models/data_access_output.py +++ b/fuji_server/models/data_access_output.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class DataAccessOutput(Model): @@ -23,14 +23,14 @@ def __init__(self, access_level: str = None, access_details: object = None): # :param access_details: The access_details of this DataAccessOutput. # noqa: E501 :type access_details: object """ - self.swagger_types = {'access_level': str, 'access_details': object} + self.swagger_types = {"access_level": str, "access_details": object} - self.attribute_map = {'access_level': 'access_level', 'access_details': 'access_details'} + self.attribute_map = {"access_level": "access_level", "access_details": "access_details"} self._access_level = access_level self._access_details = access_details @classmethod - def from_dict(cls, dikt) -> 'DataAccessOutput': + def from_dict(cls, dikt) -> "DataAccessOutput": """Returns the dict as a model :param dikt: A dict. @@ -58,10 +58,11 @@ def access_level(self, access_level: str): :param access_level: The access_level of this DataAccessOutput. :type access_level: str """ - allowed_values = ['public', 'embargoed', 'restricted', 'closed', 'metadataonly'] # noqa: E501 + allowed_values = ["public", "embargoed", "restricted", "closed", "metadataonly"] # noqa: E501 if access_level not in allowed_values: - raise ValueError('Invalid value for `access_level` ({0}), must be one of {1}'.format( - access_level, allowed_values)) + raise ValueError( + "Invalid value for `access_level` ({0}), must be one of {1}".format(access_level, allowed_values) + ) self._access_level = access_level diff --git a/fuji_server/models/data_content_metadata.py b/fuji_server/models/data_content_metadata.py index fcae7b37..31424972 100644 --- a/fuji_server/models/data_content_metadata.py +++ b/fuji_server/models/data_content_metadata.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.data_content_metadata_output import DataContentMetadataOutput # noqa: F401,E501 from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 -from fuji_server import util class DataContentMetadata(Model): @@ -20,16 +20,18 @@ class DataContentMetadata(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: str = 'incomplete', - output: DataContentMetadataOutput = None, - test_debug: Debug = None): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: str = "incomplete", + output: DataContentMetadataOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """DataContentMetadata - a model defined in Swagger :param id: The id of this DataContentMetadata. # noqa: E501 @@ -52,27 +54,27 @@ def __init__(self, :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': str, - 'output': DataContentMetadataOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": str, + "output": DataContentMetadataOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -85,7 +87,7 @@ def __init__(self, self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'DataContentMetadata': + def from_dict(cls, dikt) -> "DataContentMetadata": """Returns the dict as a model :param dikt: A dict. @@ -114,7 +116,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -137,7 +139,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -160,7 +162,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -203,10 +205,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this DataContentMetadata. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -229,7 +232,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/data_content_metadata_output.py b/fuji_server/models/data_content_metadata_output.py index 6f899d09..4f0c2149 100644 --- a/fuji_server/models/data_content_metadata_output.py +++ b/fuji_server/models/data_content_metadata_output.py @@ -1,13 +1,13 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.data_content_metadata_output_inner import DataContentMetadataOutputInner # noqa: F401,E501 -from fuji_server import util class DataContentMetadataOutput(Model): @@ -16,9 +16,9 @@ class DataContentMetadataOutput(Model): Do not edit the class manually. """ - def __init__(self, - object_type: str = None, - data_content_descriptor: List[DataContentMetadataOutputInner] = None): # noqa: E501 + def __init__( + self, object_type: str = None, data_content_descriptor: List[DataContentMetadataOutputInner] = None + ): # noqa: E501 """DataContentMetadataOutput - a model defined in Swagger :param object_type: The object_type of this DataContentMetadataOutput. # noqa: E501 @@ -26,14 +26,14 @@ def __init__(self, :param data_content_descriptor: The data_content_descriptor of this DataContentMetadataOutput. # noqa: E501 :type data_content_descriptor: List[DataContentMetadataOutputInner] """ - self.swagger_types = {'object_type': str, 'data_content_descriptor': List[DataContentMetadataOutputInner]} + self.swagger_types = {"object_type": str, "data_content_descriptor": List[DataContentMetadataOutputInner]} - self.attribute_map = {'object_type': 'object_type', 'data_content_descriptor': 'data_content_descriptor'} + self.attribute_map = {"object_type": "object_type", "data_content_descriptor": "data_content_descriptor"} self._object_type = object_type self._data_content_descriptor = data_content_descriptor @classmethod - def from_dict(cls, dikt) -> 'DataContentMetadataOutput': + def from_dict(cls, dikt) -> "DataContentMetadataOutput": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/data_content_metadata_output_inner.py b/fuji_server/models/data_content_metadata_output_inner.py index a63d91b5..e897395c 100644 --- a/fuji_server/models/data_content_metadata_output_inner.py +++ b/fuji_server/models/data_content_metadata_output_inner.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class DataContentMetadataOutputInner(Model): @@ -15,10 +15,9 @@ class DataContentMetadataOutputInner(Model): Do not edit the class manually. """ - def __init__(self, - descriptor: str = None, - descriptor_value: str = None, - matches_content: bool = False): # noqa: E501 + def __init__( + self, descriptor: str = None, descriptor_value: str = None, matches_content: bool = False + ): # noqa: E501 """DataContentMetadataOutputInner - a model defined in Swagger :param descriptor: The descriptor of this DataContentMetadataOutputInner. # noqa: E501 @@ -28,19 +27,19 @@ def __init__(self, :param matches_content: The matches_content of this DataContentMetadataOutputInner. # noqa: E501 :type matches_content: bool """ - self.swagger_types = {'descriptor': str, 'descriptor_value': str, 'matches_content': bool} + self.swagger_types = {"descriptor": str, "descriptor_value": str, "matches_content": bool} self.attribute_map = { - 'descriptor': 'descriptor', - 'descriptor_value': 'descriptor_value', - 'matches_content': 'matches_content' + "descriptor": "descriptor", + "descriptor_value": "descriptor_value", + "matches_content": "matches_content", } self._descriptor = descriptor self._descriptor_value = descriptor_value self._matches_content = matches_content @classmethod - def from_dict(cls, dikt) -> 'DataContentMetadataOutputInner': + def from_dict(cls, dikt) -> "DataContentMetadataOutputInner": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/data_file_format.py b/fuji_server/models/data_file_format.py index 1db29cc8..51ea0e7f 100644 --- a/fuji_server/models/data_file_format.py +++ b/fuji_server/models/data_file_format.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.data_file_format_output import DataFileFormatOutput # noqa: F401,E501 from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 -from fuji_server import util class DataFileFormat(Model): @@ -20,16 +20,18 @@ class DataFileFormat(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: str = 'incomplete', - output: DataFileFormatOutput = None, - test_debug: Debug = None): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: str = "incomplete", + output: DataFileFormatOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """DataFileFormat - a model defined in Swagger :param id: The id of this DataFileFormat. # noqa: E501 @@ -52,27 +54,27 @@ def __init__(self, :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': str, - 'output': DataFileFormatOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": str, + "output": DataFileFormatOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -85,7 +87,7 @@ def __init__(self, self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'DataFileFormat': + def from_dict(cls, dikt) -> "DataFileFormat": """Returns the dict as a model :param dikt: A dict. @@ -114,7 +116,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -137,7 +139,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -160,7 +162,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -203,10 +205,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this DataFileFormat. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -229,7 +232,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/data_file_format_output.py b/fuji_server/models/data_file_format_output.py index 9b5f0844..940f7f19 100644 --- a/fuji_server/models/data_file_format_output.py +++ b/fuji_server/models/data_file_format_output.py @@ -1,13 +1,13 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.data_file_format_output_inner import DataFileFormatOutputInner # noqa: F401,E501 -from fuji_server import util class DataFileFormatOutput(Model): @@ -17,15 +17,13 @@ class DataFileFormatOutput(Model): """ def __init__(self): # noqa: E501 - """DataFileFormatOutput - a model defined in Swagger - - """ + """DataFileFormatOutput - a model defined in Swagger""" self.swagger_types = {} self.attribute_map = {} @classmethod - def from_dict(cls, dikt) -> 'DataFileFormatOutput': + def from_dict(cls, dikt) -> "DataFileFormatOutput": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/data_file_format_output_inner.py b/fuji_server/models/data_file_format_output_inner.py index 73637f8a..601694eb 100644 --- a/fuji_server/models/data_file_format_output_inner.py +++ b/fuji_server/models/data_file_format_output_inner.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class DataFileFormatOutputInner(Model): @@ -15,12 +15,14 @@ class DataFileFormatOutputInner(Model): Do not edit the class manually. """ - def __init__(self, - file_uri: str = None, - mime_type: str = None, - is_preferred_format: bool = False, - preference_reason: List[str] = None, - subject_areas: List[str] = None): # noqa: E501 + def __init__( + self, + file_uri: str = None, + mime_type: str = None, + is_preferred_format: bool = False, + preference_reason: List[str] = None, + subject_areas: List[str] = None, + ): # noqa: E501 """DataFileFormatOutputInner - a model defined in Swagger :param file_uri: The file_uri of this DataFileFormatOutputInner. # noqa: E501 @@ -35,19 +37,19 @@ def __init__(self, :type subject_areas: List[str] """ self.swagger_types = { - 'file_uri': str, - 'mime_type': str, - 'is_preferred_format': bool, - 'preference_reason': List[str], - 'subject_areas': List[str] + "file_uri": str, + "mime_type": str, + "is_preferred_format": bool, + "preference_reason": List[str], + "subject_areas": List[str], } self.attribute_map = { - 'file_uri': 'file_uri', - 'mime_type': 'mime_type', - 'is_preferred_format': 'is_preferred_format', - 'preference_reason': 'preference_reason', - 'subject_areas': 'subject_areas' + "file_uri": "file_uri", + "mime_type": "mime_type", + "is_preferred_format": "is_preferred_format", + "preference_reason": "preference_reason", + "subject_areas": "subject_areas", } self._file_uri = file_uri self._mime_type = mime_type @@ -56,7 +58,7 @@ def __init__(self, self._subject_areas = subject_areas @classmethod - def from_dict(cls, dikt) -> 'DataFileFormatOutputInner': + def from_dict(cls, dikt) -> "DataFileFormatOutputInner": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/data_provenance.py b/fuji_server/models/data_provenance.py index 1330398b..94a73ee4 100644 --- a/fuji_server/models/data_provenance.py +++ b/fuji_server/models/data_provenance.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.data_provenance_output import DataProvenanceOutput # noqa: F401,E501 from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 -from fuji_server import util class DataProvenance(Model): @@ -20,16 +20,18 @@ class DataProvenance(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: str = 'incomplete', - output: DataProvenanceOutput = None, - test_debug: Debug = None): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: str = "incomplete", + output: DataProvenanceOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """DataProvenance - a model defined in Swagger :param id: The id of this DataProvenance. # noqa: E501 @@ -52,27 +54,27 @@ def __init__(self, :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': str, - 'output': DataProvenanceOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": str, + "output": DataProvenanceOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -85,7 +87,7 @@ def __init__(self, self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'DataProvenance': + def from_dict(cls, dikt) -> "DataProvenance": """Returns the dict as a model :param dikt: A dict. @@ -114,7 +116,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -137,7 +139,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -160,7 +162,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -203,10 +205,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this DataProvenance. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -229,7 +232,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/data_provenance_output.py b/fuji_server/models/data_provenance_output.py index c82d201b..65579af9 100644 --- a/fuji_server/models/data_provenance_output.py +++ b/fuji_server/models/data_provenance_output.py @@ -1,13 +1,13 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.data_provenance_output_inner import DataProvenanceOutputInner # noqa: F401,E501 -from fuji_server import util class DataProvenanceOutput(Model): @@ -16,9 +16,11 @@ class DataProvenanceOutput(Model): Do not edit the class manually. """ - def __init__(self, - provenance_metadata_included: DataProvenanceOutputInner = None, - structured_provenance_available: DataProvenanceOutputInner = None): # noqa: E501 + def __init__( + self, + provenance_metadata_included: DataProvenanceOutputInner = None, + structured_provenance_available: DataProvenanceOutputInner = None, + ): # noqa: E501 """DataProvenanceOutput - a model defined in Swagger :param provenance_metadata_included: The provenance_metadata_included of this DataProvenanceOutput. # noqa: E501 @@ -27,19 +29,19 @@ def __init__(self, :type structured_provenance_available: DataProvenanceOutputInner """ self.swagger_types = { - 'provenance_metadata_included': DataProvenanceOutputInner, - 'structured_provenance_available': DataProvenanceOutputInner + "provenance_metadata_included": DataProvenanceOutputInner, + "structured_provenance_available": DataProvenanceOutputInner, } self.attribute_map = { - 'provenance_metadata_included': 'provenance_metadata_included', - 'structured_provenance_available': 'structured_provenance_available' + "provenance_metadata_included": "provenance_metadata_included", + "structured_provenance_available": "structured_provenance_available", } self._provenance_metadata_included = provenance_metadata_included self._structured_provenance_available = structured_provenance_available @classmethod - def from_dict(cls, dikt) -> 'DataProvenanceOutput': + def from_dict(cls, dikt) -> "DataProvenanceOutput": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/data_provenance_output_inner.py b/fuji_server/models/data_provenance_output_inner.py index 37f699ed..f020c3b3 100644 --- a/fuji_server/models/data_provenance_output_inner.py +++ b/fuji_server/models/data_provenance_output_inner.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class DataProvenanceOutputInner(Model): @@ -23,14 +23,14 @@ def __init__(self, is_available: bool = True, provenance_metadata: List[Dict[str :param provenance_metadata: The provenance_metadata of this DataProvenanceOutputInner. # noqa: E501 :type provenance_metadata: List[Dict[str, str]] """ - self.swagger_types = {'is_available': bool, 'provenance_metadata': List[Dict[str, str]]} + self.swagger_types = {"is_available": bool, "provenance_metadata": List[Dict[str, str]]} - self.attribute_map = {'is_available': 'is_available', 'provenance_metadata': 'provenance_metadata'} + self.attribute_map = {"is_available": "is_available", "provenance_metadata": "provenance_metadata"} self._is_available = is_available self._provenance_metadata = provenance_metadata @classmethod - def from_dict(cls, dikt) -> 'DataProvenanceOutputInner': + def from_dict(cls, dikt) -> "DataProvenanceOutputInner": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/debug.py b/fuji_server/models/debug.py index 297032fe..db2f4ab5 100644 --- a/fuji_server/models/debug.py +++ b/fuji_server/models/debug.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class Debug(Model): @@ -16,15 +16,13 @@ class Debug(Model): """ def __init__(self): # noqa: E501 - """Debug - a model defined in Swagger - - """ + """Debug - a model defined in Swagger""" self.swagger_types = {} self.attribute_map = {} @classmethod - def from_dict(cls, dikt) -> 'Debug': + def from_dict(cls, dikt) -> "Debug": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/fair_result_common.py b/fuji_server/models/fair_result_common.py index fb5640cc..d9ed26a7 100644 --- a/fuji_server/models/fair_result_common.py +++ b/fuji_server/models/fair_result_common.py @@ -1,14 +1,14 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 -from fuji_server import util class FAIRResultCommon(Model): @@ -17,14 +17,16 @@ class FAIRResultCommon(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: int = 0): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: int = 0, + ): # noqa: E501 """FAIRResultCommon - a model defined in Swagger :param id: The id of this FAIRResultCommon. # noqa: E501 @@ -43,23 +45,23 @@ def __init__(self, :type maturity: int """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': int + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": int, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", } self._id = id self._metric_identifier = metric_identifier @@ -70,7 +72,7 @@ def __init__(self, self._maturity = maturity @classmethod - def from_dict(cls, dikt) -> 'FAIRResultCommon': + def from_dict(cls, dikt) -> "FAIRResultCommon": """Returns the dict as a model :param dikt: A dict. @@ -99,7 +101,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -122,7 +124,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -145,7 +147,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -188,10 +190,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this FAIRResultCommon. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -214,7 +217,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/fair_result_common_score.py b/fuji_server/models/fair_result_common_score.py index ce76ed4f..bbde9096 100644 --- a/fuji_server/models/fair_result_common_score.py +++ b/fuji_server/models/fair_result_common_score.py @@ -1,12 +1,12 @@ # coding: utf-8 from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class FAIRResultCommonScore(Model): @@ -14,7 +14,8 @@ class FAIRResultCommonScore(Model): Do not edit the class manually. """ - def __init__(self, earned: float=0, total: float=0): # noqa: E501 + + def __init__(self, earned: float = 0, total: float = 0): # noqa: E501 """FAIRResultCommonScore - a model defined in Swagger :param earned: The earned of this FAIRResultCommonScore. # noqa: E501 @@ -22,20 +23,14 @@ def __init__(self, earned: float=0, total: float=0): # noqa: E501 :param total: The total of this FAIRResultCommonScore. # noqa: E501 :type total: float """ - self.swagger_types = { - 'earned': float, - 'total': float - } - - self.attribute_map = { - 'earned': 'earned', - 'total': 'total' - } + self.swagger_types = {"earned": float, "total": float} + + self.attribute_map = {"earned": "earned", "total": "total"} self._earned = earned self._total = total @classmethod - def from_dict(cls, dikt) -> 'FAIRResultCommonScore': + def from_dict(cls, dikt) -> "FAIRResultCommonScore": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/fair_result_evaluation_criterium.py b/fuji_server/models/fair_result_evaluation_criterium.py index 321840d2..dd5061ef 100644 --- a/fuji_server/models/fair_result_evaluation_criterium.py +++ b/fuji_server/models/fair_result_evaluation_criterium.py @@ -1,13 +1,13 @@ # coding: utf-8 from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 -from fuji_server import util class FAIRResultEvaluationCriterium(Model): @@ -15,7 +15,15 @@ class FAIRResultEvaluationCriterium(Model): Do not edit the class manually. """ - def __init__(self, metric_test_name: str=None, metric_test_requirements: List[Dict]=None, metric_test_score: FAIRResultCommonScore=None, metric_test_maturity: int=None, metric_test_status: str='fail'): # noqa: E501 + + def __init__( + self, + metric_test_name: str = None, + metric_test_requirements: List[Dict] = None, + metric_test_score: FAIRResultCommonScore = None, + metric_test_maturity: int = None, + metric_test_status: str = "fail", + ): # noqa: E501 """FAIRResultEvaluationCriterium - a model defined in Swagger :param metric_test_name: The metric_test_name of this FAIRResultEvaluationCriterium. # noqa: E501 @@ -30,19 +38,19 @@ def __init__(self, metric_test_name: str=None, metric_test_requirements: List[Di :type metric_test_status: str """ self.swagger_types = { - 'metric_test_name': str, - 'metric_test_requirements': List[Dict], - 'metric_test_score': FAIRResultCommonScore, - 'metric_test_maturity': int, - 'metric_test_status': str + "metric_test_name": str, + "metric_test_requirements": List[Dict], + "metric_test_score": FAIRResultCommonScore, + "metric_test_maturity": int, + "metric_test_status": str, } self.attribute_map = { - 'metric_test_name': 'metric_test_name', - 'metric_test_requirements': 'metric_test_requirements', - 'metric_test_score': 'metric_test_score', - 'metric_test_maturity': 'metric_test_maturity', - 'metric_test_status': 'metric_test_status' + "metric_test_name": "metric_test_name", + "metric_test_requirements": "metric_test_requirements", + "metric_test_score": "metric_test_score", + "metric_test_maturity": "metric_test_maturity", + "metric_test_status": "metric_test_status", } self._metric_test_name = metric_test_name self._metric_test_requirements = metric_test_requirements @@ -51,7 +59,7 @@ def __init__(self, metric_test_name: str=None, metric_test_requirements: List[Di self._metric_test_status = metric_test_status @classmethod - def from_dict(cls, dikt) -> 'FAIRResultEvaluationCriterium': + def from_dict(cls, dikt) -> "FAIRResultEvaluationCriterium": """Returns the dict as a model :param dikt: A dict. @@ -166,8 +174,9 @@ def metric_test_status(self, metric_test_status: str): allowed_values = ["pass", "fail"] # noqa: E501 if metric_test_status not in allowed_values: raise ValueError( - "Invalid value for `metric_test_status` ({0}), must be one of {1}" - .format(metric_test_status, allowed_values) + "Invalid value for `metric_test_status` ({0}), must be one of {1}".format( + metric_test_status, allowed_values + ) ) self._metric_test_status = metric_test_status diff --git a/fuji_server/models/fair_result_evaluation_criterium_requirements.py b/fuji_server/models/fair_result_evaluation_criterium_requirements.py index 2baf44d6..c87c249d 100644 --- a/fuji_server/models/fair_result_evaluation_criterium_requirements.py +++ b/fuji_server/models/fair_result_evaluation_criterium_requirements.py @@ -1,12 +1,12 @@ # coding: utf-8 from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class FAIRResultEvaluationCriteriumRequirements(Model): @@ -14,7 +14,15 @@ class FAIRResultEvaluationCriteriumRequirements(Model): Do not edit the class manually. """ - def __init__(self, target: str=None, modality: str=None, required: List[str]=None, tested_on: str=None, comment: str=None): # noqa: E501 + + def __init__( + self, + target: str = None, + modality: str = None, + required: List[str] = None, + tested_on: str = None, + comment: str = None, + ): # noqa: E501 """FAIRResultEvaluationCriteriumRequirements - a model defined in Swagger :param target: The target of this FAIRResultEvaluationCriteriumRequirements. # noqa: E501 @@ -28,20 +36,14 @@ def __init__(self, target: str=None, modality: str=None, required: List[str]=Non :param comment: The comment of this FAIRResultEvaluationCriteriumRequirements. # noqa: E501 :type comment: str """ - self.swagger_types = { - 'target': str, - 'modality': str, - 'required': List[str], - 'tested_on': str, - 'comment': str - } + self.swagger_types = {"target": str, "modality": str, "required": List[str], "tested_on": str, "comment": str} self.attribute_map = { - 'target': 'target', - 'modality': 'modality', - 'required': 'required', - 'tested_on': 'tested_on', - 'comment': 'comment' + "target": "target", + "modality": "modality", + "required": "required", + "tested_on": "tested_on", + "comment": "comment", } self._target = target self._modality = modality @@ -50,7 +52,7 @@ def __init__(self, target: str=None, modality: str=None, required: List[str]=Non self._comment = comment @classmethod - def from_dict(cls, dikt) -> 'FAIRResultEvaluationCriteriumRequirements': + def from_dict(cls, dikt) -> "FAIRResultEvaluationCriteriumRequirements": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/fair_results.py b/fuji_server/models/fair_results.py index 1d4d0ec4..499eab5a 100644 --- a/fuji_server/models/fair_results.py +++ b/fuji_server/models/fair_results.py @@ -1,14 +1,14 @@ # coding: utf-8 from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +# from fuji_server.models.any_of_fair_results_results_items import AnyOfFAIRResultsResultsItems # noqa: F401,E501 +from fuji_server import util from fuji_server.models.any_of_fair_results_items import AnyOfFAIRResultsResultsItems from fuji_server.models.base_model_ import Model -#from fuji_server.models.any_of_fair_results_results_items import AnyOfFAIRResultsResultsItems # noqa: F401,E501 -from fuji_server import util class FAIRResults(Model): @@ -16,7 +16,22 @@ class FAIRResults(Model): Do not edit the class manually. """ - def __init__(self, test_id: str=None, request: Dict=None, resolved_url: str=None, start_timestamp: datetime=None, end_timestamp: datetime=None, expiry_timestamp: datetime=None, metric_specification: str=None, metric_version: str=None, software_version: str=None, total_metrics: int=None, summary: Dict=None, results: List[AnyOfFAIRResultsResultsItems]=None): # noqa: E501 + + def __init__( + self, + test_id: str = None, + request: Dict = None, + resolved_url: str = None, + start_timestamp: datetime = None, + end_timestamp: datetime = None, + expiry_timestamp: datetime = None, + metric_specification: str = None, + metric_version: str = None, + software_version: str = None, + total_metrics: int = None, + summary: Dict = None, + results: List[AnyOfFAIRResultsResultsItems] = None, + ): # noqa: E501 """FAIRResults - a model defined in Swagger :param test_id: The test_id of this FAIRResults. # noqa: E501 @@ -45,33 +60,33 @@ def __init__(self, test_id: str=None, request: Dict=None, resolved_url: str=None :type results: List[AnyOfFAIRResultsResultsItems] """ self.swagger_types = { - 'test_id': str, - 'request': Dict, - 'resolved_url': str, - 'start_timestamp': datetime, - 'end_timestamp': datetime, - 'expiry_timestamp': datetime, - 'metric_specification': str, - 'metric_version': str, - 'software_version': str, - 'total_metrics': int, - 'summary': Dict, - 'results': List[AnyOfFAIRResultsResultsItems] + "test_id": str, + "request": Dict, + "resolved_url": str, + "start_timestamp": datetime, + "end_timestamp": datetime, + "expiry_timestamp": datetime, + "metric_specification": str, + "metric_version": str, + "software_version": str, + "total_metrics": int, + "summary": Dict, + "results": List[AnyOfFAIRResultsResultsItems], } self.attribute_map = { - 'test_id': 'test_id', - 'request': 'request', - 'resolved_url': 'resolved_url', - 'start_timestamp': 'start_timestamp', - 'end_timestamp': 'end_timestamp', - 'expiry_timestamp': 'expiry_timestamp', - 'metric_specification': 'metric_specification', - 'metric_version': 'metric_version', - 'software_version': 'software_version', - 'total_metrics': 'total_metrics', - 'summary': 'summary', - 'results': 'results' + "test_id": "test_id", + "request": "request", + "resolved_url": "resolved_url", + "start_timestamp": "start_timestamp", + "end_timestamp": "end_timestamp", + "expiry_timestamp": "expiry_timestamp", + "metric_specification": "metric_specification", + "metric_version": "metric_version", + "software_version": "software_version", + "total_metrics": "total_metrics", + "summary": "summary", + "results": "results", } self._test_id = test_id self._request = request @@ -87,7 +102,7 @@ def __init__(self, test_id: str=None, request: Dict=None, resolved_url: str=None self._results = results @classmethod - def from_dict(cls, dikt) -> 'FAIRResults': + def from_dict(cls, dikt) -> "FAIRResults": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/formal_metadata.py b/fuji_server/models/formal_metadata.py index 607795c5..575192fb 100644 --- a/fuji_server/models/formal_metadata.py +++ b/fuji_server/models/formal_metadata.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 from fuji_server.models.formal_metadata_output import FormalMetadataOutput # noqa: F401,E501 -from fuji_server import util class FormalMetadata(Model): @@ -20,16 +20,18 @@ class FormalMetadata(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: str = 'incomplete', - output: FormalMetadataOutput = None, - test_debug: Debug = None): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: str = "incomplete", + output: FormalMetadataOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """FormalMetadata - a model defined in Swagger :param id: The id of this FormalMetadata. # noqa: E501 @@ -52,27 +54,27 @@ def __init__(self, :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': str, - 'output': FormalMetadataOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": str, + "output": FormalMetadataOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -85,7 +87,7 @@ def __init__(self, self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'FormalMetadata': + def from_dict(cls, dikt) -> "FormalMetadata": """Returns the dict as a model :param dikt: A dict. @@ -114,7 +116,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -137,7 +139,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -160,7 +162,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -203,10 +205,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this FormalMetadata. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -229,7 +232,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/formal_metadata_output.py b/fuji_server/models/formal_metadata_output.py index faf05cd2..c8e4f91b 100644 --- a/fuji_server/models/formal_metadata_output.py +++ b/fuji_server/models/formal_metadata_output.py @@ -1,13 +1,13 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.formal_metadata_output_inner import FormalMetadataOutputInner # noqa: F401,E501 -from fuji_server import util class FormalMetadataOutput(Model): @@ -17,15 +17,13 @@ class FormalMetadataOutput(Model): """ def __init__(self): # noqa: E501 - """FormalMetadataOutput - a model defined in Swagger - - """ + """FormalMetadataOutput - a model defined in Swagger""" self.swagger_types = {} self.attribute_map = {} @classmethod - def from_dict(cls, dikt) -> 'FormalMetadataOutput': + def from_dict(cls, dikt) -> "FormalMetadataOutput": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/formal_metadata_output_inner.py b/fuji_server/models/formal_metadata_output_inner.py index 2d389b2e..62db7373 100644 --- a/fuji_server/models/formal_metadata_output_inner.py +++ b/fuji_server/models/formal_metadata_output_inner.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class FormalMetadataOutputInner(Model): @@ -15,10 +15,9 @@ class FormalMetadataOutputInner(Model): Do not edit the class manually. """ - def __init__(self, - serialization_format: str = None, - source: str = None, - is_metadata_found: bool = False): # noqa: E501 + def __init__( + self, serialization_format: str = None, source: str = None, is_metadata_found: bool = False + ): # noqa: E501 """FormalMetadataOutputInner - a model defined in Swagger :param serialization_format: The serialization_format of this FormalMetadataOutputInner. # noqa: E501 @@ -28,19 +27,19 @@ def __init__(self, :param is_metadata_found: The is_metadata_found of this FormalMetadataOutputInner. # noqa: E501 :type is_metadata_found: bool """ - self.swagger_types = {'serialization_format': str, 'source': str, 'is_metadata_found': bool} + self.swagger_types = {"serialization_format": str, "source": str, "is_metadata_found": bool} self.attribute_map = { - 'serialization_format': 'serialization_format', - 'source': 'source', - 'is_metadata_found': 'is_metadata_found' + "serialization_format": "serialization_format", + "source": "source", + "is_metadata_found": "is_metadata_found", } self._serialization_format = serialization_format self._source = source self._is_metadata_found = is_metadata_found @classmethod - def from_dict(cls, dikt) -> 'FormalMetadataOutputInner': + def from_dict(cls, dikt) -> "FormalMetadataOutputInner": """Returns the dict as a model :param dikt: A dict. @@ -89,9 +88,9 @@ def source(self, source: str): :param source: The source of this FormalMetadataOutputInner. :type source: str """ - allowed_values = ['typed_link', 'content_negotiate', 'structured_data', 'sparql_endpoint'] # noqa: E501 + allowed_values = ["typed_link", "content_negotiate", "structured_data", "sparql_endpoint"] # noqa: E501 if source not in allowed_values: - raise ValueError('Invalid value for `source` ({0}), must be one of {1}'.format(source, allowed_values)) + raise ValueError("Invalid value for `source` ({0}), must be one of {1}".format(source, allowed_values)) self._source = source diff --git a/fuji_server/models/harvest.py b/fuji_server/models/harvest.py index b3ddea07..b6ac5c34 100644 --- a/fuji_server/models/harvest.py +++ b/fuji_server/models/harvest.py @@ -1,19 +1,23 @@ # coding: utf-8 from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model + class Harvest(Model): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. """ - def __init__(self, object_identifier: str=None, auth_token: str=None, auth_token_type: str=None): # noqa: E501 + + def __init__( + self, object_identifier: str = None, auth_token: str = None, auth_token_type: str = None + ): # noqa: E501 """Harvest - a model defined in Swagger :param object_identifier: The object_identifier of this Harvest. # noqa: E501 @@ -23,23 +27,19 @@ def __init__(self, object_identifier: str=None, auth_token: str=None, auth_token :param auth_token_type: The auth_token_type of this Harvest. # noqa: E501 :type auth_token_type: str """ - self.swagger_types = { - 'object_identifier': str, - 'auth_token': str, - 'auth_token_type': str - } + self.swagger_types = {"object_identifier": str, "auth_token": str, "auth_token_type": str} self.attribute_map = { - 'object_identifier': 'object_identifier', - 'auth_token': 'auth_token', - 'auth_token_type': 'auth_token_type' + "object_identifier": "object_identifier", + "auth_token": "auth_token", + "auth_token_type": "auth_token_type", } self._object_identifier = object_identifier self._auth_token = auth_token self._auth_token_type = auth_token_type @classmethod - def from_dict(cls, dikt) -> 'Harvest': + def from_dict(cls, dikt) -> "Harvest": """Returns the dict as a model :param dikt: A dict. @@ -120,8 +120,7 @@ def auth_token_type(self, auth_token_type: str): allowed_values = ["Bearer", "Basic"] # noqa: E501 if auth_token_type not in allowed_values: raise ValueError( - "Invalid value for `auth_token_type` ({0}), must be one of {1}" - .format(auth_token_type, allowed_values) + "Invalid value for `auth_token_type` ({0}), must be one of {1}".format(auth_token_type, allowed_values) ) - self._auth_token_type = auth_token_type \ No newline at end of file + self._auth_token_type = auth_token_type diff --git a/fuji_server/models/harvest_results.py b/fuji_server/models/harvest_results.py index 25b00924..e4f7093c 100644 --- a/fuji_server/models/harvest_results.py +++ b/fuji_server/models/harvest_results.py @@ -1,13 +1,13 @@ # coding: utf-8 from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.harvest_results_metadata import HarvestResultsMetadata # noqa: F401,E501 -from fuji_server import util class HarvestResults(Model): @@ -15,7 +15,8 @@ class HarvestResults(Model): Do not edit the class manually. """ - def __init__(self, target_uri: str=None, metadata: List[HarvestResultsMetadata]=None): # noqa: E501 + + def __init__(self, target_uri: str = None, metadata: List[HarvestResultsMetadata] = None): # noqa: E501 """HarvestResults - a model defined in Swagger :param target_uri: The target_uri of this HarvestResults. # noqa: E501 @@ -23,20 +24,14 @@ def __init__(self, target_uri: str=None, metadata: List[HarvestResultsMetadata]= :param metadata: The metadata of this HarvestResults. # noqa: E501 :type metadata: List[HarvestResultsMetadata] """ - self.swagger_types = { - 'target_uri': str, - 'metadata': List[HarvestResultsMetadata] - } - - self.attribute_map = { - 'target_uri': 'target_uri', - 'metadata': 'metadata' - } + self.swagger_types = {"target_uri": str, "metadata": List[HarvestResultsMetadata]} + + self.attribute_map = {"target_uri": "target_uri", "metadata": "metadata"} self._target_uri = target_uri self._metadata = metadata @classmethod - def from_dict(cls, dikt) -> 'HarvestResults': + def from_dict(cls, dikt) -> "HarvestResults": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/harvest_results_metadata.py b/fuji_server/models/harvest_results_metadata.py index 1ed07c90..e764bd35 100644 --- a/fuji_server/models/harvest_results_metadata.py +++ b/fuji_server/models/harvest_results_metadata.py @@ -1,12 +1,12 @@ # coding: utf-8 from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class HarvestResultsMetadata(Model): @@ -14,7 +14,16 @@ class HarvestResultsMetadata(Model): Do not edit the class manually. """ - def __init__(self, method: str=None, url: str=None, format: str=None, schema: str=None, namespaces: List[str]=None, metadata: Dict=None): # noqa: E501 + + def __init__( + self, + method: str = None, + url: str = None, + format: str = None, + schema: str = None, + namespaces: List[str] = None, + metadata: Dict = None, + ): # noqa: E501 """HarvestResultsMetadata - a model defined in Swagger :param method: The method of this HarvestResultsMetadata. # noqa: E501 @@ -31,21 +40,21 @@ def __init__(self, method: str=None, url: str=None, format: str=None, schema: st :type metadata: Dict """ self.swagger_types = { - 'method': str, - 'url': str, - 'format': str, - 'schema': str, - 'namespaces': List[str], - 'metadata': Dict + "method": str, + "url": str, + "format": str, + "schema": str, + "namespaces": List[str], + "metadata": Dict, } self.attribute_map = { - 'method': 'method', - 'url': 'url', - 'format': 'format', - 'schema': 'schema', - 'namespaces': 'namespaces', - 'metadata': 'metadata' + "method": "method", + "url": "url", + "format": "format", + "schema": "schema", + "namespaces": "namespaces", + "metadata": "metadata", } self._method = method self._url = url @@ -55,7 +64,7 @@ def __init__(self, method: str=None, url: str=None, format: str=None, schema: st self._metadata = metadata @classmethod - def from_dict(cls, dikt) -> 'HarvestResultsMetadata': + def from_dict(cls, dikt) -> "HarvestResultsMetadata": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/identifier_included.py b/fuji_server/models/identifier_included.py index f5443649..3ed89f81 100644 --- a/fuji_server/models/identifier_included.py +++ b/fuji_server/models/identifier_included.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 from fuji_server.models.identifier_included_output import IdentifierIncludedOutput # noqa: F401,E501 -from fuji_server import util class IdentifierIncluded(Model): @@ -20,16 +20,18 @@ class IdentifierIncluded(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: str = 'incomplete', - output: IdentifierIncludedOutput = None, - test_debug: Debug = None): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: str = "incomplete", + output: IdentifierIncludedOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """IdentifierIncluded - a model defined in Swagger :param id: The id of this IdentifierIncluded. # noqa: E501 @@ -52,27 +54,27 @@ def __init__(self, :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': str, - 'output': IdentifierIncludedOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": str, + "output": IdentifierIncludedOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -85,7 +87,7 @@ def __init__(self, self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'IdentifierIncluded': + def from_dict(cls, dikt) -> "IdentifierIncluded": """Returns the dict as a model :param dikt: A dict. @@ -114,7 +116,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -137,7 +139,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -160,7 +162,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -203,10 +205,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this IdentifierIncluded. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -229,7 +232,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/identifier_included_output.py b/fuji_server/models/identifier_included_output.py index 7ad833f7..f9c090c8 100644 --- a/fuji_server/models/identifier_included_output.py +++ b/fuji_server/models/identifier_included_output.py @@ -1,13 +1,13 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.identifier_included_output_inner import IdentifierIncludedOutputInner # noqa: F401,E501 -from fuji_server import util class IdentifierIncludedOutput(Model): @@ -22,13 +22,13 @@ def __init__(self, object_content_identifier_included: List[IdentifierIncludedOu :param object_content_identifier_included: The object_content_identifier_included of this IdentifierIncludedOutput. # noqa: E501 :type object_content_identifier_included: List[IdentifierIncludedOutputInner] """ - self.swagger_types = {'object_content_identifier_included': List[IdentifierIncludedOutputInner]} + self.swagger_types = {"object_content_identifier_included": List[IdentifierIncludedOutputInner]} - self.attribute_map = {'object_content_identifier_included': 'object_content_identifier_included'} + self.attribute_map = {"object_content_identifier_included": "object_content_identifier_included"} self._object_content_identifier_included = object_content_identifier_included @classmethod - def from_dict(cls, dikt) -> 'IdentifierIncludedOutput': + def from_dict(cls, dikt) -> "IdentifierIncludedOutput": """Returns the dict as a model :param dikt: A dict. @@ -49,8 +49,9 @@ def object_content_identifier_included(self) -> List[IdentifierIncludedOutputInn return self._object_content_identifier_included @object_content_identifier_included.setter - def object_content_identifier_included(self, - object_content_identifier_included: List[IdentifierIncludedOutputInner]): + def object_content_identifier_included( + self, object_content_identifier_included: List[IdentifierIncludedOutputInner] + ): """Sets the object_content_identifier_included of this IdentifierIncludedOutput. diff --git a/fuji_server/models/identifier_included_output_inner.py b/fuji_server/models/identifier_included_output_inner.py index c927c4f1..bdd9d23c 100644 --- a/fuji_server/models/identifier_included_output_inner.py +++ b/fuji_server/models/identifier_included_output_inner.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class IdentifierIncludedOutputInner(Model): @@ -14,23 +14,20 @@ class IdentifierIncludedOutputInner(Model): Do not edit the class manually. """ - def __init__(self, content_identifier_included: str=None): # noqa: E501 + + def __init__(self, content_identifier_included: str = None): # noqa: E501 """IdentifierIncludedOutputInner - a model defined in Swagger :param content_identifier_included: The content_identifier_included of this IdentifierIncludedOutputInner. # noqa: E501 :type content_identifier_included: str """ - self.swagger_types = { - 'content_identifier_included': str - } + self.swagger_types = {"content_identifier_included": str} - self.attribute_map = { - 'content_identifier_included': 'content_identifier_included' - } + self.attribute_map = {"content_identifier_included": "content_identifier_included"} self._content_identifier_included = content_identifier_included @classmethod - def from_dict(cls, dikt) -> 'IdentifierIncludedOutputInner': + def from_dict(cls, dikt) -> "IdentifierIncludedOutputInner": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/license.py b/fuji_server/models/license.py index 87ea2df4..83a28612 100644 --- a/fuji_server/models/license.py +++ b/fuji_server/models/license.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 from fuji_server.models.license_output import LicenseOutput # noqa: F401,E501 -from fuji_server import util class License(Model): @@ -20,16 +20,18 @@ class License(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: str = 'incomplete', - output: LicenseOutput = None, - test_debug: Debug = None): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: str = "incomplete", + output: LicenseOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """License - a model defined in Swagger :param id: The id of this License. # noqa: E501 @@ -52,27 +54,27 @@ def __init__(self, :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': str, - 'output': LicenseOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": str, + "output": LicenseOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -85,7 +87,7 @@ def __init__(self, self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'License': + def from_dict(cls, dikt) -> "License": """Returns the dict as a model :param dikt: A dict. @@ -114,7 +116,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -137,7 +139,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -160,7 +162,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -203,10 +205,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this License. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -229,7 +232,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/license_output.py b/fuji_server/models/license_output.py index a753f61f..bc303ad2 100644 --- a/fuji_server/models/license_output.py +++ b/fuji_server/models/license_output.py @@ -1,13 +1,13 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.license_output_inner import LicenseOutputInner # noqa: F401,E501 -from fuji_server import util class LicenseOutput(Model): @@ -17,15 +17,13 @@ class LicenseOutput(Model): """ def __init__(self): # noqa: E501 - """LicenseOutput - a model defined in Swagger - - """ + """LicenseOutput - a model defined in Swagger""" self.swagger_types = {} self.attribute_map = {} @classmethod - def from_dict(cls, dikt) -> 'LicenseOutput': + def from_dict(cls, dikt) -> "LicenseOutput": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/license_output_inner.py b/fuji_server/models/license_output_inner.py index f71ea689..10c032e1 100644 --- a/fuji_server/models/license_output_inner.py +++ b/fuji_server/models/license_output_inner.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class LicenseOutputInner(Model): @@ -25,15 +25,15 @@ def __init__(self, license: str = None, osi_approved: bool = False, details_url: :param details_url: The details_url of this LicenseOutputInner. # noqa: E501 :type details_url: str """ - self.swagger_types = {'license': str, 'osi_approved': bool, 'details_url': str} + self.swagger_types = {"license": str, "osi_approved": bool, "details_url": str} - self.attribute_map = {'license': 'license', 'osi_approved': 'OSI_approved', 'details_url': 'details_url'} + self.attribute_map = {"license": "license", "osi_approved": "OSI_approved", "details_url": "details_url"} self._license = license self._osi_approved = osi_approved self._details_url = details_url @classmethod - def from_dict(cls, dikt) -> 'LicenseOutputInner': + def from_dict(cls, dikt) -> "LicenseOutputInner": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/metadata_preserved.py b/fuji_server/models/metadata_preserved.py index abc1ec83..8d28e000 100644 --- a/fuji_server/models/metadata_preserved.py +++ b/fuji_server/models/metadata_preserved.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 from fuji_server.models.metadata_preserved_output import MetadataPreservedOutput # noqa: F401,E501 -from fuji_server import util class MetadataPreserved(Model): @@ -20,16 +20,18 @@ class MetadataPreserved(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: str = 'incomplete', - output: MetadataPreservedOutput = None, - test_debug: Debug = None): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: str = "incomplete", + output: MetadataPreservedOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """MetadataPreserved - a model defined in Swagger :param id: The id of this MetadataPreserved. # noqa: E501 @@ -52,27 +54,27 @@ def __init__(self, :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': str, - 'output': MetadataPreservedOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": str, + "output": MetadataPreservedOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -85,7 +87,7 @@ def __init__(self, self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'MetadataPreserved': + def from_dict(cls, dikt) -> "MetadataPreserved": """Returns the dict as a model :param dikt: A dict. @@ -114,7 +116,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -137,7 +139,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -160,7 +162,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -203,10 +205,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this MetadataPreserved. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -229,7 +232,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/metadata_preserved_output.py b/fuji_server/models/metadata_preserved_output.py index 227da73e..281252b0 100644 --- a/fuji_server/models/metadata_preserved_output.py +++ b/fuji_server/models/metadata_preserved_output.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class MetadataPreservedOutput(Model): @@ -21,13 +21,13 @@ def __init__(self, metadata_preservation_method: List[str] = None): # noqa: E50 :param metadata_preservation_method: The metadata_preservation_method of this MetadataPreservedOutput. # noqa: E501 :type metadata_preservation_method: List[str] """ - self.swagger_types = {'metadata_preservation_method': List[str]} + self.swagger_types = {"metadata_preservation_method": List[str]} - self.attribute_map = {'metadata_preservation_method': 'metadata_preservation_method'} + self.attribute_map = {"metadata_preservation_method": "metadata_preservation_method"} self._metadata_preservation_method = metadata_preservation_method @classmethod - def from_dict(cls, dikt) -> 'MetadataPreservedOutput': + def from_dict(cls, dikt) -> "MetadataPreservedOutput": """Returns the dict as a model :param dikt: A dict. @@ -55,13 +55,13 @@ def metadata_preservation_method(self, metadata_preservation_method: List[str]): :param metadata_preservation_method: The metadata_preservation_method of this MetadataPreservedOutput. :type metadata_preservation_method: List[str] """ - allowed_values = ['datacite', 'tombstone'] # noqa: E501 + allowed_values = ["datacite", "tombstone"] # noqa: E501 if not set(metadata_preservation_method).issubset(set(allowed_values)): raise ValueError( - 'Invalid values for `metadata_preservation_method` [{0}], must be a subset of [{1}]' # noqa: E501 - .format( - ', '.join(map(str, - set(metadata_preservation_method) - set(allowed_values))), # noqa: E501 - ', '.join(map(str, allowed_values)))) + "Invalid values for `metadata_preservation_method` [{0}], must be a subset of [{1}]".format( # noqa: E501 + ", ".join(map(str, set(metadata_preservation_method) - set(allowed_values))), # noqa: E501 + ", ".join(map(str, allowed_values)), + ) + ) self._metadata_preservation_method = metadata_preservation_method diff --git a/fuji_server/models/metric.py b/fuji_server/models/metric.py index 73de8c00..03c7b2a3 100644 --- a/fuji_server/models/metric.py +++ b/fuji_server/models/metric.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class Metric(Model): @@ -15,17 +15,19 @@ class Metric(Model): Do not edit the class manually. """ - def __init__(self, - metric_identifier: str = None, - metric_name: str = None, - description: str = None, - fair_principle: str = None, - evaluation_mechanism: str = None, - date_created: date = None, - date_updated: date = None, - created_by: str = None, - version: float = None, - total_score: int = None): # noqa: E501 + def __init__( + self, + metric_identifier: str = None, + metric_name: str = None, + description: str = None, + fair_principle: str = None, + evaluation_mechanism: str = None, + date_created: date = None, + date_updated: date = None, + created_by: str = None, + version: float = None, + total_score: int = None, + ): # noqa: E501 """Metric - a model defined in Swagger :param metric_identifier: The metric_identifier of this Metric. # noqa: E501 @@ -50,29 +52,29 @@ def __init__(self, :type total_score: int """ self.swagger_types = { - 'metric_identifier': str, - 'metric_name': str, - 'description': str, - 'fair_principle': str, - 'evaluation_mechanism': str, - 'date_created': date, - 'date_updated': date, - 'created_by': str, - 'version': float, - 'total_score': int + "metric_identifier": str, + "metric_name": str, + "description": str, + "fair_principle": str, + "evaluation_mechanism": str, + "date_created": date, + "date_updated": date, + "created_by": str, + "version": float, + "total_score": int, } self.attribute_map = { - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'description': 'description', - 'fair_principle': 'fair_principle', - 'evaluation_mechanism': 'evaluation_mechanism', - 'date_created': 'date_created', - 'date_updated': 'date_updated', - 'created_by': 'created_by', - 'version': 'version', - 'total_score': 'total_score' + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "description": "description", + "fair_principle": "fair_principle", + "evaluation_mechanism": "evaluation_mechanism", + "date_created": "date_created", + "date_updated": "date_updated", + "created_by": "created_by", + "version": "version", + "total_score": "total_score", } self._metric_identifier = metric_identifier self._metric_name = metric_name @@ -86,7 +88,7 @@ def __init__(self, self._total_score = total_score @classmethod - def from_dict(cls, dikt) -> 'Metric': + def from_dict(cls, dikt) -> "Metric": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/metrics.py b/fuji_server/models/metrics.py index bfcf56c3..06d9bd71 100644 --- a/fuji_server/models/metrics.py +++ b/fuji_server/models/metrics.py @@ -1,13 +1,13 @@ # coding: utf-8 from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.metric import Metric # noqa: F401,E501 -from fuji_server import util class Metrics(Model): @@ -15,7 +15,8 @@ class Metrics(Model): Do not edit the class manually. """ - def __init__(self, total: int=None, metrics: List[Metric]=None): # noqa: E501 + + def __init__(self, total: int = None, metrics: List[Metric] = None): # noqa: E501 """Metrics - a model defined in Swagger :param total: The total of this Metrics. # noqa: E501 @@ -23,20 +24,14 @@ def __init__(self, total: int=None, metrics: List[Metric]=None): # noqa: E501 :param metrics: The metrics of this Metrics. # noqa: E501 :type metrics: List[Metric] """ - self.swagger_types = { - 'total': int, - 'metrics': List[Metric] - } - - self.attribute_map = { - 'total': 'total', - 'metrics': 'metrics' - } + self.swagger_types = {"total": int, "metrics": List[Metric]} + + self.attribute_map = {"total": "total", "metrics": "metrics"} self._total = total self._metrics = metrics @classmethod - def from_dict(cls, dikt) -> 'Metrics': + def from_dict(cls, dikt) -> "Metrics": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/output_core_metadata_found.py b/fuji_server/models/output_core_metadata_found.py index 6a38dca1..dab810f8 100644 --- a/fuji_server/models/output_core_metadata_found.py +++ b/fuji_server/models/output_core_metadata_found.py @@ -1,12 +1,12 @@ # coding: utf-8 from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class OutputCoreMetadataFound(Model): @@ -14,18 +14,15 @@ class OutputCoreMetadataFound(Model): Do not edit the class manually. """ - def __init__(self): # noqa: E501 - """OutputCoreMetadataFound - a model defined in Swagger - """ - self.swagger_types = { - } + def __init__(self): # noqa: E501 + """OutputCoreMetadataFound - a model defined in Swagger""" + self.swagger_types = {} - self.attribute_map = { - } + self.attribute_map = {} @classmethod - def from_dict(cls, dikt) -> 'OutputCoreMetadataFound': + def from_dict(cls, dikt) -> "OutputCoreMetadataFound": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/output_search_mechanisms.py b/fuji_server/models/output_search_mechanisms.py index b45b111a..92347a31 100644 --- a/fuji_server/models/output_search_mechanisms.py +++ b/fuji_server/models/output_search_mechanisms.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class OutputSearchMechanisms(Model): @@ -23,14 +23,14 @@ def __init__(self, mechanism: str = None, mechanism_info: List[str] = None): # :param mechanism_info: The mechanism_info of this OutputSearchMechanisms. # noqa: E501 :type mechanism_info: List[str] """ - self.swagger_types = {'mechanism': str, 'mechanism_info': List[str]} + self.swagger_types = {"mechanism": str, "mechanism_info": List[str]} - self.attribute_map = {'mechanism': 'mechanism', 'mechanism_info': 'mechanism_info'} + self.attribute_map = {"mechanism": "mechanism", "mechanism_info": "mechanism_info"} self._mechanism = mechanism self._mechanism_info = mechanism_info @classmethod - def from_dict(cls, dikt) -> 'OutputSearchMechanisms': + def from_dict(cls, dikt) -> "OutputSearchMechanisms": """Returns the dict as a model :param dikt: A dict. @@ -58,10 +58,11 @@ def mechanism(self, mechanism: str): :param mechanism: The mechanism of this OutputSearchMechanisms. :type mechanism: str """ - allowed_values = ['metadata registry', 'structured data'] # noqa: E501 + allowed_values = ["metadata registry", "structured data"] # noqa: E501 if mechanism not in allowed_values: - raise ValueError('Invalid value for `mechanism` ({0}), must be one of {1}'.format( - mechanism, allowed_values)) + raise ValueError( + "Invalid value for `mechanism` ({0}), must be one of {1}".format(mechanism, allowed_values) + ) self._mechanism = mechanism diff --git a/fuji_server/models/persistence.py b/fuji_server/models/persistence.py index 13a425a6..ceeacfd9 100644 --- a/fuji_server/models/persistence.py +++ b/fuji_server/models/persistence.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 from fuji_server.models.persistence_output import PersistenceOutput # noqa: F401,E501 -from fuji_server import util class Persistence(Model): @@ -20,16 +20,18 @@ class Persistence(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: str = 'incomplete', - output: PersistenceOutput = None, - test_debug: Debug = None): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: str = "incomplete", + output: PersistenceOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """Persistence - a model defined in Swagger :param id: The id of this Persistence. # noqa: E501 @@ -52,27 +54,27 @@ def __init__(self, :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': str, - 'output': PersistenceOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": str, + "output": PersistenceOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -85,7 +87,7 @@ def __init__(self, self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'Persistence': + def from_dict(cls, dikt) -> "Persistence": """Returns the dict as a model :param dikt: A dict. @@ -114,7 +116,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -137,7 +139,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -160,7 +162,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -203,10 +205,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this Persistence. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -229,7 +232,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/persistence_output.py b/fuji_server/models/persistence_output.py index 63611389..99408d38 100644 --- a/fuji_server/models/persistence_output.py +++ b/fuji_server/models/persistence_output.py @@ -1,13 +1,13 @@ # coding: utf-8 from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.persistence_output_inner import PersistenceOutputInner # noqa: F401,E501 -from fuji_server import util class PersistenceOutput(Model): @@ -15,23 +15,20 @@ class PersistenceOutput(Model): Do not edit the class manually. """ - def __init__(self, persistent_identifiers: List[PersistenceOutputInner]=None): # noqa: E501 + + def __init__(self, persistent_identifiers: List[PersistenceOutputInner] = None): # noqa: E501 """PersistenceOutput - a model defined in Swagger :param persistent_identifiers: The persistent_identifiers of this PersistenceOutput. # noqa: E501 :type persistent_identifiers: List[PersistenceOutputInner] """ - self.swagger_types = { - 'persistent_identifiers': List[PersistenceOutputInner] - } + self.swagger_types = {"persistent_identifiers": List[PersistenceOutputInner]} - self.attribute_map = { - 'persistent_identifiers': 'persistent_identifiers' - } + self.attribute_map = {"persistent_identifiers": "persistent_identifiers"} self._persistent_identifiers = persistent_identifiers @classmethod - def from_dict(cls, dikt) -> 'PersistenceOutput': + def from_dict(cls, dikt) -> "PersistenceOutput": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/persistence_output_inner.py b/fuji_server/models/persistence_output_inner.py index a41e24ff..8f05f26f 100644 --- a/fuji_server/models/persistence_output_inner.py +++ b/fuji_server/models/persistence_output_inner.py @@ -1,12 +1,12 @@ # coding: utf-8 from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class PersistenceOutputInner(Model): @@ -14,7 +14,10 @@ class PersistenceOutputInner(Model): Do not edit the class manually. """ - def __init__(self, pid: str=None, pid_scheme: str=None, resolvable_status: bool=False, resolved_url: str=None): # noqa: E501 + + def __init__( + self, pid: str = None, pid_scheme: str = None, resolvable_status: bool = False, resolved_url: str = None + ): # noqa: E501 """PersistenceOutputInner - a model defined in Swagger :param pid: The pid of this PersistenceOutputInner. # noqa: E501 @@ -26,18 +29,13 @@ def __init__(self, pid: str=None, pid_scheme: str=None, resolvable_status: bool= :param resolved_url: The resolved_url of this PersistenceOutputInner. # noqa: E501 :type resolved_url: str """ - self.swagger_types = { - 'pid': str, - 'pid_scheme': str, - 'resolvable_status': bool, - 'resolved_url': str - } + self.swagger_types = {"pid": str, "pid_scheme": str, "resolvable_status": bool, "resolved_url": str} self.attribute_map = { - 'pid': 'pid', - 'pid_scheme': 'pid_scheme', - 'resolvable_status': 'resolvable_status', - 'resolved_url': 'resolved_url' + "pid": "pid", + "pid_scheme": "pid_scheme", + "resolvable_status": "resolvable_status", + "resolved_url": "resolved_url", } self._pid = pid self._pid_scheme = pid_scheme @@ -45,7 +43,7 @@ def __init__(self, pid: str=None, pid_scheme: str=None, resolvable_status: bool= self._resolved_url = resolved_url @classmethod - def from_dict(cls, dikt) -> 'PersistenceOutputInner': + def from_dict(cls, dikt) -> "PersistenceOutputInner": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/related_resource.py b/fuji_server/models/related_resource.py index 8f6eb975..5dddcf02 100644 --- a/fuji_server/models/related_resource.py +++ b/fuji_server/models/related_resource.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 from fuji_server.models.related_resource_output import RelatedResourceOutput # noqa: F401,E501 -from fuji_server import util class RelatedResource(Model): @@ -20,16 +20,18 @@ class RelatedResource(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: str = 'incomplete', - output: RelatedResourceOutput = None, - test_debug: Debug = None): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: str = "incomplete", + output: RelatedResourceOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """RelatedResource - a model defined in Swagger :param id: The id of this RelatedResource. # noqa: E501 @@ -52,27 +54,27 @@ def __init__(self, :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': str, - 'output': RelatedResourceOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": str, + "output": RelatedResourceOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -85,7 +87,7 @@ def __init__(self, self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'RelatedResource': + def from_dict(cls, dikt) -> "RelatedResource": """Returns the dict as a model :param dikt: A dict. @@ -114,7 +116,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -137,7 +139,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -160,7 +162,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -203,10 +205,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this RelatedResource. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -229,7 +232,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/related_resource_output.py b/fuji_server/models/related_resource_output.py index 69e5c173..ca9e34d3 100644 --- a/fuji_server/models/related_resource_output.py +++ b/fuji_server/models/related_resource_output.py @@ -1,13 +1,13 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.related_resource_output_inner import RelatedResourceOutputInner # noqa: F401,E501 -from fuji_server import util class RelatedResourceOutput(Model): @@ -17,15 +17,13 @@ class RelatedResourceOutput(Model): """ def __init__(self): # noqa: E501 - """RelatedResourceOutput - a model defined in Swagger - - """ + """RelatedResourceOutput - a model defined in Swagger""" self.swagger_types = {} self.attribute_map = {} @classmethod - def from_dict(cls, dikt) -> 'RelatedResourceOutput': + def from_dict(cls, dikt) -> "RelatedResourceOutput": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/related_resource_output_inner.py b/fuji_server/models/related_resource_output_inner.py index 3981fdea..b2f71427 100644 --- a/fuji_server/models/related_resource_output_inner.py +++ b/fuji_server/models/related_resource_output_inner.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class RelatedResourceOutputInner(Model): @@ -23,14 +23,14 @@ def __init__(self, related_resource: str = None, relation_type: str = None): # :param relation_type: The relation_type of this RelatedResourceOutputInner. # noqa: E501 :type relation_type: str """ - self.swagger_types = {'related_resource': str, 'relation_type': str} + self.swagger_types = {"related_resource": str, "relation_type": str} - self.attribute_map = {'related_resource': 'related_resource', 'relation_type': 'relation_type'} + self.attribute_map = {"related_resource": "related_resource", "relation_type": "relation_type"} self._related_resource = related_resource self._relation_type = relation_type @classmethod - def from_dict(cls, dikt) -> 'RelatedResourceOutputInner': + def from_dict(cls, dikt) -> "RelatedResourceOutputInner": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/searchable.py b/fuji_server/models/searchable.py index bbc794dc..c29736db 100644 --- a/fuji_server/models/searchable.py +++ b/fuji_server/models/searchable.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 from fuji_server.models.searchable_output import SearchableOutput # noqa: F401,E501 -from fuji_server import util class Searchable(Model): @@ -20,16 +20,18 @@ class Searchable(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: str = 'incomplete', - output: SearchableOutput = None, - test_debug: Debug = None): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: str = "incomplete", + output: SearchableOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """Searchable - a model defined in Swagger :param id: The id of this Searchable. # noqa: E501 @@ -52,27 +54,27 @@ def __init__(self, :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': str, - 'output': SearchableOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": str, + "output": SearchableOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -85,7 +87,7 @@ def __init__(self, self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'Searchable': + def from_dict(cls, dikt) -> "Searchable": """Returns the dict as a model :param dikt: A dict. @@ -114,7 +116,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -137,7 +139,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -160,7 +162,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -203,10 +205,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this Searchable. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -229,7 +232,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/searchable_output.py b/fuji_server/models/searchable_output.py index 35c07ade..d8146a24 100644 --- a/fuji_server/models/searchable_output.py +++ b/fuji_server/models/searchable_output.py @@ -1,13 +1,13 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.output_search_mechanisms import OutputSearchMechanisms # noqa: F401,E501 -from fuji_server import util class SearchableOutput(Model): @@ -22,13 +22,13 @@ def __init__(self, search_mechanisms: List[OutputSearchMechanisms] = None): # n :param search_mechanisms: The search_mechanisms of this SearchableOutput. # noqa: E501 :type search_mechanisms: List[OutputSearchMechanisms] """ - self.swagger_types = {'search_mechanisms': List[OutputSearchMechanisms]} + self.swagger_types = {"search_mechanisms": List[OutputSearchMechanisms]} - self.attribute_map = {'search_mechanisms': 'search_mechanisms'} + self.attribute_map = {"search_mechanisms": "search_mechanisms"} self._search_mechanisms = search_mechanisms @classmethod - def from_dict(cls, dikt) -> 'SearchableOutput': + def from_dict(cls, dikt) -> "SearchableOutput": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/semantic_vocabulary.py b/fuji_server/models/semantic_vocabulary.py index 7d690184..65a9b1d3 100644 --- a/fuji_server/models/semantic_vocabulary.py +++ b/fuji_server/models/semantic_vocabulary.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 from fuji_server.models.semantic_vocabulary_output import SemanticVocabularyOutput # noqa: F401,E501 -from fuji_server import util class SemanticVocabulary(Model): @@ -20,16 +20,18 @@ class SemanticVocabulary(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: str = 'incomplete', - output: SemanticVocabularyOutput = None, - test_debug: Debug = None): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: str = "incomplete", + output: SemanticVocabularyOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """SemanticVocabulary - a model defined in Swagger :param id: The id of this SemanticVocabulary. # noqa: E501 @@ -52,27 +54,27 @@ def __init__(self, :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': str, - 'output': SemanticVocabularyOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": str, + "output": SemanticVocabularyOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -85,7 +87,7 @@ def __init__(self, self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'SemanticVocabulary': + def from_dict(cls, dikt) -> "SemanticVocabulary": """Returns the dict as a model :param dikt: A dict. @@ -114,7 +116,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -137,7 +139,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -160,7 +162,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -203,10 +205,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this SemanticVocabulary. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -229,7 +232,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/semantic_vocabulary_output.py b/fuji_server/models/semantic_vocabulary_output.py index e4ca9f21..e37bb166 100644 --- a/fuji_server/models/semantic_vocabulary_output.py +++ b/fuji_server/models/semantic_vocabulary_output.py @@ -1,13 +1,13 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.semantic_vocabulary_output_inner import SemanticVocabularyOutputInner # noqa: F401,E501 -from fuji_server import util class SemanticVocabularyOutput(Model): @@ -17,15 +17,13 @@ class SemanticVocabularyOutput(Model): """ def __init__(self): # noqa: E501 - """SemanticVocabularyOutput - a model defined in Swagger - - """ + """SemanticVocabularyOutput - a model defined in Swagger""" self.swagger_types = {} self.attribute_map = {} @classmethod - def from_dict(cls, dikt) -> 'SemanticVocabularyOutput': + def from_dict(cls, dikt) -> "SemanticVocabularyOutput": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/semantic_vocabulary_output_inner.py b/fuji_server/models/semantic_vocabulary_output_inner.py index 911b4ce4..ecaa87ad 100644 --- a/fuji_server/models/semantic_vocabulary_output_inner.py +++ b/fuji_server/models/semantic_vocabulary_output_inner.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class SemanticVocabularyOutputInner(Model): @@ -23,14 +23,14 @@ def __init__(self, namespace: str = None, is_namespace_active: bool = False): # :param is_namespace_active: The is_namespace_active of this SemanticVocabularyOutputInner. # noqa: E501 :type is_namespace_active: bool """ - self.swagger_types = {'namespace': str, 'is_namespace_active': bool} + self.swagger_types = {"namespace": str, "is_namespace_active": bool} - self.attribute_map = {'namespace': 'namespace', 'is_namespace_active': 'is_namespace_active'} + self.attribute_map = {"namespace": "namespace", "is_namespace_active": "is_namespace_active"} self._namespace = namespace self._is_namespace_active = is_namespace_active @classmethod - def from_dict(cls, dikt) -> 'SemanticVocabularyOutputInner': + def from_dict(cls, dikt) -> "SemanticVocabularyOutputInner": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/standardised_protocol_data.py b/fuji_server/models/standardised_protocol_data.py index 10dbc4a7..6378fea0 100644 --- a/fuji_server/models/standardised_protocol_data.py +++ b/fuji_server/models/standardised_protocol_data.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 from fuji_server.models.standardised_protocol_data_output import StandardisedProtocolDataOutput # noqa: F401,E501 -from fuji_server import util class StandardisedProtocolData(Model): @@ -20,16 +20,18 @@ class StandardisedProtocolData(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: str = 'incomplete', - output: StandardisedProtocolDataOutput = None, - test_debug: Debug = None): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: str = "incomplete", + output: StandardisedProtocolDataOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """StandardisedProtocolData - a model defined in Swagger :param id: The id of this StandardisedProtocolData. # noqa: E501 @@ -52,27 +54,27 @@ def __init__(self, :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': str, - 'output': StandardisedProtocolDataOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": str, + "output": StandardisedProtocolDataOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -85,7 +87,7 @@ def __init__(self, self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'StandardisedProtocolData': + def from_dict(cls, dikt) -> "StandardisedProtocolData": """Returns the dict as a model :param dikt: A dict. @@ -114,7 +116,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -137,7 +139,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -160,7 +162,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -203,10 +205,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this StandardisedProtocolData. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -229,7 +232,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/standardised_protocol_data_output.py b/fuji_server/models/standardised_protocol_data_output.py index 11b3d260..60fc2969 100644 --- a/fuji_server/models/standardised_protocol_data_output.py +++ b/fuji_server/models/standardised_protocol_data_output.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class StandardisedProtocolDataOutput(Model): @@ -21,13 +21,13 @@ def __init__(self, standard_data_protocol: str = None): # noqa: E501 :param standard_data_protocol: The standard_data_protocol of this StandardisedProtocolDataOutput. # noqa: E501 :type standard_data_protocol: str """ - self.swagger_types = {'standard_data_protocol': str} + self.swagger_types = {"standard_data_protocol": str} - self.attribute_map = {'standard_data_protocol': 'standard_data_protocol'} + self.attribute_map = {"standard_data_protocol": "standard_data_protocol"} self._standard_data_protocol = standard_data_protocol @classmethod - def from_dict(cls, dikt) -> 'StandardisedProtocolDataOutput': + def from_dict(cls, dikt) -> "StandardisedProtocolDataOutput": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/standardised_protocol_metadata.py b/fuji_server/models/standardised_protocol_metadata.py index f2b912d1..caae9af2 100644 --- a/fuji_server/models/standardised_protocol_metadata.py +++ b/fuji_server/models/standardised_protocol_metadata.py @@ -1,17 +1,20 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +# noqa: F401,E501 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 -from fuji_server.models.standardised_protocol_metadata_output import StandardisedProtocolMetadataOutput # noqa: F401,E501 -from fuji_server import util +from fuji_server.models.standardised_protocol_metadata_output import ( + StandardisedProtocolMetadataOutput, +) class StandardisedProtocolMetadata(Model): @@ -20,16 +23,18 @@ class StandardisedProtocolMetadata(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: str = 'incomplete', - output: StandardisedProtocolMetadataOutput = None, - test_debug: Debug = None): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: str = "incomplete", + output: StandardisedProtocolMetadataOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """StandardisedProtocolMetadata - a model defined in Swagger :param id: The id of this StandardisedProtocolMetadata. # noqa: E501 @@ -52,27 +57,27 @@ def __init__(self, :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': str, - 'output': StandardisedProtocolMetadataOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": str, + "output": StandardisedProtocolMetadataOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -85,7 +90,7 @@ def __init__(self, self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'StandardisedProtocolMetadata': + def from_dict(cls, dikt) -> "StandardisedProtocolMetadata": """Returns the dict as a model :param dikt: A dict. @@ -114,7 +119,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -137,7 +142,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -160,7 +165,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -203,10 +208,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this StandardisedProtocolMetadata. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -229,7 +235,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/standardised_protocol_metadata_output.py b/fuji_server/models/standardised_protocol_metadata_output.py index c660c389..6be8eb4e 100644 --- a/fuji_server/models/standardised_protocol_metadata_output.py +++ b/fuji_server/models/standardised_protocol_metadata_output.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class StandardisedProtocolMetadataOutput(Model): @@ -21,13 +21,13 @@ def __init__(self, standard_metadata_protocol: str = None): # noqa: E501 :param standard_metadata_protocol: The standard_metadata_protocol of this StandardisedProtocolMetadataOutput. # noqa: E501 :type standard_metadata_protocol: str """ - self.swagger_types = {'standard_metadata_protocol': str} + self.swagger_types = {"standard_metadata_protocol": str} - self.attribute_map = {'standard_metadata_protocol': 'standard_metadata_protocol'} + self.attribute_map = {"standard_metadata_protocol": "standard_metadata_protocol"} self._standard_metadata_protocol = standard_metadata_protocol @classmethod - def from_dict(cls, dikt) -> 'StandardisedProtocolMetadataOutput': + def from_dict(cls, dikt) -> "StandardisedProtocolMetadataOutput": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/models/uniqueness.py b/fuji_server/models/uniqueness.py index b4a48627..2ecad5c6 100644 --- a/fuji_server/models/uniqueness.py +++ b/fuji_server/models/uniqueness.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 +from fuji_server import util from fuji_server.models.base_model_ import Model from fuji_server.models.debug import Debug # noqa: F401,E501 from fuji_server.models.fair_result_common import FAIRResultCommon # noqa: F401,E501 from fuji_server.models.fair_result_common_score import FAIRResultCommonScore # noqa: F401,E501 from fuji_server.models.fair_result_evaluation_criterium import FAIRResultEvaluationCriterium # noqa: F401,E501 from fuji_server.models.uniqueness_output import UniquenessOutput # noqa: F401,E501 -from fuji_server import util class Uniqueness(Model): @@ -20,16 +20,18 @@ class Uniqueness(Model): Do not edit the class manually. """ - def __init__(self, - id: int = None, - metric_identifier: str = None, - metric_name: str = None, - metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, - test_status: str = 'fail', - score: FAIRResultCommonScore = None, - maturity: str = 'incomplete', - output: UniquenessOutput = None, - test_debug: Debug = None): # noqa: E501 + def __init__( + self, + id: int = None, + metric_identifier: str = None, + metric_name: str = None, + metric_tests: Dict[str, FAIRResultEvaluationCriterium] = None, + test_status: str = "fail", + score: FAIRResultCommonScore = None, + maturity: str = "incomplete", + output: UniquenessOutput = None, + test_debug: Debug = None, + ): # noqa: E501 """Uniqueness - a model defined in Swagger :param id: The id of this Uniqueness. # noqa: E501 @@ -52,27 +54,27 @@ def __init__(self, :type test_debug: Debug """ self.swagger_types = { - 'id': int, - 'metric_identifier': str, - 'metric_name': str, - 'metric_tests': Dict[str, FAIRResultEvaluationCriterium], - 'test_status': str, - 'score': FAIRResultCommonScore, - 'maturity': str, - 'output': UniquenessOutput, - 'test_debug': Debug + "id": int, + "metric_identifier": str, + "metric_name": str, + "metric_tests": Dict[str, FAIRResultEvaluationCriterium], + "test_status": str, + "score": FAIRResultCommonScore, + "maturity": str, + "output": UniquenessOutput, + "test_debug": Debug, } self.attribute_map = { - 'id': 'id', - 'metric_identifier': 'metric_identifier', - 'metric_name': 'metric_name', - 'metric_tests': 'metric_tests', - 'test_status': 'test_status', - 'score': 'score', - 'maturity': 'maturity', - 'output': 'output', - 'test_debug': 'test_debug' + "id": "id", + "metric_identifier": "metric_identifier", + "metric_name": "metric_name", + "metric_tests": "metric_tests", + "test_status": "test_status", + "score": "score", + "maturity": "maturity", + "output": "output", + "test_debug": "test_debug", } self._id = id self._metric_identifier = metric_identifier @@ -85,7 +87,7 @@ def __init__(self, self._test_debug = test_debug @classmethod - def from_dict(cls, dikt) -> 'Uniqueness': + def from_dict(cls, dikt) -> "Uniqueness": """Returns the dict as a model :param dikt: A dict. @@ -114,7 +116,7 @@ def id(self, id: int): :type id: int """ if id is None: - raise ValueError('Invalid value for `id`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 self._id = id @@ -137,7 +139,7 @@ def metric_identifier(self, metric_identifier: str): :type metric_identifier: str """ if metric_identifier is None: - raise ValueError('Invalid value for `metric_identifier`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_identifier`, must not be `None`") # noqa: E501 self._metric_identifier = metric_identifier @@ -160,7 +162,7 @@ def metric_name(self, metric_name: str): :type metric_name: str """ if metric_name is None: - raise ValueError('Invalid value for `metric_name`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `metric_name`, must not be `None`") # noqa: E501 self._metric_name = metric_name @@ -203,10 +205,11 @@ def test_status(self, test_status: str): :param test_status: The test_status of this Uniqueness. :type test_status: str """ - allowed_values = ['pass', 'fail', 'indeterminate'] # noqa: E501 + allowed_values = ["pass", "fail", "indeterminate"] # noqa: E501 if test_status not in allowed_values: - raise ValueError('Invalid value for `test_status` ({0}), must be one of {1}'.format( - test_status, allowed_values)) + raise ValueError( + "Invalid value for `test_status` ({0}), must be one of {1}".format(test_status, allowed_values) + ) self._test_status = test_status @@ -229,7 +232,7 @@ def score(self, score: FAIRResultCommonScore): :type score: FAIRResultCommonScore """ if score is None: - raise ValueError('Invalid value for `score`, must not be `None`') # noqa: E501 + raise ValueError("Invalid value for `score`, must not be `None`") # noqa: E501 self._score = score diff --git a/fuji_server/models/uniqueness_output.py b/fuji_server/models/uniqueness_output.py index 28731211..ca355557 100644 --- a/fuji_server/models/uniqueness_output.py +++ b/fuji_server/models/uniqueness_output.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import -from datetime import date, datetime # noqa: F401 -from typing import List, Dict # noqa: F401 +from datetime import date, datetime # noqa: F401 +from typing import Dict, List # noqa: F401 -from fuji_server.models.base_model_ import Model from fuji_server import util +from fuji_server.models.base_model_ import Model class UniquenessOutput(Model): @@ -23,14 +23,14 @@ def __init__(self, guid: str = None, guid_scheme: str = None): # noqa: E501 :param guid_scheme: The guid_scheme of this UniquenessOutput. # noqa: E501 :type guid_scheme: str """ - self.swagger_types = {'guid': str, 'guid_scheme': str} + self.swagger_types = {"guid": str, "guid_scheme": str} - self.attribute_map = {'guid': 'guid', 'guid_scheme': 'guid_scheme'} + self.attribute_map = {"guid": "guid", "guid_scheme": "guid_scheme"} self._guid = guid self._guid_scheme = guid_scheme @classmethod - def from_dict(cls, dikt) -> 'UniquenessOutput': + def from_dict(cls, dikt) -> "UniquenessOutput": """Returns the dict as a model :param dikt: A dict. diff --git a/fuji_server/util.py b/fuji_server/util.py index 405bc96c..3091132b 100644 --- a/fuji_server/util.py +++ b/fuji_server/util.py @@ -1,6 +1,5 @@ # -*- coding: utf-8 -*- import datetime - import typing @@ -28,7 +27,7 @@ def _deserialize(data, klass): # return _deserialize_list(data, klass.__args__[0]) # if klass.__extra__ == dict: # return _deserialize_dict(data, klass.__args__[1]) - elif hasattr(klass, '__origin__'): + elif hasattr(klass, "__origin__"): if klass.__origin__ == list or klass.__origin__ == typing.List: return _deserialize_list(data, klass.__args__[0]) if klass.__origin__ == dict: @@ -73,6 +72,7 @@ def deserialize_date(string): """ try: from dateutil.parser import parse + return parse(string).date() except ImportError: return string @@ -90,6 +90,7 @@ def deserialize_datetime(string): """ try: from dateutil.parser import parse + return parse(string) except ImportError: return string @@ -109,9 +110,7 @@ def deserialize_model(data, klass): return data for attr, attr_type in instance.swagger_types.items(): - if data is not None \ - and instance.attribute_map[attr] in data \ - and isinstance(data, (list, dict)): + if data is not None and instance.attribute_map[attr] in data and isinstance(data, (list, dict)): value = data[instance.attribute_map[attr]] setattr(instance, attr, _deserialize(value, attr_type)) diff --git a/fuji_server/yaml/metrics_v0.3.yaml b/fuji_server/yaml/metrics_v0.3.yaml index 0c6760bd..9a0fb46b 100644 --- a/fuji_server/yaml/metrics_v0.3.yaml +++ b/fuji_server/yaml/metrics_v0.3.yaml @@ -15,7 +15,7 @@ metrics: - metric_identifier: FsF-F1-02D metric_short_name: Persistent Identifier - metric_name : Data is assigned a persistent identifier. + metric_name: Data is assigned a persistent identifier. description: We make a distinction between the uniqueness and persistence of an identifier. An HTTP URL (the address of a given unique resource on the web) is globally unique, but may not be persistent as the URL of data may be not accessible (link rot problem) or the data available under the original URL may be changed (content drift problem). Identifiers based on the Handle System, DOI, ARK are both globally unique and persistent. They are maintained and governed such that they remain stable and resolvable for the long term. The persistent identifier (PID) of a data object may be resolved (point) to a landing page with metadata containing further information on how to access the data content, in some cases a downloadable artefact, or none if the data or repository is no longer maintained. Therefore, ensuring persistence is a shared responsibility between a PID service provider (e.g., datacite) and its clients (e.g., data repositories). For example, the DOI system guarantees the persistence of its identifiers through its social (e.g., policy) and technical infrastructures, whereas a data provider ensures the availability of the resource (e.g., landing page, downloadable artefact) associated with the identifier. fair_principle: F1 evaluation_mechanism: to-do @@ -137,7 +137,8 @@ metrics: - metric_identifier: FsF-R1.2-01M metric_short_name: Data Provenance metric_name: Metadata includes provenance information about data collection or generation. - description: Data provenance (also known as lineage) represents a dataset’s history, including the people, entities, and processes involved in its creation, management and longer-term curation. It is essential to provide provenance information about your data to provide valuable context and to enable informed use and reuse. The levels of provenance information needed can vary depending on the data type (e.g., measurement, observation, derived data, or data product) and research domains. For that reason, it is difficult to define a set of finite provenance properties that will be adequate for all domains. Based on existing work, we suggest that the following provenance properties of data generation or collection are included in the metadata record as a minimum. + description: >- + Data provenance (also known as lineage) represents a dataset’s history, including the people, entities, and processes involved in its creation, management and longer-term curation. It is essential to provide provenance information about your data to provide valuable context and to enable informed use and reuse. The levels of provenance information needed can vary depending on the data type (e.g., measurement, observation, derived data, or data product) and research domains. For that reason, it is difficult to define a set of finite provenance properties that will be adequate for all domains. Based on existing work, we suggest that the following provenance properties of data generation or collection are included in the metadata record as a minimum. (a) Sources of data, e.g., datasets the data is derived from and instruments (b) Data creation or collection date (c) Contributors involved in data creation and their roles diff --git a/fuji_server/yaml/metrics_v0.4.yaml b/fuji_server/yaml/metrics_v0.4.yaml index e4cd966f..08693071 100644 --- a/fuji_server/yaml/metrics_v0.4.yaml +++ b/fuji_server/yaml/metrics_v0.4.yaml @@ -9,14 +9,14 @@ metrics: target: Dataset evaluation_mechanism: Identifier is considered unique if it is successfully validated through https://pythonhosted.org/IDUtils/. Supported schemes are ISBN10, ISBN13, ISSN, ISTC, DOI, Handle, EAN8, EAN13, ISNI ORCID, ARK, PURL, LSID, URN, Bibcode, arXiv, PubMed ID, PubMed Central ID, GND. metric_tests: - - metric_test_identifier: FsF-F1-01D-1 - metric_test_name: Identifier is resolvable and follows a defined unique identifier syntax (IRI, URL) - metric_test_score: 1 - metric_test_maturity: 3 - - metric_test_identifier: FsF-F1-01D-2 - metric_test_name: Identifier is not resolvable but follows an UUID or HASH type syntax - metric_test_score: 0.5 - metric_test_maturity: 1 + - metric_test_identifier: FsF-F1-01D-1 + metric_test_name: Identifier is resolvable and follows a defined unique identifier syntax (IRI, URL) + metric_test_score: 1 + metric_test_maturity: 3 + - metric_test_identifier: FsF-F1-01D-2 + metric_test_name: Identifier is not resolvable but follows an UUID or HASH type syntax + metric_test_score: 0.5 + metric_test_maturity: 1 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-11-25 @@ -26,20 +26,20 @@ metrics: - metric_identifier: FsF-F1-02D metric_number: 2 metric_short_name: Persistent Identifier - metric_name : Data is assigned a persistent identifier. + metric_name: Data is assigned a persistent identifier. description: We make a distinction between the uniqueness and persistence of an identifier. An HTTP URL (the address of a given unique resource on the web) is globally unique, but may not be persistent as the URL of data may be not accessible (link rot problem) or the data available under the original URL may be changed (content drift problem). Identifiers based on the Handle System, DOI, ARK are both globally unique and persistent. They are maintained and governed such that they remain stable and resolvable for the long term. The persistent identifier (PID) of a data object may be resolved (point) to a landing page with metadata containing further information on how to access the data content, in some cases a downloadable artefact, or none if the data or repository is no longer maintained. Therefore, ensuring persistence is a shared responsibility between a PID service provider (e.g., datacite) and its clients (e.g., data repositories). For example, the DOI system guarantees the persistence of its identifiers through its social (e.g., policy) and technical infrastructures, whereas a data provider ensures the availability of the resource (e.g., landing page, downloadable artefact) associated with the identifier. fair_principle: F1 target: Dataset evaluation_mechanism: A persistent identifier is considered to be valid if the given identifier complies with a valid PID synthax. To be valid, the PID further has to be resolvable. metric_tests: - - metric_test_identifier: FsF-F1-02D-1 - metric_test_name: Identifier follows a defined persistent identifier syntax - metric_test_score: 0.5 - metric_test_maturity: 1 - - metric_test_identifier: FsF-F1-02D-2 - metric_test_name: Persistent identifier is resolvable - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-F1-02D-1 + metric_test_name: Identifier follows a defined persistent identifier syntax + metric_test_score: 0.5 + metric_test_maturity: 1 + - metric_test_identifier: FsF-F1-02D-2 + metric_test_name: Persistent identifier is resolvable + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-11-25 @@ -53,36 +53,37 @@ metrics: description: Metadata is descriptive information about a data object. Since the metadata required differs depending on the users and their applications, this metric focuses on core metadata. The core metadata is the minimum descriptive information required to enable data finding, including citation which makes it easier to find data. We determine the required metadata based on common data citation guidelines (e.g., DataCite, ESIP, and IASSIST), and metadata recommendations for data discovery (e.g., EOSC Datasets Minimum Information (EDMI), DataCite Metadata Schema, W3C Recommendation Data on the Web Best Practices and Data Catalog Vocabulary). This metric focuses on domain-agnostic core metadata. Domain or discipline-specific metadata specifications are covered under metric FsF-R1.3-01M. A repository should adopt a schema that includes properties of core metadata, whereas data authors should take the responsibility of providing core metadata. fair_principle: F2 target: Metadata - evaluation_mechanism: Metadata can be offered in different ways. here we focus on common web based strategies. + evaluation_mechanism: >- + Metadata can be offered in different ways. here we focus on common web based strategies. These include 1) embedding metadata within the landing page such as JSON-LD, OpenGraph, Microdata, Dublin Core, 2) offering typed links which lead to metadata within the HTML code of the metadata or signposting links. 3) enable content negotiation and deliver e.g. RDF, JSON-LD or XML on demand. The metric evaluates the completeness of metadata in case metadata has been retrieved. metric_tests: - - metric_test_identifier: FsF-F2-01M-1 - metric_test_name: Metadata has been made available via common web methods - metric_test_score: 0.5 - metric_test_maturity: 1 - - metric_test_identifier: FsF-F2-01M-1a - metric_test_name: Metadata is embedded in the landing page XHTML/HTML code - metric_test_score: 0 - - metric_test_identifier: FsF-F2-01M-1b - metric_test_name: Metadata is accessible through content negotiation - metric_test_score: 0 - - metric_test_identifier: FsF-F2-01M-1c - metric_test_name: Metadata is accessible via typed links - metric_test_score: 0 - - metric_test_identifier: FsF-F2-01M-1d - metric_test_name: Metadata is accessible via signposting links - metric_test_score: 0 - - metric_test_identifier: FsF-F2-01M-2 - metric_test_name: Core data citation metadata is available - metric_test_score: 0.5 - metric_test_maturity: 2 - - metric_test_identifier: FsF-F2-01M-3 - metric_test_name: Core descriptive metadata is available - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-F2-01M-1 + metric_test_name: Metadata has been made available via common web methods + metric_test_score: 0.5 + metric_test_maturity: 1 + - metric_test_identifier: FsF-F2-01M-1a + metric_test_name: Metadata is embedded in the landing page XHTML/HTML code + metric_test_score: 0 + - metric_test_identifier: FsF-F2-01M-1b + metric_test_name: Metadata is accessible through content negotiation + metric_test_score: 0 + - metric_test_identifier: FsF-F2-01M-1c + metric_test_name: Metadata is accessible via typed links + metric_test_score: 0 + - metric_test_identifier: FsF-F2-01M-1d + metric_test_name: Metadata is accessible via signposting links + metric_test_score: 0 + - metric_test_identifier: FsF-F2-01M-2 + metric_test_name: Core data citation metadata is available + metric_test_score: 0.5 + metric_test_maturity: 2 + - metric_test_identifier: FsF-F2-01M-3 + metric_test_name: Core descriptive metadata is available + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 @@ -100,14 +101,14 @@ metrics: target: Metadata evaluation_mechanism: Several metadata standards provide the possibility to include links to the actual data content. The presence of such links is evaluated here. metric_tests: - - metric_test_identifier: FsF-F3-01M-1 - metric_test_name: Metadata contains data content related information (file name, size, type) - metric_test_score: 0.5 - metric_test_maturity: 1 - - metric_test_identifier: FsF-F3-01M-2 - metric_test_name: Metadata contains a PID or URL which indicates the location of the downloadable data content - metric_test_score: 0.5 - metric_test_maturity: 3 + - metric_test_identifier: FsF-F3-01M-1 + metric_test_name: Metadata contains data content related information (file name, size, type) + metric_test_score: 0.5 + metric_test_maturity: 1 + - metric_test_identifier: FsF-F3-01M-2 + metric_test_name: Metadata contains a PID or URL which indicates the location of the downloadable data content + metric_test_score: 0.5 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-12-03 @@ -123,14 +124,14 @@ metrics: target: Metadata evaluation_mechanism: The metric is evaluated using the given metadata standards known to support major search engines such as JSON-LD and Dublin Core. Presence of metadata in research data registries is further evaluated. metric_tests: - - metric_test_identifier: FsF-F4-01M-1 - metric_test_name: Metadata is given in a way major search engines can ingest it for their catalogues (JSON-LD, Dublin Core, RDFa) - metric_test_score: 1 - metric_test_maturity: 3 - - metric_test_identifier: FsF-F4-01M-2 - metric_test_name: Metadata is registered in major research data registries (DataCite) - metric_test_score: 1 - metric_test_maturity: 2 + - metric_test_identifier: FsF-F4-01M-1 + metric_test_name: Metadata is given in a way major search engines can ingest it for their catalogues (JSON-LD, Dublin Core, RDFa) + metric_test_score: 1 + metric_test_maturity: 3 + - metric_test_identifier: FsF-F4-01M-2 + metric_test_name: Metadata is registered in major research data registries (DataCite) + metric_test_score: 1 + metric_test_maturity: 2 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-12-03 @@ -146,18 +147,18 @@ metrics: target: Metadata evaluation_mechanism: Metric evaluation is based on the presence of access information in an appropriate metadata element/field. metric_tests: - - metric_test_identifier: FsF-A1-01M-1 - metric_test_name: Information about access restrictions or rights can be identified in metadata - metric_test_score: 0.5 - metric_test_maturity: 1 - - metric_test_identifier: FsF-A1-01M-3 - metric_test_name: Data access information is indicated by (not machine readable) standard terms - metric_test_score: 0.5 - metric_test_maturity: 2 - - metric_test_identifier: FsF-A1-01M-2 - metric_test_name: Data access information is machine readable - metric_test_score: 0.5 - metric_test_maturity: 3 + - metric_test_identifier: FsF-A1-01M-1 + metric_test_name: Information about access restrictions or rights can be identified in metadata + metric_test_score: 0.5 + metric_test_maturity: 1 + - metric_test_identifier: FsF-A1-01M-3 + metric_test_name: Data access information is indicated by (not machine readable) standard terms + metric_test_score: 0.5 + metric_test_maturity: 2 + - metric_test_identifier: FsF-A1-01M-2 + metric_test_name: Data access information is machine readable + metric_test_score: 0.5 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 @@ -174,10 +175,10 @@ metrics: target: Data evaluation_mechanism: The data link which is given in the metadata is tested for an standard communication protocol metric_tests: - - metric_test_identifier: FsF-A1-03D-1 - metric_test_name: Metadata includes a resolvable link to data based on standardized web communication protocols. - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-A1-03D-1 + metric_test_name: Metadata includes a resolvable link to data based on standardized web communication protocols. + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-10-23 date_updated: 2020-12-05 @@ -193,10 +194,10 @@ metrics: target: Metadata evaluation_mechanism: The URI scheme of the landing page is tested for a stanard communication protocol metric_tests: - - metric_test_identifier: FsF-A1-02M-1 - metric_test_name: Landing page link is based on standardized web communication protocols. - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-A1-02M-1 + metric_test_name: Landing page link is based on standardized web communication protocols. + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-10-23 date_updated: 2020-12-05 @@ -212,10 +213,10 @@ metrics: target: Metadata evaluation_mechanism: Currently this metric can only be assessed using the persistent identifier as an indicator. DOI metadata is preserved by DataCite. metric_tests: - - metric_test_identifier: FsF-A2-01M-1 - metric_test_name: The persistent identifier system used guarantees the preservation of associated metadata - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-A2-01M-1 + metric_test_name: The persistent identifier system used guarantees the preservation of associated metadata + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-12-05 @@ -231,14 +232,14 @@ metrics: target: Metadata evaluation_mechanism: Metadata has to be serialised in a common formal knowledge representation language. metric_tests: - - metric_test_identifier: FsF-I1-01M-1 - metric_test_name: Parsable, structured metadata (JSON-LD, RDFa) is embedded in the landing page XHTML/HTML code - metric_test_score: 1 - metric_test_maturity: 2 - - metric_test_identifier: FsF-I1-01M-2 - metric_test_name: Parsable, graph data (RDF, JSON-LD) is accessible through content negotiation, typed links or sparql endpoint - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-I1-01M-1 + metric_test_name: Parsable, structured metadata (JSON-LD, RDFa) is embedded in the landing page XHTML/HTML code + metric_test_score: 1 + metric_test_maturity: 2 + - metric_test_identifier: FsF-I1-01M-2 + metric_test_name: Parsable, graph data (RDF, JSON-LD) is accessible through content negotiation, typed links or sparql endpoint + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-12-03 @@ -254,14 +255,14 @@ metrics: target: Metadata evaluation_mechanism: Used namespaces are identified in given graph or XML metadata and verified using a controlled list. metric_tests: - - metric_test_identifier: FsF-I1-02M-1 - metric_test_name: Vocabulary namespace URIs can be identified in metadata - metric_test_score: 0 - metric_test_maturity: 1 - - metric_test_identifier: FsF-I1-02M-2 - metric_test_name: Namespaces of known semantic resources can be identified in metadata - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-I1-02M-1 + metric_test_name: Vocabulary namespace URIs can be identified in metadata + metric_test_score: 0 + metric_test_maturity: 1 + - metric_test_identifier: FsF-I1-02M-2 + metric_test_name: Namespaces of known semantic resources can be identified in metadata + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-12-03 @@ -277,14 +278,14 @@ metrics: target: Metadata evaluation_mechanism: Metadata is checked for existing relations to related entities which can be e.g. citations or other related resources metric_tests: - - metric_test_identifier: FsF-I3-01M-1 - metric_test_name: Related resources are explicitly mentioned in metadata - metric_test_score: 1 - metric_test_maturity: 2 - - metric_test_identifier: FsF-I3-01M-2 - metric_test_name: Related resources are indicated by machine readable links or identifiers - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-I3-01M-1 + metric_test_name: Related resources are explicitly mentioned in metadata + metric_test_score: 1 + metric_test_maturity: 2 + - metric_test_identifier: FsF-I3-01M-2 + metric_test_name: Related resources are indicated by machine readable links or identifiers + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-12-03 @@ -300,34 +301,34 @@ metrics: target: Metadata, Data evaluation_mechanism: Metric is evaluated using the resource type given in the metadata as well as data object specific properties file size and file type. Further presence of measured variables is tested. metric_tests: - - metric_test_identifier: FsF-R1-01MD-1 - metric_test_name: Minimal information about available data content is given in metadata - metric_test_score: 1 - metric_test_maturity: 1 - - metric_test_identifier: FsF-R1-01MD-1a - metric_test_name: Resource type (e.g. dataset) is given in metadata - metric_test_score: 0 - - metric_test_identifier: FsF-R1-01MD-1b - metric_test_name: Information about data content (e.g. links) is given in metadata - metric_test_score: 0 - - metric_test_identifier: FsF-R1-01MD-2 - metric_test_name: Verifiable data descriptors (file info, measured variables or observation types) are specified in metadata - metric_test_score: 1 - metric_test_maturity: 2 - - metric_test_identifier: FsF-R1-01MD-2a - metric_test_name: File size and type information are specified in metadata - metric_test_score: 0 - - metric_test_identifier: FsF-R1-01MD-2b - metric_test_name: Measured variables or observation types are specified in metadata - metric_test_score: 0 - - metric_test_identifier: FsF-R1-01MD-3 - metric_test_name: Data content matches file type and size specified in metadata - metric_test_score: 1 - metric_test_maturity: 3 - - metric_test_identifier: FsF-R1-01MD-4 - metric_test_name: Data content matches measured variables or observation types specified in metadata - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-R1-01MD-1 + metric_test_name: Minimal information about available data content is given in metadata + metric_test_score: 1 + metric_test_maturity: 1 + - metric_test_identifier: FsF-R1-01MD-1a + metric_test_name: Resource type (e.g. dataset) is given in metadata + metric_test_score: 0 + - metric_test_identifier: FsF-R1-01MD-1b + metric_test_name: Information about data content (e.g. links) is given in metadata + metric_test_score: 0 + - metric_test_identifier: FsF-R1-01MD-2 + metric_test_name: Verifiable data descriptors (file info, measured variables or observation types) are specified in metadata + metric_test_score: 1 + metric_test_maturity: 2 + - metric_test_identifier: FsF-R1-01MD-2a + metric_test_name: File size and type information are specified in metadata + metric_test_score: 0 + - metric_test_identifier: FsF-R1-01MD-2b + metric_test_name: Measured variables or observation types are specified in metadata + metric_test_score: 0 + - metric_test_identifier: FsF-R1-01MD-3 + metric_test_name: Data content matches file type and size specified in metadata + metric_test_score: 1 + metric_test_maturity: 3 + - metric_test_identifier: FsF-R1-01MD-4 + metric_test_name: Data content matches measured variables or observation types specified in metadata + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-07-08 @@ -343,14 +344,14 @@ metrics: target: Metadata evaluation_mechanism: Metric evaluation is based on the presence of a machine readable license information in an appropriate metadata element/field. metric_tests: - - metric_test_identifier: FsF-R1.1-01M-1 - metric_test_name: Licence information is given in an appropriate metadata element - metric_test_score: 1 - metric_test_maturity: 1 - - metric_test_identifier: FsF-R1.1-01M-2 - metric_test_name: Recognized licence is valid and registered at SPDX - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-R1.1-01M-1 + metric_test_name: Licence information is given in an appropriate metadata element + metric_test_score: 1 + metric_test_maturity: 1 + - metric_test_identifier: FsF-R1.1-01M-2 + metric_test_name: Recognized licence is valid and registered at SPDX + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-12-03 @@ -361,7 +362,8 @@ metrics: metric_number: 15 metric_short_name: Data Provenance metric_name: Metadata includes provenance information about data creation or generation. - description: Data provenance (also known as lineage) represents a dataset’s history, including the people, entities, and processes involved in its creation, management and longer-term curation. It is essential to provide provenance information about your data to provide valuable context and to enable informed use and reuse. The levels of provenance information needed can vary depending on the data type (e.g., measurement, observation, derived data, or data product) and research domains. For that reason, it is difficult to define a set of finite provenance properties that will be adequate for all domains. Based on existing work, we suggest that the following provenance properties of data generation or collection are included in the metadata record as a minimum. + description: >- + Data provenance (also known as lineage) represents a dataset’s history, including the people, entities, and processes involved in its creation, management and longer-term curation. It is essential to provide provenance information about your data to provide valuable context and to enable informed use and reuse. The levels of provenance information needed can vary depending on the data type (e.g., measurement, observation, derived data, or data product) and research domains. For that reason, it is difficult to define a set of finite provenance properties that will be adequate for all domains. Based on existing work, we suggest that the following provenance properties of data generation or collection are included in the metadata record as a minimum. (a) Sources of data, e.g., datasets the data is derived from and instruments (b) Data creation or collection date (c) Contributors involved in data creation and their roles @@ -372,14 +374,14 @@ metrics: target: Metadata evaluation_mechanism: Metrics are assessed using provenance related information contained in metadata which can either be specific elements which can be mapped e.g. to PROV-O or the use of provenance related namespaces and associated terms. metric_tests: - - metric_test_identifier: FsF-R1.2-01M-1 - metric_test_name: Metadata contains elements which hold provenance information and can be mapped to PROV - metric_test_score: 1 - metric_test_maturity: 2 - - metric_test_identifier: FsF-R1.2-01M-2 - metric_test_name: Metadata contains provenance information using formal provenance ontologies (PROV-O) - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-R1.2-01M-1 + metric_test_name: Metadata contains elements which hold provenance information and can be mapped to PROV + metric_test_score: 1 + metric_test_maturity: 2 + - metric_test_identifier: FsF-R1.2-01M-2 + metric_test_name: Metadata contains provenance information using formal provenance ontologies (PROV-O) + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-12-03 @@ -395,18 +397,18 @@ metrics: target: Metadata evaluation_mechanism: Metadata encodings can be verified using community specific namespaces and schemas listed by the RDA metadata standards WG metric_tests: - - metric_test_identifier: FsF-R1.3-01M-1 - metric_test_name: Community specific metadata standard is detected using namespaces or schemas found in provided metadata or metadata services outputs - metric_test_score: 1 - metric_test_maturity: 3 - - metric_test_identifier: FsF-R1.3-01M-2 - metric_test_name: Community specific metadata standard is listed in the re3data record of the responsible repository - metric_test_score: 0.5 - metric_test_maturity: 2 - - metric_test_identifier: FsF-R1.3-01M-3 - metric_test_name: Multidisciplinary but community endorsed metadata (RDA Metadata Standards Catalog) standard is listed in the re3data record or detected by namespace - metric_test_score: 0 - metric_test_maturity: 1 + - metric_test_identifier: FsF-R1.3-01M-1 + metric_test_name: Community specific metadata standard is detected using namespaces or schemas found in provided metadata or metadata services outputs + metric_test_score: 1 + metric_test_maturity: 3 + - metric_test_identifier: FsF-R1.3-01M-2 + metric_test_name: Community specific metadata standard is listed in the re3data record of the responsible repository + metric_test_score: 0.5 + metric_test_maturity: 2 + - metric_test_identifier: FsF-R1.3-01M-3 + metric_test_name: Multidisciplinary but community endorsed metadata (RDA Metadata Standards Catalog) standard is listed in the re3data record or detected by namespace + metric_test_score: 0 + metric_test_maturity: 1 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-12-03 @@ -417,7 +419,8 @@ metrics: metric_number: 17 metric_short_name: Data File format metric_name: Data is available in a file format recommended by the target research community. - description: File formats refer to methods for encoding digital information. For example, CSV for tabular data, NetCDF for multidimensional data and GeoTIFF for raster imagery. Data should be made available in a file format that is backed by the research community to enable data sharing and reuse. Consider for example, file formats that are widely used and supported by the most commonly used software and tools. These formats also should be suitable for long-term storage and archiving, which are usually recommended by a data repository. The formats not only give a higher certainty that your data can be read in the future, but they will also help to increase the reusability and interoperability. Using community-endorsed formats enables data to be loaded directly into the software and tools used for data analysis. It makes it possible to easily integrate your data with other data using the same preferred format. The use of preferred formats will also help to transform the format to a newer one, in case a preferred format gets outdated. + description: >- + File formats refer to methods for encoding digital information. For example, CSV for tabular data, NetCDF for multidimensional data and GeoTIFF for raster imagery. Data should be made available in a file format that is backed by the research community to enable data sharing and reuse. Consider for example, file formats that are widely used and supported by the most commonly used software and tools. These formats also should be suitable for long-term storage and archiving, which are usually recommended by a data repository. The formats not only give a higher certainty that your data can be read in the future, but they will also help to increase the reusability and interoperability. Using community-endorsed formats enables data to be loaded directly into the software and tools used for data analysis. It makes it possible to easily integrate your data with other data using the same preferred format. The use of preferred formats will also help to transform the format to a newer one, in case a preferred format gets outdated. Similar to metric FsF-F4-01M, answering this metric will require an understanding of the capabilities offered, data preservation plan and policies implemented by the data repository and data services (e.g., Datacite PID service). Continued access to metadata depends on a data repository’s preservation practice which is usually documented in the repository’s service policies or statements. A trustworthy data repository offering DOIs and implementing a PID Policy should guarantee that metadata will remain accessible even when data is no longer available for any reason (e.g., by providing a tombstone page). @@ -425,21 +428,21 @@ metrics: target: Data evaluation_mechanism: Data file format given in metadata is compared to a controlled list of known scientific formats. metric_tests: - - metric_test_identifier: FsF-R1.3-02D-1 - metric_test_name: The format of a data file given in the metadata is listed in the long term file formats, open file formats or scientific file formats controlled list - metric_test_score: 1 - - metric_test_identifier: FsF-R1.3-02D-1a - metric_test_name: The format of the data file is an open format - metric_test_score: 0 - metric_test_maturity: 1 - - metric_test_identifier: FsF-R1.3-02D-1b - metric_test_name: The format of the data file is a long term format - metric_test_score: 0 - metric_test_maturity: 2 - - metric_test_identifier: FsF-R1.3-02D-1c - metric_test_name: The format of the data file is a scientific format - metric_test_score: 0 - metric_test_maturity: 3 + - metric_test_identifier: FsF-R1.3-02D-1 + metric_test_name: The format of a data file given in the metadata is listed in the long term file formats, open file formats or scientific file formats controlled list + metric_test_score: 1 + - metric_test_identifier: FsF-R1.3-02D-1a + metric_test_name: The format of the data file is an open format + metric_test_score: 0 + metric_test_maturity: 1 + - metric_test_identifier: FsF-R1.3-02D-1b + metric_test_name: The format of the data file is a long term format + metric_test_score: 0 + metric_test_maturity: 2 + - metric_test_identifier: FsF-R1.3-02D-1c + metric_test_name: The format of the data file is a scientific format + metric_test_score: 0 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-12-03 diff --git a/fuji_server/yaml/metrics_v0.5.yaml b/fuji_server/yaml/metrics_v0.5.yaml index b7e76619..eea6a4b8 100644 --- a/fuji_server/yaml/metrics_v0.5.yaml +++ b/fuji_server/yaml/metrics_v0.5.yaml @@ -14,28 +14,28 @@ metrics: evaluation_mechanism: Identifier is considered unique if it is successfully validated through https://pythonhosted.org/IDUtils/. Supported schemes are ISBN10, ISBN13, ISSN, ISTC, DOI, Handle, EAN8, EAN13, ISNI ORCID, ARK, PURL, LSID, URN, Bibcode, arXiv, PubMed ID, PubMed Central ID, GND. test_scoring_mechanism: alternative metric_tests: - - metric_test_identifier: FsF-F1-01D-1 - metric_test_name: Identifier is resolvable and follows a defined unique identifier syntax (IRI, URL) - metric_test_score: 1 - metric_test_maturity: 3 - metric_test_requirements: - - target: https://f-uji.net/vocab/identifier - tested_on: https://f-uji.net/vocab/metadata/property/object_identifier - modality: any - comment: identifier can be given as user input - - metric_test_identifier: FsF-F1-01D-2 - metric_test_name: Identifier is not resolvable but follows an UUID or HASH type syntax - metric_test_score: 0.5 - metric_test_maturity: 1 - metric_test_requirements: - - target: https://f-uji.net/vocab/identifier/unique - tested_on: https://f-uji.net/vocab/metadata/property/object_identifier - modality: any - required: - name: - - uuid - - hash - comment: identifier can be given as user input + - metric_test_identifier: FsF-F1-01D-1 + metric_test_name: Identifier is resolvable and follows a defined unique identifier syntax (IRI, URL) + metric_test_score: 1 + metric_test_maturity: 3 + metric_test_requirements: + - target: https://f-uji.net/vocab/identifier + tested_on: https://f-uji.net/vocab/metadata/property/object_identifier + modality: any + comment: identifier can be given as user input + - metric_test_identifier: FsF-F1-01D-2 + metric_test_name: Identifier is not resolvable but follows an UUID or HASH type syntax + metric_test_score: 0.5 + metric_test_maturity: 1 + metric_test_requirements: + - target: https://f-uji.net/vocab/identifier/unique + tested_on: https://f-uji.net/vocab/metadata/property/object_identifier + modality: any + required: + name: + - uuid + - hash + comment: identifier can be given as user input created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-11-25 @@ -45,30 +45,30 @@ metrics: - metric_identifier: FsF-F1-02D metric_number: 2 metric_short_name: Persistent Identifier - metric_name : Data is assigned a persistent identifier. + metric_name: Data is assigned a persistent identifier. description: We make a distinction between the uniqueness and persistence of an identifier. An HTTP URL (the address of a given unique resource on the web) is globally unique, but may not be persistent as the URL of data may be not accessible (link rot problem) or the data available under the original URL may be changed (content drift problem). Identifiers based on the Handle System, DOI, ARK are both globally unique and persistent. They are maintained and governed such that they remain stable and resolvable for the long term. The persistent identifier (PID) of a data object may be resolved (point) to a landing page with metadata containing further information on how to access the data content, in some cases a downloadable artefact, or none if the data or repository is no longer maintained. Therefore, ensuring persistence is a shared responsibility between a PID service provider (e.g., datacite) and its clients (e.g., data repositories). For example, the DOI system guarantees the persistence of its identifiers through its social (e.g., policy) and technical infrastructures, whereas a data provider ensures the availability of the resource (e.g., landing page, downloadable artefact) associated with the identifier. fair_principle: F1 target: Data evaluation_mechanism: A persistent identifier is considered to be valid if the given identifier complies with a valid PID synthax. To be valid, the PID further has to be resolvable. test_scoring_mechanism: alternative metric_tests: - - metric_test_identifier: FsF-F1-02D-1 - metric_test_name: Identifier follows a defined persistent identifier syntax - metric_test_score: 0.5 - metric_test_maturity: 1 - metric_test_requirements: - - target: https://f-uji.net/vocab/identifier/persistent - tested_on: https://f-uji.net/vocab/metadata/property/object_identifier - modality: any - comment: identifier can be given as user input - - metric_test_identifier: FsF-F1-02D-2 - metric_test_name: Persistent identifier is resolvable - metric_test_requirements: - - target: https://f-uji.net/vocab/identifier/persistent - tested_on: https://f-uji.net/vocab/metadata/property/object_identifier - comment: identifier has to resolve to a valid URI - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-F1-02D-1 + metric_test_name: Identifier follows a defined persistent identifier syntax + metric_test_score: 0.5 + metric_test_maturity: 1 + metric_test_requirements: + - target: https://f-uji.net/vocab/identifier/persistent + tested_on: https://f-uji.net/vocab/metadata/property/object_identifier + modality: any + comment: identifier can be given as user input + - metric_test_identifier: FsF-F1-02D-2 + metric_test_name: Persistent identifier is resolvable + metric_test_requirements: + - target: https://f-uji.net/vocab/identifier/persistent + tested_on: https://f-uji.net/vocab/metadata/property/object_identifier + comment: identifier has to resolve to a valid URI + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-11-25 @@ -82,54 +82,55 @@ metrics: description: Metadata is descriptive information about a data object. Since the metadata required differs depending on the users and their applications, this metric focuses on core metadata. The core metadata is the minimum descriptive information required to enable data finding, including citation which makes it easier to find data. We determine the required metadata based on common data citation guidelines (e.g., DataCite, ESIP, and IASSIST), and metadata recommendations for data discovery (e.g., EOSC Datasets Minimum Information (EDMI), DataCite Metadata Schema, W3C Recommendation Data on the Web Best Practices and Data Catalog Vocabulary). This metric focuses on domain-agnostic core metadata. Domain or discipline-specific metadata specifications are covered under metric FsF-R1.3-01M. A repository should adopt a schema that includes properties of core metadata, whereas data authors should take the responsibility of providing core metadata. fair_principle: F2 target: Metadata - evaluation_mechanism: Metadata can be offered in different ways. here we focus on common web based strategies. + evaluation_mechanism: >- + Metadata can be offered in different ways. here we focus on common web based strategies. These include 1) embedding metadata within the landing page such as JSON-LD, OpenGraph, Microdata, Dublin Core, 2) offering typed links which lead to metadata within the HTML code of the metadata or signposting links. 3) enable content negotiation and deliver e.g. RDF, JSON-LD or XML on demand. The metric evaluates the completeness of metadata in case metadata has been retrieved. test_scoring_mechanism: cumulative metric_tests: - - metric_test_identifier: FsF-F2-01M-1 - metric_test_name: Metadata has been made available via common web methods - metric_test_score: 0.5 - metric_test_maturity: 1 - metric_test_requirements: - - target: https://f-uji.net/vocab/metadata/offering_method - modality: any - - metric_test_identifier: FsF-F2-01M-2 - metric_test_name: Core data citation metadata is available - metric_test_score: 0.5 - metric_test_maturity: 2 - metric_test_requirements: - - target: https://f-uji.net/vocab/metadata/property - modality: all - tested_on: https://f-uji.net/vocab/metadata/property - required: - name: - - creator - - title - - object_identifier - - publication_date - - publisher - - object_type - - metric_test_identifier: FsF-F2-01M-3 - metric_test_name: Core descriptive metadata is available - metric_test_score: 1 - metric_test_maturity: 3 - metric_test_requirements: - - target: https://f-uji.net/vocab/metadata/property - modality: all - tested_on: https://f-uji.net/vocab/metadata/property - required: - name: - - creator - - title - - object_identifier - - publication_date - - publisher - - object_type - - summary - - keywords + - metric_test_identifier: FsF-F2-01M-1 + metric_test_name: Metadata has been made available via common web methods + metric_test_score: 0.5 + metric_test_maturity: 1 + metric_test_requirements: + - target: https://f-uji.net/vocab/metadata/offering_method + modality: any + - metric_test_identifier: FsF-F2-01M-2 + metric_test_name: Core data citation metadata is available + metric_test_score: 0.5 + metric_test_maturity: 2 + metric_test_requirements: + - target: https://f-uji.net/vocab/metadata/property + modality: all + tested_on: https://f-uji.net/vocab/metadata/property + required: + name: + - creator + - title + - object_identifier + - publication_date + - publisher + - object_type + - metric_test_identifier: FsF-F2-01M-3 + metric_test_name: Core descriptive metadata is available + metric_test_score: 1 + metric_test_maturity: 3 + metric_test_requirements: + - target: https://f-uji.net/vocab/metadata/property + modality: all + tested_on: https://f-uji.net/vocab/metadata/property + required: + name: + - creator + - title + - object_identifier + - publication_date + - publisher + - object_type + - summary + - keywords created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2022-05-30 @@ -146,25 +147,25 @@ metrics: evaluation_mechanism: Several metadata standards provide the possibility to include links to the actual data content. The presence of such links is evaluated here. test_scoring_mechanism: cumulative metric_tests: - - metric_test_identifier: FsF-F3-01M-1 - metric_test_name: Metadata contains data content related information (file name, size, type) - metric_test_score: 0.5 - metric_test_maturity: 1 - metric_test_requirements: - - target: https://f-uji.net/vocab/data/property - tested_on: https://f-uji.net/vocab/metadata/property/object_content_identifier - modality: all - required: - - type - - size - - metric_test_identifier: FsF-F3-01M-2 - metric_test_name: Metadata contains a PID or URL which indicates the location of the downloadable data content - metric_test_score: 0.5 - metric_test_maturity: 3 - metric_test_requirements: - - target: https://f-uji.net/vocab/data/property/url - tested_on: https://f-uji.net/vocab/metadata/property/object_content_identifier - modality: any + - metric_test_identifier: FsF-F3-01M-1 + metric_test_name: Metadata contains data content related information (file name, size, type) + metric_test_score: 0.5 + metric_test_maturity: 1 + metric_test_requirements: + - target: https://f-uji.net/vocab/data/property + tested_on: https://f-uji.net/vocab/metadata/property/object_content_identifier + modality: all + required: + - type + - size + - metric_test_identifier: FsF-F3-01M-2 + metric_test_name: Metadata contains a PID or URL which indicates the location of the downloadable data content + metric_test_score: 0.5 + metric_test_maturity: 3 + metric_test_requirements: + - target: https://f-uji.net/vocab/data/property/url + tested_on: https://f-uji.net/vocab/metadata/property/object_content_identifier + modality: any created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2022-05-30 @@ -181,28 +182,28 @@ metrics: evaluation_mechanism: The metric is evaluated using the given metadata standards known to support major search engines such as JSON-LD and Dublin Core. Presence of metadata in research data registries is further evaluated. test_scoring_mechanism: cumulative metric_tests: - - metric_test_identifier: FsF-F4-01M-1 - metric_test_name: Metadata is given in a way major search engines can ingest it for their catalogues (JSON-LD, Dublin Core, RDFa) - metric_test_score: 1 - metric_test_maturity: 3 - metric_test_requirements: - - target: http://f-uji.net/vocab/metadata/sources - modality: any - required: - name: - - dublin-core - - schemaorg - - dcat-data-catalog-vocabulary - - target: http://f-uji.net/vocab/metadata/offering_method - modality: any - required: - name: - - html_embedding - - microdata_rdfa - - metric_test_identifier: FsF-F4-01M-2 - metric_test_name: Metadata is registered in major research data registries (DataCite) - metric_test_score: 1 - metric_test_maturity: 2 + - metric_test_identifier: FsF-F4-01M-1 + metric_test_name: Metadata is given in a way major search engines can ingest it for their catalogues (JSON-LD, Dublin Core, RDFa) + metric_test_score: 1 + metric_test_maturity: 3 + metric_test_requirements: + - target: http://f-uji.net/vocab/metadata/sources + modality: any + required: + name: + - dublin-core + - schemaorg + - dcat-data-catalog-vocabulary + - target: http://f-uji.net/vocab/metadata/offering_method + modality: any + required: + name: + - html_embedding + - microdata_rdfa + - metric_test_identifier: FsF-F4-01M-2 + metric_test_name: Metadata is registered in major research data registries (DataCite) + metric_test_score: 1 + metric_test_maturity: 2 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2022-05-30 @@ -219,31 +220,31 @@ metrics: evaluation_mechanism: Metric evaluation is based on the presence of access information in an appropriate metadata element/field. test_scoring_mechanism: alternative metric_tests: - - metric_test_identifier: FsF-A1-01M-1 - metric_test_name: Information about access restrictions or rights can be identified in metadata - metric_test_score: 0.5 - metric_test_maturity: 1 - metric_test_requirements: - - target: http://f-uji.net/vocab/metadata/property/access_level - modality: any - - metric_test_identifier: FsF-A1-01M-3 - metric_test_name: Data access information is indicated by (not machine readable) standard terms - metric_test_score: 1 - metric_test_maturity: 2 - metric_test_requirements: - - target: http://f-uji.net/vocab/access_condition - modality: any - tested_on: http://f-uji.net/vocab/metadata/property/access_level - comment: label and id - - metric_test_identifier: FsF-A1-01M-2 - metric_test_name: Data access information is machine readable - metric_test_score: 1 - metric_test_maturity: 3 - metric_test_requirements: - - target: http://f-uji.net/vocab/access_condition - modality: any - tested_on: http://f-uji.net/vocab/metadata/property/access_level - comment: identifier (namespace) + - metric_test_identifier: FsF-A1-01M-1 + metric_test_name: Information about access restrictions or rights can be identified in metadata + metric_test_score: 0.5 + metric_test_maturity: 1 + metric_test_requirements: + - target: http://f-uji.net/vocab/metadata/property/access_level + modality: any + - metric_test_identifier: FsF-A1-01M-3 + metric_test_name: Data access information is indicated by (not machine readable) standard terms + metric_test_score: 1 + metric_test_maturity: 2 + metric_test_requirements: + - target: http://f-uji.net/vocab/access_condition + modality: any + tested_on: http://f-uji.net/vocab/metadata/property/access_level + comment: label and id + - metric_test_identifier: FsF-A1-01M-2 + metric_test_name: Data access information is machine readable + metric_test_score: 1 + metric_test_maturity: 3 + metric_test_requirements: + - target: http://f-uji.net/vocab/access_condition + modality: any + tested_on: http://f-uji.net/vocab/metadata/property/access_level + comment: identifier (namespace) created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-12-03 @@ -260,10 +261,10 @@ metrics: evaluation_mechanism: The data link which is given in the metadata is tested for an standard communication protocol test_scoring_mechanism: alternative metric_tests: - - metric_test_identifier: FsF-A1-03D-1 - metric_test_name: Metadata includes a resolvable link to data based on standardized web communication protocols. - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-A1-03D-1 + metric_test_name: Metadata includes a resolvable link to data based on standardized web communication protocols. + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-10-23 date_updated: 2020-12-05 @@ -280,10 +281,10 @@ metrics: evaluation_mechanism: The URI scheme of the landing page is tested for a standard communication protocol test_scoring_mechanism: alternative metric_tests: - - metric_test_identifier: FsF-A1-02M-1 - metric_test_name: Landing page link is based on standardized web communication protocols. - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-A1-02M-1 + metric_test_name: Landing page link is based on standardized web communication protocols. + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-10-23 date_updated: 2020-12-05 @@ -299,10 +300,10 @@ metrics: target: Metadata evaluation_mechanism: Currently this metric can only be assessed using the persistent identifier as an indicator. DOI metadata is preserved by DataCite. metric_tests: - - metric_test_identifier: FsF-A2-01M-1 - metric_test_name: The persistent identifier system used guarantees the preservation of associated metadata - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-A2-01M-1 + metric_test_name: The persistent identifier system used guarantees the preservation of associated metadata + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-12-05 @@ -319,46 +320,46 @@ metrics: evaluation_mechanism: Metadata has to be serialised in a common formal knowledge representation language. test_scoring_mechanism: cumulative metric_tests: - - metric_test_identifier: FsF-I1-01M-1 - metric_test_name: Parsable, structured metadata (JSON-LD, RDFa) is embedded in the landing page XHTML/HTML code - metric_test_score: 1 - metric_test_maturity: 2 - metric_test_requirements: - - target: http://f-uji.net/vocab/metadata/format - modality: any - required: - name: - - RDF - - JSON-LD - - RDFa - - target: http://f-uji.net/vocab/metadata/offering_method - modality: any - required: - name: - - html_embedding - - microdata_rdfa - - metric_test_identifier: FsF-I1-01M-2 - metric_test_name: Parsable, graph data (RDF, JSON-LD) is accessible through content negotiation, typed links or sparql endpoint - metric_test_score: 1 - metric_test_maturity: 3 - metric_test_requirements: - - target: http://f-uji.net/vocab/metadata/format - modality: any - required: - name: - - RDF - - JSON-LD - - RDFa - - target: http://f-uji.net/vocab/metadata/offering_method - modality: any - required: - name: - - content_negotiation - - target: http://f-uji.net/vocab/metadata/exchange_service - modality: any - required: - name: - - sparql + - metric_test_identifier: FsF-I1-01M-1 + metric_test_name: Parsable, structured metadata (JSON-LD, RDFa) is embedded in the landing page XHTML/HTML code + metric_test_score: 1 + metric_test_maturity: 2 + metric_test_requirements: + - target: http://f-uji.net/vocab/metadata/format + modality: any + required: + name: + - RDF + - JSON-LD + - RDFa + - target: http://f-uji.net/vocab/metadata/offering_method + modality: any + required: + name: + - html_embedding + - microdata_rdfa + - metric_test_identifier: FsF-I1-01M-2 + metric_test_name: Parsable, graph data (RDF, JSON-LD) is accessible through content negotiation, typed links or sparql endpoint + metric_test_score: 1 + metric_test_maturity: 3 + metric_test_requirements: + - target: http://f-uji.net/vocab/metadata/format + modality: any + required: + name: + - RDF + - JSON-LD + - RDFa + - target: http://f-uji.net/vocab/metadata/offering_method + modality: any + required: + name: + - content_negotiation + - target: http://f-uji.net/vocab/metadata/exchange_service + modality: any + required: + name: + - sparql created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2023-06-01 @@ -375,19 +376,19 @@ metrics: evaluation_mechanism: Used namespaces are identified in given graph or XML metadata and verified using a controlled list. test_scoring_mechanism: cumulative metric_tests: - - metric_test_identifier: FsF-I2-01M-1 - metric_test_name: Vocabulary namespace URIs can be identified in metadata - metric_test_score: 0 - metric_test_maturity: 1 - metric_test_requirements: - - comment: The sheer existence of namespaces declared in XML or RDF files is checked here. This test is not scored - - metric_test_identifier: FsF-I2-01M-2 - metric_test_name: Namespaces of known semantic resources can be identified in metadata - metric_test_score: 1 - metric_test_maturity: 3 - metric_test_requirements: - - target: http://f-uji.net/vocab/semantic_resource - modality: any + - metric_test_identifier: FsF-I2-01M-1 + metric_test_name: Vocabulary namespace URIs can be identified in metadata + metric_test_score: 0 + metric_test_maturity: 1 + metric_test_requirements: + - comment: The sheer existence of namespaces declared in XML or RDF files is checked here. This test is not scored + - metric_test_identifier: FsF-I2-01M-2 + metric_test_name: Namespaces of known semantic resources can be identified in metadata + metric_test_score: 1 + metric_test_maturity: 3 + metric_test_requirements: + - target: http://f-uji.net/vocab/semantic_resource + modality: any created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-12-03 @@ -403,21 +404,21 @@ metrics: target: Metadata evaluation_mechanism: Metadata is checked for existing relations to related entities which can be e.g. citations or other related resources metric_tests: - - metric_test_identifier: FsF-I3-01M-1 - metric_test_name: Related resources are explicitly mentioned in metadata - metric_test_score: 1 - metric_test_maturity: 2 - metric_test_requirements: - - target: http://f-uji.net/vocab/relation_type - modality: any - tested_on: http://f-uji.net/vocab/metadata/property/related_resources - comment: The presence of a (typed, default = related) related resource is checked, can be a string or URI - - metric_test_identifier: FsF-I3-01M-2 - metric_test_name: Related resources are indicated by machine readable links or identifiers - metric_test_requirements: - - comment: same as above but relations have to be machine readable/actionable - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-I3-01M-1 + metric_test_name: Related resources are explicitly mentioned in metadata + metric_test_score: 1 + metric_test_maturity: 2 + metric_test_requirements: + - target: http://f-uji.net/vocab/relation_type + modality: any + tested_on: http://f-uji.net/vocab/metadata/property/related_resources + comment: The presence of a (typed, default = related) related resource is checked, can be a string or URI + - metric_test_identifier: FsF-I3-01M-2 + metric_test_name: Related resources are indicated by machine readable links or identifiers + metric_test_requirements: + - comment: same as above but relations have to be machine readable/actionable + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-12-03 @@ -434,34 +435,34 @@ metrics: evaluation_mechanism: Metric is evaluated using the resource type given in the metadata as well as data object specific properties file size and file type. Further presence of measured variables is tested. test_scoring_mechanism: cumulative metric_tests: - - metric_test_identifier: FsF-R1-01MD-1_ss - metric_test_name: Minimal information about available data content is given in metadata - metric_test_score: 1 - metric_test_maturity: 1 - - metric_test_identifier: FsF-R1-01MD-1a - metric_test_name: Resource type (e.g. dataset) is given in metadata - metric_test_score: 0 - - metric_test_identifier: FsF-R1-01MD-1b - metric_test_name: Information about data content (e.g. links) is given in metadata - metric_test_score: 0 - - metric_test_identifier: FsF-R1-01MD-2 - metric_test_name: Verifiable data descriptors (file info, measured variables or observation types) are specified in metadata - metric_test_score: 1 - metric_test_maturity: 2 - - metric_test_identifier: FsF-R1-01MD-2a - metric_test_name: File size and type information are specified in metadata - metric_test_score: 0 - - metric_test_identifier: FsF-R1-01MD-2b - metric_test_name: Measured variables or observation types are specified in metadata - metric_test_score: 0 - - metric_test_identifier: FsF-R1-01MD-3 - metric_test_name: Data content matches file type and size specified in metadata - metric_test_score: 1 - metric_test_maturity: 3 - - metric_test_identifier: FsF-R1-01MD-4 - metric_test_name: Data content matches measured variables or observation types specified in metadata - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-R1-01MD-1_ss + metric_test_name: Minimal information about available data content is given in metadata + metric_test_score: 1 + metric_test_maturity: 1 + - metric_test_identifier: FsF-R1-01MD-1a + metric_test_name: Resource type (e.g. dataset) is given in metadata + metric_test_score: 0 + - metric_test_identifier: FsF-R1-01MD-1b + metric_test_name: Information about data content (e.g. links) is given in metadata + metric_test_score: 0 + - metric_test_identifier: FsF-R1-01MD-2 + metric_test_name: Verifiable data descriptors (file info, measured variables or observation types) are specified in metadata + metric_test_score: 1 + metric_test_maturity: 2 + - metric_test_identifier: FsF-R1-01MD-2a + metric_test_name: File size and type information are specified in metadata + metric_test_score: 0 + - metric_test_identifier: FsF-R1-01MD-2b + metric_test_name: Measured variables or observation types are specified in metadata + metric_test_score: 0 + - metric_test_identifier: FsF-R1-01MD-3 + metric_test_name: Data content matches file type and size specified in metadata + metric_test_score: 1 + metric_test_maturity: 3 + - metric_test_identifier: FsF-R1-01MD-4 + metric_test_name: Data content matches measured variables or observation types specified in metadata + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-07-08 @@ -478,14 +479,14 @@ metrics: evaluation_mechanism: Metric evaluation is based on the presence of a machine readable license information in an appropriate metadata element/field. test_scoring_mechanism: cumulative metric_tests: - - metric_test_identifier: FsF-R1.1-01M-1 - metric_test_name: Licence information is given in an appropriate metadata element - metric_test_score: 1 - metric_test_maturity: 1 - - metric_test_identifier: FsF-R1.1-01M-2 - metric_test_name: Recognized licence is valid (community specific or registered at SPDX) - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-R1.1-01M-1 + metric_test_name: Licence information is given in an appropriate metadata element + metric_test_score: 1 + metric_test_maturity: 1 + - metric_test_identifier: FsF-R1.1-01M-2 + metric_test_name: Recognized licence is valid (community specific or registered at SPDX) + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2023-06-02 @@ -496,7 +497,8 @@ metrics: metric_number: 15 metric_short_name: Data Provenance metric_name: Metadata includes provenance information about data creation or generation. - description: Data provenance (also known as lineage) represents a dataset’s history, including the people, entities, and processes involved in its creation, management and longer-term curation. It is essential to provide provenance information about your data to provide valuable context and to enable informed use and reuse. The levels of provenance information needed can vary depending on the data type (e.g., measurement, observation, derived data, or data product) and research domains. For that reason, it is difficult to define a set of finite provenance properties that will be adequate for all domains. Based on existing work, we suggest that the following provenance properties of data generation or collection are included in the metadata record as a minimum. + description: >- + Data provenance (also known as lineage) represents a dataset’s history, including the people, entities, and processes involved in its creation, management and longer-term curation. It is essential to provide provenance information about your data to provide valuable context and to enable informed use and reuse. The levels of provenance information needed can vary depending on the data type (e.g., measurement, observation, derived data, or data product) and research domains. For that reason, it is difficult to define a set of finite provenance properties that will be adequate for all domains. Based on existing work, we suggest that the following provenance properties of data generation or collection are included in the metadata record as a minimum. (a) Sources of data, e.g., datasets the data is derived from and instruments (b) Data creation or collection date (c) Contributors involved in data creation and their roles @@ -508,14 +510,14 @@ metrics: evaluation_mechanism: Metrics are assessed using provenance related information contained in metadata which can either be specific elements which can be mapped e.g. to PROV-O or the use of provenance related namespaces and associated terms. test_scoring_mechanism: cumulative metric_tests: - - metric_test_identifier: FsF-R1.2-01M-1 - metric_test_name: Metadata contains elements which hold provenance information and can be mapped to PROV - metric_test_score: 1 - metric_test_maturity: 2 - - metric_test_identifier: FsF-R1.2-01M-2 - metric_test_name: Metadata contains provenance information using formal provenance ontologies (PROV-O) - metric_test_score: 1 - metric_test_maturity: 3 + - metric_test_identifier: FsF-R1.2-01M-1 + metric_test_name: Metadata contains elements which hold provenance information and can be mapped to PROV + metric_test_score: 1 + metric_test_maturity: 2 + - metric_test_identifier: FsF-R1.2-01M-2 + metric_test_name: Metadata contains provenance information using formal provenance ontologies (PROV-O) + metric_test_score: 1 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2023-06-01 @@ -532,44 +534,44 @@ metrics: evaluation_mechanism: Metadata encodings can be verified using community specific namespaces and schemas listed by the RDA metadata standards WG or fairsharing.org test_scoring_mechanism: alternative metric_tests: - - metric_test_identifier: FsF-R1.3-01M-1 - metric_test_name: Community specific metadata standard is detected using namespaces or schemas found in provided metadata or metadata services outputs - metric_test_score: 1 - metric_test_maturity: 3 - metric_test_requirements: - - modality: any except - target: https://f-uji.net/vocab/metadata/standards - required: - field_of_science: - - science - - generic - comment: test performed on namespaces or schemas found in exposed metadata - - metric_test_identifier: FsF-R1.3-01M-2 - metric_test_name: Community specific metadata standard is listed in the re3data record of the responsible repository - metric_test_score: 1 - metric_test_maturity: 2 - metric_test_requirements: - - modality: any except - target: https://f-uji.net/vocab/metadata/standards - required: - field_of_science: - - science - - generic - comment: test is performed using information collected from re3data - - metric_test_identifier: FsF-R1.3-01M-3 - metric_test_name: Multidisciplinary but community endorsed metadata (RDA Metadata Standards Catalog, fairsharing) standard is listed in the re3data record or detected by namespace - metric_test_score: 1 - metric_test_maturity: 1 - metric_test_requirements: - - modality: any - target: https://f-uji.net/vocab/metadata/standards - required: - field_of_science: - - science - - generic - source: - - rd-alliance.org - - fairsharing.org + - metric_test_identifier: FsF-R1.3-01M-1 + metric_test_name: Community specific metadata standard is detected using namespaces or schemas found in provided metadata or metadata services outputs + metric_test_score: 1 + metric_test_maturity: 3 + metric_test_requirements: + - modality: any except + target: https://f-uji.net/vocab/metadata/standards + required: + field_of_science: + - science + - generic + comment: test performed on namespaces or schemas found in exposed metadata + - metric_test_identifier: FsF-R1.3-01M-2 + metric_test_name: Community specific metadata standard is listed in the re3data record of the responsible repository + metric_test_score: 1 + metric_test_maturity: 2 + metric_test_requirements: + - modality: any except + target: https://f-uji.net/vocab/metadata/standards + required: + field_of_science: + - science + - generic + comment: test is performed using information collected from re3data + - metric_test_identifier: FsF-R1.3-01M-3 + metric_test_name: Multidisciplinary but community endorsed metadata (RDA Metadata Standards Catalog, fairsharing) standard is listed in the re3data record or detected by namespace + metric_test_score: 1 + metric_test_maturity: 1 + metric_test_requirements: + - modality: any + target: https://f-uji.net/vocab/metadata/standards + required: + field_of_science: + - science + - generic + source: + - rd-alliance.org + - fairsharing.org created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-12-03 @@ -580,7 +582,8 @@ metrics: metric_number: 17 metric_short_name: Data File format metric_name: Data is available in a file format recommended by the target research community. - description: File formats refer to methods for encoding digital information. For example, CSV for tabular data, NetCDF for multidimensional data and GeoTIFF for raster imagery. Data should be made available in a file format that is backed by the research community to enable data sharing and reuse. Consider for example, file formats that are widely used and supported by the most commonly used software and tools. These formats also should be suitable for long-term storage and archiving, which are usually recommended by a data repository. The formats not only give a higher certainty that your data can be read in the future, but they will also help to increase the reusability and interoperability. Using community-endorsed formats enables data to be loaded directly into the software and tools used for data analysis. It makes it possible to easily integrate your data with other data using the same preferred format. The use of preferred formats will also help to transform the format to a newer one, in case a preferred format gets outdated. + description: >- + File formats refer to methods for encoding digital information. For example, CSV for tabular data, NetCDF for multidimensional data and GeoTIFF for raster imagery. Data should be made available in a file format that is backed by the research community to enable data sharing and reuse. Consider for example, file formats that are widely used and supported by the most commonly used software and tools. These formats also should be suitable for long-term storage and archiving, which are usually recommended by a data repository. The formats not only give a higher certainty that your data can be read in the future, but they will also help to increase the reusability and interoperability. Using community-endorsed formats enables data to be loaded directly into the software and tools used for data analysis. It makes it possible to easily integrate your data with other data using the same preferred format. The use of preferred formats will also help to transform the format to a newer one, in case a preferred format gets outdated. Similar to metric FsF-F4-01M, answering this metric will require an understanding of the capabilities offered, data preservation plan and policies implemented by the data repository and data services (e.g., Datacite PID service). Continued access to metadata depends on a data repository’s preservation practice which is usually documented in the repository’s service policies or statements. A trustworthy data repository offering DOIs and implementing a PID Policy should guarantee that metadata will remain accessible even when data is no longer available for any reason (e.g., by providing a tombstone page). @@ -589,21 +592,21 @@ metrics: evaluation_mechanism: Data file format given in metadata is compared to a controlled list of known scientific formats. test_scoring_mechanism: alternative metric_tests: - - metric_test_identifier: FsF-R1.3-02D-1 - metric_test_name: The format of a data file given in the metadata is listed in the long term file formats, open file formats or scientific file formats controlled list - metric_test_score: 1 - - metric_test_identifier: FsF-R1.3-02D-1a - metric_test_name: The format of the data file is an open format - metric_test_score: 0 - metric_test_maturity: 1 - - metric_test_identifier: FsF-R1.3-02D-1b - metric_test_name: The format of the data file is a long term format - metric_test_score: 0 - metric_test_maturity: 2 - - metric_test_identifier: FsF-R1.3-02D-1c - metric_test_name: The format of the data file is a scientific format - metric_test_score: 0 - metric_test_maturity: 3 + - metric_test_identifier: FsF-R1.3-02D-1 + metric_test_name: The format of a data file given in the metadata is listed in the long term file formats, open file formats or scientific file formats controlled list + metric_test_score: 1 + - metric_test_identifier: FsF-R1.3-02D-1a + metric_test_name: The format of the data file is an open format + metric_test_score: 0 + metric_test_maturity: 1 + - metric_test_identifier: FsF-R1.3-02D-1b + metric_test_name: The format of the data file is a long term format + metric_test_score: 0 + metric_test_maturity: 2 + - metric_test_identifier: FsF-R1.3-02D-1c + metric_test_name: The format of the data file is a scientific format + metric_test_score: 0 + metric_test_maturity: 3 created_by: FAIRsFAIR date_created: 2020-07-08 date_updated: 2020-12-03 diff --git a/fuji_server/yaml/swagger.yaml b/fuji_server/yaml/swagger.yaml index 004b2521..5377eb0b 100644 --- a/fuji_server/yaml/swagger.yaml +++ b/fuji_server/yaml/swagger.yaml @@ -1,9 +1,7 @@ openapi: 3.0.1 info: title: F-UJI - description: A Service for Evaluating Research Data Objects Based on FAIRsFAIR - Metrics.

This work was supported by the FAIRsFAIR - project (H2020-INFRAEOSC-2018-2020 Grant Agreement 831558). + description: A Service for Evaluating Research Data Objects Based on FAIRsFAIR Metrics.

This work was supported by the FAIRsFAIR project (H2020-INFRAEOSC-2018-2020 Grant Agreement 831558). contact: email: anusuriya.devaraju@googlemail.com x-additional-email: rhuber@marum.de @@ -28,7 +26,7 @@ paths: tags: - FAIR object security: - - basicAuth: [] + - basicAuth: [] description: Evaluate FAIRness of a data object based on its identifier operationId: assess_by_id requestBody: @@ -44,15 +42,15 @@ paths: use_datacite: true metric_version: metrics_v0.5 responses: - "200": + '200': description: successful operation content: application/json: schema: $ref: '#/components/schemas/FAIRResults' - "400": + '400': description: Invalid identifier supplied - "401": + '401': description: Authentication information is missing or invalid headers: WWW_Authenticate: @@ -60,32 +58,32 @@ paths: explode: false schema: type: string - "404": + '404': description: Object not found x-openapi-router-controller: fuji_server.controllers.fair_object_controller /metrics/{version}: get: parameters: - - in: path - name: version - schema: - type: string - pattern: '^([0-9]+\.[0-9]+)(_[a-z]+)?$' - required: true + - in: path + name: version + schema: + type: string + pattern: ^([0-9]+\.[0-9]+)(_[a-z]+)?$ + required: true tags: - - FAIR metric + - FAIR metric summary: Return all metrics and their definitions operationId: get_metrics responses: - "200": + '200': description: Metrics are successfully retrieved content: application/json: schema: $ref: '#/components/schemas/Metrics' - "400": + '400': description: Invalid request supplied - "401": + '401': description: Authentication information is missing or invalid headers: WWW_Authenticate: @@ -93,37 +91,37 @@ paths: explode: false schema: type: string - "404": + '404': description: Object not found x-openapi-router-controller: fuji_server.controllers.fair_metric_controller /metrics/{version}/{metric}: get: parameters: - - in: path - name: version - schema: - type: string - pattern: '^([0-9]+\.[0-9]+)(_[a-z]+)?$' - required: true - - in: path - name: metric - schema: - type: string - required: true + - in: path + name: version + schema: + type: string + pattern: ^([0-9]+\.[0-9]+)(_[a-z]+)?$ + required: true + - in: path + name: metric + schema: + type: string + required: true tags: - - FAIR metric + - FAIR metric summary: Return a single metric and it's definition operationId: get_metric responses: - "200": + '200': description: Metrics are successfully retrieved content: application/json: schema: $ref: '#/components/schemas/Metric' - "400": + '400': description: Invalid request supplied - "401": + '401': description: Authentication information is missing or invalid headers: WWW_Authenticate: @@ -131,7 +129,7 @@ paths: explode: false schema: type: string - "404": + '404': description: Object not found x-openapi-router-controller: fuji_server.controllers.fair_metric_controller /harvest: @@ -139,7 +137,7 @@ paths: tags: - metadata security: - - basicAuth: [] + - basicAuth: [] description: Harvest metadata of a data object based on its identifier operationId: harvest_by_id requestBody: @@ -150,15 +148,15 @@ paths: example: object_identifier: https://doi.org/10.1594/PANGAEA.908011 responses: - "200": + '200': description: successful operation content: application/json: schema: $ref: '#/components/schemas/HarvestResults' - "400": + '400': description: Invalid identifier supplied - "401": + '401': description: Authentication information is missing or invalid headers: WWW_Authenticate: @@ -166,7 +164,7 @@ paths: explode: false schema: type: string - "404": + '404': description: Object not found x-openapi-router-controller: fuji_server.controllers.harvest_controller components: @@ -272,7 +270,7 @@ components: metric_tests: type: object additionalProperties: - $ref: '#/components/schemas/FAIRResultEvaluationCriterium' + $ref: '#/components/schemas/FAIRResultEvaluationCriterium' test_status: type: string default: fail @@ -413,31 +411,31 @@ components: $ref: '#/components/schemas/Debug' MetadataPreserved: allOf: - - $ref: '#/components/schemas/FAIRResultCommon' - - type: object - properties: - output: - $ref: '#/components/schemas/MetadataPreserved_output' - test_debug: - $ref: '#/components/schemas/Debug' + - $ref: '#/components/schemas/FAIRResultCommon' + - type: object + properties: + output: + $ref: '#/components/schemas/MetadataPreserved_output' + test_debug: + $ref: '#/components/schemas/Debug' StandardisedProtocolData: allOf: - - $ref: '#/components/schemas/FAIRResultCommon' - - type: object - properties: - output: - $ref: '#/components/schemas/StandardisedProtocolData_output' - test_debug: - $ref: '#/components/schemas/Debug' + - $ref: '#/components/schemas/FAIRResultCommon' + - type: object + properties: + output: + $ref: '#/components/schemas/StandardisedProtocolData_output' + test_debug: + $ref: '#/components/schemas/Debug' StandardisedProtocolMetadata: allOf: - - $ref: '#/components/schemas/FAIRResultCommon' - - type: object - properties: - output: - $ref: '#/components/schemas/StandardisedProtocolMetadata_output' - test_debug: - $ref: '#/components/schemas/Debug' + - $ref: '#/components/schemas/FAIRResultCommon' + - type: object + properties: + output: + $ref: '#/components/schemas/StandardisedProtocolMetadata_output' + test_debug: + $ref: '#/components/schemas/Debug' FAIRResultEvaluationCriterium: type: object properties: @@ -604,8 +602,8 @@ components: items: type: string enum: - - datacite - - tombstone + - datacite + - tombstone Metrics: type: object properties: @@ -670,8 +668,7 @@ components: description: The full identifier of data object that needs to be evaluated test_debug: type: boolean - description: Indicate if the detailed evaluation procedure of the metrics - should to be included in the response + description: Indicate if the detailed evaluation procedure of the metrics should to be included in the response default: false metadata_service_endpoint: type: string